From 4ae7204a73e194dc8b56c9ef2a0d85e024a4036f Mon Sep 17 00:00:00 2001 From: chaxus Date: Sun, 23 Aug 2026 11:30:17 +0800 Subject: [PATCH] fix(editor): a missing translation must not become a document error Reported in Korean: opening a blank document showed the vendor's modal "An error occurred while working with the document. Use the 'Download as' option to save a backup copy" -- before typing anything. Reproduced in a production build; only ko, and every time. The cause is a translation gap. `DE.Views.Statusbar.tipMultiplePages` is in en.json and not in ko.json, and unlike most strings it has no default in the component's own source, so the property is `undefined`. The status bar passes it to a tooltip setter that does not check: updateHint: function (t) { ... "string" == typeof t ? t : t[0] ... } `undefined[0]` throws inside the view layer, the app catches it as a document error, and the user gets a modal telling them to save a backup of a document they have not written yet. This is not one bad file: all 44 non-English locales are short against en.json, from 1 key to 3167. Korean simply lost the lottery of which gap reaches a tooltip setter. So there are two defences: 1. bin/locale-fill.mjs backfills, from en.json, every key missing in the locales this site is translated into -- 17 files, ~113 KB, keeping the vendor's minified formatting so the tree does not grow by 25 KB a file. bin/build.sh runs it before the vendor tree is hashed into VENDOR_VERSION, and test/unit/vendor-locale.test.ts fails when it has not been run (which is what a vendor upgrade will do). 2. Guard 11 (guards/hint-fallback.ts) makes `updateHint(undefined)` a no-op. That covers the other 38 locales, which `?locale=` can still select, and whatever the next upgrade breaks. An English tooltip is a blemish. A modal error on an empty document is someone deciding this editor cannot be trusted with their file. test/e2e/editor-locales.spec.ts opens a blank document in each of the six non-English site languages and fails on a vendor dialog -- nothing in the suite covered this, because everything else opens the editor in English. Reverse-checked both defences: with the key removed and the guard disabled the ko case fails with the reported dialog; with the key removed and the guard in place it passes. Co-Authored-By: Claude Opus 5 (1M context) --- CLAUDE.md | 16 ++- bin/build.sh | 6 ++ bin/locale-fill.d.mts | 1 + bin/locale-fill.mjs | 102 ++++++++++++++++++ lib/onlyoffice/guards/hint-fallback.ts | 57 ++++++++++ lib/onlyoffice/iframe-guards.ts | 2 + .../apps/documenteditor/main/locale/de.json | 2 +- .../apps/documenteditor/main/locale/es.json | 2 +- .../apps/documenteditor/main/locale/ja.json | 2 +- .../apps/documenteditor/main/locale/ko.json | 2 +- .../apps/documenteditor/main/locale/pt.json | 2 +- .../apps/documenteditor/main/locale/zh.json | 2 +- .../apps/pdfeditor/main/locale/de.json | 2 +- .../apps/pdfeditor/main/locale/es.json | 2 +- .../apps/pdfeditor/main/locale/ja.json | 2 +- .../apps/pdfeditor/main/locale/ko.json | 2 +- .../apps/pdfeditor/main/locale/pt.json | 2 +- .../apps/pdfeditor/main/locale/zh.json | 2 +- .../presentationeditor/main/locale/ja.json | 2 +- .../spreadsheeteditor/main/locale/es.json | 2 +- .../spreadsheeteditor/main/locale/ja.json | 2 +- .../spreadsheeteditor/main/locale/ko.json | 2 +- .../apps/visioeditor/main/locale/ja.json | 2 +- test/e2e/editor-locales.spec.ts | 67 ++++++++++++ test/unit/vendor-locale.test.ts | 58 ++++++++++ 25 files changed, 325 insertions(+), 18 deletions(-) create mode 100644 bin/locale-fill.d.mts create mode 100644 bin/locale-fill.mjs create mode 100644 lib/onlyoffice/guards/hint-fallback.ts create mode 100644 test/e2e/editor-locales.spec.ts create mode 100644 test/unit/vendor-locale.test.ts diff --git a/CLAUDE.md b/CLAUDE.md index 366b00ca9..5e91e62e7 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -67,7 +67,7 @@ lib/ # 应用层(纯 TypeScript,只在本站点用) guards/ # chrome / shared-worker / fetch-fonts / image-pipeline / # serverless-save / long-action / series-settings / # font-loading / comment-selection / canvas-loss / - # wasm-binary-release / unload-prompt + # wasm-binary-release / unload-prompt / hint-fallback open-state.ts # 就绪、打开失败、frame 首个错误(三处共用的单一状态源) open-failure.ts # 失败分类、-82 guard、环境类失败重开一次(经 setOpenRunner 注入避免环) font-system.ts # 字体系统就绪判定 + awaitFontSystem(#144) @@ -827,6 +827,20 @@ v7 代码分支(OO_VARIANT、页面级 x2t 打开转换、empty_bin 模板、v -82),`registerOpenAttempt` 在用户发起新的打开时 `resetMemoryProbe()` 清掉。别把重建时导航旧 frame 到 `about:blank` 当优化加回来:它会掐断 vendor 在 ready 之后仍在取的 SVG 图标请求,每次文档切换都报 `Failed to fetch`(试过 并撤掉,见 docs/explorations/2026-08-20-x2t-wasm-oom-misclassified.md)。 +- **语言包缺键(vendor 补丁,2026-08-23)**:vendor 的 45 个 locale JSON **没有一个** + 对得齐 `en.json`,少的差 1 个键、多的差 3000+。多数缺口无害(组件源码里有默认值), + 但**有些字符串只存在于 locale 文件**,缺翻译就是 `undefined`——而 tooltip 的 + `updateHint` 直接 `hint[0]`,于是抛 TypeError,被 app 当成文档错误,弹出 + "文档处理时发生错误,请用『另存为』保存备份"的模态框。**空白文档、还没打字就弹**。 + 韩语实测撞到的是 `DE.Views.Statusbar.tipMultiplePages`(en 有、ko 没有,状态栏渲染时读)。 + 两道防线,都要在: + 1. `node bin/locale-fill.mjs` 把**站点 7 种语言**的 locale 用 en 值补齐(共 ~110 KB, + 幂等,`bin/build.sh` 在 vite build 前跑它,所以补齐结果参与 `VENDOR_VERSION` 哈希)。 + **vendor 升级后必须重跑**,`test/unit/vendor-locale.test.ts` 会拦下漏跑。 + 2. 守卫 11(`guards/hint-fallback.ts`):把 `updateHint(undefined)` 变成空操作。 + 这条覆盖我们没补的另外 38 种语言(`?locale=` 可以选到)以及下次升级新引入的缺口。 + 反向验证过:把那个键从 ko.json 拿掉且禁用守卫,`test/e2e/editor-locales.spec.ts` + 的 ko 用例立刻红(弹框回来);只拿掉键、留着守卫则不红——两道防线各自有效。 - **CSV**:新 vendor 编辑器不能直接吃 CSV——打开前用 SheetJS 转 XLSX、保存 流转回 CSV(`packages/converter` 的 `convertCsvToXlsx` / `xlsxToCsvBytes`)。 解码带严格编码嗅探(fatal UTF-8 → GB18030 → latin1),GBK CSV 不再乱码。 diff --git a/bin/build.sh b/bin/build.sh index bca868348..6c93af602 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -58,6 +58,12 @@ else fi # Run Vite build +# The vendor's locale files are short against en.json, and some of the missing +# strings exist only there -- a gap can surface as a modal "an error occurred" +# on a blank document (see bin/locale-fill.mjs). Fill them for the languages the +# site ships before the tree is hashed into VENDOR_VERSION and copied to dist. +node bin/locale-fill.mjs + pnpm vite build $VITE_MODE_ARGS # Fingerprint the vendored design tokens. diff --git a/bin/locale-fill.d.mts b/bin/locale-fill.d.mts new file mode 100644 index 000000000..d8af72aa0 --- /dev/null +++ b/bin/locale-fill.d.mts @@ -0,0 +1 @@ +export function fill(opts?: { check?: boolean }): Array<{ file: string; count: number }>; diff --git a/bin/locale-fill.mjs b/bin/locale-fill.mjs new file mode 100644 index 000000000..b88c083dd --- /dev/null +++ b/bin/locale-fill.mjs @@ -0,0 +1,102 @@ +#!/usr/bin/env node +/** + * Fill the vendor editor's translation gaps for the languages this site ships. + * + * The OnlyOffice locale files are not complete against `en.json` -- every one + * of the 44 non-English files is missing keys, from a couple to a few thousand. + * That is normally harmless (a string keeps whatever default the component has) + * but some strings exist ONLY in the locale file, and then the property is + * `undefined` rather than English. When one of those reaches a tooltip: + * + * updateHint: function (t) { ... "string" == typeof t ? t : t[0] ... } + * + * `undefined[0]` throws, the editor catches it as a document error and shows + * the modal "An error occurred while working with the document. Use the + * 'Download as' option to save a backup copy". Korean hit exactly this on a + * blank document: `DE.Views.Statusbar.tipMultiplePages` is in en.json and not + * in ko.json, and the status bar asks for it while rendering. + * + * So: for the locales the site is translated into, any key en.json has and the + * locale does not gets the English value. An English tooltip is a cosmetic gap; + * a modal error dialog on an empty document is not. Everything else is left + * exactly as the vendor shipped it. + * + * Idempotent -- run it again after a vendor upgrade (bin/build.sh does, and + * test/unit/vendor-locale.test.ts fails if it has not been run). + * + * node bin/locale-fill.mjs # fill in place + * node bin/locale-fill.mjs --check # exit 1 if any gap remains + */ +import { existsSync, readFileSync, readdirSync, writeFileSync } from 'node:fs'; +import { dirname, resolve } from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { LOCALES } from './build-pages.mjs'; + +const ROOT = resolve(dirname(fileURLToPath(import.meta.url)), '..'); +const APPS_DIR = resolve(ROOT, 'public/web-apps/apps'); + +/** + * Site locale -> vendor locale file. The vendor uses bare language codes with a + * handful of four-letter exceptions (pt-pt, zh-tw, sr-cyrl); `zh-CN` is served + * by `zh.json`. Mirrors resolveEditorLocale() in packages/shared/src/i18n.ts, + * which decides what `lang=` the editor is loaded with. + */ +const VENDOR_LOCALE = { 'zh-CN': 'zh' }; +const vendorCodeFor = (locale) => VENDOR_LOCALE[locale] ?? locale; + +/** Apps that have a locale directory (documenteditor, pdfeditor, ...). */ +function localeDirs() { + return readdirSync(APPS_DIR) + .map((app) => resolve(APPS_DIR, app, 'main/locale')) + .filter((dir) => existsSync(dir) && existsSync(resolve(dir, 'en.json'))); +} + +/** Keys en.json has that `locale` does not, in en.json's order. */ +function gaps(dir, code) { + const target = resolve(dir, `${code}.json`); + if (!existsSync(target)) return null; + const en = JSON.parse(readFileSync(resolve(dir, 'en.json'), 'utf8')); + const translated = JSON.parse(readFileSync(target, 'utf8')); + const missing = Object.keys(en).filter((key) => !(key in translated)); + return { target, en, translated, missing }; +} + +export function fill({ check = false } = {}) { + const codes = Object.keys(LOCALES).map(vendorCodeFor); + const report = []; + for (const dir of localeDirs()) { + for (const code of codes) { + if (code === 'en') continue; + const found = gaps(dir, code); + if (!found || !found.missing.length) continue; + report.push({ file: found.target.slice(ROOT.length + 1), count: found.missing.length }); + if (check) continue; + // Rebuild in en.json's key order so the file stays diffable rather than + // growing an appendix of filled keys at the bottom. + const merged = {}; + for (const key of Object.keys(found.en)) merged[key] = found.translated[key] ?? found.en[key]; + for (const [key, value] of Object.entries(found.translated)) if (!(key in merged)) merged[key] = value; + // Keep the vendor's formatting. These files ship minified on one line; + // pretty-printing them would add ~25 KB each to a tree that is already + // 600 MB and is downloaded by every visitor's service worker. + const pretty = readFileSync(found.target, 'utf8').includes('\n "'); + writeFileSync(found.target, pretty ? `${JSON.stringify(merged, null, 2)}\n` : JSON.stringify(merged)); + } + } + return report; +} + +if (process.argv[1] && process.argv[1].endsWith('locale-fill.mjs')) { + const check = process.argv.includes('--check'); + const report = fill({ check }); + if (!report.length) { + console.log('[locale-fill] every shipped locale covers en.json'); + } else if (check) { + for (const { file, count } of report) console.error(` ${file}: ${count} keys missing`); + console.error('[locale-fill] vendor locales are short; run node bin/locale-fill.mjs'); + process.exit(1); + } else { + for (const { file, count } of report) console.log(` ${file}: filled ${count} keys from en.json`); + console.log(`[locale-fill] filled ${report.length} file(s)`); + } +} diff --git a/lib/onlyoffice/guards/hint-fallback.ts b/lib/onlyoffice/guards/hint-fallback.ts new file mode 100644 index 000000000..cf2217cb7 --- /dev/null +++ b/lib/onlyoffice/guards/hint-fallback.ts @@ -0,0 +1,57 @@ +/** + * Guard 11: a missing translation must not become a document error. + * + * The vendor's locale files are incomplete against `en.json` -- all 44 of them, + * from a couple of keys to a few thousand. Most gaps are invisible, because the + * component keeps whatever default its own source defines. But some strings + * exist only in the locale file, so a gap leaves the property `undefined`, and + * the tooltip setter does not check: + * + * updateHint: function (t) { ... "string" == typeof t ? t : t[0] ... } + * + * `undefined[0]` throws inside the view layer, the app catches it as a document + * error, and the user gets the modal "An error occurred while working with the + * document. Use the 'Download as' option to save a backup copy" -- on a blank + * document, before they have typed anything. Korean hit precisely this: + * `DE.Views.Statusbar.tipMultiplePages` is in en.json, absent from ko.json, and + * the status bar reads it while rendering. + * + * bin/locale-fill.mjs closes the gaps for the languages this site is + * translated into, which is the real fix and the one users see (they get an + * English tooltip rather than a broken editor). This guard covers the rest: the + * editor accepts any of the vendor's 45 locales through `?locale=`, and a + * vendor upgrade can introduce a new gap in any of them at any time. A tooltip + * that never appears is a blemish; a modal error on an empty document is not. + */ +type HintTarget = { updateHint?: (hint?: unknown, ...rest: unknown[]) => unknown; __hintGuarded?: boolean }; + +/** Component prototypes that own an updateHint reading `hint[0]`. */ +function hintOwners(win: Window): HintTarget[] { + const ui = (win as unknown as { Common?: { UI?: Record } }).Common?.UI; + if (!ui) return []; + return Object.values(ui) + .map((component) => component?.prototype) + .filter((proto): proto is HintTarget => Boolean(proto && typeof proto.updateHint === 'function')); +} + +export function installHintFallbackGuard(win: Window): boolean { + const frame = win as Window & { __ooHintGuarded?: boolean }; + const owners = hintOwners(win); + // Common.UI lands during the editor's boot; report "not yet" so the caller + // keeps re-applying until the components exist. + if (!owners.length) return Boolean(frame.__ooHintGuarded); + + for (const proto of owners) { + if (proto.__hintGuarded) continue; + const original = proto.updateHint!; + proto.updateHint = function (this: unknown, hint?: unknown, ...rest: unknown[]) { + // Keep whatever tooltip is already there rather than throwing. An empty + // array would clear it; undefined is what a missing translation gives. + if (hint === undefined || hint === null) return undefined; + return original.call(this, hint, ...rest); + }; + proto.__hintGuarded = true; + } + frame.__ooHintGuarded = true; + return true; +} diff --git a/lib/onlyoffice/iframe-guards.ts b/lib/onlyoffice/iframe-guards.ts index e381cd9d4..26ef41abf 100644 --- a/lib/onlyoffice/iframe-guards.ts +++ b/lib/onlyoffice/iframe-guards.ts @@ -11,6 +11,7 @@ import { installCommentSelectionGuard } from './guards/comment-selection'; import { installCanvasLossGuard } from './guards/canvas-loss'; import { releaseWasmBinary } from './guards/wasm-binary-release'; import { installSingleUnloadPrompt } from './guards/unload-prompt'; +import { installHintFallbackGuard } from './guards/hint-fallback'; /** * Same-origin preparation of the editor iframe, applied from onAppReady and @@ -52,6 +53,7 @@ export function prepareEditorIframe(): boolean { installCommentSelectionGuard(win); installCanvasLossGuard(win, doc); installSingleUnloadPrompt(win); + installHintFallbackGuard(win); const wasmBinaryHandled = releaseWasmBinary(win); if ( diff --git a/public/web-apps/apps/documenteditor/main/locale/de.json b/public/web-apps/apps/documenteditor/main/locale/de.json index 29f5fbb0d..a407b719b 100644 --- a/public/web-apps/apps/documenteditor/main/locale/de.json +++ b/public/web-apps/apps/documenteditor/main/locale/de.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"Achtung","Common.Controllers.Desktop.hintBtnHome":"Hauptfenster anzeigen","Common.Controllers.Desktop.itemCreateFromTemplate":"Von Vorlage erstellen","Common.Controllers.ExternalDiagramEditor.textAnonymous":"Anonym","Common.Controllers.ExternalDiagramEditor.textClose":"Schließen","Common.Controllers.ExternalDiagramEditor.warningText":"Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.","Common.Controllers.ExternalDiagramEditor.warningTitle":"Achtung","Common.Controllers.ExternalLinks.textAddExternalData":"Der Link zu einer externen Quelle wurde hinzugefügt. Sie können solche Links auf der Registerkarte \"Daten\" aktualisieren.","Common.Controllers.ExternalLinks.textDontUpdate":"Nicht aktualisieren","Common.Controllers.ExternalLinks.textUpdate":"Aktualisieren","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Fehler: Aktualisierung fehlgeschlagen","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Diese Arbeitsmappe enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Dieses Dokument enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Diese Präsentation enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalMergeEditor.textAnonymous":"Anonym","Common.Controllers.ExternalMergeEditor.textClose":"Schließen","Common.Controllers.ExternalMergeEditor.warningText":"Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.","Common.Controllers.ExternalMergeEditor.warningTitle":"Warnung","Common.Controllers.ExternalOleEditor.textAnonymous":"Anonym","Common.Controllers.ExternalOleEditor.textClose":"Schließen","Common.Controllers.ExternalOleEditor.warningText":"Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.","Common.Controllers.ExternalOleEditor.warningTitle":"Achtung","Common.Controllers.History.notcriticalErrorTitle":"Achtung","Common.Controllers.History.txtErrorLoadHistory":"Laden der Historie ist fehlgeschlagen ","Common.Controllers.Plugins.helpMoveMacros":"Um mit Makros zu arbeiten, wechseln Sie auf die Registerkarte Ansicht.","Common.Controllers.Plugins.helpMoveMacrosHeader":"Die verschobene Schaltfläche \"Makros\"","Common.Controllers.Plugins.helpUseMacros":"Die Schaltfläche \"Makros\" finden Sie hier.","Common.Controllers.Plugins.helpUseMacrosHeader":"Geänderter Zugriff auf Makros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Die Plugins wurden erfolgreich installiert. Sie können hier auf alle Hintergrund-Plugins zugreifen.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} wurde erfolgreich installiert. Sie können hier auf alle Hintergrund-Plugins zugreifen.","Common.Controllers.Plugins.textRunInstalledPlugins":"Installierte Plugins starten","Common.Controllers.Plugins.textRunPlugin":"Plugin starten","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"Um Dokumente zu vergleichen, gelten alle nachverfolgten Änderungen als akzeptiert. Möchten Sie weiter machen?","Common.Controllers.ReviewChanges.textAtLeast":"Mindestens","Common.Controllers.ReviewChanges.textAuto":"Automatisch","Common.Controllers.ReviewChanges.textBaseline":"Grundlinie","Common.Controllers.ReviewChanges.textBold":"Fett","Common.Controllers.ReviewChanges.textBreakBefore":"Seitenumbruch oberhalb","Common.Controllers.ReviewChanges.textCaps":"Alle Großbuchstaben","Common.Controllers.ReviewChanges.textCenter":"Zentriert ausrichten","Common.Controllers.ReviewChanges.textChar":"Zeichen-Ebene","Common.Controllers.ReviewChanges.textChart":"Diagramm","Common.Controllers.ReviewChanges.textColor":"Schriftfarbe","Common.Controllers.ReviewChanges.textContextual":"Kein Abstand zwischen Absätzen gleicher Formatierung","Common.Controllers.ReviewChanges.textDeleted":"Gelöscht:","Common.Controllers.ReviewChanges.textDStrikeout":"Doppeltes Durchstreichen","Common.Controllers.ReviewChanges.textEquation":"Gleichung","Common.Controllers.ReviewChanges.textExact":"Genau","Common.Controllers.ReviewChanges.textFirstLine":"Erste Zeile","Common.Controllers.ReviewChanges.textFontSize":"Schriftgrad","Common.Controllers.ReviewChanges.textFormatted":"Formatiert","Common.Controllers.ReviewChanges.textHighlight":"Texthervorhebungsfarbe","Common.Controllers.ReviewChanges.textImage":"Bild","Common.Controllers.ReviewChanges.textIndentLeft":"Einzug links","Common.Controllers.ReviewChanges.textIndentRight":"Einzug rechts","Common.Controllers.ReviewChanges.textInserted":"Eingefügt:","Common.Controllers.ReviewChanges.textItalic":"Kursiv","Common.Controllers.ReviewChanges.textJustify":"Zielgruppengerecht ausrichten","Common.Controllers.ReviewChanges.textKeepLines":"Absatz zusammenhalten","Common.Controllers.ReviewChanges.textKeepNext":"Absätze nicht trennen","Common.Controllers.ReviewChanges.textLeft":"Linksbündig ausrichten","Common.Controllers.ReviewChanges.textLineSpacing":"Zeilenabstand:","Common.Controllers.ReviewChanges.textMultiple":"Mehrfach","Common.Controllers.ReviewChanges.textNoBreakBefore":"Keinen Seitenumbruch vorher","Common.Controllers.ReviewChanges.textNoContextual":"Intervall zwischen den Absätzen im gleichen Stil hinzufügen","Common.Controllers.ReviewChanges.textNoKeepLines":"Halten Sie Linien nicht zusammen","Common.Controllers.ReviewChanges.textNoKeepNext":"Mit der nächsten nicht halten","Common.Controllers.ReviewChanges.textNot":"Nicht","Common.Controllers.ReviewChanges.textNoWidow":"Kein \"Widow-Control\"","Common.Controllers.ReviewChanges.textNum":"Nummerierung ändern","Common.Controllers.ReviewChanges.textOff":"{0} verwendet die Nachverfolgung von Änderungen nicht mehr.","Common.Controllers.ReviewChanges.textOffGlobal":"{0} hat die Nachverfolgung von Änderungen für alle deaktiviert.","Common.Controllers.ReviewChanges.textOn":"{0} verwendet jetzt die Nachverfolgung von Änderungen.","Common.Controllers.ReviewChanges.textOnGlobal":"{0} hat die Nachverfolgung von Änderungen für alle aktiviert.","Common.Controllers.ReviewChanges.textParaDeleted":"Absatz gelöscht","Common.Controllers.ReviewChanges.textParaFormatted":"Absatz ist formatiert","Common.Controllers.ReviewChanges.textParaInserted":"Absatz eingefügt","Common.Controllers.ReviewChanges.textParaMoveFromDown":"Nach unten verschoben","Common.Controllers.ReviewChanges.textParaMoveFromUp":"Nach oben verschoben","Common.Controllers.ReviewChanges.textParaMoveTo":"Verschoben:","Common.Controllers.ReviewChanges.textPosition":"Position","Common.Controllers.ReviewChanges.textRight":"Rechtsbündig ausrichten","Common.Controllers.ReviewChanges.textShape":"Form","Common.Controllers.ReviewChanges.textShd":"Hintergrundfarbe","Common.Controllers.ReviewChanges.textShow":"Änderungen anzeigen:","Common.Controllers.ReviewChanges.textSmallCaps":"Kapitälchen","Common.Controllers.ReviewChanges.textSpacing":"Abstand","Common.Controllers.ReviewChanges.textSpacingAfter":"Abstand nach","Common.Controllers.ReviewChanges.textSpacingBefore":"Abstand vor","Common.Controllers.ReviewChanges.textStrikeout":"Durchgestrichen","Common.Controllers.ReviewChanges.textSubScript":"Tiefgestellt","Common.Controllers.ReviewChanges.textSuperScript":"Hochgestellt","Common.Controllers.ReviewChanges.textTableChanged":"Tabelleneinstellungen geändert","Common.Controllers.ReviewChanges.textTableRowsAdd":"Tabellenzeilen hinzugefügt","Common.Controllers.ReviewChanges.textTableRowsDel":"Tabellenzeilen gelöscht","Common.Controllers.ReviewChanges.textTabs":"Registerkarten ändern","Common.Controllers.ReviewChanges.textTitleComparison":"Vergleichseinstellungen","Common.Controllers.ReviewChanges.textUnderline":"Unterstrichen","Common.Controllers.ReviewChanges.textUrl":"Dokument-URL einfügen","Common.Controllers.ReviewChanges.textWidow":"Widow Сontrol","Common.Controllers.ReviewChanges.textWord":"Wortebene","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Eine neue Zeile unten in der Tabelle hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Den Stil der Überschrift 1 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Den Stil der Überschrift 2 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Den Stil der Überschrift 3 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Aus dem ausgewählten Textfragment eine ungeordnete Aufzählungsliste erstellen oder eine neue beginnen.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach unten zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach links zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach rechts zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach oben zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBold":"Die Schriftart des ausgewählten Textfragments dunkler und schwerer als normal machen.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Zwischen zentrierter und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Die nächste Kombinationsfeldoption im Formular wählen.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Die vorherige Kombinationsfeldoption im Formular wählen.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Das aktuelle Dokumentfenster schließen.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Ein Menü oder ein modales Fenster schließen. Popups und Sprechblasen mit Kommentaren zurücksetzen und Änderungen überprüfen. Den Zeichen- und Löschmodus für Tabellen zurücksetzen. Drag-and-Drop für Text zurücksetzen. Den Markierungsauswahlmodus zurücksetzen. Den Formatübertragermodus zurücksetzen. Die Auswahl von Formen aufheben. Den Modus zum Hinzufügen von Formen zurücksetzen. Die Kopf-/Fußzeile verlassen. Das Ausfüllen von Formularen beenden.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Den ausgewählten Textabschnitt in die Zwischenablage des Computers senden. Der kopierte Text kann später an anderer Stelle im selben Dokument, in einem anderen Dokument oder in einem anderen Programm eingefügt werden.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Die Formatierung aus dem ausgewählten Fragment des aktuell bearbeiteten Textes kopieren. Die kopierte Formatierung kann später auf ein anderes Textfragment im selben Dokument angewendet werden.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Ein Copyright-Symbol innerhalb des aktuellen Dokuments und rechts vom Cursor einfügen.","Common.Controllers.Shortcuts.txtDescriptionCut":"Den ausgewählten Textabschnitt löschen und ihn in der Zwischenablage des Computers speichern. Der kopierte Text kann später an anderer Stelle im selben Dokument, in einem anderen Dokument oder in einem anderen Programm eingefügt werden.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Die Schriftgröße für das ausgewählte Textfragment um 1 Punkt verringern.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Ein Zeichen links vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Ein Wort/eine Auswahl/ein grafisches Objekt links vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Ein Zeichen rechts vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Ein Wort/eine Auswahl/ein grafisches Objekt rechts vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Wenn der Diagrammtitel ausgewählt ist und der Titel leer ist, bewegen Sie den Cursor an den Anfang der Zeile, andernfalls wählen Sie den Text aus.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Die letzte rückgängig gemachte Aktion wiederholen.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Den gesamten Dokumenttext mit Tabellen und Bildern auswählen.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Wenn die Form ausgewählt ist und keinen Inhalt enthält, erstellen Sie Inhalt und bewegen Sie den Cursor an den Anfang der Zeile. Wenn der Inhalt leer ist, bewegen Sie den Cursor dorthin. Andernfalls wählen Sie den gesamten Inhalt aus.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Die zuletzt ausgeführte Aktion rückgängig machen.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Innerhalb des aktuellen Dokuments und rechts vom Cursor einen Geviertstrich einfügen.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Innerhalb des aktuellen Dokuments und rechts vom Cursor einen Halbgeviertstrich einfügen.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Den aktuellen Absatz und beginnen Sie einen neuen beenden.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Einen neuen Absatz innerhalb einer Zelle beginnen.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Dem Gleichungsargument einen neuen Platzhalter hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Die Ausrichtungsebene des Operators nach links ändern (für die zweite Zeile der Gleichung mit einem erzwungenen Umbruch).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Die Ausrichtungsebene des Operators nach rechts ändern (für die zweite Zeile der Gleichung mit einem erzwungenen Umbruch).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Das Eurozeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Das Auslassungszeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Die Schriftgröße für das ausgewählte Textfragment um 1 Punkt erhöhen.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Einen Absatz von links schrittweise einrücken.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Einen Spaltenumbruch hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Eine Endnote einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"An der aktuellen Cursorposition eine Gleichung einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Eine Fußnote einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Fügen Sie einen Link ein, der zu einer Webadresse führt.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Einen Zeilenumbruch hinzufügen, ohne einen neuen Absatz zu beginnen.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Im mehrzeiligen Formular einen Zeilenumbruch hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"An der aktuellen Cursorposition einen Seitenumbruch einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Die aktuelle Seitenzahl an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Einem Absatz das Tabulatorzeichen hinzufügen (wenn sich der Cursor nicht am Anfang eines Absatzes befindet).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Einen Tabellenumbruch innerhalb der Tabelle einfügen.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Die Schriftart des ausgewählten Textfragments kursiv und leicht schräg machen.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Zwischen Blocksatz und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Einen Absatz linksbündig ausrichten.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach unten zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach links zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach rechts zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach oben zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Den Einzug für die ausgewählten Absätze vergrößern.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Den Einzug für die ausgewählten Absätze verkleinern.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Den Fokus auf das nächste Objekt nach dem aktuell ausgewählten verschieben.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Den Fokus auf das vorherige Objekt vor dem aktuell ausgewählten verschieben.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Den Cursor eine Zeile nach unten bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Den Cursor an das Ende des aktuell bearbeiteten Dokuments setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Den Cursor an das Ende der aktuell bearbeiteten Zeile setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Den Cursor ein Wort nach rechts bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Den Cursor ein Zeichen nach links bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Zur unteren Kopfzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Zur unteren Kopf-/Fußzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Zur nächsten Zelle in einer Tabellenzeile gehen.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Zum nächsten Formular wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Zur nächsten Seite im aktuell bearbeiteten Dokument wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Zur nächsten Zeile in einer Tabelle wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Zur vorherigen Zelle in einer Tabellenzeile wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Zum vorherigen Formular wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Zur vorherigen Seite im aktuell bearbeiteten Dokument wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Zur vorherigen Zeile in einer Tabelle wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Den Cursor um ein Zeichen nach rechts bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Den Cursor ganz an den Anfang des aktuell bearbeiteten Dokuments setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Den Cursor an den Anfang der aktuell bearbeiteten Zeile setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Den Cursor ganz an den Anfang der Seite setzen, die auf die aktuell bearbeitete Seite folgt.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Den Cursor ganz an den Anfang der Seite setzen, die der aktuell bearbeiteten Seite vorausgeht.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Den Cursor an den Anfang eines Wortes oder ein Wort nach links bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Den Cursor eine Zeile nach oben bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Zur oberen Kopfzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Zur oberen Kopf-/Fußzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"In Desktop-Editoren zur nächsten Dateiregisterkarte oder in Online-Editoren zur nächsten Browserregisterkarte wechseln.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Zwischen Steuerelementen navigieren, um in modalen Dialogen den Fokus auf das nächste Steuerelement zu legen.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Einen Bindestrich zwischen Zeichen erstellen, der nicht zum Beginnen einer neuen Zeile verwendet werden kann.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Ein Leerzeichen zwischen Zeichen erstellen, das nicht zum Beginnen einer neuen Zeile verwendet werden kann.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Das Chat-Panel in den Online-Editoren öffnen und eine Nachricht senden.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Ein Dateneingabefeld öffnen, in das man den Text des Kommentars eingeben kann.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Das Kommentarfeld öffnen, um Ihren eigenen Kommentar hinzuzufügen oder auf die Kommentare anderer Benutzer zu antworten.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Das Kontextmenü des ausgewählten Elements öffnen.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Das Standarddialogfeld zur Auswahl einer vorhandenen Datei öffnen. Wenn Sie die Datei in diesem Dialogfeld auswählen und auf „Öffnen“ klicken, wird die Datei in einem neuen Tab oder Fenster von Desktop Editors geöffnet.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Das Dateifenster öffnen, um das aktuelle Dokument zu speichern, herunterzuladen, zu drucken, seine Informationen anzuzeigen, ein neues Dokument zu erstellen oder ein vorhandenes zu öffnen, auf das Hilfecenter des Dokumenteditors oder auf erweiterte Einstellungen zuzugreifen.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Das Menü „Suchen und Ersetzen“ mit dem Ersetzungsfeld öffnen, um ein oder mehrere Vorkommen der gefundenen Zeichen zu ersetzen.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Das Dialogfenster „Suchen“ öffnen, um mit der Suche nach einem Zeichen/Wort/einer Phrase im aktuell bearbeiteten Dokument zu beginnen.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Das Hilfemenü des Dokumenteditors öffnen.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Den zuvor kopierten Text aus der Zwischenablage des Computers an der aktuellen Cursorposition einfügen. Der Text kann zuvor aus demselben Dokument, einem anderen Dokument oder einem anderen Programm kopiert worden sein.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Die zuvor kopierte Formatierung auf den Text im aktuell bearbeiteten Dokument anwenden.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Den zuvor kopierten Text aus der Zwischenablage des Computers an der aktuellen Cursorposition einfügen, ohne die ursprüngliche Formatierung beizubehalten. Der Text kann zuvor aus demselben Dokument, einem anderen Dokument oder einem anderen Programm kopiert worden sein.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"In Desktop-Editoren zur vorherigen Dateiregisterkarte oder in Online-Editoren zur vorherigen Browserregisterkarte wechseln.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Zwischen Steuerelementen navigieren, um in modalen Dialogen den Fokus auf das vorherige Steuerelement zu legen.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Das Dokument mit einem der verfügbaren Drucker ausdrucken oder es als Datei speichern.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Das eingetragene Markenzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Den ausgewählten Unicode-Code durch ein Symbol ersetzen.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Die Formatierung des ausgewählten Textfragments löschen.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Zwischen rechts- und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionSave":"Alle Änderungen am aktuell mit dem Dokumenteditor bearbeiteten Dokument speichern. Die aktive Datei wird mit dem aktuellen Dateinamen, Speicherort und Dateiformat gespeichert.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Das Fenster „Herunterladen als...“ öffnen, um das aktuell bearbeitete Dokument in einem der unterstützten Formate auf der Festplatte Ihres Computers zu speichern.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Im Dokument etwa eine sichtbare Seite nach unten scrollen.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Im Dokument etwa eine sichtbare Seite nach oben scrollen.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Ein Zeichen links von der Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Ein Textfragment vom Cursor bis zum Anfang eines Wortes auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Den Cursor eine Zeile nach unten bewegen und alle Symbole zwischen der vorherigen und der aktuellen Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Den Cursor eine Zeile nach oben bewegen und alle Symbole zwischen der vorherigen und der aktuellen Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Den Seitenteil von der Cursorposition bis zum unteren Teil des Bildschirms auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Den Seitenteil von der Cursorposition bis zum oberen Teil des Bildschirms auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Ein Zeichen rechts von der Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Ein Textfragment vom Cursor bis zum Ende eines Wortes auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Ein Textfragment vom Cursor bis zum Anfang der nächsten Seite auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Ein Textfragment vom Cursor bis zum Anfang der vorherigen Seite auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Ein Textfragment vom Cursor bis zum Ende des Dokuments auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Ein Textfragment vom Cursor bis zum Ende der aktuellen Zeile auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Ein Textfragment vom Cursor bis zum Anfang des Dokuments auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Ein Textfragment vom Cursor bis zum Anfang der aktuellen Zeile auswählen.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Die Anzeige nicht druckbarer Zeichen ein- oder ausblenden.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Das bedingte Trennzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Die Quellformatierung des kopierten Textes beibehalten.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Den Text ohne seine ursprüngliche Formatierung einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Die kopierte Tabelle als verschachtelte Tabelle in die ausgewählte Zelle der vorhandenen Tabelle einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Den Inhalt der vorhandenen Tabelle durch die kopierten Daten ersetzen.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Aktiviert/deaktiviert die Übertragung von in der Anwendung ausgeführten Aktionen für Bildschirmleseprogramme.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Die Listen-/Einzugsebene erhöhen (mit dem Cursor am Anfang eines Absatzes).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Die Listen-/Einzugsebene verkleinern (mit dem Cursor am Anfang eines Absatzes).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Das ausgewählte Textfragment mit einer Linie durchstreichen, die durch die Buchstaben verläuft.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Das ausgewählte Textfragment verkleinern und es im unteren Teil der Textzeile platzieren, z.B. wie bei chemischen Formeln.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Das ausgewählte Textfragment verkleinern und es im oberen Teil der Textzeile platzieren, z.B. wie bei Brüchen.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Das Markenzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Das ausgewählte Textfragment mit einer Linie unterhalb der Buchstaben unterstreichen.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Schrittweise einen Absatzeinzug von links entfernen.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Felder aktualisieren (z. B. Inhaltsverzeichnis).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Klicken Sie auf einen Link (wobei sich der Cursor im Link befindet).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Den Zoom-Parameter des aktuellen Dokuments auf den Standardwert von 100 % zurücksetzen.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Das aktuell bearbeitete Dokument vergrößern.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Das aktuell bearbeitete Dokument verkleinern.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Fett","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Fläche","Common.define.chartData.textAreaStacked":"Gestapelte Fläche","Common.define.chartData.textAreaStackedPer":"100% Gestapelte Fläche","Common.define.chartData.textBar":"Balken","Common.define.chartData.textBarNormal":"Gruppierte Spalte","Common.define.chartData.textBarNormal3d":"Gruppierte 3D-Spalte","Common.define.chartData.textBarNormal3dPerspective":"3D-Spalte","Common.define.chartData.textBarStacked":"Gestapelte Säulen","Common.define.chartData.textBarStacked3d":"Gestapelte 3D-Spalte","Common.define.chartData.textBarStackedPer":"100% Gestapelte Spalte","Common.define.chartData.textBarStackedPer3d":"3-D 100% Gestapelte Spalte","Common.define.chartData.textCharts":"Diagramme","Common.define.chartData.textColumn":"Spalte","Common.define.chartData.textCombo":"Verbund","Common.define.chartData.textComboAreaBar":"Gestapelte Flächen/Gruppierte Säulen","Common.define.chartData.textComboBarLine":"Gruppierte Spalte - Linie","Common.define.chartData.textComboBarLineSecondary":"Gruppierte Spalte/Linie auf der Sekundärachse","Common.define.chartData.textComboCustom":"Benutzerdefinierte Kombination","Common.define.chartData.textDoughnut":"Ring","Common.define.chartData.textHBarNormal":"Gruppierte Balken","Common.define.chartData.textHBarNormal3d":"Gruppierte 3D-Balken","Common.define.chartData.textHBarStacked":"Gestapelte Balken","Common.define.chartData.textHBarStacked3d":"Gestapelte 3D-Balken","Common.define.chartData.textHBarStackedPer":"100% Gestapelte Balken","Common.define.chartData.textHBarStackedPer3d":"3-D 100% Gestapelte Balken","Common.define.chartData.textLine":"Linie","Common.define.chartData.textLine3d":"3D-Linie","Common.define.chartData.textLineMarker":"Linie mit Markierungen","Common.define.chartData.textLineStacked":"Gestapelte Linie","Common.define.chartData.textLineStackedMarker":"Gestapelte Linie mit Markierungen","Common.define.chartData.textLineStackedPer":"100% Gestapelte Linie","Common.define.chartData.textLineStackedPerMarker":"100% Gestapelte Linie mit Markierungen","Common.define.chartData.textPie":"Kuchendiagramm","Common.define.chartData.textPie3d":"3D-Kuchendiagramm","Common.define.chartData.textPoint":"Punkt (XY)","Common.define.chartData.textRadar":"Radar","Common.define.chartData.textRadarFilled":"Gefülltes Radardiagramm","Common.define.chartData.textRadarMarker":"Radar mit Markierungen","Common.define.chartData.textScatter":"Punkte","Common.define.chartData.textScatterLine":"Punkte mit geraden Linien","Common.define.chartData.textScatterLineMarker":"Punkte mit geraden Linien und Markierungen","Common.define.chartData.textScatterSmooth":"Punkte mit interpolierten Linien","Common.define.chartData.textScatterSmoothMarker":"Punkte mit interpolierten Linien und Markierungen","Common.define.chartData.textStock":"Kurs","Common.define.chartData.textSurface":"Oberfläche","Common.define.smartArt.textAccentedPicture":"Bild mit Akzenten","Common.define.smartArt.textAccentProcess":"Akzentprozess","Common.define.smartArt.textAlternatingFlow":"Alternierender Fluss","Common.define.smartArt.textAlternatingHexagons":"Alternierende Sechsecke","Common.define.smartArt.textAlternatingPictureBlocks":"Alternierende Bildblöcke","Common.define.smartArt.textAlternatingPictureCircles":"Alternierende Bildblöcke","Common.define.smartArt.textArchitectureLayout":"Architekturlayout","Common.define.smartArt.textArrowRibbon":"Pfeilband","Common.define.smartArt.textAscendingPictureAccentProcess":"Aufsteigender Prozess mit Bildakzenten","Common.define.smartArt.textBalance":"Kontostand","Common.define.smartArt.textBasicBendingProcess":"Einfacher umgebrochener Prozess","Common.define.smartArt.textBasicBlockList":"Einfache Blockliste","Common.define.smartArt.textBasicChevronProcess":"Einfacher Chevronprozess","Common.define.smartArt.textBasicCycle":"Einfacher Kreis","Common.define.smartArt.textBasicMatrix":"Einfache Matrix","Common.define.smartArt.textBasicPie":"Einfaches Kuchendiagramm","Common.define.smartArt.textBasicProcess":"Einfacher Prozess","Common.define.smartArt.textBasicPyramid":"Einfache Pyramide","Common.define.smartArt.textBasicRadial":"Einfaches Radial","Common.define.smartArt.textBasicTarget":"Einfaches Ziel","Common.define.smartArt.textBasicTimeline":"Einfache Zeitachse","Common.define.smartArt.textBasicVenn":"Einfaches Venn","Common.define.smartArt.textBendingPictureAccentList":"Umgebrochene Bildakzentliste","Common.define.smartArt.textBendingPictureBlocks":"Umgebrochene Bildblöcke","Common.define.smartArt.textBendingPictureCaption":"Umgebrochene Bildbeschriftung","Common.define.smartArt.textBendingPictureCaptionList":"Umgebrochene Bildbeschriftungsliste","Common.define.smartArt.textBendingPictureSemiTranparentText":"Umgebrochener halbtransparenter Bildtext","Common.define.smartArt.textBlockCycle":"Blockkreis","Common.define.smartArt.textBubblePictureList":"Blasenbildliste","Common.define.smartArt.textCaptionedPictures":"Bilder mit Beschriftungen","Common.define.smartArt.textChevronAccentProcess":"Chevronakzentprozess","Common.define.smartArt.textChevronList":"Chevronliste","Common.define.smartArt.textCircleAccentTimeline":"Zeitachse mit Kreisakzent","Common.define.smartArt.textCircleArrowProcess":"Kreisförmiger Pfeilprozess","Common.define.smartArt.textCirclePictureHierarchy":"Bilderhierarchie mit Kreisakzent","Common.define.smartArt.textCircleProcess":"Kreisprozess","Common.define.smartArt.textCircleRelationship":"Kreisbeziehung","Common.define.smartArt.textCircularBendingProcess":"Kreisförmiger umgebrochener Prozess","Common.define.smartArt.textCircularPictureCallout":"Bildlegende mit Kreisakzent","Common.define.smartArt.textClosedChevronProcess":"Geschlossener Chevronprozess","Common.define.smartArt.textContinuousArrowProcess":"Fortlaufender Pfeilprozess","Common.define.smartArt.textContinuousBlockProcess":"Fortlaufender Blockprozess","Common.define.smartArt.textContinuousCycle":"Fortlaufender Kreis","Common.define.smartArt.textContinuousPictureList":"Fortlaufende Bildliste","Common.define.smartArt.textConvergingArrows":"Zusammenlaufende Pfeile","Common.define.smartArt.textConvergingRadial":"Zusammenlaufendes Radial","Common.define.smartArt.textConvergingText":"Zusammenlaufender Text","Common.define.smartArt.textCounterbalanceArrows":"Gegengewichtspfeile","Common.define.smartArt.textCycle":"Zyklus","Common.define.smartArt.textCycleMatrix":"Kreismatrix","Common.define.smartArt.textDescendingBlockList":"Absteigende Blockliste","Common.define.smartArt.textDescendingProcess":"Absteigender Prozess","Common.define.smartArt.textDetailedProcess":"Detaillierter Prozess","Common.define.smartArt.textDivergingArrows":"Auseinanderlaufende Pfeile","Common.define.smartArt.textDivergingRadial":"Auseinanderlaufendes Radial","Common.define.smartArt.textEquation":"Gleichung","Common.define.smartArt.textFramedTextPicture":"Umrahmte Textgrafik","Common.define.smartArt.textFunnel":"Trichter","Common.define.smartArt.textGear":"Zahnrad","Common.define.smartArt.textGridMatrix":"Rastermatrix","Common.define.smartArt.textGroupedList":"Gruppierte Liste","Common.define.smartArt.textHalfCircleOrganizationChart":"Halbkreisorganigramm","Common.define.smartArt.textHexagonCluster":"Sechseck-Cluster","Common.define.smartArt.textHexagonRadial":"Sechseck Radial","Common.define.smartArt.textHierarchy":"Hierarchie","Common.define.smartArt.textHierarchyList":"Hierarchieliste","Common.define.smartArt.textHorizontalBulletList":"Horizontale Aufzählungsliste","Common.define.smartArt.textHorizontalHierarchy":"Horizontale Hierarchie","Common.define.smartArt.textHorizontalLabeledHierarchy":"Horizontal beschriftete Hierarchie","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Horizontale Hierarchie mit mehreren Ebenen","Common.define.smartArt.textHorizontalOrganizationChart":"Horizontales Organigramm","Common.define.smartArt.textHorizontalPictureList":"Horizontale Bildliste","Common.define.smartArt.textIncreasingArrowProcess":"Wachsender Pfeil-Prozess","Common.define.smartArt.textIncreasingCircleProcess":"Wachsender Kreis-Prozess","Common.define.smartArt.textInterconnectedBlockProcess":"Vernetzter Blockprozess","Common.define.smartArt.textInterconnectedRings":"Verbundene Ringe","Common.define.smartArt.textInvertedPyramid":"Umgekehrte Pyramide","Common.define.smartArt.textLabeledHierarchy":"Beschriftete Hierarchie","Common.define.smartArt.textLinearVenn":"Lineares Venn","Common.define.smartArt.textLinedList":"Liste mit Linien","Common.define.smartArt.textList":"Liste","Common.define.smartArt.textMatrix":"Matrix","Common.define.smartArt.textMultidirectionalCycle":"Kreis mit mehreren Richtungen","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigramm mit Name und Titel","Common.define.smartArt.textNestedTarget":"Geschachteltes Ziel","Common.define.smartArt.textNondirectionalCycle":"Richtungsloser Kreis","Common.define.smartArt.textOpposingArrows":"Entgegengesetzte Pfeile","Common.define.smartArt.textOpposingIdeas":"Konträre Ansichten","Common.define.smartArt.textOrganizationChart":"Organigramm","Common.define.smartArt.textOther":"Sonstiges","Common.define.smartArt.textPhasedProcess":"Phasenprozess","Common.define.smartArt.textPicture":"Bild","Common.define.smartArt.textPictureAccentBlocks":"Bildakzentblöcke","Common.define.smartArt.textPictureAccentList":"Bildakzentliste","Common.define.smartArt.textPictureAccentProcess":"Bildakzentprozess","Common.define.smartArt.textPictureCaptionList":"Bildbeschriftungsliste","Common.define.smartArt.textPictureFrame":"Bildrahmen","Common.define.smartArt.textPictureGrid":"Bildraster","Common.define.smartArt.textPictureLineup":"Bildanordnung","Common.define.smartArt.textPictureOrganizationChart":"Bildorganigramm","Common.define.smartArt.textPictureStrips":"Bildstreifen","Common.define.smartArt.textPieProcess":"Kuchendiagrammprozess","Common.define.smartArt.textPlusAndMinus":"Plus und Minus","Common.define.smartArt.textProcess":"Prozess","Common.define.smartArt.textProcessArrows":"Prozesspfeile","Common.define.smartArt.textProcessList":"Prozessliste","Common.define.smartArt.textPyramid":"Pyramide","Common.define.smartArt.textPyramidList":"Pyramidenliste","Common.define.smartArt.textRadialCluster":"Radialer Cluster","Common.define.smartArt.textRadialCycle":"Radialkreis","Common.define.smartArt.textRadialList":"Radialliste","Common.define.smartArt.textRadialPictureList":"Radiale Bildliste","Common.define.smartArt.textRadialVenn":"Radialvenn","Common.define.smartArt.textRandomToResultProcess":"Zufallsergebnisprozess","Common.define.smartArt.textRelationship":"Beziehung","Common.define.smartArt.textRepeatingBendingProcess":"Wiederholter umgebrochener Prozess","Common.define.smartArt.textReverseList":"Umgekehrte Liste","Common.define.smartArt.textSegmentedCycle":"Segmentierter Kreis","Common.define.smartArt.textSegmentedProcess":"Segmentierter Prozess","Common.define.smartArt.textSegmentedPyramid":"Segmentierte Pyramide","Common.define.smartArt.textSnapshotPictureList":"Momentaufnahme-Bildliste","Common.define.smartArt.textSpiralPicture":"Spiralförmige Grafik","Common.define.smartArt.textSquareAccentList":"Liste mit quadratischen Akzenten","Common.define.smartArt.textStackedList":"Gestapelte Liste","Common.define.smartArt.textStackedVenn":"Gestapeltes Venn","Common.define.smartArt.textStaggeredProcess":"Gestaffelter Prozess","Common.define.smartArt.textStepDownProcess":"Prozess mit absteigenden Schritten","Common.define.smartArt.textStepUpProcess":"Prozess mit aufsteigenden Schritten","Common.define.smartArt.textSubStepProcess":"Unterschrittprozess","Common.define.smartArt.textTabbedArc":"Registerkartenbogen","Common.define.smartArt.textTableHierarchy":"Tabellenhierarchie","Common.define.smartArt.textTableList":"Tabellenliste","Common.define.smartArt.textTabList":"Registerkartenliste","Common.define.smartArt.textTargetList":"Zielliste","Common.define.smartArt.textTextCycle":"Textkreis","Common.define.smartArt.textThemePictureAccent":"Designbildakzent","Common.define.smartArt.textThemePictureAlternatingAccent":"Alternierender Designbildakzent","Common.define.smartArt.textThemePictureGrid":"Designbildraster","Common.define.smartArt.textTitledMatrix":"Betitelte Matrix","Common.define.smartArt.textTitledPictureAccentList":"Bildakzentliste mit Titel","Common.define.smartArt.textTitledPictureBlocks":"Titelbildblöcke","Common.define.smartArt.textTitlePictureLineup":"Titelbildanordnung","Common.define.smartArt.textTrapezoidList":"Trapezförmige Liste","Common.define.smartArt.textUpwardArrow":"Pfeil nach oben","Common.define.smartArt.textVaryingWidthList":"Liste mit variabler Breite","Common.define.smartArt.textVerticalAccentList":"Liste mit vertikalen Akzenten","Common.define.smartArt.textVerticalArrowList":"Vertical Arrow List","Common.define.smartArt.textVerticalBendingProcess":"Vertikaler umgebrochener Prozess","Common.define.smartArt.textVerticalBlockList":"Vertikale Blockliste","Common.define.smartArt.textVerticalBoxList":"Vertikale Feldliste","Common.define.smartArt.textVerticalBracketList":"Liste mit vertikalen Klammerakzenten","Common.define.smartArt.textVerticalBulletList":"Vertikale Aufzählung","Common.define.smartArt.textVerticalChevronList":"Vertikale Chevronliste","Common.define.smartArt.textVerticalCircleList":"Liste mit vertikalen Kreisakzenten","Common.define.smartArt.textVerticalCurvedList":"Liste mit vertikalen Kurven","Common.define.smartArt.textVerticalEquation":"Vertikale Formel","Common.define.smartArt.textVerticalPictureAccentList":"Vertikale Bildakzentliste","Common.define.smartArt.textVerticalPictureList":"Vertikale Bildliste","Common.define.smartArt.textVerticalProcess":"Vertikaler Prozess","Common.Translation.textMoreButton":"Mehr","Common.Translation.tipFileLocked":"Das Dokument ist für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die Datei später als lokale Kopie speichern.","Common.Translation.tipFileReadOnly":"Das Dokument ist schreibgeschützt und für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die lokale Kopie später speichern.","Common.Translation.warnFileLocked":"Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.","Common.Translation.warnFileLockedBtnEdit":"Kopie erstellen","Common.Translation.warnFileLockedBtnView":"Schreibgeschützt öffnen","Common.UI.ButtonColored.textAutoColor":"Automatisch","Common.UI.ButtonColored.textEyedropper":"Pipette","Common.UI.ButtonColored.textNewColor":"Mehr Farben","Common.UI.Calendar.textApril":"April","Common.UI.Calendar.textAugust":"August","Common.UI.Calendar.textDecember":"Dezember","Common.UI.Calendar.textFebruary":"Februar","Common.UI.Calendar.textJanuary":"Januar","Common.UI.Calendar.textJuly":"Juli","Common.UI.Calendar.textJune":"Juni","Common.UI.Calendar.textMarch":"März","Common.UI.Calendar.textMay":"Mai","Common.UI.Calendar.textMonths":"Monate","Common.UI.Calendar.textNovember":"November","Common.UI.Calendar.textOctober":"Oktober","Common.UI.Calendar.textSeptember":"September","Common.UI.Calendar.textShortApril":"Apr","Common.UI.Calendar.textShortAugust":"Aug","Common.UI.Calendar.textShortDecember":"Dez","Common.UI.Calendar.textShortFebruary":"Feb","Common.UI.Calendar.textShortFriday":"Fr","Common.UI.Calendar.textShortJanuary":"Jan","Common.UI.Calendar.textShortJuly":"Jul","Common.UI.Calendar.textShortJune":"Jun","Common.UI.Calendar.textShortMarch":"Mrz","Common.UI.Calendar.textShortMay":"Mai","Common.UI.Calendar.textShortMonday":"Mo","Common.UI.Calendar.textShortNovember":"Nov","Common.UI.Calendar.textShortOctober":"Okt","Common.UI.Calendar.textShortSaturday":"Sa","Common.UI.Calendar.textShortSeptember":"Sep","Common.UI.Calendar.textShortSunday":"Son","Common.UI.Calendar.textShortThursday":"Do","Common.UI.Calendar.textShortTuesday":"Di","Common.UI.Calendar.textShortWednesday":"Mi","Common.UI.Calendar.textYears":"Jahre","Common.UI.ComboBorderSize.txtNoBorders":"Keine Rahmen","Common.UI.ComboBorderSizeEditable.txtNoBorders":"Keine Rahmen","Common.UI.ComboDataView.emptyComboText":"Keine Formate","Common.UI.ExtendedColorDialog.addButtonText":"Hinzufügen","Common.UI.ExtendedColorDialog.textCurrent":"Aktuell","Common.UI.ExtendedColorDialog.textHexErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 000000 und FFFFFF ein.","Common.UI.ExtendedColorDialog.textNew":"Neu","Common.UI.ExtendedColorDialog.textRGBErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen numerischen Wert zwischen 0 und 255 ein.","Common.UI.HSBColorPicker.textNoColor":"Ohne Farbe","Common.UI.InputField.txtEmpty":"Dieses Feld ist erforderlich","Common.UI.InputFieldBtnCalendar.textDate":"Datum auswählen","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Passwort ausblenden","Common.UI.InputFieldBtnPassword.textHintHold":"Lang drücken, um das Passwort anzuzeigen","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Password anzeigen","Common.UI.SearchBar.textFind":"Suchen","Common.UI.SearchBar.tipCloseSearch":"Suche schließen","Common.UI.SearchBar.tipNextResult":"Nächstes Ergebnis","Common.UI.SearchBar.tipOpenAdvancedSettings":"Erweiterte Einstellungen öffnen","Common.UI.SearchBar.tipPreviousResult":"Vorheriges Ergebnis","Common.UI.SearchDialog.textHighlight":"Ergebnisse hervorheben","Common.UI.SearchDialog.textMatchCase":"Groß-/Kleinschreibung beachten","Common.UI.SearchDialog.textReplaceDef":"Geben Sie den Ersetzungstext ein","Common.UI.SearchDialog.textSearchStart":"Geben Sie den Text hier ein","Common.UI.SearchDialog.textTitle":"Suchen und ersetzen","Common.UI.SearchDialog.textTitle2":"Suchen","Common.UI.SearchDialog.textWholeWords":"Nur ganze Wörter","Common.UI.SearchDialog.txtBtnHideReplace":"Ersetzen verbergen","Common.UI.SearchDialog.txtBtnReplace":"Ersetzen","Common.UI.SearchDialog.txtBtnReplaceAll":"Alle ersetzen","Common.UI.SynchronizeTip.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"Neu","Common.UI.SynchronizeTip.textSynchronize":"Das Dokument wurde von einem anderen Benutzer geändert.
Bitte klicken hier, um Ihre Änderungen zu speichern und die Aktualisierungen neu zu laden.","Common.UI.ThemeColorPalette.textRecentColors":"Kürzlich verwendete Farben","Common.UI.ThemeColorPalette.textStandartColors":"Standardfarben","Common.UI.ThemeColorPalette.textThemeColors":"Themenfarben","Common.UI.ThemeColorPalette.textTransparent":"Transparent","Common.UI.Themes.txtThemeClassicLight":"Klassisch Hell","Common.UI.Themes.txtThemeContrastDark":"Dunkler Kontrast","Common.UI.Themes.txtThemeDark":"Dunkel","Common.UI.Themes.txtThemeGray":"Grau","Common.UI.Themes.txtThemeLight":"Hell","Common.UI.Themes.txtThemeModernDark":"Modern Dunkel","Common.UI.Themes.txtThemeModernLight":"Modern Hell","Common.UI.Themes.txtThemeSystem":"Wie im System","Common.UI.Themes.txtThemeWhite":"Weiß","Common.UI.Window.cancelButtonText":"Abbrechen","Common.UI.Window.closeButtonText":"Schließen","Common.UI.Window.noButtonText":"Nein","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Bestätigung","Common.UI.Window.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.UI.Window.textError":"Fehler","Common.UI.Window.textInformation":"Information","Common.UI.Window.textWarning":"Achtung","Common.UI.Window.yesButtonText":"Ja","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Strg","Common.Utils.String.textShift":"Umschalt","Common.Utils.ThemeColor.txtaccent":"Akzent","Common.Utils.ThemeColor.txtAqua":"Dunkeltürkis","Common.Utils.ThemeColor.txtbackground":"Hintergrund","Common.Utils.ThemeColor.txtBlack":"schwarz","Common.Utils.ThemeColor.txtBlue":"blau","Common.Utils.ThemeColor.txtBrightGreen":"Helles Grün","Common.Utils.ThemeColor.txtBrown":"Braun","Common.Utils.ThemeColor.txtDarkBlue":"Dunkelblau","Common.Utils.ThemeColor.txtDarker":"Dunkler","Common.Utils.ThemeColor.txtDarkGray":"Dunkelgrau","Common.Utils.ThemeColor.txtDarkGreen":"Dunkelgrün","Common.Utils.ThemeColor.txtDarkPurple":"Dunkelviolett","Common.Utils.ThemeColor.txtDarkRed":"Dunkelrot","Common.Utils.ThemeColor.txtDarkTeal":"Dunkelblaugrün","Common.Utils.ThemeColor.txtDarkYellow":"Dunkelgelb","Common.Utils.ThemeColor.txtGold":"Gold","Common.Utils.ThemeColor.txtGray":"grau","Common.Utils.ThemeColor.txtGreen":"grün","Common.Utils.ThemeColor.txtIndigo":"Indigo","Common.Utils.ThemeColor.txtLavender":"Lavendel","Common.Utils.ThemeColor.txtLightBlue":"Hellblau","Common.Utils.ThemeColor.txtLighter":"Heller","Common.Utils.ThemeColor.txtLightGray":"Hellgrau","Common.Utils.ThemeColor.txtLightGreen":"Hellgrün","Common.Utils.ThemeColor.txtLightOrange":"Hellorange","Common.Utils.ThemeColor.txtLightYellow":"Hellgelb","Common.Utils.ThemeColor.txtOrange":"Orange","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Lila","Common.Utils.ThemeColor.txtRed":"rot","Common.Utils.ThemeColor.txtRose":"Rosa","Common.Utils.ThemeColor.txtSkyBlue":"Himmelblau","Common.Utils.ThemeColor.txtTeal":"Türkisblau","Common.Utils.ThemeColor.txttext":"Text","Common.Utils.ThemeColor.txtTurquosie":"Türkis","Common.Utils.ThemeColor.txtViolet":"Violet","Common.Utils.ThemeColor.txtWhite":"weiß","Common.Utils.ThemeColor.txtYellow":"gelb","Common.Views.About.txtAddress":"Adresse:","Common.Views.About.txtLicensee":"LIZENZNEHMER","Common.Views.About.txtLicensor":"LIZENZGEBER","Common.Views.About.txtMail":"E-Mail-Adresse: ","Common.Views.About.txtPoweredBy":"Entwickelt von","Common.Views.About.txtTel":"Tel.: ","Common.Views.About.txtVersion":"Version ","Common.Views.AutoCorrectDialog.textAdd":"Hinzufügen","Common.Views.AutoCorrectDialog.textApplyText":"Bei der Eingabe anwenden","Common.Views.AutoCorrectDialog.textAutoCorrect":"Autokorrektur für Text","Common.Views.AutoCorrectDialog.textAutoFormat":"Automatisches Formatieren während der Eingabe","Common.Views.AutoCorrectDialog.textBulleted":"Automatische Aufzählungen","Common.Views.AutoCorrectDialog.textBy":"Nach","Common.Views.AutoCorrectDialog.textDelete":"Löschen","Common.Views.AutoCorrectDialog.textDoubleSpaces":"Punkt mit doppeltem Leerzeichen hinzufügen","Common.Views.AutoCorrectDialog.textFLCells":"Jede Tabellenzelle mit einem Großbuchstaben beginnen","Common.Views.AutoCorrectDialog.textFLDont":"Großbuchstaben nicht verwenden nach","Common.Views.AutoCorrectDialog.textFLSentence":"Jeden Satz mit einem Großbuchstaben beginnen","Common.Views.AutoCorrectDialog.textForLangFL":"Ausnahmen für die Sprache:","Common.Views.AutoCorrectDialog.textHyperlink":"Internet- und Netzwerkpfade mit Links","Common.Views.AutoCorrectDialog.textHyphens":"Bindestriche (--) mit Gedankenstrich (—)","Common.Views.AutoCorrectDialog.textMathCorrect":"Mathematische Autokorrektur","Common.Views.AutoCorrectDialog.textNumbered":"Automatische nummerierte Listen","Common.Views.AutoCorrectDialog.textQuotes":"\"Gerade Anführungszeichen\" mit \"intelligenten Anführungszeichen\"","Common.Views.AutoCorrectDialog.textRecognized":"Erkannte Funktionen","Common.Views.AutoCorrectDialog.textRecognizedDesc":"Die folgenden Ausdrücke sind erkannte mathematische Funktionen. Diese werden nicht automatisch kursiviert.","Common.Views.AutoCorrectDialog.textReplace":"Ersetzen","Common.Views.AutoCorrectDialog.textReplaceText":"Bei der Eingabe ersetzen","Common.Views.AutoCorrectDialog.textReplaceType":"Text bei der Eingabe ersetzen","Common.Views.AutoCorrectDialog.textReset":"Zurücksetzen","Common.Views.AutoCorrectDialog.textResetAll":"Zurücksetzen auf die Standardeinstellungen","Common.Views.AutoCorrectDialog.textRestore":"Wiederherstellen","Common.Views.AutoCorrectDialog.textTitle":"Automatische Korrektur","Common.Views.AutoCorrectDialog.textWarnAddFL":"Ausnahmen dürfen nur Groß- oder Kleinbuchstaben enthalten.","Common.Views.AutoCorrectDialog.textWarnAddRec":"Erkannte Funktionen sollen nur groß- oder kleingeschriebene Buchstaben von A bis Z beinhalten.","Common.Views.AutoCorrectDialog.textWarnResetFL":"Alle von Ihnen hinzugefügten Ausnahmen werden entfernt und die entfernten werden wiederhergestellt. Möchten Sie fortfahren?","Common.Views.AutoCorrectDialog.textWarnResetRec":"Alle hinzugefügten Ausdrücke werden entfernt und die gelöschten Ausdrücke werden zurückgestellt. Möchten Sie fortsetzen?","Common.Views.AutoCorrectDialog.warnReplace":"Es gibt schon einen Autokorrektur-Eintrag für %1. Möchten Sie dieses ersetzen?","Common.Views.AutoCorrectDialog.warnReset":"Hinzugefügte Autokorrektur wird entfernt und geänderte Autokorrektur wird zurückgestellt. Möchten Sie trotzdem fortsetzen?","Common.Views.AutoCorrectDialog.warnRestore":"Der Autokorrektur-Eintrag für %1 wird zurückgestellt. Möchten Sie fortsetzen?","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Chat schließen","Common.Views.Chat.textEnterMessage":"Geben Sie Ihre Nachricht hier ein","Common.Views.Chat.textSend":"Senden","Common.Views.Comments.mniAuthorAsc":"Verfasser (A-Z)","Common.Views.Comments.mniAuthorDesc":"Verfasser (Z-A)","Common.Views.Comments.mniDateAsc":"Älteste zuerst","Common.Views.Comments.mniDateDesc":"Neueste zuerst","Common.Views.Comments.mniFilterComments":"Kommentare anzeigen","Common.Views.Comments.mniFilterGroups":"Nach Gruppe filtern","Common.Views.Comments.mniPositionAsc":"Von oben","Common.Views.Comments.mniPositionDesc":"Von unten","Common.Views.Comments.textAdd":"Hinzufügen","Common.Views.Comments.textAddComment":"Kommentar hinzufügen","Common.Views.Comments.textAddCommentToDoc":"Kommentar zum Dokument hinzufügen","Common.Views.Comments.textAddReply":"Antwort hinzufügen","Common.Views.Comments.textAll":"Alle","Common.Views.Comments.textAnonym":"Gast","Common.Views.Comments.textCancel":"Abbrechen","Common.Views.Comments.textClose":"Schließen","Common.Views.Comments.textClosePanel":"Kommentare schließen","Common.Views.Comments.textComment":"Kommentar","Common.Views.Comments.textComments":"Kommentare","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Geben Sie Ihren Kommentar hier ein","Common.Views.Comments.textHintAddComment":"Kommentar hinzufügen","Common.Views.Comments.textOpen":"Offen","Common.Views.Comments.textOpenAgain":"Erneut öffnen","Common.Views.Comments.textReply":"Antworten","Common.Views.Comments.textResolve":"Lösen","Common.Views.Comments.textResolved":"Gelöst","Common.Views.Comments.textSort":"Kommentare sortieren","Common.Views.Comments.textSortFilter":"Kommentare sortieren und filtern","Common.Views.Comments.textSortFilterMore":"Sortieren, filtern und mehr","Common.Views.Comments.textSortMore":"Sortieren und mehr","Common.Views.Comments.textViewResolved":"Sie haben keine Berechtigung, den Kommentar erneut zu öffnen","Common.Views.Comments.txtEmpty":"Das Dokument enthält keine Kommentare.","Common.Views.CopyWarningDialog.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.Views.CopyWarningDialog.textMsg":"Kopier-, Ausschneide- und Einfügeaktionen mit den Schaltflächen der Editor-Symbolleiste und Kontextmenü-Aktionen werden nur innerhalb dieser Editor-Registerkarte ausgeführt.

Zum Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:","Common.Views.CopyWarningDialog.textTitle":"Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"","Common.Views.CopyWarningDialog.textToCopy":"zum Kopieren","Common.Views.CopyWarningDialog.textToCut":"zum Ausschneiden","Common.Views.CopyWarningDialog.textToPaste":"zum Einfügen","Common.Views.CustomizeQuickAccessDialog.textDownload":"Herunterladen","Common.Views.CustomizeQuickAccessDialog.textMsg":"Markieren Sie die Befehle, die in der Symbolleiste für den Schnellzugriff angezeigt werden sollen","Common.Views.CustomizeQuickAccessDialog.textPrint":"Drucken","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Schnelldruck","Common.Views.CustomizeQuickAccessDialog.textRedo":"Wiederholen","Common.Views.CustomizeQuickAccessDialog.textSave":"Speichern","Common.Views.CustomizeQuickAccessDialog.textTitle":"Schnellzugriff anpassen","Common.Views.CustomizeQuickAccessDialog.textUndo":"Rückgängig machen","Common.Views.DocumentAccessDialog.textLoading":"Ladevorgang...","Common.Views.DocumentAccessDialog.textTitle":"Freigabeeinstellungen","Common.Views.DocumentPropertyDialog.errorDate":"Sie können einen Wert aus dem Kalender auswählen, um den Wert als Datum zu speichern.
Wenn Sie einen Wert manuell eingeben, wird er als Text gespeichert.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"Nein","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"Ja","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"Eigenschaft sollte einen Titel haben","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"Titel","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"Ja\" or \"Nein\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"Datum","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"Typ","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"Nummer","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"Geben Sie eine gültige Nummer ein","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"Text","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"Eigenschaft sollte einen Wert haben","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"Wert","Common.Views.DocumentPropertyDialog.txtTitle":"Neue Dokumenteigenschaft","Common.Views.Draw.hintEraser":"Radierer","Common.Views.Draw.hintSelect":"Auswahl","Common.Views.Draw.txtEraser":"Radierer","Common.Views.Draw.txtHighlighter":"Textmarker","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Stift","Common.Views.Draw.txtSelect":"Auswahl","Common.Views.Draw.txtSize":"Größe","Common.Views.ExternalDiagramEditor.textTitle":"Diagramm bearbeiten","Common.Views.ExternalEditor.textClose":"Schließen","Common.Views.ExternalEditor.textSave":"Speichern und beenden","Common.Views.ExternalLinksDlg.closeButtonText":"Schließen","Common.Views.ExternalLinksDlg.textAutoUpdate":"Daten aus den verknüpften Quellen automatisch aktualisieren","Common.Views.ExternalLinksDlg.textChange":"Quelle ändern","Common.Views.ExternalLinksDlg.textDelete":"Links unterbrechen","Common.Views.ExternalLinksDlg.textDeleteAll":"Alle Links unterbrechen","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Open Source","Common.Views.ExternalLinksDlg.textSource":"Quelle","Common.Views.ExternalLinksDlg.textStatus":"Status","Common.Views.ExternalLinksDlg.textUnknown":"Unbekannt","Common.Views.ExternalLinksDlg.textUpdate":"Werte aktualisieren","Common.Views.ExternalLinksDlg.textUpdateAll":"Alles aktualisieren","Common.Views.ExternalLinksDlg.textUpdating":"Wird aktualisiert...","Common.Views.ExternalLinksDlg.txtTitle":"Externe Links","Common.Views.ExternalMergeEditor.textTitle":"Seriendruckempfänger","Common.Views.ExternalOleEditor.textTitle":"Editor der Tabellenkalkulationen","Common.Views.FormatSettingsDialog.textCategory":"Kategorie","Common.Views.FormatSettingsDialog.textDecimal":"Dezimal","Common.Views.FormatSettingsDialog.textFormat":"Format","Common.Views.FormatSettingsDialog.textLinked":"Mit Quelle verknüpft","Common.Views.FormatSettingsDialog.textLocale":"Gebietsschema","Common.Views.FormatSettingsDialog.textSeparator":"1000er-Trennzeichen verwenden","Common.Views.FormatSettingsDialog.textSymbols":"Symbole","Common.Views.FormatSettingsDialog.textTitle":"Zahlenformat","Common.Views.FormatSettingsDialog.txtAccounting":"Rechnungswesen","Common.Views.FormatSettingsDialog.txtAs10":"Als Zehntel (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"Als Hundertstel (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"Als Sechzehntel (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"Als Hälften (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"Als Quarten (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"Als Achtel (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"Währung","Common.Views.FormatSettingsDialog.txtCustom":"Benutzerdefiniert","Common.Views.FormatSettingsDialog.txtCustomWarning":"Bitte geben Sie das benutzerdefinierte Zahlenformat sorgfältig ein. Der Tabellenkalkulationseditor überprüft benutzerdefinierte Formate nicht auf Fehler, die die XLSX-Datei beeinträchtigen könnten.","Common.Views.FormatSettingsDialog.txtDate":"Datum","Common.Views.FormatSettingsDialog.txtFraction":"Bruch","Common.Views.FormatSettingsDialog.txtGeneral":"Allgemein","Common.Views.FormatSettingsDialog.txtNone":"Kein(e)","Common.Views.FormatSettingsDialog.txtNumber":"Nummer","Common.Views.FormatSettingsDialog.txtPercentage":"Prozentsatz","Common.Views.FormatSettingsDialog.txtSample":"Beispiel:","Common.Views.FormatSettingsDialog.txtScientific":"Wissenschaftlich","Common.Views.FormatSettingsDialog.txtText":"Text","Common.Views.FormatSettingsDialog.txtTime":"Zeit","Common.Views.FormatSettingsDialog.txtUpto1":"Bis zu einer Ziffer (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"Bis zu zwei Ziffern (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"Bis zu drei Ziffern (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"Symbolleiste für Schnellzugriff","Common.Views.Header.labelCoUsersDescr":"Das Dokument wird gerade von mehreren Benutzern bearbeitet.","Common.Views.Header.textAddFavorite":"Als Favorit kennzeichnen","Common.Views.Header.textAdvSettings":"Erweiterte Einstellungen","Common.Views.Header.textBack":"Dateispeicherort öffnen","Common.Views.Header.textClose":"Datei schließen","Common.Views.Header.textCompactView":"Symbolleiste ausblenden","Common.Views.Header.textDocEditDesc":"Alle Änderungen vornehmen","Common.Views.Header.textDocViewDesc":"Datei anzeigen, aber keine Änderungen vornehmen","Common.Views.Header.textDocViewFormDesc":"Prüfen, wie das Formular beim Ausfüllen aussehen wird","Common.Views.Header.textDownload":"Herunterladen","Common.Views.Header.textEdit":"Bearbeitung","Common.Views.Header.textHideLines":"Lineale verbergen","Common.Views.Header.textHideStatusBar":"Statusleiste verbergen","Common.Views.Header.textPrint":"Drucken","Common.Views.Header.textReadOnly":"Schreibgeschützt","Common.Views.Header.textRemoveFavorite":"Aus Favoriten entfernen","Common.Views.Header.textReview":"Überprüfung","Common.Views.Header.textReviewDesc":"Änderungen vorschlagen","Common.Views.Header.textShare":"Freigeben","Common.Views.Header.textStartFill":"Teilen & sammeln","Common.Views.Header.textView":"Anzeigen","Common.Views.Header.textViewForm":"Vorschau","Common.Views.Header.textZoom":"Vergrößern","Common.Views.Header.tipAccessRights":"Zugriffsrechte für das Dokument verwalten","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Symbolleiste für den Schnellzugriff anpassen","Common.Views.Header.tipDocEdit":"Bearbeitung","Common.Views.Header.tipDocView":"Anzeigen","Common.Views.Header.tipDocViewForm":"Formularvorschau","Common.Views.Header.tipDownload":"Datei herunterladen","Common.Views.Header.tipFillStatus":"Status der Formularausfüllung","Common.Views.Header.tipGoEdit":"Aktuelle Datei bearbeiten","Common.Views.Header.tipPrint":"Datei drucken","Common.Views.Header.tipPrintQuick":"Schnelldruck","Common.Views.Header.tipRedo":"Wiederholen","Common.Views.Header.tipReview":"Überprüfung","Common.Views.Header.tipSave":"Speichern","Common.Views.Header.tipSearch":"Suchen","Common.Views.Header.tipUndo":"Rückgängig","Common.Views.Header.tipUsers":"Benutzer ansehen","Common.Views.Header.tipViewSettings":"Ansichts-Einstellungen","Common.Views.Header.tipViewUsers":"Benutzer ansehen und Zugriffsrechte für das Dokument verwalten","Common.Views.Header.txtAccessRights":"Zugriffsrechte ändern","Common.Views.Header.txtRename":"Umbenennen","Common.Views.History.textCloseHistory":"Historie schließen","Common.Views.History.textHide":"Reduzieren","Common.Views.History.textHideAll":"Wesentliche Änderungen verbergen","Common.Views.History.textHighlightDeleted":"Gelöschte Elemente hervorheben","Common.Views.History.textMore":"Mehr","Common.Views.History.textRestore":"Wiederherstellen","Common.Views.History.textShow":"Erweitern","Common.Views.History.textShowAll":"Wesentliche Änderungen anzeigen","Common.Views.History.textVer":"Ver.","Common.Views.History.textVersionHistory":"Versionsverlauf","Common.Views.ImageFromUrlDialog.textUrl":"Bild-URL einfügen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Dieses Feld ist erforderlich","Common.Views.ImageFromUrlDialog.txtNotUrl":"Dieses Feld muss eine URL im Format \"http://www.example.com\" sein","Common.Views.InsertTableDialog.textInvalidRowsCols":"Sie müssen eine gültige Anzahl der Zeilen und Spalten angeben.","Common.Views.InsertTableDialog.txtColumns":"Anzahl von Spalten","Common.Views.InsertTableDialog.txtMaxText":"Der maximale Wert für dieses Feld ist {0}.","Common.Views.InsertTableDialog.txtMinText":"Der minimale Wert für dieses Feld ist {0}.","Common.Views.InsertTableDialog.txtRows":"Anzahl von Zeilen","Common.Views.InsertTableDialog.txtTitle":"Größe der Tabelle","Common.Views.InsertTableDialog.txtTitleSplit":"Zelle teilen","Common.Views.LanguageDialog.labelSelect":"Sprache des Dokuments wählen","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Geben Sie eine Eingabeaufforderung für die Abfrage ein","Common.Views.MacrosAiDialog.textCreate":"Erstellen","Common.Views.MacrosDialog.textAutostart":"Autostart","Common.Views.MacrosDialog.textConvertFromVBA":"Aus VBA konvertieren ","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Makros aus VBA konvertieren ","Common.Views.MacrosDialog.textCopy":"Kopieren","Common.Views.MacrosDialog.textCreateFromDesc":"Aus Beschreibung erstellen","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Makros aus Beschreibung erstellen","Common.Views.MacrosDialog.textCustomFunction":"Benutzerdefinierte Funktion","Common.Views.MacrosDialog.textCustomFunctions":"Benutzerdefinierte Funktionen","Common.Views.MacrosDialog.textDebug":"Debuggen","Common.Views.MacrosDialog.textDelete":"Löschen","Common.Views.MacrosDialog.textFunctions":"Funktionen","Common.Views.MacrosDialog.textLoading":"Ladevorgang...","Common.Views.MacrosDialog.textMacro":"Makro","Common.Views.MacrosDialog.textMacros":"Makros","Common.Views.MacrosDialog.textMakeAutostart":"Autostart ausführen","Common.Views.MacrosDialog.textRename":"Umbenennen","Common.Views.MacrosDialog.textRun":"Ausführen","Common.Views.MacrosDialog.textSave":"Speichern","Common.Views.MacrosDialog.textTitle":"Makros","Common.Views.MacrosDialog.textUnMakeAutostart":"Autostart aufheben","Common.Views.MacrosDialog.tipAI":"KI","Common.Views.MacrosDialog.tipFunctionAdd":"Benutzerdefinierte Funktion hinzufügen","Common.Views.MacrosDialog.tipFunctionCopy":"Benutzerdefinierte Funktion kopieren","Common.Views.MacrosDialog.tipFunctionDelete":"Benutzerdefinierte Funktion löschen","Common.Views.MacrosDialog.tipFunctionRename":"Benutzerdefinierte Funktion umbenennen","Common.Views.MacrosDialog.tipMacrosAdd":"Makros hinzufügen","Common.Views.MacrosDialog.tipMacrosCopy":"Makros kopieren","Common.Views.MacrosDialog.tipMacrosDebug":"Makros debuggen","Common.Views.MacrosDialog.tipMacrosRename":"Makros umbenennen","Common.Views.MacrosDialog.tipMacrosRun":"Makros ausführen","Common.Views.MacrosDialog.tipRedo":"Wiederholen","Common.Views.MacrosDialog.tipUndo":"Rückgängig","Common.Views.OpenDialog.closeButtonText":"Datei schließen","Common.Views.OpenDialog.txtEncoding":"Zeichenkodierung","Common.Views.OpenDialog.txtIncorrectPwd":"Kennwort ist falsch.","Common.Views.OpenDialog.txtOpenFile":"Kennwort zum Öffnen der Datei eingeben","Common.Views.OpenDialog.txtPassword":"Kennwort","Common.Views.OpenDialog.txtPreview":"Vorschau","Common.Views.OpenDialog.txtProtected":"Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.","Common.Views.OpenDialog.txtTitle":"Wähle %1 Optionen","Common.Views.OpenDialog.txtTitleProtected":"Geschützte Datei","Common.Views.PasswordDialog.txtDescription":"Legen Sie ein Passwort fest, um dieses Dokument zu schützen","Common.Views.PasswordDialog.txtIncorrectPwd":"Bestätigungseingabe ist nicht identisch","Common.Views.PasswordDialog.txtPassword":"Kennwort","Common.Views.PasswordDialog.txtRepeat":"Kennwort wiederholen","Common.Views.PasswordDialog.txtTitle":"Kennwort festlegen","Common.Views.PasswordDialog.txtWarning":"Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie es an einem sicheren Ort auf.","Common.Views.PdfSignDialog.textBefore":"Bevor Sie dieses Dokument unterzeichnen, überprüfen Sie bitte, ob der Inhalt, den Sie unterzeichnen, korrekt ist.","Common.Views.PdfSignDialog.textClear":"Leeren","Common.Views.PdfSignDialog.textFromFile":"Aus Datei","Common.Views.PdfSignDialog.textFromStorage":"Aus dem Speicher","Common.Views.PdfSignDialog.textFromUrl":"Aus URL","Common.Views.PdfSignDialog.textLooksAs":"Wie sieht Signatur aus:","Common.Views.PdfSignDialog.textSelect":"Bild auswählen","Common.Views.PdfSignDialog.tipRedo":"Wiederholen","Common.Views.PdfSignDialog.tipUndo":"Rückgängig machen","Common.Views.PdfSignDialog.txtDraw":"Zeichnen","Common.Views.PdfSignDialog.txtRemBack":"Weißen Hintergrund entfernen","Common.Views.PdfSignDialog.txtTitle":"Signatur","Common.Views.PdfSignDialog.txtType":"Typ","Common.Views.PdfSignDialog.txtUpload":"Hochladen","Common.Views.PdfSignDialog.txtUploadDesc":"Sie können Bilder in den Formaten JPEG, JPG, GIF und PNG mit einer maximalen Größe von 30 MB hochladen.","Common.Views.PluginDlg.textDock":"Plugin anheften","Common.Views.PluginDlg.textLoading":"Ladevorgang","Common.Views.PluginPanel.textClosePanel":"Plugin schließen","Common.Views.PluginPanel.textHidePanel":"Plugin reduzieren","Common.Views.PluginPanel.textLoading":"Ladevorgang","Common.Views.PluginPanel.textUndock":"Plugin entpinnen","Common.Views.Plugins.groupCaption":"Plugins","Common.Views.Plugins.strPlugins":"Plugins","Common.Views.Plugins.textBackgroundPlugins":"Plugins im Hintergrund","Common.Views.Plugins.textClosePanel":"Plugin schließen","Common.Views.Plugins.textLoading":"Ladevorgang","Common.Views.Plugins.textSettings":"Einstellungen","Common.Views.Plugins.textStart":"Starten","Common.Views.Plugins.textStop":"Beenden","Common.Views.Plugins.textTheListOfBackgroundPlugins":"Die Liste der Plugins im Hintergrund","Common.Views.Plugins.tipMore":"Mehr","Common.Views.Protection.hintAddPwd":"Mit Kennwort verschlüsseln","Common.Views.Protection.hintDelPwd":"Kennwort löschen","Common.Views.Protection.hintPwd":"Das Kennwort ändern oder löschen","Common.Views.Protection.hintSignature":"Digitale Signatur oder Unterschriftenzeile hinzufügen","Common.Views.Protection.txtAddPwd":"Kennwort hinzufügen","Common.Views.Protection.txtChangePwd":"Kennwort ändern","Common.Views.Protection.txtDeletePwd":"Kennwort löschen","Common.Views.Protection.txtEncrypt":"Verschlüsseln","Common.Views.Protection.txtInvisibleSignature":"Digitale Signatur hinzufügen","Common.Views.Protection.txtSignature":"Signatur","Common.Views.Protection.txtSignatureLine":"Signaturzeile hinzufügen","Common.Views.RecentFiles.txtOpenRecent":"Zuletzt verwendete öffnen","Common.Views.RenameDialog.textName":"Dateiname","Common.Views.RenameDialog.txtInvalidName":"Dieser Dateiname darf keines der folgenden Zeichen enthalten:","Common.Views.ReviewChanges.hintNext":"Zur nächsten Änderung","Common.Views.ReviewChanges.hintPrev":"Zur vorherigen Änderung","Common.Views.ReviewChanges.mniFromFile":"Dokument aus Datei","Common.Views.ReviewChanges.mniFromStorage":"Dokument aus dem Speicher","Common.Views.ReviewChanges.mniFromUrl":"Dokument aus URL","Common.Views.ReviewChanges.mniMMFromFile":"Aus Datei","Common.Views.ReviewChanges.mniMMFromStorage":"Aus dem Speicher","Common.Views.ReviewChanges.mniMMFromUrl":"Aus URL","Common.Views.ReviewChanges.mniSettings":"Vergleichseinstellungen","Common.Views.ReviewChanges.strFast":"Schnell","Common.Views.ReviewChanges.strFastDesc":"Echtzeit-Zusammenbearbeitung. Alle Änderungen werden automatisch gespeichert.","Common.Views.ReviewChanges.strStrict":"Formal","Common.Views.ReviewChanges.strStrictDesc":"Verwenden Sie die Schaltfläche \"Speichern\", um die von Ihnen und anderen vorgenommenen Änderungen zu synchronisieren.","Common.Views.ReviewChanges.textEnable":"Aktivieren","Common.Views.ReviewChanges.textWarnTrackChanges":"Nachverfolgung von Änderungen wird für alle Benutzer mit dem vollen Zugriff AKTIVIERT und bleibt auch beim nächsten Öffnen des Dokuments aktiv.","Common.Views.ReviewChanges.textWarnTrackChangesTitle":"Möchten Sie Nachverfolgung von Änderungen für alle aktivieren?","Common.Views.ReviewChanges.tipAcceptCurrent":"Akzeptieren Sie die aktuelle Änderung und fahren Sie mit der nächsten fort","Common.Views.ReviewChanges.tipCoAuthMode":"Zusammen-Bearbeitungsmodus einstellen","Common.Views.ReviewChanges.tipCombine":"Dieses Dokument mit einem anderen kombinieren","Common.Views.ReviewChanges.tipCommentRem":"Kommentare entfernen","Common.Views.ReviewChanges.tipCommentRemCurrent":"Aktuelle Kommentare entfernen","Common.Views.ReviewChanges.tipCommentResolve":"Kommentare lösen","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Gültige Kommentare lösen","Common.Views.ReviewChanges.tipCompare":"Das aktuelle Dokument mit einem anderen vergleichen","Common.Views.ReviewChanges.tipHistory":"Versionshistorie anzeigen","Common.Views.ReviewChanges.tipMailRecepients":"Serienbrief","Common.Views.ReviewChanges.tipRejectCurrent":"Aktuelle Änderungen ablehnen","Common.Views.ReviewChanges.tipReview":"Nachverfolgen von Änderungen","Common.Views.ReviewChanges.tipReviewView":"Wählen Sie den Modus aus, in dem die Änderungen angezeigt werden sollen","Common.Views.ReviewChanges.tipSetDocLang":"Sprache des Dokumentes festlegen","Common.Views.ReviewChanges.tipSetSpelling":"Rechtschreibprüfung","Common.Views.ReviewChanges.tipSharing":"Zugriffsrechte für das Dokument verwalten","Common.Views.ReviewChanges.txtAccept":"Annehmen","Common.Views.ReviewChanges.txtAcceptAll":"Alle Änderungen annehmen","Common.Views.ReviewChanges.txtAcceptChanges":"Änderungen annehmen","Common.Views.ReviewChanges.txtAcceptCurrent":"Aktuelle Änderungen annehmen","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Schließen","Common.Views.ReviewChanges.txtCoAuthMode":"Modus \"Gemeinsame Bearbeitung\"","Common.Views.ReviewChanges.txtCombine":"Kombinieren","Common.Views.ReviewChanges.txtCommentRemAll":"Alle Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemCurrent":"Aktuelle Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemMy":"Meine Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Meine aktuellen Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemove":"Entfernen","Common.Views.ReviewChanges.txtCommentResolve":"Lösen","Common.Views.ReviewChanges.txtCommentResolveAll":"Alle Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Aktuelle Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveMy":"Meine Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Meine gültige Kommentare lösen","Common.Views.ReviewChanges.txtCompare":"Vergleichen","Common.Views.ReviewChanges.txtDocLang":"Sprache","Common.Views.ReviewChanges.txtEditing":"Bearbeitung","Common.Views.ReviewChanges.txtFinal":"Alle Änderungen akzeptiert {0}","Common.Views.ReviewChanges.txtFinalCap":"Endgültig","Common.Views.ReviewChanges.txtHistory":"Versionshistorie","Common.Views.ReviewChanges.txtMailMerge":"Serienbrief","Common.Views.ReviewChanges.txtMarkup":"Alle Änderungen {0}","Common.Views.ReviewChanges.txtMarkupCap":"Markup und Sprechblasen","Common.Views.ReviewChanges.txtMarkupSimple":"Alle Änderungen {0}
Sprechblasen ausblenden","Common.Views.ReviewChanges.txtMarkupSimpleCap":"Einfaches Markup","Common.Views.ReviewChanges.txtNext":"Zur nächsten Änderung","Common.Views.ReviewChanges.txtOff":"DEAKTIVIERT für mich","Common.Views.ReviewChanges.txtOffGlobal":"DEAKTIVIERT für alle","Common.Views.ReviewChanges.txtOn":"AKTIVIERT für mich","Common.Views.ReviewChanges.txtOnGlobal":"AKTIVIERT für alle","Common.Views.ReviewChanges.txtOriginal":"Alle Änderungen abgelehnt {0}","Common.Views.ReviewChanges.txtOriginalCap":"Original","Common.Views.ReviewChanges.txtPrev":"Zur vorherigen Änderung","Common.Views.ReviewChanges.txtPreview":"Vorschau","Common.Views.ReviewChanges.txtReject":"Ablehnen","Common.Views.ReviewChanges.txtRejectAll":"Alle Änderungen ablehnen","Common.Views.ReviewChanges.txtRejectChanges":"Änderungen ablehnen","Common.Views.ReviewChanges.txtRejectCurrent":"Aktuelle Änderungen ablehnen","Common.Views.ReviewChanges.txtSharing":"Freigabe","Common.Views.ReviewChanges.txtSpelling":"Rechtschreibprüfung","Common.Views.ReviewChanges.txtTurnon":"Nachverfolgen von Änderungen","Common.Views.ReviewChanges.txtView":"Anzeigemodus","Common.Views.ReviewChangesDialog.textTitle":"Änderungen überprüfen","Common.Views.ReviewChangesDialog.txtAccept":"Annehmen","Common.Views.ReviewChangesDialog.txtAcceptAll":"Alle Änderungen annehmen","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"Aktuelle Änderungen annehmen","Common.Views.ReviewChangesDialog.txtNext":"Zur nächsten Änderung","Common.Views.ReviewChangesDialog.txtPrev":"Zur vorherigen Änderung","Common.Views.ReviewChangesDialog.txtReject":"Ablehnen","Common.Views.ReviewChangesDialog.txtRejectAll":"Alle Änderungen ablehnen","Common.Views.ReviewChangesDialog.txtRejectCurrent":"Aktuelle Änderungen ablehnen","Common.Views.ReviewPopover.textAdd":"Hinzufügen","Common.Views.ReviewPopover.textAddReply":"Antwort hinzufügen","Common.Views.ReviewPopover.textCancel":"Abbrechen","Common.Views.ReviewPopover.textClose":"Schließen","Common.Views.ReviewPopover.textComment":"Kommentar","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Geben Sie Ihren Kommentar hier ein","Common.Views.ReviewPopover.textFollowMove":"Verschieben nachverfolgen","Common.Views.ReviewPopover.textMention":"+Erwähnung ermöglicht den Zugriff auf das Dokument und das Senden einer E-Mail","Common.Views.ReviewPopover.textMentionNotify":"+Erwähnung benachrichtigt den Benutzer per E-Mail","Common.Views.ReviewPopover.textOpenAgain":"Erneut öffnen","Common.Views.ReviewPopover.textReply":"Antworten","Common.Views.ReviewPopover.textResolve":"Lösen","Common.Views.ReviewPopover.textViewResolved":"Sie haben keine Berechtigung, den Kommentar erneut zu öffnen","Common.Views.ReviewPopover.txtAccept":"Annehmen","Common.Views.ReviewPopover.txtDeleteTip":"Löschen","Common.Views.ReviewPopover.txtEditTip":"Bearbeiten","Common.Views.ReviewPopover.txtReject":"Ablehnen","Common.Views.SaveAsDlg.textLoading":"Ladevorgang","Common.Views.SaveAsDlg.textTitle":"Ordner fürs Speichern","Common.Views.SearchPanel.textCaseSensitive":"Groß-/Kleinschreibung beachten","Common.Views.SearchPanel.textCloseSearch":"Suche schließen","Common.Views.SearchPanel.textContentChanged":"Dokument verändert.","Common.Views.SearchPanel.textFind":"Suchen","Common.Views.SearchPanel.textFindAndReplace":"Suchen und ersetzen","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} Elemente erfolgreich ersetzt.","Common.Views.SearchPanel.textMatchUsingRegExp":"Über reguläre Ausdrücke abgleichen","Common.Views.SearchPanel.textNoMatches":"Keine Treffer","Common.Views.SearchPanel.textNoSearchResults":"Keine Suchergebnisse","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} Elemente ersetzt. Die übrigen {2} Elemente sind von anderen Benutzern gesperrt.","Common.Views.SearchPanel.textReplace":"Ersetzen","Common.Views.SearchPanel.textReplaceAll":"Alle ersetzen","Common.Views.SearchPanel.textReplaceWith":"Ersetzen durch","Common.Views.SearchPanel.textSearchAgain":"{0}Neue Suche durchführen{1} für genaue Ergebnisse.","Common.Views.SearchPanel.textSearchHasStopped":"Suche abgebrochen","Common.Views.SearchPanel.textSearchResults":"Suchergebnisse: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Suchergebnisse","Common.Views.SearchPanel.textTooManyResults":"Es gibt zu viele Ergebnisse, um sie hier zu zeigen","Common.Views.SearchPanel.textWholeWords":"Nur ganze Wörter","Common.Views.SearchPanel.tipNextResult":"Nächstes Ergebnis","Common.Views.SearchPanel.tipPreviousResult":"Vorheriges Ergebnis","Common.Views.SelectFileDlg.textLoading":"Ladevorgang","Common.Views.SelectFileDlg.textTitle":"Datenquelle auswählen","Common.Views.ShapeShadowDialog.txtAngle":"Winkel","Common.Views.ShapeShadowDialog.txtDistance":"Abstand","Common.Views.ShapeShadowDialog.txtSize":"Größe","Common.Views.ShapeShadowDialog.txtTitle":"Schatten anpassen","Common.Views.ShapeShadowDialog.txtTransparency":"Transparenz","Common.Views.ShortcutsDialog.txtDescription":"Beschreibung","Common.Views.ShortcutsDialog.txtEmpty":"Keine Übereinstimmungen gefunden. Passen Sie Ihre Suche an.","Common.Views.ShortcutsDialog.txtRestoreAll":"Alles auf Standard zurücksetzen","Common.Views.ShortcutsDialog.txtRestoreContinue":"Möchten Sie fortsetzen?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Alle Tastenkombinationseinstellungen werden auf die Standardeinstellungen zurückgesetzt.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Auf Standard zurücksetzen","Common.Views.ShortcutsDialog.txtSearch":"Suchen","Common.Views.ShortcutsDialog.txtTitle":"Tastenkombinationen","Common.Views.ShortcutsEditDialog.txtAction":"Aktion","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"Diese Tastenkombination kann nicht bearbeitet werden","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Geben Sie die gewünschte Tastenkombination ein","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"Die von den Aktionen %1 verwendete Tastenkombination","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"Die von den Aktionen %1 verwendete Tastenkombination kann nicht geändert werden","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"Die von der Aktion %1 verwendete Tastenkombination","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"Die Tastenkombination wird von der Aktion %1 verwendet und kann nicht geändert werden","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Neue Tastenkombination","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Möchten Sie fortsetzen?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Alle Tastenkombinationen für die Aktion “%1” werden auf die Standardeinstellungen zurückgesetzt.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Auf Standard zurücksetzen","Common.Views.ShortcutsEditDialog.txtTitle":"Tastenkombination bearbeiten","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Geben Sie die gewünschte Tastenkombination ein","Common.Views.SignDialog.textBold":"Fett","Common.Views.SignDialog.textCertificate":"Zertifikat","Common.Views.SignDialog.textChange":"Ändern","Common.Views.SignDialog.textInputName":"Name des Signaturgebers eingeben","Common.Views.SignDialog.textItalic":"Kursiv","Common.Views.SignDialog.textNameError":"Der Name des Signaturgebers darf nicht leer sein.","Common.Views.SignDialog.textPurpose":"Zweck der Signierung dieses Dokuments","Common.Views.SignDialog.textSelect":"Wählen","Common.Views.SignDialog.textSelectImage":"Bild auswählen","Common.Views.SignDialog.textSignature":"Wie sieht Signatur aus:","Common.Views.SignDialog.textTitle":"Dokument signieren","Common.Views.SignDialog.textUseImage":"oder klicken Sie auf \"Bild auswählen\", um ein Bild als Unterschrift zu verwenden","Common.Views.SignDialog.textValid":"Gültig von% 1 bis% 2","Common.Views.SignDialog.tipFontName":"Schriftart","Common.Views.SignDialog.tipFontSize":"Schriftgrad","Common.Views.SignSettingsDialog.textAllowComment":"Signaturgeber verfügt über die Möglichkeit, einen Kommentar im Signaturdialog hinzuzufügen","Common.Views.SignSettingsDialog.textDefInstruction":"Überprüfen Sie, ob der signierte Inhalt stimmt, bevor Sie dieses Dokument signieren.","Common.Views.SignSettingsDialog.textInfoEmail":"E-Mail des vorgeschlagenen Unterzeichners","Common.Views.SignSettingsDialog.textInfoName":"Name","Common.Views.SignSettingsDialog.textInfoTitle":"Titel des Signatureingebers","Common.Views.SignSettingsDialog.textInstructions":"Anweisungen für Signaturgeber","Common.Views.SignSettingsDialog.textShowDate":"Signaturdatum in der Signaturzeile anzeigen","Common.Views.SignSettingsDialog.textTitle":"Signatureinstellungen","Common.Views.SignSettingsDialog.txtEmpty":"Dieses Feld ist erforderlich","Common.Views.SymbolTableDialog.textCharacter":"Zeichen","Common.Views.SymbolTableDialog.textCode":"Unicode HEX Wert","Common.Views.SymbolTableDialog.textCopyright":"Copyrightzeichen","Common.Views.SymbolTableDialog.textDCQuote":"Doppelte schließende Anführung","Common.Views.SymbolTableDialog.textDOQuote":"Doppelte offende Anführungszeichen","Common.Views.SymbolTableDialog.textEllipsis":"Waagerechte Auslassungspunkte","Common.Views.SymbolTableDialog.textEmDash":"Geviertstrich","Common.Views.SymbolTableDialog.textEmSpace":"Em-Abstand","Common.Views.SymbolTableDialog.textEnDash":"Halbgeviertstrich","Common.Views.SymbolTableDialog.textEnSpace":"En-Abstand","Common.Views.SymbolTableDialog.textFont":"Schriftart","Common.Views.SymbolTableDialog.textNBHyphen":"Geschützter Bindestrich","Common.Views.SymbolTableDialog.textNBSpace":"Geschütztes Leerzeichen","Common.Views.SymbolTableDialog.textPilcrow":"Absatzzeichen","Common.Views.SymbolTableDialog.textQEmSpace":"1/4-Em-Abstand","Common.Views.SymbolTableDialog.textRange":"Bereich","Common.Views.SymbolTableDialog.textRecent":"Kürzlich verwendete Symbole","Common.Views.SymbolTableDialog.textRegistered":"Registered Trade Mark","Common.Views.SymbolTableDialog.textSCQuote":"Einfache schließendes Anführungszeichen","Common.Views.SymbolTableDialog.textSection":"Paragraphenzeichen","Common.Views.SymbolTableDialog.textShortcut":"Tastenkombination","Common.Views.SymbolTableDialog.textSHyphen":"Weicher Bindestrich","Common.Views.SymbolTableDialog.textSOQuote":"Einfache offende Anführungszeichen","Common.Views.SymbolTableDialog.textSpecial":"Sonderzeichen","Common.Views.SymbolTableDialog.textSymbols":"Symbole","Common.Views.SymbolTableDialog.textTitle":"Symbol","Common.Views.SymbolTableDialog.textTradeMark":"Markenzeichen-Symbol","Common.Views.UserNameDialog.textDontShow":"Nicht mehr anzeigen","Common.Views.UserNameDialog.textLabel":"Bezeichnung:","Common.Views.UserNameDialog.textLabelError":"Bezeichnung darf nicht leer sein.","DE.Controllers.DocProtection.txtIsProtectedComment":"Das Dokument ist geschützt. Sie können nur Kommentare zu diesem Dokument hinterlassen.","DE.Controllers.DocProtection.txtIsProtectedForms":"Das Dokument ist geschützt. Sie dürfen nur Formulare in diesem Dokument ausfüllen.","DE.Controllers.DocProtection.txtIsProtectedTrack":"Das Dokument ist geschützt. Sie können dieses Dokument bearbeiten, aber alle Änderungen werden nachverfolgt.","DE.Controllers.DocProtection.txtIsProtectedView":"Das Dokument ist geschützt. Sie können dieses Dokument nur ansehen.","DE.Controllers.DocProtection.txtWasProtectedComment":"Das Dokument wurde von einem anderen Benutzer geschützt.\nSie können nur Kommentare zu diesem Dokument hinterlassen.","DE.Controllers.DocProtection.txtWasProtectedForms":"Das Dokument wurde von einem anderen Benutzer geschützt.\nSie dürfen nur Formulare in diesem Dokument ausfüllen.","DE.Controllers.DocProtection.txtWasProtectedTrack":"Das Dokument wurde von einem anderen Benutzer geschützt.\nSie können dieses Dokument bearbeiten, aber alle Änderungen werden nachverfolgt.","DE.Controllers.DocProtection.txtWasProtectedView":"Das Dokument wurde von einem anderen Benutzer geschützt.\nSie können dieses Dokument nur ansehen.","DE.Controllers.DocProtection.txtWasUnprotected":"Das Dokument wurde ungeschützt.","DE.Controllers.HeaderFooterTab.textFieldExample":"Beispiel für das Schreiben von Code: TIME \\@ \"dddd, MMMM d, yyyy\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"Feld-Codes","DE.Controllers.HeaderFooterTab.textFieldTitle":"Feld","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"Seitennummerierung","DE.Controllers.LeftMenu.leavePageText":"Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
\nKlicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um Änderungen zu speichern. \nKlicken Sie auf \"OK\", und alle ungespeicherten Änderungen werden NICHT gespeichert und sind verloren.","DE.Controllers.LeftMenu.newDocumentTitle":"Unbetiteltes Dokument","DE.Controllers.LeftMenu.notcriticalErrorTitle":"Achtung","DE.Controllers.LeftMenu.requestEditRightsText":"Anfrage betreffend die Bearbeitungsberechtigung...","DE.Controllers.LeftMenu.textLoadHistory":"Versionshistorie wird geladen...","DE.Controllers.LeftMenu.textNoTextFound":"Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.","DE.Controllers.LeftMenu.textReplaceSkipped":"Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.","DE.Controllers.LeftMenu.textReplaceSuccess":"Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}","DE.Controllers.LeftMenu.textSelectPath":"Geben Sie einen neuen Namen zum Speichern der Dateikopie ein","DE.Controllers.LeftMenu.txtCompatible":"Das Dokument wird im neuen Format gespeichert. Es ermöglicht die Verwendung aller Funktionen, kann jedoch das Dokument-Layout beeinflussen.
Verwenden Sie die Option 'Kompatibilität' in den erweiterten Einstellungen, wenn Sie die Dateien mit älteren MS Word-Versionen kompatibel machen möchten.","DE.Controllers.LeftMenu.txtUntitled":"Unbenannt","DE.Controllers.LeftMenu.warnDownloadAs":"Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"{0} wird in ein bearbeitbares Format umgewandelt. Dies kann eine Weile dauern. Das Ausgabedokument wird so gestaltet, dass Sie den Text bearbeiten können. Es sieht also möglicherweise nicht genau so aus wie die ursprüngliche Datei {0}, besonders wenn sie viele Grafiken enthält.","DE.Controllers.LeftMenu.warnDownloadAsRTF":"Wenn Sie mit dem Speichern in diesem Format fortsetzen, kann die Formatierung teilweise verloren gehen.
Möchten Sie wirklich fortsetzen?","DE.Controllers.LeftMenu.warnReplaceString":"{0} ist kein gültiges Sonderzeichen für das Feld \"Ersetzen durch\".","DE.Controllers.Main.applyChangesTextText":"Die Änderungen werden geladen...","DE.Controllers.Main.applyChangesTitleText":"Laden von Änderungen","DE.Controllers.Main.confirmMaxChangesSize":"Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze.
Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).","DE.Controllers.Main.convertationTimeoutText":"Zeitüberschreitung bei der Konvertierung.","DE.Controllers.Main.criticalErrorExtText":"Klicken Sie auf \"OK\", um in die Dokumentenliste zu gelangen.","DE.Controllers.Main.criticalErrorExtTextClose":"Drücken Sie OK, um den Editor zu schließen.","DE.Controllers.Main.criticalErrorTitle":"Fehler","DE.Controllers.Main.downloadErrorText":"Herunterladen ist fehlgeschlagen.","DE.Controllers.Main.downloadMergeText":"Wird heruntergeladen...","DE.Controllers.Main.downloadMergeTitle":"Wird heruntergeladen","DE.Controllers.Main.downloadTextText":"Dokument wird heruntergeladen...","DE.Controllers.Main.downloadTitleText":"Herunterladen des Dokuments","DE.Controllers.Main.errorAccessDeny":"Sie versuchen, eine Aktion durchzuführen, für die Sie keine Rechte haben.
Bitte wenden Sie sich an Ihren Document Serveradministrator.","DE.Controllers.Main.errorBadImageUrl":"URL des Bildes ist falsch","DE.Controllers.Main.errorCannotPasteImg":"Wir können dieses Bild nicht über die Zwischenablage einfügen. Sie können es aber auf Ihrem Gerät speichern und von dort aus einfügen, oder Sie können das Bild ohne Text kopieren und in das Dokument einfügen.","DE.Controllers.Main.errorCoAuthoringDisconnect":"Verbindung zum Server ist verloren gegangen. Das Dokument kann momentan nicht bearbeitet werden.","DE.Controllers.Main.errorComboSeries":"Wählen Sie mindestens zwei Datenreihen aus, um ein Verbunddiagramm zu erstellen.","DE.Controllers.Main.errorCompare":"Vergleich von Dokumenten ist bei der Zusammenarbeit unverfügbar.","DE.Controllers.Main.errorConnectToServer":"Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.
Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.","DE.Controllers.Main.errorCopyDisabled":"Aus Sicherheitsgründen darf der Inhalt dieses Dokuments nicht kopiert werden.","DE.Controllers.Main.errorDatabaseConnection":"Externer Fehler.
Fehler beim Verbinden zur Datenbank. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.","DE.Controllers.Main.errorDataEncrypted":"Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.","DE.Controllers.Main.errorDataRange":"Falscher Datenbereich.","DE.Controllers.Main.errorDefaultMessage":"Fehlercode: %1","DE.Controllers.Main.errorDirectUrl":"Bitte überprüfen Sie den Link zum Dokument.
Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.","DE.Controllers.Main.errorEditingDownloadas":"Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
Verwenden Sie die Option 'Herunterladen als', um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.","DE.Controllers.Main.errorEditingSaveas":"Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
Verwenden Sie die Option \"Speichern als ...\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.","DE.Controllers.Main.errorEditProtectedRange":"Sie dürfen diese Auswahl nicht bearbeiten, da sie geschützt ist.","DE.Controllers.Main.errorEmailClient":"Es wurde kein E-Mail-Client gefunden.","DE.Controllers.Main.errorEmptyTOC":"Beginnen Sie die Erstellung eines Inhaltsverzeichnisses, indem Sie eine Überschriftenvorlage aus der Galerie von Stilen auf den ausgewählten Text anwenden.","DE.Controllers.Main.errorFilePassProtect":"Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.","DE.Controllers.Main.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.Controllers.Main.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.Controllers.Main.errorInconsistentExt":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.","DE.Controllers.Main.errorInconsistentExtDocx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.","DE.Controllers.Main.errorInconsistentExtPdf":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.","DE.Controllers.Main.errorInconsistentExtPptx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.","DE.Controllers.Main.errorInconsistentExtXlsx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.","DE.Controllers.Main.errorKeyEncrypt":"Unbekannter Schlüsseldeskriptor","DE.Controllers.Main.errorKeyExpire":"Der Schlüsseldeskriptor ist abgelaufen","DE.Controllers.Main.errorLoadingFont":"Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.","DE.Controllers.Main.errorMailMergeLoadFile":"Fehler beim Laden des Dokuments. Bitte wählen Sie eine andere Datei.","DE.Controllers.Main.errorMailMergeSaveFile":"Merge ist fehlgeschlagen.","DE.Controllers.Main.errorNoTOC":"Es gibt kein Inhaltsverzeichnis. Sie können es auf der Registerkarte \"Verweise\" einfügen.","DE.Controllers.Main.errorPasswordIsNotCorrect":"Das eingegebene Kennwort ist ungültig.
Stellen Sie sicher, dass die FESTSTELLTASTE nicht aktiviert ist und dass Sie die korrekte Groß-/Kleinschreibung verwenden.","DE.Controllers.Main.errorSaveWatermark":"Diese Datei enthält ein Wasserzeichen, das mit einer anderen Domain verknüpft ist.
Um es in PDF sichtbar zu machen, aktualisieren Sie das Wasserzeichen, so dass es von derselben Domain wie Ihr Dokument verlinkt wird, oder laden Sie es von Ihrem Computer hoch.","DE.Controllers.Main.errorServerVersion":"Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.","DE.Controllers.Main.errorSessionAbsolute":"Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.","DE.Controllers.Main.errorSessionIdle":"Das Dokument wurde lange nicht bearbeitet. Laden Sie die Seite neu.","DE.Controllers.Main.errorSessionToken":"Die Verbindung zum Server wurde unterbrochen. Laden Sie die Seite neu.","DE.Controllers.Main.errorSetPassword":"Das Passwort konnte nicht festgelegt werden.","DE.Controllers.Main.errorStockChart":"Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, ordnen Sie die Daten auf dem Blatt folgendermaßen an:
Eröffnungspreis, Höchstpreis, Tiefstpreis, Schlusskurs.","DE.Controllers.Main.errorSubmit":"Fehler beim Senden.","DE.Controllers.Main.errorTextFormWrongFormat":"Der eingegebene Wert stimmt nicht mit dem Format des Feldes überein.","DE.Controllers.Main.errorToken":"Sicherheitstoken des Dokuments ist nicht korrekt.
Wenden Sie sich an Ihren Serveradministrator.","DE.Controllers.Main.errorTokenExpire":"Sicherheitstoken des Dokuments ist abgelaufen.
Wenden Sie sich an Ihren Serveradministrator.","DE.Controllers.Main.errorUpdateVersion":"Die Dateiversion wurde geändert. Die Seite wird neu geladen.","DE.Controllers.Main.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.Controllers.Main.errorUserDrop":"Kein Zugriff auf diese Datei ist möglich.","DE.Controllers.Main.errorUsersExceed":"Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten","DE.Controllers.Main.errorViewerDisconnect":"Die Verbindung ist unterbrochen. Man kann das Dokument weiterhin anschauen.
Es ist aber momentan nicht möglich, es herunterzuladen oder zu drucken bis die Verbindung wiederhergestellt
und die Seite neu geladen wird.","DE.Controllers.Main.leavePageText":"Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\" und dann \"Speichern\", um sie zu speichern. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.","DE.Controllers.Main.leavePageTextOnClose":"Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
\nKlicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. \nKlicken Sie auf den Button \"OK\", und alle Änderungen werden NICHT gespeichert und sind verloren. ","DE.Controllers.Main.loadFontsTextText":"Daten werden geladen...","DE.Controllers.Main.loadFontsTitleText":"Daten werden geladen","DE.Controllers.Main.loadFontTextText":"Daten werden geladen...","DE.Controllers.Main.loadFontTitleText":"Daten werden geladen","DE.Controllers.Main.loadImagesTextText":"Bilder werden geladen...","DE.Controllers.Main.loadImagesTitleText":"Bilder werden geladen","DE.Controllers.Main.loadImageTextText":"Bild wird geladen...","DE.Controllers.Main.loadImageTitleText":"Bild wird geladen","DE.Controllers.Main.loadingDocumentTextText":"Dokument wird geladen...","DE.Controllers.Main.loadingDocumentTitleText":"Dokument wird geladen...","DE.Controllers.Main.mailMergeLoadFileText":"Laden der Datenquellen...","DE.Controllers.Main.mailMergeLoadFileTitle":"Laden der Datenquellen","DE.Controllers.Main.notcriticalErrorTitle":"Achtung","DE.Controllers.Main.openErrorText":"Beim Öffnen der Datei ist ein Fehler aufgetreten.","DE.Controllers.Main.openTextText":"Dokument wird geöffnet","DE.Controllers.Main.openTitleText":"Das Dokument wird geöffnet","DE.Controllers.Main.printTextText":"Dokument wird ausgedruckt...","DE.Controllers.Main.printTitleText":"Drucken des Dokuments","DE.Controllers.Main.reloadButtonText":"Seite erneut laden","DE.Controllers.Main.requestEditFailedMessageText":"Jemand bearbeitet dieses Dokument in diesem Moment. Bitte versuchen Sie es später erneut.","DE.Controllers.Main.requestEditFailedTitleText":"Zugriff verweigert","DE.Controllers.Main.saveErrorText":"Beim Speichern der Datei ist ein Fehler aufgetreten.","DE.Controllers.Main.saveErrorTextDesktop":"Diese Datei kann nicht erstellt oder gespeichert werden.
Dies ist möglicherweise davon verursacht:
1. Die Datei ist schreibgeschützt.
2. Die Datei wird von anderen Benutzern bearbeitet.
3. Die Festplatte ist voll oder beschädigt.","DE.Controllers.Main.saveTextText":"Dokument wird gespeichert...","DE.Controllers.Main.saveTitleText":"Dokument wird gespeichert...","DE.Controllers.Main.savingText":"Absenden","DE.Controllers.Main.scriptLoadError":"Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.","DE.Controllers.Main.sendMergeText":"Merge wird versandt...","DE.Controllers.Main.sendMergeTitle":"Merge-Vesand","DE.Controllers.Main.splitDividerErrorText":"Die Zeilenanzahl muss ein Divisor von %1 sein.","DE.Controllers.Main.splitMaxColsErrorText":"Die Spaltenanzahl muss weniger als %1 sein.","DE.Controllers.Main.splitMaxRowsErrorText":"Die Zeilenanzahl muss weniger als %1 sein.","DE.Controllers.Main.textAnonymous":"Anonym","DE.Controllers.Main.textAnyone":"Alle","DE.Controllers.Main.textApplyAll":"Für alle Gleichungen verwenden","DE.Controllers.Main.textBuyNow":"Webseite besuchen","DE.Controllers.Main.textChangesSaved":"Alle Änderungen gespeichert","DE.Controllers.Main.textClose":"Schließen","DE.Controllers.Main.textCloseTip":"Klicken Sie, um den Tipp zu schließen","DE.Controllers.Main.textConnectionLost":"Es wird versucht, Verbindung herzustellen. Bitte überprüfen Sie die Verbindungseinstellungen.","DE.Controllers.Main.textContactUs":"Verkaufsteam kontaktieren","DE.Controllers.Main.textContinue":"Fortsetzen","DE.Controllers.Main.textConvertEquation":"Diese Gleichung wurde in einer alten Version des Gleichungseditors erstellt, die nicht mehr unterstützt wird. Um die Gleichung zu bearbeiten, konvertieren Sie diese ins Format Office Math ML.
Jetzt konvertieren?","DE.Controllers.Main.textCustomLoader":"Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln.
Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.","DE.Controllers.Main.textDisconnect":"Verbindung wurde unterbrochen","DE.Controllers.Main.textGuest":"Gast","DE.Controllers.Main.textHasMacros":"Die Datei beinhaltet automatische Makros.
Möchten Sie Makros ausführen?","DE.Controllers.Main.textLearnMore":"Mehr erfahren","DE.Controllers.Main.textLoadingDocument":"Dokument wird geladen...","DE.Controllers.Main.textLongName":"Der Name einer Tabellenansicht darf maximal 128 Zeichen lang sein.","DE.Controllers.Main.textNoLicenseTitle":"Lizenzlimit erreicht","DE.Controllers.Main.textPaidFeature":"Kostenpflichtige Funktion","DE.Controllers.Main.textReconnect":"Verbindung wurde wiederhergestellt","DE.Controllers.Main.textRemember":"Meine Auswahl merken","DE.Controllers.Main.textRememberMacros":"Auswahl für alle Makros speichern","DE.Controllers.Main.textRenameError":"Benutzername darf nicht leer sein.","DE.Controllers.Main.textRenameLabel":"Geben Sie den Namen für Zusammenarbeit ein","DE.Controllers.Main.textRequestMacros":"Ein Makro stellt eine Anfrage an die URL. Möchten Sie die Anfrage an die %1 zulassen?","DE.Controllers.Main.textShape":"Form","DE.Controllers.Main.textSignature":"Signatur","DE.Controllers.Main.textStrict":"Formaler Modus","DE.Controllers.Main.textText":"Text","DE.Controllers.Main.textTryQuickPrint":"Sie haben Schnelldruck gewählt: Das gesamte Dokument wird auf dem zuletzt gewählten oder dem Standarddrucker gedruckt.
Sollen Sie fortfahren?","DE.Controllers.Main.textTryUndoRedo":"Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.
Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.","DE.Controllers.Main.textTryUndoRedoWarn":"Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.","DE.Controllers.Main.textUndo":"Rückgängig","DE.Controllers.Main.textUpdateVersion":"Das Dokument kann im Moment nicht bearbeitet werden.
Es wird versucht, die Datei zu aktualisieren, bitte warten …","DE.Controllers.Main.textUpdating":"Aktualisierung","DE.Controllers.Main.tipLicenseExceeded":"Das Dokument ist im schreibgeschützten Modus geöffnet, da die durch die Lizenz zulässige maximale Anzahl gleichzeitiger Verbindungen erreicht wurde.

Bitte versuchen Sie es später erneut oder wenden Sie sich an den Eigentümer des Dokuments, wenn Sie Bearbeitungszugriff benötigen.","DE.Controllers.Main.tipLicenseUsersExceeded":"Das Dokument ist im schreibgeschützten Modus geöffnet, da die maximale Anzahl von Benutzern, die laut Lizenz Dokumente bearbeiten dürfen, erreicht wurde.

Bitte versuchen Sie es später erneut oder wenden Sie sich an den Dokumentbesitzer, wenn Sie Bearbeitungszugriff benötigen.","DE.Controllers.Main.titleLicenseExp":"Lizenz ist abgelaufen","DE.Controllers.Main.titleLicenseNotActive":"Lizenz nicht aktiv","DE.Controllers.Main.titleReadOnly":"Schreibgeschützter Modus","DE.Controllers.Main.titleServerVersion":"Editor wurde aktualisiert","DE.Controllers.Main.titleUpdateVersion":"Version wurde geändert","DE.Controllers.Main.txtAbove":"oben","DE.Controllers.Main.txtArt":"Hier den Text eingeben","DE.Controllers.Main.txtBasicShapes":"Standardformen","DE.Controllers.Main.txtBelow":"unten","DE.Controllers.Main.txtBookmarkError":"Fehler! Textmarke nicht definiert.","DE.Controllers.Main.txtButtons":"Buttons","DE.Controllers.Main.txtCallouts":"Legenden","DE.Controllers.Main.txtCharts":"Diagramme","DE.Controllers.Main.txtChoose":"Wählen Sie ein Element aus","DE.Controllers.Main.txtClickToLoad":"Klicken Sie, um das Bild herunterzuladen","DE.Controllers.Main.txtCurrentDocument":"Aktuelles Dokument","DE.Controllers.Main.txtDiagramTitle":"Diagrammtitel","DE.Controllers.Main.txtEditingMode":"Bearbeitungsmodus festlegen...","DE.Controllers.Main.txtEndOfFormula":"Unerwartetes Ende der Formel","DE.Controllers.Main.txtEnterDate":"Datum einfügen","DE.Controllers.Main.txtErrorLoadHistory":"Laden der Historie ist fehlgeschlagen ","DE.Controllers.Main.txtEvenPage":"Gerade Seite","DE.Controllers.Main.txtFiguredArrows":"Geformte Pfeile","DE.Controllers.Main.txtFirstPage":"Erste Seite","DE.Controllers.Main.txtFooter":"Fußzeile","DE.Controllers.Main.txtFormulaNotInTable":"Die Formel steht nicht in einer Tabelle","DE.Controllers.Main.txtHeader":"Kopfzeile","DE.Controllers.Main.txtHyperlink":"Link","DE.Controllers.Main.txtIndTooLarge":"Zu großer Index","DE.Controllers.Main.txtLines":"Linien","DE.Controllers.Main.txtMainDocOnly":"Fehler! Nur Hauptdokument.","DE.Controllers.Main.txtMath":"Mathematik","DE.Controllers.Main.txtMissArg":"Fehlendes Argument","DE.Controllers.Main.txtMissOperator":"Fehlender Operator","DE.Controllers.Main.txtNeedSynchronize":"Änderungen wurden vorgenommen","DE.Controllers.Main.txtNone":"Kein(e)","DE.Controllers.Main.txtNoTableOfContents":"Dieses Dokument enthält keine Überschriften. Wenden Sie ein Überschriftenformat auf den Text an, damit es im Inhaltsverzeichnis angezeigt wird.","DE.Controllers.Main.txtNoTableOfFigures":"Es konnten keine Einträge für ein Abbildungsverzeichnis gefunden werden.","DE.Controllers.Main.txtNoText":"Fehler! Im Dokument gibt es keinen Text des angegebenen Stils.","DE.Controllers.Main.txtNotInTable":"Nicht in Tabelle","DE.Controllers.Main.txtNotValidBookmark":"Fehler! Ungültiger Lesezeichen-Link.","DE.Controllers.Main.txtOddPage":"Ungerade Seite","DE.Controllers.Main.txtOnPage":"auf Seite","DE.Controllers.Main.txtRectangles":"Rechtecke","DE.Controllers.Main.txtSameAsPrev":"Dasselbe wie zuvor","DE.Controllers.Main.txtSaveCopyAsComplete":"Die Dateikopie wurde erfolgreich gespeichert","DE.Controllers.Main.txtScheme_Aspect":"Aspekt ","DE.Controllers.Main.txtScheme_Blue":"Blau","DE.Controllers.Main.txtScheme_Blue_Green":"Blau Grün","DE.Controllers.Main.txtScheme_Blue_II":"Blau II","DE.Controllers.Main.txtScheme_Blue_Warm":"Warmes Blau","DE.Controllers.Main.txtScheme_Grayscale":"Grauskala","DE.Controllers.Main.txtScheme_Green":"Grün","DE.Controllers.Main.txtScheme_Green_Yellow":"Grün-Gelb","DE.Controllers.Main.txtScheme_Marquee":"Festzelt","DE.Controllers.Main.txtScheme_Median":"Mittelwert","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"Orange","DE.Controllers.Main.txtScheme_Orange_Red":"Orangerot","DE.Controllers.Main.txtScheme_Paper":"Papier","DE.Controllers.Main.txtScheme_Red":"Rot","DE.Controllers.Main.txtScheme_Red_Orange":"Rot-Orange","DE.Controllers.Main.txtScheme_Red_Violet":"Rot-Violett","DE.Controllers.Main.txtScheme_Slipstream":"Windschatten","DE.Controllers.Main.txtScheme_Violet":"Violett","DE.Controllers.Main.txtScheme_Violet_II":"Violett II","DE.Controllers.Main.txtScheme_Yellow":"Gelb","DE.Controllers.Main.txtScheme_Yellow_Orange":"Gelb-Orange","DE.Controllers.Main.txtSection":"-Abschnitt","DE.Controllers.Main.txtSeries":"Reihen","DE.Controllers.Main.txtShape_accentBorderCallout1":"Legende mit Linie 1 (Rahmen und Markierungsleiste)","DE.Controllers.Main.txtShape_accentBorderCallout2":"Legende mit Linie 2 (Rahmen und Markierungsleiste)","DE.Controllers.Main.txtShape_accentBorderCallout3":"Legende mit Linie 3 (Rahmen und Markierungsleiste)","DE.Controllers.Main.txtShape_accentCallout1":"Legende mit Linie 1 (Markierungsleiste)","DE.Controllers.Main.txtShape_accentCallout2":"Legende mit Linie 2 (Markierungsleiste)","DE.Controllers.Main.txtShape_accentCallout3":"Legende mit Linie 3 (Markierungsleiste)","DE.Controllers.Main.txtShape_actionButtonBackPrevious":"Schaltfläche \"Zurück\"","DE.Controllers.Main.txtShape_actionButtonBeginning":"Button \"Start\"","DE.Controllers.Main.txtShape_actionButtonBlank":"Leere Schaltfläche","DE.Controllers.Main.txtShape_actionButtonDocument":"Dokumentschaltfläche","DE.Controllers.Main.txtShape_actionButtonEnd":"Schaltfläche „Beenden\"","DE.Controllers.Main.txtShape_actionButtonForwardNext":"Schaltfläche 'Weiter'","DE.Controllers.Main.txtShape_actionButtonHelp":"Schaltfläche \"Hilfe\"","DE.Controllers.Main.txtShape_actionButtonHome":"Schaltfläche \"Startseite\"","DE.Controllers.Main.txtShape_actionButtonInformation":"Schaltfläche \"Informationen\"","DE.Controllers.Main.txtShape_actionButtonMovie":"Schaltfläche \"Movie\"","DE.Controllers.Main.txtShape_actionButtonReturn":"Schaltfläche „Zurück\"","DE.Controllers.Main.txtShape_actionButtonSound":"Schaltfläche \"Ton\"","DE.Controllers.Main.txtShape_arc":"Bogen","DE.Controllers.Main.txtShape_bentArrow":"Gebogener Pfeil","DE.Controllers.Main.txtShape_bentConnector5":"Gewinkelte Verbindung","DE.Controllers.Main.txtShape_bentConnector5WithArrow":"Gewinkelte Verbindung mit Pfeil","DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"Gewinkelte Verbindung mit Doppelpfeil","DE.Controllers.Main.txtShape_bentUpArrow":"Nach oben gebogener Pfeil","DE.Controllers.Main.txtShape_bevel":"Abschrägung","DE.Controllers.Main.txtShape_blockArc":"Halbbogen","DE.Controllers.Main.txtShape_borderCallout1":"Legende mit Linie 1","DE.Controllers.Main.txtShape_borderCallout2":"Legende mit Linie 2","DE.Controllers.Main.txtShape_borderCallout3":"Legende mit Linie 3","DE.Controllers.Main.txtShape_bracePair":"Geschweifte Klammer links/rechts","DE.Controllers.Main.txtShape_callout1":"Legende mit Linie 1 (ohne Rahmen)","DE.Controllers.Main.txtShape_callout2":"Legende mit Linie 2 (ohne Rahmen)","DE.Controllers.Main.txtShape_callout3":"Legende mit Linie 3 (ohne Rahmen)","DE.Controllers.Main.txtShape_can":"Zylinder","DE.Controllers.Main.txtShape_chevron":"Winkel","DE.Controllers.Main.txtShape_chord":"Akkord","DE.Controllers.Main.txtShape_circularArrow":"Gebogener Pfeil","DE.Controllers.Main.txtShape_cloud":"Cloud","DE.Controllers.Main.txtShape_cloudCallout":"Cloud Legende","DE.Controllers.Main.txtShape_corner":"Ecke","DE.Controllers.Main.txtShape_cube":"Cube","DE.Controllers.Main.txtShape_curvedConnector3":"Gekrümmte Verbindung","DE.Controllers.Main.txtShape_curvedConnector3WithArrow":"Gekrümmte Verbindung mit Pfeil","DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"Gekrümmte Verbindung mit Doppelpfeil","DE.Controllers.Main.txtShape_curvedDownArrow":"Nach unten gekrümmter Pfeil","DE.Controllers.Main.txtShape_curvedLeftArrow":"Nach links gekrümmter Pfeil","DE.Controllers.Main.txtShape_curvedRightArrow":"Nach rechts gekrümmter Pfeil","DE.Controllers.Main.txtShape_curvedUpArrow":"Nach oben gekrümmter Pfeil","DE.Controllers.Main.txtShape_decagon":"Zehneck","DE.Controllers.Main.txtShape_diagStripe":"Diagonaler Streifen","DE.Controllers.Main.txtShape_diamond":"Raute","DE.Controllers.Main.txtShape_dodecagon":"Zwölfeck","DE.Controllers.Main.txtShape_donut":"Rad","DE.Controllers.Main.txtShape_doubleWave":"Doppelte Welle","DE.Controllers.Main.txtShape_downArrow":"Pfeil nach unten","DE.Controllers.Main.txtShape_downArrowCallout":"Legende mit Pfeil nach unten","DE.Controllers.Main.txtShape_ellipse":"Ellipse","DE.Controllers.Main.txtShape_ellipseRibbon":"Nach unten gekrümmtes Band","DE.Controllers.Main.txtShape_ellipseRibbon2":"Nach oben gekrümmtes Band","DE.Controllers.Main.txtShape_flowChartAlternateProcess":"Flussdiagramm: Alternativer Prozess","DE.Controllers.Main.txtShape_flowChartCollate":"Flussdiagramm: Zusammenstellen","DE.Controllers.Main.txtShape_flowChartConnector":"Flussdiagramm: Verbindungsstelle","DE.Controllers.Main.txtShape_flowChartDecision":"Flussdiagramm: Verzweigung","DE.Controllers.Main.txtShape_flowChartDelay":"Flussdiagramm: Verzögerung","DE.Controllers.Main.txtShape_flowChartDisplay":"Flussdiagramm: Anzeige","DE.Controllers.Main.txtShape_flowChartDocument":"Flussdiagramm: Dokument","DE.Controllers.Main.txtShape_flowChartExtract":"Flussdiagramm: Auszug","DE.Controllers.Main.txtShape_flowChartInputOutput":"Flussdiagramm: Daten","DE.Controllers.Main.txtShape_flowChartInternalStorage":"Flussdiagramm: Zentralspeicher","DE.Controllers.Main.txtShape_flowChartMagneticDisk":"Flussdiagramm: Magnetplattenspeicher","DE.Controllers.Main.txtShape_flowChartMagneticDrum":"Flussdiagramm: Datenträger mit direktem Zugriff","DE.Controllers.Main.txtShape_flowChartMagneticTape":"Flussdiagramm: Datenträger mit sequenziellem Zugriff","DE.Controllers.Main.txtShape_flowChartManualInput":"Flussdiagramm: Manuelle Eingabe","DE.Controllers.Main.txtShape_flowChartManualOperation":"Flussdiagramm: Manuelle Verarbeitung","DE.Controllers.Main.txtShape_flowChartMerge":"Flussdiagramm: Zusammenführen","DE.Controllers.Main.txtShape_flowChartMultidocument":"Flussdiagramm: Mehrere Dokumente","DE.Controllers.Main.txtShape_flowChartOffpageConnector":"Flussdiagramm: Verbindungsstelle zu einer anderen Seite","DE.Controllers.Main.txtShape_flowChartOnlineStorage":"Flussdiagramm: Gespeicherte Daten","DE.Controllers.Main.txtShape_flowChartOr":"Flussdiagramm","DE.Controllers.Main.txtShape_flowChartPredefinedProcess":"Flussdiagramm: Vordefinierter Prozess","DE.Controllers.Main.txtShape_flowChartPreparation":"Flussdiagramm: Vorbereitung","DE.Controllers.Main.txtShape_flowChartProcess":"Flussdiagramm: Prozess","DE.Controllers.Main.txtShape_flowChartPunchedCard":"Flussdiagramm: Karte","DE.Controllers.Main.txtShape_flowChartPunchedTape":"Flussdiagramm: Lochstreifen","DE.Controllers.Main.txtShape_flowChartSort":"Flussdiagramm: Sortieren","DE.Controllers.Main.txtShape_flowChartSummingJunction":"Flussdiagramm: Zusammenführung","DE.Controllers.Main.txtShape_flowChartTerminator":"Flussdiagramm: Grenzstelle","DE.Controllers.Main.txtShape_foldedCorner":"Gefaltete Ecke","DE.Controllers.Main.txtShape_frame":"Rahmen","DE.Controllers.Main.txtShape_halfFrame":"Halber Rahmen","DE.Controllers.Main.txtShape_heart":"Herz","DE.Controllers.Main.txtShape_heptagon":"Siebeneck","DE.Controllers.Main.txtShape_hexagon":"Sechseck","DE.Controllers.Main.txtShape_homePlate":"Richtungspfeil","DE.Controllers.Main.txtShape_horizontalScroll":"Horizontaler Bildlauf","DE.Controllers.Main.txtShape_irregularSeal1":"Explosion 1","DE.Controllers.Main.txtShape_irregularSeal2":"Explosion 2","DE.Controllers.Main.txtShape_leftArrow":"Pfeil nach links","DE.Controllers.Main.txtShape_leftArrowCallout":"Legende mit Pfeil nach links","DE.Controllers.Main.txtShape_leftBrace":"Geschweifte Klammer links","DE.Controllers.Main.txtShape_leftBracket":"Runde Klammer links","DE.Controllers.Main.txtShape_leftRightArrow":"Pfeil nach links und rechts","DE.Controllers.Main.txtShape_leftRightArrowCallout":"Legende mit Pfeil nach links und rechts","DE.Controllers.Main.txtShape_leftRightUpArrow":"Pfeil nach links, rechts und oben","DE.Controllers.Main.txtShape_leftUpArrow":"Pfeil nach links und oben","DE.Controllers.Main.txtShape_lightningBolt":"Gewitterblitz","DE.Controllers.Main.txtShape_line":"Linie","DE.Controllers.Main.txtShape_lineWithArrow":"Pfeil","DE.Controllers.Main.txtShape_lineWithTwoArrows":"Doppelpfeil","DE.Controllers.Main.txtShape_mathDivide":"Division","DE.Controllers.Main.txtShape_mathEqual":"Gleich","DE.Controllers.Main.txtShape_mathMinus":"Minus","DE.Controllers.Main.txtShape_mathMultiply":"Multiplizieren","DE.Controllers.Main.txtShape_mathNotEqual":"Nicht gleich","DE.Controllers.Main.txtShape_mathPlus":"Plus","DE.Controllers.Main.txtShape_moon":"Monat","DE.Controllers.Main.txtShape_noSmoking":"\"Nein\" Zeichen","DE.Controllers.Main.txtShape_notchedRightArrow":"Eingekerbter Pfeil nach rechts","DE.Controllers.Main.txtShape_octagon":"Achteck","DE.Controllers.Main.txtShape_parallelogram":"Parallelogramm","DE.Controllers.Main.txtShape_pentagon":"Richtungspfeil","DE.Controllers.Main.txtShape_pie":"Kuchendiagramm","DE.Controllers.Main.txtShape_plaque":"Zeichen","DE.Controllers.Main.txtShape_plus":"Plus","DE.Controllers.Main.txtShape_polyline1":"Skizze","DE.Controllers.Main.txtShape_polyline2":"Freihandform","DE.Controllers.Main.txtShape_quadArrow":"Pfeil in vier Richtungen","DE.Controllers.Main.txtShape_quadArrowCallout":"Legende mit Pfeil in vier Richtungen","DE.Controllers.Main.txtShape_rect":"Rechteck","DE.Controllers.Main.txtShape_ribbon":"Band nach unten","DE.Controllers.Main.txtShape_ribbon2":"Band hoch","DE.Controllers.Main.txtShape_rightArrow":"Pfeil nach rechts","DE.Controllers.Main.txtShape_rightArrowCallout":"Legende mit Pfeil nach rechts","DE.Controllers.Main.txtShape_rightBrace":"Geschweifte Klammer rechts","DE.Controllers.Main.txtShape_rightBracket":"Runde Klammer rechts","DE.Controllers.Main.txtShape_round1Rect":"Eine Ecke des Rechtecks abrunden","DE.Controllers.Main.txtShape_round2DiagRect":"Diagonal liegende Ecken des Rechtecks abrunden","DE.Controllers.Main.txtShape_round2SameRect":"Auf der gleichen Seite des Rechtecks liegende Ecken abrunden","DE.Controllers.Main.txtShape_roundRect":"Rechteck mit runden Ecken","DE.Controllers.Main.txtShape_rtTriangle":"Rechtwinkliges Dreieck","DE.Controllers.Main.txtShape_smileyFace":"Smiley","DE.Controllers.Main.txtShape_snip1Rect":"Eine Ecke des Rechtecks schneiden","DE.Controllers.Main.txtShape_snip2DiagRect":"Diagonal liegende Ecken des Rechtecks schneiden","DE.Controllers.Main.txtShape_snip2SameRect":"Ecken des Rechtecks auf der gleichen Seite schneiden","DE.Controllers.Main.txtShape_snipRoundRect":"Eine Ecke des Rechtecks schneiden und abrunden","DE.Controllers.Main.txtShape_spline":"Kurve","DE.Controllers.Main.txtShape_star10":"10-zackiger Stern","DE.Controllers.Main.txtShape_star12":"12-zackiger Stern","DE.Controllers.Main.txtShape_star16":"16-zackiger Stern","DE.Controllers.Main.txtShape_star24":"24-zackiger Stern","DE.Controllers.Main.txtShape_star32":"32-zackiger Stern","DE.Controllers.Main.txtShape_star4":"4-zackiger Stern","DE.Controllers.Main.txtShape_star5":"5-zackiger Stern","DE.Controllers.Main.txtShape_star6":"6-zackiger Stern","DE.Controllers.Main.txtShape_star7":"7-zackiger Stern","DE.Controllers.Main.txtShape_star8":"8-zackiger Stern","DE.Controllers.Main.txtShape_stripedRightArrow":"Gestreifter Pfeil nach rechts","DE.Controllers.Main.txtShape_sun":"Sonne","DE.Controllers.Main.txtShape_teardrop":"Tropfenförmig","DE.Controllers.Main.txtShape_textRect":"Textfeld","DE.Controllers.Main.txtShape_trapezoid":"Trapezoid","DE.Controllers.Main.txtShape_triangle":"Dreieck","DE.Controllers.Main.txtShape_upArrow":"Pfeil nach oben","DE.Controllers.Main.txtShape_upArrowCallout":"Legende mit Pfeil nach oben","DE.Controllers.Main.txtShape_upDownArrow":"Pfeil nach unten","DE.Controllers.Main.txtShape_uturnArrow":"180-Grad-Pfeil","DE.Controllers.Main.txtShape_verticalScroll":"Vertikaler Bildlauf","DE.Controllers.Main.txtShape_wave":"Welle","DE.Controllers.Main.txtShape_wedgeEllipseCallout":"Ovale Legende","DE.Controllers.Main.txtShape_wedgeRectCallout":"Rechteckige Legende","DE.Controllers.Main.txtShape_wedgeRoundRectCallout":"Abgerundete rechteckige Legende","DE.Controllers.Main.txtStarsRibbons":"Sterne und Bänder","DE.Controllers.Main.txtStyle_Book_Title":"Buchtitel","DE.Controllers.Main.txtStyle_Caption":"Beschriftung","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"Standard-Absatzschriftart","DE.Controllers.Main.txtStyle_Emphasis":"Hervorhebung","DE.Controllers.Main.txtStyle_endnote_reference":"Endnote-Referenz","DE.Controllers.Main.txtStyle_endnote_text":"Endnotentext","DE.Controllers.Main.txtStyle_footnote_reference":"Fußnotenreferenz","DE.Controllers.Main.txtStyle_footnote_text":"Fußnotentext","DE.Controllers.Main.txtStyle_Heading_1":"Überschrift 1","DE.Controllers.Main.txtStyle_Heading_2":"Überschrift 2","DE.Controllers.Main.txtStyle_Heading_3":"Überschrift 3","DE.Controllers.Main.txtStyle_Heading_4":"Überschrift 4","DE.Controllers.Main.txtStyle_Heading_5":"Überschrift 5","DE.Controllers.Main.txtStyle_Heading_6":"Überschrift 6","DE.Controllers.Main.txtStyle_Heading_7":"Überschrift 7","DE.Controllers.Main.txtStyle_Heading_8":"Überschrift 8","DE.Controllers.Main.txtStyle_Heading_9":"Überschrift 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"Intensive Hervorhebung","DE.Controllers.Main.txtStyle_Intense_Quote":"Intensives Zitat","DE.Controllers.Main.txtStyle_Intense_Reference":"Intensive Referenz","DE.Controllers.Main.txtStyle_List_Paragraph":"Listenabsatz","DE.Controllers.Main.txtStyle_No_List":"Keine Liste","DE.Controllers.Main.txtStyle_No_Spacing":"Kein Abstand","DE.Controllers.Main.txtStyle_Normal":"Normal","DE.Controllers.Main.txtStyle_Quote":"Zitat","DE.Controllers.Main.txtStyle_Strong":"Stark","DE.Controllers.Main.txtStyle_Subtitle":"Untertitel","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"Dezente Hervorhebung","DE.Controllers.Main.txtStyle_Subtle_Reference":"Subtile Referenz","DE.Controllers.Main.txtStyle_Title":"Titel","DE.Controllers.Main.txtSyntaxError":"Syntaxfehler","DE.Controllers.Main.txtTableInd":"Tabellenindex darf nicht Null sein","DE.Controllers.Main.txtTableOfContents":"Inhaltsverzeichnis","DE.Controllers.Main.txtTableOfFigures":"Abbildungsverzeichnis","DE.Controllers.Main.txtTOCHeading":"Inhaltsverzeichnisüberschrift","DE.Controllers.Main.txtTooLarge":"Nummer zu groß zum Formatieren","DE.Controllers.Main.txtTypeEquation":"Hier die Gleichung eingeben.","DE.Controllers.Main.txtUndefBookmark":"Undefiniertes Lesezeichen","DE.Controllers.Main.txtXAxis":"x-Achse","DE.Controllers.Main.txtYAxis":"y-Achse","DE.Controllers.Main.txtZeroDivide":"Nullteilung","DE.Controllers.Main.unknownErrorText":"Unbekannter Fehler.","DE.Controllers.Main.unsupportedBrowserErrorText":"Ihr Webbrowser wird nicht unterstützt.","DE.Controllers.Main.updateChartText":"Diagrammdaten werden aktualisiert …","DE.Controllers.Main.uploadDocExtMessage":"Unbekanntes Dokumentformat.","DE.Controllers.Main.uploadDocFileCountMessage":"Keine Dokumente hochgeladen.","DE.Controllers.Main.uploadDocSizeMessage":"Maximale Dokumentgröße ist überschritten.","DE.Controllers.Main.uploadImageExtMessage":"Unbekanntes Bildformat.","DE.Controllers.Main.uploadImageFileCountMessage":"Kein Bild wird hochgeladen.","DE.Controllers.Main.uploadImageSizeMessage":"Die maximal zulässige Bildgröße von 25 MB ist überschritten.","DE.Controllers.Main.uploadImageTextText":"Das Bild wird hochgeladen...","DE.Controllers.Main.uploadImageTitleText":"Bild wird hochgeladen","DE.Controllers.Main.waitText":"Bitte warten...","DE.Controllers.Main.warnBrowserIE9":"Die Applkation hat geringte Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.","DE.Controllers.Main.warnBrowserZoom":"Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination Strg+0 wieder her.","DE.Controllers.Main.warnLicenseAnonymous":"Zugriff für anonyme Benutzer verweigert.
Dieses Dokument wird nur zur Ansicht geöffnet.","DE.Controllers.Main.warnLicenseBefore":"Lizenz nicht aktiv.
Bitte wenden Sie sich an Ihren Administrator.","DE.Controllers.Main.warnLicenseExp":"Ihre Lizenz ist abgelaufen.
Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.","DE.Controllers.Main.warnLicenseLimitedNoAccess":"Die Lizenz ist abgelaufen.
Die Bearbeitungsfunktionen sind nicht verfügbar.
Bitte wenden Sie sich an Ihrem Administrator.","DE.Controllers.Main.warnLicenseLimitedRenewed":"Die Lizenz soll aktualisiert werden.
Die Bearbeitungsfunktionen sind eingeschränkt.
Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff","DE.Controllers.Main.warnNoLicense":"Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.","DE.Controllers.Main.warnNoLicenseUsers":"Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.","DE.Controllers.Main.warnProcessRightsChange":"Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.","DE.Controllers.Main.warnStartFilling":"Das Formular wird ausgefüllt.
Die Dateibearbeitung ist derzeit nicht möglich.","DE.Controllers.Navigation.txtBeginning":"Anfang des Dokuments","DE.Controllers.Navigation.txtGotoBeginning":"Zum Anfang des Dokuments übergehnen","DE.Controllers.Print.textMarginsLast":" Benutzerdefiniert als letzte","DE.Controllers.Print.txtCustom":"Benutzerdefiniert","DE.Controllers.Print.txtPrintRangeInvalid":"Ungültiger Druckbereich","DE.Controllers.Search.notcriticalErrorTitle":"Achtung","DE.Controllers.Search.textNoTextFound":"Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.","DE.Controllers.Search.textReplaceSkipped":"Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.","DE.Controllers.Search.textReplaceSuccess":"Die Suche wurde durchgeführt. {0} Einträge wurden ersetzt","DE.Controllers.Search.warnReplaceString":"{0} ist kein gültiges Sonderzeichen für das Feld \"Ersetzen durch\".","DE.Controllers.Statusbar.textDisconnect":"Die Verbindung wurde unterbrochen
Verbindungsversuch. Bitte Verbindungseinstellungen überprüfen.","DE.Controllers.Statusbar.textHasChanges":"Neue Änderungen wurden zurückverfolgt","DE.Controllers.Statusbar.textSetTrackChanges":"Nachverfolgung von Änderungen ist aktiv","DE.Controllers.Statusbar.textTrackChanges":"Das Dokument wird im Modus \"Nachverfolgen von Änderungen\" geöffnet. ","DE.Controllers.Statusbar.tipReview":"Nachverfolgen von Änderungen","DE.Controllers.Statusbar.zoomText":"Zoom {0}%","DE.Controllers.Toolbar.confirmAddFontName":"Die Schriftart, die Sie verwenden wollen, ist auf diesem Gerät nicht verfügbar.
Der Textstil wird mit einer der Systemschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.
Wollen Sie fortsetzen?","DE.Controllers.Toolbar.dataUrl":"Eine URL der Daten einfügen","DE.Controllers.Toolbar.errorAccessDeny":"Sie versuchen, eine Aktion durchzuführen, für die Sie keine Rechte haben.
Wenden Sie sich bitte an Ihren Document Server-Administrator.","DE.Controllers.Toolbar.fileUrl":"URL der Datei einfügen","DE.Controllers.Toolbar.helpChartElements":"Schalten Sie die Sichtbarkeit von Diagrammelementen einfach mit mehreren Klicks um.","DE.Controllers.Toolbar.helpChartElementsHeader":"Anzeige der Diagrammelemente","DE.Controllers.Toolbar.helpCommentFilter":"Verwalten Sie Ihre Ansicht, indem Sie im linken Bereich zwischen offenen und gelösten Kommentaren wechseln.","DE.Controllers.Toolbar.helpCommentFilterHeader":"Kommentarfilter","DE.Controllers.Toolbar.notcriticalErrorTitle":"Achtung","DE.Controllers.Toolbar.textAccent":"Akzente","DE.Controllers.Toolbar.textBracket":"Klammern","DE.Controllers.Toolbar.textConvertFormDownload":"Laden Sie die Datei als ausfüllbares PDF-Formular herunter, um sie ausfüllen zu können.","DE.Controllers.Toolbar.textConvertFormSave":"Speichern Sie die Datei als ausfüllbares PDF-Formular, um sie ausfüllen zu können.","DE.Controllers.Toolbar.textDownloadPdf":"PDF herunterladen","DE.Controllers.Toolbar.textEmptyMMergeUrl":"Geben Sie URL ein.","DE.Controllers.Toolbar.textFontSizeErr":"Der eingegebene Wert ist falsch.
Geben Sie bitte einen numerischen Wert zwischen 1 und 300 ein.","DE.Controllers.Toolbar.textFraction":"Bruchteile","DE.Controllers.Toolbar.textFunction":"Funktionen","DE.Controllers.Toolbar.textGroup":"Gruppe","DE.Controllers.Toolbar.textInsert":"Einfügen","DE.Controllers.Toolbar.textIntegral":"Integrale","DE.Controllers.Toolbar.textLargeOperator":"Große Operatoren","DE.Controllers.Toolbar.textLimitAndLog":"Grenzwerte und Logarithmen","DE.Controllers.Toolbar.textMatrix":"Matrizen","DE.Controllers.Toolbar.textOperator":"Operatoren","DE.Controllers.Toolbar.textRadical":"Wurzeln","DE.Controllers.Toolbar.textRecentlyUsed":"Zuletzt verwendet","DE.Controllers.Toolbar.textSavePdf":"Als PDF speichern","DE.Controllers.Toolbar.textScript":"Skripts","DE.Controllers.Toolbar.textSymbols":"Symbole","DE.Controllers.Toolbar.textTabForms":"Formulare","DE.Controllers.Toolbar.textWarning":"Achtung","DE.Controllers.Toolbar.txtAccent_Accent":"Akut","DE.Controllers.Toolbar.txtAccent_ArrowD":"Pfeil nach rechts und links oben","DE.Controllers.Toolbar.txtAccent_ArrowL":"Pfeil nach links oben","DE.Controllers.Toolbar.txtAccent_ArrowR":"Pfeil nach rechts oben","DE.Controllers.Toolbar.txtAccent_Bar":"Balken","DE.Controllers.Toolbar.txtAccent_BarBot":"Unterstreichung","DE.Controllers.Toolbar.txtAccent_BarTop":"Überstreichung","DE.Controllers.Toolbar.txtAccent_BorderBox":"Geschachtelte Formel (mit Platzhalter)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"Geschachtelte Formel (Beispiel)","DE.Controllers.Toolbar.txtAccent_Check":"Prüfen","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"Horizontale geschweifte Klammer (unten)","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"Horizontale geschweifte Klammer (oben)","DE.Controllers.Toolbar.txtAccent_Custom_1":"Vektor A","DE.Controllers.Toolbar.txtAccent_Custom_2":"ABC mit Überstreichung","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y Mit Überstreichung","DE.Controllers.Toolbar.txtAccent_DDDot":"Dreifacher Punkt","DE.Controllers.Toolbar.txtAccent_DDot":"Doppelpunkt","DE.Controllers.Toolbar.txtAccent_Dot":"Punkt","DE.Controllers.Toolbar.txtAccent_DoubleBar":"Doppelte Überstreichung","DE.Controllers.Toolbar.txtAccent_Grave":"Gravis","DE.Controllers.Toolbar.txtAccent_GroupBot":"Gruppierungszeichen unten","DE.Controllers.Toolbar.txtAccent_GroupTop":"Gruppierungszeichen oben","DE.Controllers.Toolbar.txtAccent_HarpoonL":"Harpune nach links oben","DE.Controllers.Toolbar.txtAccent_HarpoonR":"Harpune nach rechts oben","DE.Controllers.Toolbar.txtAccent_Hat":"Dach","DE.Controllers.Toolbar.txtAccent_Smile":"Brevis","DE.Controllers.Toolbar.txtAccent_Tilde":"Tilde","DE.Controllers.Toolbar.txtBracket_Angle":"Spitze Klammern","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"Spitze Klammern mit Trennzeichen","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"Spitze Klammern mit zwei Trennzeichen","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"Rechte spitze Klammer","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"Linke spitze Klammer","DE.Controllers.Toolbar.txtBracket_Curve":"Geschwungene Klammern","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"Geschweifte Klammern mit Trennzeichen","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"Linke runde Klammer","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"Einzelne eckige Klammer","DE.Controllers.Toolbar.txtBracket_Custom_1":"Fälle (zwei Bedingungen)","DE.Controllers.Toolbar.txtBracket_Custom_2":"Fälle (drei Bedingungen)","DE.Controllers.Toolbar.txtBracket_Custom_3":"Stapelobjekt","DE.Controllers.Toolbar.txtBracket_Custom_4":"Stapel Objekt in eckigen Klammern","DE.Controllers.Toolbar.txtBracket_Custom_5":"Fallbeispiele","DE.Controllers.Toolbar.txtBracket_Custom_6":"Binomialkoeffizient","DE.Controllers.Toolbar.txtBracket_Custom_7":"Binomialkoeffizient in spitzen Klammern","DE.Controllers.Toolbar.txtBracket_Line":"Vertikale Balken","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"Rechter vertikaler Balken","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"Linker vertikaler Balken","DE.Controllers.Toolbar.txtBracket_LineDouble":"Doppelte vertikale Balken","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"Rechter doppelter vertikaler Balken","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"Linker doppelter vertikaler Klammer","DE.Controllers.Toolbar.txtBracket_LowLim":"Boden","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"Rechter Boden","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"Linke Decke","DE.Controllers.Toolbar.txtBracket_Round":"Runde Klammern","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"Runde Klammern mit Trennlinien","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"Rechte runde Klammer","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"Linke runde Klammer","DE.Controllers.Toolbar.txtBracket_Square":"Eckige Klammern","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"Platzhalter zwischen zwei rechten eckigen Klammern","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"Umgekehrte eckige Klammern","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"Rechte eckige Klammer","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"Linke eckige Klammer","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"Platzhalter zwischen zwei linken eckigen Klammern","DE.Controllers.Toolbar.txtBracket_SquareDouble":"Doppelte eckige Klammern","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"Rechte doppelte eckige Klammer","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"Linke doppelte eckige Klammer","DE.Controllers.Toolbar.txtBracket_UppLim":"Decke","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"Rechte Decke","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"Linke Decke","DE.Controllers.Toolbar.txtDownload":"Herunterladen","DE.Controllers.Toolbar.txtFractionDiagonal":"Versetzter Bruch mit schrägem Bruchstrich","DE.Controllers.Toolbar.txtFractionDifferential_1":"dx über dy","DE.Controllers.Toolbar.txtFractionDifferential_2":"Obergrenze Delta y über Obergrenze Delta x","DE.Controllers.Toolbar.txtFractionDifferential_3":"partielles y über partielles x","DE.Controllers.Toolbar.txtFractionDifferential_4":"Delta y über Delta x","DE.Controllers.Toolbar.txtFractionHorizontal":"Bruch mit schrägem Bruchstrich","DE.Controllers.Toolbar.txtFractionPi_2":"Pi wird durch 2 dividiert","DE.Controllers.Toolbar.txtFractionSmall":"Kleine Bruchzahl","DE.Controllers.Toolbar.txtFractionVertical":"Bruch mit waagerechtem Bruchstrich","DE.Controllers.Toolbar.txtFunction_1_Cos":"Umgekehrte Kosinus-Funktion","DE.Controllers.Toolbar.txtFunction_1_Cosh":"Hyperbolische umgekehrte Kosinus-Funktion","DE.Controllers.Toolbar.txtFunction_1_Cot":"Umgekehrte Kotangens-Funktion","DE.Controllers.Toolbar.txtFunction_1_Coth":"Hyperbolische umgekehrte Kotangens-Funktion","DE.Controllers.Toolbar.txtFunction_1_Csc":"Umgekehrte Kosekansfunktion","DE.Controllers.Toolbar.txtFunction_1_Csch":"Hyperbolische umgekehrte Kosekans-Funktion","DE.Controllers.Toolbar.txtFunction_1_Sec":"Umgekehrte Sekans-Funktion","DE.Controllers.Toolbar.txtFunction_1_Sech":"Hyperbolische umgekehrte Sekans-Funktion","DE.Controllers.Toolbar.txtFunction_1_Sin":"Umgekehrte Sinus-Funktion","DE.Controllers.Toolbar.txtFunction_1_Sinh":"Hyperbolische umgekehrte Sinus-Funktion","DE.Controllers.Toolbar.txtFunction_1_Tan":"Umgekehrte Tangens-Funktion","DE.Controllers.Toolbar.txtFunction_1_Tanh":"Hyperbolische umgekehrte Tangens-Funktion","DE.Controllers.Toolbar.txtFunction_Cos":"Kosinusfunktion","DE.Controllers.Toolbar.txtFunction_Cosh":"Hyperbolische Kosinusfunktion","DE.Controllers.Toolbar.txtFunction_Cot":"Kotangensfunktion","DE.Controllers.Toolbar.txtFunction_Coth":"Hyperbolische Kotangensfunktion","DE.Controllers.Toolbar.txtFunction_Csc":"Kosekansfunktion","DE.Controllers.Toolbar.txtFunction_Csch":"Hyperbolische Kosekansfunktion","DE.Controllers.Toolbar.txtFunction_Custom_1":"Sinus Theta","DE.Controllers.Toolbar.txtFunction_Custom_2":"Kosinus 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"Tangensformel","DE.Controllers.Toolbar.txtFunction_Sec":"Sekans-Funktion","DE.Controllers.Toolbar.txtFunction_Sech":"Hyperbolische Sekans-Funktion","DE.Controllers.Toolbar.txtFunction_Sin":"Sinus-Funktion","DE.Controllers.Toolbar.txtFunction_Sinh":"Hyperbolische Sinus-Funktion","DE.Controllers.Toolbar.txtFunction_Tan":"Tangens-Funktion","DE.Controllers.Toolbar.txtFunction_Tanh":"Hyperbolische Tangens-Funktion","DE.Controllers.Toolbar.txtIntegral":"Integral","DE.Controllers.Toolbar.txtIntegral_dtheta":"Differenzial Theta","DE.Controllers.Toolbar.txtIntegral_dx":"Differenzial x","DE.Controllers.Toolbar.txtIntegral_dy":"Differenzial y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral mit gestapelten Grenzwerten","DE.Controllers.Toolbar.txtIntegralDouble":"Doppelintegral","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Doppelintegral mit gestapelten Grenzwerten","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Doppelintegral mit Grenzwerten","DE.Controllers.Toolbar.txtIntegralOriented":"Konturenintegral","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"Konturintegral mit gestapelten Grenzwerten","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"Oberflächenintegral","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Oberflächenintegral mit gestapelten Grenzen","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"Flächenintegral mit Grenzen","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"Konturintegral mit Grenzwerten","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"Volumenintegral","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"Volumenintegral mit gestapelten Grenzen","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"Volumenintegral mit Grenzen","DE.Controllers.Toolbar.txtIntegralSubSup":"Integral mit Grenzwerten","DE.Controllers.Toolbar.txtIntegralTriple":"Dreifaches Integral","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Dreifaches Integral mit gestapelten Grenzen","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"Dreifaches Integral mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Logik und","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Logisch und mit unteren Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Logisch und mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Logisches Und mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Logisches Und mit tiefgestellten/hochgestellten Grenzen","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"Koprodukt","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Koprodukt mit Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Koprodukt mit Grenzwerten","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Koprodukt mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Koprodukt mit tiefgestellten/hochgestellten Grenzwerten","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Summierung über k von n wähle k","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Summation von i gleich Null bis n","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Summationsbeispiel mit zwei Indizes","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Produktbeispiel","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"Vereinigungsbeispiel","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"Logisch oder","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"Logisch oder mit unteren Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"Logisch oder mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"Logisch oder mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"Logisch oder mit tiefgestellten/hochgestellten Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"Schnittmenge","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"Schnittmenge mit unterem Grenzwert","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"Schnittmenge mit Grenzwerten","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"Schnittmenge mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"Schnittmenge mit tiefgestellten/hochgestellten Grenzwerten","DE.Controllers.Toolbar.txtLargeOperator_Prod":"Produkt","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Produkt mit unteren Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Produkt mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Produkt mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Produkt mit tiefgestellten/hochgestellten Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Sum":"Summenbildung","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Summenbildung mit unterer Grenze","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Summenbildung mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Summation mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Summierung mit tiefgestellten/hochgestellten Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Union":"Vereinigung","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"Vereinigung mit unterer Grenze","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"Vereinigungsgrenzen","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"Vereinigung mit tiefgeschriebener unterer Grenze","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"Vereinigung mit tiefgeschriebenen/hochgeschriebenen Grenzen","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"Beispiel für Grenzwert","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"Beispiel für Maximum","DE.Controllers.Toolbar.txtLimitLog_Lim":"Grenzwert","DE.Controllers.Toolbar.txtLimitLog_Ln":"Natürlicher Logarithmus","DE.Controllers.Toolbar.txtLimitLog_Log":"Logarithmus","DE.Controllers.Toolbar.txtLimitLog_LogBase":"Logarithmus","DE.Controllers.Toolbar.txtLimitLog_Max":"Maximal","DE.Controllers.Toolbar.txtLimitLog_Min":"Minimal","DE.Controllers.Toolbar.txtMarginsH":"Die oberen und unteren Ränder sind zu hoch für eingegebene Seitenhöhe","DE.Controllers.Toolbar.txtMarginsW":"Die Ränder rechts und links sind bei gegebener Seitenbreite zu breit. ","DE.Controllers.Toolbar.txtMatrix_1_2":"1x2 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_1_3":"1x3 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_2_1":"2x1 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_2_2":"2x2 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"Leere 2 mal 2 Matrix in doppelten vertikalen Balken","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"Leere 2 mal 2 Determinante","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"Leere 2 mal 2 Matrix in Klammern","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"Leere 2 mal 2 Matrix in Klammern","DE.Controllers.Toolbar.txtMatrix_2_3":"2x3 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_3_1":"3x1 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_3_2":"3x2 leere Matrix","DE.Controllers.Toolbar.txtMatrix_3_3":"3x3 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"Grundlinienpunkte","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"Mittellinienpunkte","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"Diagonale Punkte","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"Vertikale Punkte","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"Dünnbesetzte Matrix in runden Klammern","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"Dünnbesetzte Matrix in Klammern","DE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 Identitätsmatrix mit Nullen","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"2x2 Identitätsmatrix","DE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 Identitätsmatrix mit Nullen","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3-Identitätsmatrix mit leeren Zellen außerhalb der Diagonalen","DE.Controllers.Toolbar.txtNeedDownload":"Der PDF-Viewer kann neue Änderungen nur in separaten Dateikopien speichern. Die gemeinsame Bearbeitung wird nicht unterstützt, und andere Nutzer können Ihre Änderungen nur sehen, wenn Sie eine neue Dateiversion freigeben.","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"Pfeil nach rechts und links unten","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"Pfeil nach rechts und links oben","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"Pfeil nach links unten","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"Pfeil nach links oben","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"Pfeil nach rechts unten","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"Pfeil nach rechts oben","DE.Controllers.Toolbar.txtOperator_ColonEquals":"Doppelpunkt gleich","DE.Controllers.Toolbar.txtOperator_Custom_1":"Ergibt","DE.Controllers.Toolbar.txtOperator_Custom_2":"Delta ergibt","DE.Controllers.Toolbar.txtOperator_Definition":"Gleich gemäß Definition","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta gleich","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"Pfeil nach rechts und links darunter","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"Pfeil nach rechts und links darüber","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"Pfeil nach links unten","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"Pfeil nach links oben","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"Pfeil nach rechts unten","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"Pfeil nach rechts oben","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"Gleich Gleich","DE.Controllers.Toolbar.txtOperator_MinusEquals":"Minus Gleich","DE.Controllers.Toolbar.txtOperator_PlusEquals":"Plus Gleich","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"Gemessen an","DE.Controllers.Toolbar.txtRadicalCustom_1":"Rechte Seite der quadratischen Formel","DE.Controllers.Toolbar.txtRadicalCustom_2":"Wurzel eines quadratischen plus b quadratisch","DE.Controllers.Toolbar.txtRadicalRoot_2":"Quadratwurzel mit Grad","DE.Controllers.Toolbar.txtRadicalRoot_3":"Kubikwurzel","DE.Controllers.Toolbar.txtRadicalRoot_n":"Wurzel mit Grad","DE.Controllers.Toolbar.txtRadicalSqrt":"Quadratwurzel","DE.Controllers.Toolbar.txtSaveCopy":"Kopie speichern","DE.Controllers.Toolbar.txtScriptCustom_1":"x tiefgestelltes y im Quadrat","DE.Controllers.Toolbar.txtScriptCustom_2":"e zum Minus i Omega t","DE.Controllers.Toolbar.txtScriptCustom_3":"x im Quadrat","DE.Controllers.Toolbar.txtScriptCustom_4":"Y links hochgestellt n links tiefgestellt eins","DE.Controllers.Toolbar.txtScriptSub":"Tiefgestellt","DE.Controllers.Toolbar.txtScriptSubSup":"Tiefgestellt-Hochgestellt","DE.Controllers.Toolbar.txtScriptSubSupLeft":"Hochgestellter/ tiefgestellter Index links","DE.Controllers.Toolbar.txtScriptSup":"Hochgestellt","DE.Controllers.Toolbar.txtSymbol_about":"Ungefähr","DE.Controllers.Toolbar.txtSymbol_additional":"Komplement","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Alpha","DE.Controllers.Toolbar.txtSymbol_approx":"Fast gleich","DE.Controllers.Toolbar.txtSymbol_ast":"Stern-Operator","DE.Controllers.Toolbar.txtSymbol_beta":"Beta","DE.Controllers.Toolbar.txtSymbol_beth":"Bet","DE.Controllers.Toolbar.txtSymbol_bullet":"Stichpunktoperator","DE.Controllers.Toolbar.txtSymbol_cap":"Schnittmenge","DE.Controllers.Toolbar.txtSymbol_cbrt":"Kubikwurzel","DE.Controllers.Toolbar.txtSymbol_cdots":"Horizontale Ellipse (Mittellinie)","DE.Controllers.Toolbar.txtSymbol_celsius":"Grad Celsius","DE.Controllers.Toolbar.txtSymbol_chi":"Chi","DE.Controllers.Toolbar.txtSymbol_cong":"Ungefähr gleich ","DE.Controllers.Toolbar.txtSymbol_cup":"Vereinigung","DE.Controllers.Toolbar.txtSymbol_ddots":"Diagonale Ellipse nach unten rechts","DE.Controllers.Toolbar.txtSymbol_degree":"Grad","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"Divisionszeichen","DE.Controllers.Toolbar.txtSymbol_downarrow":"Pfeil nach unten","DE.Controllers.Toolbar.txtSymbol_emptyset":"Leere Menge","DE.Controllers.Toolbar.txtSymbol_epsilon":"Epsilon","DE.Controllers.Toolbar.txtSymbol_equals":"Gleich","DE.Controllers.Toolbar.txtSymbol_equiv":"Identisch mit","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"Vorhanden","DE.Controllers.Toolbar.txtSymbol_factorial":"Faktoriell","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"Grad Fahrenheit","DE.Controllers.Toolbar.txtSymbol_forall":"Für alle","DE.Controllers.Toolbar.txtSymbol_gamma":"Gamma","DE.Controllers.Toolbar.txtSymbol_geq":"Größer als oder gleich wie ","DE.Controllers.Toolbar.txtSymbol_gg":"Viel größer als","DE.Controllers.Toolbar.txtSymbol_greater":"Größer als","DE.Controllers.Toolbar.txtSymbol_in":"Element","DE.Controllers.Toolbar.txtSymbol_inc":"Erhöhung","DE.Controllers.Toolbar.txtSymbol_infinity":"Unendlich","DE.Controllers.Toolbar.txtSymbol_iota":"Jota","DE.Controllers.Toolbar.txtSymbol_kappa":"Kappa","DE.Controllers.Toolbar.txtSymbol_lambda":"Lambda","DE.Controllers.Toolbar.txtSymbol_leftarrow":"Pfeil nach links","DE.Controllers.Toolbar.txtSymbol_leftrightarrow":"Pfeil nach rechts und links","DE.Controllers.Toolbar.txtSymbol_leq":"Kleiner als oder gleich","DE.Controllers.Toolbar.txtSymbol_less":"Kleiner als","DE.Controllers.Toolbar.txtSymbol_ll":"Viel kleiner als","DE.Controllers.Toolbar.txtSymbol_minus":"Minus","DE.Controllers.Toolbar.txtSymbol_mp":"Minus Plus","DE.Controllers.Toolbar.txtSymbol_mu":"Mu","DE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","DE.Controllers.Toolbar.txtSymbol_neq":"Nicht gleich","DE.Controllers.Toolbar.txtSymbol_ni":"Enthält als Element","DE.Controllers.Toolbar.txtSymbol_not":"Negationszeichen","DE.Controllers.Toolbar.txtSymbol_notexists":"Nicht vorhanden","DE.Controllers.Toolbar.txtSymbol_nu":"Nu","DE.Controllers.Toolbar.txtSymbol_o":"Omikron","DE.Controllers.Toolbar.txtSymbol_omega":"Omega","DE.Controllers.Toolbar.txtSymbol_partial":"Partielles Differenzial","DE.Controllers.Toolbar.txtSymbol_percent":"Prozentsatz","DE.Controllers.Toolbar.txtSymbol_phi":"Phi","DE.Controllers.Toolbar.txtSymbol_pi":"Pi","DE.Controllers.Toolbar.txtSymbol_plus":"Plus","DE.Controllers.Toolbar.txtSymbol_pm":"Plus Minus","DE.Controllers.Toolbar.txtSymbol_propto":"Proportional zu","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"Vierte Wurzel","DE.Controllers.Toolbar.txtSymbol_qed":"Ende des Beweises","DE.Controllers.Toolbar.txtSymbol_rddots":"Horizontale Ellipse nach oben rechts","DE.Controllers.Toolbar.txtSymbol_rho":"Rho","DE.Controllers.Toolbar.txtSymbol_rightarrow":"Pfeil nach rechts","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"Wurzelzeichen","DE.Controllers.Toolbar.txtSymbol_tau":"Tau","DE.Controllers.Toolbar.txtSymbol_therefore":"Folglich","DE.Controllers.Toolbar.txtSymbol_theta":"Theta","DE.Controllers.Toolbar.txtSymbol_times":"Multiplikationszeichen","DE.Controllers.Toolbar.txtSymbol_uparrow":"Pfeil nach oben","DE.Controllers.Toolbar.txtSymbol_upsilon":"Ypsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Epsilon Variant","DE.Controllers.Toolbar.txtSymbol_varphi":"Phi Variant","DE.Controllers.Toolbar.txtSymbol_varpi":"Pi Variant","DE.Controllers.Toolbar.txtSymbol_varrho":"Rho Variant","DE.Controllers.Toolbar.txtSymbol_varsigma":"Sigma Variant","DE.Controllers.Toolbar.txtSymbol_vartheta":"Theta Variant","DE.Controllers.Toolbar.txtSymbol_vdots":"Vertikale Ellipse","DE.Controllers.Toolbar.txtSymbol_xsi":"Xi","DE.Controllers.Toolbar.txtSymbol_zeta":"Zeta","DE.Controllers.Toolbar.txtUntitled":"Unbenannt","DE.Controllers.Viewport.textFitPage":"Seite anpassen","DE.Controllers.Viewport.textFitWidth":"Breite anpassen","DE.Controllers.Viewport.txtDarkMode":"Dunkelmodus","DE.Views.BookmarksDialog.textAdd":"Hinzufügen","DE.Views.BookmarksDialog.textAddAndGetLink":"Link hinzufügen und abrufen","DE.Views.BookmarksDialog.textBookmarkName":"Lesezeichenname","DE.Views.BookmarksDialog.textClose":"Schließen","DE.Views.BookmarksDialog.textCopy":"Kopieren","DE.Views.BookmarksDialog.textDelete":"Löschen","DE.Views.BookmarksDialog.textGetLink":"Link abrufen","DE.Views.BookmarksDialog.textGoto":"Wechseln zu","DE.Views.BookmarksDialog.textHidden":"Ausgeblendete Lesezeichen","DE.Views.BookmarksDialog.textLocation":"Standort","DE.Views.BookmarksDialog.textName":"Name","DE.Views.BookmarksDialog.textSort":"Sortieren nach","DE.Views.BookmarksDialog.textTitle":"Lesezeichen","DE.Views.BookmarksDialog.txtInvalidName":"Der Name des Lesezeichens darf nur Buchstaben, Ziffern und Unterstriche enthalten und sollte mit dem Buchstaben beginnen","DE.Views.CaptionDialog.textAdd":"Beschriftung Hinzufügen","DE.Views.CaptionDialog.textAfter":"Nach","DE.Views.CaptionDialog.textBefore":"Vorher","DE.Views.CaptionDialog.textCaption":"Beschriftung","DE.Views.CaptionDialog.textChapter":"Kapitel beginnt mit Stil","DE.Views.CaptionDialog.textChapterInc":"Kapitelnummer einschließen","DE.Views.CaptionDialog.textColon":"Doppelpunkt","DE.Views.CaptionDialog.textDash":"Gedankenstrich","DE.Views.CaptionDialog.textDelete":"Löschen","DE.Views.CaptionDialog.textEquation":"Gleichung","DE.Views.CaptionDialog.textExamples":"Beispiele: Tabelle 2-A, Bild 1.IV","DE.Views.CaptionDialog.textExclude":"Bezeichnung aus Beschriftung ausschließen","DE.Views.CaptionDialog.textFigure":"Abbildung","DE.Views.CaptionDialog.textHyphen":"Bindestrich","DE.Views.CaptionDialog.textInsert":"Einfügen","DE.Views.CaptionDialog.textLabel":"Bezeichnung","DE.Views.CaptionDialog.textLabelError":"Bezeichnung darf nicht leer sein","DE.Views.CaptionDialog.textLongDash":"langer Strich","DE.Views.CaptionDialog.textNumbering":"Nummerierung","DE.Views.CaptionDialog.textPeriod":"Punkt","DE.Views.CaptionDialog.textSeparator":"Trennzeichen verwenden","DE.Views.CaptionDialog.textTable":"Tabelle","DE.Views.CaptionDialog.textTitle":"Beschriftung einfügen","DE.Views.CellsAddDialog.textCol":"Spalten","DE.Views.CellsAddDialog.textDown":"Unter dem Cursor","DE.Views.CellsAddDialog.textLeft":"Nach links","DE.Views.CellsAddDialog.textRight":"Nach rechts ","DE.Views.CellsAddDialog.textRow":"Zeilen","DE.Views.CellsAddDialog.textTitle":"Einfügen: mehrere","DE.Views.CellsAddDialog.textUp":"Über dem Cursor","DE.Views.CellsRemoveDialog.textCol":"Ganze Spalte löschen","DE.Views.CellsRemoveDialog.textLeft":"Zellen nach links verschieben","DE.Views.CellsRemoveDialog.textRow":"Ganze Zeile löschen","DE.Views.CellsRemoveDialog.textTitle":"Zellen löschen","DE.Views.ChartSettings.text3dDepth":"Tiefe (% der Basis)","DE.Views.ChartSettings.text3dHeight":"Höhe (% der Basis)","DE.Views.ChartSettings.text3dRotation":"3D-Drehung","DE.Views.ChartSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.ChartSettings.textAutoscale":"Autoskalierung","DE.Views.ChartSettings.textChartType":"Diagrammtyp ändern","DE.Views.ChartSettings.textData":"Daten","DE.Views.ChartSettings.textDefault":"Standardmäßige Drehung","DE.Views.ChartSettings.textDown":"Unten","DE.Views.ChartSettings.textEditData":"Daten ändern","DE.Views.ChartSettings.textEditLinks":"Links bearbeiten","DE.Views.ChartSettings.textHeight":"Höhe","DE.Views.ChartSettings.textKeepRatio":"Konstante Proportionen","DE.Views.ChartSettings.textLeft":"Links","DE.Views.ChartSettings.textLinkedData":"Verknüpfte Daten","DE.Views.ChartSettings.textNarrow":"Blickfeld verengen","DE.Views.ChartSettings.textOriginalSize":"Tatsächliche Größe","DE.Views.ChartSettings.textPerspective":"Perspektive","DE.Views.ChartSettings.textRight":"Rechts","DE.Views.ChartSettings.textRightAngle":"Rechtwinklige Achsen","DE.Views.ChartSettings.textSelectData":"Daten auswählen","DE.Views.ChartSettings.textSize":"Größe","DE.Views.ChartSettings.textStyle":"Stil","DE.Views.ChartSettings.textUndock":"Seitenbereich abdocken","DE.Views.ChartSettings.textUp":"Aufwärts","DE.Views.ChartSettings.textUpdateData":"Daten aktualisieren","DE.Views.ChartSettings.textWiden":"Blickfeld verbreitern","DE.Views.ChartSettings.textWidth":"Breite","DE.Views.ChartSettings.textWrap":"Textumbruch","DE.Views.ChartSettings.textX":"X-Rotation","DE.Views.ChartSettings.textY":"Y-Rotation","DE.Views.ChartSettings.txtBehind":"Hinter dem Text","DE.Views.ChartSettings.txtInFront":"Vorne","DE.Views.ChartSettings.txtInline":"Inline","DE.Views.ChartSettings.txtSquare":"Eckig","DE.Views.ChartSettings.txtThrough":"Durchgehend","DE.Views.ChartSettings.txtTight":"Passend","DE.Views.ChartSettings.txtTitle":"Diagramm","DE.Views.ChartSettings.txtTopAndBottom":"Oben und unten","DE.Views.ChartSettingsDlg.textLeftOverlay":"Überlagerung links","DE.Views.CompareSettingsDialog.textChar":"Zeichen-Ebene","DE.Views.CompareSettingsDialog.textShow":"Änderungen anzeigen:","DE.Views.CompareSettingsDialog.textTitle":"Vergleichseinstellungen","DE.Views.CompareSettingsDialog.textWord":"Wortebene","DE.Views.ControlSettingsDialog.strGeneral":"Allgemein","DE.Views.ControlSettingsDialog.textAdd":"Hinzufügen","DE.Views.ControlSettingsDialog.textAppearance":"Darstellung","DE.Views.ControlSettingsDialog.textApplyAll":"Auf alle anwenden","DE.Views.ControlSettingsDialog.textBox":"Begrenzungsrahmen","DE.Views.ControlSettingsDialog.textChange":"Bearbeiten","DE.Views.ControlSettingsDialog.textCheckbox":"Kontrollkästchen","DE.Views.ControlSettingsDialog.textChecked":"Häkchen-Symbol ","DE.Views.ControlSettingsDialog.textColor":"Farbe","DE.Views.ControlSettingsDialog.textCombobox":"Kombinationsfeld","DE.Views.ControlSettingsDialog.textDate":"Datumsformat","DE.Views.ControlSettingsDialog.textDelete":"Löschen","DE.Views.ControlSettingsDialog.textDisplayName":"Anzeigename","DE.Views.ControlSettingsDialog.textDown":"Unten","DE.Views.ControlSettingsDialog.textDropDown":"Dropdownliste","DE.Views.ControlSettingsDialog.textFormat":"Datum wie folgt anzeigen","DE.Views.ControlSettingsDialog.textLang":"Sprache","DE.Views.ControlSettingsDialog.textLock":"Sperrung","DE.Views.ControlSettingsDialog.textName":"Titel","DE.Views.ControlSettingsDialog.textNone":"Kein","DE.Views.ControlSettingsDialog.textPlaceholder":"Platzhalter","DE.Views.ControlSettingsDialog.textShowAs":"Anzeigen als","DE.Views.ControlSettingsDialog.textSystemColor":"System","DE.Views.ControlSettingsDialog.textTag":"Tag","DE.Views.ControlSettingsDialog.textTitle":"Einstellungen des Inhaltssteuerelements","DE.Views.ControlSettingsDialog.textUnchecked":"Nicht aktiviertes Häkchen","DE.Views.ControlSettingsDialog.textUp":"Aufwärts","DE.Views.ControlSettingsDialog.textValue":"Wert","DE.Views.ControlSettingsDialog.tipChange":"Symbol ändern","DE.Views.ControlSettingsDialog.txtLockDelete":"Das Inhaltssteuerelement kann nicht gelöscht werden","DE.Views.ControlSettingsDialog.txtLockEdit":"Der Inhalt kann nicht bearbeitet werden","DE.Views.ControlSettingsDialog.txtRemContent":"Inhaltssteuerelemente löschen","DE.Views.CrossReferenceDialog.textAboveBelow":"Oben/unten","DE.Views.CrossReferenceDialog.textBookmark":"Lesezeichen","DE.Views.CrossReferenceDialog.textBookmarkText":"Text des Lesezeichens","DE.Views.CrossReferenceDialog.textCaption":"Ganze Beschriftung","DE.Views.CrossReferenceDialog.textEmpty":"Der angeforderte Verweis hat keinen Inhalt.","DE.Views.CrossReferenceDialog.textEndnote":"Endnote","DE.Views.CrossReferenceDialog.textEndNoteNum":"Nummer der Endnote","DE.Views.CrossReferenceDialog.textEndNoteNumForm":"Nummer der Endnote (formatiert)","DE.Views.CrossReferenceDialog.textEquation":"Gleichung","DE.Views.CrossReferenceDialog.textFigure":"Abbildung","DE.Views.CrossReferenceDialog.textFootnote":"Fußnote","DE.Views.CrossReferenceDialog.textHeading":"Überschrift","DE.Views.CrossReferenceDialog.textHeadingNum":"Nummer der Überschrift","DE.Views.CrossReferenceDialog.textHeadingNumFull":"Nummer der Überschrift (der ganze Kontext)","DE.Views.CrossReferenceDialog.textHeadingNumNo":"Nummer der Überschrift (kein Kontext)","DE.Views.CrossReferenceDialog.textHeadingText":"Überschriftentext","DE.Views.CrossReferenceDialog.textIncludeAbove":"Oben/unten einschließen","DE.Views.CrossReferenceDialog.textInsert":"Einfügen","DE.Views.CrossReferenceDialog.textInsertAs":"Als Link einfügen","DE.Views.CrossReferenceDialog.textLabelNum":"Nur Bezeichnung und Nummer","DE.Views.CrossReferenceDialog.textNoteNum":"Nummer der Fußnote","DE.Views.CrossReferenceDialog.textNoteNumForm":"Nummer der Fußnote (formatiert)","DE.Views.CrossReferenceDialog.textOnlyCaption":"Nur der Text von der Legende","DE.Views.CrossReferenceDialog.textPageNum":"Seitennummer","DE.Views.CrossReferenceDialog.textParagraph":"Nummeriertes Element","DE.Views.CrossReferenceDialog.textParaNum":"Absatznummer","DE.Views.CrossReferenceDialog.textParaNumFull":"Absatznummer (der ganze Kontext)","DE.Views.CrossReferenceDialog.textParaNumNo":"Absatznummer (kein Kontext)","DE.Views.CrossReferenceDialog.textSeparate":"Nummern trennen mit","DE.Views.CrossReferenceDialog.textTable":"Tabelle","DE.Views.CrossReferenceDialog.textText":"Text im Absatz","DE.Views.CrossReferenceDialog.textWhich":"Für welche Beschriftung","DE.Views.CrossReferenceDialog.textWhichBookmark":"Für welches Lesezeichen","DE.Views.CrossReferenceDialog.textWhichEndnote":"Für welche Endnote","DE.Views.CrossReferenceDialog.textWhichHeading":"Für welche Überschrift","DE.Views.CrossReferenceDialog.textWhichNote":"Für welche Fußnote","DE.Views.CrossReferenceDialog.textWhichPara":"Für welches nummeriertes Element","DE.Views.CrossReferenceDialog.txtReference":"Verweisen auf","DE.Views.CrossReferenceDialog.txtTitle":"Querverweis","DE.Views.CrossReferenceDialog.txtType":"Bezugstyp","DE.Views.CustomColumnsDialog.textColumns":"Anzahl von Spalten","DE.Views.CustomColumnsDialog.textEqualWidth":"Gleiche Spaltenbreite","DE.Views.CustomColumnsDialog.textSeparator":"Spaltentrenner","DE.Views.CustomColumnsDialog.textTitle":"Spalten","DE.Views.CustomColumnsDialog.textTitleSpacing":"Abstand","DE.Views.CustomColumnsDialog.textWidth":"Breite","DE.Views.DateTimeDialog.confirmDefault":"Standardformat für {0}: \"{1}\" festlegen","DE.Views.DateTimeDialog.textDefault":"Als Standardeinstellung festlegen","DE.Views.DateTimeDialog.textFormat":"Formate","DE.Views.DateTimeDialog.textLang":"Sprache","DE.Views.DateTimeDialog.textUpdate":"Automatisch aktualisieren","DE.Views.DateTimeDialog.txtTitle":"Datum & Uhrzeit","DE.Views.DocProtection.hintProtectDoc":"Datei schützen","DE.Views.DocProtection.txtDocProtectedComment":"Das Dokument ist geschützt.
Sie können nur Kommentare zu diesem Dokument hinterlassen.","DE.Views.DocProtection.txtDocProtectedForms":"Das Dokument ist geschützt.
Sie können nur Formulare in diesem Dokument ausfüllen.","DE.Views.DocProtection.txtDocProtectedTrack":"Das Dokument ist geschützt.
Sie können dieses Dokument bearbeiten, aber alle Änderungen werden nachverfolgt.","DE.Views.DocProtection.txtDocProtectedView":"Das Dokument ist geschützt.
Sie können dieses Dokument nur ansehen.","DE.Views.DocProtection.txtDocUnlockDescription":"Geben Sie ein Passwort ein, um den Schutz des Dokuments aufzuheben","DE.Views.DocProtection.txtProtectDoc":"Datei schützen","DE.Views.DocProtection.txtUnlockTitle":"Dokument ungeschützt","DE.Views.DocumentHolder.aboveText":"Oben","DE.Views.DocumentHolder.addCommentText":"Kommentar hinzufügen","DE.Views.DocumentHolder.advancedDropCapText":"Initialformatierung","DE.Views.DocumentHolder.advancedEquationText":"Einstellungen der Gleichung","DE.Views.DocumentHolder.advancedFrameText":"Rahmen - Erweiterte Einstellungen","DE.Views.DocumentHolder.advancedParagraphText":"Absatz - Erweiterte Einstellungen","DE.Views.DocumentHolder.advancedTableText":"Tabelle - Erweiterte Einstellungen","DE.Views.DocumentHolder.advancedText":"Erweiterte Einstellungen","DE.Views.DocumentHolder.AlignBottom":"Unten","DE.Views.DocumentHolder.AlignCenter":"Zentriert","DE.Views.DocumentHolder.AlignJust":"Ausrichten","DE.Views.DocumentHolder.AlignLeft":"Links","DE.Views.DocumentHolder.alignmentText":"Ausrichtung","DE.Views.DocumentHolder.AlignMiddle":"Mitte","DE.Views.DocumentHolder.AlignRight":"Rechts","DE.Views.DocumentHolder.AlignText":"Textausrichtung","DE.Views.DocumentHolder.AlignTop":"Oben","DE.Views.DocumentHolder.allLinearText":"Alle – Linear","DE.Views.DocumentHolder.allProfText":"Alle – Professionelle","DE.Views.DocumentHolder.belowText":"Unten","DE.Views.DocumentHolder.breakBeforeText":"Seitenumbruch oberhalb","DE.Views.DocumentHolder.btnChart":"Hinzufügen, Entfernen oder Ändern von Diagrammelementen wie Titel, Legende, Gitternetzlinien und Datenbeschriftungen","DE.Views.DocumentHolder.bulletsText":"Aufzählung und Nummerierung","DE.Views.DocumentHolder.cellAlignText":"Vertikale Zellenausrichtung","DE.Views.DocumentHolder.cellText":"Zelle","DE.Views.DocumentHolder.centerText":"Zenter","DE.Views.DocumentHolder.chartText":"Erweiterte Einstellungen des Diagramms","DE.Views.DocumentHolder.columnText":"Spalte","DE.Views.DocumentHolder.currLinearText":"Aktuell – Linear","DE.Views.DocumentHolder.currProfText":"Aktuell – Professionell","DE.Views.DocumentHolder.deleteColumnText":"Spalte löschen","DE.Views.DocumentHolder.deleteRowText":"Zeile löschen","DE.Views.DocumentHolder.deleteTableText":"Tabelle löschen","DE.Views.DocumentHolder.deleteText":"Löschen","DE.Views.DocumentHolder.DepthAxis":"Z-Achse","DE.Views.DocumentHolder.direct270Text":"Text nach oben drehen","DE.Views.DocumentHolder.direct90Text":"Text nach unten drehen","DE.Views.DocumentHolder.directHText":"Horizontal","DE.Views.DocumentHolder.directionText":"Textausrichtung","DE.Views.DocumentHolder.editChartText":"Daten ändern","DE.Views.DocumentHolder.editFooterText":"Fußzeile bearbeiten","DE.Views.DocumentHolder.editHeaderText":"Kopfzeile bearbeiten","DE.Views.DocumentHolder.editHyperlinkText":"Link bearbeiten","DE.Views.DocumentHolder.eqToDisplayText":"Zur Anzeige wechseln","DE.Views.DocumentHolder.eqToInlineText":"Zum Inline wechseln","DE.Views.DocumentHolder.guestText":"Gast","DE.Views.DocumentHolder.hideEqToolbar":"Symbolleiste Gleichung ausblenden","DE.Views.DocumentHolder.hyperlinkText":"Link","DE.Views.DocumentHolder.ignoreAllSpellText":"Alle auslassen","DE.Views.DocumentHolder.ignoreSpellText":"Auslassen","DE.Views.DocumentHolder.imageText":"Erweiterte Einstellungen des Bildes","DE.Views.DocumentHolder.insertColumnLeftText":"Spalte nach links","DE.Views.DocumentHolder.insertColumnRightText":"Spalte nach rechts","DE.Views.DocumentHolder.insertColumnText":"Spalte einfügen","DE.Views.DocumentHolder.insertRowAboveText":"Zeile oberhalb","DE.Views.DocumentHolder.insertRowBelowText":"Zeile unterhalb","DE.Views.DocumentHolder.insertRowText":"Zeile einfügen","DE.Views.DocumentHolder.insertText":"Einfügen","DE.Views.DocumentHolder.keepLinesText":"Absatz zusammenhalten","DE.Views.DocumentHolder.langText":"Sprache wählen","DE.Views.DocumentHolder.latexText":"LaTeX","DE.Views.DocumentHolder.leftText":"Links","DE.Views.DocumentHolder.loadSpellText":"Varianten werden geladen...","DE.Views.DocumentHolder.mergeCellsText":"Zellen verbinden","DE.Views.DocumentHolder.mniImageFromFile":"Bild aus Datei","DE.Views.DocumentHolder.mniImageFromStorage":"Bild aus dem Speicher","DE.Views.DocumentHolder.mniImageFromUrl":"Bild aus URL","DE.Views.DocumentHolder.moreText":"Mehr Varianten...","DE.Views.DocumentHolder.noSpellVariantsText":"Keine Varianten","DE.Views.DocumentHolder.notcriticalErrorTitle":"Warnung","DE.Views.DocumentHolder.originalSizeText":"Tatsächliche Größe","DE.Views.DocumentHolder.paragraphText":"Absatz","DE.Views.DocumentHolder.removeHyperlinkText":"Link entfernen","DE.Views.DocumentHolder.rightText":"Rechts","DE.Views.DocumentHolder.rowText":"Zeile","DE.Views.DocumentHolder.saveStyleText":"Neuer Stil erstellen","DE.Views.DocumentHolder.selectCellText":"Zelle auswählen","DE.Views.DocumentHolder.selectColumnText":"Spalte auswählen","DE.Views.DocumentHolder.selectRowText":"Zeile auswählen","DE.Views.DocumentHolder.selectTableText":"Tabelle auswählen","DE.Views.DocumentHolder.selectText":"Auswählen","DE.Views.DocumentHolder.shapeText":"Erweiterte Einstellungen der Form","DE.Views.DocumentHolder.showEqToolbar":"Gleichungs-Symbolleiste anzeigen","DE.Views.DocumentHolder.spellcheckText":"Rechtschreibprüfung","DE.Views.DocumentHolder.splitCellsText":"Zelle teilen...","DE.Views.DocumentHolder.splitCellTitleText":"Zelle teilen","DE.Views.DocumentHolder.strDelete":"Signatur entfernen","DE.Views.DocumentHolder.strDetails":"Signaturdetails","DE.Views.DocumentHolder.strSetup":"Signatureinrichtung","DE.Views.DocumentHolder.strSign":"Signieren","DE.Views.DocumentHolder.styleText":"Formatierung als Formatvorlage","DE.Views.DocumentHolder.tableText":"Tabelle","DE.Views.DocumentHolder.textAccept":"Änderung annehmen","DE.Views.DocumentHolder.textAlign":"Ausrichten","DE.Views.DocumentHolder.textArrange":"Anordnen","DE.Views.DocumentHolder.textArrangeBack":"In den Hintergrund senden","DE.Views.DocumentHolder.textArrangeBackward":"Eine Ebene nach hinten","DE.Views.DocumentHolder.textArrangeForward":"Vorwärts bringen","DE.Views.DocumentHolder.textArrangeFront":"In den Vordergrund bringen","DE.Views.DocumentHolder.textAxes":"Achsen","DE.Views.DocumentHolder.textAxisTitles":"Achsentitel","DE.Views.DocumentHolder.textBottom":"Unten","DE.Views.DocumentHolder.textCells":"Zellen","DE.Views.DocumentHolder.textCenter":"Zentriert","DE.Views.DocumentHolder.textChartTitle":"Diagrammtitel","DE.Views.DocumentHolder.textClearField":"Feld leeren","DE.Views.DocumentHolder.textCol":"Ganze Spalte löschen","DE.Views.DocumentHolder.textContentControls":"Inhaltssteuerelement","DE.Views.DocumentHolder.textContinueNumbering":"Nummerierung fortführen","DE.Views.DocumentHolder.textCopy":"Kopieren","DE.Views.DocumentHolder.textCrop":"Zuschneiden","DE.Views.DocumentHolder.textCropFill":"Ausfüllen","DE.Views.DocumentHolder.textCropFit":"Anpassen","DE.Views.DocumentHolder.textCut":"Ausschneiden","DE.Views.DocumentHolder.textDataLabels":"Datenbeschriftungen","DE.Views.DocumentHolder.textDataTable":"Datentabelle","DE.Views.DocumentHolder.textDistributeCols":"Spalten verteilen","DE.Views.DocumentHolder.textDistributeRows":"Zeilen verteilen","DE.Views.DocumentHolder.textEditControls":"Einstellungen des Inhaltssteuerelements","DE.Views.DocumentHolder.textEditField":"Feld bearbeiten","DE.Views.DocumentHolder.textEditObject":"Objekt bearbeiten","DE.Views.DocumentHolder.textEditPoints":"Punkte bearbeiten","DE.Views.DocumentHolder.textEditWrapBoundary":"Umbruchsgrenze bearbeiten","DE.Views.DocumentHolder.textErrorBars":"Fehlerbalken","DE.Views.DocumentHolder.textExponential":"Exponentiell ","DE.Views.DocumentHolder.textFieldCodes":"Feldcodes umschalten","DE.Views.DocumentHolder.textFit":"An Breite anpassen","DE.Views.DocumentHolder.textFlipH":"Horizontal kippen","DE.Views.DocumentHolder.textFlipV":"Vertikal kippen","DE.Views.DocumentHolder.textFollow":"Verschieben nachverfolgen","DE.Views.DocumentHolder.textFromFile":"Aus Datei","DE.Views.DocumentHolder.textFromStorage":"Aus dem Speicher","DE.Views.DocumentHolder.textFromUrl":"Aus URL","DE.Views.DocumentHolder.textGridLines":"Gitternetzlinien ","DE.Views.DocumentHolder.textHorAxis":"Horizontale Achse","DE.Views.DocumentHolder.textHorAxisSec":"Horizontale Sekundärachse","DE.Views.DocumentHolder.textHorizontalMajor":"Horizontal Major","DE.Views.DocumentHolder.textHorizontalMinor":"Horizontal Minor","DE.Views.DocumentHolder.textIndents":"Listeneinzüge anpassen","DE.Views.DocumentHolder.textInnerBottom":"Innen unten","DE.Views.DocumentHolder.textInnerTop":"Innen oben","DE.Views.DocumentHolder.textJoinList":"Mit der vorherigen Liste verbinden","DE.Views.DocumentHolder.textLeft":"Zellen nach links verschieben","DE.Views.DocumentHolder.textLeftData":"Links","DE.Views.DocumentHolder.textLeftOverlay":"Überlagerung links","DE.Views.DocumentHolder.textLeftPos":"Links","DE.Views.DocumentHolder.textLegendPos":"Legende","DE.Views.DocumentHolder.textLinear":"Linear","DE.Views.DocumentHolder.textLinearForecast":"Lineare Prognose","DE.Views.DocumentHolder.textLines":"Linien","DE.Views.DocumentHolder.textMovingAverage":"Gleitender Durchschnitt (2)","DE.Views.DocumentHolder.textNest":"Tabelle schachteln","DE.Views.DocumentHolder.textNextPage":"Nächste Seite","DE.Views.DocumentHolder.textNone":"Kein(e)","DE.Views.DocumentHolder.textNoOverlay":"Ohne Überlagerung","DE.Views.DocumentHolder.textNumberingValue":"Nummerierungswert","DE.Views.DocumentHolder.textOuterTop":"Außen oben","DE.Views.DocumentHolder.textOverlay":"Überlagerung","DE.Views.DocumentHolder.textPaste":"Einfügen","DE.Views.DocumentHolder.textPrevPage":"Vorherige Seite","DE.Views.DocumentHolder.textRedo":"Wiederholen","DE.Views.DocumentHolder.textRefreshField":"Feld aktualisieren","DE.Views.DocumentHolder.textReject":"Änderung ablehnen","DE.Views.DocumentHolder.textRemCheckBox":"Checkbox entfernen","DE.Views.DocumentHolder.textRemComboBox":"Combobox entfernen","DE.Views.DocumentHolder.textRemDropdown":"Dropdown entfernen","DE.Views.DocumentHolder.textRemField":"Textfeld entfernen","DE.Views.DocumentHolder.textRemove":"Entfernen","DE.Views.DocumentHolder.textRemoveControl":"Inhaltssteuerelement entfernen","DE.Views.DocumentHolder.textRemPicture":"Bild entfernen","DE.Views.DocumentHolder.textRemRadioBox":"Radiobutton entfernen","DE.Views.DocumentHolder.textReplace":"Bild ersetzen","DE.Views.DocumentHolder.textResetCrop":"Zuschneiden zurücksetzen","DE.Views.DocumentHolder.textRight":"Rechts","DE.Views.DocumentHolder.textRightOverlay":"Überlagerung rechts","DE.Views.DocumentHolder.textRotate":"Drehen","DE.Views.DocumentHolder.textRotate270":"Um 90 ° gegen den Uhrzeigersinn drehen","DE.Views.DocumentHolder.textRotate90":"90° im UZS drehen","DE.Views.DocumentHolder.textRow":"Ganze Zeile löschen","DE.Views.DocumentHolder.textSaveAsPicture":"Als Bild speichern","DE.Views.DocumentHolder.textSeparateList":"Separate Liste","DE.Views.DocumentHolder.textSettings":"Einstellungen","DE.Views.DocumentHolder.textSeveral":"Mehrere Zeilen/Spalten","DE.Views.DocumentHolder.textShapeAlignBottom":"Unten ausrichten","DE.Views.DocumentHolder.textShapeAlignCenter":"Zentriert ausrichten","DE.Views.DocumentHolder.textShapeAlignLeft":"Linksbündig ausrichten","DE.Views.DocumentHolder.textShapeAlignMiddle":"Mittig ausrichten","DE.Views.DocumentHolder.textShapeAlignRight":"Rechtsbündig ausrichten","DE.Views.DocumentHolder.textShapeAlignTop":"Oben ausrichten","DE.Views.DocumentHolder.textShapesMerge":"Formen zusammenführen","DE.Views.DocumentHolder.textShowDataTable":"Datentabelle anzeigen","DE.Views.DocumentHolder.textShowLegendKeys":"Legendenschlüssel anzeigen","DE.Views.DocumentHolder.textShowUpDown":"Aufwärts-/Abwärtsbalken anzeigen","DE.Views.DocumentHolder.textStandardDeviation":"Standardabweichung","DE.Views.DocumentHolder.textStandardError":"Standardfehler","DE.Views.DocumentHolder.textStartNewList":"Neue Liste beginnen","DE.Views.DocumentHolder.textStartNumberingFrom":"Nummerierungswert festlegen","DE.Views.DocumentHolder.textTitleCellsRemove":"Zellen löschen","DE.Views.DocumentHolder.textTOC":"Inhaltsverzeichnis","DE.Views.DocumentHolder.textTOCSettings":"Einstellungen für das Inhaltverzeichnis","DE.Views.DocumentHolder.textTop":"Oben","DE.Views.DocumentHolder.textTrendline":"Trendlinie","DE.Views.DocumentHolder.textUndo":"Rückgängig","DE.Views.DocumentHolder.textUpdateAll":"Ganze Tabelle aktualisieren","DE.Views.DocumentHolder.textUpdatePages":"Nur Seitenzahlen aktualisieren","DE.Views.DocumentHolder.textUpdateTOC":"Das Inhaltsverzeichnis aktualisieren","DE.Views.DocumentHolder.textUpDownBars":"Aufwärts-/Abwärtsbalken","DE.Views.DocumentHolder.textVertAxis":"Vertikale Achse","DE.Views.DocumentHolder.textVertAxisSec":"Vertikale Sekundärachse","DE.Views.DocumentHolder.textVerticalMajor":"Vertikale Major","DE.Views.DocumentHolder.textVerticalMinor":"Vertikale Minor","DE.Views.DocumentHolder.textWrap":"Textumbruch","DE.Views.DocumentHolder.tipIsLocked":"Dieses Element wird gerade von einem anderen Benutzer bearbeitet.","DE.Views.DocumentHolder.toDictionaryText":"Zum Wörterbuch hinzufügen","DE.Views.DocumentHolder.txtAddBottom":"Unteren Rahmen hinzufügen","DE.Views.DocumentHolder.txtAddFractionBar":"Bruchstrich hinzufügen","DE.Views.DocumentHolder.txtAddHor":"Horizontale Linie einfügen","DE.Views.DocumentHolder.txtAddLB":"Linke untere Linie einfügen","DE.Views.DocumentHolder.txtAddLeft":"Linken Rahmen hinzufügen","DE.Views.DocumentHolder.txtAddLT":"Linke obere Linie einfügen","DE.Views.DocumentHolder.txtAddRight":"Rechten Rahmen hinzufügen","DE.Views.DocumentHolder.txtAddTop":"Oberen Rahmen hinzufügen","DE.Views.DocumentHolder.txtAddVer":"Vertikale Linie hinzufügen","DE.Views.DocumentHolder.txtAlignToChar":"An einem Zeichen ausrichten","DE.Views.DocumentHolder.txtBehind":"Hinter dem Text","DE.Views.DocumentHolder.txtBorderProps":"Rahmeneigenschaften","DE.Views.DocumentHolder.txtBottom":"Unten","DE.Views.DocumentHolder.txtColumnAlign":"Spaltenausrichtung","DE.Views.DocumentHolder.txtDecreaseArg":"Argumentgröße reduzieren","DE.Views.DocumentHolder.txtDeleteArg":"Argument löschen","DE.Views.DocumentHolder.txtDeleteBreak":"Manuellen Umbruch löschen","DE.Views.DocumentHolder.txtDeleteChars":"Einschlusszeichen löschen","DE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Einschlusszeichen und Trennzeichen löschen","DE.Views.DocumentHolder.txtDeleteEq":"Formel löschen","DE.Views.DocumentHolder.txtDeleteGroupChar":"Zeichen löschen","DE.Views.DocumentHolder.txtDeleteRadical":"Wurzel löschen","DE.Views.DocumentHolder.txtDestEmbed":"Zieldesign verwenden und Arbeitsmappe einbetten","DE.Views.DocumentHolder.txtDestLink":"Zielthema verwenden und Daten verknüpfen","DE.Views.DocumentHolder.txtDistribHor":"Horizontal verteilen","DE.Views.DocumentHolder.txtDistribVert":"Vertikal verteilen","DE.Views.DocumentHolder.txtEmpty":"(Leer)","DE.Views.DocumentHolder.txtFractionLinear":"Zu linearer Bruchrechnung ändern","DE.Views.DocumentHolder.txtFractionSkewed":"Zu verzerrter Bruchrechnung ändern","DE.Views.DocumentHolder.txtFractionStacked":"Zu verzerrter Bruchrechnung ändern","DE.Views.DocumentHolder.txtGroup":"Gruppieren","DE.Views.DocumentHolder.txtGroupCharOver":"Zeichen über dem Text ","DE.Views.DocumentHolder.txtGroupCharUnder":"Zeichen unter dem Text ","DE.Views.DocumentHolder.txtHideBottom":"Untere Rahmenlinie verbergen","DE.Views.DocumentHolder.txtHideBottomLimit":"Untere Grenze verbergen","DE.Views.DocumentHolder.txtHideCloseBracket":"Schließende Klammer verbergen","DE.Views.DocumentHolder.txtHideDegree":"Grad verbergen","DE.Views.DocumentHolder.txtHideHor":"Horizontale Linie verbergen","DE.Views.DocumentHolder.txtHideLB":"Linke untere Line verbergen","DE.Views.DocumentHolder.txtHideLeft":"Linker Rand verbergen","DE.Views.DocumentHolder.txtHideLT":"Linke obere Linie verbergen","DE.Views.DocumentHolder.txtHideOpenBracket":"Öffnende Klammer verbergen","DE.Views.DocumentHolder.txtHidePlaceholder":"Platzhalter verbergen","DE.Views.DocumentHolder.txtHideRight":"Rahmenlinie rechts verbergen","DE.Views.DocumentHolder.txtHideTop":"Rahmenlinie oben verbergen","DE.Views.DocumentHolder.txtHideTopLimit":"Obergrenze verbergen","DE.Views.DocumentHolder.txtHideVer":"Vertikale Linie verbergen","DE.Views.DocumentHolder.txtIncreaseArg":"Argumentgröße erhöhen","DE.Views.DocumentHolder.txtInFront":"Vorne","DE.Views.DocumentHolder.txtInline":"Inline","DE.Views.DocumentHolder.txtInsertArgAfter":"Argument nachher einfügen","DE.Views.DocumentHolder.txtInsertArgBefore":"Argument vorher einfügen","DE.Views.DocumentHolder.txtInsertBreak":"Manuellen Umbruch einfügen","DE.Views.DocumentHolder.txtInsertCaption":"Beschriftung einfügen","DE.Views.DocumentHolder.txtInsertEqAfter":"Formel nachher einfügen","DE.Views.DocumentHolder.txtInsertEqBefore":"Formel vorher einfügen","DE.Views.DocumentHolder.txtInsImage":"Bild aus Datei einfügen","DE.Views.DocumentHolder.txtInsImageUrl":"Bild von URL einfügen","DE.Views.DocumentHolder.txtKeepTextOnly":"Nur Text beibehalten","DE.Views.DocumentHolder.txtLimitChange":"Grenzwerten ändern ","DE.Views.DocumentHolder.txtLimitOver":"Grenzwert über den Text","DE.Views.DocumentHolder.txtLimitUnder":"Grenzwert unter den Text","DE.Views.DocumentHolder.txtMatchBrackets":"Eckige Klammern an Argumenthöhe anpassen","DE.Views.DocumentHolder.txtMatrixAlign":"Matrixausrichtung","DE.Views.DocumentHolder.txtOverbar":"Balken über dem Text","DE.Views.DocumentHolder.txtOverwriteCells":"Zellen überschreiben","DE.Views.DocumentHolder.txtPastePicture":"Bild","DE.Views.DocumentHolder.txtPasteSourceFormat":"Ursprüngliche Formatierung beibehalten","DE.Views.DocumentHolder.txtPercentage":"Prozentsatz","DE.Views.DocumentHolder.txtPressLink":"Drücken Sie {0} und klicken Sie auf den Link","DE.Views.DocumentHolder.txtPrintSelection":"Auswahl drucken","DE.Views.DocumentHolder.txtRemFractionBar":"Bruchstrich entfernen","DE.Views.DocumentHolder.txtRemLimit":"Grenzwert entfernen","DE.Views.DocumentHolder.txtRemoveAccentChar":"Akzentzeichen entfernen","DE.Views.DocumentHolder.txtRemoveBar":"Leiste entfernen","DE.Views.DocumentHolder.txtRemoveWarning":"Möchten Sie diese Signatur wirklich entfernen?
Dies kann nicht rückgängig gemacht werden.","DE.Views.DocumentHolder.txtRemScripts":"Skripts entfernen","DE.Views.DocumentHolder.txtRemSubscript":"Tiefstellung entfernen","DE.Views.DocumentHolder.txtRemSuperscript":"Hochstellung entfernen","DE.Views.DocumentHolder.txtScriptsAfter":"Scripts nach dem Text","DE.Views.DocumentHolder.txtScriptsBefore":"Scripts vor dem Text","DE.Views.DocumentHolder.txtShowBottomLimit":"Untere Grenze zeigen","DE.Views.DocumentHolder.txtShowCloseBracket":"Schließende eckige Klammer anzeigen","DE.Views.DocumentHolder.txtShowDegree":"Grad anzeigen","DE.Views.DocumentHolder.txtShowOpenBracket":"Öffnende eckige Klammer anzeigen","DE.Views.DocumentHolder.txtShowPlaceholder":"Platzhaltertext anzeigen","DE.Views.DocumentHolder.txtShowTopLimit":"Höchstgrenze anzeigen","DE.Views.DocumentHolder.txtSourceEmbed":"Quellformatierung beibehalten und Arbeitsmappe einbetten","DE.Views.DocumentHolder.txtSourceLink":"Quellformatierung beibehalten und Daten verknüpfen","DE.Views.DocumentHolder.txtSquare":"Eckig","DE.Views.DocumentHolder.txtStretchBrackets":"Eckige Klammern dehnen","DE.Views.DocumentHolder.txtThrough":"Durchgehend","DE.Views.DocumentHolder.txtTight":"Passend","DE.Views.DocumentHolder.txtTop":"Oben","DE.Views.DocumentHolder.txtTopAndBottom":"Oben und unten","DE.Views.DocumentHolder.txtUnderbar":"Balken unter dem Text ","DE.Views.DocumentHolder.txtUngroup":"Gruppierung aufheben","DE.Views.DocumentHolder.txtWarnUrl":"Das Klicken auf diesen Link kann Ihrem Gerät und Ihren Daten schaden. Um Ihren Computer zu schützen, klicken Sie nur auf Links aus vertrauenswürdigen Quellen. Diese Seite ist möglicherweise unsicher:

{0}

Möchten Sie fortfahren?","DE.Views.DocumentHolder.unicodeText":"Unicode","DE.Views.DocumentHolder.updateStyleText":"Format aktualisieren %1","DE.Views.DocumentHolder.vertAlignText":"Vertikale Ausrichtung","DE.Views.DropcapSettingsAdvanced.strBorders":"Rahmen & Füllung","DE.Views.DropcapSettingsAdvanced.strDropcap":"Initialbuchstaben ","DE.Views.DropcapSettingsAdvanced.strMargins":"Ränder","DE.Views.DropcapSettingsAdvanced.textAlign":"Ausrichtung","DE.Views.DropcapSettingsAdvanced.textAtLeast":"Mindestens","DE.Views.DropcapSettingsAdvanced.textAuto":"Automatisch","DE.Views.DropcapSettingsAdvanced.textBackColor":"Hintergrundfarbe","DE.Views.DropcapSettingsAdvanced.textBorderColor":"Rahmenfarbe","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"Rahmenstärke","DE.Views.DropcapSettingsAdvanced.textBottom":"Unten","DE.Views.DropcapSettingsAdvanced.textCenter":"Zenter","DE.Views.DropcapSettingsAdvanced.textColumn":"Spalte","DE.Views.DropcapSettingsAdvanced.textDistance":"Abstand von Text","DE.Views.DropcapSettingsAdvanced.textExact":"Genau","DE.Views.DropcapSettingsAdvanced.textFlow":"Unverankerter Rahmen","DE.Views.DropcapSettingsAdvanced.textFont":"Schriftart","DE.Views.DropcapSettingsAdvanced.textFrame":"Rahmen","DE.Views.DropcapSettingsAdvanced.textHeight":"Höhe","DE.Views.DropcapSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.DropcapSettingsAdvanced.textInline":"Inlineframe","DE.Views.DropcapSettingsAdvanced.textInMargin":"Im Rand","DE.Views.DropcapSettingsAdvanced.textInText":"Im Text","DE.Views.DropcapSettingsAdvanced.textLeft":"Links","DE.Views.DropcapSettingsAdvanced.textMargin":"Rand","DE.Views.DropcapSettingsAdvanced.textMove":"Mit Text verschieben","DE.Views.DropcapSettingsAdvanced.textNone":"Kein","DE.Views.DropcapSettingsAdvanced.textPage":"Seite","DE.Views.DropcapSettingsAdvanced.textParagraph":"Absatz","DE.Views.DropcapSettingsAdvanced.textParameters":"Parameter","DE.Views.DropcapSettingsAdvanced.textPosition":"Position","DE.Views.DropcapSettingsAdvanced.textRelative":"Im Bezug auf ","DE.Views.DropcapSettingsAdvanced.textRight":"Rechts","DE.Views.DropcapSettingsAdvanced.textRowHeight":"Höhe in Zeilen","DE.Views.DropcapSettingsAdvanced.textTitle":"Initialbuchstaben - Erweiterte Einstellungen","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"Rahmen - Erweiterte Einstellungen","DE.Views.DropcapSettingsAdvanced.textTop":"Oben","DE.Views.DropcapSettingsAdvanced.textVertical":"Vertikal","DE.Views.DropcapSettingsAdvanced.textWidth":"Breite","DE.Views.DropcapSettingsAdvanced.tipFontName":"Schriftart","DE.Views.EditListItemDialog.textDisplayName":"Anzeigename","DE.Views.EditListItemDialog.textNameError":"Der Anzeigename darf nicht leer sein.","DE.Views.EditListItemDialog.textValue":"Wert","DE.Views.EditListItemDialog.textValueError":"Ein Element mit demselben Wert ist bereits vorhanden.","DE.Views.FileMenu.ariaFileMenu":"Dateimenü","DE.Views.FileMenu.btnBackCaption":"Dateispeicherort öffnen","DE.Views.FileMenu.btnCloseEditor":"Datei schließen","DE.Views.FileMenu.btnCloseMenuCaption":"Zurück","DE.Views.FileMenu.btnCreateNewCaption":"Neues Dokument erstellen","DE.Views.FileMenu.btnDownloadCaption":"Herunterladen als","DE.Views.FileMenu.btnExitCaption":"Schließen","DE.Views.FileMenu.btnFileOpenCaption":"Öffnen","DE.Views.FileMenu.btnHelpCaption":"Hilfe","DE.Views.FileMenu.btnHistoryCaption":"Versionshistorie","DE.Views.FileMenu.btnInfoCaption":"Info","DE.Views.FileMenu.btnPrintCaption":"Drucken","DE.Views.FileMenu.btnProtectCaption":"Schützen","DE.Views.FileMenu.btnRecentFilesCaption":"Zuletzt benutztes Dokument öffnen","DE.Views.FileMenu.btnRenameCaption":"Umbenennen","DE.Views.FileMenu.btnReturnCaption":"Zurück zu dem Dokument","DE.Views.FileMenu.btnRightsCaption":"Zugriffsrechte","DE.Views.FileMenu.btnSaveAsCaption":"Speichern als","DE.Views.FileMenu.btnSaveCaption":"Speichern","DE.Views.FileMenu.btnSaveCopyAsCaption":"Kopie speichern als","DE.Views.FileMenu.btnSettingsCaption":"Erweiterte Einstellungen","DE.Views.FileMenu.btnSuggestCaption":"Eine Funktion vorschlagen","DE.Views.FileMenu.btnSwitchToMobileCaption":"In den Mobilmodus wechseln","DE.Views.FileMenu.btnToEditCaption":"Dokument bearbeiten","DE.Views.FileMenu.textDownload":"Herunterladen","DE.Views.FileMenuPanels.CreateNew.txtBlank":"Leeres Dokument","DE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Neues Dokument erstellen","DE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Anwenden","DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Autor hinzufügen","DE.Views.FileMenuPanels.DocumentInfo.txtAddProperty":"Eigenschaft hinzufügen","DE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Text Hinzufügen","DE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Anwendung","DE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Verfasser","DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Zugriffsrechte ändern","DE.Views.FileMenuPanels.DocumentInfo.txtComment":"Kommentar","DE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Allgemein","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Erstellt","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Informationen zum Dokument","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"Dokumenteigenschaft","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Schnelle Web-Anzeige","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Ladevorgang...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Zuletzt geändert von","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Zuletzt geändert","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"Nein","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Besitzer","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"Seiten","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Seitengröße","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Absätze","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF-Ersteller","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF mit Tags","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF-Version","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Speicherort","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"Eigenschaften","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"Eine Eigenschaft mit diesem Titel existiert bereits","DE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personen mit Berechtigungen","DE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Zeichen mit Leerzeichen","DE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Statistiken","DE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Thema","DE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Zeichen","DE.Views.FileMenuPanels.DocumentInfo.txtTags":"Tags","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Titel","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Hochgeladen","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"Wörter","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"Ja","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Zugriffsrechte","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Zugriffsrechte ändern","DE.Views.FileMenuPanels.DocumentRights.txtRights":"Personen mit Berechtigungen","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"Warnung","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Mit Kennwort","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"Datei schützen","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"Mit Signatur","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Dem Dokument wurden gültige Signaturen hinzugefügt.
Das Dokument ist vor Bearbeitung geschützt.","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Stellen Sie die Integrität des Dokuments durch Hinzufügen einer
unsichtbaren digitalen Signatur sicher.","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Dokument bearbeiten","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"Die Bearbeitung entfernt Signaturen aus diesem Dokument.
Möchten Sie trotzdem fortsetzen?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Dieses Dokument ist schreibgeschützt.","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Verschlüsseln Sie dieses Dokument mit einem Passwort","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Dieses Dokument muss signiert werden.","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Gültige Signaturen wurden dem Dokument hinzugefügt. Das Dokument ist vor der Bearbeitung geschützt.","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Einige der digitalen Signaturen im Dokument sind ungültig oder konnten nicht verifiziert werden. Das Dokument ist vor der Bearbeitung geschützt.","DE.Views.FileMenuPanels.ProtectDoc.txtView":"Signaturen anzeigen","DE.Views.FileMenuPanels.Settings.okButtonText":"Anwenden","DE.Views.FileMenuPanels.Settings.strChinese":"Chinesisch ","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modus \"Gemeinsame Bearbeitung\"","DE.Views.FileMenuPanels.Settings.strDocContent":"Dokumentinhalt","DE.Views.FileMenuPanels.Settings.strFast":"Schnell","DE.Views.FileMenuPanels.Settings.strFontRender":"Schriftglättung","DE.Views.FileMenuPanels.Settings.strFontSizeType":"In der Schriftgrößenliste zuerst verwenden","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"Wörter in GROSSBUCHSTABEN ignorieren","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"Wörter mit Zahlen ignorieren","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Tastenkombinationen","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"Einstellungen von Makros","DE.Views.FileMenuPanels.Settings.strNumeral":"Ziffer","DE.Views.FileMenuPanels.Settings.strPasteButton":"Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen","DE.Views.FileMenuPanels.Settings.strRTLSupport":"RTL-Schnittstelle","DE.Views.FileMenuPanels.Settings.strShowChanges":"Änderungen bei der Echtzeit-Zusammenarbeit zeigen","DE.Views.FileMenuPanels.Settings.strShowComments":"Kommentare im Text anzeigen","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Änderungen von anderen Benutzern anzeigen","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Gelöste Kommentare anzeigen","DE.Views.FileMenuPanels.Settings.strStrict":"Formal","DE.Views.FileMenuPanels.Settings.strTabStyle":"Stil der Registerkarte","DE.Views.FileMenuPanels.Settings.strTheme":"Thema der Benutzeroberfläche","DE.Views.FileMenuPanels.Settings.strUnit":"Maßeinheit","DE.Views.FileMenuPanels.Settings.strWestern":"Westlich","DE.Views.FileMenuPanels.Settings.strZoom":"Standard-Zoom-Wert","DE.Views.FileMenuPanels.Settings.text10Minutes":"Alle 10 Minuten","DE.Views.FileMenuPanels.Settings.text30Minutes":"Alle 30 Minuten","DE.Views.FileMenuPanels.Settings.text5Minutes":"Alle 5 Minuten","DE.Views.FileMenuPanels.Settings.text60Minutes":"Jede Stunde","DE.Views.FileMenuPanels.Settings.textAlignGuides":"Ausrichtungslinien","DE.Views.FileMenuPanels.Settings.textAutoRecover":"AutoWiederherstellen-Informationen speichern","DE.Views.FileMenuPanels.Settings.textAutoSave":"Automatisches speichern","DE.Views.FileMenuPanels.Settings.textDisabled":"Deaktiviert","DE.Views.FileMenuPanels.Settings.textFill":"Füllung","DE.Views.FileMenuPanels.Settings.textForceSave":"Auf dem Server speichern","DE.Views.FileMenuPanels.Settings.textLine":"Linie","DE.Views.FileMenuPanels.Settings.textMinute":"Jede Minute","DE.Views.FileMenuPanels.Settings.textOldVersions":"Die Dateien mit älteren MS Word-Versionen kompatibel machen, wenn sie als DOCX gespeichert werden","DE.Views.FileMenuPanels.Settings.textSmartSelection":"Intelligente Absatzauswahl verwenden","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Erweiterte Einstellungen","DE.Views.FileMenuPanels.Settings.txtAll":"Alle anzeigen","DE.Views.FileMenuPanels.Settings.txtAppearance":"Darstellung","DE.Views.FileMenuPanels.Settings.txtArabic":"Arabisch","DE.Views.FileMenuPanels.Settings.txtAutoCorrect":"Automatische Korrekturoptionen","DE.Views.FileMenuPanels.Settings.txtCacheMode":"Standard-Cache-Modus","DE.Views.FileMenuPanels.Settings.txtChangesBalloons":"In Sprechblasen beim Klicken anzeigen","DE.Views.FileMenuPanels.Settings.txtChangesTip":"In Tipps anzeigen","DE.Views.FileMenuPanels.Settings.txtCm":"Zentimeter","DE.Views.FileMenuPanels.Settings.txtCollaboration":"Zusammenarbeit","DE.Views.FileMenuPanels.Settings.txtContext":"Kontext","DE.Views.FileMenuPanels.Settings.txtCustomize":"Anpassen","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Schnellzugriff anpassen","DE.Views.FileMenuPanels.Settings.txtDarkMode":"Dunkelmodus aktivieren","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"Bearbeitung und Speicherung","DE.Views.FileMenuPanels.Settings.txtFastTip":"Zusammenarbeit in Echtzeit. Alle Änderungen werden automatisch gespeichert","DE.Views.FileMenuPanels.Settings.txtFitPage":"Seite anpassen","DE.Views.FileMenuPanels.Settings.txtFitWidth":"Breite anpassen","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Hieroglyphen","DE.Views.FileMenuPanels.Settings.txtHindi":"Hindi","DE.Views.FileMenuPanels.Settings.txtInch":"Zoll","DE.Views.FileMenuPanels.Settings.txtLast":"Letzte anzeigen","DE.Views.FileMenuPanels.Settings.txtLastUsed":"Zuletzt verwendet","DE.Views.FileMenuPanels.Settings.txtMac":"wie OS X","DE.Views.FileMenuPanels.Settings.txtNative":"Native","DE.Views.FileMenuPanels.Settings.txtNone":"Keine","DE.Views.FileMenuPanels.Settings.txtProofing":"Rechtschreibprüfung","DE.Views.FileMenuPanels.Settings.txtPt":"Punkt","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"Die Schaltfläche Schnelldruck in der Kopfzeile des Editors anzeigen","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt","DE.Views.FileMenuPanels.Settings.txtRunMacros":"Alle aktivieren","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"Alle Makros ohne Benachrichtigung aktivieren","DE.Views.FileMenuPanels.Settings.txtScreenReader":"Unterstützung für Bildschirmleser einschalten","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"Änderungen anzeigen","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"Rechtschreibprüfung","DE.Views.FileMenuPanels.Settings.txtStopMacros":"Alle deaktivieren","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"Alle Makros ohne Benachrichtigung deaktivieren","DE.Views.FileMenuPanels.Settings.txtStrictTip":"Verwenden Sie die Schaltfläche \"Speichern\", um die vorgenommenen Änderungen zu synchronisieren.","DE.Views.FileMenuPanels.Settings.txtTabBack":"Farbe der Symbolleiste als Hintergrund für Registerkarten verwenden","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"Verwenden Sie die Alt-Taste, um über die Tastatur in der Benutzeroberfläche zu navigieren.","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Verwenden Sie die Option-Taste, um über die Tastatur in der Benutzeroberfläche zu navigieren.","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"Benachrichtigung anzeigen","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"Alle Makros mit einer Benachrichtigung deaktivieren","DE.Views.FileMenuPanels.Settings.txtWin":"wie Windows","DE.Views.FileMenuPanels.Settings.txtWorkspace":"Arbeitsbereich","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Herunterladen als","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Kopie speichern als","DE.Views.FormSettings.textAddRole":"Empfänger hinzufügen","DE.Views.FormSettings.textAlways":"Immer","DE.Views.FormSettings.textAnyone":"Alle","DE.Views.FormSettings.textAspect":"Seitenverhältnis sperren","DE.Views.FormSettings.textAtLeast":"Mindestens","DE.Views.FormSettings.textAuto":"auto","DE.Views.FormSettings.textAutofit":"Automatisch anpassen","DE.Views.FormSettings.textBackgroundColor":"Hintergrundfarbe","DE.Views.FormSettings.textCheckbox":"Kontrollkästchen","DE.Views.FormSettings.textCheckDefault":"Das Kontrollkästchen ist standardmäßig aktiviert","DE.Views.FormSettings.textColor":"Rahmenfarbe","DE.Views.FormSettings.textComb":"Zeichenanzahl in Textfeld","DE.Views.FormSettings.textCombobox":"Combobox","DE.Views.FormSettings.textComplex":"Komplexes Feld","DE.Views.FormSettings.textConnected":"Verbundene Felder","DE.Views.FormSettings.textCreditCard":"Nummer der Kreditkarte (z. B. 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"Feld Datum & Uhrzeit","DE.Views.FormSettings.textDateFormat":"Datum wie folgt anzeigen","DE.Views.FormSettings.textDefValue":"Standardmäßig","DE.Views.FormSettings.textDelete":"Löschen","DE.Views.FormSettings.textDigits":"Zahlen","DE.Views.FormSettings.textDisconnect":"Verbindung trennen","DE.Views.FormSettings.textDropDown":"Dropdown","DE.Views.FormSettings.textExact":"Genau","DE.Views.FormSettings.textField":"Textfeld","DE.Views.FormSettings.textFillRoles":"Wer muss das ausfüllen?","DE.Views.FormSettings.textFixed":"Feste Feldgröße","DE.Views.FormSettings.textFormat":"Format","DE.Views.FormSettings.textFormatSymbols":"Erlaubte Zeichen","DE.Views.FormSettings.textFromFile":"Aus einer Datei","DE.Views.FormSettings.textFromStorage":"Aus dem Speicher","DE.Views.FormSettings.textFromUrl":"Aus einer URL","DE.Views.FormSettings.textGroupKey":"Gruppenschlüssel","DE.Views.FormSettings.textImage":"Bild","DE.Views.FormSettings.textKey":"Schlüssel","DE.Views.FormSettings.textLabel":"Bezeichnung","DE.Views.FormSettings.textLang":"Sprache","DE.Views.FormSettings.textLetters":"Buchstaben","DE.Views.FormSettings.textLock":"Sperren","DE.Views.FormSettings.textMask":"Beliebige Maske","DE.Views.FormSettings.textMaxChars":"Zeichengrenze","DE.Views.FormSettings.textMulti":"Mehrzeiliges Feld","DE.Views.FormSettings.textNever":"Nie","DE.Views.FormSettings.textNoBorder":"Kein Rahmen","DE.Views.FormSettings.textNone":"Kein","DE.Views.FormSettings.textPhone1":"Telefonnummer (z. B. (123) 456-7890)","DE.Views.FormSettings.textPhone2":"Telefonnummer (z.B. +447911123456)","DE.Views.FormSettings.textPlaceholder":"Platzhalter","DE.Views.FormSettings.textRadiobox":"Radiobutton","DE.Views.FormSettings.textRadioChoice":"Auswahl der Optionsschaltflächen","DE.Views.FormSettings.textRadioDefault":"Schaltfläche ist standardmäßig aktiviert","DE.Views.FormSettings.textReg":"Regulärer Ausdruck","DE.Views.FormSettings.textRequired":"Erforderlich","DE.Views.FormSettings.textScale":"Wann skalieren","DE.Views.FormSettings.textSelectImage":"Bild auswählen","DE.Views.FormSettings.textSignature":"Signatur","DE.Views.FormSettings.textTag":"Tag","DE.Views.FormSettings.textTip":"Tipp","DE.Views.FormSettings.textTipAdd":"Neuen Wert hinzufügen","DE.Views.FormSettings.textTipDelete":"Den Wert löschen","DE.Views.FormSettings.textTipDown":"Nach unten bewegen","DE.Views.FormSettings.textTipUp":"Nach oben bewegen","DE.Views.FormSettings.textTooBig":"Das Bild ist zu groß","DE.Views.FormSettings.textTooSmall":"Das Bild ist zu klein","DE.Views.FormSettings.textUKPassport":"Nummer des britischen Personalausweises (z. B. 925665416)","DE.Views.FormSettings.textUnlock":"Entsperren","DE.Views.FormSettings.textUSSSN":"US SSN (z. B. 123-45-6789)","DE.Views.FormSettings.textValue":"Optionen von Werten","DE.Views.FormSettings.textWidth":"Zeilenbreite","DE.Views.FormSettings.textZipCodeUS":"US-Postleitzahl (z. B. 92663 oder 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"Kontrollkästchen","DE.Views.FormsTab.capBtnComboBox":"Combobox","DE.Views.FormsTab.capBtnComplex":"Komplexes Feld","DE.Views.FormsTab.capBtnDownloadForm":"Als pdf herunterladen","DE.Views.FormsTab.capBtnDropDown":"Dropdown","DE.Views.FormsTab.capBtnEmail":"E-Mail-Adresse","DE.Views.FormsTab.capBtnFinal":"Als endgültig markieren","DE.Views.FormsTab.capBtnImage":"Bild","DE.Views.FormsTab.capBtnManager":"Empfängerrollen verwalten","DE.Views.FormsTab.capBtnNext":"Nächstes Feld","DE.Views.FormsTab.capBtnPhone":"Telefonnummer","DE.Views.FormsTab.capBtnPrev":"Vorheriges Feld","DE.Views.FormsTab.capBtnRadioBox":"Radiobutton","DE.Views.FormsTab.capBtnSaveForm":"Als pdf speichern","DE.Views.FormsTab.capBtnSaveFormDesktop":"Speichern als...","DE.Views.FormsTab.capBtnSignature":"Signatur","DE.Views.FormsTab.capBtnSubmit":"Ausfüllen & Absenden","DE.Views.FormsTab.capBtnText":"Textfeld","DE.Views.FormsTab.capBtnView":"Vorschau","DE.Views.FormsTab.capCreditCard":"Kreditkarte","DE.Views.FormsTab.capDateTime":"Datum & Uhrzeit","DE.Views.FormsTab.capZipCode":"Postleitzahl","DE.Views.FormsTab.helpTextFillStatus":"Dieses Formular ist bereit zum rollenbasierten Ausfüllen. Klicken Sie auf die Statusschaltfläche, um den Füllstatus zu überprüfen.","DE.Views.FormsTab.textAddRole":"Empfänger hinzufügen","DE.Views.FormsTab.textAnyone":"Alle","DE.Views.FormsTab.textClear":"Felder löschen","DE.Views.FormsTab.textClearFields":"Alle Felder löschen","DE.Views.FormsTab.textCreateForm":"Felder hinzufügen und ausfüllbare PDF-Datei erstellen","DE.Views.FormsTab.textFilled":"Ausgefüllt","DE.Views.FormsTab.textFillFor":"Felder einfügen für","DE.Views.FormsTab.textGotIt":"OK","DE.Views.FormsTab.textHighlight":"Einstellungen für Hervorhebungen","DE.Views.FormsTab.textNoHighlight":"Ohne Hervorhebung","DE.Views.FormsTab.textRequired":"Füllen Sie alle erforderlichen Felder aus, um das Formular abzusenden.","DE.Views.FormsTab.textSubmited":"Das Formular wurde erfolgreich versandt","DE.Views.FormsTab.textSubmitOk":"Ihr PDF-Formular wurde im Abschnitt \"Fertiggestellt\" gespeichert.","DE.Views.FormsTab.tipCheckBox":"Checkbox einfügen","DE.Views.FormsTab.tipComboBox":"Combobox einfügen","DE.Views.FormsTab.tipComplexField":"Komplexes Feld einfügen","DE.Views.FormsTab.tipCreateField":"Um ein Feld zu erstellen, wählen Sie den gewünschten Feldtyp in der Symbolleiste aus und klicken Sie darauf. Das Feld wird im Dokument angezeigt.","DE.Views.FormsTab.tipCreditCard":"Kreditkartennummer eingeben","DE.Views.FormsTab.tipDateTime":"Datum und Uhrzeit einfügen","DE.Views.FormsTab.tipDownloadForm":"Die Datei als ausfüllbares PDF-Dokument herunterladen","DE.Views.FormsTab.tipDropDown":"Dropdown-Liste einfügen","DE.Views.FormsTab.tipEmailField":"E-Mail Adresse einfügen","DE.Views.FormsTab.tipFieldSettings":"Sie können ausgewählte Felder in der rechten Seitenleiste konfigurieren. Klicken Sie auf dieses Symbol, um die Feldeinstellungen zu öffnen.","DE.Views.FormsTab.tipFieldsLink":"Mehr über die Feldparameter erfahren","DE.Views.FormsTab.tipFinalForm":"Als endgültig markieren","DE.Views.FormsTab.tipFirstPage":"Zur ersten Seite gehen","DE.Views.FormsTab.tipFixedText":"Fixiertes Textfeld einfügen","DE.Views.FormsTab.tipFormGroupKey":"Gruppieren Sie Optionsfelder, um den Ausfüllvorgang zu beschleunigen. Auswahlmöglichkeiten mit denselben Namen werden synchronisiert. Benutzer können nur ein Optionsfeld aus der Gruppe ankreuzen.","DE.Views.FormsTab.tipFormKey":"Sie können einem Feld oder einer Gruppe von Feldern einen Schlüssel zuweisen. Wenn ein Benutzer die Daten eingibt, werden sie in alle Felder mit demselben Schlüssel kopiert.","DE.Views.FormsTab.tipHelpRoles":"Verwenden Sie die Funktion \"Empfänger verwalten\", um Felder nach Zweck zu gruppieren und die verantwortlichen Teammitglieder zuzuweisen.","DE.Views.FormsTab.tipImageField":"Bild einfügen","DE.Views.FormsTab.tipInlineText":"Inline-Textfeld einfügen","DE.Views.FormsTab.tipLastPage":"Zur letzten Seite gehen","DE.Views.FormsTab.tipManager":"Empfängerrollen verwalten","DE.Views.FormsTab.tipNextForm":"Zum nächsten Feld wechseln","DE.Views.FormsTab.tipNextPage":"Zur nächsten Seite gehen","DE.Views.FormsTab.tipPhoneField":"Telefonnummer einfügen","DE.Views.FormsTab.tipPrevForm":"Zum vorherigen Feld wechseln","DE.Views.FormsTab.tipPrevPage":"Zur vorherigen Seite gehen","DE.Views.FormsTab.tipRadioBox":"Radiobutton einfügen","DE.Views.FormsTab.tipRolesLink":"Mehr über Empfänger erfahren","DE.Views.FormsTab.tipSaveFile":"Klicken Sie auf \"Als PDF speichern\", um das Formular in einem ausfüllbaren Format zu speichern.","DE.Views.FormsTab.tipSaveForm":"Als eine ausfüllbare PDF-Datei speichern","DE.Views.FormsTab.tipSignField":"Signatur einfügen","DE.Views.FormsTab.tipSubmit":"Formular senden","DE.Views.FormsTab.tipTextField":"Textfeld einfügen","DE.Views.FormsTab.tipViewForm":"Vorschau","DE.Views.FormsTab.tipZipCode":"Postleitzahl einfügen","DE.Views.FormsTab.txtFixedDesc":"Fixiertes Textfeld einfügen","DE.Views.FormsTab.txtFixedText":"Fixiert","DE.Views.FormsTab.txtInlineDesc":"Inline-Textfeld einfügen","DE.Views.FormsTab.txtInlineText":"Inline","DE.Views.FormsTab.txtSignedForm":"Dieses Dokument wurde signiert und kann nicht bearbeitet werden.","DE.Views.FormsTab.txtUntitled":"Unbenannt","DE.Views.HeaderFooterSettings.textBottomCenter":"Unten zentriert","DE.Views.HeaderFooterSettings.textBottomLeft":"Unten links","DE.Views.HeaderFooterSettings.textBottomPage":"Seitenende","DE.Views.HeaderFooterSettings.textBottomRight":"Unten rechts","DE.Views.HeaderFooterSettings.textDiffFirst":"Erste Seite anders","DE.Views.HeaderFooterSettings.textDiffOdd":"Untersch. gerade/ungerade Seiten","DE.Views.HeaderFooterSettings.textFrom":"Starten mit","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"Fußzeile von unten","DE.Views.HeaderFooterSettings.textHeaderFromTop":"Kopfzeile oberhalb","DE.Views.HeaderFooterSettings.textInsertCurrent":"In aktuelle Position einfügen","DE.Views.HeaderFooterSettings.textNumFormat":"Zahlenformat","DE.Views.HeaderFooterSettings.textOptions":"Optionen","DE.Views.HeaderFooterSettings.textPageNum":"Seitenzahl einfügen","DE.Views.HeaderFooterSettings.textPageNumbering":"Seitennummerierung","DE.Views.HeaderFooterSettings.textPosition":"Position","DE.Views.HeaderFooterSettings.textPrev":"Fortsetzen vom vorherigen Abschnitt","DE.Views.HeaderFooterSettings.textSameAs":"Mit vorheriger verknüpfen","DE.Views.HeaderFooterSettings.textTopCenter":"Oben zentriert","DE.Views.HeaderFooterSettings.textTopLeft":"Oben links","DE.Views.HeaderFooterSettings.textTopPage":"Seitenanfang","DE.Views.HeaderFooterSettings.textTopRight":"Oben rechts","DE.Views.HeaderFooterSettings.txtMoreTypes":"Weitere Typen","DE.Views.HeaderFooterTab.capBtnDateTime":"Datum & Uhrzeit","DE.Views.HeaderFooterTab.capBtnInsField":"Feld","DE.Views.HeaderFooterTab.capBtnInsImage":"Bild","DE.Views.HeaderFooterTab.capCurrentPos":"An aktueller Position","DE.Views.HeaderFooterTab.capFooterBottom":"Fußzeile von unten","DE.Views.HeaderFooterTab.capFormatNums":"Seitennummerierung","DE.Views.HeaderFooterTab.capHeaderTop":"Kopfzeile oberhalb","DE.Views.HeaderFooterTab.capNumOfPages":"Seitenzahl","DE.Views.HeaderFooterTab.mniImageFromFile":"Bild aus Datei","DE.Views.HeaderFooterTab.mniImageFromStorage":"Bild aus dem Speicher","DE.Views.HeaderFooterTab.mniImageFromUrl":"Bild aus URL","DE.Views.HeaderFooterTab.tipCloseTab":"Tab schließen","DE.Views.HeaderFooterTab.tipDateTime":"Aktuelles Datum und Uhrzeit eingeben","DE.Views.HeaderFooterTab.tipHeaderFooter":"Kopf- oder Fußzeile bearbeiten","DE.Views.HeaderFooterTab.tipInsertImage":"Bild einfügen","DE.Views.HeaderFooterTab.tipInsField":"Feld einfügen","DE.Views.HeaderFooterTab.tipNumOfPages":"Seitenzahl","DE.Views.HeaderFooterTab.tipPageNumbering":"Seitennummerierung","DE.Views.HeaderFooterTab.txtCloseTab":"Schließen","DE.Views.HeaderFooterTab.txtDiffFirst":"Erste Seite anders","DE.Views.HeaderFooterTab.txtDiffOddEven":"Gerade und ungerade Seiten anders","DE.Views.HeaderFooterTab.txtEditFooter":"Fußzeile bearbeiten","DE.Views.HeaderFooterTab.txtEditHeader":"Kopfzeile bearbeiten","DE.Views.HeaderFooterTab.txtHeaderFooter":"Kopf- und Fußzeile","DE.Views.HeaderFooterTab.txtPageNumbering":"Seitenzahl","DE.Views.HeaderFooterTab.txtRemoveFooter":"Fußzeile entfernen","DE.Views.HeaderFooterTab.txtRemoveHeader":"Kopfzeile entfernen","DE.Views.HeaderFooterTab.txtSameAs":"Link zum vorherigen","DE.Views.HyperlinkSettingsDialog.textDefault":"Gewählter Textabschnitt","DE.Views.HyperlinkSettingsDialog.textDisplay":"Anzeigen","DE.Views.HyperlinkSettingsDialog.textExternal":"Externer Link","DE.Views.HyperlinkSettingsDialog.textInternal":"Stelle im Dokument","DE.Views.HyperlinkSettingsDialog.textSelectFile":"Datei auswählen","DE.Views.HyperlinkSettingsDialog.textTitle":"Linkeinstellungen","DE.Views.HyperlinkSettingsDialog.textTooltip":"QuickInfo-Text","DE.Views.HyperlinkSettingsDialog.textUrl":"Verknüpfen mit","DE.Views.HyperlinkSettingsDialog.txtBeginning":"Anfang des Dokuments","DE.Views.HyperlinkSettingsDialog.txtBookmarks":"Lesezeichen","DE.Views.HyperlinkSettingsDialog.txtEmpty":"Dieses Feld ist erforderlich","DE.Views.HyperlinkSettingsDialog.txtHeadings":"Überschriften","DE.Views.HyperlinkSettingsDialog.txtNotUrl":"Dieses Feld muss eine URL im Format \"http://www.example.com\" sein","DE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Dieses Feld soll maximal 2083 Zeichen beinhalten","DE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Geben Sie die Webadresse ein oder wählen Sie eine Datei aus","DE.Views.HyphenationDialog.textAuto":"Automatisches Trennen","DE.Views.HyphenationDialog.textCaps":"Worte in Grossbuchstaben trennen","DE.Views.HyphenationDialog.textLimit":"Beschränken Sie aufeinanderfolgende Bindestriche auf","DE.Views.HyphenationDialog.textNoLimit":"Keine Begrenzung","DE.Views.HyphenationDialog.textTitle":"Trennen","DE.Views.HyphenationDialog.textZone":"Trenn Zone","DE.Views.ImageSettings.strTransparency":"Undurchsichtigkeit","DE.Views.ImageSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.ImageSettings.textCrop":"Zuschneiden","DE.Views.ImageSettings.textCropFill":"Ausfüllen","DE.Views.ImageSettings.textCropFit":"Anpassen","DE.Views.ImageSettings.textCropToShape":"Auf Form zuschneiden","DE.Views.ImageSettings.textEdit":"Bearbeiten","DE.Views.ImageSettings.textEditObject":"Objekt bearbeiten","DE.Views.ImageSettings.textFitMargins":"Rändern anpassen","DE.Views.ImageSettings.textFlip":"Kippen","DE.Views.ImageSettings.textFromFile":"Aus Datei","DE.Views.ImageSettings.textFromStorage":"Aus dem Speicher","DE.Views.ImageSettings.textFromUrl":"Aus URL","DE.Views.ImageSettings.textHeight":"Höhe","DE.Views.ImageSettings.textHint270":"Um 90 ° gegen den Uhrzeigersinn drehen","DE.Views.ImageSettings.textHint90":"90° im UZS drehen","DE.Views.ImageSettings.textHintFlipH":"Horizontal kippen","DE.Views.ImageSettings.textHintFlipV":"Vertikal kippen","DE.Views.ImageSettings.textInsert":"Bild ersetzen","DE.Views.ImageSettings.textOriginalSize":"Tatsächliche Größe","DE.Views.ImageSettings.textRecentlyUsed":"Zuletzt verwendet","DE.Views.ImageSettings.textResetCrop":"Zuschneiden zurücksetzen","DE.Views.ImageSettings.textRotate90":"90 Grad drehen","DE.Views.ImageSettings.textRotation":"Rotation","DE.Views.ImageSettings.textSize":"Größe","DE.Views.ImageSettings.textWidth":"Breite","DE.Views.ImageSettings.textWrap":"Textumbruch","DE.Views.ImageSettings.txtBehind":"Hinter dem Text","DE.Views.ImageSettings.txtInFront":"Vorne","DE.Views.ImageSettings.txtInline":"Inline","DE.Views.ImageSettings.txtSquare":"Eckig","DE.Views.ImageSettings.txtThrough":"Durchgehend","DE.Views.ImageSettings.txtTight":"Passend","DE.Views.ImageSettings.txtTopAndBottom":"Oben und unten","DE.Views.ImageSettingsAdvanced.strMargins":"Textauffüllung","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"Absolut","DE.Views.ImageSettingsAdvanced.textAlignment":"Ausrichtung","DE.Views.ImageSettingsAdvanced.textAlt":"Alternativer Text","DE.Views.ImageSettingsAdvanced.textAltDescription":"Beschreibung","DE.Views.ImageSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","DE.Views.ImageSettingsAdvanced.textAltTitle":"Titel","DE.Views.ImageSettingsAdvanced.textAngle":"Winkel","DE.Views.ImageSettingsAdvanced.textArrows":"Pfeile","DE.Views.ImageSettingsAdvanced.textAspectRatio":"Seitenverhältnis sperren","DE.Views.ImageSettingsAdvanced.textAuto":"Auto","DE.Views.ImageSettingsAdvanced.textAutofit":"Automatisch anpassen","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"Achsenkreuze","DE.Views.ImageSettingsAdvanced.textAxisPos":"Achsenposition","DE.Views.ImageSettingsAdvanced.textAxisTitle":"Titel","DE.Views.ImageSettingsAdvanced.textBase":"Basis","DE.Views.ImageSettingsAdvanced.textBeginSize":"Startgröße","DE.Views.ImageSettingsAdvanced.textBeginStyle":"Startlinienart","DE.Views.ImageSettingsAdvanced.textBelow":"unten","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"Zwischen den Teilstrichen","DE.Views.ImageSettingsAdvanced.textBevel":"Schräge Kante","DE.Views.ImageSettingsAdvanced.textBillions":"Milliarden","DE.Views.ImageSettingsAdvanced.textBottom":"Unten","DE.Views.ImageSettingsAdvanced.textBottomMargin":"Unterer Rand","DE.Views.ImageSettingsAdvanced.textBtnWrap":"Textumbruch","DE.Views.ImageSettingsAdvanced.textCapType":"Zierbuchstabe","DE.Views.ImageSettingsAdvanced.textCategoryName":"Kategoriename","DE.Views.ImageSettingsAdvanced.textCenter":"Zentriert","DE.Views.ImageSettingsAdvanced.textCharacter":"Zeichen","DE.Views.ImageSettingsAdvanced.textChartTitle":"Diagrammtitel","DE.Views.ImageSettingsAdvanced.textColumn":"Spalte","DE.Views.ImageSettingsAdvanced.textCross":"Kreuz","DE.Views.ImageSettingsAdvanced.textCustom":"Benutzerdefiniert","DE.Views.ImageSettingsAdvanced.textDataLabels":"Datenbeschriftungen","DE.Views.ImageSettingsAdvanced.textDistance":"Abstand vom Text","DE.Views.ImageSettingsAdvanced.textEndSize":"Endgröße","DE.Views.ImageSettingsAdvanced.textEndStyle":"Endlinienart","DE.Views.ImageSettingsAdvanced.textFit":"Breite anpassen","DE.Views.ImageSettingsAdvanced.textFixed":"Fixiert","DE.Views.ImageSettingsAdvanced.textFlat":"Flach","DE.Views.ImageSettingsAdvanced.textFlipped":"Gekippt","DE.Views.ImageSettingsAdvanced.textFormat":"Bezeichnungsformat","DE.Views.ImageSettingsAdvanced.textGridLines":"Gitternetzlinien ","DE.Views.ImageSettingsAdvanced.textHeight":"Höhe","DE.Views.ImageSettingsAdvanced.textHideAxis":"Achse ausblenden","DE.Views.ImageSettingsAdvanced.textHigh":"Hoch","DE.Views.ImageSettingsAdvanced.textHorAxis":"Horizontale Achse","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"Horizontale Sekundärachse","DE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontal","DE.Views.ImageSettingsAdvanced.textHundredMil":"100 000 000","DE.Views.ImageSettingsAdvanced.textHundreds":"Hunderte","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100 000","DE.Views.ImageSettingsAdvanced.textIn":"In","DE.Views.ImageSettingsAdvanced.textInnerBottom":"Innen unten","DE.Views.ImageSettingsAdvanced.textInnerTop":"Innen oben","DE.Views.ImageSettingsAdvanced.textJoinType":"Verknüpfungstyp","DE.Views.ImageSettingsAdvanced.textKeepRatio":"Seitenverhältnis beibehalten","DE.Views.ImageSettingsAdvanced.textLabelDist":"Achsenbeschriftungsabstand","DE.Views.ImageSettingsAdvanced.textLabelInterval":"Abstand zwischen Beschriftungen","DE.Views.ImageSettingsAdvanced.textLabelOptions":"Beschriftungsoptionen","DE.Views.ImageSettingsAdvanced.textLabelPos":"Beschriftungsposition","DE.Views.ImageSettingsAdvanced.textLayout":"Layout","DE.Views.ImageSettingsAdvanced.textLeft":"Links","DE.Views.ImageSettingsAdvanced.textLeftMargin":"Linker Rand","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"Überlagerung links","DE.Views.ImageSettingsAdvanced.textLegendBottom":"Unten","DE.Views.ImageSettingsAdvanced.textLegendLeft":"Links","DE.Views.ImageSettingsAdvanced.textLegendPos":"Legende","DE.Views.ImageSettingsAdvanced.textLegendRight":"Rechts","DE.Views.ImageSettingsAdvanced.textLegendTop":"Oben","DE.Views.ImageSettingsAdvanced.textLine":"Linie","DE.Views.ImageSettingsAdvanced.textLines":"Linien","DE.Views.ImageSettingsAdvanced.textLineStyle":"Linienart","DE.Views.ImageSettingsAdvanced.textLogScale":"Logarithmische Skalierung","DE.Views.ImageSettingsAdvanced.textLow":"Niedrig","DE.Views.ImageSettingsAdvanced.textMajor":"Primäre","DE.Views.ImageSettingsAdvanced.textMajorMinor":"Primäre und sekundäre","DE.Views.ImageSettingsAdvanced.textMajorType":"Primärer Typ","DE.Views.ImageSettingsAdvanced.textManual":"Manuell","DE.Views.ImageSettingsAdvanced.textMargin":"Rand","DE.Views.ImageSettingsAdvanced.textMarkers":"Markierungen","DE.Views.ImageSettingsAdvanced.textMarksInterval":"Abstand zwischen Teilstrichen","DE.Views.ImageSettingsAdvanced.textMaxValue":"Maximalwert","DE.Views.ImageSettingsAdvanced.textMillions":"Millionen","DE.Views.ImageSettingsAdvanced.textMinor":"Sekundär","DE.Views.ImageSettingsAdvanced.textMinorType":"Sekundärer Typ","DE.Views.ImageSettingsAdvanced.textMinValue":"Minimalwert","DE.Views.ImageSettingsAdvanced.textMiter":"Winkel","DE.Views.ImageSettingsAdvanced.textMove":"Objekt mit Text verschieben","DE.Views.ImageSettingsAdvanced.textNextToAxis":"Neben der Achse","DE.Views.ImageSettingsAdvanced.textNone":"Kein(e)","DE.Views.ImageSettingsAdvanced.textNoOverlay":"Ohne Überlagerung","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"Teilstriche","DE.Views.ImageSettingsAdvanced.textOptions":"Optionen","DE.Views.ImageSettingsAdvanced.textOriginalSize":"Tatsächliche Größe","DE.Views.ImageSettingsAdvanced.textOut":"Außen","DE.Views.ImageSettingsAdvanced.textOuterTop":"Außen oben","DE.Views.ImageSettingsAdvanced.textOverlap":"Überlappung zulassen","DE.Views.ImageSettingsAdvanced.textOverlay":"Überlagerung","DE.Views.ImageSettingsAdvanced.textPage":"Seite","DE.Views.ImageSettingsAdvanced.textParagraph":"Absatz","DE.Views.ImageSettingsAdvanced.textPosition":"Position","DE.Views.ImageSettingsAdvanced.textPositionPc":"Relative Position","DE.Views.ImageSettingsAdvanced.textRelative":"im Bezug auf ","DE.Views.ImageSettingsAdvanced.textRelativeWH":"Relativ","DE.Views.ImageSettingsAdvanced.textResizeFit":"Die Form am Text anpassen","DE.Views.ImageSettingsAdvanced.textReverse":"Werte in umgekehrter Reihenfolge","DE.Views.ImageSettingsAdvanced.textRight":"Rechts","DE.Views.ImageSettingsAdvanced.textRightMargin":"Rechter Seitenrand","DE.Views.ImageSettingsAdvanced.textRightOf":"rechts von","DE.Views.ImageSettingsAdvanced.textRightOverlay":"Überlagerung rechts","DE.Views.ImageSettingsAdvanced.textRotated":"Gedreht","DE.Views.ImageSettingsAdvanced.textRotation":"Rotation","DE.Views.ImageSettingsAdvanced.textRound":"Rund","DE.Views.ImageSettingsAdvanced.textSeparator":"Trennzeichen für Datenbeschriftungen","DE.Views.ImageSettingsAdvanced.textSeriesName":"Reihenname","DE.Views.ImageSettingsAdvanced.textShape":"Formeinstellungen","DE.Views.ImageSettingsAdvanced.textSize":"Größe","DE.Views.ImageSettingsAdvanced.textSmooth":"Glatt","DE.Views.ImageSettingsAdvanced.textSquare":"Eckig","DE.Views.ImageSettingsAdvanced.textStraight":"Gerade","DE.Views.ImageSettingsAdvanced.textTenMillions":"10 000 000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10 000","DE.Views.ImageSettingsAdvanced.textTextBox":"Textfeld","DE.Views.ImageSettingsAdvanced.textThousands":"Tausende","DE.Views.ImageSettingsAdvanced.textTickOptions":"Parameter der Teilstriche","DE.Views.ImageSettingsAdvanced.textTitle":"Bild - Erweiterte Einstellungen","DE.Views.ImageSettingsAdvanced.textTitleChart":"Diagramm - Erweiterte Einstellungen","DE.Views.ImageSettingsAdvanced.textTitleShape":"Form - Erweiterte Einstellungen","DE.Views.ImageSettingsAdvanced.textTop":"Oben","DE.Views.ImageSettingsAdvanced.textTopMargin":"Oberer Rand","DE.Views.ImageSettingsAdvanced.textTrillions":"Billionen","DE.Views.ImageSettingsAdvanced.textUnits":"Anzeigeeinheiten","DE.Views.ImageSettingsAdvanced.textValue":"Wert","DE.Views.ImageSettingsAdvanced.textVertAxis":"Vertikale Achse","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"Vertikale Sekundärachse","DE.Views.ImageSettingsAdvanced.textVertical":"Vertikal","DE.Views.ImageSettingsAdvanced.textVertically":"Vertikal","DE.Views.ImageSettingsAdvanced.textWeightArrows":"Stärken & Pfeile","DE.Views.ImageSettingsAdvanced.textWidth":"Breite","DE.Views.ImageSettingsAdvanced.textWrap":"Textumbruch","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"Hinter dem Text","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"Vorne","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"Inline","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"Eckig","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"Durchgehend","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"Passend","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"Oben und unten","DE.Views.LeftMenu.ariaLeftMenu":"Linkes Menü","DE.Views.LeftMenu.tipAbout":"Über das Produkt","DE.Views.LeftMenu.tipChat":"Chat","DE.Views.LeftMenu.tipComments":"Kommentare","DE.Views.LeftMenu.tipNavigation":"Navigation","DE.Views.LeftMenu.tipOutline":"Überschriften","DE.Views.LeftMenu.tipPageThumbnails":"Miniaturansichten","DE.Views.LeftMenu.tipPlugins":"Plugins","DE.Views.LeftMenu.tipSearch":"Suchen","DE.Views.LeftMenu.tipSupport":"Feedback und Support","DE.Views.LeftMenu.tipTitles":"Titel","DE.Views.LeftMenu.txtDeveloper":"ENTWICKLERMODUS","DE.Views.LeftMenu.txtEditor":"Dokument Editor","DE.Views.LeftMenu.txtLimit":"Zugriffseinschränkung","DE.Views.LeftMenu.txtTrial":"Trial-Modus","DE.Views.LeftMenu.txtTrialDev":"Testversion für Entwickler-Modus","DE.Views.LineNumbersDialog.textAddLineNumbering":"Zeilennummer hinzufügen","DE.Views.LineNumbersDialog.textApplyTo":"Änderungen anwenden","DE.Views.LineNumbersDialog.textContinuous":"Ununterbrochen","DE.Views.LineNumbersDialog.textCountBy":"Zählintervall","DE.Views.LineNumbersDialog.textDocument":"Zum ganzen Dokument","DE.Views.LineNumbersDialog.textForward":"Bis zum Ende des Dokuments","DE.Views.LineNumbersDialog.textFromText":"Aus dem Text","DE.Views.LineNumbersDialog.textNumbering":"Nummerierung","DE.Views.LineNumbersDialog.textRestartEachPage":"Jede Seite neu beginnen","DE.Views.LineNumbersDialog.textRestartEachSection":"Jeden Abschnitt neu beginnen","DE.Views.LineNumbersDialog.textSection":"Aktueller Abschnitt","DE.Views.LineNumbersDialog.textStartAt":"Beginnen mit","DE.Views.LineNumbersDialog.textTitle":"Zeilennummern","DE.Views.LineNumbersDialog.txtAutoText":"Automatisch","DE.Views.Links.capBtnAddText":"Text Hinzufügen","DE.Views.Links.capBtnBookmarks":"Lesezeichen","DE.Views.Links.capBtnCaption":"Beschriftung","DE.Views.Links.capBtnContentsUpdate":"Aktualisierung","DE.Views.Links.capBtnCrossRef":"Querverweis","DE.Views.Links.capBtnInsContents":"Inhaltsverzeichnis","DE.Views.Links.capBtnInsFootnote":"Fußnote","DE.Views.Links.capBtnInsLink":"Link","DE.Views.Links.capBtnTOF":"Abbildungsverzeichnis","DE.Views.Links.confirmDeleteFootnotes":"Möchten Sie alle Fußnoten löschen?","DE.Views.Links.confirmReplaceTOF":"Möchten Sie das ausgewählte Abbildungsverzeichnis wirklich ersetzen?","DE.Views.Links.mniConvertNote":"Alle Notizen umwandeln","DE.Views.Links.mniDelFootnote":"Alle Notizen löschen ","DE.Views.Links.mniInsEndnote":"Endnotiz einfügen","DE.Views.Links.mniInsFootnote":"Fußnotiz einfügen","DE.Views.Links.mniNoteSettings":"Hinweise Einstellungen","DE.Views.Links.textContentsRemove":"Inhaltsverzeichnis entfernen","DE.Views.Links.textContentsSettings":"Einstellungen","DE.Views.Links.textConvertToEndnotes":"Alle Fußnoten in Endnoten konvertieren","DE.Views.Links.textConvertToFootnotes":"Alle Endnoten in Fußnoten konvertieren","DE.Views.Links.textGotoEndnote":"Zu Endnotizen","DE.Views.Links.textGotoFootnote":"Zu Fußnotizen gehen","DE.Views.Links.textSwapNotes":"Fußnoten und Endnoten wechseln","DE.Views.Links.textUpdateAll":"Gesamtes Verzeichnis aktualisieren","DE.Views.Links.textUpdatePages":"Nur Seitenzahlen aktualisieren","DE.Views.Links.tipAddText":"Überschrift in das Inhaltsverzeichnis einfügen","DE.Views.Links.tipBookmarks":"Lesezeichen erstellen","DE.Views.Links.tipCaption":"Beschriftung einfügen","DE.Views.Links.tipContents":"Inhaltsverzeichnis einfügen","DE.Views.Links.tipContentsUpdate":"Inhaltsverzeichnis aktualisieren","DE.Views.Links.tipCrossRef":"Querverweis einfügen","DE.Views.Links.tipInsertHyperlink":"Link hinzufügen","DE.Views.Links.tipNotes":"Fußnoten einfügen oder bearbeiten","DE.Views.Links.tipTableFigures":"Abbildungsverzeichnis einfügen","DE.Views.Links.tipTableFiguresUpdate":"Abbildungsverzeichnis aktualisieren","DE.Views.Links.titleUpdateTOF":"Abbildungsverzeichnis aktualisieren","DE.Views.Links.txtDontShowTof":"Im Inhaltsverzeichnis nicht anzeigen","DE.Views.Links.txtLevel":"Ebene","DE.Views.ListIndentsDialog.textSpace":"Leerzeichen","DE.Views.ListIndentsDialog.textTab":"Tabulatorzeichen","DE.Views.ListIndentsDialog.textTitle":"Einzüge in der Liste","DE.Views.ListIndentsDialog.txtFollowBullet":"Aufzählungszeichen folgen mit","DE.Views.ListIndentsDialog.txtFollowNumber":"Nummer folgen mit","DE.Views.ListIndentsDialog.txtIndent":"Texteinzug","DE.Views.ListIndentsDialog.txtNone":"Keine","DE.Views.ListIndentsDialog.txtPosBullet":"Position des Aufzählungszeichens","DE.Views.ListIndentsDialog.txtPosNumber":"Position der Nummer","DE.Views.ListSettingsDialog.textAuto":"Automatisch","DE.Views.ListSettingsDialog.textBold":"Fett","DE.Views.ListSettingsDialog.textCenter":"Zenter","DE.Views.ListSettingsDialog.textHide":"Einstellungen ausblenden","DE.Views.ListSettingsDialog.textItalic":"Kursiv","DE.Views.ListSettingsDialog.textLeft":"Links","DE.Views.ListSettingsDialog.textLevel":"Ebene","DE.Views.ListSettingsDialog.textMore":"Weitere Einstellungen anzeigen","DE.Views.ListSettingsDialog.textPreview":"Vorschau","DE.Views.ListSettingsDialog.textRight":"Rechts","DE.Views.ListSettingsDialog.textSelectLevel":"Ebene auswählen","DE.Views.ListSettingsDialog.textSpace":"Leerzeichen","DE.Views.ListSettingsDialog.textTab":"Tabulatorzeichen","DE.Views.ListSettingsDialog.txtAlign":"Ausrichtung","DE.Views.ListSettingsDialog.txtAlignAt":"auf","DE.Views.ListSettingsDialog.txtBullet":"Aufzählungszeichen","DE.Views.ListSettingsDialog.txtColor":"Farbe","DE.Views.ListSettingsDialog.txtFollow":"Nummer folgen mit","DE.Views.ListSettingsDialog.txtFontName":"Schriftart","DE.Views.ListSettingsDialog.txtInclcudeLevel":"Levelnummer einschließen","DE.Views.ListSettingsDialog.txtIndent":"Texteinzug","DE.Views.ListSettingsDialog.txtLikeText":"Wie ein Text","DE.Views.ListSettingsDialog.txtMoreTypes":"Weitere Typen","DE.Views.ListSettingsDialog.txtNewBullet":"Neues Aufzählungszeichen","DE.Views.ListSettingsDialog.txtNone":"Keine","DE.Views.ListSettingsDialog.txtNumFormatString":"Zahlenformat","DE.Views.ListSettingsDialog.txtRestart":"Liste neu beginnen","DE.Views.ListSettingsDialog.txtSize":"Größe","DE.Views.ListSettingsDialog.txtStart":"Beginnen mit","DE.Views.ListSettingsDialog.txtSymbol":"Symbol","DE.Views.ListSettingsDialog.txtTabStop":"Tabstopp hinzufügen bei","DE.Views.ListSettingsDialog.txtTitle":"Listeneinstellungen","DE.Views.ListSettingsDialog.txtType":"Typ","DE.Views.ListTypesAdvanced.labelSelect":"Listenart auswählen","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"Senden","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"Thema","DE.Views.MailMergeEmailDlg.textAttachDocx":"Als DOCX anhängen","DE.Views.MailMergeEmailDlg.textAttachPdf":"Als PDF anhängen","DE.Views.MailMergeEmailDlg.textFileName":"Dateiname","DE.Views.MailMergeEmailDlg.textFormat":"E-Mail-Format","DE.Views.MailMergeEmailDlg.textFrom":"Von","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"Nachricht","DE.Views.MailMergeEmailDlg.textSubject":"Betreff","DE.Views.MailMergeEmailDlg.textTitle":"Per E-Mail senden","DE.Views.MailMergeEmailDlg.textTo":"Zu","DE.Views.MailMergeEmailDlg.textWarning":"Achtung!","DE.Views.MailMergeEmailDlg.textWarningMsg":"Bitte beachten Sie, dass Sendung nicht gestoppt werden kann, wenn man auf den Button Senden klickt.","DE.Views.MailMergeSettings.downloadMergeTitle":"Merging","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"Merge ist fehlgeschlagen.","DE.Views.MailMergeSettings.notcriticalErrorTitle":"Achtung","DE.Views.MailMergeSettings.textAddRecipients":"Erst Empfänger zur Liste hinzufügen","DE.Views.MailMergeSettings.textAll":"Alle Datensätze ","DE.Views.MailMergeSettings.textCurrent":"Aktueller Datensatz","DE.Views.MailMergeSettings.textDataSource":"Datenquelle","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"Herunterladen","DE.Views.MailMergeSettings.textEditData":"Empfängerliste bearbeiten","DE.Views.MailMergeSettings.textEmail":"E-Email","DE.Views.MailMergeSettings.textFrom":"Von","DE.Views.MailMergeSettings.textGoToMail":"Zu E-Mail übergehen","DE.Views.MailMergeSettings.textHighlight":"Serienbrief-Felder hervorheben","DE.Views.MailMergeSettings.textInsertField":"Seriendruckfeld einfügen","DE.Views.MailMergeSettings.textMaxRecepients":"Max. 100 Empfänger.","DE.Views.MailMergeSettings.textMerge":"Verbinden","DE.Views.MailMergeSettings.textMergeFields":"Felder zusammenführen","DE.Views.MailMergeSettings.textMergeTo":"Verbindung mit","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"Speichern","DE.Views.MailMergeSettings.textPreview":"Ergebnisvorschau","DE.Views.MailMergeSettings.textReadMore":"Weiter lesen","DE.Views.MailMergeSettings.textSendMsg":"Alle E-Mail-Nachrichten sind bereit und werden versendet.
Die Geschwindigkeit des Email-Versands hängt von Ihrem Mail-Dienst ab. Sie können an dem Dokument weiterarbeiten oder es schließen. Nachdem der Email-Versand fertig ist, werden Sie per E-Mail, die Sie bei der Registriering wervendeten, benachrichtigt.","DE.Views.MailMergeSettings.textTo":"Zu","DE.Views.MailMergeSettings.txtFirst":"Zum ersten Datensatz","DE.Views.MailMergeSettings.txtFromToError":"Der Wert \"Von\" muss kleiner als \"Bis\" sein","DE.Views.MailMergeSettings.txtLast":"Zum letzten Datensatz","DE.Views.MailMergeSettings.txtNext":"Zum nächsten Datensatz","DE.Views.MailMergeSettings.txtPrev":"Zu den vorherigen Rekord","DE.Views.MailMergeSettings.txtUntitled":"Unbenannt","DE.Views.MailMergeSettings.warnProcessMailMerge":"Merge ist fehlgeschlagen","DE.Views.Navigation.strNavigate":"Überschriften","DE.Views.Navigation.txtClosePanel":"Überschriften schließen","DE.Views.Navigation.txtCollapse":"Alle einklappen","DE.Views.Navigation.txtDemote":"Tieferstufen","DE.Views.Navigation.txtEmpty":"Dieses Dokument enthält keine Überschriften.
Wenden Sie ein Überschriftenformat auf den Text an, damit es im Inhaltsverzeichnis angezeigt wird.","DE.Views.Navigation.txtEmptyItem":"Leere Überschrift","DE.Views.Navigation.txtEmptyViewer":"Dieses Dokument enthält keine Überschriften.","DE.Views.Navigation.txtExpand":"Alle ausklappen","DE.Views.Navigation.txtExpandToLevel":"Auf Ebene erweitern","DE.Views.Navigation.txtFontSize":"Schriftgröße","DE.Views.Navigation.txtHeadingAfter":"Neue Überschrift nach","DE.Views.Navigation.txtHeadingBefore":"Neue Überschrift vor","DE.Views.Navigation.txtLarge":"Groß","DE.Views.Navigation.txtMedium":"Mittelgroß","DE.Views.Navigation.txtNewHeading":"Neue Unterüberschrift","DE.Views.Navigation.txtPromote":"Höherstufen","DE.Views.Navigation.txtSelect":"Inhalt auswählen","DE.Views.Navigation.txtSettings":"Einstellungen von Überschriften","DE.Views.Navigation.txtSmall":"Klein","DE.Views.Navigation.txtWrapHeadings":"Lange Überschriften umbrechen","DE.Views.NoteSettingsDialog.textApply":"Anwenden","DE.Views.NoteSettingsDialog.textApplyTo":"Änderungen anwenden","DE.Views.NoteSettingsDialog.textContinue":"Kontinuierlich","DE.Views.NoteSettingsDialog.textCustom":"Benutzerdefiniert","DE.Views.NoteSettingsDialog.textDocEnd":"Ende des Dokuments","DE.Views.NoteSettingsDialog.textDocument":"Das ganze Dokument","DE.Views.NoteSettingsDialog.textEachPage":"Jede Seite neu beginnen","DE.Views.NoteSettingsDialog.textEachSection":"Jeden Abschnitt neu beginnen","DE.Views.NoteSettingsDialog.textEndnote":"Endnote","DE.Views.NoteSettingsDialog.textFootnote":"Fußnote","DE.Views.NoteSettingsDialog.textFormat":"Format","DE.Views.NoteSettingsDialog.textInsert":"Einfügen","DE.Views.NoteSettingsDialog.textLocation":"Standort","DE.Views.NoteSettingsDialog.textNumbering":"Nummerierung","DE.Views.NoteSettingsDialog.textNumFormat":"Zahlenformat","DE.Views.NoteSettingsDialog.textPageBottom":"Seitenende","DE.Views.NoteSettingsDialog.textSectEnd":"Ende des Abschnitts","DE.Views.NoteSettingsDialog.textSection":"Aktueller Abschnitt","DE.Views.NoteSettingsDialog.textStart":"Starten","DE.Views.NoteSettingsDialog.textTextBottom":"Unterhalb des Textes","DE.Views.NoteSettingsDialog.textTitle":"Hinweise Einstellungen","DE.Views.NotesRemoveDialog.textEnd":"Alle Endnoten löschen","DE.Views.NotesRemoveDialog.textFoot":"Alle Fußnoten löschen ","DE.Views.NotesRemoveDialog.textTitle":"Anmerkungen löschen","DE.Views.PageMarginsDialog.notcriticalErrorTitle":"Achtung","DE.Views.PageMarginsDialog.textBottom":"Unten","DE.Views.PageMarginsDialog.textGutter":"Bundsteg","DE.Views.PageMarginsDialog.textGutterPosition":"Bundsteg-Position","DE.Views.PageMarginsDialog.textInside":"Innen","DE.Views.PageMarginsDialog.textLandscape":"Querformat","DE.Views.PageMarginsDialog.textLeft":"Left","DE.Views.PageMarginsDialog.textMirrorMargins":"Gegenüberliegende Seiten","DE.Views.PageMarginsDialog.textMultiplePages":"Mehrere Seiten","DE.Views.PageMarginsDialog.textNormal":"Normal","DE.Views.PageMarginsDialog.textOrientation":"Ausrichtung","DE.Views.PageMarginsDialog.textOutside":"Außen","DE.Views.PageMarginsDialog.textPortrait":"Hochformat","DE.Views.PageMarginsDialog.textPreview":"Vorschau","DE.Views.PageMarginsDialog.textRight":"Rechts","DE.Views.PageMarginsDialog.textTitle":"Ränder","DE.Views.PageMarginsDialog.textTop":"Oben","DE.Views.PageMarginsDialog.txtMarginsH":"Die oberen und unteren Ränder sind zu hoch für eingegebene Seitenhöhe","DE.Views.PageMarginsDialog.txtMarginsW":"Die Ränder rechts und links sind bei gegebener Seitenbreite zu breit. ","DE.Views.PageNumberingDlg.textFrom":"Starten mit","DE.Views.PageNumberingDlg.textMoreTypes":"Weitere Typen","DE.Views.PageNumberingDlg.textNumberFormat":"Zahlenformat","DE.Views.PageNumberingDlg.textPrev":"Fortsetzen vom vorherigen Abschnitt","DE.Views.PageSizeDialog.textHeight":"Höhe","DE.Views.PageSizeDialog.textPreset":"Voreinstellung","DE.Views.PageSizeDialog.textTitle":"Seitenformat","DE.Views.PageSizeDialog.textWidth":"Breite","DE.Views.PageSizeDialog.txtCustom":"Benutzerdefinierte","DE.Views.PageThumbnails.textClosePanel":"Miniaturansichten schließen","DE.Views.PageThumbnails.textHighlightVisiblePart":"Sichtbaren Teil der Seite hervorheben","DE.Views.PageThumbnails.textPageThumbnails":"Miniaturansichten","DE.Views.PageThumbnails.textThumbnailsSettings":"Einstellungen von Miniaturansichten","DE.Views.PageThumbnails.textThumbnailsSize":"Größe von Miniaturansichten","DE.Views.ParagraphSettings.strIndent":"Einzüge ","DE.Views.ParagraphSettings.strIndentsLeftText":"Links","DE.Views.ParagraphSettings.strIndentsRightText":"Rechts","DE.Views.ParagraphSettings.strIndentsSpecial":"Speziell","DE.Views.ParagraphSettings.strLineHeight":"Zeilenabstand","DE.Views.ParagraphSettings.strParagraphSpacing":"Absatzabstand","DE.Views.ParagraphSettings.strSomeParagraphSpace":"Kein Abstand zwischen Absätzen gleicher Formatierung","DE.Views.ParagraphSettings.strSpacingAfter":"Nach","DE.Views.ParagraphSettings.strSpacingBefore":"Vorher ","DE.Views.ParagraphSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.ParagraphSettings.textAt":"Um","DE.Views.ParagraphSettings.textAtLeast":"Mindestens","DE.Views.ParagraphSettings.textAuto":"Mehrfach","DE.Views.ParagraphSettings.textBackColor":"Hintergrundfarbe","DE.Views.ParagraphSettings.textExact":"Genau","DE.Views.ParagraphSettings.textFirstLine":"Erste Zeile","DE.Views.ParagraphSettings.textHanging":"Hängend","DE.Views.ParagraphSettings.textNoneSpecial":"(kein)","DE.Views.ParagraphSettings.txtAutoText":"Automatisch","DE.Views.ParagraphSettingsAdvanced.noTabs":"Die festgelegten Registerkarten werden in diesem Feld erscheinen","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"Alle Großbuchstaben","DE.Views.ParagraphSettingsAdvanced.strBorders":"Rahmen & Füllung","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"Seitenumbruch oberhalb","DE.Views.ParagraphSettingsAdvanced.strDirection":"Richtung","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Doppeltes Durchstreichen","DE.Views.ParagraphSettingsAdvanced.strIndent":"Einzüge ","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Links","DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Zeilenabstand","DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel":"Gliederungsebene","DE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Rechts","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Nach","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Vorher ","DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Speziell","DE.Views.ParagraphSettingsAdvanced.strKeepLines":"Absatz zusammenhalten","DE.Views.ParagraphSettingsAdvanced.strKeepNext":"Absätze nicht trennen","DE.Views.ParagraphSettingsAdvanced.strMargins":"Auffüllen","DE.Views.ParagraphSettingsAdvanced.strOrphan":"Absatzkontrolle","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Schriftart","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Einzüge und Abstände","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"Zeilen- und Seitenumbrüche","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"Positionierung","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Kapitälchen","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"Kein Abstand zwischen Absätzen gleicher Formatierung","DE.Views.ParagraphSettingsAdvanced.strSpacing":"Abstand","DE.Views.ParagraphSettingsAdvanced.strStrike":"Durchgestrichen","DE.Views.ParagraphSettingsAdvanced.strSubscript":"Tiefgestellt","DE.Views.ParagraphSettingsAdvanced.strSuperscript":"Hochgestellt","DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers":"Zeilennummerierung verbieten","DE.Views.ParagraphSettingsAdvanced.strTabs":"Tabulatoren","DE.Views.ParagraphSettingsAdvanced.textAlign":"Ausrichtung","DE.Views.ParagraphSettingsAdvanced.textAll":"Alle","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"Mindestens","DE.Views.ParagraphSettingsAdvanced.textAuto":"Mehrfach","DE.Views.ParagraphSettingsAdvanced.textBackColor":"Hintergrundfarbe","DE.Views.ParagraphSettingsAdvanced.textBodyText":"Standard text","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"Rahmenfarbe","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen und den gewählten Stil anzuwenden","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"Rahmenstärke","DE.Views.ParagraphSettingsAdvanced.textBottom":"Unten","DE.Views.ParagraphSettingsAdvanced.textCentered":"Zentriert","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Zeichenabstand","DE.Views.ParagraphSettingsAdvanced.textContext":"Kontextbezogene","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"Kontextbezogene und freie","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"Kontextbezogene, historische und freie","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"Kontextbezogene und historische","DE.Views.ParagraphSettingsAdvanced.textDefault":"Standardregisterkarte","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"Von links nach rechts","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"Von rechts nach links","DE.Views.ParagraphSettingsAdvanced.textDiscret":"Freie","DE.Views.ParagraphSettingsAdvanced.textEffects":"Effekte","DE.Views.ParagraphSettingsAdvanced.textExact":"Genau","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"Erste Zeile","DE.Views.ParagraphSettingsAdvanced.textHanging":"Hängend","DE.Views.ParagraphSettingsAdvanced.textHistorical":"Historische","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"Historische und freie","DE.Views.ParagraphSettingsAdvanced.textJustified":"Blocksatz","DE.Views.ParagraphSettingsAdvanced.textLeader":"Füllzeichen","DE.Views.ParagraphSettingsAdvanced.textLeft":"Links","DE.Views.ParagraphSettingsAdvanced.textLevel":"Ebene","DE.Views.ParagraphSettingsAdvanced.textLigatures":"Doppelbuchstaben","DE.Views.ParagraphSettingsAdvanced.textNone":"Kein","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(kein)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"OpenType-Funktionen","DE.Views.ParagraphSettingsAdvanced.textPosition":"Position","DE.Views.ParagraphSettingsAdvanced.textRemove":"Löschen","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Alle löschen","DE.Views.ParagraphSettingsAdvanced.textRight":"Rechts","DE.Views.ParagraphSettingsAdvanced.textSet":"Angeben","DE.Views.ParagraphSettingsAdvanced.textSpacing":"Abstand","DE.Views.ParagraphSettingsAdvanced.textStandard":"Nur standartisierte","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"Standartisierte und kontextbezogene","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"Standartisierte, kontextbezogene und freie","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"Standartisierte, kontextbezogene und historische","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"Standartisierte und freie","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"Standartisierte, historische und freie","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"Standartisierte und historische","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"Zenter","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"Links","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"Tabulatorposition","DE.Views.ParagraphSettingsAdvanced.textTabRight":"Rechts","DE.Views.ParagraphSettingsAdvanced.textTitle":"Absatz - Erweiterte Einstellungen","DE.Views.ParagraphSettingsAdvanced.textTop":"Oben","DE.Views.ParagraphSettingsAdvanced.tipAll":"Äußere Rahmenlinie und alle inneren Linien festlegen","DE.Views.ParagraphSettingsAdvanced.tipBottom":"Nur untere Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.tipInner":"Nur innere horizontale Linien festlegen","DE.Views.ParagraphSettingsAdvanced.tipLeft":"Nur linke Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.tipNone":"Keine Rahmenlinien festlegen","DE.Views.ParagraphSettingsAdvanced.tipOuter":"Nur äußere Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.tipRight":"Nur rechte Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.tipTop":"Nur obere Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"Automatisch","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"Keine Rahmen","DE.Views.PrintWithPreview.textMarginsLast":" Benutzerdefiniert als letzte","DE.Views.PrintWithPreview.textMarginsModerate":"Mittelmäßig","DE.Views.PrintWithPreview.textMarginsNarrow":"Schmal","DE.Views.PrintWithPreview.textMarginsNormal":"Normal","DE.Views.PrintWithPreview.textMarginsWide":"Breit","DE.Views.PrintWithPreview.txtAllPages":"Alle Seiten","DE.Views.PrintWithPreview.txtAuto":"Autom.","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Schwarzweißdruck","DE.Views.PrintWithPreview.txtBothSides":"Beidseitiger Druck","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"Seiten an der langen Seite umblättern","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"Seiten an der kurzen Seite umblättern","DE.Views.PrintWithPreview.txtBottom":"Unten","DE.Views.PrintWithPreview.txtColorPrinting":"Farbdruck","DE.Views.PrintWithPreview.txtCopies":"Kopien","DE.Views.PrintWithPreview.txtCurrentPage":"Aktuelle Seite","DE.Views.PrintWithPreview.txtCustom":"Benutzerdefiniert","DE.Views.PrintWithPreview.txtCustomPages":"Benutzerdefinierter Druck","DE.Views.PrintWithPreview.txtLandscape":"Querformat","DE.Views.PrintWithPreview.txtLeft":"Links","DE.Views.PrintWithPreview.txtMargins":"Ränder","DE.Views.PrintWithPreview.txtOf":"von {0}","DE.Views.PrintWithPreview.txtOneSide":"Einseitiger Druck","DE.Views.PrintWithPreview.txtOneSideDesc":"Nur auf einer Seite drucken","DE.Views.PrintWithPreview.txtPage":"Seite","DE.Views.PrintWithPreview.txtPageNumInvalid":"Ungültige Seitennummer","DE.Views.PrintWithPreview.txtPageOrientation":"Seitenausrichtung","DE.Views.PrintWithPreview.txtPages":"Seiten","DE.Views.PrintWithPreview.txtPageSize":"Seitengröße","DE.Views.PrintWithPreview.txtPortrait":"Hochformat","DE.Views.PrintWithPreview.txtPrint":"Drucken","DE.Views.PrintWithPreview.txtPrinter":"Drucker","DE.Views.PrintWithPreview.txtPrinterNotSelected":"Drucker nicht ausgewählt","DE.Views.PrintWithPreview.txtPrintersNotFound":"Drucker nicht gefunden","DE.Views.PrintWithPreview.txtPrintPdf":"Als PDF-Datei drucken","DE.Views.PrintWithPreview.txtPrintRange":"Druckbereich","DE.Views.PrintWithPreview.txtPrintSides":"Druckseiten","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Drucken über den Systemdialog","DE.Views.PrintWithPreview.txtRight":"Rechts","DE.Views.PrintWithPreview.txtSelection":"Auswahl","DE.Views.PrintWithPreview.txtTop":"Oben","DE.Views.PrintWithPreview.txtWaitingForPrinters":"Warten auf Drucker","DE.Views.ProtectDialog.textComments":"Kommentare","DE.Views.ProtectDialog.textForms":"Ausfüllen von Formularen","DE.Views.ProtectDialog.textReview":"Überarbeitungen","DE.Views.ProtectDialog.textView":"Keine Änderungen (Schreibgeschützt)","DE.Views.ProtectDialog.txtAllow":"Nur diese Art der Bearbeitung im Dokument zulassen","DE.Views.ProtectDialog.txtIncorrectPwd":"Bestätigungseingabe ist nicht identisch","DE.Views.ProtectDialog.txtLimit":"Das Passwort ist auf 15 Zeichen begrenzt","DE.Views.ProtectDialog.txtOptional":"optional","DE.Views.ProtectDialog.txtPassword":"Kennwort","DE.Views.ProtectDialog.txtProtect":"Schützen","DE.Views.ProtectDialog.txtRepeat":"Kennwort wiederholen","DE.Views.ProtectDialog.txtTitle":"Schützen","DE.Views.ProtectDialog.txtWarning":"Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie es an einem sicheren Ort auf.","DE.Views.RightMenu.ariaRightMenu":"Rechtes Menü","DE.Views.RightMenu.txtChartSettings":"Diagrammeinstellungen","DE.Views.RightMenu.txtFormSettings":"Einstellungen des Formulars","DE.Views.RightMenu.txtHeaderFooterSettings":"Kopf- und Fußzeileneinstellungen","DE.Views.RightMenu.txtImageSettings":"Bild-Einstellungen","DE.Views.RightMenu.txtMailMergeSettings":"Seriendruckeinstellungen ","DE.Views.RightMenu.txtParagraphSettings":"Absatzeinstellungen","DE.Views.RightMenu.txtShapeSettings":"Formeinstellungen","DE.Views.RightMenu.txtSignatureSettings":"Signatureinstellungen","DE.Views.RightMenu.txtTableSettings":"Tabellen-Einstellungen","DE.Views.RightMenu.txtTextArtSettings":"TextArt-Einstellungen","DE.Views.RoleDeleteDlg.textLabel":"Um diesen Empfänger zu löschen, müssen Sie die damit verbundenen Felder zu einem anderen Empfänger verschieben.","DE.Views.RoleDeleteDlg.textSelect":"Empfänger für Feldzusammenführung auswählen","DE.Views.RoleDeleteDlg.textTitle":"Empfänger löschen","DE.Views.RoleEditDlg.errNameExists":"Ein Empfänger mit diesem Namen ist bereits vorhanden.","DE.Views.RoleEditDlg.textEmptyError":"Der Name des Empfängers darf nicht leer sein.","DE.Views.RoleEditDlg.textName":"Name des Empfängers","DE.Views.RoleEditDlg.textNameEx":"Beispiel: Antragsteller, Kunde, Handelsvertreter","DE.Views.RoleEditDlg.textNoHighlight":"Ohne Hervorhebung","DE.Views.RoleEditDlg.txtTitleEdit":"Empfänger bearbeiten","DE.Views.RoleEditDlg.txtTitleNew":"Neue Empfänger erstellen","DE.Views.RolesManagerDlg.textAnyone":"Alle","DE.Views.RolesManagerDlg.textDelete":"Löschen","DE.Views.RolesManagerDlg.textDeleteLast":"Möchten Sie den Empfänger {0} wirklich löschen?
Nach dem Löschen wird der Standardempfänger erstellt.","DE.Views.RolesManagerDlg.textDescription":"Fügen Sie Empfänger hinzu und legen Sie die Reihenfolge fest, in der die Ausfüller das Dokument erhalten und unterschreiben","DE.Views.RolesManagerDlg.textDown":"Empfänger nach unten verschieben","DE.Views.RolesManagerDlg.textEdit":"Bearbeiten","DE.Views.RolesManagerDlg.textEmpty":"Es wurden noch keine Empfänger erstellt.
Erstellen Sie mindestens einen Empfänger und er wird in diesem Feld angezeigt.","DE.Views.RolesManagerDlg.textNew":"Neu erstellen","DE.Views.RolesManagerDlg.textUp":"Empfänger nach oben verschieben","DE.Views.RolesManagerDlg.txtTitle":"Empfängerrollen verwalten","DE.Views.RolesManagerDlg.warnCantDelete":"Sie können diesen Empfänger nicht löschen, da ihm Felder zugeordnet sind.","DE.Views.RolesManagerDlg.warnDelete":"Möchten Sie den Empfänger {0} wirklich löschen?","DE.Views.SaveFormDlg.saveButtonText":"Speichern","DE.Views.SaveFormDlg.textAnyone":"Alle","DE.Views.SaveFormDlg.textDescription":"Beim Speichern im PDF werden nur Empfänger mit Feldern zur Füllliste hinzugefügt","DE.Views.SaveFormDlg.textEmpty":"Den Feldern sind keine Empfänger zugeordnet.","DE.Views.SaveFormDlg.textFill":"Befüllungsliste","DE.Views.SaveFormDlg.txtTitle":"Als Formular speichern","DE.Views.ShapeSettings.strBackground":"Hintergrundfarbe","DE.Views.ShapeSettings.strChange":"Form ändern","DE.Views.ShapeSettings.strColor":"Farbe","DE.Views.ShapeSettings.strFill":"Füllung","DE.Views.ShapeSettings.strForeground":"Vordergrundfarbe","DE.Views.ShapeSettings.strPattern":"Muster","DE.Views.ShapeSettings.strShadow":"Schatten anzeigen","DE.Views.ShapeSettings.strSize":"Größe","DE.Views.ShapeSettings.strStroke":"Strich","DE.Views.ShapeSettings.strTransparency":"Undurchsichtigkeit","DE.Views.ShapeSettings.strType":"Typ","DE.Views.ShapeSettings.textAdjustShadow":"Schatten anpassen","DE.Views.ShapeSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.ShapeSettings.textAngle":"Winkel","DE.Views.ShapeSettings.textBorderSizeErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.","DE.Views.ShapeSettings.textColor":"Farbfüllung","DE.Views.ShapeSettings.textDirection":"Richtung","DE.Views.ShapeSettings.textEditPoints":"Punkte bearbeiten","DE.Views.ShapeSettings.textEditShape":"Form bearbeiten","DE.Views.ShapeSettings.textEmptyPattern":"Kein Muster","DE.Views.ShapeSettings.textEyedropper":"Pipette","DE.Views.ShapeSettings.textFlip":"Kippen","DE.Views.ShapeSettings.textFromFile":"Aus Datei","DE.Views.ShapeSettings.textFromStorage":"Aus dem Speicher","DE.Views.ShapeSettings.textFromUrl":"Aus URL","DE.Views.ShapeSettings.textGradient":"Farbverlauf","DE.Views.ShapeSettings.textGradientFill":"Füllung mit Farbverlauf","DE.Views.ShapeSettings.textHint270":"Um 90 ° gegen den Uhrzeigersinn drehen","DE.Views.ShapeSettings.textHint90":"90° im UZS drehen","DE.Views.ShapeSettings.textHintFlipH":"Horizontal kippen","DE.Views.ShapeSettings.textHintFlipV":"Vertikal kippen","DE.Views.ShapeSettings.textImageTexture":"Bild oder Textur","DE.Views.ShapeSettings.textLinear":"Linear","DE.Views.ShapeSettings.textMoreColors":"Mehr Farben","DE.Views.ShapeSettings.textNoFill":"Keine Füllung","DE.Views.ShapeSettings.textNoShadow":"Kein Schatten","DE.Views.ShapeSettings.textPatternFill":"Muster","DE.Views.ShapeSettings.textPosition":"Stellung","DE.Views.ShapeSettings.textRadial":"Radial","DE.Views.ShapeSettings.textRecentlyUsed":"Zuletzt verwendet","DE.Views.ShapeSettings.textRotate90":"90 Grad drehen","DE.Views.ShapeSettings.textRotation":"Rotation","DE.Views.ShapeSettings.textSelectImage":"Bild auswählen","DE.Views.ShapeSettings.textSelectTexture":"Auswählen","DE.Views.ShapeSettings.textShadow":"Schatten","DE.Views.ShapeSettings.textStretch":"Ausdehnung","DE.Views.ShapeSettings.textStyle":"Stil","DE.Views.ShapeSettings.textTexture":"Aus Textur","DE.Views.ShapeSettings.textTile":"Kachel","DE.Views.ShapeSettings.textWrap":"Textumbruch","DE.Views.ShapeSettings.tipAddGradientPoint":"Punkt des Farbverlaufs einfügen","DE.Views.ShapeSettings.tipRemoveGradientPoint":"Punkt des Farbverlaufs entfernen","DE.Views.ShapeSettings.txtBehind":"Hinter dem Text","DE.Views.ShapeSettings.txtBrownPaper":"Kraftpapier","DE.Views.ShapeSettings.txtCanvas":"Leinwand","DE.Views.ShapeSettings.txtCarton":"Pappe","DE.Views.ShapeSettings.txtDarkFabric":"Dunkler Stoff","DE.Views.ShapeSettings.txtGrain":"Korn","DE.Views.ShapeSettings.txtGranite":"Granit","DE.Views.ShapeSettings.txtGreyPaper":"Graues Papier","DE.Views.ShapeSettings.txtInFront":"Vorne","DE.Views.ShapeSettings.txtInline":"Inline","DE.Views.ShapeSettings.txtKnit":"Knit","DE.Views.ShapeSettings.txtLeather":"Leder","DE.Views.ShapeSettings.txtNoBorders":"Keine Linie","DE.Views.ShapeSettings.txtOffsetBottom":"Versatz: Unten","DE.Views.ShapeSettings.txtOffsetBottomLeft":"Versatz: Unten links","DE.Views.ShapeSettings.txtOffsetBottomRight":"Versatz: Unten rechts","DE.Views.ShapeSettings.txtOffsetCenter":"Versatz: Mitte","DE.Views.ShapeSettings.txtOffsetLeft":"Versatz: Links","DE.Views.ShapeSettings.txtOffsetRight":"Versatz: Rechts","DE.Views.ShapeSettings.txtOffsetTop":"Versatz: Oben","DE.Views.ShapeSettings.txtOffsetTopLeft":"Versatz: Oben links","DE.Views.ShapeSettings.txtOffsetTopRight":"Versatz: Oben rechts","DE.Views.ShapeSettings.txtPapyrus":"Papyrus","DE.Views.ShapeSettings.txtSquare":"Eckig","DE.Views.ShapeSettings.txtThrough":"Durchgehend","DE.Views.ShapeSettings.txtTight":"Passend","DE.Views.ShapeSettings.txtTopAndBottom":"Oben und unten","DE.Views.ShapeSettings.txtWood":"Holz","DE.Views.SignatureSettings.notcriticalErrorTitle":"Warnung","DE.Views.SignatureSettings.strDelete":"Signatur entfernen","DE.Views.SignatureSettings.strDetails":"Signaturdetails","DE.Views.SignatureSettings.strInvalid":"Ungültige Signaturen","DE.Views.SignatureSettings.strRequested":"Angeforderte Signaturen","DE.Views.SignatureSettings.strSetup":"Signatureinrichtung","DE.Views.SignatureSettings.strSign":"Signieren","DE.Views.SignatureSettings.strSignature":"Signatur","DE.Views.SignatureSettings.strSigner":"Signaturgeber","DE.Views.SignatureSettings.strValid":"Gültige Signaturen","DE.Views.SignatureSettings.txtContinueEditing":"Trotzdem bearbeiten","DE.Views.SignatureSettings.txtEditWarning":"Die Bearbeitung entfernt Signaturen aus diesem Dokument.
Möchten Sie trotzdem fortsetzen?","DE.Views.SignatureSettings.txtRemoveWarning":"Möchten Sie diese Signatur wirklich entfernen?
Dies kann nicht rückgängig gemacht werden.","DE.Views.SignatureSettings.txtRequestedSignatures":"Dieses Dokument muss signiert werden.","DE.Views.SignatureSettings.txtSigned":"Gültige Signaturen wurden dem Dokument hinzugefügt. Das Dokument ist vor der Bearbeitung geschützt.","DE.Views.SignatureSettings.txtSignedForm":"Dieses Dokument wurde signiert und kann nicht bearbeitet werden.","DE.Views.SignatureSettings.txtSignedInvalid":"Einige der digitalen Signaturen im Dokument sind ungültig oder konnten nicht verifiziert werden. Das Dokument ist vor der Bearbeitung geschützt.","DE.Views.Statusbar.goToPageText":"Auf die Seite übergehen","DE.Views.Statusbar.pageIndexText":"Seite {0} von {1}","DE.Views.Statusbar.tipFitPage":"Seite anpassen","DE.Views.Statusbar.tipFitWidth":"Breite anpassen","DE.Views.Statusbar.tipHandTool":"Hand-Werkzeug","DE.Views.Statusbar.tipMultiplePages":"Mehrere Seiten","DE.Views.Statusbar.tipSelectTool":"Auswählungstool","DE.Views.Statusbar.tipSetLang":"Textsprache wählen","DE.Views.Statusbar.tipZoomFactor":"Vergrößern","DE.Views.Statusbar.tipZoomIn":"Vergrößern","DE.Views.Statusbar.tipZoomOut":"Verkleinern","DE.Views.Statusbar.txtPageNumInvalid":"Ungültige Seitennummer","DE.Views.Statusbar.txtPages":"Seiten","DE.Views.Statusbar.txtParagraphs":"Absätze","DE.Views.Statusbar.txtSpaces":"Zeichen mit Leerzeichen","DE.Views.Statusbar.txtSymbols":"Zeichen","DE.Views.Statusbar.txtWordCount":"Wörter zählen","DE.Views.Statusbar.txtWords":"Wörter","DE.Views.StyleTitleDialog.textHeader":"Neuer Stil erstellen","DE.Views.StyleTitleDialog.textNextStyle":"Nächste Absatz-Formatvorlage","DE.Views.StyleTitleDialog.textTitle":"Titel","DE.Views.StyleTitleDialog.txtEmpty":"Dieses Feld ist erforderlich","DE.Views.StyleTitleDialog.txtNotEmpty":"Das Feld darf nicht leer sein","DE.Views.StyleTitleDialog.txtSameAs":"Gleich wie der neu erstellte Stil","DE.Views.TableFormulaDialog.textBookmark":"Lesezeichen einfügen","DE.Views.TableFormulaDialog.textFormat":"Zahlenformat","DE.Views.TableFormulaDialog.textFormula":"Formula","DE.Views.TableFormulaDialog.textInsertFunction":"Funktion einfügen","DE.Views.TableFormulaDialog.textTitle":"Formel-Einstellungen","DE.Views.TableOfContentsSettings.strAlign":"Seitenzahlen rechtsbündig","DE.Views.TableOfContentsSettings.strFullCaption":"Bezeichnung und Nummer einschließen","DE.Views.TableOfContentsSettings.strLinks":"Inhaltsverzeichnis als Links formatieren","DE.Views.TableOfContentsSettings.strLinksOF":"Abbildungsverzeichnis als Links formatieren","DE.Views.TableOfContentsSettings.strShowPages":"Seitenzahlen anzeigen","DE.Views.TableOfContentsSettings.textBuildTable":"Erstellen eines Inhaltsverzeichnisses von","DE.Views.TableOfContentsSettings.textBuildTableOF":"Erstelle Abbildungsverzeichnis aus","DE.Views.TableOfContentsSettings.textEquation":"Gleichung","DE.Views.TableOfContentsSettings.textFigure":"Abbildung","DE.Views.TableOfContentsSettings.textLeader":"Füllzeichen","DE.Views.TableOfContentsSettings.textLevel":"Ebene","DE.Views.TableOfContentsSettings.textLevels":"Ebenen","DE.Views.TableOfContentsSettings.textNone":"Kein","DE.Views.TableOfContentsSettings.textRadioCaption":"Beschriftung","DE.Views.TableOfContentsSettings.textRadioLevels":"Gliederungsebenen","DE.Views.TableOfContentsSettings.textRadioStyle":"Stil","DE.Views.TableOfContentsSettings.textRadioStyles":"Ausgewählte Formatvorlagen","DE.Views.TableOfContentsSettings.textStyle":"Formatvorlage","DE.Views.TableOfContentsSettings.textStyles":"Formatvorlagen","DE.Views.TableOfContentsSettings.textTable":"Tabelle","DE.Views.TableOfContentsSettings.textTitle":"Inhaltsverzeichnis","DE.Views.TableOfContentsSettings.textTitleTOF":"Abbildungsverzeichnis","DE.Views.TableOfContentsSettings.txtCentered":"Zentriert","DE.Views.TableOfContentsSettings.txtClassic":"Klassisch","DE.Views.TableOfContentsSettings.txtCurrent":"Aktuell","DE.Views.TableOfContentsSettings.txtDistinctive":"Elegant","DE.Views.TableOfContentsSettings.txtFormal":"Formell","DE.Views.TableOfContentsSettings.txtModern":"Modern","DE.Views.TableOfContentsSettings.txtOnline":"Online","DE.Views.TableOfContentsSettings.txtSimple":"Einfach","DE.Views.TableOfContentsSettings.txtStandard":"Standard","DE.Views.TableSettings.deleteColumnText":"Spalte löschen","DE.Views.TableSettings.deleteRowText":"Zeile löschen","DE.Views.TableSettings.deleteTableText":"Tabelle löschen","DE.Views.TableSettings.insertColumnLeftText":"Spalte links einfügen","DE.Views.TableSettings.insertColumnRightText":"Spalte rechts einfügen","DE.Views.TableSettings.insertRowAboveText":"Zeile oberhalb einfügen","DE.Views.TableSettings.insertRowBelowText":"Zeile unterhalb einfügen","DE.Views.TableSettings.mergeCellsText":"Zellen verbinden","DE.Views.TableSettings.selectCellText":"Zelle auswählen","DE.Views.TableSettings.selectColumnText":"Spalte auswählen","DE.Views.TableSettings.selectRowText":"Zeile auswählen","DE.Views.TableSettings.selectTableText":"Tabelle auswählen","DE.Views.TableSettings.splitCellsText":"Zelle teilen...","DE.Views.TableSettings.splitCellTitleText":"Zelle teilen","DE.Views.TableSettings.strRepeatRow":"Gleiche Kopfzeile auf jeder Seite wiederholen","DE.Views.TableSettings.textAddFormula":"Formel hinzufügen","DE.Views.TableSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.TableSettings.textAutofit":"Automatische Größenanpassung an den Inhalt","DE.Views.TableSettings.textBackColor":"Hintergrundfarbe","DE.Views.TableSettings.textBanded":"Gestreift","DE.Views.TableSettings.textBorderColor":"Farbe","DE.Views.TableSettings.textBorders":"Stil des Rahmens","DE.Views.TableSettings.textCellSize":"Zeilen- und Spaltengröße","DE.Views.TableSettings.textColumns":"Spalten","DE.Views.TableSettings.textConvert":"Tabelle in Text umwandeln","DE.Views.TableSettings.textDistributeCols":"Spalten verteilen","DE.Views.TableSettings.textDistributeRows":"Zeilen verteilen","DE.Views.TableSettings.textEdit":"Zeilen & Spalten","DE.Views.TableSettings.textEmptyTemplate":"Keine Vorlagen","DE.Views.TableSettings.textFirst":"Erste","DE.Views.TableSettings.textHeader":"Kopfzeile","DE.Views.TableSettings.textHeight":"Höhe","DE.Views.TableSettings.textLast":"Letzte","DE.Views.TableSettings.textRows":"Zeilen","DE.Views.TableSettings.textSelectBorders":"Wählen Sie Rahmenlinien, auf die ein anderer Stil angewandt wird","DE.Views.TableSettings.textTemplate":"Vorlage auswählen","DE.Views.TableSettings.textTotal":"Insgesamt","DE.Views.TableSettings.textWidth":"Breite","DE.Views.TableSettings.tipAll":"Äußere Rahmenlinie und alle inneren Linien festlegen","DE.Views.TableSettings.tipBottom":"Nur äußere untere Rahmenlinie festlegen","DE.Views.TableSettings.tipInner":"Nur innere Linien festlegen","DE.Views.TableSettings.tipInnerHor":"Nur innere horizontale Linien festlegen","DE.Views.TableSettings.tipInnerVert":"Nur vertikale innere Linien festlegen","DE.Views.TableSettings.tipLeft":"Nur äußere linke Rahmenlinie festlegen","DE.Views.TableSettings.tipNone":"Keine Rahmenlinien festlegen","DE.Views.TableSettings.tipOuter":"Nur äußere Rahmenlinie festlegen","DE.Views.TableSettings.tipRight":"Nur äußere rechte Rahmenlinie festlegen","DE.Views.TableSettings.tipTop":"Nur äußere obere Rahmenlinie festlegen","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"Umgrenzte und linierte Tabellen","DE.Views.TableSettings.txtGroupTable_Custom":"Einstellbar","DE.Views.TableSettings.txtGroupTable_Grid":"Gitternetztabellen","DE.Views.TableSettings.txtGroupTable_List":"Listentabellen","DE.Views.TableSettings.txtGroupTable_Plain":"Einfache Tabellen","DE.Views.TableSettings.txtNoBorders":"Keine Rahmen","DE.Views.TableSettings.txtTable_Accent":"Akzent","DE.Views.TableSettings.txtTable_Bordered":"Umgrenzt","DE.Views.TableSettings.txtTable_BorderedAndLined":"Umgrenzt und liniert","DE.Views.TableSettings.txtTable_Colorful":"Farbig","DE.Views.TableSettings.txtTable_Dark":"Dunkel","DE.Views.TableSettings.txtTable_GridTable":"Gitternetztabelle","DE.Views.TableSettings.txtTable_Light":"Hell","DE.Views.TableSettings.txtTable_Lined":"Mit Linien","DE.Views.TableSettings.txtTable_ListTable":"Listentabelle","DE.Views.TableSettings.txtTable_PlainTable":"Einfache Tabelle","DE.Views.TableSettings.txtTable_TableGrid":"Tabellenraster","DE.Views.TableSettingsAdvanced.textAlign":"Ausrichtung","DE.Views.TableSettingsAdvanced.textAlignment":"Ausrichtung","DE.Views.TableSettingsAdvanced.textAllowSpacing":"Abstand zwischen Zellen zulassen","DE.Views.TableSettingsAdvanced.textAlt":"Alternativer Text","DE.Views.TableSettingsAdvanced.textAltDescription":"Beschreibung","DE.Views.TableSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","DE.Views.TableSettingsAdvanced.textAltTitle":"Titel","DE.Views.TableSettingsAdvanced.textAnchorText":"Text","DE.Views.TableSettingsAdvanced.textAutofit":"Größe an Inhalt automatisch anpassen","DE.Views.TableSettingsAdvanced.textBackColor":"Zellenhintergrund","DE.Views.TableSettingsAdvanced.textBelow":"unten","DE.Views.TableSettingsAdvanced.textBorderColor":"Rahmenfarbe","DE.Views.TableSettingsAdvanced.textBorderDesc":"Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen und den gewählten Stil anzuwenden","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"Rahmen & Hintergrund","DE.Views.TableSettingsAdvanced.textBorderWidth":"Rahmenstärke","DE.Views.TableSettingsAdvanced.textBottom":"Unten","DE.Views.TableSettingsAdvanced.textCellOptions":"Zellenoptionen","DE.Views.TableSettingsAdvanced.textCellProps":"Zelle","DE.Views.TableSettingsAdvanced.textCellSize":"Zellengröße","DE.Views.TableSettingsAdvanced.textCenter":"Zenter","DE.Views.TableSettingsAdvanced.textCenterTooltip":"Zenter","DE.Views.TableSettingsAdvanced.textCheckMargins":"Standardränder nutzen","DE.Views.TableSettingsAdvanced.textDefaultMargins":"Standardränder","DE.Views.TableSettingsAdvanced.textDistance":"Abstand vom Text","DE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.TableSettingsAdvanced.textIndLeft":"Einzug von links","DE.Views.TableSettingsAdvanced.textLeft":"Links","DE.Views.TableSettingsAdvanced.textLeftTooltip":"Links","DE.Views.TableSettingsAdvanced.textMargin":"Rand","DE.Views.TableSettingsAdvanced.textMargins":"Zellenränder","DE.Views.TableSettingsAdvanced.textMeasure":"Maßeinheit in","DE.Views.TableSettingsAdvanced.textMove":"Objekt mit Text verschieben","DE.Views.TableSettingsAdvanced.textOnlyCells":"Nur für gewählte Zellen","DE.Views.TableSettingsAdvanced.textOptions":"Optionen","DE.Views.TableSettingsAdvanced.textOverlap":"Überlappung zulassen","DE.Views.TableSettingsAdvanced.textPage":"Seite","DE.Views.TableSettingsAdvanced.textPosition":"Position","DE.Views.TableSettingsAdvanced.textPrefWidth":"Vorzugsbreite","DE.Views.TableSettingsAdvanced.textPreview":"Vorschau","DE.Views.TableSettingsAdvanced.textRelative":"im Bezug auf ","DE.Views.TableSettingsAdvanced.textRight":"Rechts","DE.Views.TableSettingsAdvanced.textRightOf":"rechts von","DE.Views.TableSettingsAdvanced.textRightTooltip":"Rechts","DE.Views.TableSettingsAdvanced.textTable":"Tabelle","DE.Views.TableSettingsAdvanced.textTableBackColor":"Tabellenhintergrund","DE.Views.TableSettingsAdvanced.textTablePosition":"Tabellenposition","DE.Views.TableSettingsAdvanced.textTableSize":"Größe der Tabelle","DE.Views.TableSettingsAdvanced.textTitle":"Tabelle - Erweiterte Einstellungen","DE.Views.TableSettingsAdvanced.textTop":"Oben","DE.Views.TableSettingsAdvanced.textVertical":"Vertikal","DE.Views.TableSettingsAdvanced.textWidth":"Breite","DE.Views.TableSettingsAdvanced.textWidthSpaces":"Breite & Abstand","DE.Views.TableSettingsAdvanced.textWrap":"Textumbruch","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"Inline-Tabelle","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"Flow-Tabelle","DE.Views.TableSettingsAdvanced.textWrappingStyle":"Textumbruch","DE.Views.TableSettingsAdvanced.textWrapText":"Zeilenumbruch","DE.Views.TableSettingsAdvanced.tipAll":"Äußere Rahmenlinie und alle inneren Linien festlegen","DE.Views.TableSettingsAdvanced.tipCellAll":"Rahmenlinien nur für innere Zellen festlegen","DE.Views.TableSettingsAdvanced.tipCellInner":"Horizontale und vertikale Linien nur für innere Zellen festlegen ","DE.Views.TableSettingsAdvanced.tipCellOuter":"Äußere Rahmenlinien nur für innere Zellen festlegen","DE.Views.TableSettingsAdvanced.tipInner":"Nur innere Linien festlegen","DE.Views.TableSettingsAdvanced.tipNone":"Keine Rahmenlinien festlegen","DE.Views.TableSettingsAdvanced.tipOuter":"Nur äußere Rahmenlinie festlegen","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"Äußere Rahmenlinie und Rahmenlinien für alle inneren Zellen festlegen","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"Äußere Rahmenlinie und vertikale und horizontale Linien für innere Zellen festlegen","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"Äußere Rahmenlinie der Tabelle und äußere Rahmenlinien für innere Zellen festlegen","DE.Views.TableSettingsAdvanced.txtCm":"Zentimeter","DE.Views.TableSettingsAdvanced.txtInch":"Zoll","DE.Views.TableSettingsAdvanced.txtNoBorders":"Keine Rahmen","DE.Views.TableSettingsAdvanced.txtPercent":"Prozent","DE.Views.TableSettingsAdvanced.txtPt":"Punkt","DE.Views.TableToTextDialog.textEmpty":"Für das benutzerdefinierte Trennzeichen muss ein Zeichen eingegeben werden.","DE.Views.TableToTextDialog.textNested":"Geschachtelte Tabellen konvertieren","DE.Views.TableToTextDialog.textOther":"Sonstiges","DE.Views.TableToTextDialog.textPara":"Absatzmarken","DE.Views.TableToTextDialog.textSemicolon":"Semikolons","DE.Views.TableToTextDialog.textSeparator":"Text trennen durch:","DE.Views.TableToTextDialog.textTab":"Tabulatoren","DE.Views.TableToTextDialog.textTitle":"Tabelle in Text umwandeln","DE.Views.TextArtSettings.strColor":"Farbe","DE.Views.TextArtSettings.strFill":"Füllung","DE.Views.TextArtSettings.strSize":"Größe","DE.Views.TextArtSettings.strStroke":"Strich","DE.Views.TextArtSettings.strTransparency":"Undurchsichtigkeit","DE.Views.TextArtSettings.strType":"Typ","DE.Views.TextArtSettings.textAngle":"Winkel","DE.Views.TextArtSettings.textBorderSizeErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.","DE.Views.TextArtSettings.textColor":"Farbfüllung","DE.Views.TextArtSettings.textDirection":"Richtung","DE.Views.TextArtSettings.textGradient":"Farbverlauf","DE.Views.TextArtSettings.textGradientFill":"Füllung mit Farbverlauf","DE.Views.TextArtSettings.textLinear":"Linear","DE.Views.TextArtSettings.textNoFill":"Keine Füllung","DE.Views.TextArtSettings.textPosition":"Stellung","DE.Views.TextArtSettings.textRadial":"Radial","DE.Views.TextArtSettings.textSelectTexture":"Auswählen","DE.Views.TextArtSettings.textStyle":"Stil","DE.Views.TextArtSettings.textTemplate":"Vorlage","DE.Views.TextArtSettings.textTransform":"Transformieren","DE.Views.TextArtSettings.tipAddGradientPoint":"Punkt des Farbverlaufs einfügen","DE.Views.TextArtSettings.tipRemoveGradientPoint":"Punkt des Farbverlaufs entfernen","DE.Views.TextArtSettings.txtNoBorders":"Keine Linie","DE.Views.TextToTableDialog.textAutofit":"Einstellung für Autoanpassen","DE.Views.TextToTableDialog.textColumns":"Spalten","DE.Views.TextToTableDialog.textContents":"An Inhalt autoanpassen","DE.Views.TextToTableDialog.textEmpty":"Für das benutzerdefinierte Trennzeichen muss ein Zeichen eingegeben werden.","DE.Views.TextToTableDialog.textFixed":"Feste Spaltenbreite","DE.Views.TextToTableDialog.textOther":"Sonstiges","DE.Views.TextToTableDialog.textPara":"Absätze","DE.Views.TextToTableDialog.textRows":"Zeilen","DE.Views.TextToTableDialog.textSemicolon":"Semikolons","DE.Views.TextToTableDialog.textSeparator":"Text trennen bei:","DE.Views.TextToTableDialog.textTab":"Tabulatoren","DE.Views.TextToTableDialog.textTableSize":"Größe der Tabelle","DE.Views.TextToTableDialog.textTitle":"Text in Tabelle umwandeln","DE.Views.TextToTableDialog.textWindow":"An Fenster autoanpassen","DE.Views.TextToTableDialog.txtAutoText":"Automatisch","DE.Views.Toolbar.capBtnAddComment":"Kommentar Hinzufügen","DE.Views.Toolbar.capBtnBlankPage":"Leere Seite","DE.Views.Toolbar.capBtnColumns":"Spalten","DE.Views.Toolbar.capBtnComment":"Kommentar","DE.Views.Toolbar.capBtnHand":"Hand","DE.Views.Toolbar.capBtnHyphenation":"Trennen","DE.Views.Toolbar.capBtnInsChart":"Diagramm","DE.Views.Toolbar.capBtnInsControls":"Inhaltssteuerelemente","DE.Views.Toolbar.capBtnInsDropcap":"Initialbuchstaben ","DE.Views.Toolbar.capBtnInsEquation":"Gleichung","DE.Views.Toolbar.capBtnInsHeader":"Kopf- und Fußzeile","DE.Views.Toolbar.capBtnInsPagebreak":"Umbrüche","DE.Views.Toolbar.capBtnInsShape":"Form","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"Symbol","DE.Views.Toolbar.capBtnInsTable":"Tabelle","DE.Views.Toolbar.capBtnInsTextart":"Text Art","DE.Views.Toolbar.capBtnInsTextbox":"Textfeld","DE.Views.Toolbar.capBtnInsTextFromFile":"Text aus Datei","DE.Views.Toolbar.capBtnLineNumbers":"Zeilennummern","DE.Views.Toolbar.capBtnMargins":"Ränder","DE.Views.Toolbar.capBtnPageColor":"Seitenfarbe","DE.Views.Toolbar.capBtnPageOrient":"Orientierung","DE.Views.Toolbar.capBtnPageSize":"Größe","DE.Views.Toolbar.capBtnSelect":"Auswählen","DE.Views.Toolbar.capBtnWatermark":"Wasserzeichen","DE.Views.Toolbar.capColorScheme":"Farben","DE.Views.Toolbar.capImgAlign":"Ausrichten","DE.Views.Toolbar.capImgBackward":"Eine Ebene nach hinten","DE.Views.Toolbar.capImgForward":"Eine Ebene nach vorne","DE.Views.Toolbar.capImgGroup":"Gruppieren","DE.Views.Toolbar.capImgWrapping":"Umbruch","DE.Views.Toolbar.capShapesMerge":"Formen zusammenführen","DE.Views.Toolbar.mniCapitalizeWords":"Ersten Buchstaben im jedem Wort großschreiben","DE.Views.Toolbar.mniCustomTable":"Benutzerdefinierte Tabelle einfügen","DE.Views.Toolbar.mniDrawTable":"Tabelle zeichnen","DE.Views.Toolbar.mniEditControls":"Steuerelementeinstellungen","DE.Views.Toolbar.mniEditDropCap":"Initialeinstellungen","DE.Views.Toolbar.mniEditFooter":"Fußzeile bearbeiten","DE.Views.Toolbar.mniEditHeader":"Kopfzeile bearbeiten","DE.Views.Toolbar.mniEraseTable":"Tabelle löschen","DE.Views.Toolbar.mniFromFile":"Aus Datei","DE.Views.Toolbar.mniFromStorage":"Aus dem Speicher","DE.Views.Toolbar.mniFromUrl":"Aus einer URL","DE.Views.Toolbar.mniHiddenBorders":"Ausgeblendete Tabellenrahmen","DE.Views.Toolbar.mniHiddenChars":"Nichtdruckende Buchstaben","DE.Views.Toolbar.mniHighlightControls":"Einstellungen für Hervorhebungen","DE.Views.Toolbar.mniInsertSSE":"Tabelle einfügen","DE.Views.Toolbar.mniLowerCase":"Kleinbuchstaben","DE.Views.Toolbar.mniRemoveFooter":"Fußzeile entfernen","DE.Views.Toolbar.mniRemoveHeader":"Kopfzeile entfernen","DE.Views.Toolbar.mniSentenceCase":"Ersten Buchstaben im Satz großschreiben.","DE.Views.Toolbar.mniTextFromLocalFile":"Text aus der lokalen Datei","DE.Views.Toolbar.mniTextFromStorage":"Text aus der Ablagedatei","DE.Views.Toolbar.mniTextFromURL":"Text aus der URL-Datei","DE.Views.Toolbar.mniTextToTable":"Text in Tabelle umwandeln","DE.Views.Toolbar.mniToggleCase":"gROSS-/kLEINSCHREIBUNG","DE.Views.Toolbar.mniUpperCase":"GROSSBUCHSTABEN","DE.Views.Toolbar.strMenuNoFill":"Keine Füllung","DE.Views.Toolbar.textAddSpaceAfter":"Leerzeichen nach Absatz einfügen","DE.Views.Toolbar.textAddSpaceBefore":"Leerzeichen vor Absatz einfügen","DE.Views.Toolbar.textAllBorders":"Alle Rahmenlinien","DE.Views.Toolbar.textAlpha":"Griechischer Kleinbuchstabe Alpha","DE.Views.Toolbar.textAuto":"Automatisch","DE.Views.Toolbar.textAutoColor":"Automatisch","DE.Views.Toolbar.textBetta":"Griechischer Kleinbuchstabe Beta","DE.Views.Toolbar.textBlackHeart":"Schwarzes Herz","DE.Views.Toolbar.textBold":"Fett","DE.Views.Toolbar.textBordersColor":"Rahmenfarbe","DE.Views.Toolbar.textBordersStyle":"Rahmenart","DE.Views.Toolbar.textBottom":"Unten: ","DE.Views.Toolbar.textBottomBorders":"Untere Ränder","DE.Views.Toolbar.textBullet":"Aufzählungszeichen","DE.Views.Toolbar.textChangeLevel":"Listenebene ändern","DE.Views.Toolbar.textCheckboxControl":"Kontrollkästchen","DE.Views.Toolbar.textColumnsCustom":"Benutzerdefinierte Spalten","DE.Views.Toolbar.textColumnsLeft":"Links","DE.Views.Toolbar.textColumnsOne":"Ein","DE.Views.Toolbar.textColumnsRight":"Rechts","DE.Views.Toolbar.textColumnsThree":"Drei","DE.Views.Toolbar.textColumnsTwo":"Zwei","DE.Views.Toolbar.textComboboxControl":"Kombinationsfeld","DE.Views.Toolbar.textContinuous":"Ununterbrochen","DE.Views.Toolbar.textContPage":"Fortlaufende Seite","DE.Views.Toolbar.textCopyright":"Copyrightzeichen","DE.Views.Toolbar.textCustomHyphen":"Trenn Optionen","DE.Views.Toolbar.textCustomLineNumbers":"Zeilennummerierungsoptionen","DE.Views.Toolbar.textDateControl":"Datum","DE.Views.Toolbar.textDegree":"Gradzeichen","DE.Views.Toolbar.textDelta":"Griechischer Kleinbuchstabe Delta","DE.Views.Toolbar.textDirLtr":"Von links nach rechts","DE.Views.Toolbar.textDirRtl":"Von rechts nach links","DE.Views.Toolbar.textDivision":"Divisionszeichen","DE.Views.Toolbar.textDollar":"Dollarzeichen","DE.Views.Toolbar.textDropdownControl":"Dropdownliste","DE.Views.Toolbar.textEditMode":"PDF bearbeiten","DE.Views.Toolbar.textEditWatermark":"Benutzerdefiniertes Wasserzeichen","DE.Views.Toolbar.textEuro":"Eurozeichen","DE.Views.Toolbar.textEvenPage":"Gerade Seite","DE.Views.Toolbar.textGreaterEqual":"Größer als oder gleich wie ","DE.Views.Toolbar.textIndAfter":"Einzug nach","DE.Views.Toolbar.textIndBefore":"Einzug vor","DE.Views.Toolbar.textIndLeft":"Linker Einzug","DE.Views.Toolbar.textIndRight":"Rechter Einzug","DE.Views.Toolbar.textInfinity":"Unendlichkeit","DE.Views.Toolbar.textInMargin":"Im Rand","DE.Views.Toolbar.textInsColumnBreak":"Spaltenumbruch einfügen","DE.Views.Toolbar.textInsertPageCount":"Anzahl der Seiten einfügen","DE.Views.Toolbar.textInsertPageNumber":"Seitenzahl einfügen","DE.Views.Toolbar.textInsideBorders":"Rahmenlinien innen","DE.Views.Toolbar.textInsideHorBorders":"Innere horizontale Rahmenlinien","DE.Views.Toolbar.textInsideVertBorders":"Innere vertikale Rahmenlinien","DE.Views.Toolbar.textInsPageBreak":"Seitenumbruch einfügen","DE.Views.Toolbar.textInsSectionBreak":"Abschnittsumbruch einfügen","DE.Views.Toolbar.textInText":"Im Text","DE.Views.Toolbar.textItalic":"Kursiv","DE.Views.Toolbar.textLandscape":"Querformat","DE.Views.Toolbar.textLeft":"Links: ","DE.Views.Toolbar.textLeftBorders":"Rahmenlinien links","DE.Views.Toolbar.textLessEqual":"Kleiner als oder gleich","DE.Views.Toolbar.textLetterPi":"Griechischer Kleinbuchstabe Pi","DE.Views.Toolbar.textLineSpaceOptions":"Optionen zum Zeilenabstand","DE.Views.Toolbar.textListSettings":"Listeneinstellungen","DE.Views.Toolbar.textMarginsLast":" Benutzerdefiniert als letzte","DE.Views.Toolbar.textMarginsModerate":"Mittelmäßig","DE.Views.Toolbar.textMarginsNarrow":"Schmal","DE.Views.Toolbar.textMarginsNormal":"Normal","DE.Views.Toolbar.textMarginsWide":"Breit","DE.Views.Toolbar.textMoreSymbols":"Mehr Symbole","DE.Views.Toolbar.textNewColor":"Mehr Farben","DE.Views.Toolbar.textNextPage":"Nächste Seite","DE.Views.Toolbar.textNoBorders":"Keine Rahmen","DE.Views.Toolbar.textNoHighlight":"Ohne Hervorhebung","DE.Views.Toolbar.textNone":"Kein","DE.Views.Toolbar.textNotEqualTo":"Nicht gleich","DE.Views.Toolbar.textOddPage":"Ungerade Seite","DE.Views.Toolbar.textOneHalf":"Vulgäre Fraktion Eine Hälfte","DE.Views.Toolbar.textOneQuarter":"Vulgäre Fraktion Ganz","DE.Views.Toolbar.textOutBorders":"Rahmenlinien außen","DE.Views.Toolbar.textPageMarginsCustom":"Benutzerdefinierte Seitenränder ","DE.Views.Toolbar.textPageSizeCustom":"Benutzerdefinierte Seitengröße","DE.Views.Toolbar.textPictureControl":"Bild","DE.Views.Toolbar.textPlainControl":"Einfacher Text","DE.Views.Toolbar.textPlusMinus":"Plus-Minus-Zeichen","DE.Views.Toolbar.textPortrait":"Hochformat","DE.Views.Toolbar.textRegistered":"Registered Trademark-Symbol","DE.Views.Toolbar.textRemoveControl":"Inhaltssteuerelement entfernen","DE.Views.Toolbar.textRemSpaceAfter":"Leerzeichen nach Absatz entfernen","DE.Views.Toolbar.textRemSpaceBefore":"Leerzeichen vor Absatz entfernen","DE.Views.Toolbar.textRemWatermark":"Wasserzeichen entfernen","DE.Views.Toolbar.textRestartEachPage":"Jede Seite neu beginnen","DE.Views.Toolbar.textRestartEachSection":"Jeden Abschnitt neu beginnen","DE.Views.Toolbar.textRichControl":"Rich-Text","DE.Views.Toolbar.textRight":"Rechts: ","DE.Views.Toolbar.textRightBorders":"Rahmenlinien rechts","DE.Views.Toolbar.textSection":"Paragraphenzeichen","DE.Views.Toolbar.textShapesCombine":"Kombinieren","DE.Views.Toolbar.textShapesFragment":"Fragment","DE.Views.Toolbar.textShapesIntersect":"Schneiden","DE.Views.Toolbar.textShapesSubstract":"Subtrahieren","DE.Views.Toolbar.textShapesUnion":"Vereinigung","DE.Views.Toolbar.textSmile":"Weißes Lachendes Gesicht","DE.Views.Toolbar.textSpaceAfter":"Leerzeichen nach","DE.Views.Toolbar.textSpaceBefore":"Leerzeichen vor","DE.Views.Toolbar.textSquareRoot":"Quadratwurzel","DE.Views.Toolbar.textStrikeout":"Durchgestrichen","DE.Views.Toolbar.textStyleMenuDelete":"Stil löschen","DE.Views.Toolbar.textStyleMenuDeleteAll":"Alle benutzerdefinierte Stile löschen ","DE.Views.Toolbar.textStyleMenuNew":"Neue Formatvorlagen auf der Basis einer Auswahl","DE.Views.Toolbar.textStyleMenuRestore":"Auf Standard setzen","DE.Views.Toolbar.textStyleMenuRestoreAll":"Alle Standardformatvorlagen zurücksetzen","DE.Views.Toolbar.textStyleMenuUpdate":"Aus der Auswahl neu aktualisieren","DE.Views.Toolbar.textSubscript":"Tiefgestellt","DE.Views.Toolbar.textSuperscript":"Hochgestellt","DE.Views.Toolbar.textSuppressForCurrentParagraph":"Für aktuellen Absatz unterdrücken","DE.Views.Toolbar.textTabCollaboration":"Zusammenarbeit","DE.Views.Toolbar.textTabDraw":"Zeichnen","DE.Views.Toolbar.textTabFile":"Datei","DE.Views.Toolbar.textTabHeaderFooter":"Kopf- und Fußzeile","DE.Views.Toolbar.textTabHome":"Startseite","DE.Views.Toolbar.textTabInsert":"Einfügen","DE.Views.Toolbar.textTabLayout":"Layout","DE.Views.Toolbar.textTabLinks":"Verweise","DE.Views.Toolbar.textTabProtect":"Schutz","DE.Views.Toolbar.textTabReview":"Review","DE.Views.Toolbar.textTabView":"Ansicht","DE.Views.Toolbar.textTilde":"Tilde","DE.Views.Toolbar.textTitleError":"Fehler","DE.Views.Toolbar.textToCurrent":"An aktueller Position","DE.Views.Toolbar.textTop":"Oben: ","DE.Views.Toolbar.textTopBorders":"Rahmenlinien oben","DE.Views.Toolbar.textTradeMark":"Markenzeichen","DE.Views.Toolbar.textUnderline":"Unterstrichen","DE.Views.Toolbar.textYen":"Yen-Zeichen","DE.Views.Toolbar.tipAlignCenter":"Zentriert ausrichten","DE.Views.Toolbar.tipAlignJust":"Blocksatz","DE.Views.Toolbar.tipAlignLeft":"Linksbündig ausrichten","DE.Views.Toolbar.tipAlignRight":"Rechtsbündig ausrichten","DE.Views.Toolbar.tipBack":"Zurück","DE.Views.Toolbar.tipBlankPage":"Leere Seite einlegen","DE.Views.Toolbar.tipBorders":"Rahmen","DE.Views.Toolbar.tipChangeCase":"Groß-/Kleinschreibung ändern","DE.Views.Toolbar.tipChangeChart":"Diagrammtyp ändern","DE.Views.Toolbar.tipClearStyle":"Formatierung löschen","DE.Views.Toolbar.tipColorSchemas":"Farbschema ändern","DE.Views.Toolbar.tipColumns":"Spalten einfügen","DE.Views.Toolbar.tipControls":"Inhaltssteuerelemente einfügen","DE.Views.Toolbar.tipCopy":"Kopieren","DE.Views.Toolbar.tipCopyStyle":"Format übertragen","DE.Views.Toolbar.tipCut":"Ausschneiden","DE.Views.Toolbar.tipDecFont":"Schriftart verkleinern","DE.Views.Toolbar.tipDecPrLeft":"Einzug verkleinern","DE.Views.Toolbar.tipDownload":"Datei herunterladen","DE.Views.Toolbar.tipDropCap":"Initiale einfügen","DE.Views.Toolbar.tipEditMode":"Die aktuelle Datei bearbeiten.
Die Seite wird neu geladen.","DE.Views.Toolbar.tipFontColor":"Schriftfarbe","DE.Views.Toolbar.tipFontName":"Schriftart","DE.Views.Toolbar.tipFontSize":"Schriftgrad","DE.Views.Toolbar.tipHandTool":"Hand-Werkzeug","DE.Views.Toolbar.tipHighlightColor":"Texthervorhebungsfarbe","DE.Views.Toolbar.tipHyphenation":"Trennen ändern","DE.Views.Toolbar.tipImgAlign":"Objekte ausrichten","DE.Views.Toolbar.tipImgGroup":"Objekte gruppieren","DE.Views.Toolbar.tipImgWrapping":"Textumbruch","DE.Views.Toolbar.tipIncFont":"Schriftart vergrößern\n ","DE.Views.Toolbar.tipIncPrLeft":"Einzug vergrößern","DE.Views.Toolbar.tipInsertChart":"Diagramm einfügen","DE.Views.Toolbar.tipInsertEquation":"Formel einfügen","DE.Views.Toolbar.tipInsertHorizontalText":"Horizontales Textfeld einfügen","DE.Views.Toolbar.tipInsertNum":"Seitenzahl einfügen","DE.Views.Toolbar.tipInsertShape":"Form einfügen","DE.Views.Toolbar.tipInsertSmartArt":"SmartArt einfügen","DE.Views.Toolbar.tipInsertSymbol":"Symbol einfügen","DE.Views.Toolbar.tipInsertTable":"Tabelle einfügen","DE.Views.Toolbar.tipInsertText":"Textfeld einfügen","DE.Views.Toolbar.tipInsertTextArt":"TextArt einfügen","DE.Views.Toolbar.tipInsertVerticalText":"Vertikales Textfeld einfügen","DE.Views.Toolbar.tipLineNumbers":"Zeilennummern anzeigen","DE.Views.Toolbar.tipLineSpace":"Zeilenabstand","DE.Views.Toolbar.tipMailRecepients":"Serienbrief","DE.Views.Toolbar.tipMarkers":"Aufzählung","DE.Views.Toolbar.tipMarkersArrow":"Pfeilförmige Aufzählungszeichen","DE.Views.Toolbar.tipMarkersCheckmark":"Häkchenaufzählungszeichen","DE.Views.Toolbar.tipMarkersDash":"Aufzählungszeichen","DE.Views.Toolbar.tipMarkersFRhombus":"Ausgefüllte karoförmige Aufzählungszeichen","DE.Views.Toolbar.tipMarkersFRound":"Ausgefüllte runde Aufzählungszeichen","DE.Views.Toolbar.tipMarkersFSquare":"Ausgefüllte quadratische Aufzählungszeichen","DE.Views.Toolbar.tipMarkersHRound":"Leere runde Aufzählungszeichen","DE.Views.Toolbar.tipMarkersStar":"Sternförmige Aufzählungszeichen","DE.Views.Toolbar.tipMultiLevelArticl":"Mehrstufig nummerierte Artikel","DE.Views.Toolbar.tipMultiLevelChapter":"Mehrstufig nummerierte Kapitel","DE.Views.Toolbar.tipMultiLevelHeadings":"Mehrstufig nummerierte Überschriften","DE.Views.Toolbar.tipMultiLevelHeadVarious":"Unterschiedliche mehrstufig nummerierte Überschriften","DE.Views.Toolbar.tipMultiLevelNumbered":"Nummerierte Liste mit mehreren Ebenen","DE.Views.Toolbar.tipMultilevels":"Liste mit mehreren Ebenen","DE.Views.Toolbar.tipMultiLevelSymbols":"Aufzählungsliste mit mehreren Ebenen","DE.Views.Toolbar.tipMultiLevelVarious":"Kombinierte Liste mit mehreren Ebenen","DE.Views.Toolbar.tipNumbers":"Nummerierung","DE.Views.Toolbar.tipPageBreak":"Seiten- oder Abschnittsumbruch einfügen","DE.Views.Toolbar.tipPageColor":"Seitenfarbe ändern","DE.Views.Toolbar.tipPageMargins":"Seitenränder","DE.Views.Toolbar.tipPageOrient":"Seitenausrichtung","DE.Views.Toolbar.tipPageSize":"Seitenformat","DE.Views.Toolbar.tipParagraphStyle":"Absatzformat","DE.Views.Toolbar.tipPaste":"Einfügen","DE.Views.Toolbar.tipPrColor":"Absatzhintergrundfarbe","DE.Views.Toolbar.tipPrint":"Drucken","DE.Views.Toolbar.tipPrintQuick":"Schnelldruck","DE.Views.Toolbar.tipRedo":"Wiederholen","DE.Views.Toolbar.tipReplace":"Ersetzen","DE.Views.Toolbar.tipSave":"Speichern","DE.Views.Toolbar.tipSaveCoauth":"Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.","DE.Views.Toolbar.tipSelectAll":"Alles auswählen","DE.Views.Toolbar.tipSelectTool":"Auswählungstool","DE.Views.Toolbar.tipSendBackward":"Eine Ebene nach hinten","DE.Views.Toolbar.tipSendForward":"Eine Ebene nach vorne","DE.Views.Toolbar.tipShapesMerge":"Formen zusammenführen","DE.Views.Toolbar.tipShowHiddenChars":"Formatierungszeichen","DE.Views.Toolbar.tipSynchronize":"Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.","DE.Views.Toolbar.tipTextDir":"Textrichtung","DE.Views.Toolbar.tipTextFromFile":"Text aus Datei","DE.Views.Toolbar.tipUndo":"Rückgängig","DE.Views.Toolbar.tipWatermark":"Wasserzeichen bearbeiten","DE.Views.Toolbar.txtAutoText":"Auto","DE.Views.Toolbar.txtDistribHor":"Horizontal verteilen","DE.Views.Toolbar.txtDistribVert":"Vertikal verteilen","DE.Views.Toolbar.txtGroupBulletDoc":"Aufzählungszeichen des Dokuments","DE.Views.Toolbar.txtGroupBulletLib":"Bibliothek der Aufzählungszeichen","DE.Views.Toolbar.txtGroupMultiDoc":"Listen im aktuellen Dokument","DE.Views.Toolbar.txtGroupMultiLib":"Bibliothek der Listen","DE.Views.Toolbar.txtGroupNumDoc":"Formate der Dokumentennummerierung","DE.Views.Toolbar.txtGroupNumLib":"Nummerierungsbibliothek","DE.Views.Toolbar.txtGroupRecent":"Zuletzt verwendet","DE.Views.Toolbar.txtMarginAlign":"Am Rand ausrichten","DE.Views.Toolbar.txtObjectsAlign":"Ausgewählte Objekte ausrichten","DE.Views.Toolbar.txtPageAlign":"An Seite ausrichten","DE.Views.ViewTab.textAlwaysShowToolbar":"Symbolleiste immer anzeigen","DE.Views.ViewTab.textDarkDocument":"Dunkles Dokument","DE.Views.ViewTab.textFill":"Füllung","DE.Views.ViewTab.textFitToPage":"Seite anpassen","DE.Views.ViewTab.textFitToWidth":"An Breite anpassen","DE.Views.ViewTab.textInterfaceTheme":"Thema der Benutzeroberfläche","DE.Views.ViewTab.textLeftMenu":"Linkes Bedienfeld","DE.Views.ViewTab.textLine":"Linie","DE.Views.ViewTab.textMacros":"Makros","DE.Views.ViewTab.textMultiplePages":"Mehrere Seiten","DE.Views.ViewTab.textNavigation":"Navigation","DE.Views.ViewTab.textOutline":"Überschriften","DE.Views.ViewTab.textPauseMacro":"Aufnahme pausieren","DE.Views.ViewTab.textRecMacro":"Makro aufzeichnen","DE.Views.ViewTab.textResumeMacro":"Aufnahme fortsetzen","DE.Views.ViewTab.textRightMenu":"Rechtes Bedienungsfeld ","DE.Views.ViewTab.textRulers":"Lineale","DE.Views.ViewTab.textStatusBar":"Statusleiste","DE.Views.ViewTab.textStopMacro":"Aufnahme beenden","DE.Views.ViewTab.textTabStyle":"Stil der Registerkarte","DE.Views.ViewTab.textZoom":"Vergrößern","DE.Views.ViewTab.textZoom100":"Auf 100 % zoomen","DE.Views.ViewTab.tipDarkDocument":"Dunkles Dokument","DE.Views.ViewTab.tipFitToPage":"Seite anpassen","DE.Views.ViewTab.tipFitToWidth":"An Breite anpassen","DE.Views.ViewTab.tipHeadings":"Überschriften","DE.Views.ViewTab.tipInterfaceTheme":"Thema der Benutzeroberfläche","DE.Views.ViewTab.tipMacros":"Makros","DE.Views.ViewTab.tipMultiplePages":"Mehrere Seiten","DE.Views.ViewTab.tipPauseMacro":"Aufnahme pausieren","DE.Views.ViewTab.tipRecMacro":"Makro aufzeichnen","DE.Views.ViewTab.tipResumeMacro":"Aufnahme fortsetzen","DE.Views.ViewTab.tipStopMacro":"Aufnahme beenden","DE.Views.ViewTab.tipZoom100":"Auf 100 % zoomen","DE.Views.WatermarkSettingsDialog.textAuto":"Automatisch","DE.Views.WatermarkSettingsDialog.textBold":"Fett","DE.Views.WatermarkSettingsDialog.textColor":"Textfarbe","DE.Views.WatermarkSettingsDialog.textDiagonal":"Diagonal","DE.Views.WatermarkSettingsDialog.textFont":"Schriftart","DE.Views.WatermarkSettingsDialog.textFromFile":"Aus Datei","DE.Views.WatermarkSettingsDialog.textFromStorage":"Aus dem Speicher","DE.Views.WatermarkSettingsDialog.textFromUrl":"Aus URL","DE.Views.WatermarkSettingsDialog.textHor":"Horizontal","DE.Views.WatermarkSettingsDialog.textImageW":"Bild-Wasserzeichen","DE.Views.WatermarkSettingsDialog.textItalic":"Kursiv","DE.Views.WatermarkSettingsDialog.textLanguage":"Sprache","DE.Views.WatermarkSettingsDialog.textLayout":"Layout","DE.Views.WatermarkSettingsDialog.textNone":"Kein","DE.Views.WatermarkSettingsDialog.textScale":"Maßstab","DE.Views.WatermarkSettingsDialog.textSelect":"Bild auswählen","DE.Views.WatermarkSettingsDialog.textStrikeout":"Durchgestrichen","DE.Views.WatermarkSettingsDialog.textText":"Text","DE.Views.WatermarkSettingsDialog.textTextW":"Text-Wasserzeichen","DE.Views.WatermarkSettingsDialog.textTitle":"Wasserzeichen-Einstellungen","DE.Views.WatermarkSettingsDialog.textTransparency":"Halbtransparent","DE.Views.WatermarkSettingsDialog.textUnderline":"Unterstrichen","DE.Views.WatermarkSettingsDialog.tipFontName":"Schriftartname","DE.Views.WatermarkSettingsDialog.tipFontSize":"Schriftgrad"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":"Achtung","Common.Controllers.Desktop.hintBtnHome":"Hauptfenster anzeigen","Common.Controllers.Desktop.itemCreateFromTemplate":"Von Vorlage erstellen","Common.Controllers.ExternalDiagramEditor.textAnonymous":"Anonym","Common.Controllers.ExternalDiagramEditor.textClose":"Schließen","Common.Controllers.ExternalDiagramEditor.warningText":"Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.","Common.Controllers.ExternalDiagramEditor.warningTitle":"Achtung","Common.Controllers.ExternalLinks.textAddExternalData":"Der Link zu einer externen Quelle wurde hinzugefügt. Sie können solche Links auf der Registerkarte \"Daten\" aktualisieren.","Common.Controllers.ExternalLinks.textDontUpdate":"Nicht aktualisieren","Common.Controllers.ExternalLinks.textUpdate":"Aktualisieren","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Fehler: Aktualisierung fehlgeschlagen","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Diese Arbeitsmappe enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Dieses Dokument enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Diese Präsentation enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalMergeEditor.textAnonymous":"Anonym","Common.Controllers.ExternalMergeEditor.textClose":"Schließen","Common.Controllers.ExternalMergeEditor.warningText":"Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.","Common.Controllers.ExternalMergeEditor.warningTitle":"Warnung","Common.Controllers.ExternalOleEditor.textAnonymous":"Anonym","Common.Controllers.ExternalOleEditor.textClose":"Schließen","Common.Controllers.ExternalOleEditor.warningText":"Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.","Common.Controllers.ExternalOleEditor.warningTitle":"Achtung","Common.Controllers.History.notcriticalErrorTitle":"Achtung","Common.Controllers.History.txtErrorLoadHistory":"Laden der Historie ist fehlgeschlagen ","Common.Controllers.Plugins.helpMoveMacros":"Um mit Makros zu arbeiten, wechseln Sie auf die Registerkarte Ansicht.","Common.Controllers.Plugins.helpMoveMacrosHeader":"Die verschobene Schaltfläche \"Makros\"","Common.Controllers.Plugins.helpUseMacros":"Die Schaltfläche \"Makros\" finden Sie hier.","Common.Controllers.Plugins.helpUseMacrosHeader":"Geänderter Zugriff auf Makros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Die Plugins wurden erfolgreich installiert. Sie können hier auf alle Hintergrund-Plugins zugreifen.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} wurde erfolgreich installiert. Sie können hier auf alle Hintergrund-Plugins zugreifen.","Common.Controllers.Plugins.textRunInstalledPlugins":"Installierte Plugins starten","Common.Controllers.Plugins.textRunPlugin":"Plugin starten","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"Um Dokumente zu vergleichen, gelten alle nachverfolgten Änderungen als akzeptiert. Möchten Sie weiter machen?","Common.Controllers.ReviewChanges.textAtLeast":"Mindestens","Common.Controllers.ReviewChanges.textAuto":"Automatisch","Common.Controllers.ReviewChanges.textBaseline":"Grundlinie","Common.Controllers.ReviewChanges.textBold":"Fett","Common.Controllers.ReviewChanges.textBreakBefore":"Seitenumbruch oberhalb","Common.Controllers.ReviewChanges.textCaps":"Alle Großbuchstaben","Common.Controllers.ReviewChanges.textCenter":"Zentriert ausrichten","Common.Controllers.ReviewChanges.textChar":"Zeichen-Ebene","Common.Controllers.ReviewChanges.textChart":"Diagramm","Common.Controllers.ReviewChanges.textColor":"Schriftfarbe","Common.Controllers.ReviewChanges.textContextual":"Kein Abstand zwischen Absätzen gleicher Formatierung","Common.Controllers.ReviewChanges.textDeleted":"Gelöscht:","Common.Controllers.ReviewChanges.textDStrikeout":"Doppeltes Durchstreichen","Common.Controllers.ReviewChanges.textEquation":"Gleichung","Common.Controllers.ReviewChanges.textExact":"Genau","Common.Controllers.ReviewChanges.textFirstLine":"Erste Zeile","Common.Controllers.ReviewChanges.textFontSize":"Schriftgrad","Common.Controllers.ReviewChanges.textFormatted":"Formatiert","Common.Controllers.ReviewChanges.textHighlight":"Texthervorhebungsfarbe","Common.Controllers.ReviewChanges.textImage":"Bild","Common.Controllers.ReviewChanges.textIndentLeft":"Einzug links","Common.Controllers.ReviewChanges.textIndentRight":"Einzug rechts","Common.Controllers.ReviewChanges.textInserted":"Eingefügt:","Common.Controllers.ReviewChanges.textItalic":"Kursiv","Common.Controllers.ReviewChanges.textJustify":"Zielgruppengerecht ausrichten","Common.Controllers.ReviewChanges.textKeepLines":"Absatz zusammenhalten","Common.Controllers.ReviewChanges.textKeepNext":"Absätze nicht trennen","Common.Controllers.ReviewChanges.textLeft":"Linksbündig ausrichten","Common.Controllers.ReviewChanges.textLineSpacing":"Zeilenabstand:","Common.Controllers.ReviewChanges.textMultiple":"Mehrfach","Common.Controllers.ReviewChanges.textNoBreakBefore":"Keinen Seitenumbruch vorher","Common.Controllers.ReviewChanges.textNoContextual":"Intervall zwischen den Absätzen im gleichen Stil hinzufügen","Common.Controllers.ReviewChanges.textNoKeepLines":"Halten Sie Linien nicht zusammen","Common.Controllers.ReviewChanges.textNoKeepNext":"Mit der nächsten nicht halten","Common.Controllers.ReviewChanges.textNot":"Nicht","Common.Controllers.ReviewChanges.textNoWidow":"Kein \"Widow-Control\"","Common.Controllers.ReviewChanges.textNum":"Nummerierung ändern","Common.Controllers.ReviewChanges.textOff":"{0} verwendet die Nachverfolgung von Änderungen nicht mehr.","Common.Controllers.ReviewChanges.textOffGlobal":"{0} hat die Nachverfolgung von Änderungen für alle deaktiviert.","Common.Controllers.ReviewChanges.textOn":"{0} verwendet jetzt die Nachverfolgung von Änderungen.","Common.Controllers.ReviewChanges.textOnGlobal":"{0} hat die Nachverfolgung von Änderungen für alle aktiviert.","Common.Controllers.ReviewChanges.textParaDeleted":"Absatz gelöscht","Common.Controllers.ReviewChanges.textParaFormatted":"Absatz ist formatiert","Common.Controllers.ReviewChanges.textParaInserted":"Absatz eingefügt","Common.Controllers.ReviewChanges.textParaMoveFromDown":"Nach unten verschoben","Common.Controllers.ReviewChanges.textParaMoveFromUp":"Nach oben verschoben","Common.Controllers.ReviewChanges.textParaMoveTo":"Verschoben:","Common.Controllers.ReviewChanges.textPosition":"Position","Common.Controllers.ReviewChanges.textRight":"Rechtsbündig ausrichten","Common.Controllers.ReviewChanges.textShape":"Form","Common.Controllers.ReviewChanges.textShd":"Hintergrundfarbe","Common.Controllers.ReviewChanges.textShow":"Änderungen anzeigen:","Common.Controllers.ReviewChanges.textSmallCaps":"Kapitälchen","Common.Controllers.ReviewChanges.textSpacing":"Abstand","Common.Controllers.ReviewChanges.textSpacingAfter":"Abstand nach","Common.Controllers.ReviewChanges.textSpacingBefore":"Abstand vor","Common.Controllers.ReviewChanges.textStrikeout":"Durchgestrichen","Common.Controllers.ReviewChanges.textSubScript":"Tiefgestellt","Common.Controllers.ReviewChanges.textSuperScript":"Hochgestellt","Common.Controllers.ReviewChanges.textTableChanged":"Tabelleneinstellungen geändert","Common.Controllers.ReviewChanges.textTableRowsAdd":"Tabellenzeilen hinzugefügt","Common.Controllers.ReviewChanges.textTableRowsDel":"Tabellenzeilen gelöscht","Common.Controllers.ReviewChanges.textTabs":"Registerkarten ändern","Common.Controllers.ReviewChanges.textTitleComparison":"Vergleichseinstellungen","Common.Controllers.ReviewChanges.textUnderline":"Unterstrichen","Common.Controllers.ReviewChanges.textUrl":"Dokument-URL einfügen","Common.Controllers.ReviewChanges.textWidow":"Widow Сontrol","Common.Controllers.ReviewChanges.textWord":"Wortebene","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Eine neue Zeile unten in der Tabelle hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Den Stil der Überschrift 1 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Den Stil der Überschrift 2 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Den Stil der Überschrift 3 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Aus dem ausgewählten Textfragment eine ungeordnete Aufzählungsliste erstellen oder eine neue beginnen.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach unten zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach links zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach rechts zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach oben zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBold":"Die Schriftart des ausgewählten Textfragments dunkler und schwerer als normal machen.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Zwischen zentrierter und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Die nächste Kombinationsfeldoption im Formular wählen.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Die vorherige Kombinationsfeldoption im Formular wählen.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Das aktuelle Dokumentfenster schließen.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Ein Menü oder ein modales Fenster schließen. Popups und Sprechblasen mit Kommentaren zurücksetzen und Änderungen überprüfen. Den Zeichen- und Löschmodus für Tabellen zurücksetzen. Drag-and-Drop für Text zurücksetzen. Den Markierungsauswahlmodus zurücksetzen. Den Formatübertragermodus zurücksetzen. Die Auswahl von Formen aufheben. Den Modus zum Hinzufügen von Formen zurücksetzen. Die Kopf-/Fußzeile verlassen. Das Ausfüllen von Formularen beenden.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Den ausgewählten Textabschnitt in die Zwischenablage des Computers senden. Der kopierte Text kann später an anderer Stelle im selben Dokument, in einem anderen Dokument oder in einem anderen Programm eingefügt werden.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Die Formatierung aus dem ausgewählten Fragment des aktuell bearbeiteten Textes kopieren. Die kopierte Formatierung kann später auf ein anderes Textfragment im selben Dokument angewendet werden.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Ein Copyright-Symbol innerhalb des aktuellen Dokuments und rechts vom Cursor einfügen.","Common.Controllers.Shortcuts.txtDescriptionCut":"Den ausgewählten Textabschnitt löschen und ihn in der Zwischenablage des Computers speichern. Der kopierte Text kann später an anderer Stelle im selben Dokument, in einem anderen Dokument oder in einem anderen Programm eingefügt werden.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Die Schriftgröße für das ausgewählte Textfragment um 1 Punkt verringern.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Ein Zeichen links vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Ein Wort/eine Auswahl/ein grafisches Objekt links vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Ein Zeichen rechts vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Ein Wort/eine Auswahl/ein grafisches Objekt rechts vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Wenn der Diagrammtitel ausgewählt ist und der Titel leer ist, bewegen Sie den Cursor an den Anfang der Zeile, andernfalls wählen Sie den Text aus.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Die letzte rückgängig gemachte Aktion wiederholen.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Den gesamten Dokumenttext mit Tabellen und Bildern auswählen.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Wenn die Form ausgewählt ist und keinen Inhalt enthält, erstellen Sie Inhalt und bewegen Sie den Cursor an den Anfang der Zeile. Wenn der Inhalt leer ist, bewegen Sie den Cursor dorthin. Andernfalls wählen Sie den gesamten Inhalt aus.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Die zuletzt ausgeführte Aktion rückgängig machen.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Innerhalb des aktuellen Dokuments und rechts vom Cursor einen Geviertstrich einfügen.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Innerhalb des aktuellen Dokuments und rechts vom Cursor einen Halbgeviertstrich einfügen.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Den aktuellen Absatz und beginnen Sie einen neuen beenden.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Einen neuen Absatz innerhalb einer Zelle beginnen.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Dem Gleichungsargument einen neuen Platzhalter hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Die Ausrichtungsebene des Operators nach links ändern (für die zweite Zeile der Gleichung mit einem erzwungenen Umbruch).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Die Ausrichtungsebene des Operators nach rechts ändern (für die zweite Zeile der Gleichung mit einem erzwungenen Umbruch).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Das Eurozeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Das Auslassungszeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Die Schriftgröße für das ausgewählte Textfragment um 1 Punkt erhöhen.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Einen Absatz von links schrittweise einrücken.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Einen Spaltenumbruch hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Eine Endnote einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"An der aktuellen Cursorposition eine Gleichung einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Eine Fußnote einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Fügen Sie einen Link ein, der zu einer Webadresse führt.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Einen Zeilenumbruch hinzufügen, ohne einen neuen Absatz zu beginnen.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Im mehrzeiligen Formular einen Zeilenumbruch hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"An der aktuellen Cursorposition einen Seitenumbruch einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Die aktuelle Seitenzahl an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Einem Absatz das Tabulatorzeichen hinzufügen (wenn sich der Cursor nicht am Anfang eines Absatzes befindet).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Einen Tabellenumbruch innerhalb der Tabelle einfügen.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Die Schriftart des ausgewählten Textfragments kursiv und leicht schräg machen.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Zwischen Blocksatz und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Einen Absatz linksbündig ausrichten.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach unten zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach links zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach rechts zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach oben zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Den Einzug für die ausgewählten Absätze vergrößern.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Den Einzug für die ausgewählten Absätze verkleinern.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Den Fokus auf das nächste Objekt nach dem aktuell ausgewählten verschieben.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Den Fokus auf das vorherige Objekt vor dem aktuell ausgewählten verschieben.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Den Cursor eine Zeile nach unten bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Den Cursor an das Ende des aktuell bearbeiteten Dokuments setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Den Cursor an das Ende der aktuell bearbeiteten Zeile setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Den Cursor ein Wort nach rechts bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Den Cursor ein Zeichen nach links bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Zur unteren Kopfzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Zur unteren Kopf-/Fußzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Zur nächsten Zelle in einer Tabellenzeile gehen.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Zum nächsten Formular wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Zur nächsten Seite im aktuell bearbeiteten Dokument wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Zur nächsten Zeile in einer Tabelle wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Zur vorherigen Zelle in einer Tabellenzeile wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Zum vorherigen Formular wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Zur vorherigen Seite im aktuell bearbeiteten Dokument wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Zur vorherigen Zeile in einer Tabelle wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Den Cursor um ein Zeichen nach rechts bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Den Cursor ganz an den Anfang des aktuell bearbeiteten Dokuments setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Den Cursor an den Anfang der aktuell bearbeiteten Zeile setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Den Cursor ganz an den Anfang der Seite setzen, die auf die aktuell bearbeitete Seite folgt.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Den Cursor ganz an den Anfang der Seite setzen, die der aktuell bearbeiteten Seite vorausgeht.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Den Cursor an den Anfang eines Wortes oder ein Wort nach links bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Den Cursor eine Zeile nach oben bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Zur oberen Kopfzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Zur oberen Kopf-/Fußzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"In Desktop-Editoren zur nächsten Dateiregisterkarte oder in Online-Editoren zur nächsten Browserregisterkarte wechseln.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Zwischen Steuerelementen navigieren, um in modalen Dialogen den Fokus auf das nächste Steuerelement zu legen.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Einen Bindestrich zwischen Zeichen erstellen, der nicht zum Beginnen einer neuen Zeile verwendet werden kann.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Ein Leerzeichen zwischen Zeichen erstellen, das nicht zum Beginnen einer neuen Zeile verwendet werden kann.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Das Chat-Panel in den Online-Editoren öffnen und eine Nachricht senden.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Ein Dateneingabefeld öffnen, in das man den Text des Kommentars eingeben kann.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Das Kommentarfeld öffnen, um Ihren eigenen Kommentar hinzuzufügen oder auf die Kommentare anderer Benutzer zu antworten.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Das Kontextmenü des ausgewählten Elements öffnen.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Das Standarddialogfeld zur Auswahl einer vorhandenen Datei öffnen. Wenn Sie die Datei in diesem Dialogfeld auswählen und auf „Öffnen“ klicken, wird die Datei in einem neuen Tab oder Fenster von Desktop Editors geöffnet.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Das Dateifenster öffnen, um das aktuelle Dokument zu speichern, herunterzuladen, zu drucken, seine Informationen anzuzeigen, ein neues Dokument zu erstellen oder ein vorhandenes zu öffnen, auf das Hilfecenter des Dokumenteditors oder auf erweiterte Einstellungen zuzugreifen.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Das Menü „Suchen und Ersetzen“ mit dem Ersetzungsfeld öffnen, um ein oder mehrere Vorkommen der gefundenen Zeichen zu ersetzen.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Das Dialogfenster „Suchen“ öffnen, um mit der Suche nach einem Zeichen/Wort/einer Phrase im aktuell bearbeiteten Dokument zu beginnen.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Das Hilfemenü des Dokumenteditors öffnen.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Den zuvor kopierten Text aus der Zwischenablage des Computers an der aktuellen Cursorposition einfügen. Der Text kann zuvor aus demselben Dokument, einem anderen Dokument oder einem anderen Programm kopiert worden sein.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Die zuvor kopierte Formatierung auf den Text im aktuell bearbeiteten Dokument anwenden.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Den zuvor kopierten Text aus der Zwischenablage des Computers an der aktuellen Cursorposition einfügen, ohne die ursprüngliche Formatierung beizubehalten. Der Text kann zuvor aus demselben Dokument, einem anderen Dokument oder einem anderen Programm kopiert worden sein.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"In Desktop-Editoren zur vorherigen Dateiregisterkarte oder in Online-Editoren zur vorherigen Browserregisterkarte wechseln.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Zwischen Steuerelementen navigieren, um in modalen Dialogen den Fokus auf das vorherige Steuerelement zu legen.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Das Dokument mit einem der verfügbaren Drucker ausdrucken oder es als Datei speichern.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Das eingetragene Markenzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Den ausgewählten Unicode-Code durch ein Symbol ersetzen.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Die Formatierung des ausgewählten Textfragments löschen.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Zwischen rechts- und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionSave":"Alle Änderungen am aktuell mit dem Dokumenteditor bearbeiteten Dokument speichern. Die aktive Datei wird mit dem aktuellen Dateinamen, Speicherort und Dateiformat gespeichert.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Das Fenster „Herunterladen als...“ öffnen, um das aktuell bearbeitete Dokument in einem der unterstützten Formate auf der Festplatte Ihres Computers zu speichern.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Im Dokument etwa eine sichtbare Seite nach unten scrollen.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Im Dokument etwa eine sichtbare Seite nach oben scrollen.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Ein Zeichen links von der Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Ein Textfragment vom Cursor bis zum Anfang eines Wortes auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Den Cursor eine Zeile nach unten bewegen und alle Symbole zwischen der vorherigen und der aktuellen Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Den Cursor eine Zeile nach oben bewegen und alle Symbole zwischen der vorherigen und der aktuellen Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Den Seitenteil von der Cursorposition bis zum unteren Teil des Bildschirms auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Den Seitenteil von der Cursorposition bis zum oberen Teil des Bildschirms auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Ein Zeichen rechts von der Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Ein Textfragment vom Cursor bis zum Ende eines Wortes auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Ein Textfragment vom Cursor bis zum Anfang der nächsten Seite auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Ein Textfragment vom Cursor bis zum Anfang der vorherigen Seite auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Ein Textfragment vom Cursor bis zum Ende des Dokuments auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Ein Textfragment vom Cursor bis zum Ende der aktuellen Zeile auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Ein Textfragment vom Cursor bis zum Anfang des Dokuments auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Ein Textfragment vom Cursor bis zum Anfang der aktuellen Zeile auswählen.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Die Anzeige nicht druckbarer Zeichen ein- oder ausblenden.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Das bedingte Trennzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Die Quellformatierung des kopierten Textes beibehalten.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Den Text ohne seine ursprüngliche Formatierung einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Die kopierte Tabelle als verschachtelte Tabelle in die ausgewählte Zelle der vorhandenen Tabelle einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Den Inhalt der vorhandenen Tabelle durch die kopierten Daten ersetzen.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Aktiviert/deaktiviert die Übertragung von in der Anwendung ausgeführten Aktionen für Bildschirmleseprogramme.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Die Listen-/Einzugsebene erhöhen (mit dem Cursor am Anfang eines Absatzes).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Die Listen-/Einzugsebene verkleinern (mit dem Cursor am Anfang eines Absatzes).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Das ausgewählte Textfragment mit einer Linie durchstreichen, die durch die Buchstaben verläuft.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Das ausgewählte Textfragment verkleinern und es im unteren Teil der Textzeile platzieren, z.B. wie bei chemischen Formeln.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Das ausgewählte Textfragment verkleinern und es im oberen Teil der Textzeile platzieren, z.B. wie bei Brüchen.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Das Markenzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Das ausgewählte Textfragment mit einer Linie unterhalb der Buchstaben unterstreichen.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Schrittweise einen Absatzeinzug von links entfernen.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Felder aktualisieren (z. B. Inhaltsverzeichnis).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Klicken Sie auf einen Link (wobei sich der Cursor im Link befindet).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Den Zoom-Parameter des aktuellen Dokuments auf den Standardwert von 100 % zurücksetzen.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Das aktuell bearbeitete Dokument vergrößern.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Das aktuell bearbeitete Dokument verkleinern.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Fett","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Fläche","Common.define.chartData.textAreaStacked":"Gestapelte Fläche","Common.define.chartData.textAreaStackedPer":"100% Gestapelte Fläche","Common.define.chartData.textBar":"Balken","Common.define.chartData.textBarNormal":"Gruppierte Spalte","Common.define.chartData.textBarNormal3d":"Gruppierte 3D-Spalte","Common.define.chartData.textBarNormal3dPerspective":"3D-Spalte","Common.define.chartData.textBarStacked":"Gestapelte Säulen","Common.define.chartData.textBarStacked3d":"Gestapelte 3D-Spalte","Common.define.chartData.textBarStackedPer":"100% Gestapelte Spalte","Common.define.chartData.textBarStackedPer3d":"3-D 100% Gestapelte Spalte","Common.define.chartData.textCharts":"Diagramme","Common.define.chartData.textColumn":"Spalte","Common.define.chartData.textCombo":"Verbund","Common.define.chartData.textComboAreaBar":"Gestapelte Flächen/Gruppierte Säulen","Common.define.chartData.textComboBarLine":"Gruppierte Spalte - Linie","Common.define.chartData.textComboBarLineSecondary":"Gruppierte Spalte/Linie auf der Sekundärachse","Common.define.chartData.textComboCustom":"Benutzerdefinierte Kombination","Common.define.chartData.textDoughnut":"Ring","Common.define.chartData.textHBarNormal":"Gruppierte Balken","Common.define.chartData.textHBarNormal3d":"Gruppierte 3D-Balken","Common.define.chartData.textHBarStacked":"Gestapelte Balken","Common.define.chartData.textHBarStacked3d":"Gestapelte 3D-Balken","Common.define.chartData.textHBarStackedPer":"100% Gestapelte Balken","Common.define.chartData.textHBarStackedPer3d":"3-D 100% Gestapelte Balken","Common.define.chartData.textLine":"Linie","Common.define.chartData.textLine3d":"3D-Linie","Common.define.chartData.textLineMarker":"Linie mit Markierungen","Common.define.chartData.textLineStacked":"Gestapelte Linie","Common.define.chartData.textLineStackedMarker":"Gestapelte Linie mit Markierungen","Common.define.chartData.textLineStackedPer":"100% Gestapelte Linie","Common.define.chartData.textLineStackedPerMarker":"100% Gestapelte Linie mit Markierungen","Common.define.chartData.textPie":"Kuchendiagramm","Common.define.chartData.textPie3d":"3D-Kuchendiagramm","Common.define.chartData.textPoint":"Punkt (XY)","Common.define.chartData.textRadar":"Radar","Common.define.chartData.textRadarFilled":"Gefülltes Radardiagramm","Common.define.chartData.textRadarMarker":"Radar mit Markierungen","Common.define.chartData.textScatter":"Punkte","Common.define.chartData.textScatterLine":"Punkte mit geraden Linien","Common.define.chartData.textScatterLineMarker":"Punkte mit geraden Linien und Markierungen","Common.define.chartData.textScatterSmooth":"Punkte mit interpolierten Linien","Common.define.chartData.textScatterSmoothMarker":"Punkte mit interpolierten Linien und Markierungen","Common.define.chartData.textStock":"Kurs","Common.define.chartData.textSurface":"Oberfläche","Common.define.smartArt.textAccentedPicture":"Bild mit Akzenten","Common.define.smartArt.textAccentProcess":"Akzentprozess","Common.define.smartArt.textAlternatingFlow":"Alternierender Fluss","Common.define.smartArt.textAlternatingHexagons":"Alternierende Sechsecke","Common.define.smartArt.textAlternatingPictureBlocks":"Alternierende Bildblöcke","Common.define.smartArt.textAlternatingPictureCircles":"Alternierende Bildblöcke","Common.define.smartArt.textArchitectureLayout":"Architekturlayout","Common.define.smartArt.textArrowRibbon":"Pfeilband","Common.define.smartArt.textAscendingPictureAccentProcess":"Aufsteigender Prozess mit Bildakzenten","Common.define.smartArt.textBalance":"Kontostand","Common.define.smartArt.textBasicBendingProcess":"Einfacher umgebrochener Prozess","Common.define.smartArt.textBasicBlockList":"Einfache Blockliste","Common.define.smartArt.textBasicChevronProcess":"Einfacher Chevronprozess","Common.define.smartArt.textBasicCycle":"Einfacher Kreis","Common.define.smartArt.textBasicMatrix":"Einfache Matrix","Common.define.smartArt.textBasicPie":"Einfaches Kuchendiagramm","Common.define.smartArt.textBasicProcess":"Einfacher Prozess","Common.define.smartArt.textBasicPyramid":"Einfache Pyramide","Common.define.smartArt.textBasicRadial":"Einfaches Radial","Common.define.smartArt.textBasicTarget":"Einfaches Ziel","Common.define.smartArt.textBasicTimeline":"Einfache Zeitachse","Common.define.smartArt.textBasicVenn":"Einfaches Venn","Common.define.smartArt.textBendingPictureAccentList":"Umgebrochene Bildakzentliste","Common.define.smartArt.textBendingPictureBlocks":"Umgebrochene Bildblöcke","Common.define.smartArt.textBendingPictureCaption":"Umgebrochene Bildbeschriftung","Common.define.smartArt.textBendingPictureCaptionList":"Umgebrochene Bildbeschriftungsliste","Common.define.smartArt.textBendingPictureSemiTranparentText":"Umgebrochener halbtransparenter Bildtext","Common.define.smartArt.textBlockCycle":"Blockkreis","Common.define.smartArt.textBubblePictureList":"Blasenbildliste","Common.define.smartArt.textCaptionedPictures":"Bilder mit Beschriftungen","Common.define.smartArt.textChevronAccentProcess":"Chevronakzentprozess","Common.define.smartArt.textChevronList":"Chevronliste","Common.define.smartArt.textCircleAccentTimeline":"Zeitachse mit Kreisakzent","Common.define.smartArt.textCircleArrowProcess":"Kreisförmiger Pfeilprozess","Common.define.smartArt.textCirclePictureHierarchy":"Bilderhierarchie mit Kreisakzent","Common.define.smartArt.textCircleProcess":"Kreisprozess","Common.define.smartArt.textCircleRelationship":"Kreisbeziehung","Common.define.smartArt.textCircularBendingProcess":"Kreisförmiger umgebrochener Prozess","Common.define.smartArt.textCircularPictureCallout":"Bildlegende mit Kreisakzent","Common.define.smartArt.textClosedChevronProcess":"Geschlossener Chevronprozess","Common.define.smartArt.textContinuousArrowProcess":"Fortlaufender Pfeilprozess","Common.define.smartArt.textContinuousBlockProcess":"Fortlaufender Blockprozess","Common.define.smartArt.textContinuousCycle":"Fortlaufender Kreis","Common.define.smartArt.textContinuousPictureList":"Fortlaufende Bildliste","Common.define.smartArt.textConvergingArrows":"Zusammenlaufende Pfeile","Common.define.smartArt.textConvergingRadial":"Zusammenlaufendes Radial","Common.define.smartArt.textConvergingText":"Zusammenlaufender Text","Common.define.smartArt.textCounterbalanceArrows":"Gegengewichtspfeile","Common.define.smartArt.textCycle":"Zyklus","Common.define.smartArt.textCycleMatrix":"Kreismatrix","Common.define.smartArt.textDescendingBlockList":"Absteigende Blockliste","Common.define.smartArt.textDescendingProcess":"Absteigender Prozess","Common.define.smartArt.textDetailedProcess":"Detaillierter Prozess","Common.define.smartArt.textDivergingArrows":"Auseinanderlaufende Pfeile","Common.define.smartArt.textDivergingRadial":"Auseinanderlaufendes Radial","Common.define.smartArt.textEquation":"Gleichung","Common.define.smartArt.textFramedTextPicture":"Umrahmte Textgrafik","Common.define.smartArt.textFunnel":"Trichter","Common.define.smartArt.textGear":"Zahnrad","Common.define.smartArt.textGridMatrix":"Rastermatrix","Common.define.smartArt.textGroupedList":"Gruppierte Liste","Common.define.smartArt.textHalfCircleOrganizationChart":"Halbkreisorganigramm","Common.define.smartArt.textHexagonCluster":"Sechseck-Cluster","Common.define.smartArt.textHexagonRadial":"Sechseck Radial","Common.define.smartArt.textHierarchy":"Hierarchie","Common.define.smartArt.textHierarchyList":"Hierarchieliste","Common.define.smartArt.textHorizontalBulletList":"Horizontale Aufzählungsliste","Common.define.smartArt.textHorizontalHierarchy":"Horizontale Hierarchie","Common.define.smartArt.textHorizontalLabeledHierarchy":"Horizontal beschriftete Hierarchie","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Horizontale Hierarchie mit mehreren Ebenen","Common.define.smartArt.textHorizontalOrganizationChart":"Horizontales Organigramm","Common.define.smartArt.textHorizontalPictureList":"Horizontale Bildliste","Common.define.smartArt.textIncreasingArrowProcess":"Wachsender Pfeil-Prozess","Common.define.smartArt.textIncreasingCircleProcess":"Wachsender Kreis-Prozess","Common.define.smartArt.textInterconnectedBlockProcess":"Vernetzter Blockprozess","Common.define.smartArt.textInterconnectedRings":"Verbundene Ringe","Common.define.smartArt.textInvertedPyramid":"Umgekehrte Pyramide","Common.define.smartArt.textLabeledHierarchy":"Beschriftete Hierarchie","Common.define.smartArt.textLinearVenn":"Lineares Venn","Common.define.smartArt.textLinedList":"Liste mit Linien","Common.define.smartArt.textList":"Liste","Common.define.smartArt.textMatrix":"Matrix","Common.define.smartArt.textMultidirectionalCycle":"Kreis mit mehreren Richtungen","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigramm mit Name und Titel","Common.define.smartArt.textNestedTarget":"Geschachteltes Ziel","Common.define.smartArt.textNondirectionalCycle":"Richtungsloser Kreis","Common.define.smartArt.textOpposingArrows":"Entgegengesetzte Pfeile","Common.define.smartArt.textOpposingIdeas":"Konträre Ansichten","Common.define.smartArt.textOrganizationChart":"Organigramm","Common.define.smartArt.textOther":"Sonstiges","Common.define.smartArt.textPhasedProcess":"Phasenprozess","Common.define.smartArt.textPicture":"Bild","Common.define.smartArt.textPictureAccentBlocks":"Bildakzentblöcke","Common.define.smartArt.textPictureAccentList":"Bildakzentliste","Common.define.smartArt.textPictureAccentProcess":"Bildakzentprozess","Common.define.smartArt.textPictureCaptionList":"Bildbeschriftungsliste","Common.define.smartArt.textPictureFrame":"Bildrahmen","Common.define.smartArt.textPictureGrid":"Bildraster","Common.define.smartArt.textPictureLineup":"Bildanordnung","Common.define.smartArt.textPictureOrganizationChart":"Bildorganigramm","Common.define.smartArt.textPictureStrips":"Bildstreifen","Common.define.smartArt.textPieProcess":"Kuchendiagrammprozess","Common.define.smartArt.textPlusAndMinus":"Plus und Minus","Common.define.smartArt.textProcess":"Prozess","Common.define.smartArt.textProcessArrows":"Prozesspfeile","Common.define.smartArt.textProcessList":"Prozessliste","Common.define.smartArt.textPyramid":"Pyramide","Common.define.smartArt.textPyramidList":"Pyramidenliste","Common.define.smartArt.textRadialCluster":"Radialer Cluster","Common.define.smartArt.textRadialCycle":"Radialkreis","Common.define.smartArt.textRadialList":"Radialliste","Common.define.smartArt.textRadialPictureList":"Radiale Bildliste","Common.define.smartArt.textRadialVenn":"Radialvenn","Common.define.smartArt.textRandomToResultProcess":"Zufallsergebnisprozess","Common.define.smartArt.textRelationship":"Beziehung","Common.define.smartArt.textRepeatingBendingProcess":"Wiederholter umgebrochener Prozess","Common.define.smartArt.textReverseList":"Umgekehrte Liste","Common.define.smartArt.textSegmentedCycle":"Segmentierter Kreis","Common.define.smartArt.textSegmentedProcess":"Segmentierter Prozess","Common.define.smartArt.textSegmentedPyramid":"Segmentierte Pyramide","Common.define.smartArt.textSnapshotPictureList":"Momentaufnahme-Bildliste","Common.define.smartArt.textSpiralPicture":"Spiralförmige Grafik","Common.define.smartArt.textSquareAccentList":"Liste mit quadratischen Akzenten","Common.define.smartArt.textStackedList":"Gestapelte Liste","Common.define.smartArt.textStackedVenn":"Gestapeltes Venn","Common.define.smartArt.textStaggeredProcess":"Gestaffelter Prozess","Common.define.smartArt.textStepDownProcess":"Prozess mit absteigenden Schritten","Common.define.smartArt.textStepUpProcess":"Prozess mit aufsteigenden Schritten","Common.define.smartArt.textSubStepProcess":"Unterschrittprozess","Common.define.smartArt.textTabbedArc":"Registerkartenbogen","Common.define.smartArt.textTableHierarchy":"Tabellenhierarchie","Common.define.smartArt.textTableList":"Tabellenliste","Common.define.smartArt.textTabList":"Registerkartenliste","Common.define.smartArt.textTargetList":"Zielliste","Common.define.smartArt.textTextCycle":"Textkreis","Common.define.smartArt.textThemePictureAccent":"Designbildakzent","Common.define.smartArt.textThemePictureAlternatingAccent":"Alternierender Designbildakzent","Common.define.smartArt.textThemePictureGrid":"Designbildraster","Common.define.smartArt.textTitledMatrix":"Betitelte Matrix","Common.define.smartArt.textTitledPictureAccentList":"Bildakzentliste mit Titel","Common.define.smartArt.textTitledPictureBlocks":"Titelbildblöcke","Common.define.smartArt.textTitlePictureLineup":"Titelbildanordnung","Common.define.smartArt.textTrapezoidList":"Trapezförmige Liste","Common.define.smartArt.textUpwardArrow":"Pfeil nach oben","Common.define.smartArt.textVaryingWidthList":"Liste mit variabler Breite","Common.define.smartArt.textVerticalAccentList":"Liste mit vertikalen Akzenten","Common.define.smartArt.textVerticalArrowList":"Vertical Arrow List","Common.define.smartArt.textVerticalBendingProcess":"Vertikaler umgebrochener Prozess","Common.define.smartArt.textVerticalBlockList":"Vertikale Blockliste","Common.define.smartArt.textVerticalBoxList":"Vertikale Feldliste","Common.define.smartArt.textVerticalBracketList":"Liste mit vertikalen Klammerakzenten","Common.define.smartArt.textVerticalBulletList":"Vertikale Aufzählung","Common.define.smartArt.textVerticalChevronList":"Vertikale Chevronliste","Common.define.smartArt.textVerticalCircleList":"Liste mit vertikalen Kreisakzenten","Common.define.smartArt.textVerticalCurvedList":"Liste mit vertikalen Kurven","Common.define.smartArt.textVerticalEquation":"Vertikale Formel","Common.define.smartArt.textVerticalPictureAccentList":"Vertikale Bildakzentliste","Common.define.smartArt.textVerticalPictureList":"Vertikale Bildliste","Common.define.smartArt.textVerticalProcess":"Vertikaler Prozess","Common.Translation.textMoreButton":"Mehr","Common.Translation.tipFileLocked":"Das Dokument ist für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die Datei später als lokale Kopie speichern.","Common.Translation.tipFileReadOnly":"Das Dokument ist schreibgeschützt und für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die lokale Kopie später speichern.","Common.Translation.warnFileLocked":"Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.","Common.Translation.warnFileLockedBtnEdit":"Kopie erstellen","Common.Translation.warnFileLockedBtnView":"Schreibgeschützt öffnen","Common.UI.ButtonColored.textAutoColor":"Automatisch","Common.UI.ButtonColored.textEyedropper":"Pipette","Common.UI.ButtonColored.textNewColor":"Mehr Farben","Common.UI.Calendar.textApril":"April","Common.UI.Calendar.textAugust":"August","Common.UI.Calendar.textDecember":"Dezember","Common.UI.Calendar.textFebruary":"Februar","Common.UI.Calendar.textJanuary":"Januar","Common.UI.Calendar.textJuly":"Juli","Common.UI.Calendar.textJune":"Juni","Common.UI.Calendar.textMarch":"März","Common.UI.Calendar.textMay":"Mai","Common.UI.Calendar.textMonths":"Monate","Common.UI.Calendar.textNovember":"November","Common.UI.Calendar.textOctober":"Oktober","Common.UI.Calendar.textSeptember":"September","Common.UI.Calendar.textShortApril":"Apr","Common.UI.Calendar.textShortAugust":"Aug","Common.UI.Calendar.textShortDecember":"Dez","Common.UI.Calendar.textShortFebruary":"Feb","Common.UI.Calendar.textShortFriday":"Fr","Common.UI.Calendar.textShortJanuary":"Jan","Common.UI.Calendar.textShortJuly":"Jul","Common.UI.Calendar.textShortJune":"Jun","Common.UI.Calendar.textShortMarch":"Mrz","Common.UI.Calendar.textShortMay":"Mai","Common.UI.Calendar.textShortMonday":"Mo","Common.UI.Calendar.textShortNovember":"Nov","Common.UI.Calendar.textShortOctober":"Okt","Common.UI.Calendar.textShortSaturday":"Sa","Common.UI.Calendar.textShortSeptember":"Sep","Common.UI.Calendar.textShortSunday":"Son","Common.UI.Calendar.textShortThursday":"Do","Common.UI.Calendar.textShortTuesday":"Di","Common.UI.Calendar.textShortWednesday":"Mi","Common.UI.Calendar.textYears":"Jahre","Common.UI.ComboBorderSize.txtNoBorders":"Keine Rahmen","Common.UI.ComboBorderSizeEditable.txtNoBorders":"Keine Rahmen","Common.UI.ComboDataView.emptyComboText":"Keine Formate","Common.UI.ExtendedColorDialog.addButtonText":"Hinzufügen","Common.UI.ExtendedColorDialog.textCurrent":"Aktuell","Common.UI.ExtendedColorDialog.textHexErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 000000 und FFFFFF ein.","Common.UI.ExtendedColorDialog.textNew":"Neu","Common.UI.ExtendedColorDialog.textRGBErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen numerischen Wert zwischen 0 und 255 ein.","Common.UI.HSBColorPicker.textNoColor":"Ohne Farbe","Common.UI.InputField.txtEmpty":"Dieses Feld ist erforderlich","Common.UI.InputFieldBtnCalendar.textDate":"Datum auswählen","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Passwort ausblenden","Common.UI.InputFieldBtnPassword.textHintHold":"Lang drücken, um das Passwort anzuzeigen","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Password anzeigen","Common.UI.SearchBar.textFind":"Suchen","Common.UI.SearchBar.tipCloseSearch":"Suche schließen","Common.UI.SearchBar.tipNextResult":"Nächstes Ergebnis","Common.UI.SearchBar.tipOpenAdvancedSettings":"Erweiterte Einstellungen öffnen","Common.UI.SearchBar.tipPreviousResult":"Vorheriges Ergebnis","Common.UI.SearchDialog.textHighlight":"Ergebnisse hervorheben","Common.UI.SearchDialog.textMatchCase":"Groß-/Kleinschreibung beachten","Common.UI.SearchDialog.textReplaceDef":"Geben Sie den Ersetzungstext ein","Common.UI.SearchDialog.textSearchStart":"Geben Sie den Text hier ein","Common.UI.SearchDialog.textTitle":"Suchen und ersetzen","Common.UI.SearchDialog.textTitle2":"Suchen","Common.UI.SearchDialog.textWholeWords":"Nur ganze Wörter","Common.UI.SearchDialog.txtBtnHideReplace":"Ersetzen verbergen","Common.UI.SearchDialog.txtBtnReplace":"Ersetzen","Common.UI.SearchDialog.txtBtnReplaceAll":"Alle ersetzen","Common.UI.SynchronizeTip.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"Neu","Common.UI.SynchronizeTip.textSynchronize":"Das Dokument wurde von einem anderen Benutzer geändert.
Bitte klicken hier, um Ihre Änderungen zu speichern und die Aktualisierungen neu zu laden.","Common.UI.ThemeColorPalette.textRecentColors":"Kürzlich verwendete Farben","Common.UI.ThemeColorPalette.textStandartColors":"Standardfarben","Common.UI.ThemeColorPalette.textThemeColors":"Themenfarben","Common.UI.ThemeColorPalette.textTransparent":"Transparent","Common.UI.Themes.txtThemeClassicLight":"Klassisch Hell","Common.UI.Themes.txtThemeContrastDark":"Dunkler Kontrast","Common.UI.Themes.txtThemeDark":"Dunkel","Common.UI.Themes.txtThemeGray":"Grau","Common.UI.Themes.txtThemeLight":"Hell","Common.UI.Themes.txtThemeModernDark":"Modern Dunkel","Common.UI.Themes.txtThemeModernLight":"Modern Hell","Common.UI.Themes.txtThemeSystem":"Wie im System","Common.UI.Themes.txtThemeWhite":"Weiß","Common.UI.Window.cancelButtonText":"Abbrechen","Common.UI.Window.closeButtonText":"Schließen","Common.UI.Window.noButtonText":"Nein","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Bestätigung","Common.UI.Window.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.UI.Window.textError":"Fehler","Common.UI.Window.textInformation":"Information","Common.UI.Window.textWarning":"Achtung","Common.UI.Window.yesButtonText":"Ja","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Strg","Common.Utils.String.textShift":"Umschalt","Common.Utils.ThemeColor.txtaccent":"Akzent","Common.Utils.ThemeColor.txtAqua":"Dunkeltürkis","Common.Utils.ThemeColor.txtbackground":"Hintergrund","Common.Utils.ThemeColor.txtBlack":"schwarz","Common.Utils.ThemeColor.txtBlue":"blau","Common.Utils.ThemeColor.txtBrightGreen":"Helles Grün","Common.Utils.ThemeColor.txtBrown":"Braun","Common.Utils.ThemeColor.txtDarkBlue":"Dunkelblau","Common.Utils.ThemeColor.txtDarker":"Dunkler","Common.Utils.ThemeColor.txtDarkGray":"Dunkelgrau","Common.Utils.ThemeColor.txtDarkGreen":"Dunkelgrün","Common.Utils.ThemeColor.txtDarkPurple":"Dunkelviolett","Common.Utils.ThemeColor.txtDarkRed":"Dunkelrot","Common.Utils.ThemeColor.txtDarkTeal":"Dunkelblaugrün","Common.Utils.ThemeColor.txtDarkYellow":"Dunkelgelb","Common.Utils.ThemeColor.txtGold":"Gold","Common.Utils.ThemeColor.txtGray":"grau","Common.Utils.ThemeColor.txtGreen":"grün","Common.Utils.ThemeColor.txtIndigo":"Indigo","Common.Utils.ThemeColor.txtLavender":"Lavendel","Common.Utils.ThemeColor.txtLightBlue":"Hellblau","Common.Utils.ThemeColor.txtLighter":"Heller","Common.Utils.ThemeColor.txtLightGray":"Hellgrau","Common.Utils.ThemeColor.txtLightGreen":"Hellgrün","Common.Utils.ThemeColor.txtLightOrange":"Hellorange","Common.Utils.ThemeColor.txtLightYellow":"Hellgelb","Common.Utils.ThemeColor.txtOrange":"Orange","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Lila","Common.Utils.ThemeColor.txtRed":"rot","Common.Utils.ThemeColor.txtRose":"Rosa","Common.Utils.ThemeColor.txtSkyBlue":"Himmelblau","Common.Utils.ThemeColor.txtTeal":"Türkisblau","Common.Utils.ThemeColor.txttext":"Text","Common.Utils.ThemeColor.txtTurquosie":"Türkis","Common.Utils.ThemeColor.txtViolet":"Violet","Common.Utils.ThemeColor.txtWhite":"weiß","Common.Utils.ThemeColor.txtYellow":"gelb","Common.Views.About.txtAddress":"Adresse:","Common.Views.About.txtLicensee":"LIZENZNEHMER","Common.Views.About.txtLicensor":"LIZENZGEBER","Common.Views.About.txtMail":"E-Mail-Adresse: ","Common.Views.About.txtPoweredBy":"Entwickelt von","Common.Views.About.txtTel":"Tel.: ","Common.Views.About.txtVersion":"Version ","Common.Views.AutoCorrectDialog.textAdd":"Hinzufügen","Common.Views.AutoCorrectDialog.textApplyText":"Bei der Eingabe anwenden","Common.Views.AutoCorrectDialog.textAutoCorrect":"Autokorrektur für Text","Common.Views.AutoCorrectDialog.textAutoFormat":"Automatisches Formatieren während der Eingabe","Common.Views.AutoCorrectDialog.textBulleted":"Automatische Aufzählungen","Common.Views.AutoCorrectDialog.textBy":"Nach","Common.Views.AutoCorrectDialog.textDelete":"Löschen","Common.Views.AutoCorrectDialog.textDoubleSpaces":"Punkt mit doppeltem Leerzeichen hinzufügen","Common.Views.AutoCorrectDialog.textFLCells":"Jede Tabellenzelle mit einem Großbuchstaben beginnen","Common.Views.AutoCorrectDialog.textFLDont":"Großbuchstaben nicht verwenden nach","Common.Views.AutoCorrectDialog.textFLSentence":"Jeden Satz mit einem Großbuchstaben beginnen","Common.Views.AutoCorrectDialog.textForLangFL":"Ausnahmen für die Sprache:","Common.Views.AutoCorrectDialog.textHyperlink":"Internet- und Netzwerkpfade mit Links","Common.Views.AutoCorrectDialog.textHyphens":"Bindestriche (--) mit Gedankenstrich (—)","Common.Views.AutoCorrectDialog.textMathCorrect":"Mathematische Autokorrektur","Common.Views.AutoCorrectDialog.textNumbered":"Automatische nummerierte Listen","Common.Views.AutoCorrectDialog.textQuotes":"\"Gerade Anführungszeichen\" mit \"intelligenten Anführungszeichen\"","Common.Views.AutoCorrectDialog.textRecognized":"Erkannte Funktionen","Common.Views.AutoCorrectDialog.textRecognizedDesc":"Die folgenden Ausdrücke sind erkannte mathematische Funktionen. Diese werden nicht automatisch kursiviert.","Common.Views.AutoCorrectDialog.textReplace":"Ersetzen","Common.Views.AutoCorrectDialog.textReplaceText":"Bei der Eingabe ersetzen","Common.Views.AutoCorrectDialog.textReplaceType":"Text bei der Eingabe ersetzen","Common.Views.AutoCorrectDialog.textReset":"Zurücksetzen","Common.Views.AutoCorrectDialog.textResetAll":"Zurücksetzen auf die Standardeinstellungen","Common.Views.AutoCorrectDialog.textRestore":"Wiederherstellen","Common.Views.AutoCorrectDialog.textTitle":"Automatische Korrektur","Common.Views.AutoCorrectDialog.textWarnAddFL":"Ausnahmen dürfen nur Groß- oder Kleinbuchstaben enthalten.","Common.Views.AutoCorrectDialog.textWarnAddRec":"Erkannte Funktionen sollen nur groß- oder kleingeschriebene Buchstaben von A bis Z beinhalten.","Common.Views.AutoCorrectDialog.textWarnResetFL":"Alle von Ihnen hinzugefügten Ausnahmen werden entfernt und die entfernten werden wiederhergestellt. Möchten Sie fortfahren?","Common.Views.AutoCorrectDialog.textWarnResetRec":"Alle hinzugefügten Ausdrücke werden entfernt und die gelöschten Ausdrücke werden zurückgestellt. Möchten Sie fortsetzen?","Common.Views.AutoCorrectDialog.warnReplace":"Es gibt schon einen Autokorrektur-Eintrag für %1. Möchten Sie dieses ersetzen?","Common.Views.AutoCorrectDialog.warnReset":"Hinzugefügte Autokorrektur wird entfernt und geänderte Autokorrektur wird zurückgestellt. Möchten Sie trotzdem fortsetzen?","Common.Views.AutoCorrectDialog.warnRestore":"Der Autokorrektur-Eintrag für %1 wird zurückgestellt. Möchten Sie fortsetzen?","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Chat schließen","Common.Views.Chat.textEnterMessage":"Geben Sie Ihre Nachricht hier ein","Common.Views.Chat.textSend":"Senden","Common.Views.Comments.mniAuthorAsc":"Verfasser (A-Z)","Common.Views.Comments.mniAuthorDesc":"Verfasser (Z-A)","Common.Views.Comments.mniDateAsc":"Älteste zuerst","Common.Views.Comments.mniDateDesc":"Neueste zuerst","Common.Views.Comments.mniFilterComments":"Kommentare anzeigen","Common.Views.Comments.mniFilterGroups":"Nach Gruppe filtern","Common.Views.Comments.mniPositionAsc":"Von oben","Common.Views.Comments.mniPositionDesc":"Von unten","Common.Views.Comments.textAdd":"Hinzufügen","Common.Views.Comments.textAddComment":"Kommentar hinzufügen","Common.Views.Comments.textAddCommentToDoc":"Kommentar zum Dokument hinzufügen","Common.Views.Comments.textAddReply":"Antwort hinzufügen","Common.Views.Comments.textAll":"Alle","Common.Views.Comments.textAnonym":"Gast","Common.Views.Comments.textCancel":"Abbrechen","Common.Views.Comments.textClose":"Schließen","Common.Views.Comments.textClosePanel":"Kommentare schließen","Common.Views.Comments.textComment":"Kommentar","Common.Views.Comments.textComments":"Kommentare","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Geben Sie Ihren Kommentar hier ein","Common.Views.Comments.textHintAddComment":"Kommentar hinzufügen","Common.Views.Comments.textOpen":"Offen","Common.Views.Comments.textOpenAgain":"Erneut öffnen","Common.Views.Comments.textReply":"Antworten","Common.Views.Comments.textResolve":"Lösen","Common.Views.Comments.textResolved":"Gelöst","Common.Views.Comments.textSort":"Kommentare sortieren","Common.Views.Comments.textSortFilter":"Kommentare sortieren und filtern","Common.Views.Comments.textSortFilterMore":"Sortieren, filtern und mehr","Common.Views.Comments.textSortMore":"Sortieren und mehr","Common.Views.Comments.textViewResolved":"Sie haben keine Berechtigung, den Kommentar erneut zu öffnen","Common.Views.Comments.txtEmpty":"Das Dokument enthält keine Kommentare.","Common.Views.CopyWarningDialog.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.Views.CopyWarningDialog.textMsg":"Kopier-, Ausschneide- und Einfügeaktionen mit den Schaltflächen der Editor-Symbolleiste und Kontextmenü-Aktionen werden nur innerhalb dieser Editor-Registerkarte ausgeführt.

Zum Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:","Common.Views.CopyWarningDialog.textTitle":"Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"","Common.Views.CopyWarningDialog.textToCopy":"zum Kopieren","Common.Views.CopyWarningDialog.textToCut":"zum Ausschneiden","Common.Views.CopyWarningDialog.textToPaste":"zum Einfügen","Common.Views.CustomizeQuickAccessDialog.textDownload":"Herunterladen","Common.Views.CustomizeQuickAccessDialog.textMsg":"Markieren Sie die Befehle, die in der Symbolleiste für den Schnellzugriff angezeigt werden sollen","Common.Views.CustomizeQuickAccessDialog.textPrint":"Drucken","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Schnelldruck","Common.Views.CustomizeQuickAccessDialog.textRedo":"Wiederholen","Common.Views.CustomizeQuickAccessDialog.textSave":"Speichern","Common.Views.CustomizeQuickAccessDialog.textTitle":"Schnellzugriff anpassen","Common.Views.CustomizeQuickAccessDialog.textUndo":"Rückgängig machen","Common.Views.DocumentAccessDialog.textLoading":"Ladevorgang...","Common.Views.DocumentAccessDialog.textTitle":"Freigabeeinstellungen","Common.Views.DocumentPropertyDialog.errorDate":"Sie können einen Wert aus dem Kalender auswählen, um den Wert als Datum zu speichern.
Wenn Sie einen Wert manuell eingeben, wird er als Text gespeichert.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"Nein","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"Ja","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"Eigenschaft sollte einen Titel haben","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"Titel","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"Ja\" or \"Nein\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"Datum","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"Typ","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"Nummer","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"Geben Sie eine gültige Nummer ein","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"Text","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"Eigenschaft sollte einen Wert haben","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"Wert","Common.Views.DocumentPropertyDialog.txtTitle":"Neue Dokumenteigenschaft","Common.Views.Draw.hintEraser":"Radierer","Common.Views.Draw.hintSelect":"Auswahl","Common.Views.Draw.txtEraser":"Radierer","Common.Views.Draw.txtHighlighter":"Textmarker","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Stift","Common.Views.Draw.txtSelect":"Auswahl","Common.Views.Draw.txtSize":"Größe","Common.Views.ExternalDiagramEditor.textTitle":"Diagramm bearbeiten","Common.Views.ExternalEditor.textClose":"Schließen","Common.Views.ExternalEditor.textSave":"Speichern und beenden","Common.Views.ExternalLinksDlg.closeButtonText":"Schließen","Common.Views.ExternalLinksDlg.textAutoUpdate":"Daten aus den verknüpften Quellen automatisch aktualisieren","Common.Views.ExternalLinksDlg.textChange":"Quelle ändern","Common.Views.ExternalLinksDlg.textDelete":"Links unterbrechen","Common.Views.ExternalLinksDlg.textDeleteAll":"Alle Links unterbrechen","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Open Source","Common.Views.ExternalLinksDlg.textSource":"Quelle","Common.Views.ExternalLinksDlg.textStatus":"Status","Common.Views.ExternalLinksDlg.textUnknown":"Unbekannt","Common.Views.ExternalLinksDlg.textUpdate":"Werte aktualisieren","Common.Views.ExternalLinksDlg.textUpdateAll":"Alles aktualisieren","Common.Views.ExternalLinksDlg.textUpdating":"Wird aktualisiert...","Common.Views.ExternalLinksDlg.txtTitle":"Externe Links","Common.Views.ExternalMergeEditor.textTitle":"Seriendruckempfänger","Common.Views.ExternalOleEditor.textTitle":"Editor der Tabellenkalkulationen","Common.Views.FormatSettingsDialog.textCategory":"Kategorie","Common.Views.FormatSettingsDialog.textDecimal":"Dezimal","Common.Views.FormatSettingsDialog.textFormat":"Format","Common.Views.FormatSettingsDialog.textLinked":"Mit Quelle verknüpft","Common.Views.FormatSettingsDialog.textLocale":"Gebietsschema","Common.Views.FormatSettingsDialog.textSeparator":"1000er-Trennzeichen verwenden","Common.Views.FormatSettingsDialog.textSymbols":"Symbole","Common.Views.FormatSettingsDialog.textTitle":"Zahlenformat","Common.Views.FormatSettingsDialog.txtAccounting":"Rechnungswesen","Common.Views.FormatSettingsDialog.txtAs10":"Als Zehntel (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"Als Hundertstel (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"Als Sechzehntel (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"Als Hälften (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"Als Quarten (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"Als Achtel (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"Währung","Common.Views.FormatSettingsDialog.txtCustom":"Benutzerdefiniert","Common.Views.FormatSettingsDialog.txtCustomWarning":"Bitte geben Sie das benutzerdefinierte Zahlenformat sorgfältig ein. Der Tabellenkalkulationseditor überprüft benutzerdefinierte Formate nicht auf Fehler, die die XLSX-Datei beeinträchtigen könnten.","Common.Views.FormatSettingsDialog.txtDate":"Datum","Common.Views.FormatSettingsDialog.txtFraction":"Bruch","Common.Views.FormatSettingsDialog.txtGeneral":"Allgemein","Common.Views.FormatSettingsDialog.txtNone":"Kein(e)","Common.Views.FormatSettingsDialog.txtNumber":"Nummer","Common.Views.FormatSettingsDialog.txtPercentage":"Prozentsatz","Common.Views.FormatSettingsDialog.txtSample":"Beispiel:","Common.Views.FormatSettingsDialog.txtScientific":"Wissenschaftlich","Common.Views.FormatSettingsDialog.txtText":"Text","Common.Views.FormatSettingsDialog.txtTime":"Zeit","Common.Views.FormatSettingsDialog.txtUpto1":"Bis zu einer Ziffer (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"Bis zu zwei Ziffern (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"Bis zu drei Ziffern (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"Symbolleiste für Schnellzugriff","Common.Views.Header.labelCoUsersDescr":"Das Dokument wird gerade von mehreren Benutzern bearbeitet.","Common.Views.Header.textAddFavorite":"Als Favorit kennzeichnen","Common.Views.Header.textAdvSettings":"Erweiterte Einstellungen","Common.Views.Header.textBack":"Dateispeicherort öffnen","Common.Views.Header.textClose":"Datei schließen","Common.Views.Header.textCompactView":"Symbolleiste ausblenden","Common.Views.Header.textDocEditDesc":"Alle Änderungen vornehmen","Common.Views.Header.textDocViewDesc":"Datei anzeigen, aber keine Änderungen vornehmen","Common.Views.Header.textDocViewFormDesc":"Prüfen, wie das Formular beim Ausfüllen aussehen wird","Common.Views.Header.textDownload":"Herunterladen","Common.Views.Header.textEdit":"Bearbeitung","Common.Views.Header.textHideLines":"Lineale verbergen","Common.Views.Header.textHideStatusBar":"Statusleiste verbergen","Common.Views.Header.textPrint":"Drucken","Common.Views.Header.textReadOnly":"Schreibgeschützt","Common.Views.Header.textRemoveFavorite":"Aus Favoriten entfernen","Common.Views.Header.textReview":"Überprüfung","Common.Views.Header.textReviewDesc":"Änderungen vorschlagen","Common.Views.Header.textShare":"Freigeben","Common.Views.Header.textStartFill":"Teilen & sammeln","Common.Views.Header.textView":"Anzeigen","Common.Views.Header.textViewForm":"Vorschau","Common.Views.Header.textZoom":"Vergrößern","Common.Views.Header.tipAccessRights":"Zugriffsrechte für das Dokument verwalten","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Symbolleiste für den Schnellzugriff anpassen","Common.Views.Header.tipDocEdit":"Bearbeitung","Common.Views.Header.tipDocView":"Anzeigen","Common.Views.Header.tipDocViewForm":"Formularvorschau","Common.Views.Header.tipDownload":"Datei herunterladen","Common.Views.Header.tipFillStatus":"Status der Formularausfüllung","Common.Views.Header.tipGoEdit":"Aktuelle Datei bearbeiten","Common.Views.Header.tipPrint":"Datei drucken","Common.Views.Header.tipPrintQuick":"Schnelldruck","Common.Views.Header.tipRedo":"Wiederholen","Common.Views.Header.tipReview":"Überprüfung","Common.Views.Header.tipSave":"Speichern","Common.Views.Header.tipSearch":"Suchen","Common.Views.Header.tipUndo":"Rückgängig","Common.Views.Header.tipUsers":"Benutzer ansehen","Common.Views.Header.tipViewSettings":"Ansichts-Einstellungen","Common.Views.Header.tipViewUsers":"Benutzer ansehen und Zugriffsrechte für das Dokument verwalten","Common.Views.Header.txtAccessRights":"Zugriffsrechte ändern","Common.Views.Header.txtRename":"Umbenennen","Common.Views.History.textCloseHistory":"Historie schließen","Common.Views.History.textHide":"Reduzieren","Common.Views.History.textHideAll":"Wesentliche Änderungen verbergen","Common.Views.History.textHighlightDeleted":"Gelöschte Elemente hervorheben","Common.Views.History.textMore":"Mehr","Common.Views.History.textRestore":"Wiederherstellen","Common.Views.History.textShow":"Erweitern","Common.Views.History.textShowAll":"Wesentliche Änderungen anzeigen","Common.Views.History.textVer":"Ver.","Common.Views.History.textVersionHistory":"Versionsverlauf","Common.Views.ImageFromUrlDialog.textUrl":"Bild-URL einfügen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Dieses Feld ist erforderlich","Common.Views.ImageFromUrlDialog.txtNotUrl":"Dieses Feld muss eine URL im Format \"http://www.example.com\" sein","Common.Views.InsertTableDialog.textInvalidRowsCols":"Sie müssen eine gültige Anzahl der Zeilen und Spalten angeben.","Common.Views.InsertTableDialog.txtColumns":"Anzahl von Spalten","Common.Views.InsertTableDialog.txtMaxText":"Der maximale Wert für dieses Feld ist {0}.","Common.Views.InsertTableDialog.txtMinText":"Der minimale Wert für dieses Feld ist {0}.","Common.Views.InsertTableDialog.txtRows":"Anzahl von Zeilen","Common.Views.InsertTableDialog.txtTitle":"Größe der Tabelle","Common.Views.InsertTableDialog.txtTitleSplit":"Zelle teilen","Common.Views.LanguageDialog.labelSelect":"Sprache des Dokuments wählen","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Geben Sie eine Eingabeaufforderung für die Abfrage ein","Common.Views.MacrosAiDialog.textCreate":"Erstellen","Common.Views.MacrosDialog.textAutostart":"Autostart","Common.Views.MacrosDialog.textConvertFromVBA":"Aus VBA konvertieren ","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Makros aus VBA konvertieren ","Common.Views.MacrosDialog.textCopy":"Kopieren","Common.Views.MacrosDialog.textCreateFromDesc":"Aus Beschreibung erstellen","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Makros aus Beschreibung erstellen","Common.Views.MacrosDialog.textCustomFunction":"Benutzerdefinierte Funktion","Common.Views.MacrosDialog.textCustomFunctions":"Benutzerdefinierte Funktionen","Common.Views.MacrosDialog.textDebug":"Debuggen","Common.Views.MacrosDialog.textDelete":"Löschen","Common.Views.MacrosDialog.textFunctions":"Funktionen","Common.Views.MacrosDialog.textLoading":"Ladevorgang...","Common.Views.MacrosDialog.textMacro":"Makro","Common.Views.MacrosDialog.textMacros":"Makros","Common.Views.MacrosDialog.textMakeAutostart":"Autostart ausführen","Common.Views.MacrosDialog.textRename":"Umbenennen","Common.Views.MacrosDialog.textRun":"Ausführen","Common.Views.MacrosDialog.textSave":"Speichern","Common.Views.MacrosDialog.textTitle":"Makros","Common.Views.MacrosDialog.textUnMakeAutostart":"Autostart aufheben","Common.Views.MacrosDialog.tipAI":"KI","Common.Views.MacrosDialog.tipFunctionAdd":"Benutzerdefinierte Funktion hinzufügen","Common.Views.MacrosDialog.tipFunctionCopy":"Benutzerdefinierte Funktion kopieren","Common.Views.MacrosDialog.tipFunctionDelete":"Benutzerdefinierte Funktion löschen","Common.Views.MacrosDialog.tipFunctionRename":"Benutzerdefinierte Funktion umbenennen","Common.Views.MacrosDialog.tipMacrosAdd":"Makros hinzufügen","Common.Views.MacrosDialog.tipMacrosCopy":"Makros kopieren","Common.Views.MacrosDialog.tipMacrosDebug":"Makros debuggen","Common.Views.MacrosDialog.tipMacrosRename":"Makros umbenennen","Common.Views.MacrosDialog.tipMacrosRun":"Makros ausführen","Common.Views.MacrosDialog.tipRedo":"Wiederholen","Common.Views.MacrosDialog.tipUndo":"Rückgängig","Common.Views.OpenDialog.closeButtonText":"Datei schließen","Common.Views.OpenDialog.txtEncoding":"Zeichenkodierung","Common.Views.OpenDialog.txtIncorrectPwd":"Kennwort ist falsch.","Common.Views.OpenDialog.txtOpenFile":"Kennwort zum Öffnen der Datei eingeben","Common.Views.OpenDialog.txtPassword":"Kennwort","Common.Views.OpenDialog.txtPreview":"Vorschau","Common.Views.OpenDialog.txtProtected":"Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.","Common.Views.OpenDialog.txtTitle":"Wähle %1 Optionen","Common.Views.OpenDialog.txtTitleProtected":"Geschützte Datei","Common.Views.PasswordDialog.txtDescription":"Legen Sie ein Passwort fest, um dieses Dokument zu schützen","Common.Views.PasswordDialog.txtIncorrectPwd":"Bestätigungseingabe ist nicht identisch","Common.Views.PasswordDialog.txtPassword":"Kennwort","Common.Views.PasswordDialog.txtRepeat":"Kennwort wiederholen","Common.Views.PasswordDialog.txtTitle":"Kennwort festlegen","Common.Views.PasswordDialog.txtWarning":"Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie es an einem sicheren Ort auf.","Common.Views.PdfSignDialog.textBefore":"Bevor Sie dieses Dokument unterzeichnen, überprüfen Sie bitte, ob der Inhalt, den Sie unterzeichnen, korrekt ist.","Common.Views.PdfSignDialog.textClear":"Leeren","Common.Views.PdfSignDialog.textFromFile":"Aus Datei","Common.Views.PdfSignDialog.textFromStorage":"Aus dem Speicher","Common.Views.PdfSignDialog.textFromUrl":"Aus URL","Common.Views.PdfSignDialog.textLooksAs":"Wie sieht Signatur aus:","Common.Views.PdfSignDialog.textSelect":"Bild auswählen","Common.Views.PdfSignDialog.tipRedo":"Wiederholen","Common.Views.PdfSignDialog.tipUndo":"Rückgängig machen","Common.Views.PdfSignDialog.txtDraw":"Zeichnen","Common.Views.PdfSignDialog.txtRemBack":"Weißen Hintergrund entfernen","Common.Views.PdfSignDialog.txtTitle":"Signatur","Common.Views.PdfSignDialog.txtType":"Typ","Common.Views.PdfSignDialog.txtUpload":"Hochladen","Common.Views.PdfSignDialog.txtUploadDesc":"Sie können Bilder in den Formaten JPEG, JPG, GIF und PNG mit einer maximalen Größe von 30 MB hochladen.","Common.Views.PluginDlg.textDock":"Plugin anheften","Common.Views.PluginDlg.textLoading":"Ladevorgang","Common.Views.PluginPanel.textClosePanel":"Plugin schließen","Common.Views.PluginPanel.textHidePanel":"Plugin reduzieren","Common.Views.PluginPanel.textLoading":"Ladevorgang","Common.Views.PluginPanel.textUndock":"Plugin entpinnen","Common.Views.Plugins.groupCaption":"Plugins","Common.Views.Plugins.strPlugins":"Plugins","Common.Views.Plugins.textBackgroundPlugins":"Plugins im Hintergrund","Common.Views.Plugins.textClosePanel":"Plugin schließen","Common.Views.Plugins.textLoading":"Ladevorgang","Common.Views.Plugins.textSettings":"Einstellungen","Common.Views.Plugins.textStart":"Starten","Common.Views.Plugins.textStop":"Beenden","Common.Views.Plugins.textTheListOfBackgroundPlugins":"Die Liste der Plugins im Hintergrund","Common.Views.Plugins.tipMore":"Mehr","Common.Views.Protection.hintAddPwd":"Mit Kennwort verschlüsseln","Common.Views.Protection.hintDelPwd":"Kennwort löschen","Common.Views.Protection.hintPwd":"Das Kennwort ändern oder löschen","Common.Views.Protection.hintSignature":"Digitale Signatur oder Unterschriftenzeile hinzufügen","Common.Views.Protection.txtAddPwd":"Kennwort hinzufügen","Common.Views.Protection.txtChangePwd":"Kennwort ändern","Common.Views.Protection.txtDeletePwd":"Kennwort löschen","Common.Views.Protection.txtEncrypt":"Verschlüsseln","Common.Views.Protection.txtInvisibleSignature":"Digitale Signatur hinzufügen","Common.Views.Protection.txtSignature":"Signatur","Common.Views.Protection.txtSignatureLine":"Signaturzeile hinzufügen","Common.Views.RecentFiles.txtOpenRecent":"Zuletzt verwendete öffnen","Common.Views.RenameDialog.textName":"Dateiname","Common.Views.RenameDialog.txtInvalidName":"Dieser Dateiname darf keines der folgenden Zeichen enthalten:","Common.Views.ReviewChanges.hintNext":"Zur nächsten Änderung","Common.Views.ReviewChanges.hintPrev":"Zur vorherigen Änderung","Common.Views.ReviewChanges.mniFromFile":"Dokument aus Datei","Common.Views.ReviewChanges.mniFromStorage":"Dokument aus dem Speicher","Common.Views.ReviewChanges.mniFromUrl":"Dokument aus URL","Common.Views.ReviewChanges.mniMMFromFile":"Aus Datei","Common.Views.ReviewChanges.mniMMFromStorage":"Aus dem Speicher","Common.Views.ReviewChanges.mniMMFromUrl":"Aus URL","Common.Views.ReviewChanges.mniSettings":"Vergleichseinstellungen","Common.Views.ReviewChanges.strFast":"Schnell","Common.Views.ReviewChanges.strFastDesc":"Echtzeit-Zusammenbearbeitung. Alle Änderungen werden automatisch gespeichert.","Common.Views.ReviewChanges.strStrict":"Formal","Common.Views.ReviewChanges.strStrictDesc":"Verwenden Sie die Schaltfläche \"Speichern\", um die von Ihnen und anderen vorgenommenen Änderungen zu synchronisieren.","Common.Views.ReviewChanges.textEnable":"Aktivieren","Common.Views.ReviewChanges.textWarnTrackChanges":"Nachverfolgung von Änderungen wird für alle Benutzer mit dem vollen Zugriff AKTIVIERT und bleibt auch beim nächsten Öffnen des Dokuments aktiv.","Common.Views.ReviewChanges.textWarnTrackChangesTitle":"Möchten Sie Nachverfolgung von Änderungen für alle aktivieren?","Common.Views.ReviewChanges.tipAcceptCurrent":"Akzeptieren Sie die aktuelle Änderung und fahren Sie mit der nächsten fort","Common.Views.ReviewChanges.tipCoAuthMode":"Zusammen-Bearbeitungsmodus einstellen","Common.Views.ReviewChanges.tipCombine":"Dieses Dokument mit einem anderen kombinieren","Common.Views.ReviewChanges.tipCommentRem":"Kommentare entfernen","Common.Views.ReviewChanges.tipCommentRemCurrent":"Aktuelle Kommentare entfernen","Common.Views.ReviewChanges.tipCommentResolve":"Kommentare lösen","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Gültige Kommentare lösen","Common.Views.ReviewChanges.tipCompare":"Das aktuelle Dokument mit einem anderen vergleichen","Common.Views.ReviewChanges.tipHistory":"Versionshistorie anzeigen","Common.Views.ReviewChanges.tipMailRecepients":"Serienbrief","Common.Views.ReviewChanges.tipRejectCurrent":"Aktuelle Änderungen ablehnen","Common.Views.ReviewChanges.tipReview":"Nachverfolgen von Änderungen","Common.Views.ReviewChanges.tipReviewView":"Wählen Sie den Modus aus, in dem die Änderungen angezeigt werden sollen","Common.Views.ReviewChanges.tipSetDocLang":"Sprache des Dokumentes festlegen","Common.Views.ReviewChanges.tipSetSpelling":"Rechtschreibprüfung","Common.Views.ReviewChanges.tipSharing":"Zugriffsrechte für das Dokument verwalten","Common.Views.ReviewChanges.txtAccept":"Annehmen","Common.Views.ReviewChanges.txtAcceptAll":"Alle Änderungen annehmen","Common.Views.ReviewChanges.txtAcceptChanges":"Änderungen annehmen","Common.Views.ReviewChanges.txtAcceptCurrent":"Aktuelle Änderungen annehmen","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Schließen","Common.Views.ReviewChanges.txtCoAuthMode":"Modus \"Gemeinsame Bearbeitung\"","Common.Views.ReviewChanges.txtCombine":"Kombinieren","Common.Views.ReviewChanges.txtCommentRemAll":"Alle Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemCurrent":"Aktuelle Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemMy":"Meine Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Meine aktuellen Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemove":"Entfernen","Common.Views.ReviewChanges.txtCommentResolve":"Lösen","Common.Views.ReviewChanges.txtCommentResolveAll":"Alle Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Aktuelle Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveMy":"Meine Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Meine gültige Kommentare lösen","Common.Views.ReviewChanges.txtCompare":"Vergleichen","Common.Views.ReviewChanges.txtDocLang":"Sprache","Common.Views.ReviewChanges.txtEditing":"Bearbeitung","Common.Views.ReviewChanges.txtFinal":"Alle Änderungen akzeptiert {0}","Common.Views.ReviewChanges.txtFinalCap":"Endgültig","Common.Views.ReviewChanges.txtHistory":"Versionshistorie","Common.Views.ReviewChanges.txtMailMerge":"Serienbrief","Common.Views.ReviewChanges.txtMarkup":"Alle Änderungen {0}","Common.Views.ReviewChanges.txtMarkupCap":"Markup und Sprechblasen","Common.Views.ReviewChanges.txtMarkupSimple":"Alle Änderungen {0}
Sprechblasen ausblenden","Common.Views.ReviewChanges.txtMarkupSimpleCap":"Einfaches Markup","Common.Views.ReviewChanges.txtNext":"Zur nächsten Änderung","Common.Views.ReviewChanges.txtOff":"DEAKTIVIERT für mich","Common.Views.ReviewChanges.txtOffGlobal":"DEAKTIVIERT für alle","Common.Views.ReviewChanges.txtOn":"AKTIVIERT für mich","Common.Views.ReviewChanges.txtOnGlobal":"AKTIVIERT für alle","Common.Views.ReviewChanges.txtOriginal":"Alle Änderungen abgelehnt {0}","Common.Views.ReviewChanges.txtOriginalCap":"Original","Common.Views.ReviewChanges.txtPrev":"Zur vorherigen Änderung","Common.Views.ReviewChanges.txtPreview":"Vorschau","Common.Views.ReviewChanges.txtReject":"Ablehnen","Common.Views.ReviewChanges.txtRejectAll":"Alle Änderungen ablehnen","Common.Views.ReviewChanges.txtRejectChanges":"Änderungen ablehnen","Common.Views.ReviewChanges.txtRejectCurrent":"Aktuelle Änderungen ablehnen","Common.Views.ReviewChanges.txtSharing":"Freigabe","Common.Views.ReviewChanges.txtSpelling":"Rechtschreibprüfung","Common.Views.ReviewChanges.txtTurnon":"Nachverfolgen von Änderungen","Common.Views.ReviewChanges.txtView":"Anzeigemodus","Common.Views.ReviewChangesDialog.textTitle":"Änderungen überprüfen","Common.Views.ReviewChangesDialog.txtAccept":"Annehmen","Common.Views.ReviewChangesDialog.txtAcceptAll":"Alle Änderungen annehmen","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"Aktuelle Änderungen annehmen","Common.Views.ReviewChangesDialog.txtNext":"Zur nächsten Änderung","Common.Views.ReviewChangesDialog.txtPrev":"Zur vorherigen Änderung","Common.Views.ReviewChangesDialog.txtReject":"Ablehnen","Common.Views.ReviewChangesDialog.txtRejectAll":"Alle Änderungen ablehnen","Common.Views.ReviewChangesDialog.txtRejectCurrent":"Aktuelle Änderungen ablehnen","Common.Views.ReviewPopover.textAdd":"Hinzufügen","Common.Views.ReviewPopover.textAddReply":"Antwort hinzufügen","Common.Views.ReviewPopover.textCancel":"Abbrechen","Common.Views.ReviewPopover.textClose":"Schließen","Common.Views.ReviewPopover.textComment":"Kommentar","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Geben Sie Ihren Kommentar hier ein","Common.Views.ReviewPopover.textFollowMove":"Verschieben nachverfolgen","Common.Views.ReviewPopover.textMention":"+Erwähnung ermöglicht den Zugriff auf das Dokument und das Senden einer E-Mail","Common.Views.ReviewPopover.textMentionNotify":"+Erwähnung benachrichtigt den Benutzer per E-Mail","Common.Views.ReviewPopover.textOpenAgain":"Erneut öffnen","Common.Views.ReviewPopover.textReply":"Antworten","Common.Views.ReviewPopover.textResolve":"Lösen","Common.Views.ReviewPopover.textViewResolved":"Sie haben keine Berechtigung, den Kommentar erneut zu öffnen","Common.Views.ReviewPopover.txtAccept":"Annehmen","Common.Views.ReviewPopover.txtDeleteTip":"Löschen","Common.Views.ReviewPopover.txtEditTip":"Bearbeiten","Common.Views.ReviewPopover.txtReject":"Ablehnen","Common.Views.SaveAsDlg.textLoading":"Ladevorgang","Common.Views.SaveAsDlg.textTitle":"Ordner fürs Speichern","Common.Views.SearchPanel.textCaseSensitive":"Groß-/Kleinschreibung beachten","Common.Views.SearchPanel.textCloseSearch":"Suche schließen","Common.Views.SearchPanel.textContentChanged":"Dokument verändert.","Common.Views.SearchPanel.textFind":"Suchen","Common.Views.SearchPanel.textFindAndReplace":"Suchen und ersetzen","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} Elemente erfolgreich ersetzt.","Common.Views.SearchPanel.textMatchUsingRegExp":"Über reguläre Ausdrücke abgleichen","Common.Views.SearchPanel.textNoMatches":"Keine Treffer","Common.Views.SearchPanel.textNoSearchResults":"Keine Suchergebnisse","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} Elemente ersetzt. Die übrigen {2} Elemente sind von anderen Benutzern gesperrt.","Common.Views.SearchPanel.textReplace":"Ersetzen","Common.Views.SearchPanel.textReplaceAll":"Alle ersetzen","Common.Views.SearchPanel.textReplaceWith":"Ersetzen durch","Common.Views.SearchPanel.textSearchAgain":"{0}Neue Suche durchführen{1} für genaue Ergebnisse.","Common.Views.SearchPanel.textSearchHasStopped":"Suche abgebrochen","Common.Views.SearchPanel.textSearchResults":"Suchergebnisse: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Suchergebnisse","Common.Views.SearchPanel.textTooManyResults":"Es gibt zu viele Ergebnisse, um sie hier zu zeigen","Common.Views.SearchPanel.textWholeWords":"Nur ganze Wörter","Common.Views.SearchPanel.tipNextResult":"Nächstes Ergebnis","Common.Views.SearchPanel.tipPreviousResult":"Vorheriges Ergebnis","Common.Views.SelectFileDlg.textLoading":"Ladevorgang","Common.Views.SelectFileDlg.textTitle":"Datenquelle auswählen","Common.Views.ShapeShadowDialog.txtAngle":"Winkel","Common.Views.ShapeShadowDialog.txtDistance":"Abstand","Common.Views.ShapeShadowDialog.txtSize":"Größe","Common.Views.ShapeShadowDialog.txtTitle":"Schatten anpassen","Common.Views.ShapeShadowDialog.txtTransparency":"Transparenz","Common.Views.ShortcutsDialog.txtDescription":"Beschreibung","Common.Views.ShortcutsDialog.txtEmpty":"Keine Übereinstimmungen gefunden. Passen Sie Ihre Suche an.","Common.Views.ShortcutsDialog.txtRestoreAll":"Alles auf Standard zurücksetzen","Common.Views.ShortcutsDialog.txtRestoreContinue":"Möchten Sie fortsetzen?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Alle Tastenkombinationseinstellungen werden auf die Standardeinstellungen zurückgesetzt.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Auf Standard zurücksetzen","Common.Views.ShortcutsDialog.txtSearch":"Suchen","Common.Views.ShortcutsDialog.txtTitle":"Tastenkombinationen","Common.Views.ShortcutsEditDialog.txtAction":"Aktion","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"Diese Tastenkombination kann nicht bearbeitet werden","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Geben Sie die gewünschte Tastenkombination ein","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"Die von den Aktionen %1 verwendete Tastenkombination","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"Die von den Aktionen %1 verwendete Tastenkombination kann nicht geändert werden","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"Die von der Aktion %1 verwendete Tastenkombination","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"Die Tastenkombination wird von der Aktion %1 verwendet und kann nicht geändert werden","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Neue Tastenkombination","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Möchten Sie fortsetzen?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Alle Tastenkombinationen für die Aktion “%1” werden auf die Standardeinstellungen zurückgesetzt.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Auf Standard zurücksetzen","Common.Views.ShortcutsEditDialog.txtTitle":"Tastenkombination bearbeiten","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Geben Sie die gewünschte Tastenkombination ein","Common.Views.SignDialog.textBold":"Fett","Common.Views.SignDialog.textCertificate":"Zertifikat","Common.Views.SignDialog.textChange":"Ändern","Common.Views.SignDialog.textInputName":"Name des Signaturgebers eingeben","Common.Views.SignDialog.textItalic":"Kursiv","Common.Views.SignDialog.textNameError":"Der Name des Signaturgebers darf nicht leer sein.","Common.Views.SignDialog.textPurpose":"Zweck der Signierung dieses Dokuments","Common.Views.SignDialog.textSelect":"Wählen","Common.Views.SignDialog.textSelectImage":"Bild auswählen","Common.Views.SignDialog.textSignature":"Wie sieht Signatur aus:","Common.Views.SignDialog.textTitle":"Dokument signieren","Common.Views.SignDialog.textUseImage":"oder klicken Sie auf \"Bild auswählen\", um ein Bild als Unterschrift zu verwenden","Common.Views.SignDialog.textValid":"Gültig von% 1 bis% 2","Common.Views.SignDialog.tipFontName":"Schriftart","Common.Views.SignDialog.tipFontSize":"Schriftgrad","Common.Views.SignSettingsDialog.textAllowComment":"Signaturgeber verfügt über die Möglichkeit, einen Kommentar im Signaturdialog hinzuzufügen","Common.Views.SignSettingsDialog.textDefInstruction":"Überprüfen Sie, ob der signierte Inhalt stimmt, bevor Sie dieses Dokument signieren.","Common.Views.SignSettingsDialog.textInfoEmail":"E-Mail des vorgeschlagenen Unterzeichners","Common.Views.SignSettingsDialog.textInfoName":"Name","Common.Views.SignSettingsDialog.textInfoTitle":"Titel des Signatureingebers","Common.Views.SignSettingsDialog.textInstructions":"Anweisungen für Signaturgeber","Common.Views.SignSettingsDialog.textShowDate":"Signaturdatum in der Signaturzeile anzeigen","Common.Views.SignSettingsDialog.textTitle":"Signatureinstellungen","Common.Views.SignSettingsDialog.txtEmpty":"Dieses Feld ist erforderlich","Common.Views.SymbolTableDialog.textCharacter":"Zeichen","Common.Views.SymbolTableDialog.textCode":"Unicode HEX Wert","Common.Views.SymbolTableDialog.textCopyright":"Copyrightzeichen","Common.Views.SymbolTableDialog.textDCQuote":"Doppelte schließende Anführung","Common.Views.SymbolTableDialog.textDOQuote":"Doppelte offende Anführungszeichen","Common.Views.SymbolTableDialog.textEllipsis":"Waagerechte Auslassungspunkte","Common.Views.SymbolTableDialog.textEmDash":"Geviertstrich","Common.Views.SymbolTableDialog.textEmSpace":"Em-Abstand","Common.Views.SymbolTableDialog.textEnDash":"Halbgeviertstrich","Common.Views.SymbolTableDialog.textEnSpace":"En-Abstand","Common.Views.SymbolTableDialog.textFont":"Schriftart","Common.Views.SymbolTableDialog.textNBHyphen":"Geschützter Bindestrich","Common.Views.SymbolTableDialog.textNBSpace":"Geschütztes Leerzeichen","Common.Views.SymbolTableDialog.textPilcrow":"Absatzzeichen","Common.Views.SymbolTableDialog.textQEmSpace":"1/4-Em-Abstand","Common.Views.SymbolTableDialog.textRange":"Bereich","Common.Views.SymbolTableDialog.textRecent":"Kürzlich verwendete Symbole","Common.Views.SymbolTableDialog.textRegistered":"Registered Trade Mark","Common.Views.SymbolTableDialog.textSCQuote":"Einfache schließendes Anführungszeichen","Common.Views.SymbolTableDialog.textSection":"Paragraphenzeichen","Common.Views.SymbolTableDialog.textShortcut":"Tastenkombination","Common.Views.SymbolTableDialog.textSHyphen":"Weicher Bindestrich","Common.Views.SymbolTableDialog.textSOQuote":"Einfache offende Anführungszeichen","Common.Views.SymbolTableDialog.textSpecial":"Sonderzeichen","Common.Views.SymbolTableDialog.textSymbols":"Symbole","Common.Views.SymbolTableDialog.textTitle":"Symbol","Common.Views.SymbolTableDialog.textTradeMark":"Markenzeichen-Symbol","Common.Views.UserNameDialog.textDontShow":"Nicht mehr anzeigen","Common.Views.UserNameDialog.textLabel":"Bezeichnung:","Common.Views.UserNameDialog.textLabelError":"Bezeichnung darf nicht leer sein.","DE.Controllers.DocProtection.txtIsProtectedComment":"Das Dokument ist geschützt. Sie können nur Kommentare zu diesem Dokument hinterlassen.","DE.Controllers.DocProtection.txtIsProtectedForms":"Das Dokument ist geschützt. Sie dürfen nur Formulare in diesem Dokument ausfüllen.","DE.Controllers.DocProtection.txtIsProtectedTrack":"Das Dokument ist geschützt. Sie können dieses Dokument bearbeiten, aber alle Änderungen werden nachverfolgt.","DE.Controllers.DocProtection.txtIsProtectedView":"Das Dokument ist geschützt. Sie können dieses Dokument nur ansehen.","DE.Controllers.DocProtection.txtWasProtectedComment":"Das Dokument wurde von einem anderen Benutzer geschützt.\nSie können nur Kommentare zu diesem Dokument hinterlassen.","DE.Controllers.DocProtection.txtWasProtectedForms":"Das Dokument wurde von einem anderen Benutzer geschützt.\nSie dürfen nur Formulare in diesem Dokument ausfüllen.","DE.Controllers.DocProtection.txtWasProtectedTrack":"Das Dokument wurde von einem anderen Benutzer geschützt.\nSie können dieses Dokument bearbeiten, aber alle Änderungen werden nachverfolgt.","DE.Controllers.DocProtection.txtWasProtectedView":"Das Dokument wurde von einem anderen Benutzer geschützt.\nSie können dieses Dokument nur ansehen.","DE.Controllers.DocProtection.txtWasUnprotected":"Das Dokument wurde ungeschützt.","DE.Controllers.HeaderFooterTab.textFieldExample":"Beispiel für das Schreiben von Code: TIME \\@ \"dddd, MMMM d, yyyy\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"Feld-Codes","DE.Controllers.HeaderFooterTab.textFieldTitle":"Feld","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"Seitennummerierung","DE.Controllers.LeftMenu.leavePageText":"Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
\nKlicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um Änderungen zu speichern. \nKlicken Sie auf \"OK\", und alle ungespeicherten Änderungen werden NICHT gespeichert und sind verloren.","DE.Controllers.LeftMenu.newDocumentTitle":"Unbetiteltes Dokument","DE.Controllers.LeftMenu.notcriticalErrorTitle":"Achtung","DE.Controllers.LeftMenu.requestEditRightsText":"Anfrage betreffend die Bearbeitungsberechtigung...","DE.Controllers.LeftMenu.textLoadHistory":"Versionshistorie wird geladen...","DE.Controllers.LeftMenu.textNoTextFound":"Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.","DE.Controllers.LeftMenu.textReplaceSkipped":"Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.","DE.Controllers.LeftMenu.textReplaceSuccess":"Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}","DE.Controllers.LeftMenu.textSelectPath":"Geben Sie einen neuen Namen zum Speichern der Dateikopie ein","DE.Controllers.LeftMenu.txtCompatible":"Das Dokument wird im neuen Format gespeichert. Es ermöglicht die Verwendung aller Funktionen, kann jedoch das Dokument-Layout beeinflussen.
Verwenden Sie die Option 'Kompatibilität' in den erweiterten Einstellungen, wenn Sie die Dateien mit älteren MS Word-Versionen kompatibel machen möchten.","DE.Controllers.LeftMenu.txtUntitled":"Unbenannt","DE.Controllers.LeftMenu.warnDownloadAs":"Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"{0} wird in ein bearbeitbares Format umgewandelt. Dies kann eine Weile dauern. Das Ausgabedokument wird so gestaltet, dass Sie den Text bearbeiten können. Es sieht also möglicherweise nicht genau so aus wie die ursprüngliche Datei {0}, besonders wenn sie viele Grafiken enthält.","DE.Controllers.LeftMenu.warnDownloadAsRTF":"Wenn Sie mit dem Speichern in diesem Format fortsetzen, kann die Formatierung teilweise verloren gehen.
Möchten Sie wirklich fortsetzen?","DE.Controllers.LeftMenu.warnReplaceString":"{0} ist kein gültiges Sonderzeichen für das Feld \"Ersetzen durch\".","DE.Controllers.Main.applyChangesTextText":"Die Änderungen werden geladen...","DE.Controllers.Main.applyChangesTitleText":"Laden von Änderungen","DE.Controllers.Main.confirmMaxChangesSize":"Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze.
Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).","DE.Controllers.Main.convertationTimeoutText":"Zeitüberschreitung bei der Konvertierung.","DE.Controllers.Main.criticalErrorExtText":"Klicken Sie auf \"OK\", um in die Dokumentenliste zu gelangen.","DE.Controllers.Main.criticalErrorExtTextClose":"Drücken Sie OK, um den Editor zu schließen.","DE.Controllers.Main.criticalErrorTitle":"Fehler","DE.Controllers.Main.downloadErrorText":"Herunterladen ist fehlgeschlagen.","DE.Controllers.Main.downloadMergeText":"Wird heruntergeladen...","DE.Controllers.Main.downloadMergeTitle":"Wird heruntergeladen","DE.Controllers.Main.downloadTextText":"Dokument wird heruntergeladen...","DE.Controllers.Main.downloadTitleText":"Herunterladen des Dokuments","DE.Controllers.Main.errorAccessDeny":"Sie versuchen, eine Aktion durchzuführen, für die Sie keine Rechte haben.
Bitte wenden Sie sich an Ihren Document Serveradministrator.","DE.Controllers.Main.errorBadImageUrl":"URL des Bildes ist falsch","DE.Controllers.Main.errorCannotPasteImg":"Wir können dieses Bild nicht über die Zwischenablage einfügen. Sie können es aber auf Ihrem Gerät speichern und von dort aus einfügen, oder Sie können das Bild ohne Text kopieren und in das Dokument einfügen.","DE.Controllers.Main.errorCoAuthoringDisconnect":"Verbindung zum Server ist verloren gegangen. Das Dokument kann momentan nicht bearbeitet werden.","DE.Controllers.Main.errorComboSeries":"Wählen Sie mindestens zwei Datenreihen aus, um ein Verbunddiagramm zu erstellen.","DE.Controllers.Main.errorCompare":"Vergleich von Dokumenten ist bei der Zusammenarbeit unverfügbar.","DE.Controllers.Main.errorConnectToServer":"Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.
Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.","DE.Controllers.Main.errorCopyDisabled":"Aus Sicherheitsgründen darf der Inhalt dieses Dokuments nicht kopiert werden.","DE.Controllers.Main.errorDatabaseConnection":"Externer Fehler.
Fehler beim Verbinden zur Datenbank. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.","DE.Controllers.Main.errorDataEncrypted":"Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.","DE.Controllers.Main.errorDataRange":"Falscher Datenbereich.","DE.Controllers.Main.errorDefaultMessage":"Fehlercode: %1","DE.Controllers.Main.errorDirectUrl":"Bitte überprüfen Sie den Link zum Dokument.
Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.","DE.Controllers.Main.errorEditingDownloadas":"Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
Verwenden Sie die Option 'Herunterladen als', um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.","DE.Controllers.Main.errorEditingSaveas":"Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
Verwenden Sie die Option \"Speichern als ...\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.","DE.Controllers.Main.errorEditProtectedRange":"Sie dürfen diese Auswahl nicht bearbeiten, da sie geschützt ist.","DE.Controllers.Main.errorEmailClient":"Es wurde kein E-Mail-Client gefunden.","DE.Controllers.Main.errorEmptyTOC":"Beginnen Sie die Erstellung eines Inhaltsverzeichnisses, indem Sie eine Überschriftenvorlage aus der Galerie von Stilen auf den ausgewählten Text anwenden.","DE.Controllers.Main.errorFilePassProtect":"Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.","DE.Controllers.Main.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.Controllers.Main.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.Controllers.Main.errorInconsistentExt":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.","DE.Controllers.Main.errorInconsistentExtDocx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.","DE.Controllers.Main.errorInconsistentExtPdf":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.","DE.Controllers.Main.errorInconsistentExtPptx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.","DE.Controllers.Main.errorInconsistentExtXlsx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.","DE.Controllers.Main.errorKeyEncrypt":"Unbekannter Schlüsseldeskriptor","DE.Controllers.Main.errorKeyExpire":"Der Schlüsseldeskriptor ist abgelaufen","DE.Controllers.Main.errorLoadingFont":"Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.","DE.Controllers.Main.errorMailMergeLoadFile":"Fehler beim Laden des Dokuments. Bitte wählen Sie eine andere Datei.","DE.Controllers.Main.errorMailMergeSaveFile":"Merge ist fehlgeschlagen.","DE.Controllers.Main.errorNoTOC":"Es gibt kein Inhaltsverzeichnis. Sie können es auf der Registerkarte \"Verweise\" einfügen.","DE.Controllers.Main.errorPasswordIsNotCorrect":"Das eingegebene Kennwort ist ungültig.
Stellen Sie sicher, dass die FESTSTELLTASTE nicht aktiviert ist und dass Sie die korrekte Groß-/Kleinschreibung verwenden.","DE.Controllers.Main.errorSaveWatermark":"Diese Datei enthält ein Wasserzeichen, das mit einer anderen Domain verknüpft ist.
Um es in PDF sichtbar zu machen, aktualisieren Sie das Wasserzeichen, so dass es von derselben Domain wie Ihr Dokument verlinkt wird, oder laden Sie es von Ihrem Computer hoch.","DE.Controllers.Main.errorServerVersion":"Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.","DE.Controllers.Main.errorSessionAbsolute":"Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.","DE.Controllers.Main.errorSessionIdle":"Das Dokument wurde lange nicht bearbeitet. Laden Sie die Seite neu.","DE.Controllers.Main.errorSessionToken":"Die Verbindung zum Server wurde unterbrochen. Laden Sie die Seite neu.","DE.Controllers.Main.errorSetPassword":"Das Passwort konnte nicht festgelegt werden.","DE.Controllers.Main.errorStockChart":"Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, ordnen Sie die Daten auf dem Blatt folgendermaßen an:
Eröffnungspreis, Höchstpreis, Tiefstpreis, Schlusskurs.","DE.Controllers.Main.errorSubmit":"Fehler beim Senden.","DE.Controllers.Main.errorTextFormWrongFormat":"Der eingegebene Wert stimmt nicht mit dem Format des Feldes überein.","DE.Controllers.Main.errorToken":"Sicherheitstoken des Dokuments ist nicht korrekt.
Wenden Sie sich an Ihren Serveradministrator.","DE.Controllers.Main.errorTokenExpire":"Sicherheitstoken des Dokuments ist abgelaufen.
Wenden Sie sich an Ihren Serveradministrator.","DE.Controllers.Main.errorUpdateVersion":"Die Dateiversion wurde geändert. Die Seite wird neu geladen.","DE.Controllers.Main.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.Controllers.Main.errorUserDrop":"Kein Zugriff auf diese Datei ist möglich.","DE.Controllers.Main.errorUsersExceed":"Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten","DE.Controllers.Main.errorViewerDisconnect":"Die Verbindung ist unterbrochen. Man kann das Dokument weiterhin anschauen.
Es ist aber momentan nicht möglich, es herunterzuladen oder zu drucken bis die Verbindung wiederhergestellt
und die Seite neu geladen wird.","DE.Controllers.Main.leavePageText":"Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\" und dann \"Speichern\", um sie zu speichern. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.","DE.Controllers.Main.leavePageTextOnClose":"Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
\nKlicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. \nKlicken Sie auf den Button \"OK\", und alle Änderungen werden NICHT gespeichert und sind verloren. ","DE.Controllers.Main.loadFontsTextText":"Daten werden geladen...","DE.Controllers.Main.loadFontsTitleText":"Daten werden geladen","DE.Controllers.Main.loadFontTextText":"Daten werden geladen...","DE.Controllers.Main.loadFontTitleText":"Daten werden geladen","DE.Controllers.Main.loadImagesTextText":"Bilder werden geladen...","DE.Controllers.Main.loadImagesTitleText":"Bilder werden geladen","DE.Controllers.Main.loadImageTextText":"Bild wird geladen...","DE.Controllers.Main.loadImageTitleText":"Bild wird geladen","DE.Controllers.Main.loadingDocumentTextText":"Dokument wird geladen...","DE.Controllers.Main.loadingDocumentTitleText":"Dokument wird geladen...","DE.Controllers.Main.mailMergeLoadFileText":"Laden der Datenquellen...","DE.Controllers.Main.mailMergeLoadFileTitle":"Laden der Datenquellen","DE.Controllers.Main.notcriticalErrorTitle":"Achtung","DE.Controllers.Main.openErrorText":"Beim Öffnen der Datei ist ein Fehler aufgetreten.","DE.Controllers.Main.openTextText":"Dokument wird geöffnet","DE.Controllers.Main.openTitleText":"Das Dokument wird geöffnet","DE.Controllers.Main.printTextText":"Dokument wird ausgedruckt...","DE.Controllers.Main.printTitleText":"Drucken des Dokuments","DE.Controllers.Main.reloadButtonText":"Seite erneut laden","DE.Controllers.Main.requestEditFailedMessageText":"Jemand bearbeitet dieses Dokument in diesem Moment. Bitte versuchen Sie es später erneut.","DE.Controllers.Main.requestEditFailedTitleText":"Zugriff verweigert","DE.Controllers.Main.saveErrorText":"Beim Speichern der Datei ist ein Fehler aufgetreten.","DE.Controllers.Main.saveErrorTextDesktop":"Diese Datei kann nicht erstellt oder gespeichert werden.
Dies ist möglicherweise davon verursacht:
1. Die Datei ist schreibgeschützt.
2. Die Datei wird von anderen Benutzern bearbeitet.
3. Die Festplatte ist voll oder beschädigt.","DE.Controllers.Main.saveTextText":"Dokument wird gespeichert...","DE.Controllers.Main.saveTitleText":"Dokument wird gespeichert...","DE.Controllers.Main.savingText":"Absenden","DE.Controllers.Main.scriptLoadError":"Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.","DE.Controllers.Main.sendMergeText":"Merge wird versandt...","DE.Controllers.Main.sendMergeTitle":"Merge-Vesand","DE.Controllers.Main.splitDividerErrorText":"Die Zeilenanzahl muss ein Divisor von %1 sein.","DE.Controllers.Main.splitMaxColsErrorText":"Die Spaltenanzahl muss weniger als %1 sein.","DE.Controllers.Main.splitMaxRowsErrorText":"Die Zeilenanzahl muss weniger als %1 sein.","DE.Controllers.Main.textAnonymous":"Anonym","DE.Controllers.Main.textAnyone":"Alle","DE.Controllers.Main.textApplyAll":"Für alle Gleichungen verwenden","DE.Controllers.Main.textBuyNow":"Webseite besuchen","DE.Controllers.Main.textChangesSaved":"Alle Änderungen gespeichert","DE.Controllers.Main.textClose":"Schließen","DE.Controllers.Main.textCloseTip":"Klicken Sie, um den Tipp zu schließen","DE.Controllers.Main.textConnectionLost":"Es wird versucht, Verbindung herzustellen. Bitte überprüfen Sie die Verbindungseinstellungen.","DE.Controllers.Main.textContactUs":"Verkaufsteam kontaktieren","DE.Controllers.Main.textContinue":"Fortsetzen","DE.Controllers.Main.textConvertEquation":"Diese Gleichung wurde in einer alten Version des Gleichungseditors erstellt, die nicht mehr unterstützt wird. Um die Gleichung zu bearbeiten, konvertieren Sie diese ins Format Office Math ML.
Jetzt konvertieren?","DE.Controllers.Main.textCustomLoader":"Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln.
Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.","DE.Controllers.Main.textDisconnect":"Verbindung wurde unterbrochen","DE.Controllers.Main.textGuest":"Gast","DE.Controllers.Main.textHasMacros":"Die Datei beinhaltet automatische Makros.
Möchten Sie Makros ausführen?","DE.Controllers.Main.textLearnMore":"Mehr erfahren","DE.Controllers.Main.textLoadingDocument":"Dokument wird geladen...","DE.Controllers.Main.textLongName":"Der Name einer Tabellenansicht darf maximal 128 Zeichen lang sein.","DE.Controllers.Main.textNoLicenseTitle":"Lizenzlimit erreicht","DE.Controllers.Main.textPaidFeature":"Kostenpflichtige Funktion","DE.Controllers.Main.textReconnect":"Verbindung wurde wiederhergestellt","DE.Controllers.Main.textRemember":"Meine Auswahl merken","DE.Controllers.Main.textRememberMacros":"Auswahl für alle Makros speichern","DE.Controllers.Main.textRenameError":"Benutzername darf nicht leer sein.","DE.Controllers.Main.textRenameLabel":"Geben Sie den Namen für Zusammenarbeit ein","DE.Controllers.Main.textRequestMacros":"Ein Makro stellt eine Anfrage an die URL. Möchten Sie die Anfrage an die %1 zulassen?","DE.Controllers.Main.textShape":"Form","DE.Controllers.Main.textSignature":"Signatur","DE.Controllers.Main.textStrict":"Formaler Modus","DE.Controllers.Main.textText":"Text","DE.Controllers.Main.textTryQuickPrint":"Sie haben Schnelldruck gewählt: Das gesamte Dokument wird auf dem zuletzt gewählten oder dem Standarddrucker gedruckt.
Sollen Sie fortfahren?","DE.Controllers.Main.textTryUndoRedo":"Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.
Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.","DE.Controllers.Main.textTryUndoRedoWarn":"Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.","DE.Controllers.Main.textUndo":"Rückgängig","DE.Controllers.Main.textUpdateVersion":"Das Dokument kann im Moment nicht bearbeitet werden.
Es wird versucht, die Datei zu aktualisieren, bitte warten …","DE.Controllers.Main.textUpdating":"Aktualisierung","DE.Controllers.Main.tipLicenseExceeded":"Das Dokument ist im schreibgeschützten Modus geöffnet, da die durch die Lizenz zulässige maximale Anzahl gleichzeitiger Verbindungen erreicht wurde.

Bitte versuchen Sie es später erneut oder wenden Sie sich an den Eigentümer des Dokuments, wenn Sie Bearbeitungszugriff benötigen.","DE.Controllers.Main.tipLicenseUsersExceeded":"Das Dokument ist im schreibgeschützten Modus geöffnet, da die maximale Anzahl von Benutzern, die laut Lizenz Dokumente bearbeiten dürfen, erreicht wurde.

Bitte versuchen Sie es später erneut oder wenden Sie sich an den Dokumentbesitzer, wenn Sie Bearbeitungszugriff benötigen.","DE.Controllers.Main.titleLicenseExp":"Lizenz ist abgelaufen","DE.Controllers.Main.titleLicenseNotActive":"Lizenz nicht aktiv","DE.Controllers.Main.titleReadOnly":"Schreibgeschützter Modus","DE.Controllers.Main.titleServerVersion":"Editor wurde aktualisiert","DE.Controllers.Main.titleUpdateVersion":"Version wurde geändert","DE.Controllers.Main.txtAbove":"oben","DE.Controllers.Main.txtArt":"Hier den Text eingeben","DE.Controllers.Main.txtBasicShapes":"Standardformen","DE.Controllers.Main.txtBelow":"unten","DE.Controllers.Main.txtBookmarkError":"Fehler! Textmarke nicht definiert.","DE.Controllers.Main.txtButtons":"Buttons","DE.Controllers.Main.txtCallouts":"Legenden","DE.Controllers.Main.txtCharts":"Diagramme","DE.Controllers.Main.txtChoose":"Wählen Sie ein Element aus","DE.Controllers.Main.txtClickToLoad":"Klicken Sie, um das Bild herunterzuladen","DE.Controllers.Main.txtCurrentDocument":"Aktuelles Dokument","DE.Controllers.Main.txtDiagramTitle":"Diagrammtitel","DE.Controllers.Main.txtEditingMode":"Bearbeitungsmodus festlegen...","DE.Controllers.Main.txtEndOfFormula":"Unerwartetes Ende der Formel","DE.Controllers.Main.txtEnterDate":"Datum einfügen","DE.Controllers.Main.txtErrorLoadHistory":"Laden der Historie ist fehlgeschlagen ","DE.Controllers.Main.txtEvenPage":"Gerade Seite","DE.Controllers.Main.txtFiguredArrows":"Geformte Pfeile","DE.Controllers.Main.txtFirstPage":"Erste Seite","DE.Controllers.Main.txtFooter":"Fußzeile","DE.Controllers.Main.txtFormulaNotInTable":"Die Formel steht nicht in einer Tabelle","DE.Controllers.Main.txtHeader":"Kopfzeile","DE.Controllers.Main.txtHyperlink":"Link","DE.Controllers.Main.txtIndTooLarge":"Zu großer Index","DE.Controllers.Main.txtLines":"Linien","DE.Controllers.Main.txtMainDocOnly":"Fehler! Nur Hauptdokument.","DE.Controllers.Main.txtMath":"Mathematik","DE.Controllers.Main.txtMissArg":"Fehlendes Argument","DE.Controllers.Main.txtMissOperator":"Fehlender Operator","DE.Controllers.Main.txtNeedSynchronize":"Änderungen wurden vorgenommen","DE.Controllers.Main.txtNone":"Kein(e)","DE.Controllers.Main.txtNoTableOfContents":"Dieses Dokument enthält keine Überschriften. Wenden Sie ein Überschriftenformat auf den Text an, damit es im Inhaltsverzeichnis angezeigt wird.","DE.Controllers.Main.txtNoTableOfFigures":"Es konnten keine Einträge für ein Abbildungsverzeichnis gefunden werden.","DE.Controllers.Main.txtNoText":"Fehler! Im Dokument gibt es keinen Text des angegebenen Stils.","DE.Controllers.Main.txtNotInTable":"Nicht in Tabelle","DE.Controllers.Main.txtNotValidBookmark":"Fehler! Ungültiger Lesezeichen-Link.","DE.Controllers.Main.txtOddPage":"Ungerade Seite","DE.Controllers.Main.txtOnPage":"auf Seite","DE.Controllers.Main.txtRectangles":"Rechtecke","DE.Controllers.Main.txtSameAsPrev":"Dasselbe wie zuvor","DE.Controllers.Main.txtSaveCopyAsComplete":"Die Dateikopie wurde erfolgreich gespeichert","DE.Controllers.Main.txtScheme_Aspect":"Aspekt ","DE.Controllers.Main.txtScheme_Blue":"Blau","DE.Controllers.Main.txtScheme_Blue_Green":"Blau Grün","DE.Controllers.Main.txtScheme_Blue_II":"Blau II","DE.Controllers.Main.txtScheme_Blue_Warm":"Warmes Blau","DE.Controllers.Main.txtScheme_Grayscale":"Grauskala","DE.Controllers.Main.txtScheme_Green":"Grün","DE.Controllers.Main.txtScheme_Green_Yellow":"Grün-Gelb","DE.Controllers.Main.txtScheme_Marquee":"Festzelt","DE.Controllers.Main.txtScheme_Median":"Mittelwert","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"Orange","DE.Controllers.Main.txtScheme_Orange_Red":"Orangerot","DE.Controllers.Main.txtScheme_Paper":"Papier","DE.Controllers.Main.txtScheme_Red":"Rot","DE.Controllers.Main.txtScheme_Red_Orange":"Rot-Orange","DE.Controllers.Main.txtScheme_Red_Violet":"Rot-Violett","DE.Controllers.Main.txtScheme_Slipstream":"Windschatten","DE.Controllers.Main.txtScheme_Violet":"Violett","DE.Controllers.Main.txtScheme_Violet_II":"Violett II","DE.Controllers.Main.txtScheme_Yellow":"Gelb","DE.Controllers.Main.txtScheme_Yellow_Orange":"Gelb-Orange","DE.Controllers.Main.txtSection":"-Abschnitt","DE.Controllers.Main.txtSeries":"Reihen","DE.Controllers.Main.txtShape_accentBorderCallout1":"Legende mit Linie 1 (Rahmen und Markierungsleiste)","DE.Controllers.Main.txtShape_accentBorderCallout2":"Legende mit Linie 2 (Rahmen und Markierungsleiste)","DE.Controllers.Main.txtShape_accentBorderCallout3":"Legende mit Linie 3 (Rahmen und Markierungsleiste)","DE.Controllers.Main.txtShape_accentCallout1":"Legende mit Linie 1 (Markierungsleiste)","DE.Controllers.Main.txtShape_accentCallout2":"Legende mit Linie 2 (Markierungsleiste)","DE.Controllers.Main.txtShape_accentCallout3":"Legende mit Linie 3 (Markierungsleiste)","DE.Controllers.Main.txtShape_actionButtonBackPrevious":"Schaltfläche \"Zurück\"","DE.Controllers.Main.txtShape_actionButtonBeginning":"Button \"Start\"","DE.Controllers.Main.txtShape_actionButtonBlank":"Leere Schaltfläche","DE.Controllers.Main.txtShape_actionButtonDocument":"Dokumentschaltfläche","DE.Controllers.Main.txtShape_actionButtonEnd":"Schaltfläche „Beenden\"","DE.Controllers.Main.txtShape_actionButtonForwardNext":"Schaltfläche 'Weiter'","DE.Controllers.Main.txtShape_actionButtonHelp":"Schaltfläche \"Hilfe\"","DE.Controllers.Main.txtShape_actionButtonHome":"Schaltfläche \"Startseite\"","DE.Controllers.Main.txtShape_actionButtonInformation":"Schaltfläche \"Informationen\"","DE.Controllers.Main.txtShape_actionButtonMovie":"Schaltfläche \"Movie\"","DE.Controllers.Main.txtShape_actionButtonReturn":"Schaltfläche „Zurück\"","DE.Controllers.Main.txtShape_actionButtonSound":"Schaltfläche \"Ton\"","DE.Controllers.Main.txtShape_arc":"Bogen","DE.Controllers.Main.txtShape_bentArrow":"Gebogener Pfeil","DE.Controllers.Main.txtShape_bentConnector5":"Gewinkelte Verbindung","DE.Controllers.Main.txtShape_bentConnector5WithArrow":"Gewinkelte Verbindung mit Pfeil","DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"Gewinkelte Verbindung mit Doppelpfeil","DE.Controllers.Main.txtShape_bentUpArrow":"Nach oben gebogener Pfeil","DE.Controllers.Main.txtShape_bevel":"Abschrägung","DE.Controllers.Main.txtShape_blockArc":"Halbbogen","DE.Controllers.Main.txtShape_borderCallout1":"Legende mit Linie 1","DE.Controllers.Main.txtShape_borderCallout2":"Legende mit Linie 2","DE.Controllers.Main.txtShape_borderCallout3":"Legende mit Linie 3","DE.Controllers.Main.txtShape_bracePair":"Geschweifte Klammer links/rechts","DE.Controllers.Main.txtShape_callout1":"Legende mit Linie 1 (ohne Rahmen)","DE.Controllers.Main.txtShape_callout2":"Legende mit Linie 2 (ohne Rahmen)","DE.Controllers.Main.txtShape_callout3":"Legende mit Linie 3 (ohne Rahmen)","DE.Controllers.Main.txtShape_can":"Zylinder","DE.Controllers.Main.txtShape_chevron":"Winkel","DE.Controllers.Main.txtShape_chord":"Akkord","DE.Controllers.Main.txtShape_circularArrow":"Gebogener Pfeil","DE.Controllers.Main.txtShape_cloud":"Cloud","DE.Controllers.Main.txtShape_cloudCallout":"Cloud Legende","DE.Controllers.Main.txtShape_corner":"Ecke","DE.Controllers.Main.txtShape_cube":"Cube","DE.Controllers.Main.txtShape_curvedConnector3":"Gekrümmte Verbindung","DE.Controllers.Main.txtShape_curvedConnector3WithArrow":"Gekrümmte Verbindung mit Pfeil","DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"Gekrümmte Verbindung mit Doppelpfeil","DE.Controllers.Main.txtShape_curvedDownArrow":"Nach unten gekrümmter Pfeil","DE.Controllers.Main.txtShape_curvedLeftArrow":"Nach links gekrümmter Pfeil","DE.Controllers.Main.txtShape_curvedRightArrow":"Nach rechts gekrümmter Pfeil","DE.Controllers.Main.txtShape_curvedUpArrow":"Nach oben gekrümmter Pfeil","DE.Controllers.Main.txtShape_decagon":"Zehneck","DE.Controllers.Main.txtShape_diagStripe":"Diagonaler Streifen","DE.Controllers.Main.txtShape_diamond":"Raute","DE.Controllers.Main.txtShape_dodecagon":"Zwölfeck","DE.Controllers.Main.txtShape_donut":"Rad","DE.Controllers.Main.txtShape_doubleWave":"Doppelte Welle","DE.Controllers.Main.txtShape_downArrow":"Pfeil nach unten","DE.Controllers.Main.txtShape_downArrowCallout":"Legende mit Pfeil nach unten","DE.Controllers.Main.txtShape_ellipse":"Ellipse","DE.Controllers.Main.txtShape_ellipseRibbon":"Nach unten gekrümmtes Band","DE.Controllers.Main.txtShape_ellipseRibbon2":"Nach oben gekrümmtes Band","DE.Controllers.Main.txtShape_flowChartAlternateProcess":"Flussdiagramm: Alternativer Prozess","DE.Controllers.Main.txtShape_flowChartCollate":"Flussdiagramm: Zusammenstellen","DE.Controllers.Main.txtShape_flowChartConnector":"Flussdiagramm: Verbindungsstelle","DE.Controllers.Main.txtShape_flowChartDecision":"Flussdiagramm: Verzweigung","DE.Controllers.Main.txtShape_flowChartDelay":"Flussdiagramm: Verzögerung","DE.Controllers.Main.txtShape_flowChartDisplay":"Flussdiagramm: Anzeige","DE.Controllers.Main.txtShape_flowChartDocument":"Flussdiagramm: Dokument","DE.Controllers.Main.txtShape_flowChartExtract":"Flussdiagramm: Auszug","DE.Controllers.Main.txtShape_flowChartInputOutput":"Flussdiagramm: Daten","DE.Controllers.Main.txtShape_flowChartInternalStorage":"Flussdiagramm: Zentralspeicher","DE.Controllers.Main.txtShape_flowChartMagneticDisk":"Flussdiagramm: Magnetplattenspeicher","DE.Controllers.Main.txtShape_flowChartMagneticDrum":"Flussdiagramm: Datenträger mit direktem Zugriff","DE.Controllers.Main.txtShape_flowChartMagneticTape":"Flussdiagramm: Datenträger mit sequenziellem Zugriff","DE.Controllers.Main.txtShape_flowChartManualInput":"Flussdiagramm: Manuelle Eingabe","DE.Controllers.Main.txtShape_flowChartManualOperation":"Flussdiagramm: Manuelle Verarbeitung","DE.Controllers.Main.txtShape_flowChartMerge":"Flussdiagramm: Zusammenführen","DE.Controllers.Main.txtShape_flowChartMultidocument":"Flussdiagramm: Mehrere Dokumente","DE.Controllers.Main.txtShape_flowChartOffpageConnector":"Flussdiagramm: Verbindungsstelle zu einer anderen Seite","DE.Controllers.Main.txtShape_flowChartOnlineStorage":"Flussdiagramm: Gespeicherte Daten","DE.Controllers.Main.txtShape_flowChartOr":"Flussdiagramm","DE.Controllers.Main.txtShape_flowChartPredefinedProcess":"Flussdiagramm: Vordefinierter Prozess","DE.Controllers.Main.txtShape_flowChartPreparation":"Flussdiagramm: Vorbereitung","DE.Controllers.Main.txtShape_flowChartProcess":"Flussdiagramm: Prozess","DE.Controllers.Main.txtShape_flowChartPunchedCard":"Flussdiagramm: Karte","DE.Controllers.Main.txtShape_flowChartPunchedTape":"Flussdiagramm: Lochstreifen","DE.Controllers.Main.txtShape_flowChartSort":"Flussdiagramm: Sortieren","DE.Controllers.Main.txtShape_flowChartSummingJunction":"Flussdiagramm: Zusammenführung","DE.Controllers.Main.txtShape_flowChartTerminator":"Flussdiagramm: Grenzstelle","DE.Controllers.Main.txtShape_foldedCorner":"Gefaltete Ecke","DE.Controllers.Main.txtShape_frame":"Rahmen","DE.Controllers.Main.txtShape_halfFrame":"Halber Rahmen","DE.Controllers.Main.txtShape_heart":"Herz","DE.Controllers.Main.txtShape_heptagon":"Siebeneck","DE.Controllers.Main.txtShape_hexagon":"Sechseck","DE.Controllers.Main.txtShape_homePlate":"Richtungspfeil","DE.Controllers.Main.txtShape_horizontalScroll":"Horizontaler Bildlauf","DE.Controllers.Main.txtShape_irregularSeal1":"Explosion 1","DE.Controllers.Main.txtShape_irregularSeal2":"Explosion 2","DE.Controllers.Main.txtShape_leftArrow":"Pfeil nach links","DE.Controllers.Main.txtShape_leftArrowCallout":"Legende mit Pfeil nach links","DE.Controllers.Main.txtShape_leftBrace":"Geschweifte Klammer links","DE.Controllers.Main.txtShape_leftBracket":"Runde Klammer links","DE.Controllers.Main.txtShape_leftRightArrow":"Pfeil nach links und rechts","DE.Controllers.Main.txtShape_leftRightArrowCallout":"Legende mit Pfeil nach links und rechts","DE.Controllers.Main.txtShape_leftRightUpArrow":"Pfeil nach links, rechts und oben","DE.Controllers.Main.txtShape_leftUpArrow":"Pfeil nach links und oben","DE.Controllers.Main.txtShape_lightningBolt":"Gewitterblitz","DE.Controllers.Main.txtShape_line":"Linie","DE.Controllers.Main.txtShape_lineWithArrow":"Pfeil","DE.Controllers.Main.txtShape_lineWithTwoArrows":"Doppelpfeil","DE.Controllers.Main.txtShape_mathDivide":"Division","DE.Controllers.Main.txtShape_mathEqual":"Gleich","DE.Controllers.Main.txtShape_mathMinus":"Minus","DE.Controllers.Main.txtShape_mathMultiply":"Multiplizieren","DE.Controllers.Main.txtShape_mathNotEqual":"Nicht gleich","DE.Controllers.Main.txtShape_mathPlus":"Plus","DE.Controllers.Main.txtShape_moon":"Monat","DE.Controllers.Main.txtShape_noSmoking":"\"Nein\" Zeichen","DE.Controllers.Main.txtShape_notchedRightArrow":"Eingekerbter Pfeil nach rechts","DE.Controllers.Main.txtShape_octagon":"Achteck","DE.Controllers.Main.txtShape_parallelogram":"Parallelogramm","DE.Controllers.Main.txtShape_pentagon":"Richtungspfeil","DE.Controllers.Main.txtShape_pie":"Kuchendiagramm","DE.Controllers.Main.txtShape_plaque":"Zeichen","DE.Controllers.Main.txtShape_plus":"Plus","DE.Controllers.Main.txtShape_polyline1":"Skizze","DE.Controllers.Main.txtShape_polyline2":"Freihandform","DE.Controllers.Main.txtShape_quadArrow":"Pfeil in vier Richtungen","DE.Controllers.Main.txtShape_quadArrowCallout":"Legende mit Pfeil in vier Richtungen","DE.Controllers.Main.txtShape_rect":"Rechteck","DE.Controllers.Main.txtShape_ribbon":"Band nach unten","DE.Controllers.Main.txtShape_ribbon2":"Band hoch","DE.Controllers.Main.txtShape_rightArrow":"Pfeil nach rechts","DE.Controllers.Main.txtShape_rightArrowCallout":"Legende mit Pfeil nach rechts","DE.Controllers.Main.txtShape_rightBrace":"Geschweifte Klammer rechts","DE.Controllers.Main.txtShape_rightBracket":"Runde Klammer rechts","DE.Controllers.Main.txtShape_round1Rect":"Eine Ecke des Rechtecks abrunden","DE.Controllers.Main.txtShape_round2DiagRect":"Diagonal liegende Ecken des Rechtecks abrunden","DE.Controllers.Main.txtShape_round2SameRect":"Auf der gleichen Seite des Rechtecks liegende Ecken abrunden","DE.Controllers.Main.txtShape_roundRect":"Rechteck mit runden Ecken","DE.Controllers.Main.txtShape_rtTriangle":"Rechtwinkliges Dreieck","DE.Controllers.Main.txtShape_smileyFace":"Smiley","DE.Controllers.Main.txtShape_snip1Rect":"Eine Ecke des Rechtecks schneiden","DE.Controllers.Main.txtShape_snip2DiagRect":"Diagonal liegende Ecken des Rechtecks schneiden","DE.Controllers.Main.txtShape_snip2SameRect":"Ecken des Rechtecks auf der gleichen Seite schneiden","DE.Controllers.Main.txtShape_snipRoundRect":"Eine Ecke des Rechtecks schneiden und abrunden","DE.Controllers.Main.txtShape_spline":"Kurve","DE.Controllers.Main.txtShape_star10":"10-zackiger Stern","DE.Controllers.Main.txtShape_star12":"12-zackiger Stern","DE.Controllers.Main.txtShape_star16":"16-zackiger Stern","DE.Controllers.Main.txtShape_star24":"24-zackiger Stern","DE.Controllers.Main.txtShape_star32":"32-zackiger Stern","DE.Controllers.Main.txtShape_star4":"4-zackiger Stern","DE.Controllers.Main.txtShape_star5":"5-zackiger Stern","DE.Controllers.Main.txtShape_star6":"6-zackiger Stern","DE.Controllers.Main.txtShape_star7":"7-zackiger Stern","DE.Controllers.Main.txtShape_star8":"8-zackiger Stern","DE.Controllers.Main.txtShape_stripedRightArrow":"Gestreifter Pfeil nach rechts","DE.Controllers.Main.txtShape_sun":"Sonne","DE.Controllers.Main.txtShape_teardrop":"Tropfenförmig","DE.Controllers.Main.txtShape_textRect":"Textfeld","DE.Controllers.Main.txtShape_trapezoid":"Trapezoid","DE.Controllers.Main.txtShape_triangle":"Dreieck","DE.Controllers.Main.txtShape_upArrow":"Pfeil nach oben","DE.Controllers.Main.txtShape_upArrowCallout":"Legende mit Pfeil nach oben","DE.Controllers.Main.txtShape_upDownArrow":"Pfeil nach unten","DE.Controllers.Main.txtShape_uturnArrow":"180-Grad-Pfeil","DE.Controllers.Main.txtShape_verticalScroll":"Vertikaler Bildlauf","DE.Controllers.Main.txtShape_wave":"Welle","DE.Controllers.Main.txtShape_wedgeEllipseCallout":"Ovale Legende","DE.Controllers.Main.txtShape_wedgeRectCallout":"Rechteckige Legende","DE.Controllers.Main.txtShape_wedgeRoundRectCallout":"Abgerundete rechteckige Legende","DE.Controllers.Main.txtStarsRibbons":"Sterne und Bänder","DE.Controllers.Main.txtStyle_Book_Title":"Buchtitel","DE.Controllers.Main.txtStyle_Caption":"Beschriftung","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"Standard-Absatzschriftart","DE.Controllers.Main.txtStyle_Emphasis":"Hervorhebung","DE.Controllers.Main.txtStyle_endnote_reference":"Endnote-Referenz","DE.Controllers.Main.txtStyle_endnote_text":"Endnotentext","DE.Controllers.Main.txtStyle_footnote_reference":"Fußnotenreferenz","DE.Controllers.Main.txtStyle_footnote_text":"Fußnotentext","DE.Controllers.Main.txtStyle_Heading_1":"Überschrift 1","DE.Controllers.Main.txtStyle_Heading_2":"Überschrift 2","DE.Controllers.Main.txtStyle_Heading_3":"Überschrift 3","DE.Controllers.Main.txtStyle_Heading_4":"Überschrift 4","DE.Controllers.Main.txtStyle_Heading_5":"Überschrift 5","DE.Controllers.Main.txtStyle_Heading_6":"Überschrift 6","DE.Controllers.Main.txtStyle_Heading_7":"Überschrift 7","DE.Controllers.Main.txtStyle_Heading_8":"Überschrift 8","DE.Controllers.Main.txtStyle_Heading_9":"Überschrift 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"Intensive Hervorhebung","DE.Controllers.Main.txtStyle_Intense_Quote":"Intensives Zitat","DE.Controllers.Main.txtStyle_Intense_Reference":"Intensive Referenz","DE.Controllers.Main.txtStyle_List_Paragraph":"Listenabsatz","DE.Controllers.Main.txtStyle_No_List":"Keine Liste","DE.Controllers.Main.txtStyle_No_Spacing":"Kein Abstand","DE.Controllers.Main.txtStyle_Normal":"Normal","DE.Controllers.Main.txtStyle_Quote":"Zitat","DE.Controllers.Main.txtStyle_Strong":"Stark","DE.Controllers.Main.txtStyle_Subtitle":"Untertitel","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"Dezente Hervorhebung","DE.Controllers.Main.txtStyle_Subtle_Reference":"Subtile Referenz","DE.Controllers.Main.txtStyle_Title":"Titel","DE.Controllers.Main.txtSyntaxError":"Syntaxfehler","DE.Controllers.Main.txtTableInd":"Tabellenindex darf nicht Null sein","DE.Controllers.Main.txtTableOfContents":"Inhaltsverzeichnis","DE.Controllers.Main.txtTableOfFigures":"Abbildungsverzeichnis","DE.Controllers.Main.txtTOCHeading":"Inhaltsverzeichnisüberschrift","DE.Controllers.Main.txtTooLarge":"Nummer zu groß zum Formatieren","DE.Controllers.Main.txtTypeEquation":"Hier die Gleichung eingeben.","DE.Controllers.Main.txtUndefBookmark":"Undefiniertes Lesezeichen","DE.Controllers.Main.txtXAxis":"x-Achse","DE.Controllers.Main.txtYAxis":"y-Achse","DE.Controllers.Main.txtZeroDivide":"Nullteilung","DE.Controllers.Main.unknownErrorText":"Unbekannter Fehler.","DE.Controllers.Main.unsupportedBrowserErrorText":"Ihr Webbrowser wird nicht unterstützt.","DE.Controllers.Main.updateChartText":"Diagrammdaten werden aktualisiert …","DE.Controllers.Main.uploadDocExtMessage":"Unbekanntes Dokumentformat.","DE.Controllers.Main.uploadDocFileCountMessage":"Keine Dokumente hochgeladen.","DE.Controllers.Main.uploadDocSizeMessage":"Maximale Dokumentgröße ist überschritten.","DE.Controllers.Main.uploadImageExtMessage":"Unbekanntes Bildformat.","DE.Controllers.Main.uploadImageFileCountMessage":"Kein Bild wird hochgeladen.","DE.Controllers.Main.uploadImageSizeMessage":"Die maximal zulässige Bildgröße von 25 MB ist überschritten.","DE.Controllers.Main.uploadImageTextText":"Das Bild wird hochgeladen...","DE.Controllers.Main.uploadImageTitleText":"Bild wird hochgeladen","DE.Controllers.Main.waitText":"Bitte warten...","DE.Controllers.Main.warnBrowserIE9":"Die Applkation hat geringte Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.","DE.Controllers.Main.warnBrowserZoom":"Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination Strg+0 wieder her.","DE.Controllers.Main.warnLicenseAnonymous":"Zugriff für anonyme Benutzer verweigert.
Dieses Dokument wird nur zur Ansicht geöffnet.","DE.Controllers.Main.warnLicenseBefore":"Lizenz nicht aktiv.
Bitte wenden Sie sich an Ihren Administrator.","DE.Controllers.Main.warnLicenseExp":"Ihre Lizenz ist abgelaufen.
Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.","DE.Controllers.Main.warnLicenseLimitedNoAccess":"Die Lizenz ist abgelaufen.
Die Bearbeitungsfunktionen sind nicht verfügbar.
Bitte wenden Sie sich an Ihrem Administrator.","DE.Controllers.Main.warnLicenseLimitedRenewed":"Die Lizenz soll aktualisiert werden.
Die Bearbeitungsfunktionen sind eingeschränkt.
Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff","DE.Controllers.Main.warnNoLicense":"Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.","DE.Controllers.Main.warnNoLicenseUsers":"Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.","DE.Controllers.Main.warnProcessRightsChange":"Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.","DE.Controllers.Main.warnStartFilling":"Das Formular wird ausgefüllt.
Die Dateibearbeitung ist derzeit nicht möglich.","DE.Controllers.Navigation.txtBeginning":"Anfang des Dokuments","DE.Controllers.Navigation.txtGotoBeginning":"Zum Anfang des Dokuments übergehnen","DE.Controllers.Print.textMarginsLast":" Benutzerdefiniert als letzte","DE.Controllers.Print.txtCustom":"Benutzerdefiniert","DE.Controllers.Print.txtPrintRangeInvalid":"Ungültiger Druckbereich","DE.Controllers.Search.notcriticalErrorTitle":"Achtung","DE.Controllers.Search.textNoTextFound":"Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.","DE.Controllers.Search.textReplaceSkipped":"Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.","DE.Controllers.Search.textReplaceSuccess":"Die Suche wurde durchgeführt. {0} Einträge wurden ersetzt","DE.Controllers.Search.warnReplaceString":"{0} ist kein gültiges Sonderzeichen für das Feld \"Ersetzen durch\".","DE.Controllers.Statusbar.textDisconnect":"Die Verbindung wurde unterbrochen
Verbindungsversuch. Bitte Verbindungseinstellungen überprüfen.","DE.Controllers.Statusbar.textHasChanges":"Neue Änderungen wurden zurückverfolgt","DE.Controllers.Statusbar.textSetTrackChanges":"Nachverfolgung von Änderungen ist aktiv","DE.Controllers.Statusbar.textTrackChanges":"Das Dokument wird im Modus \"Nachverfolgen von Änderungen\" geöffnet. ","DE.Controllers.Statusbar.tipReview":"Nachverfolgen von Änderungen","DE.Controllers.Statusbar.zoomText":"Zoom {0}%","DE.Controllers.Toolbar.confirmAddFontName":"Die Schriftart, die Sie verwenden wollen, ist auf diesem Gerät nicht verfügbar.
Der Textstil wird mit einer der Systemschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.
Wollen Sie fortsetzen?","DE.Controllers.Toolbar.dataUrl":"Eine URL der Daten einfügen","DE.Controllers.Toolbar.errorAccessDeny":"Sie versuchen, eine Aktion durchzuführen, für die Sie keine Rechte haben.
Wenden Sie sich bitte an Ihren Document Server-Administrator.","DE.Controllers.Toolbar.fileUrl":"URL der Datei einfügen","DE.Controllers.Toolbar.helpChartElements":"Schalten Sie die Sichtbarkeit von Diagrammelementen einfach mit mehreren Klicks um.","DE.Controllers.Toolbar.helpChartElementsHeader":"Anzeige der Diagrammelemente","DE.Controllers.Toolbar.helpCommentFilter":"Verwalten Sie Ihre Ansicht, indem Sie im linken Bereich zwischen offenen und gelösten Kommentaren wechseln.","DE.Controllers.Toolbar.helpCommentFilterHeader":"Kommentarfilter","DE.Controllers.Toolbar.notcriticalErrorTitle":"Achtung","DE.Controllers.Toolbar.textAccent":"Akzente","DE.Controllers.Toolbar.textBracket":"Klammern","DE.Controllers.Toolbar.textConvertFormDownload":"Laden Sie die Datei als ausfüllbares PDF-Formular herunter, um sie ausfüllen zu können.","DE.Controllers.Toolbar.textConvertFormSave":"Speichern Sie die Datei als ausfüllbares PDF-Formular, um sie ausfüllen zu können.","DE.Controllers.Toolbar.textDownloadPdf":"PDF herunterladen","DE.Controllers.Toolbar.textEmptyMMergeUrl":"Geben Sie URL ein.","DE.Controllers.Toolbar.textFontSizeErr":"Der eingegebene Wert ist falsch.
Geben Sie bitte einen numerischen Wert zwischen 1 und 300 ein.","DE.Controllers.Toolbar.textFraction":"Bruchteile","DE.Controllers.Toolbar.textFunction":"Funktionen","DE.Controllers.Toolbar.textGroup":"Gruppe","DE.Controllers.Toolbar.textInsert":"Einfügen","DE.Controllers.Toolbar.textIntegral":"Integrale","DE.Controllers.Toolbar.textLargeOperator":"Große Operatoren","DE.Controllers.Toolbar.textLimitAndLog":"Grenzwerte und Logarithmen","DE.Controllers.Toolbar.textMatrix":"Matrizen","DE.Controllers.Toolbar.textOperator":"Operatoren","DE.Controllers.Toolbar.textRadical":"Wurzeln","DE.Controllers.Toolbar.textRecentlyUsed":"Zuletzt verwendet","DE.Controllers.Toolbar.textSavePdf":"Als PDF speichern","DE.Controllers.Toolbar.textScript":"Skripts","DE.Controllers.Toolbar.textSymbols":"Symbole","DE.Controllers.Toolbar.textTabForms":"Formulare","DE.Controllers.Toolbar.textWarning":"Achtung","DE.Controllers.Toolbar.txtAccent_Accent":"Akut","DE.Controllers.Toolbar.txtAccent_ArrowD":"Pfeil nach rechts und links oben","DE.Controllers.Toolbar.txtAccent_ArrowL":"Pfeil nach links oben","DE.Controllers.Toolbar.txtAccent_ArrowR":"Pfeil nach rechts oben","DE.Controllers.Toolbar.txtAccent_Bar":"Balken","DE.Controllers.Toolbar.txtAccent_BarBot":"Unterstreichung","DE.Controllers.Toolbar.txtAccent_BarTop":"Überstreichung","DE.Controllers.Toolbar.txtAccent_BorderBox":"Geschachtelte Formel (mit Platzhalter)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"Geschachtelte Formel (Beispiel)","DE.Controllers.Toolbar.txtAccent_Check":"Prüfen","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"Horizontale geschweifte Klammer (unten)","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"Horizontale geschweifte Klammer (oben)","DE.Controllers.Toolbar.txtAccent_Custom_1":"Vektor A","DE.Controllers.Toolbar.txtAccent_Custom_2":"ABC mit Überstreichung","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y Mit Überstreichung","DE.Controllers.Toolbar.txtAccent_DDDot":"Dreifacher Punkt","DE.Controllers.Toolbar.txtAccent_DDot":"Doppelpunkt","DE.Controllers.Toolbar.txtAccent_Dot":"Punkt","DE.Controllers.Toolbar.txtAccent_DoubleBar":"Doppelte Überstreichung","DE.Controllers.Toolbar.txtAccent_Grave":"Gravis","DE.Controllers.Toolbar.txtAccent_GroupBot":"Gruppierungszeichen unten","DE.Controllers.Toolbar.txtAccent_GroupTop":"Gruppierungszeichen oben","DE.Controllers.Toolbar.txtAccent_HarpoonL":"Harpune nach links oben","DE.Controllers.Toolbar.txtAccent_HarpoonR":"Harpune nach rechts oben","DE.Controllers.Toolbar.txtAccent_Hat":"Dach","DE.Controllers.Toolbar.txtAccent_Smile":"Brevis","DE.Controllers.Toolbar.txtAccent_Tilde":"Tilde","DE.Controllers.Toolbar.txtBracket_Angle":"Spitze Klammern","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"Spitze Klammern mit Trennzeichen","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"Spitze Klammern mit zwei Trennzeichen","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"Rechte spitze Klammer","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"Linke spitze Klammer","DE.Controllers.Toolbar.txtBracket_Curve":"Geschwungene Klammern","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"Geschweifte Klammern mit Trennzeichen","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"Linke runde Klammer","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"Einzelne eckige Klammer","DE.Controllers.Toolbar.txtBracket_Custom_1":"Fälle (zwei Bedingungen)","DE.Controllers.Toolbar.txtBracket_Custom_2":"Fälle (drei Bedingungen)","DE.Controllers.Toolbar.txtBracket_Custom_3":"Stapelobjekt","DE.Controllers.Toolbar.txtBracket_Custom_4":"Stapel Objekt in eckigen Klammern","DE.Controllers.Toolbar.txtBracket_Custom_5":"Fallbeispiele","DE.Controllers.Toolbar.txtBracket_Custom_6":"Binomialkoeffizient","DE.Controllers.Toolbar.txtBracket_Custom_7":"Binomialkoeffizient in spitzen Klammern","DE.Controllers.Toolbar.txtBracket_Line":"Vertikale Balken","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"Rechter vertikaler Balken","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"Linker vertikaler Balken","DE.Controllers.Toolbar.txtBracket_LineDouble":"Doppelte vertikale Balken","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"Rechter doppelter vertikaler Balken","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"Linker doppelter vertikaler Klammer","DE.Controllers.Toolbar.txtBracket_LowLim":"Boden","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"Rechter Boden","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"Linke Decke","DE.Controllers.Toolbar.txtBracket_Round":"Runde Klammern","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"Runde Klammern mit Trennlinien","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"Rechte runde Klammer","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"Linke runde Klammer","DE.Controllers.Toolbar.txtBracket_Square":"Eckige Klammern","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"Platzhalter zwischen zwei rechten eckigen Klammern","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"Umgekehrte eckige Klammern","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"Rechte eckige Klammer","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"Linke eckige Klammer","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"Platzhalter zwischen zwei linken eckigen Klammern","DE.Controllers.Toolbar.txtBracket_SquareDouble":"Doppelte eckige Klammern","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"Rechte doppelte eckige Klammer","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"Linke doppelte eckige Klammer","DE.Controllers.Toolbar.txtBracket_UppLim":"Decke","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"Rechte Decke","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"Linke Decke","DE.Controllers.Toolbar.txtDownload":"Herunterladen","DE.Controllers.Toolbar.txtFractionDiagonal":"Versetzter Bruch mit schrägem Bruchstrich","DE.Controllers.Toolbar.txtFractionDifferential_1":"dx über dy","DE.Controllers.Toolbar.txtFractionDifferential_2":"Obergrenze Delta y über Obergrenze Delta x","DE.Controllers.Toolbar.txtFractionDifferential_3":"partielles y über partielles x","DE.Controllers.Toolbar.txtFractionDifferential_4":"Delta y über Delta x","DE.Controllers.Toolbar.txtFractionHorizontal":"Bruch mit schrägem Bruchstrich","DE.Controllers.Toolbar.txtFractionPi_2":"Pi wird durch 2 dividiert","DE.Controllers.Toolbar.txtFractionSmall":"Kleine Bruchzahl","DE.Controllers.Toolbar.txtFractionVertical":"Bruch mit waagerechtem Bruchstrich","DE.Controllers.Toolbar.txtFunction_1_Cos":"Umgekehrte Kosinus-Funktion","DE.Controllers.Toolbar.txtFunction_1_Cosh":"Hyperbolische umgekehrte Kosinus-Funktion","DE.Controllers.Toolbar.txtFunction_1_Cot":"Umgekehrte Kotangens-Funktion","DE.Controllers.Toolbar.txtFunction_1_Coth":"Hyperbolische umgekehrte Kotangens-Funktion","DE.Controllers.Toolbar.txtFunction_1_Csc":"Umgekehrte Kosekansfunktion","DE.Controllers.Toolbar.txtFunction_1_Csch":"Hyperbolische umgekehrte Kosekans-Funktion","DE.Controllers.Toolbar.txtFunction_1_Sec":"Umgekehrte Sekans-Funktion","DE.Controllers.Toolbar.txtFunction_1_Sech":"Hyperbolische umgekehrte Sekans-Funktion","DE.Controllers.Toolbar.txtFunction_1_Sin":"Umgekehrte Sinus-Funktion","DE.Controllers.Toolbar.txtFunction_1_Sinh":"Hyperbolische umgekehrte Sinus-Funktion","DE.Controllers.Toolbar.txtFunction_1_Tan":"Umgekehrte Tangens-Funktion","DE.Controllers.Toolbar.txtFunction_1_Tanh":"Hyperbolische umgekehrte Tangens-Funktion","DE.Controllers.Toolbar.txtFunction_Cos":"Kosinusfunktion","DE.Controllers.Toolbar.txtFunction_Cosh":"Hyperbolische Kosinusfunktion","DE.Controllers.Toolbar.txtFunction_Cot":"Kotangensfunktion","DE.Controllers.Toolbar.txtFunction_Coth":"Hyperbolische Kotangensfunktion","DE.Controllers.Toolbar.txtFunction_Csc":"Kosekansfunktion","DE.Controllers.Toolbar.txtFunction_Csch":"Hyperbolische Kosekansfunktion","DE.Controllers.Toolbar.txtFunction_Custom_1":"Sinus Theta","DE.Controllers.Toolbar.txtFunction_Custom_2":"Kosinus 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"Tangensformel","DE.Controllers.Toolbar.txtFunction_Sec":"Sekans-Funktion","DE.Controllers.Toolbar.txtFunction_Sech":"Hyperbolische Sekans-Funktion","DE.Controllers.Toolbar.txtFunction_Sin":"Sinus-Funktion","DE.Controllers.Toolbar.txtFunction_Sinh":"Hyperbolische Sinus-Funktion","DE.Controllers.Toolbar.txtFunction_Tan":"Tangens-Funktion","DE.Controllers.Toolbar.txtFunction_Tanh":"Hyperbolische Tangens-Funktion","DE.Controllers.Toolbar.txtIntegral":"Integral","DE.Controllers.Toolbar.txtIntegral_dtheta":"Differenzial Theta","DE.Controllers.Toolbar.txtIntegral_dx":"Differenzial x","DE.Controllers.Toolbar.txtIntegral_dy":"Differenzial y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral mit gestapelten Grenzwerten","DE.Controllers.Toolbar.txtIntegralDouble":"Doppelintegral","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Doppelintegral mit gestapelten Grenzwerten","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Doppelintegral mit Grenzwerten","DE.Controllers.Toolbar.txtIntegralOriented":"Konturenintegral","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"Konturintegral mit gestapelten Grenzwerten","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"Oberflächenintegral","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Oberflächenintegral mit gestapelten Grenzen","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"Flächenintegral mit Grenzen","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"Konturintegral mit Grenzwerten","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"Volumenintegral","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"Volumenintegral mit gestapelten Grenzen","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"Volumenintegral mit Grenzen","DE.Controllers.Toolbar.txtIntegralSubSup":"Integral mit Grenzwerten","DE.Controllers.Toolbar.txtIntegralTriple":"Dreifaches Integral","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Dreifaches Integral mit gestapelten Grenzen","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"Dreifaches Integral mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Logik und","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Logisch und mit unteren Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Logisch und mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Logisches Und mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Logisches Und mit tiefgestellten/hochgestellten Grenzen","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"Koprodukt","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Koprodukt mit Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Koprodukt mit Grenzwerten","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Koprodukt mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Koprodukt mit tiefgestellten/hochgestellten Grenzwerten","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Summierung über k von n wähle k","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Summation von i gleich Null bis n","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Summationsbeispiel mit zwei Indizes","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Produktbeispiel","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"Vereinigungsbeispiel","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"Logisch oder","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"Logisch oder mit unteren Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"Logisch oder mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"Logisch oder mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"Logisch oder mit tiefgestellten/hochgestellten Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"Schnittmenge","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"Schnittmenge mit unterem Grenzwert","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"Schnittmenge mit Grenzwerten","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"Schnittmenge mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"Schnittmenge mit tiefgestellten/hochgestellten Grenzwerten","DE.Controllers.Toolbar.txtLargeOperator_Prod":"Produkt","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Produkt mit unteren Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Produkt mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Produkt mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Produkt mit tiefgestellten/hochgestellten Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Sum":"Summenbildung","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Summenbildung mit unterer Grenze","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Summenbildung mit Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Summation mit tiefgestellter Untergrenze","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Summierung mit tiefgestellten/hochgestellten Grenzen","DE.Controllers.Toolbar.txtLargeOperator_Union":"Vereinigung","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"Vereinigung mit unterer Grenze","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"Vereinigungsgrenzen","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"Vereinigung mit tiefgeschriebener unterer Grenze","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"Vereinigung mit tiefgeschriebenen/hochgeschriebenen Grenzen","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"Beispiel für Grenzwert","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"Beispiel für Maximum","DE.Controllers.Toolbar.txtLimitLog_Lim":"Grenzwert","DE.Controllers.Toolbar.txtLimitLog_Ln":"Natürlicher Logarithmus","DE.Controllers.Toolbar.txtLimitLog_Log":"Logarithmus","DE.Controllers.Toolbar.txtLimitLog_LogBase":"Logarithmus","DE.Controllers.Toolbar.txtLimitLog_Max":"Maximal","DE.Controllers.Toolbar.txtLimitLog_Min":"Minimal","DE.Controllers.Toolbar.txtMarginsH":"Die oberen und unteren Ränder sind zu hoch für eingegebene Seitenhöhe","DE.Controllers.Toolbar.txtMarginsW":"Die Ränder rechts und links sind bei gegebener Seitenbreite zu breit. ","DE.Controllers.Toolbar.txtMatrix_1_2":"1x2 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_1_3":"1x3 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_2_1":"2x1 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_2_2":"2x2 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"Leere 2 mal 2 Matrix in doppelten vertikalen Balken","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"Leere 2 mal 2 Determinante","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"Leere 2 mal 2 Matrix in Klammern","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"Leere 2 mal 2 Matrix in Klammern","DE.Controllers.Toolbar.txtMatrix_2_3":"2x3 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_3_1":"3x1 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_3_2":"3x2 leere Matrix","DE.Controllers.Toolbar.txtMatrix_3_3":"3x3 Leere Matrix","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"Grundlinienpunkte","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"Mittellinienpunkte","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"Diagonale Punkte","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"Vertikale Punkte","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"Dünnbesetzte Matrix in runden Klammern","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"Dünnbesetzte Matrix in Klammern","DE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 Identitätsmatrix mit Nullen","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"2x2 Identitätsmatrix","DE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 Identitätsmatrix mit Nullen","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3-Identitätsmatrix mit leeren Zellen außerhalb der Diagonalen","DE.Controllers.Toolbar.txtNeedDownload":"Der PDF-Viewer kann neue Änderungen nur in separaten Dateikopien speichern. Die gemeinsame Bearbeitung wird nicht unterstützt, und andere Nutzer können Ihre Änderungen nur sehen, wenn Sie eine neue Dateiversion freigeben.","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"Pfeil nach rechts und links unten","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"Pfeil nach rechts und links oben","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"Pfeil nach links unten","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"Pfeil nach links oben","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"Pfeil nach rechts unten","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"Pfeil nach rechts oben","DE.Controllers.Toolbar.txtOperator_ColonEquals":"Doppelpunkt gleich","DE.Controllers.Toolbar.txtOperator_Custom_1":"Ergibt","DE.Controllers.Toolbar.txtOperator_Custom_2":"Delta ergibt","DE.Controllers.Toolbar.txtOperator_Definition":"Gleich gemäß Definition","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta gleich","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"Pfeil nach rechts und links darunter","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"Pfeil nach rechts und links darüber","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"Pfeil nach links unten","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"Pfeil nach links oben","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"Pfeil nach rechts unten","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"Pfeil nach rechts oben","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"Gleich Gleich","DE.Controllers.Toolbar.txtOperator_MinusEquals":"Minus Gleich","DE.Controllers.Toolbar.txtOperator_PlusEquals":"Plus Gleich","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"Gemessen an","DE.Controllers.Toolbar.txtRadicalCustom_1":"Rechte Seite der quadratischen Formel","DE.Controllers.Toolbar.txtRadicalCustom_2":"Wurzel eines quadratischen plus b quadratisch","DE.Controllers.Toolbar.txtRadicalRoot_2":"Quadratwurzel mit Grad","DE.Controllers.Toolbar.txtRadicalRoot_3":"Kubikwurzel","DE.Controllers.Toolbar.txtRadicalRoot_n":"Wurzel mit Grad","DE.Controllers.Toolbar.txtRadicalSqrt":"Quadratwurzel","DE.Controllers.Toolbar.txtSaveCopy":"Kopie speichern","DE.Controllers.Toolbar.txtScriptCustom_1":"x tiefgestelltes y im Quadrat","DE.Controllers.Toolbar.txtScriptCustom_2":"e zum Minus i Omega t","DE.Controllers.Toolbar.txtScriptCustom_3":"x im Quadrat","DE.Controllers.Toolbar.txtScriptCustom_4":"Y links hochgestellt n links tiefgestellt eins","DE.Controllers.Toolbar.txtScriptSub":"Tiefgestellt","DE.Controllers.Toolbar.txtScriptSubSup":"Tiefgestellt-Hochgestellt","DE.Controllers.Toolbar.txtScriptSubSupLeft":"Hochgestellter/ tiefgestellter Index links","DE.Controllers.Toolbar.txtScriptSup":"Hochgestellt","DE.Controllers.Toolbar.txtSymbol_about":"Ungefähr","DE.Controllers.Toolbar.txtSymbol_additional":"Komplement","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Alpha","DE.Controllers.Toolbar.txtSymbol_approx":"Fast gleich","DE.Controllers.Toolbar.txtSymbol_ast":"Stern-Operator","DE.Controllers.Toolbar.txtSymbol_beta":"Beta","DE.Controllers.Toolbar.txtSymbol_beth":"Bet","DE.Controllers.Toolbar.txtSymbol_bullet":"Stichpunktoperator","DE.Controllers.Toolbar.txtSymbol_cap":"Schnittmenge","DE.Controllers.Toolbar.txtSymbol_cbrt":"Kubikwurzel","DE.Controllers.Toolbar.txtSymbol_cdots":"Horizontale Ellipse (Mittellinie)","DE.Controllers.Toolbar.txtSymbol_celsius":"Grad Celsius","DE.Controllers.Toolbar.txtSymbol_chi":"Chi","DE.Controllers.Toolbar.txtSymbol_cong":"Ungefähr gleich ","DE.Controllers.Toolbar.txtSymbol_cup":"Vereinigung","DE.Controllers.Toolbar.txtSymbol_ddots":"Diagonale Ellipse nach unten rechts","DE.Controllers.Toolbar.txtSymbol_degree":"Grad","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"Divisionszeichen","DE.Controllers.Toolbar.txtSymbol_downarrow":"Pfeil nach unten","DE.Controllers.Toolbar.txtSymbol_emptyset":"Leere Menge","DE.Controllers.Toolbar.txtSymbol_epsilon":"Epsilon","DE.Controllers.Toolbar.txtSymbol_equals":"Gleich","DE.Controllers.Toolbar.txtSymbol_equiv":"Identisch mit","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"Vorhanden","DE.Controllers.Toolbar.txtSymbol_factorial":"Faktoriell","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"Grad Fahrenheit","DE.Controllers.Toolbar.txtSymbol_forall":"Für alle","DE.Controllers.Toolbar.txtSymbol_gamma":"Gamma","DE.Controllers.Toolbar.txtSymbol_geq":"Größer als oder gleich wie ","DE.Controllers.Toolbar.txtSymbol_gg":"Viel größer als","DE.Controllers.Toolbar.txtSymbol_greater":"Größer als","DE.Controllers.Toolbar.txtSymbol_in":"Element","DE.Controllers.Toolbar.txtSymbol_inc":"Erhöhung","DE.Controllers.Toolbar.txtSymbol_infinity":"Unendlich","DE.Controllers.Toolbar.txtSymbol_iota":"Jota","DE.Controllers.Toolbar.txtSymbol_kappa":"Kappa","DE.Controllers.Toolbar.txtSymbol_lambda":"Lambda","DE.Controllers.Toolbar.txtSymbol_leftarrow":"Pfeil nach links","DE.Controllers.Toolbar.txtSymbol_leftrightarrow":"Pfeil nach rechts und links","DE.Controllers.Toolbar.txtSymbol_leq":"Kleiner als oder gleich","DE.Controllers.Toolbar.txtSymbol_less":"Kleiner als","DE.Controllers.Toolbar.txtSymbol_ll":"Viel kleiner als","DE.Controllers.Toolbar.txtSymbol_minus":"Minus","DE.Controllers.Toolbar.txtSymbol_mp":"Minus Plus","DE.Controllers.Toolbar.txtSymbol_mu":"Mu","DE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","DE.Controllers.Toolbar.txtSymbol_neq":"Nicht gleich","DE.Controllers.Toolbar.txtSymbol_ni":"Enthält als Element","DE.Controllers.Toolbar.txtSymbol_not":"Negationszeichen","DE.Controllers.Toolbar.txtSymbol_notexists":"Nicht vorhanden","DE.Controllers.Toolbar.txtSymbol_nu":"Nu","DE.Controllers.Toolbar.txtSymbol_o":"Omikron","DE.Controllers.Toolbar.txtSymbol_omega":"Omega","DE.Controllers.Toolbar.txtSymbol_partial":"Partielles Differenzial","DE.Controllers.Toolbar.txtSymbol_percent":"Prozentsatz","DE.Controllers.Toolbar.txtSymbol_phi":"Phi","DE.Controllers.Toolbar.txtSymbol_pi":"Pi","DE.Controllers.Toolbar.txtSymbol_plus":"Plus","DE.Controllers.Toolbar.txtSymbol_pm":"Plus Minus","DE.Controllers.Toolbar.txtSymbol_propto":"Proportional zu","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"Vierte Wurzel","DE.Controllers.Toolbar.txtSymbol_qed":"Ende des Beweises","DE.Controllers.Toolbar.txtSymbol_rddots":"Horizontale Ellipse nach oben rechts","DE.Controllers.Toolbar.txtSymbol_rho":"Rho","DE.Controllers.Toolbar.txtSymbol_rightarrow":"Pfeil nach rechts","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"Wurzelzeichen","DE.Controllers.Toolbar.txtSymbol_tau":"Tau","DE.Controllers.Toolbar.txtSymbol_therefore":"Folglich","DE.Controllers.Toolbar.txtSymbol_theta":"Theta","DE.Controllers.Toolbar.txtSymbol_times":"Multiplikationszeichen","DE.Controllers.Toolbar.txtSymbol_uparrow":"Pfeil nach oben","DE.Controllers.Toolbar.txtSymbol_upsilon":"Ypsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Epsilon Variant","DE.Controllers.Toolbar.txtSymbol_varphi":"Phi Variant","DE.Controllers.Toolbar.txtSymbol_varpi":"Pi Variant","DE.Controllers.Toolbar.txtSymbol_varrho":"Rho Variant","DE.Controllers.Toolbar.txtSymbol_varsigma":"Sigma Variant","DE.Controllers.Toolbar.txtSymbol_vartheta":"Theta Variant","DE.Controllers.Toolbar.txtSymbol_vdots":"Vertikale Ellipse","DE.Controllers.Toolbar.txtSymbol_xsi":"Xi","DE.Controllers.Toolbar.txtSymbol_zeta":"Zeta","DE.Controllers.Toolbar.txtUntitled":"Unbenannt","DE.Controllers.Viewport.textFitPage":"Seite anpassen","DE.Controllers.Viewport.textFitWidth":"Breite anpassen","DE.Controllers.Viewport.txtDarkMode":"Dunkelmodus","DE.Views.BookmarksDialog.textAdd":"Hinzufügen","DE.Views.BookmarksDialog.textAddAndGetLink":"Link hinzufügen und abrufen","DE.Views.BookmarksDialog.textBookmarkName":"Lesezeichenname","DE.Views.BookmarksDialog.textClose":"Schließen","DE.Views.BookmarksDialog.textCopy":"Kopieren","DE.Views.BookmarksDialog.textDelete":"Löschen","DE.Views.BookmarksDialog.textGetLink":"Link abrufen","DE.Views.BookmarksDialog.textGoto":"Wechseln zu","DE.Views.BookmarksDialog.textHidden":"Ausgeblendete Lesezeichen","DE.Views.BookmarksDialog.textLocation":"Standort","DE.Views.BookmarksDialog.textName":"Name","DE.Views.BookmarksDialog.textSort":"Sortieren nach","DE.Views.BookmarksDialog.textTitle":"Lesezeichen","DE.Views.BookmarksDialog.txtInvalidName":"Der Name des Lesezeichens darf nur Buchstaben, Ziffern und Unterstriche enthalten und sollte mit dem Buchstaben beginnen","DE.Views.CaptionDialog.textAdd":"Beschriftung Hinzufügen","DE.Views.CaptionDialog.textAfter":"Nach","DE.Views.CaptionDialog.textBefore":"Vorher","DE.Views.CaptionDialog.textCaption":"Beschriftung","DE.Views.CaptionDialog.textChapter":"Kapitel beginnt mit Stil","DE.Views.CaptionDialog.textChapterInc":"Kapitelnummer einschließen","DE.Views.CaptionDialog.textColon":"Doppelpunkt","DE.Views.CaptionDialog.textDash":"Gedankenstrich","DE.Views.CaptionDialog.textDelete":"Löschen","DE.Views.CaptionDialog.textEquation":"Gleichung","DE.Views.CaptionDialog.textExamples":"Beispiele: Tabelle 2-A, Bild 1.IV","DE.Views.CaptionDialog.textExclude":"Bezeichnung aus Beschriftung ausschließen","DE.Views.CaptionDialog.textFigure":"Abbildung","DE.Views.CaptionDialog.textHyphen":"Bindestrich","DE.Views.CaptionDialog.textInsert":"Einfügen","DE.Views.CaptionDialog.textLabel":"Bezeichnung","DE.Views.CaptionDialog.textLabelError":"Bezeichnung darf nicht leer sein","DE.Views.CaptionDialog.textLongDash":"langer Strich","DE.Views.CaptionDialog.textNumbering":"Nummerierung","DE.Views.CaptionDialog.textPeriod":"Punkt","DE.Views.CaptionDialog.textSeparator":"Trennzeichen verwenden","DE.Views.CaptionDialog.textTable":"Tabelle","DE.Views.CaptionDialog.textTitle":"Beschriftung einfügen","DE.Views.CellsAddDialog.textCol":"Spalten","DE.Views.CellsAddDialog.textDown":"Unter dem Cursor","DE.Views.CellsAddDialog.textLeft":"Nach links","DE.Views.CellsAddDialog.textRight":"Nach rechts ","DE.Views.CellsAddDialog.textRow":"Zeilen","DE.Views.CellsAddDialog.textTitle":"Einfügen: mehrere","DE.Views.CellsAddDialog.textUp":"Über dem Cursor","DE.Views.CellsRemoveDialog.textCol":"Ganze Spalte löschen","DE.Views.CellsRemoveDialog.textLeft":"Zellen nach links verschieben","DE.Views.CellsRemoveDialog.textRow":"Ganze Zeile löschen","DE.Views.CellsRemoveDialog.textTitle":"Zellen löschen","DE.Views.ChartSettings.text3dDepth":"Tiefe (% der Basis)","DE.Views.ChartSettings.text3dHeight":"Höhe (% der Basis)","DE.Views.ChartSettings.text3dRotation":"3D-Drehung","DE.Views.ChartSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.ChartSettings.textAutoscale":"Autoskalierung","DE.Views.ChartSettings.textChartType":"Diagrammtyp ändern","DE.Views.ChartSettings.textData":"Daten","DE.Views.ChartSettings.textDefault":"Standardmäßige Drehung","DE.Views.ChartSettings.textDown":"Unten","DE.Views.ChartSettings.textEditData":"Daten ändern","DE.Views.ChartSettings.textEditLinks":"Links bearbeiten","DE.Views.ChartSettings.textHeight":"Höhe","DE.Views.ChartSettings.textKeepRatio":"Konstante Proportionen","DE.Views.ChartSettings.textLeft":"Links","DE.Views.ChartSettings.textLinkedData":"Verknüpfte Daten","DE.Views.ChartSettings.textNarrow":"Blickfeld verengen","DE.Views.ChartSettings.textOriginalSize":"Tatsächliche Größe","DE.Views.ChartSettings.textPerspective":"Perspektive","DE.Views.ChartSettings.textRight":"Rechts","DE.Views.ChartSettings.textRightAngle":"Rechtwinklige Achsen","DE.Views.ChartSettings.textSelectData":"Daten auswählen","DE.Views.ChartSettings.textSize":"Größe","DE.Views.ChartSettings.textStyle":"Stil","DE.Views.ChartSettings.textUndock":"Seitenbereich abdocken","DE.Views.ChartSettings.textUp":"Aufwärts","DE.Views.ChartSettings.textUpdateData":"Daten aktualisieren","DE.Views.ChartSettings.textWiden":"Blickfeld verbreitern","DE.Views.ChartSettings.textWidth":"Breite","DE.Views.ChartSettings.textWrap":"Textumbruch","DE.Views.ChartSettings.textX":"X-Rotation","DE.Views.ChartSettings.textY":"Y-Rotation","DE.Views.ChartSettings.txtBehind":"Hinter dem Text","DE.Views.ChartSettings.txtInFront":"Vorne","DE.Views.ChartSettings.txtInline":"Inline","DE.Views.ChartSettings.txtSquare":"Eckig","DE.Views.ChartSettings.txtThrough":"Durchgehend","DE.Views.ChartSettings.txtTight":"Passend","DE.Views.ChartSettings.txtTitle":"Diagramm","DE.Views.ChartSettings.txtTopAndBottom":"Oben und unten","DE.Views.ChartSettingsDlg.textLeftOverlay":"Überlagerung links","DE.Views.CompareSettingsDialog.textChar":"Zeichen-Ebene","DE.Views.CompareSettingsDialog.textShow":"Änderungen anzeigen:","DE.Views.CompareSettingsDialog.textTitle":"Vergleichseinstellungen","DE.Views.CompareSettingsDialog.textWord":"Wortebene","DE.Views.ControlSettingsDialog.strGeneral":"Allgemein","DE.Views.ControlSettingsDialog.textAdd":"Hinzufügen","DE.Views.ControlSettingsDialog.textAppearance":"Darstellung","DE.Views.ControlSettingsDialog.textApplyAll":"Auf alle anwenden","DE.Views.ControlSettingsDialog.textBox":"Begrenzungsrahmen","DE.Views.ControlSettingsDialog.textChange":"Bearbeiten","DE.Views.ControlSettingsDialog.textCheckbox":"Kontrollkästchen","DE.Views.ControlSettingsDialog.textChecked":"Häkchen-Symbol ","DE.Views.ControlSettingsDialog.textColor":"Farbe","DE.Views.ControlSettingsDialog.textCombobox":"Kombinationsfeld","DE.Views.ControlSettingsDialog.textDate":"Datumsformat","DE.Views.ControlSettingsDialog.textDelete":"Löschen","DE.Views.ControlSettingsDialog.textDisplayName":"Anzeigename","DE.Views.ControlSettingsDialog.textDown":"Unten","DE.Views.ControlSettingsDialog.textDropDown":"Dropdownliste","DE.Views.ControlSettingsDialog.textFormat":"Datum wie folgt anzeigen","DE.Views.ControlSettingsDialog.textLang":"Sprache","DE.Views.ControlSettingsDialog.textLock":"Sperrung","DE.Views.ControlSettingsDialog.textName":"Titel","DE.Views.ControlSettingsDialog.textNone":"Kein","DE.Views.ControlSettingsDialog.textPlaceholder":"Platzhalter","DE.Views.ControlSettingsDialog.textShowAs":"Anzeigen als","DE.Views.ControlSettingsDialog.textSystemColor":"System","DE.Views.ControlSettingsDialog.textTag":"Tag","DE.Views.ControlSettingsDialog.textTitle":"Einstellungen des Inhaltssteuerelements","DE.Views.ControlSettingsDialog.textUnchecked":"Nicht aktiviertes Häkchen","DE.Views.ControlSettingsDialog.textUp":"Aufwärts","DE.Views.ControlSettingsDialog.textValue":"Wert","DE.Views.ControlSettingsDialog.tipChange":"Symbol ändern","DE.Views.ControlSettingsDialog.txtLockDelete":"Das Inhaltssteuerelement kann nicht gelöscht werden","DE.Views.ControlSettingsDialog.txtLockEdit":"Der Inhalt kann nicht bearbeitet werden","DE.Views.ControlSettingsDialog.txtRemContent":"Inhaltssteuerelemente löschen","DE.Views.CrossReferenceDialog.textAboveBelow":"Oben/unten","DE.Views.CrossReferenceDialog.textBookmark":"Lesezeichen","DE.Views.CrossReferenceDialog.textBookmarkText":"Text des Lesezeichens","DE.Views.CrossReferenceDialog.textCaption":"Ganze Beschriftung","DE.Views.CrossReferenceDialog.textEmpty":"Der angeforderte Verweis hat keinen Inhalt.","DE.Views.CrossReferenceDialog.textEndnote":"Endnote","DE.Views.CrossReferenceDialog.textEndNoteNum":"Nummer der Endnote","DE.Views.CrossReferenceDialog.textEndNoteNumForm":"Nummer der Endnote (formatiert)","DE.Views.CrossReferenceDialog.textEquation":"Gleichung","DE.Views.CrossReferenceDialog.textFigure":"Abbildung","DE.Views.CrossReferenceDialog.textFootnote":"Fußnote","DE.Views.CrossReferenceDialog.textHeading":"Überschrift","DE.Views.CrossReferenceDialog.textHeadingNum":"Nummer der Überschrift","DE.Views.CrossReferenceDialog.textHeadingNumFull":"Nummer der Überschrift (der ganze Kontext)","DE.Views.CrossReferenceDialog.textHeadingNumNo":"Nummer der Überschrift (kein Kontext)","DE.Views.CrossReferenceDialog.textHeadingText":"Überschriftentext","DE.Views.CrossReferenceDialog.textIncludeAbove":"Oben/unten einschließen","DE.Views.CrossReferenceDialog.textInsert":"Einfügen","DE.Views.CrossReferenceDialog.textInsertAs":"Als Link einfügen","DE.Views.CrossReferenceDialog.textLabelNum":"Nur Bezeichnung und Nummer","DE.Views.CrossReferenceDialog.textNoteNum":"Nummer der Fußnote","DE.Views.CrossReferenceDialog.textNoteNumForm":"Nummer der Fußnote (formatiert)","DE.Views.CrossReferenceDialog.textOnlyCaption":"Nur der Text von der Legende","DE.Views.CrossReferenceDialog.textPageNum":"Seitennummer","DE.Views.CrossReferenceDialog.textParagraph":"Nummeriertes Element","DE.Views.CrossReferenceDialog.textParaNum":"Absatznummer","DE.Views.CrossReferenceDialog.textParaNumFull":"Absatznummer (der ganze Kontext)","DE.Views.CrossReferenceDialog.textParaNumNo":"Absatznummer (kein Kontext)","DE.Views.CrossReferenceDialog.textSeparate":"Nummern trennen mit","DE.Views.CrossReferenceDialog.textTable":"Tabelle","DE.Views.CrossReferenceDialog.textText":"Text im Absatz","DE.Views.CrossReferenceDialog.textWhich":"Für welche Beschriftung","DE.Views.CrossReferenceDialog.textWhichBookmark":"Für welches Lesezeichen","DE.Views.CrossReferenceDialog.textWhichEndnote":"Für welche Endnote","DE.Views.CrossReferenceDialog.textWhichHeading":"Für welche Überschrift","DE.Views.CrossReferenceDialog.textWhichNote":"Für welche Fußnote","DE.Views.CrossReferenceDialog.textWhichPara":"Für welches nummeriertes Element","DE.Views.CrossReferenceDialog.txtReference":"Verweisen auf","DE.Views.CrossReferenceDialog.txtTitle":"Querverweis","DE.Views.CrossReferenceDialog.txtType":"Bezugstyp","DE.Views.CustomColumnsDialog.textColumns":"Anzahl von Spalten","DE.Views.CustomColumnsDialog.textEqualWidth":"Gleiche Spaltenbreite","DE.Views.CustomColumnsDialog.textSeparator":"Spaltentrenner","DE.Views.CustomColumnsDialog.textTitle":"Spalten","DE.Views.CustomColumnsDialog.textTitleSpacing":"Abstand","DE.Views.CustomColumnsDialog.textWidth":"Breite","DE.Views.DateTimeDialog.confirmDefault":"Standardformat für {0}: \"{1}\" festlegen","DE.Views.DateTimeDialog.textDefault":"Als Standardeinstellung festlegen","DE.Views.DateTimeDialog.textFormat":"Formate","DE.Views.DateTimeDialog.textLang":"Sprache","DE.Views.DateTimeDialog.textUpdate":"Automatisch aktualisieren","DE.Views.DateTimeDialog.txtTitle":"Datum & Uhrzeit","DE.Views.DocProtection.hintProtectDoc":"Datei schützen","DE.Views.DocProtection.txtDocProtectedComment":"Das Dokument ist geschützt.
Sie können nur Kommentare zu diesem Dokument hinterlassen.","DE.Views.DocProtection.txtDocProtectedForms":"Das Dokument ist geschützt.
Sie können nur Formulare in diesem Dokument ausfüllen.","DE.Views.DocProtection.txtDocProtectedTrack":"Das Dokument ist geschützt.
Sie können dieses Dokument bearbeiten, aber alle Änderungen werden nachverfolgt.","DE.Views.DocProtection.txtDocProtectedView":"Das Dokument ist geschützt.
Sie können dieses Dokument nur ansehen.","DE.Views.DocProtection.txtDocUnlockDescription":"Geben Sie ein Passwort ein, um den Schutz des Dokuments aufzuheben","DE.Views.DocProtection.txtProtectDoc":"Datei schützen","DE.Views.DocProtection.txtUnlockTitle":"Dokument ungeschützt","DE.Views.DocumentHolder.aboveText":"Oben","DE.Views.DocumentHolder.addCommentText":"Kommentar hinzufügen","DE.Views.DocumentHolder.advancedDropCapText":"Initialformatierung","DE.Views.DocumentHolder.advancedEquationText":"Einstellungen der Gleichung","DE.Views.DocumentHolder.advancedFrameText":"Rahmen - Erweiterte Einstellungen","DE.Views.DocumentHolder.advancedParagraphText":"Absatz - Erweiterte Einstellungen","DE.Views.DocumentHolder.advancedTableText":"Tabelle - Erweiterte Einstellungen","DE.Views.DocumentHolder.advancedText":"Erweiterte Einstellungen","DE.Views.DocumentHolder.AlignBottom":"Unten","DE.Views.DocumentHolder.AlignCenter":"Zentriert","DE.Views.DocumentHolder.AlignJust":"Ausrichten","DE.Views.DocumentHolder.AlignLeft":"Links","DE.Views.DocumentHolder.alignmentText":"Ausrichtung","DE.Views.DocumentHolder.AlignMiddle":"Mitte","DE.Views.DocumentHolder.AlignRight":"Rechts","DE.Views.DocumentHolder.AlignText":"Textausrichtung","DE.Views.DocumentHolder.AlignTop":"Oben","DE.Views.DocumentHolder.allLinearText":"Alle – Linear","DE.Views.DocumentHolder.allProfText":"Alle – Professionelle","DE.Views.DocumentHolder.belowText":"Unten","DE.Views.DocumentHolder.breakBeforeText":"Seitenumbruch oberhalb","DE.Views.DocumentHolder.btnChart":"Hinzufügen, Entfernen oder Ändern von Diagrammelementen wie Titel, Legende, Gitternetzlinien und Datenbeschriftungen","DE.Views.DocumentHolder.bulletsText":"Aufzählung und Nummerierung","DE.Views.DocumentHolder.cellAlignText":"Vertikale Zellenausrichtung","DE.Views.DocumentHolder.cellText":"Zelle","DE.Views.DocumentHolder.centerText":"Zenter","DE.Views.DocumentHolder.chartText":"Erweiterte Einstellungen des Diagramms","DE.Views.DocumentHolder.columnText":"Spalte","DE.Views.DocumentHolder.currLinearText":"Aktuell – Linear","DE.Views.DocumentHolder.currProfText":"Aktuell – Professionell","DE.Views.DocumentHolder.deleteColumnText":"Spalte löschen","DE.Views.DocumentHolder.deleteRowText":"Zeile löschen","DE.Views.DocumentHolder.deleteTableText":"Tabelle löschen","DE.Views.DocumentHolder.deleteText":"Löschen","DE.Views.DocumentHolder.DepthAxis":"Z-Achse","DE.Views.DocumentHolder.direct270Text":"Text nach oben drehen","DE.Views.DocumentHolder.direct90Text":"Text nach unten drehen","DE.Views.DocumentHolder.directHText":"Horizontal","DE.Views.DocumentHolder.directionText":"Textausrichtung","DE.Views.DocumentHolder.editChartText":"Daten ändern","DE.Views.DocumentHolder.editFooterText":"Fußzeile bearbeiten","DE.Views.DocumentHolder.editHeaderText":"Kopfzeile bearbeiten","DE.Views.DocumentHolder.editHyperlinkText":"Link bearbeiten","DE.Views.DocumentHolder.eqToDisplayText":"Zur Anzeige wechseln","DE.Views.DocumentHolder.eqToInlineText":"Zum Inline wechseln","DE.Views.DocumentHolder.guestText":"Gast","DE.Views.DocumentHolder.hideEqToolbar":"Symbolleiste Gleichung ausblenden","DE.Views.DocumentHolder.hyperlinkText":"Link","DE.Views.DocumentHolder.ignoreAllSpellText":"Alle auslassen","DE.Views.DocumentHolder.ignoreSpellText":"Auslassen","DE.Views.DocumentHolder.imageText":"Erweiterte Einstellungen des Bildes","DE.Views.DocumentHolder.insertColumnLeftText":"Spalte nach links","DE.Views.DocumentHolder.insertColumnRightText":"Spalte nach rechts","DE.Views.DocumentHolder.insertColumnText":"Spalte einfügen","DE.Views.DocumentHolder.insertRowAboveText":"Zeile oberhalb","DE.Views.DocumentHolder.insertRowBelowText":"Zeile unterhalb","DE.Views.DocumentHolder.insertRowText":"Zeile einfügen","DE.Views.DocumentHolder.insertText":"Einfügen","DE.Views.DocumentHolder.keepLinesText":"Absatz zusammenhalten","DE.Views.DocumentHolder.langText":"Sprache wählen","DE.Views.DocumentHolder.latexText":"LaTeX","DE.Views.DocumentHolder.leftText":"Links","DE.Views.DocumentHolder.loadSpellText":"Varianten werden geladen...","DE.Views.DocumentHolder.mergeCellsText":"Zellen verbinden","DE.Views.DocumentHolder.mniImageFromFile":"Bild aus Datei","DE.Views.DocumentHolder.mniImageFromStorage":"Bild aus dem Speicher","DE.Views.DocumentHolder.mniImageFromUrl":"Bild aus URL","DE.Views.DocumentHolder.moreText":"Mehr Varianten...","DE.Views.DocumentHolder.noSpellVariantsText":"Keine Varianten","DE.Views.DocumentHolder.notcriticalErrorTitle":"Warnung","DE.Views.DocumentHolder.originalSizeText":"Tatsächliche Größe","DE.Views.DocumentHolder.paragraphText":"Absatz","DE.Views.DocumentHolder.removeHyperlinkText":"Link entfernen","DE.Views.DocumentHolder.rightText":"Rechts","DE.Views.DocumentHolder.rowText":"Zeile","DE.Views.DocumentHolder.saveStyleText":"Neuer Stil erstellen","DE.Views.DocumentHolder.selectCellText":"Zelle auswählen","DE.Views.DocumentHolder.selectColumnText":"Spalte auswählen","DE.Views.DocumentHolder.selectRowText":"Zeile auswählen","DE.Views.DocumentHolder.selectTableText":"Tabelle auswählen","DE.Views.DocumentHolder.selectText":"Auswählen","DE.Views.DocumentHolder.shapeText":"Erweiterte Einstellungen der Form","DE.Views.DocumentHolder.showEqToolbar":"Gleichungs-Symbolleiste anzeigen","DE.Views.DocumentHolder.spellcheckText":"Rechtschreibprüfung","DE.Views.DocumentHolder.splitCellsText":"Zelle teilen...","DE.Views.DocumentHolder.splitCellTitleText":"Zelle teilen","DE.Views.DocumentHolder.strDelete":"Signatur entfernen","DE.Views.DocumentHolder.strDetails":"Signaturdetails","DE.Views.DocumentHolder.strSetup":"Signatureinrichtung","DE.Views.DocumentHolder.strSign":"Signieren","DE.Views.DocumentHolder.styleText":"Formatierung als Formatvorlage","DE.Views.DocumentHolder.tableText":"Tabelle","DE.Views.DocumentHolder.textAccept":"Änderung annehmen","DE.Views.DocumentHolder.textAlign":"Ausrichten","DE.Views.DocumentHolder.textArrange":"Anordnen","DE.Views.DocumentHolder.textArrangeBack":"In den Hintergrund senden","DE.Views.DocumentHolder.textArrangeBackward":"Eine Ebene nach hinten","DE.Views.DocumentHolder.textArrangeForward":"Vorwärts bringen","DE.Views.DocumentHolder.textArrangeFront":"In den Vordergrund bringen","DE.Views.DocumentHolder.textAxes":"Achsen","DE.Views.DocumentHolder.textAxisTitles":"Achsentitel","DE.Views.DocumentHolder.textBottom":"Unten","DE.Views.DocumentHolder.textCells":"Zellen","DE.Views.DocumentHolder.textCenter":"Zentriert","DE.Views.DocumentHolder.textChartTitle":"Diagrammtitel","DE.Views.DocumentHolder.textClearField":"Feld leeren","DE.Views.DocumentHolder.textCol":"Ganze Spalte löschen","DE.Views.DocumentHolder.textContentControls":"Inhaltssteuerelement","DE.Views.DocumentHolder.textContinueNumbering":"Nummerierung fortführen","DE.Views.DocumentHolder.textCopy":"Kopieren","DE.Views.DocumentHolder.textCrop":"Zuschneiden","DE.Views.DocumentHolder.textCropFill":"Ausfüllen","DE.Views.DocumentHolder.textCropFit":"Anpassen","DE.Views.DocumentHolder.textCut":"Ausschneiden","DE.Views.DocumentHolder.textDataLabels":"Datenbeschriftungen","DE.Views.DocumentHolder.textDataTable":"Datentabelle","DE.Views.DocumentHolder.textDistributeCols":"Spalten verteilen","DE.Views.DocumentHolder.textDistributeRows":"Zeilen verteilen","DE.Views.DocumentHolder.textEditControls":"Einstellungen des Inhaltssteuerelements","DE.Views.DocumentHolder.textEditField":"Feld bearbeiten","DE.Views.DocumentHolder.textEditObject":"Objekt bearbeiten","DE.Views.DocumentHolder.textEditPoints":"Punkte bearbeiten","DE.Views.DocumentHolder.textEditWrapBoundary":"Umbruchsgrenze bearbeiten","DE.Views.DocumentHolder.textErrorBars":"Fehlerbalken","DE.Views.DocumentHolder.textExponential":"Exponentiell ","DE.Views.DocumentHolder.textFieldCodes":"Feldcodes umschalten","DE.Views.DocumentHolder.textFit":"An Breite anpassen","DE.Views.DocumentHolder.textFlipH":"Horizontal kippen","DE.Views.DocumentHolder.textFlipV":"Vertikal kippen","DE.Views.DocumentHolder.textFollow":"Verschieben nachverfolgen","DE.Views.DocumentHolder.textFromFile":"Aus Datei","DE.Views.DocumentHolder.textFromStorage":"Aus dem Speicher","DE.Views.DocumentHolder.textFromUrl":"Aus URL","DE.Views.DocumentHolder.textGridLines":"Gitternetzlinien ","DE.Views.DocumentHolder.textHorAxis":"Horizontale Achse","DE.Views.DocumentHolder.textHorAxisSec":"Horizontale Sekundärachse","DE.Views.DocumentHolder.textHorizontalMajor":"Horizontal Major","DE.Views.DocumentHolder.textHorizontalMinor":"Horizontal Minor","DE.Views.DocumentHolder.textIndents":"Listeneinzüge anpassen","DE.Views.DocumentHolder.textInnerBottom":"Innen unten","DE.Views.DocumentHolder.textInnerTop":"Innen oben","DE.Views.DocumentHolder.textJoinList":"Mit der vorherigen Liste verbinden","DE.Views.DocumentHolder.textLeft":"Zellen nach links verschieben","DE.Views.DocumentHolder.textLeftData":"Links","DE.Views.DocumentHolder.textLeftOverlay":"Überlagerung links","DE.Views.DocumentHolder.textLeftPos":"Links","DE.Views.DocumentHolder.textLegendPos":"Legende","DE.Views.DocumentHolder.textLinear":"Linear","DE.Views.DocumentHolder.textLinearForecast":"Lineare Prognose","DE.Views.DocumentHolder.textLines":"Linien","DE.Views.DocumentHolder.textMovingAverage":"Gleitender Durchschnitt (2)","DE.Views.DocumentHolder.textNest":"Tabelle schachteln","DE.Views.DocumentHolder.textNextPage":"Nächste Seite","DE.Views.DocumentHolder.textNone":"Kein(e)","DE.Views.DocumentHolder.textNoOverlay":"Ohne Überlagerung","DE.Views.DocumentHolder.textNumberingValue":"Nummerierungswert","DE.Views.DocumentHolder.textOuterTop":"Außen oben","DE.Views.DocumentHolder.textOverlay":"Überlagerung","DE.Views.DocumentHolder.textPaste":"Einfügen","DE.Views.DocumentHolder.textPrevPage":"Vorherige Seite","DE.Views.DocumentHolder.textRedo":"Wiederholen","DE.Views.DocumentHolder.textRefreshField":"Feld aktualisieren","DE.Views.DocumentHolder.textReject":"Änderung ablehnen","DE.Views.DocumentHolder.textRemCheckBox":"Checkbox entfernen","DE.Views.DocumentHolder.textRemComboBox":"Combobox entfernen","DE.Views.DocumentHolder.textRemDropdown":"Dropdown entfernen","DE.Views.DocumentHolder.textRemField":"Textfeld entfernen","DE.Views.DocumentHolder.textRemove":"Entfernen","DE.Views.DocumentHolder.textRemoveControl":"Inhaltssteuerelement entfernen","DE.Views.DocumentHolder.textStretchControl":"Resize to cell","DE.Views.DocumentHolder.textRemPicture":"Bild entfernen","DE.Views.DocumentHolder.textRemRadioBox":"Radiobutton entfernen","DE.Views.DocumentHolder.textReplace":"Bild ersetzen","DE.Views.DocumentHolder.textResetCrop":"Zuschneiden zurücksetzen","DE.Views.DocumentHolder.textRight":"Rechts","DE.Views.DocumentHolder.textRightOverlay":"Überlagerung rechts","DE.Views.DocumentHolder.textRotate":"Drehen","DE.Views.DocumentHolder.textRotate270":"Um 90 ° gegen den Uhrzeigersinn drehen","DE.Views.DocumentHolder.textRotate90":"90° im UZS drehen","DE.Views.DocumentHolder.textRow":"Ganze Zeile löschen","DE.Views.DocumentHolder.textSaveAsPicture":"Als Bild speichern","DE.Views.DocumentHolder.textSeparateList":"Separate Liste","DE.Views.DocumentHolder.textSettings":"Einstellungen","DE.Views.DocumentHolder.textSeveral":"Mehrere Zeilen/Spalten","DE.Views.DocumentHolder.textShapeAlignBottom":"Unten ausrichten","DE.Views.DocumentHolder.textShapeAlignCenter":"Zentriert ausrichten","DE.Views.DocumentHolder.textShapeAlignLeft":"Linksbündig ausrichten","DE.Views.DocumentHolder.textShapeAlignMiddle":"Mittig ausrichten","DE.Views.DocumentHolder.textShapeAlignRight":"Rechtsbündig ausrichten","DE.Views.DocumentHolder.textShapeAlignTop":"Oben ausrichten","DE.Views.DocumentHolder.textShapesMerge":"Formen zusammenführen","DE.Views.DocumentHolder.textShowDataTable":"Datentabelle anzeigen","DE.Views.DocumentHolder.textShowLegendKeys":"Legendenschlüssel anzeigen","DE.Views.DocumentHolder.textShowUpDown":"Aufwärts-/Abwärtsbalken anzeigen","DE.Views.DocumentHolder.textStandardDeviation":"Standardabweichung","DE.Views.DocumentHolder.textStandardError":"Standardfehler","DE.Views.DocumentHolder.textStartNewList":"Neue Liste beginnen","DE.Views.DocumentHolder.textStartNumberingFrom":"Nummerierungswert festlegen","DE.Views.DocumentHolder.textTitleCellsRemove":"Zellen löschen","DE.Views.DocumentHolder.textTOC":"Inhaltsverzeichnis","DE.Views.DocumentHolder.textTOCSettings":"Einstellungen für das Inhaltverzeichnis","DE.Views.DocumentHolder.textTop":"Oben","DE.Views.DocumentHolder.textTrendline":"Trendlinie","DE.Views.DocumentHolder.textUndo":"Rückgängig","DE.Views.DocumentHolder.textUpdateAll":"Ganze Tabelle aktualisieren","DE.Views.DocumentHolder.textUpdatePages":"Nur Seitenzahlen aktualisieren","DE.Views.DocumentHolder.textUpdateTOC":"Das Inhaltsverzeichnis aktualisieren","DE.Views.DocumentHolder.textUpDownBars":"Aufwärts-/Abwärtsbalken","DE.Views.DocumentHolder.textVertAxis":"Vertikale Achse","DE.Views.DocumentHolder.textVertAxisSec":"Vertikale Sekundärachse","DE.Views.DocumentHolder.textVerticalMajor":"Vertikale Major","DE.Views.DocumentHolder.textVerticalMinor":"Vertikale Minor","DE.Views.DocumentHolder.textWrap":"Textumbruch","DE.Views.DocumentHolder.tipIsLocked":"Dieses Element wird gerade von einem anderen Benutzer bearbeitet.","DE.Views.DocumentHolder.toDictionaryText":"Zum Wörterbuch hinzufügen","DE.Views.DocumentHolder.txtAddBottom":"Unteren Rahmen hinzufügen","DE.Views.DocumentHolder.txtAddFractionBar":"Bruchstrich hinzufügen","DE.Views.DocumentHolder.txtAddHor":"Horizontale Linie einfügen","DE.Views.DocumentHolder.txtAddLB":"Linke untere Linie einfügen","DE.Views.DocumentHolder.txtAddLeft":"Linken Rahmen hinzufügen","DE.Views.DocumentHolder.txtAddLT":"Linke obere Linie einfügen","DE.Views.DocumentHolder.txtAddRight":"Rechten Rahmen hinzufügen","DE.Views.DocumentHolder.txtAddTop":"Oberen Rahmen hinzufügen","DE.Views.DocumentHolder.txtAddVer":"Vertikale Linie hinzufügen","DE.Views.DocumentHolder.txtAlignToChar":"An einem Zeichen ausrichten","DE.Views.DocumentHolder.txtBehind":"Hinter dem Text","DE.Views.DocumentHolder.txtBorderProps":"Rahmeneigenschaften","DE.Views.DocumentHolder.txtBottom":"Unten","DE.Views.DocumentHolder.txtColumnAlign":"Spaltenausrichtung","DE.Views.DocumentHolder.txtDecreaseArg":"Argumentgröße reduzieren","DE.Views.DocumentHolder.txtDeleteArg":"Argument löschen","DE.Views.DocumentHolder.txtDeleteBreak":"Manuellen Umbruch löschen","DE.Views.DocumentHolder.txtDeleteChars":"Einschlusszeichen löschen","DE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Einschlusszeichen und Trennzeichen löschen","DE.Views.DocumentHolder.txtDeleteEq":"Formel löschen","DE.Views.DocumentHolder.txtDeleteGroupChar":"Zeichen löschen","DE.Views.DocumentHolder.txtDeleteRadical":"Wurzel löschen","DE.Views.DocumentHolder.txtDestEmbed":"Zieldesign verwenden und Arbeitsmappe einbetten","DE.Views.DocumentHolder.txtDestLink":"Zielthema verwenden und Daten verknüpfen","DE.Views.DocumentHolder.txtDistribHor":"Horizontal verteilen","DE.Views.DocumentHolder.txtDistribVert":"Vertikal verteilen","DE.Views.DocumentHolder.txtEmpty":"(Leer)","DE.Views.DocumentHolder.txtFractionLinear":"Zu linearer Bruchrechnung ändern","DE.Views.DocumentHolder.txtFractionSkewed":"Zu verzerrter Bruchrechnung ändern","DE.Views.DocumentHolder.txtFractionStacked":"Zu verzerrter Bruchrechnung ändern","DE.Views.DocumentHolder.txtGroup":"Gruppieren","DE.Views.DocumentHolder.txtGroupCharOver":"Zeichen über dem Text ","DE.Views.DocumentHolder.txtGroupCharUnder":"Zeichen unter dem Text ","DE.Views.DocumentHolder.txtHideBottom":"Untere Rahmenlinie verbergen","DE.Views.DocumentHolder.txtHideBottomLimit":"Untere Grenze verbergen","DE.Views.DocumentHolder.txtHideCloseBracket":"Schließende Klammer verbergen","DE.Views.DocumentHolder.txtHideDegree":"Grad verbergen","DE.Views.DocumentHolder.txtHideHor":"Horizontale Linie verbergen","DE.Views.DocumentHolder.txtHideLB":"Linke untere Line verbergen","DE.Views.DocumentHolder.txtHideLeft":"Linker Rand verbergen","DE.Views.DocumentHolder.txtHideLT":"Linke obere Linie verbergen","DE.Views.DocumentHolder.txtHideOpenBracket":"Öffnende Klammer verbergen","DE.Views.DocumentHolder.txtHidePlaceholder":"Platzhalter verbergen","DE.Views.DocumentHolder.txtHideRight":"Rahmenlinie rechts verbergen","DE.Views.DocumentHolder.txtHideTop":"Rahmenlinie oben verbergen","DE.Views.DocumentHolder.txtHideTopLimit":"Obergrenze verbergen","DE.Views.DocumentHolder.txtHideVer":"Vertikale Linie verbergen","DE.Views.DocumentHolder.txtIncreaseArg":"Argumentgröße erhöhen","DE.Views.DocumentHolder.txtInFront":"Vorne","DE.Views.DocumentHolder.txtInline":"Inline","DE.Views.DocumentHolder.txtInsertArgAfter":"Argument nachher einfügen","DE.Views.DocumentHolder.txtInsertArgBefore":"Argument vorher einfügen","DE.Views.DocumentHolder.txtInsertBreak":"Manuellen Umbruch einfügen","DE.Views.DocumentHolder.txtInsertCaption":"Beschriftung einfügen","DE.Views.DocumentHolder.txtInsertEqAfter":"Formel nachher einfügen","DE.Views.DocumentHolder.txtInsertEqBefore":"Formel vorher einfügen","DE.Views.DocumentHolder.txtInsImage":"Bild aus Datei einfügen","DE.Views.DocumentHolder.txtInsImageUrl":"Bild von URL einfügen","DE.Views.DocumentHolder.txtKeepTextOnly":"Nur Text beibehalten","DE.Views.DocumentHolder.txtLimitChange":"Grenzwerten ändern ","DE.Views.DocumentHolder.txtLimitOver":"Grenzwert über den Text","DE.Views.DocumentHolder.txtLimitUnder":"Grenzwert unter den Text","DE.Views.DocumentHolder.txtMatchBrackets":"Eckige Klammern an Argumenthöhe anpassen","DE.Views.DocumentHolder.txtMatrixAlign":"Matrixausrichtung","DE.Views.DocumentHolder.txtOverbar":"Balken über dem Text","DE.Views.DocumentHolder.txtOverwriteCells":"Zellen überschreiben","DE.Views.DocumentHolder.txtPastePicture":"Bild","DE.Views.DocumentHolder.txtPasteSourceFormat":"Ursprüngliche Formatierung beibehalten","DE.Views.DocumentHolder.txtPercentage":"Prozentsatz","DE.Views.DocumentHolder.txtPressLink":"Drücken Sie {0} und klicken Sie auf den Link","DE.Views.DocumentHolder.txtPrintSelection":"Auswahl drucken","DE.Views.DocumentHolder.txtRemFractionBar":"Bruchstrich entfernen","DE.Views.DocumentHolder.txtRemLimit":"Grenzwert entfernen","DE.Views.DocumentHolder.txtRemoveAccentChar":"Akzentzeichen entfernen","DE.Views.DocumentHolder.txtRemoveBar":"Leiste entfernen","DE.Views.DocumentHolder.txtRemoveWarning":"Möchten Sie diese Signatur wirklich entfernen?
Dies kann nicht rückgängig gemacht werden.","DE.Views.DocumentHolder.txtRemScripts":"Skripts entfernen","DE.Views.DocumentHolder.txtRemSubscript":"Tiefstellung entfernen","DE.Views.DocumentHolder.txtRemSuperscript":"Hochstellung entfernen","DE.Views.DocumentHolder.txtScriptsAfter":"Scripts nach dem Text","DE.Views.DocumentHolder.txtScriptsBefore":"Scripts vor dem Text","DE.Views.DocumentHolder.txtShowBottomLimit":"Untere Grenze zeigen","DE.Views.DocumentHolder.txtShowCloseBracket":"Schließende eckige Klammer anzeigen","DE.Views.DocumentHolder.txtShowDegree":"Grad anzeigen","DE.Views.DocumentHolder.txtShowOpenBracket":"Öffnende eckige Klammer anzeigen","DE.Views.DocumentHolder.txtShowPlaceholder":"Platzhaltertext anzeigen","DE.Views.DocumentHolder.txtShowTopLimit":"Höchstgrenze anzeigen","DE.Views.DocumentHolder.txtSourceEmbed":"Quellformatierung beibehalten und Arbeitsmappe einbetten","DE.Views.DocumentHolder.txtSourceLink":"Quellformatierung beibehalten und Daten verknüpfen","DE.Views.DocumentHolder.txtSquare":"Eckig","DE.Views.DocumentHolder.txtStretchBrackets":"Eckige Klammern dehnen","DE.Views.DocumentHolder.txtThrough":"Durchgehend","DE.Views.DocumentHolder.txtTight":"Passend","DE.Views.DocumentHolder.txtTop":"Oben","DE.Views.DocumentHolder.txtTopAndBottom":"Oben und unten","DE.Views.DocumentHolder.txtUnderbar":"Balken unter dem Text ","DE.Views.DocumentHolder.txtUngroup":"Gruppierung aufheben","DE.Views.DocumentHolder.txtWarnUrl":"Das Klicken auf diesen Link kann Ihrem Gerät und Ihren Daten schaden. Um Ihren Computer zu schützen, klicken Sie nur auf Links aus vertrauenswürdigen Quellen. Diese Seite ist möglicherweise unsicher:

{0}

Möchten Sie fortfahren?","DE.Views.DocumentHolder.unicodeText":"Unicode","DE.Views.DocumentHolder.updateStyleText":"Format aktualisieren %1","DE.Views.DocumentHolder.vertAlignText":"Vertikale Ausrichtung","DE.Views.DropcapSettingsAdvanced.strBorders":"Rahmen & Füllung","DE.Views.DropcapSettingsAdvanced.strDropcap":"Initialbuchstaben ","DE.Views.DropcapSettingsAdvanced.strMargins":"Ränder","DE.Views.DropcapSettingsAdvanced.textAlign":"Ausrichtung","DE.Views.DropcapSettingsAdvanced.textAtLeast":"Mindestens","DE.Views.DropcapSettingsAdvanced.textAuto":"Automatisch","DE.Views.DropcapSettingsAdvanced.textBackColor":"Hintergrundfarbe","DE.Views.DropcapSettingsAdvanced.textBorderColor":"Rahmenfarbe","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"Rahmenstärke","DE.Views.DropcapSettingsAdvanced.textBottom":"Unten","DE.Views.DropcapSettingsAdvanced.textCenter":"Zenter","DE.Views.DropcapSettingsAdvanced.textColumn":"Spalte","DE.Views.DropcapSettingsAdvanced.textDistance":"Abstand von Text","DE.Views.DropcapSettingsAdvanced.textExact":"Genau","DE.Views.DropcapSettingsAdvanced.textFlow":"Unverankerter Rahmen","DE.Views.DropcapSettingsAdvanced.textFont":"Schriftart","DE.Views.DropcapSettingsAdvanced.textFrame":"Rahmen","DE.Views.DropcapSettingsAdvanced.textHeight":"Höhe","DE.Views.DropcapSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.DropcapSettingsAdvanced.textInline":"Inlineframe","DE.Views.DropcapSettingsAdvanced.textInMargin":"Im Rand","DE.Views.DropcapSettingsAdvanced.textInText":"Im Text","DE.Views.DropcapSettingsAdvanced.textLeft":"Links","DE.Views.DropcapSettingsAdvanced.textMargin":"Rand","DE.Views.DropcapSettingsAdvanced.textMove":"Mit Text verschieben","DE.Views.DropcapSettingsAdvanced.textNone":"Kein","DE.Views.DropcapSettingsAdvanced.textPage":"Seite","DE.Views.DropcapSettingsAdvanced.textParagraph":"Absatz","DE.Views.DropcapSettingsAdvanced.textParameters":"Parameter","DE.Views.DropcapSettingsAdvanced.textPosition":"Position","DE.Views.DropcapSettingsAdvanced.textRelative":"Im Bezug auf ","DE.Views.DropcapSettingsAdvanced.textRight":"Rechts","DE.Views.DropcapSettingsAdvanced.textRowHeight":"Höhe in Zeilen","DE.Views.DropcapSettingsAdvanced.textTitle":"Initialbuchstaben - Erweiterte Einstellungen","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"Rahmen - Erweiterte Einstellungen","DE.Views.DropcapSettingsAdvanced.textTop":"Oben","DE.Views.DropcapSettingsAdvanced.textVertical":"Vertikal","DE.Views.DropcapSettingsAdvanced.textWidth":"Breite","DE.Views.DropcapSettingsAdvanced.tipFontName":"Schriftart","DE.Views.EditListItemDialog.textDisplayName":"Anzeigename","DE.Views.EditListItemDialog.textNameError":"Der Anzeigename darf nicht leer sein.","DE.Views.EditListItemDialog.textValue":"Wert","DE.Views.EditListItemDialog.textValueError":"Ein Element mit demselben Wert ist bereits vorhanden.","DE.Views.FileMenu.ariaFileMenu":"Dateimenü","DE.Views.FileMenu.btnBackCaption":"Dateispeicherort öffnen","DE.Views.FileMenu.btnCloseEditor":"Datei schließen","DE.Views.FileMenu.btnCloseMenuCaption":"Zurück","DE.Views.FileMenu.btnCreateNewCaption":"Neues Dokument erstellen","DE.Views.FileMenu.btnDownloadCaption":"Herunterladen als","DE.Views.FileMenu.btnExitCaption":"Schließen","DE.Views.FileMenu.btnFileOpenCaption":"Öffnen","DE.Views.FileMenu.btnHelpCaption":"Hilfe","DE.Views.FileMenu.btnHistoryCaption":"Versionshistorie","DE.Views.FileMenu.btnInfoCaption":"Info","DE.Views.FileMenu.btnPrintCaption":"Drucken","DE.Views.FileMenu.btnProtectCaption":"Schützen","DE.Views.FileMenu.btnRecentFilesCaption":"Zuletzt benutztes Dokument öffnen","DE.Views.FileMenu.btnRenameCaption":"Umbenennen","DE.Views.FileMenu.btnReturnCaption":"Zurück zu dem Dokument","DE.Views.FileMenu.btnRightsCaption":"Zugriffsrechte","DE.Views.FileMenu.btnSaveAsCaption":"Speichern als","DE.Views.FileMenu.btnSaveCaption":"Speichern","DE.Views.FileMenu.btnSaveCopyAsCaption":"Kopie speichern als","DE.Views.FileMenu.btnSettingsCaption":"Erweiterte Einstellungen","DE.Views.FileMenu.btnSuggestCaption":"Eine Funktion vorschlagen","DE.Views.FileMenu.btnSwitchToMobileCaption":"In den Mobilmodus wechseln","DE.Views.FileMenu.btnToEditCaption":"Dokument bearbeiten","DE.Views.FileMenu.textDownload":"Herunterladen","DE.Views.FileMenuPanels.CreateNew.txtBlank":"Leeres Dokument","DE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Neues Dokument erstellen","DE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Anwenden","DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Autor hinzufügen","DE.Views.FileMenuPanels.DocumentInfo.txtAddProperty":"Eigenschaft hinzufügen","DE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Text Hinzufügen","DE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Anwendung","DE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Verfasser","DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Zugriffsrechte ändern","DE.Views.FileMenuPanels.DocumentInfo.txtComment":"Kommentar","DE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Allgemein","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Erstellt","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Informationen zum Dokument","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"Dokumenteigenschaft","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Schnelle Web-Anzeige","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Ladevorgang...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Zuletzt geändert von","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Zuletzt geändert","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"Nein","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Besitzer","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"Seiten","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Seitengröße","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Absätze","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF-Ersteller","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF mit Tags","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF-Version","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Speicherort","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"Eigenschaften","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"Eine Eigenschaft mit diesem Titel existiert bereits","DE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personen mit Berechtigungen","DE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Zeichen mit Leerzeichen","DE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Statistiken","DE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Thema","DE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Zeichen","DE.Views.FileMenuPanels.DocumentInfo.txtTags":"Tags","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Titel","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Hochgeladen","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"Wörter","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"Ja","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Zugriffsrechte","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Zugriffsrechte ändern","DE.Views.FileMenuPanels.DocumentRights.txtRights":"Personen mit Berechtigungen","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"Warnung","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Mit Kennwort","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"Datei schützen","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"Mit Signatur","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Dem Dokument wurden gültige Signaturen hinzugefügt.
Das Dokument ist vor Bearbeitung geschützt.","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Stellen Sie die Integrität des Dokuments durch Hinzufügen einer
unsichtbaren digitalen Signatur sicher.","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Dokument bearbeiten","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"Die Bearbeitung entfernt Signaturen aus diesem Dokument.
Möchten Sie trotzdem fortsetzen?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Dieses Dokument ist schreibgeschützt.","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Verschlüsseln Sie dieses Dokument mit einem Passwort","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Dieses Dokument muss signiert werden.","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Gültige Signaturen wurden dem Dokument hinzugefügt. Das Dokument ist vor der Bearbeitung geschützt.","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Einige der digitalen Signaturen im Dokument sind ungültig oder konnten nicht verifiziert werden. Das Dokument ist vor der Bearbeitung geschützt.","DE.Views.FileMenuPanels.ProtectDoc.txtView":"Signaturen anzeigen","DE.Views.FileMenuPanels.Settings.okButtonText":"Anwenden","DE.Views.FileMenuPanels.Settings.strChinese":"Chinesisch ","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modus \"Gemeinsame Bearbeitung\"","DE.Views.FileMenuPanels.Settings.strDocContent":"Dokumentinhalt","DE.Views.FileMenuPanels.Settings.strFast":"Schnell","DE.Views.FileMenuPanels.Settings.strFontRender":"Schriftglättung","DE.Views.FileMenuPanels.Settings.strFontSizeType":"In der Schriftgrößenliste zuerst verwenden","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"Wörter in GROSSBUCHSTABEN ignorieren","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"Wörter mit Zahlen ignorieren","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Tastenkombinationen","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"Einstellungen von Makros","DE.Views.FileMenuPanels.Settings.strNumeral":"Ziffer","DE.Views.FileMenuPanels.Settings.strPasteButton":"Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen","DE.Views.FileMenuPanels.Settings.strRTLSupport":"RTL-Schnittstelle","DE.Views.FileMenuPanels.Settings.strShowChanges":"Änderungen bei der Echtzeit-Zusammenarbeit zeigen","DE.Views.FileMenuPanels.Settings.strShowComments":"Kommentare im Text anzeigen","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Änderungen von anderen Benutzern anzeigen","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Gelöste Kommentare anzeigen","DE.Views.FileMenuPanels.Settings.strStrict":"Formal","DE.Views.FileMenuPanels.Settings.strTabStyle":"Stil der Registerkarte","DE.Views.FileMenuPanels.Settings.strTheme":"Thema der Benutzeroberfläche","DE.Views.FileMenuPanels.Settings.strUnit":"Maßeinheit","DE.Views.FileMenuPanels.Settings.strWestern":"Westlich","DE.Views.FileMenuPanels.Settings.strZoom":"Standard-Zoom-Wert","DE.Views.FileMenuPanels.Settings.text10Minutes":"Alle 10 Minuten","DE.Views.FileMenuPanels.Settings.text30Minutes":"Alle 30 Minuten","DE.Views.FileMenuPanels.Settings.text5Minutes":"Alle 5 Minuten","DE.Views.FileMenuPanels.Settings.text60Minutes":"Jede Stunde","DE.Views.FileMenuPanels.Settings.textAlignGuides":"Ausrichtungslinien","DE.Views.FileMenuPanels.Settings.textAutoRecover":"AutoWiederherstellen-Informationen speichern","DE.Views.FileMenuPanels.Settings.textAutoSave":"Automatisches speichern","DE.Views.FileMenuPanels.Settings.textDisabled":"Deaktiviert","DE.Views.FileMenuPanels.Settings.textFill":"Füllung","DE.Views.FileMenuPanels.Settings.textForceSave":"Auf dem Server speichern","DE.Views.FileMenuPanels.Settings.textLine":"Linie","DE.Views.FileMenuPanels.Settings.textMinute":"Jede Minute","DE.Views.FileMenuPanels.Settings.textOldVersions":"Die Dateien mit älteren MS Word-Versionen kompatibel machen, wenn sie als DOCX gespeichert werden","DE.Views.FileMenuPanels.Settings.textSmartSelection":"Intelligente Absatzauswahl verwenden","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Erweiterte Einstellungen","DE.Views.FileMenuPanels.Settings.txtAll":"Alle anzeigen","DE.Views.FileMenuPanels.Settings.txtAppearance":"Darstellung","DE.Views.FileMenuPanels.Settings.txtArabic":"Arabisch","DE.Views.FileMenuPanels.Settings.txtAutoCorrect":"Automatische Korrekturoptionen","DE.Views.FileMenuPanels.Settings.txtCacheMode":"Standard-Cache-Modus","DE.Views.FileMenuPanels.Settings.txtChangesBalloons":"In Sprechblasen beim Klicken anzeigen","DE.Views.FileMenuPanels.Settings.txtChangesTip":"In Tipps anzeigen","DE.Views.FileMenuPanels.Settings.txtCm":"Zentimeter","DE.Views.FileMenuPanels.Settings.txtCollaboration":"Zusammenarbeit","DE.Views.FileMenuPanels.Settings.txtContext":"Kontext","DE.Views.FileMenuPanels.Settings.txtCustomize":"Anpassen","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Schnellzugriff anpassen","DE.Views.FileMenuPanels.Settings.txtDarkMode":"Dunkelmodus aktivieren","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"Bearbeitung und Speicherung","DE.Views.FileMenuPanels.Settings.txtFastTip":"Zusammenarbeit in Echtzeit. Alle Änderungen werden automatisch gespeichert","DE.Views.FileMenuPanels.Settings.txtFitPage":"Seite anpassen","DE.Views.FileMenuPanels.Settings.txtFitWidth":"Breite anpassen","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Hieroglyphen","DE.Views.FileMenuPanels.Settings.txtHindi":"Hindi","DE.Views.FileMenuPanels.Settings.txtInch":"Zoll","DE.Views.FileMenuPanels.Settings.txtLast":"Letzte anzeigen","DE.Views.FileMenuPanels.Settings.txtLastUsed":"Zuletzt verwendet","DE.Views.FileMenuPanels.Settings.txtMac":"wie OS X","DE.Views.FileMenuPanels.Settings.txtNative":"Native","DE.Views.FileMenuPanels.Settings.txtNone":"Keine","DE.Views.FileMenuPanels.Settings.txtProofing":"Rechtschreibprüfung","DE.Views.FileMenuPanels.Settings.txtPt":"Punkt","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"Die Schaltfläche Schnelldruck in der Kopfzeile des Editors anzeigen","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt","DE.Views.FileMenuPanels.Settings.txtRunMacros":"Alle aktivieren","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"Alle Makros ohne Benachrichtigung aktivieren","DE.Views.FileMenuPanels.Settings.txtScreenReader":"Unterstützung für Bildschirmleser einschalten","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"Änderungen anzeigen","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"Rechtschreibprüfung","DE.Views.FileMenuPanels.Settings.txtStopMacros":"Alle deaktivieren","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"Alle Makros ohne Benachrichtigung deaktivieren","DE.Views.FileMenuPanels.Settings.txtStrictTip":"Verwenden Sie die Schaltfläche \"Speichern\", um die vorgenommenen Änderungen zu synchronisieren.","DE.Views.FileMenuPanels.Settings.txtTabBack":"Farbe der Symbolleiste als Hintergrund für Registerkarten verwenden","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"Verwenden Sie die Alt-Taste, um über die Tastatur in der Benutzeroberfläche zu navigieren.","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Verwenden Sie die Option-Taste, um über die Tastatur in der Benutzeroberfläche zu navigieren.","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"Benachrichtigung anzeigen","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"Alle Makros mit einer Benachrichtigung deaktivieren","DE.Views.FileMenuPanels.Settings.txtWin":"wie Windows","DE.Views.FileMenuPanels.Settings.txtWorkspace":"Arbeitsbereich","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Herunterladen als","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Kopie speichern als","DE.Views.FormSettings.textAddRole":"Empfänger hinzufügen","DE.Views.FormSettings.textAlways":"Immer","DE.Views.FormSettings.textAnyone":"Alle","DE.Views.FormSettings.textAspect":"Seitenverhältnis sperren","DE.Views.FormSettings.textAtLeast":"Mindestens","DE.Views.FormSettings.textAuto":"auto","DE.Views.FormSettings.textAutofit":"Automatisch anpassen","DE.Views.FormSettings.textBackgroundColor":"Hintergrundfarbe","DE.Views.FormSettings.textCheckbox":"Kontrollkästchen","DE.Views.FormSettings.textCheckDefault":"Das Kontrollkästchen ist standardmäßig aktiviert","DE.Views.FormSettings.textColor":"Rahmenfarbe","DE.Views.FormSettings.textComb":"Zeichenanzahl in Textfeld","DE.Views.FormSettings.textCombobox":"Combobox","DE.Views.FormSettings.textComplex":"Komplexes Feld","DE.Views.FormSettings.textConnected":"Verbundene Felder","DE.Views.FormSettings.textCreditCard":"Nummer der Kreditkarte (z. B. 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"Feld Datum & Uhrzeit","DE.Views.FormSettings.textDateFormat":"Datum wie folgt anzeigen","DE.Views.FormSettings.textDefValue":"Standardmäßig","DE.Views.FormSettings.textDelete":"Löschen","DE.Views.FormSettings.textDigits":"Zahlen","DE.Views.FormSettings.textDisconnect":"Verbindung trennen","DE.Views.FormSettings.textDropDown":"Dropdown","DE.Views.FormSettings.textExact":"Genau","DE.Views.FormSettings.textField":"Textfeld","DE.Views.FormSettings.textFillRoles":"Wer muss das ausfüllen?","DE.Views.FormSettings.textFixed":"Feste Feldgröße","DE.Views.FormSettings.textFormat":"Format","DE.Views.FormSettings.textFormatSymbols":"Erlaubte Zeichen","DE.Views.FormSettings.textFromFile":"Aus einer Datei","DE.Views.FormSettings.textFromStorage":"Aus dem Speicher","DE.Views.FormSettings.textFromUrl":"Aus einer URL","DE.Views.FormSettings.textGroupKey":"Gruppenschlüssel","DE.Views.FormSettings.textImage":"Bild","DE.Views.FormSettings.textKey":"Schlüssel","DE.Views.FormSettings.textLabel":"Bezeichnung","DE.Views.FormSettings.textLang":"Sprache","DE.Views.FormSettings.textLetters":"Buchstaben","DE.Views.FormSettings.textLock":"Sperren","DE.Views.FormSettings.textMask":"Beliebige Maske","DE.Views.FormSettings.textMaxChars":"Zeichengrenze","DE.Views.FormSettings.textMulti":"Mehrzeiliges Feld","DE.Views.FormSettings.textNever":"Nie","DE.Views.FormSettings.textNoBorder":"Kein Rahmen","DE.Views.FormSettings.textNone":"Kein","DE.Views.FormSettings.textPhone1":"Telefonnummer (z. B. (123) 456-7890)","DE.Views.FormSettings.textPhone2":"Telefonnummer (z.B. +447911123456)","DE.Views.FormSettings.textPlaceholder":"Platzhalter","DE.Views.FormSettings.textRadiobox":"Radiobutton","DE.Views.FormSettings.textRadioChoice":"Auswahl der Optionsschaltflächen","DE.Views.FormSettings.textRadioDefault":"Schaltfläche ist standardmäßig aktiviert","DE.Views.FormSettings.textReg":"Regulärer Ausdruck","DE.Views.FormSettings.textRequired":"Erforderlich","DE.Views.FormSettings.textScale":"Wann skalieren","DE.Views.FormSettings.textSelectImage":"Bild auswählen","DE.Views.FormSettings.textSignature":"Signatur","DE.Views.FormSettings.textTag":"Tag","DE.Views.FormSettings.textTip":"Tipp","DE.Views.FormSettings.textTipAdd":"Neuen Wert hinzufügen","DE.Views.FormSettings.textTipDelete":"Den Wert löschen","DE.Views.FormSettings.textTipDown":"Nach unten bewegen","DE.Views.FormSettings.textTipUp":"Nach oben bewegen","DE.Views.FormSettings.textTooBig":"Das Bild ist zu groß","DE.Views.FormSettings.textTooSmall":"Das Bild ist zu klein","DE.Views.FormSettings.textUKPassport":"Nummer des britischen Personalausweises (z. B. 925665416)","DE.Views.FormSettings.textUnlock":"Entsperren","DE.Views.FormSettings.textUSSSN":"US SSN (z. B. 123-45-6789)","DE.Views.FormSettings.textValue":"Optionen von Werten","DE.Views.FormSettings.textWidth":"Zeilenbreite","DE.Views.FormSettings.textZipCodeUS":"US-Postleitzahl (z. B. 92663 oder 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"Kontrollkästchen","DE.Views.FormsTab.capBtnComboBox":"Combobox","DE.Views.FormsTab.capBtnComplex":"Komplexes Feld","DE.Views.FormsTab.capBtnDownloadForm":"Als pdf herunterladen","DE.Views.FormsTab.capBtnDropDown":"Dropdown","DE.Views.FormsTab.capBtnEmail":"E-Mail-Adresse","DE.Views.FormsTab.capBtnFinal":"Als endgültig markieren","DE.Views.FormsTab.capBtnImage":"Bild","DE.Views.FormsTab.capBtnManager":"Empfängerrollen verwalten","DE.Views.FormsTab.capBtnNext":"Nächstes Feld","DE.Views.FormsTab.capBtnPhone":"Telefonnummer","DE.Views.FormsTab.capBtnPrev":"Vorheriges Feld","DE.Views.FormsTab.capBtnRadioBox":"Radiobutton","DE.Views.FormsTab.capBtnSaveForm":"Als pdf speichern","DE.Views.FormsTab.capBtnSaveFormDesktop":"Speichern als...","DE.Views.FormsTab.capBtnSignature":"Signatur","DE.Views.FormsTab.capBtnSubmit":"Ausfüllen & Absenden","DE.Views.FormsTab.capBtnText":"Textfeld","DE.Views.FormsTab.capBtnView":"Vorschau","DE.Views.FormsTab.capCreditCard":"Kreditkarte","DE.Views.FormsTab.capDateTime":"Datum & Uhrzeit","DE.Views.FormsTab.capZipCode":"Postleitzahl","DE.Views.FormsTab.helpTextFillStatus":"Dieses Formular ist bereit zum rollenbasierten Ausfüllen. Klicken Sie auf die Statusschaltfläche, um den Füllstatus zu überprüfen.","DE.Views.FormsTab.textAddRole":"Empfänger hinzufügen","DE.Views.FormsTab.textAnyone":"Alle","DE.Views.FormsTab.textClear":"Felder löschen","DE.Views.FormsTab.textClearFields":"Alle Felder löschen","DE.Views.FormsTab.textCreateForm":"Felder hinzufügen und ausfüllbare PDF-Datei erstellen","DE.Views.FormsTab.textFilled":"Ausgefüllt","DE.Views.FormsTab.textFillFor":"Felder einfügen für","DE.Views.FormsTab.textGotIt":"OK","DE.Views.FormsTab.textHighlight":"Einstellungen für Hervorhebungen","DE.Views.FormsTab.textNoHighlight":"Ohne Hervorhebung","DE.Views.FormsTab.textRequired":"Füllen Sie alle erforderlichen Felder aus, um das Formular abzusenden.","DE.Views.FormsTab.textSubmited":"Das Formular wurde erfolgreich versandt","DE.Views.FormsTab.textSubmitOk":"Ihr PDF-Formular wurde im Abschnitt \"Fertiggestellt\" gespeichert.","DE.Views.FormsTab.tipCheckBox":"Checkbox einfügen","DE.Views.FormsTab.tipComboBox":"Combobox einfügen","DE.Views.FormsTab.tipComplexField":"Komplexes Feld einfügen","DE.Views.FormsTab.tipCreateField":"Um ein Feld zu erstellen, wählen Sie den gewünschten Feldtyp in der Symbolleiste aus und klicken Sie darauf. Das Feld wird im Dokument angezeigt.","DE.Views.FormsTab.tipCreditCard":"Kreditkartennummer eingeben","DE.Views.FormsTab.tipDateTime":"Datum und Uhrzeit einfügen","DE.Views.FormsTab.tipDownloadForm":"Die Datei als ausfüllbares PDF-Dokument herunterladen","DE.Views.FormsTab.tipDropDown":"Dropdown-Liste einfügen","DE.Views.FormsTab.tipEmailField":"E-Mail Adresse einfügen","DE.Views.FormsTab.tipFieldSettings":"Sie können ausgewählte Felder in der rechten Seitenleiste konfigurieren. Klicken Sie auf dieses Symbol, um die Feldeinstellungen zu öffnen.","DE.Views.FormsTab.tipFieldsLink":"Mehr über die Feldparameter erfahren","DE.Views.FormsTab.tipFinalForm":"Als endgültig markieren","DE.Views.FormsTab.tipFirstPage":"Zur ersten Seite gehen","DE.Views.FormsTab.tipFixedText":"Fixiertes Textfeld einfügen","DE.Views.FormsTab.tipFormGroupKey":"Gruppieren Sie Optionsfelder, um den Ausfüllvorgang zu beschleunigen. Auswahlmöglichkeiten mit denselben Namen werden synchronisiert. Benutzer können nur ein Optionsfeld aus der Gruppe ankreuzen.","DE.Views.FormsTab.tipFormKey":"Sie können einem Feld oder einer Gruppe von Feldern einen Schlüssel zuweisen. Wenn ein Benutzer die Daten eingibt, werden sie in alle Felder mit demselben Schlüssel kopiert.","DE.Views.FormsTab.tipHelpRoles":"Verwenden Sie die Funktion \"Empfänger verwalten\", um Felder nach Zweck zu gruppieren und die verantwortlichen Teammitglieder zuzuweisen.","DE.Views.FormsTab.tipImageField":"Bild einfügen","DE.Views.FormsTab.tipInlineText":"Inline-Textfeld einfügen","DE.Views.FormsTab.tipLastPage":"Zur letzten Seite gehen","DE.Views.FormsTab.tipManager":"Empfängerrollen verwalten","DE.Views.FormsTab.tipNextForm":"Zum nächsten Feld wechseln","DE.Views.FormsTab.tipNextPage":"Zur nächsten Seite gehen","DE.Views.FormsTab.tipPhoneField":"Telefonnummer einfügen","DE.Views.FormsTab.tipPrevForm":"Zum vorherigen Feld wechseln","DE.Views.FormsTab.tipPrevPage":"Zur vorherigen Seite gehen","DE.Views.FormsTab.tipRadioBox":"Radiobutton einfügen","DE.Views.FormsTab.tipRolesLink":"Mehr über Empfänger erfahren","DE.Views.FormsTab.tipSaveFile":"Klicken Sie auf \"Als PDF speichern\", um das Formular in einem ausfüllbaren Format zu speichern.","DE.Views.FormsTab.tipSaveForm":"Als eine ausfüllbare PDF-Datei speichern","DE.Views.FormsTab.tipSignField":"Signatur einfügen","DE.Views.FormsTab.tipSubmit":"Formular senden","DE.Views.FormsTab.tipTextField":"Textfeld einfügen","DE.Views.FormsTab.tipViewForm":"Vorschau","DE.Views.FormsTab.tipZipCode":"Postleitzahl einfügen","DE.Views.FormsTab.txtFixedDesc":"Fixiertes Textfeld einfügen","DE.Views.FormsTab.txtFixedText":"Fixiert","DE.Views.FormsTab.txtInlineDesc":"Inline-Textfeld einfügen","DE.Views.FormsTab.txtInlineText":"Inline","DE.Views.FormsTab.txtSignedForm":"Dieses Dokument wurde signiert und kann nicht bearbeitet werden.","DE.Views.FormsTab.txtUntitled":"Unbenannt","DE.Views.HeaderFooterSettings.textBottomCenter":"Unten zentriert","DE.Views.HeaderFooterSettings.textBottomLeft":"Unten links","DE.Views.HeaderFooterSettings.textBottomPage":"Seitenende","DE.Views.HeaderFooterSettings.textBottomRight":"Unten rechts","DE.Views.HeaderFooterSettings.textDiffFirst":"Erste Seite anders","DE.Views.HeaderFooterSettings.textDiffOdd":"Untersch. gerade/ungerade Seiten","DE.Views.HeaderFooterSettings.textFrom":"Starten mit","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"Fußzeile von unten","DE.Views.HeaderFooterSettings.textHeaderFromTop":"Kopfzeile oberhalb","DE.Views.HeaderFooterSettings.textInsertCurrent":"In aktuelle Position einfügen","DE.Views.HeaderFooterSettings.textNumFormat":"Zahlenformat","DE.Views.HeaderFooterSettings.textOptions":"Optionen","DE.Views.HeaderFooterSettings.textPageNum":"Seitenzahl einfügen","DE.Views.HeaderFooterSettings.textPageNumbering":"Seitennummerierung","DE.Views.HeaderFooterSettings.textPosition":"Position","DE.Views.HeaderFooterSettings.textPrev":"Fortsetzen vom vorherigen Abschnitt","DE.Views.HeaderFooterSettings.textSameAs":"Mit vorheriger verknüpfen","DE.Views.HeaderFooterSettings.textTopCenter":"Oben zentriert","DE.Views.HeaderFooterSettings.textTopLeft":"Oben links","DE.Views.HeaderFooterSettings.textTopPage":"Seitenanfang","DE.Views.HeaderFooterSettings.textTopRight":"Oben rechts","DE.Views.HeaderFooterSettings.txtMoreTypes":"Weitere Typen","DE.Views.HeaderFooterTab.capBtnDateTime":"Datum & Uhrzeit","DE.Views.HeaderFooterTab.capBtnInsField":"Feld","DE.Views.HeaderFooterTab.capBtnInsImage":"Bild","DE.Views.HeaderFooterTab.capCurrentPos":"An aktueller Position","DE.Views.HeaderFooterTab.capFooterBottom":"Fußzeile von unten","DE.Views.HeaderFooterTab.capFormatNums":"Seitennummerierung","DE.Views.HeaderFooterTab.capHeaderTop":"Kopfzeile oberhalb","DE.Views.HeaderFooterTab.capNumOfPages":"Seitenzahl","DE.Views.HeaderFooterTab.mniImageFromFile":"Bild aus Datei","DE.Views.HeaderFooterTab.mniImageFromStorage":"Bild aus dem Speicher","DE.Views.HeaderFooterTab.mniImageFromUrl":"Bild aus URL","DE.Views.HeaderFooterTab.tipCloseTab":"Tab schließen","DE.Views.HeaderFooterTab.tipDateTime":"Aktuelles Datum und Uhrzeit eingeben","DE.Views.HeaderFooterTab.tipHeaderFooter":"Kopf- oder Fußzeile bearbeiten","DE.Views.HeaderFooterTab.tipInsertImage":"Bild einfügen","DE.Views.HeaderFooterTab.tipInsField":"Feld einfügen","DE.Views.HeaderFooterTab.tipNumOfPages":"Seitenzahl","DE.Views.HeaderFooterTab.tipPageNumbering":"Seitennummerierung","DE.Views.HeaderFooterTab.txtCloseTab":"Schließen","DE.Views.HeaderFooterTab.txtDiffFirst":"Erste Seite anders","DE.Views.HeaderFooterTab.txtDiffOddEven":"Gerade und ungerade Seiten anders","DE.Views.HeaderFooterTab.txtEditFooter":"Fußzeile bearbeiten","DE.Views.HeaderFooterTab.txtEditHeader":"Kopfzeile bearbeiten","DE.Views.HeaderFooterTab.txtHeaderFooter":"Kopf- und Fußzeile","DE.Views.HeaderFooterTab.txtPageNumbering":"Seitenzahl","DE.Views.HeaderFooterTab.txtRemoveFooter":"Fußzeile entfernen","DE.Views.HeaderFooterTab.txtRemoveHeader":"Kopfzeile entfernen","DE.Views.HeaderFooterTab.txtSameAs":"Link zum vorherigen","DE.Views.HyperlinkSettingsDialog.textDefault":"Gewählter Textabschnitt","DE.Views.HyperlinkSettingsDialog.textDisplay":"Anzeigen","DE.Views.HyperlinkSettingsDialog.textExternal":"Externer Link","DE.Views.HyperlinkSettingsDialog.textInternal":"Stelle im Dokument","DE.Views.HyperlinkSettingsDialog.textSelectFile":"Datei auswählen","DE.Views.HyperlinkSettingsDialog.textTitle":"Linkeinstellungen","DE.Views.HyperlinkSettingsDialog.textTooltip":"QuickInfo-Text","DE.Views.HyperlinkSettingsDialog.textUrl":"Verknüpfen mit","DE.Views.HyperlinkSettingsDialog.txtBeginning":"Anfang des Dokuments","DE.Views.HyperlinkSettingsDialog.txtBookmarks":"Lesezeichen","DE.Views.HyperlinkSettingsDialog.txtEmpty":"Dieses Feld ist erforderlich","DE.Views.HyperlinkSettingsDialog.txtHeadings":"Überschriften","DE.Views.HyperlinkSettingsDialog.txtNotUrl":"Dieses Feld muss eine URL im Format \"http://www.example.com\" sein","DE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Dieses Feld soll maximal 2083 Zeichen beinhalten","DE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Geben Sie die Webadresse ein oder wählen Sie eine Datei aus","DE.Views.HyphenationDialog.textAuto":"Automatisches Trennen","DE.Views.HyphenationDialog.textCaps":"Worte in Grossbuchstaben trennen","DE.Views.HyphenationDialog.textLimit":"Beschränken Sie aufeinanderfolgende Bindestriche auf","DE.Views.HyphenationDialog.textNoLimit":"Keine Begrenzung","DE.Views.HyphenationDialog.textTitle":"Trennen","DE.Views.HyphenationDialog.textZone":"Trenn Zone","DE.Views.ImageSettings.strTransparency":"Undurchsichtigkeit","DE.Views.ImageSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.ImageSettings.textCrop":"Zuschneiden","DE.Views.ImageSettings.textCropFill":"Ausfüllen","DE.Views.ImageSettings.textCropFit":"Anpassen","DE.Views.ImageSettings.textCropToShape":"Auf Form zuschneiden","DE.Views.ImageSettings.textEdit":"Bearbeiten","DE.Views.ImageSettings.textEditObject":"Objekt bearbeiten","DE.Views.ImageSettings.textFitMargins":"Rändern anpassen","DE.Views.ImageSettings.textFlip":"Kippen","DE.Views.ImageSettings.textFromFile":"Aus Datei","DE.Views.ImageSettings.textFromStorage":"Aus dem Speicher","DE.Views.ImageSettings.textFromUrl":"Aus URL","DE.Views.ImageSettings.textHeight":"Höhe","DE.Views.ImageSettings.textHint270":"Um 90 ° gegen den Uhrzeigersinn drehen","DE.Views.ImageSettings.textHint90":"90° im UZS drehen","DE.Views.ImageSettings.textHintFlipH":"Horizontal kippen","DE.Views.ImageSettings.textHintFlipV":"Vertikal kippen","DE.Views.ImageSettings.textInsert":"Bild ersetzen","DE.Views.ImageSettings.textOriginalSize":"Tatsächliche Größe","DE.Views.ImageSettings.textRecentlyUsed":"Zuletzt verwendet","DE.Views.ImageSettings.textResetCrop":"Zuschneiden zurücksetzen","DE.Views.ImageSettings.textRotate90":"90 Grad drehen","DE.Views.ImageSettings.textRotation":"Rotation","DE.Views.ImageSettings.textSize":"Größe","DE.Views.ImageSettings.textWidth":"Breite","DE.Views.ImageSettings.textWrap":"Textumbruch","DE.Views.ImageSettings.txtBehind":"Hinter dem Text","DE.Views.ImageSettings.txtInFront":"Vorne","DE.Views.ImageSettings.txtInline":"Inline","DE.Views.ImageSettings.txtSquare":"Eckig","DE.Views.ImageSettings.txtThrough":"Durchgehend","DE.Views.ImageSettings.txtTight":"Passend","DE.Views.ImageSettings.txtTopAndBottom":"Oben und unten","DE.Views.ImageSettingsAdvanced.strMargins":"Textauffüllung","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"Absolut","DE.Views.ImageSettingsAdvanced.textAlignment":"Ausrichtung","DE.Views.ImageSettingsAdvanced.textAlt":"Alternativer Text","DE.Views.ImageSettingsAdvanced.textAltDescription":"Beschreibung","DE.Views.ImageSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","DE.Views.ImageSettingsAdvanced.textAltTitle":"Titel","DE.Views.ImageSettingsAdvanced.textAngle":"Winkel","DE.Views.ImageSettingsAdvanced.textArrows":"Pfeile","DE.Views.ImageSettingsAdvanced.textAspectRatio":"Seitenverhältnis sperren","DE.Views.ImageSettingsAdvanced.textAuto":"Auto","DE.Views.ImageSettingsAdvanced.textAutofit":"Automatisch anpassen","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"Achsenkreuze","DE.Views.ImageSettingsAdvanced.textAxisPos":"Achsenposition","DE.Views.ImageSettingsAdvanced.textAxisTitle":"Titel","DE.Views.ImageSettingsAdvanced.textBase":"Basis","DE.Views.ImageSettingsAdvanced.textBeginSize":"Startgröße","DE.Views.ImageSettingsAdvanced.textBeginStyle":"Startlinienart","DE.Views.ImageSettingsAdvanced.textBelow":"unten","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"Zwischen den Teilstrichen","DE.Views.ImageSettingsAdvanced.textBevel":"Schräge Kante","DE.Views.ImageSettingsAdvanced.textBillions":"Milliarden","DE.Views.ImageSettingsAdvanced.textBottom":"Unten","DE.Views.ImageSettingsAdvanced.textBottomMargin":"Unterer Rand","DE.Views.ImageSettingsAdvanced.textBtnWrap":"Textumbruch","DE.Views.ImageSettingsAdvanced.textCapType":"Zierbuchstabe","DE.Views.ImageSettingsAdvanced.textCategoryName":"Kategoriename","DE.Views.ImageSettingsAdvanced.textCenter":"Zentriert","DE.Views.ImageSettingsAdvanced.textCharacter":"Zeichen","DE.Views.ImageSettingsAdvanced.textChartTitle":"Diagrammtitel","DE.Views.ImageSettingsAdvanced.textColumn":"Spalte","DE.Views.ImageSettingsAdvanced.textCross":"Kreuz","DE.Views.ImageSettingsAdvanced.textCustom":"Benutzerdefiniert","DE.Views.ImageSettingsAdvanced.textDataLabels":"Datenbeschriftungen","DE.Views.ImageSettingsAdvanced.textDistance":"Abstand vom Text","DE.Views.ImageSettingsAdvanced.textEndSize":"Endgröße","DE.Views.ImageSettingsAdvanced.textEndStyle":"Endlinienart","DE.Views.ImageSettingsAdvanced.textFit":"Breite anpassen","DE.Views.ImageSettingsAdvanced.textFixed":"Fixiert","DE.Views.ImageSettingsAdvanced.textFlat":"Flach","DE.Views.ImageSettingsAdvanced.textFlipped":"Gekippt","DE.Views.ImageSettingsAdvanced.textFormat":"Bezeichnungsformat","DE.Views.ImageSettingsAdvanced.textGridLines":"Gitternetzlinien ","DE.Views.ImageSettingsAdvanced.textHeight":"Höhe","DE.Views.ImageSettingsAdvanced.textHideAxis":"Achse ausblenden","DE.Views.ImageSettingsAdvanced.textHigh":"Hoch","DE.Views.ImageSettingsAdvanced.textHorAxis":"Horizontale Achse","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"Horizontale Sekundärachse","DE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontal","DE.Views.ImageSettingsAdvanced.textHundredMil":"100 000 000","DE.Views.ImageSettingsAdvanced.textHundreds":"Hunderte","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100 000","DE.Views.ImageSettingsAdvanced.textIn":"In","DE.Views.ImageSettingsAdvanced.textInnerBottom":"Innen unten","DE.Views.ImageSettingsAdvanced.textInnerTop":"Innen oben","DE.Views.ImageSettingsAdvanced.textJoinType":"Verknüpfungstyp","DE.Views.ImageSettingsAdvanced.textKeepRatio":"Seitenverhältnis beibehalten","DE.Views.ImageSettingsAdvanced.textLabelDist":"Achsenbeschriftungsabstand","DE.Views.ImageSettingsAdvanced.textLabelInterval":"Abstand zwischen Beschriftungen","DE.Views.ImageSettingsAdvanced.textLabelOptions":"Beschriftungsoptionen","DE.Views.ImageSettingsAdvanced.textLabelPos":"Beschriftungsposition","DE.Views.ImageSettingsAdvanced.textLayout":"Layout","DE.Views.ImageSettingsAdvanced.textLeft":"Links","DE.Views.ImageSettingsAdvanced.textLeftMargin":"Linker Rand","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"Überlagerung links","DE.Views.ImageSettingsAdvanced.textLegendBottom":"Unten","DE.Views.ImageSettingsAdvanced.textLegendLeft":"Links","DE.Views.ImageSettingsAdvanced.textLegendPos":"Legende","DE.Views.ImageSettingsAdvanced.textLegendRight":"Rechts","DE.Views.ImageSettingsAdvanced.textLegendTop":"Oben","DE.Views.ImageSettingsAdvanced.textLine":"Linie","DE.Views.ImageSettingsAdvanced.textLines":"Linien","DE.Views.ImageSettingsAdvanced.textLineStyle":"Linienart","DE.Views.ImageSettingsAdvanced.textLogScale":"Logarithmische Skalierung","DE.Views.ImageSettingsAdvanced.textLow":"Niedrig","DE.Views.ImageSettingsAdvanced.textMajor":"Primäre","DE.Views.ImageSettingsAdvanced.textMajorMinor":"Primäre und sekundäre","DE.Views.ImageSettingsAdvanced.textMajorType":"Primärer Typ","DE.Views.ImageSettingsAdvanced.textManual":"Manuell","DE.Views.ImageSettingsAdvanced.textMargin":"Rand","DE.Views.ImageSettingsAdvanced.textMarkers":"Markierungen","DE.Views.ImageSettingsAdvanced.textMarksInterval":"Abstand zwischen Teilstrichen","DE.Views.ImageSettingsAdvanced.textMaxValue":"Maximalwert","DE.Views.ImageSettingsAdvanced.textMillions":"Millionen","DE.Views.ImageSettingsAdvanced.textMinor":"Sekundär","DE.Views.ImageSettingsAdvanced.textMinorType":"Sekundärer Typ","DE.Views.ImageSettingsAdvanced.textMinValue":"Minimalwert","DE.Views.ImageSettingsAdvanced.textMiter":"Winkel","DE.Views.ImageSettingsAdvanced.textMove":"Objekt mit Text verschieben","DE.Views.ImageSettingsAdvanced.textNextToAxis":"Neben der Achse","DE.Views.ImageSettingsAdvanced.textNone":"Kein(e)","DE.Views.ImageSettingsAdvanced.textNoOverlay":"Ohne Überlagerung","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"Teilstriche","DE.Views.ImageSettingsAdvanced.textOptions":"Optionen","DE.Views.ImageSettingsAdvanced.textOriginalSize":"Tatsächliche Größe","DE.Views.ImageSettingsAdvanced.textOut":"Außen","DE.Views.ImageSettingsAdvanced.textOuterTop":"Außen oben","DE.Views.ImageSettingsAdvanced.textOverlap":"Überlappung zulassen","DE.Views.ImageSettingsAdvanced.textOverlay":"Überlagerung","DE.Views.ImageSettingsAdvanced.textPage":"Seite","DE.Views.ImageSettingsAdvanced.textParagraph":"Absatz","DE.Views.ImageSettingsAdvanced.textPosition":"Position","DE.Views.ImageSettingsAdvanced.textPositionPc":"Relative Position","DE.Views.ImageSettingsAdvanced.textRelative":"im Bezug auf ","DE.Views.ImageSettingsAdvanced.textRelativeWH":"Relativ","DE.Views.ImageSettingsAdvanced.textResizeFit":"Die Form am Text anpassen","DE.Views.ImageSettingsAdvanced.textReverse":"Werte in umgekehrter Reihenfolge","DE.Views.ImageSettingsAdvanced.textRight":"Rechts","DE.Views.ImageSettingsAdvanced.textRightMargin":"Rechter Seitenrand","DE.Views.ImageSettingsAdvanced.textRightOf":"rechts von","DE.Views.ImageSettingsAdvanced.textRightOverlay":"Überlagerung rechts","DE.Views.ImageSettingsAdvanced.textRotated":"Gedreht","DE.Views.ImageSettingsAdvanced.textRotation":"Rotation","DE.Views.ImageSettingsAdvanced.textRound":"Rund","DE.Views.ImageSettingsAdvanced.textSeparator":"Trennzeichen für Datenbeschriftungen","DE.Views.ImageSettingsAdvanced.textSeriesName":"Reihenname","DE.Views.ImageSettingsAdvanced.textShape":"Formeinstellungen","DE.Views.ImageSettingsAdvanced.textSize":"Größe","DE.Views.ImageSettingsAdvanced.textSmooth":"Glatt","DE.Views.ImageSettingsAdvanced.textSquare":"Eckig","DE.Views.ImageSettingsAdvanced.textStraight":"Gerade","DE.Views.ImageSettingsAdvanced.textTenMillions":"10 000 000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10 000","DE.Views.ImageSettingsAdvanced.textTextBox":"Textfeld","DE.Views.ImageSettingsAdvanced.textThousands":"Tausende","DE.Views.ImageSettingsAdvanced.textTickOptions":"Parameter der Teilstriche","DE.Views.ImageSettingsAdvanced.textTitle":"Bild - Erweiterte Einstellungen","DE.Views.ImageSettingsAdvanced.textTitleChart":"Diagramm - Erweiterte Einstellungen","DE.Views.ImageSettingsAdvanced.textTitleShape":"Form - Erweiterte Einstellungen","DE.Views.ImageSettingsAdvanced.textTop":"Oben","DE.Views.ImageSettingsAdvanced.textTopMargin":"Oberer Rand","DE.Views.ImageSettingsAdvanced.textTrillions":"Billionen","DE.Views.ImageSettingsAdvanced.textUnits":"Anzeigeeinheiten","DE.Views.ImageSettingsAdvanced.textValue":"Wert","DE.Views.ImageSettingsAdvanced.textVertAxis":"Vertikale Achse","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"Vertikale Sekundärachse","DE.Views.ImageSettingsAdvanced.textVertical":"Vertikal","DE.Views.ImageSettingsAdvanced.textVertically":"Vertikal","DE.Views.ImageSettingsAdvanced.textWeightArrows":"Stärken & Pfeile","DE.Views.ImageSettingsAdvanced.textWidth":"Breite","DE.Views.ImageSettingsAdvanced.textWrap":"Textumbruch","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"Hinter dem Text","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"Vorne","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"Inline","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"Eckig","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"Durchgehend","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"Passend","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"Oben und unten","DE.Views.LeftMenu.ariaLeftMenu":"Linkes Menü","DE.Views.LeftMenu.tipAbout":"Über das Produkt","DE.Views.LeftMenu.tipChat":"Chat","DE.Views.LeftMenu.tipComments":"Kommentare","DE.Views.LeftMenu.tipNavigation":"Navigation","DE.Views.LeftMenu.tipOutline":"Überschriften","DE.Views.LeftMenu.tipPageThumbnails":"Miniaturansichten","DE.Views.LeftMenu.tipPlugins":"Plugins","DE.Views.LeftMenu.tipSearch":"Suchen","DE.Views.LeftMenu.tipSupport":"Feedback und Support","DE.Views.LeftMenu.tipTitles":"Titel","DE.Views.LeftMenu.txtDeveloper":"ENTWICKLERMODUS","DE.Views.LeftMenu.txtEditor":"Dokument Editor","DE.Views.LeftMenu.txtLimit":"Zugriffseinschränkung","DE.Views.LeftMenu.txtTrial":"Trial-Modus","DE.Views.LeftMenu.txtTrialDev":"Testversion für Entwickler-Modus","DE.Views.LineNumbersDialog.textAddLineNumbering":"Zeilennummer hinzufügen","DE.Views.LineNumbersDialog.textApplyTo":"Änderungen anwenden","DE.Views.LineNumbersDialog.textContinuous":"Ununterbrochen","DE.Views.LineNumbersDialog.textCountBy":"Zählintervall","DE.Views.LineNumbersDialog.textDocument":"Zum ganzen Dokument","DE.Views.LineNumbersDialog.textForward":"Bis zum Ende des Dokuments","DE.Views.LineNumbersDialog.textFromText":"Aus dem Text","DE.Views.LineNumbersDialog.textNumbering":"Nummerierung","DE.Views.LineNumbersDialog.textRestartEachPage":"Jede Seite neu beginnen","DE.Views.LineNumbersDialog.textRestartEachSection":"Jeden Abschnitt neu beginnen","DE.Views.LineNumbersDialog.textSection":"Aktueller Abschnitt","DE.Views.LineNumbersDialog.textStartAt":"Beginnen mit","DE.Views.LineNumbersDialog.textTitle":"Zeilennummern","DE.Views.LineNumbersDialog.txtAutoText":"Automatisch","DE.Views.Links.capBtnAddText":"Text Hinzufügen","DE.Views.Links.capBtnBookmarks":"Lesezeichen","DE.Views.Links.capBtnCaption":"Beschriftung","DE.Views.Links.capBtnContentsUpdate":"Aktualisierung","DE.Views.Links.capBtnCrossRef":"Querverweis","DE.Views.Links.capBtnInsContents":"Inhaltsverzeichnis","DE.Views.Links.capBtnInsFootnote":"Fußnote","DE.Views.Links.capBtnInsLink":"Link","DE.Views.Links.capBtnTOF":"Abbildungsverzeichnis","DE.Views.Links.confirmDeleteFootnotes":"Möchten Sie alle Fußnoten löschen?","DE.Views.Links.confirmReplaceTOF":"Möchten Sie das ausgewählte Abbildungsverzeichnis wirklich ersetzen?","DE.Views.Links.mniConvertNote":"Alle Notizen umwandeln","DE.Views.Links.mniDelFootnote":"Alle Notizen löschen ","DE.Views.Links.mniInsEndnote":"Endnotiz einfügen","DE.Views.Links.mniInsFootnote":"Fußnotiz einfügen","DE.Views.Links.mniNoteSettings":"Hinweise Einstellungen","DE.Views.Links.textContentsRemove":"Inhaltsverzeichnis entfernen","DE.Views.Links.textContentsSettings":"Einstellungen","DE.Views.Links.textConvertToEndnotes":"Alle Fußnoten in Endnoten konvertieren","DE.Views.Links.textConvertToFootnotes":"Alle Endnoten in Fußnoten konvertieren","DE.Views.Links.textGotoEndnote":"Zu Endnotizen","DE.Views.Links.textGotoFootnote":"Zu Fußnotizen gehen","DE.Views.Links.textSwapNotes":"Fußnoten und Endnoten wechseln","DE.Views.Links.textUpdateAll":"Gesamtes Verzeichnis aktualisieren","DE.Views.Links.textUpdatePages":"Nur Seitenzahlen aktualisieren","DE.Views.Links.tipAddText":"Überschrift in das Inhaltsverzeichnis einfügen","DE.Views.Links.tipBookmarks":"Lesezeichen erstellen","DE.Views.Links.tipCaption":"Beschriftung einfügen","DE.Views.Links.tipContents":"Inhaltsverzeichnis einfügen","DE.Views.Links.tipContentsUpdate":"Inhaltsverzeichnis aktualisieren","DE.Views.Links.tipCrossRef":"Querverweis einfügen","DE.Views.Links.tipInsertHyperlink":"Link hinzufügen","DE.Views.Links.tipNotes":"Fußnoten einfügen oder bearbeiten","DE.Views.Links.tipTableFigures":"Abbildungsverzeichnis einfügen","DE.Views.Links.tipTableFiguresUpdate":"Abbildungsverzeichnis aktualisieren","DE.Views.Links.titleUpdateTOF":"Abbildungsverzeichnis aktualisieren","DE.Views.Links.txtDontShowTof":"Im Inhaltsverzeichnis nicht anzeigen","DE.Views.Links.txtLevel":"Ebene","DE.Views.ListIndentsDialog.textSpace":"Leerzeichen","DE.Views.ListIndentsDialog.textTab":"Tabulatorzeichen","DE.Views.ListIndentsDialog.textTitle":"Einzüge in der Liste","DE.Views.ListIndentsDialog.txtFollowBullet":"Aufzählungszeichen folgen mit","DE.Views.ListIndentsDialog.txtFollowNumber":"Nummer folgen mit","DE.Views.ListIndentsDialog.txtIndent":"Texteinzug","DE.Views.ListIndentsDialog.txtNone":"Keine","DE.Views.ListIndentsDialog.txtPosBullet":"Position des Aufzählungszeichens","DE.Views.ListIndentsDialog.txtPosNumber":"Position der Nummer","DE.Views.ListSettingsDialog.textAuto":"Automatisch","DE.Views.ListSettingsDialog.textBold":"Fett","DE.Views.ListSettingsDialog.textCenter":"Zenter","DE.Views.ListSettingsDialog.textHide":"Einstellungen ausblenden","DE.Views.ListSettingsDialog.textItalic":"Kursiv","DE.Views.ListSettingsDialog.textLeft":"Links","DE.Views.ListSettingsDialog.textLevel":"Ebene","DE.Views.ListSettingsDialog.textMore":"Weitere Einstellungen anzeigen","DE.Views.ListSettingsDialog.textPreview":"Vorschau","DE.Views.ListSettingsDialog.textRight":"Rechts","DE.Views.ListSettingsDialog.textSelectLevel":"Ebene auswählen","DE.Views.ListSettingsDialog.textSpace":"Leerzeichen","DE.Views.ListSettingsDialog.textTab":"Tabulatorzeichen","DE.Views.ListSettingsDialog.txtAlign":"Ausrichtung","DE.Views.ListSettingsDialog.txtAlignAt":"auf","DE.Views.ListSettingsDialog.txtBullet":"Aufzählungszeichen","DE.Views.ListSettingsDialog.txtColor":"Farbe","DE.Views.ListSettingsDialog.txtFollow":"Nummer folgen mit","DE.Views.ListSettingsDialog.txtFontName":"Schriftart","DE.Views.ListSettingsDialog.txtInclcudeLevel":"Levelnummer einschließen","DE.Views.ListSettingsDialog.txtIndent":"Texteinzug","DE.Views.ListSettingsDialog.txtLikeText":"Wie ein Text","DE.Views.ListSettingsDialog.txtMoreTypes":"Weitere Typen","DE.Views.ListSettingsDialog.txtNewBullet":"Neues Aufzählungszeichen","DE.Views.ListSettingsDialog.txtNone":"Keine","DE.Views.ListSettingsDialog.txtNumFormatString":"Zahlenformat","DE.Views.ListSettingsDialog.txtRestart":"Liste neu beginnen","DE.Views.ListSettingsDialog.txtSize":"Größe","DE.Views.ListSettingsDialog.txtStart":"Beginnen mit","DE.Views.ListSettingsDialog.txtSymbol":"Symbol","DE.Views.ListSettingsDialog.txtTabStop":"Tabstopp hinzufügen bei","DE.Views.ListSettingsDialog.txtTitle":"Listeneinstellungen","DE.Views.ListSettingsDialog.txtType":"Typ","DE.Views.ListTypesAdvanced.labelSelect":"Listenart auswählen","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"Senden","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"Thema","DE.Views.MailMergeEmailDlg.textAttachDocx":"Als DOCX anhängen","DE.Views.MailMergeEmailDlg.textAttachPdf":"Als PDF anhängen","DE.Views.MailMergeEmailDlg.textFileName":"Dateiname","DE.Views.MailMergeEmailDlg.textFormat":"E-Mail-Format","DE.Views.MailMergeEmailDlg.textFrom":"Von","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"Nachricht","DE.Views.MailMergeEmailDlg.textSubject":"Betreff","DE.Views.MailMergeEmailDlg.textTitle":"Per E-Mail senden","DE.Views.MailMergeEmailDlg.textTo":"Zu","DE.Views.MailMergeEmailDlg.textWarning":"Achtung!","DE.Views.MailMergeEmailDlg.textWarningMsg":"Bitte beachten Sie, dass Sendung nicht gestoppt werden kann, wenn man auf den Button Senden klickt.","DE.Views.MailMergeSettings.downloadMergeTitle":"Merging","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"Merge ist fehlgeschlagen.","DE.Views.MailMergeSettings.notcriticalErrorTitle":"Achtung","DE.Views.MailMergeSettings.textAddRecipients":"Erst Empfänger zur Liste hinzufügen","DE.Views.MailMergeSettings.textAll":"Alle Datensätze ","DE.Views.MailMergeSettings.textCurrent":"Aktueller Datensatz","DE.Views.MailMergeSettings.textDataSource":"Datenquelle","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"Herunterladen","DE.Views.MailMergeSettings.textEditData":"Empfängerliste bearbeiten","DE.Views.MailMergeSettings.textEmail":"E-Email","DE.Views.MailMergeSettings.textFrom":"Von","DE.Views.MailMergeSettings.textGoToMail":"Zu E-Mail übergehen","DE.Views.MailMergeSettings.textHighlight":"Serienbrief-Felder hervorheben","DE.Views.MailMergeSettings.textInsertField":"Seriendruckfeld einfügen","DE.Views.MailMergeSettings.textMaxRecepients":"Max. 100 Empfänger.","DE.Views.MailMergeSettings.textMerge":"Verbinden","DE.Views.MailMergeSettings.textMergeFields":"Felder zusammenführen","DE.Views.MailMergeSettings.textMergeTo":"Verbindung mit","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"Speichern","DE.Views.MailMergeSettings.textPreview":"Ergebnisvorschau","DE.Views.MailMergeSettings.textReadMore":"Weiter lesen","DE.Views.MailMergeSettings.textSendMsg":"Alle E-Mail-Nachrichten sind bereit und werden versendet.
Die Geschwindigkeit des Email-Versands hängt von Ihrem Mail-Dienst ab. Sie können an dem Dokument weiterarbeiten oder es schließen. Nachdem der Email-Versand fertig ist, werden Sie per E-Mail, die Sie bei der Registriering wervendeten, benachrichtigt.","DE.Views.MailMergeSettings.textTo":"Zu","DE.Views.MailMergeSettings.txtFirst":"Zum ersten Datensatz","DE.Views.MailMergeSettings.txtFromToError":"Der Wert \"Von\" muss kleiner als \"Bis\" sein","DE.Views.MailMergeSettings.txtLast":"Zum letzten Datensatz","DE.Views.MailMergeSettings.txtNext":"Zum nächsten Datensatz","DE.Views.MailMergeSettings.txtPrev":"Zu den vorherigen Rekord","DE.Views.MailMergeSettings.txtUntitled":"Unbenannt","DE.Views.MailMergeSettings.warnProcessMailMerge":"Merge ist fehlgeschlagen","DE.Views.Navigation.strNavigate":"Überschriften","DE.Views.Navigation.txtClosePanel":"Überschriften schließen","DE.Views.Navigation.txtCollapse":"Alle einklappen","DE.Views.Navigation.txtDemote":"Tieferstufen","DE.Views.Navigation.txtEmpty":"Dieses Dokument enthält keine Überschriften.
Wenden Sie ein Überschriftenformat auf den Text an, damit es im Inhaltsverzeichnis angezeigt wird.","DE.Views.Navigation.txtEmptyItem":"Leere Überschrift","DE.Views.Navigation.txtEmptyViewer":"Dieses Dokument enthält keine Überschriften.","DE.Views.Navigation.txtExpand":"Alle ausklappen","DE.Views.Navigation.txtExpandToLevel":"Auf Ebene erweitern","DE.Views.Navigation.txtFontSize":"Schriftgröße","DE.Views.Navigation.txtHeadingAfter":"Neue Überschrift nach","DE.Views.Navigation.txtHeadingBefore":"Neue Überschrift vor","DE.Views.Navigation.txtLarge":"Groß","DE.Views.Navigation.txtMedium":"Mittelgroß","DE.Views.Navigation.txtNewHeading":"Neue Unterüberschrift","DE.Views.Navigation.txtPromote":"Höherstufen","DE.Views.Navigation.txtSelect":"Inhalt auswählen","DE.Views.Navigation.txtSettings":"Einstellungen von Überschriften","DE.Views.Navigation.txtSmall":"Klein","DE.Views.Navigation.txtWrapHeadings":"Lange Überschriften umbrechen","DE.Views.NoteSettingsDialog.textApply":"Anwenden","DE.Views.NoteSettingsDialog.textApplyTo":"Änderungen anwenden","DE.Views.NoteSettingsDialog.textContinue":"Kontinuierlich","DE.Views.NoteSettingsDialog.textCustom":"Benutzerdefiniert","DE.Views.NoteSettingsDialog.textDocEnd":"Ende des Dokuments","DE.Views.NoteSettingsDialog.textDocument":"Das ganze Dokument","DE.Views.NoteSettingsDialog.textEachPage":"Jede Seite neu beginnen","DE.Views.NoteSettingsDialog.textEachSection":"Jeden Abschnitt neu beginnen","DE.Views.NoteSettingsDialog.textEndnote":"Endnote","DE.Views.NoteSettingsDialog.textFootnote":"Fußnote","DE.Views.NoteSettingsDialog.textFormat":"Format","DE.Views.NoteSettingsDialog.textInsert":"Einfügen","DE.Views.NoteSettingsDialog.textLocation":"Standort","DE.Views.NoteSettingsDialog.textNumbering":"Nummerierung","DE.Views.NoteSettingsDialog.textNumFormat":"Zahlenformat","DE.Views.NoteSettingsDialog.textPageBottom":"Seitenende","DE.Views.NoteSettingsDialog.textSectEnd":"Ende des Abschnitts","DE.Views.NoteSettingsDialog.textSection":"Aktueller Abschnitt","DE.Views.NoteSettingsDialog.textStart":"Starten","DE.Views.NoteSettingsDialog.textTextBottom":"Unterhalb des Textes","DE.Views.NoteSettingsDialog.textTitle":"Hinweise Einstellungen","DE.Views.NotesRemoveDialog.textEnd":"Alle Endnoten löschen","DE.Views.NotesRemoveDialog.textFoot":"Alle Fußnoten löschen ","DE.Views.NotesRemoveDialog.textTitle":"Anmerkungen löschen","DE.Views.PageMarginsDialog.notcriticalErrorTitle":"Achtung","DE.Views.PageMarginsDialog.textBottom":"Unten","DE.Views.PageMarginsDialog.textGutter":"Bundsteg","DE.Views.PageMarginsDialog.textGutterPosition":"Bundsteg-Position","DE.Views.PageMarginsDialog.textInside":"Innen","DE.Views.PageMarginsDialog.textLandscape":"Querformat","DE.Views.PageMarginsDialog.textLeft":"Left","DE.Views.PageMarginsDialog.textMirrorMargins":"Gegenüberliegende Seiten","DE.Views.PageMarginsDialog.textMultiplePages":"Mehrere Seiten","DE.Views.PageMarginsDialog.textNormal":"Normal","DE.Views.PageMarginsDialog.textOrientation":"Ausrichtung","DE.Views.PageMarginsDialog.textOutside":"Außen","DE.Views.PageMarginsDialog.textPortrait":"Hochformat","DE.Views.PageMarginsDialog.textPreview":"Vorschau","DE.Views.PageMarginsDialog.textRight":"Rechts","DE.Views.PageMarginsDialog.textTitle":"Ränder","DE.Views.PageMarginsDialog.textTop":"Oben","DE.Views.PageMarginsDialog.txtMarginsH":"Die oberen und unteren Ränder sind zu hoch für eingegebene Seitenhöhe","DE.Views.PageMarginsDialog.txtMarginsW":"Die Ränder rechts und links sind bei gegebener Seitenbreite zu breit. ","DE.Views.PageNumberingDlg.textFrom":"Starten mit","DE.Views.PageNumberingDlg.textMoreTypes":"Weitere Typen","DE.Views.PageNumberingDlg.textNumberFormat":"Zahlenformat","DE.Views.PageNumberingDlg.textPrev":"Fortsetzen vom vorherigen Abschnitt","DE.Views.PageSizeDialog.textHeight":"Höhe","DE.Views.PageSizeDialog.textPreset":"Voreinstellung","DE.Views.PageSizeDialog.textTitle":"Seitenformat","DE.Views.PageSizeDialog.textWidth":"Breite","DE.Views.PageSizeDialog.txtCustom":"Benutzerdefinierte","DE.Views.PageThumbnails.textClosePanel":"Miniaturansichten schließen","DE.Views.PageThumbnails.textHighlightVisiblePart":"Sichtbaren Teil der Seite hervorheben","DE.Views.PageThumbnails.textPageThumbnails":"Miniaturansichten","DE.Views.PageThumbnails.textThumbnailsSettings":"Einstellungen von Miniaturansichten","DE.Views.PageThumbnails.textThumbnailsSize":"Größe von Miniaturansichten","DE.Views.ParagraphSettings.strIndent":"Einzüge ","DE.Views.ParagraphSettings.strIndentsLeftText":"Links","DE.Views.ParagraphSettings.strIndentsRightText":"Rechts","DE.Views.ParagraphSettings.strIndentsSpecial":"Speziell","DE.Views.ParagraphSettings.strLineHeight":"Zeilenabstand","DE.Views.ParagraphSettings.strParagraphSpacing":"Absatzabstand","DE.Views.ParagraphSettings.strSomeParagraphSpace":"Kein Abstand zwischen Absätzen gleicher Formatierung","DE.Views.ParagraphSettings.strSpacingAfter":"Nach","DE.Views.ParagraphSettings.strSpacingBefore":"Vorher ","DE.Views.ParagraphSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.ParagraphSettings.textAt":"Um","DE.Views.ParagraphSettings.textAtLeast":"Mindestens","DE.Views.ParagraphSettings.textAuto":"Mehrfach","DE.Views.ParagraphSettings.textBackColor":"Hintergrundfarbe","DE.Views.ParagraphSettings.textExact":"Genau","DE.Views.ParagraphSettings.textFirstLine":"Erste Zeile","DE.Views.ParagraphSettings.textHanging":"Hängend","DE.Views.ParagraphSettings.textNoneSpecial":"(kein)","DE.Views.ParagraphSettings.txtAutoText":"Automatisch","DE.Views.ParagraphSettingsAdvanced.noTabs":"Die festgelegten Registerkarten werden in diesem Feld erscheinen","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"Alle Großbuchstaben","DE.Views.ParagraphSettingsAdvanced.strBorders":"Rahmen & Füllung","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"Seitenumbruch oberhalb","DE.Views.ParagraphSettingsAdvanced.strDirection":"Richtung","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Doppeltes Durchstreichen","DE.Views.ParagraphSettingsAdvanced.strIndent":"Einzüge ","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Links","DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Zeilenabstand","DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel":"Gliederungsebene","DE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Rechts","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Nach","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Vorher ","DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Speziell","DE.Views.ParagraphSettingsAdvanced.strKeepLines":"Absatz zusammenhalten","DE.Views.ParagraphSettingsAdvanced.strKeepNext":"Absätze nicht trennen","DE.Views.ParagraphSettingsAdvanced.strMargins":"Auffüllen","DE.Views.ParagraphSettingsAdvanced.strOrphan":"Absatzkontrolle","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Schriftart","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Einzüge und Abstände","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"Zeilen- und Seitenumbrüche","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"Positionierung","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Kapitälchen","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"Kein Abstand zwischen Absätzen gleicher Formatierung","DE.Views.ParagraphSettingsAdvanced.strSpacing":"Abstand","DE.Views.ParagraphSettingsAdvanced.strStrike":"Durchgestrichen","DE.Views.ParagraphSettingsAdvanced.strSubscript":"Tiefgestellt","DE.Views.ParagraphSettingsAdvanced.strSuperscript":"Hochgestellt","DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers":"Zeilennummerierung verbieten","DE.Views.ParagraphSettingsAdvanced.strTabs":"Tabulatoren","DE.Views.ParagraphSettingsAdvanced.textAlign":"Ausrichtung","DE.Views.ParagraphSettingsAdvanced.textAll":"Alle","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"Mindestens","DE.Views.ParagraphSettingsAdvanced.textAuto":"Mehrfach","DE.Views.ParagraphSettingsAdvanced.textBackColor":"Hintergrundfarbe","DE.Views.ParagraphSettingsAdvanced.textBodyText":"Standard text","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"Rahmenfarbe","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen und den gewählten Stil anzuwenden","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"Rahmenstärke","DE.Views.ParagraphSettingsAdvanced.textBottom":"Unten","DE.Views.ParagraphSettingsAdvanced.textCentered":"Zentriert","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Zeichenabstand","DE.Views.ParagraphSettingsAdvanced.textContext":"Kontextbezogene","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"Kontextbezogene und freie","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"Kontextbezogene, historische und freie","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"Kontextbezogene und historische","DE.Views.ParagraphSettingsAdvanced.textDefault":"Standardregisterkarte","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"Von links nach rechts","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"Von rechts nach links","DE.Views.ParagraphSettingsAdvanced.textDiscret":"Freie","DE.Views.ParagraphSettingsAdvanced.textEffects":"Effekte","DE.Views.ParagraphSettingsAdvanced.textExact":"Genau","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"Erste Zeile","DE.Views.ParagraphSettingsAdvanced.textHanging":"Hängend","DE.Views.ParagraphSettingsAdvanced.textHistorical":"Historische","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"Historische und freie","DE.Views.ParagraphSettingsAdvanced.textJustified":"Blocksatz","DE.Views.ParagraphSettingsAdvanced.textLeader":"Füllzeichen","DE.Views.ParagraphSettingsAdvanced.textLeft":"Links","DE.Views.ParagraphSettingsAdvanced.textLevel":"Ebene","DE.Views.ParagraphSettingsAdvanced.textLigatures":"Doppelbuchstaben","DE.Views.ParagraphSettingsAdvanced.textNone":"Kein","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(kein)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"OpenType-Funktionen","DE.Views.ParagraphSettingsAdvanced.textPosition":"Position","DE.Views.ParagraphSettingsAdvanced.textRemove":"Löschen","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Alle löschen","DE.Views.ParagraphSettingsAdvanced.textRight":"Rechts","DE.Views.ParagraphSettingsAdvanced.textSet":"Angeben","DE.Views.ParagraphSettingsAdvanced.textSpacing":"Abstand","DE.Views.ParagraphSettingsAdvanced.textStandard":"Nur standartisierte","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"Standartisierte und kontextbezogene","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"Standartisierte, kontextbezogene und freie","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"Standartisierte, kontextbezogene und historische","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"Standartisierte und freie","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"Standartisierte, historische und freie","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"Standartisierte und historische","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"Zenter","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"Links","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"Tabulatorposition","DE.Views.ParagraphSettingsAdvanced.textTabRight":"Rechts","DE.Views.ParagraphSettingsAdvanced.textTitle":"Absatz - Erweiterte Einstellungen","DE.Views.ParagraphSettingsAdvanced.textTop":"Oben","DE.Views.ParagraphSettingsAdvanced.tipAll":"Äußere Rahmenlinie und alle inneren Linien festlegen","DE.Views.ParagraphSettingsAdvanced.tipBottom":"Nur untere Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.tipInner":"Nur innere horizontale Linien festlegen","DE.Views.ParagraphSettingsAdvanced.tipLeft":"Nur linke Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.tipNone":"Keine Rahmenlinien festlegen","DE.Views.ParagraphSettingsAdvanced.tipOuter":"Nur äußere Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.tipRight":"Nur rechte Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.tipTop":"Nur obere Rahmenlinie festlegen","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"Automatisch","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"Keine Rahmen","DE.Views.PrintWithPreview.textMarginsLast":" Benutzerdefiniert als letzte","DE.Views.PrintWithPreview.textMarginsModerate":"Mittelmäßig","DE.Views.PrintWithPreview.textMarginsNarrow":"Schmal","DE.Views.PrintWithPreview.textMarginsNormal":"Normal","DE.Views.PrintWithPreview.textMarginsWide":"Breit","DE.Views.PrintWithPreview.txtAllPages":"Alle Seiten","DE.Views.PrintWithPreview.txtAuto":"Autom.","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Schwarzweißdruck","DE.Views.PrintWithPreview.txtBothSides":"Beidseitiger Druck","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"Seiten an der langen Seite umblättern","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"Seiten an der kurzen Seite umblättern","DE.Views.PrintWithPreview.txtBottom":"Unten","DE.Views.PrintWithPreview.txtColorPrinting":"Farbdruck","DE.Views.PrintWithPreview.txtCopies":"Kopien","DE.Views.PrintWithPreview.txtCurrentPage":"Aktuelle Seite","DE.Views.PrintWithPreview.txtCustom":"Benutzerdefiniert","DE.Views.PrintWithPreview.txtCustomPages":"Benutzerdefinierter Druck","DE.Views.PrintWithPreview.txtLandscape":"Querformat","DE.Views.PrintWithPreview.txtLeft":"Links","DE.Views.PrintWithPreview.txtMargins":"Ränder","DE.Views.PrintWithPreview.txtOf":"von {0}","DE.Views.PrintWithPreview.txtOneSide":"Einseitiger Druck","DE.Views.PrintWithPreview.txtOneSideDesc":"Nur auf einer Seite drucken","DE.Views.PrintWithPreview.txtPage":"Seite","DE.Views.PrintWithPreview.txtPageNumInvalid":"Ungültige Seitennummer","DE.Views.PrintWithPreview.txtPageOrientation":"Seitenausrichtung","DE.Views.PrintWithPreview.txtPages":"Seiten","DE.Views.PrintWithPreview.txtPageSize":"Seitengröße","DE.Views.PrintWithPreview.txtPortrait":"Hochformat","DE.Views.PrintWithPreview.txtPrint":"Drucken","DE.Views.PrintWithPreview.txtPrinter":"Drucker","DE.Views.PrintWithPreview.txtPrinterNotSelected":"Drucker nicht ausgewählt","DE.Views.PrintWithPreview.txtPrintersNotFound":"Drucker nicht gefunden","DE.Views.PrintWithPreview.txtPrintPdf":"Als PDF-Datei drucken","DE.Views.PrintWithPreview.txtPrintRange":"Druckbereich","DE.Views.PrintWithPreview.txtPrintSides":"Druckseiten","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Drucken über den Systemdialog","DE.Views.PrintWithPreview.txtRight":"Rechts","DE.Views.PrintWithPreview.txtSelection":"Auswahl","DE.Views.PrintWithPreview.txtTop":"Oben","DE.Views.PrintWithPreview.txtWaitingForPrinters":"Warten auf Drucker","DE.Views.ProtectDialog.textComments":"Kommentare","DE.Views.ProtectDialog.textForms":"Ausfüllen von Formularen","DE.Views.ProtectDialog.textReview":"Überarbeitungen","DE.Views.ProtectDialog.textView":"Keine Änderungen (Schreibgeschützt)","DE.Views.ProtectDialog.txtAllow":"Nur diese Art der Bearbeitung im Dokument zulassen","DE.Views.ProtectDialog.txtIncorrectPwd":"Bestätigungseingabe ist nicht identisch","DE.Views.ProtectDialog.txtLimit":"Das Passwort ist auf 15 Zeichen begrenzt","DE.Views.ProtectDialog.txtOptional":"optional","DE.Views.ProtectDialog.txtPassword":"Kennwort","DE.Views.ProtectDialog.txtProtect":"Schützen","DE.Views.ProtectDialog.txtRepeat":"Kennwort wiederholen","DE.Views.ProtectDialog.txtTitle":"Schützen","DE.Views.ProtectDialog.txtWarning":"Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie es an einem sicheren Ort auf.","DE.Views.RightMenu.ariaRightMenu":"Rechtes Menü","DE.Views.RightMenu.txtChartSettings":"Diagrammeinstellungen","DE.Views.RightMenu.txtFormSettings":"Einstellungen des Formulars","DE.Views.RightMenu.txtHeaderFooterSettings":"Kopf- und Fußzeileneinstellungen","DE.Views.RightMenu.txtImageSettings":"Bild-Einstellungen","DE.Views.RightMenu.txtMailMergeSettings":"Seriendruckeinstellungen ","DE.Views.RightMenu.txtParagraphSettings":"Absatzeinstellungen","DE.Views.RightMenu.txtShapeSettings":"Formeinstellungen","DE.Views.RightMenu.txtSignatureSettings":"Signatureinstellungen","DE.Views.RightMenu.txtTableSettings":"Tabellen-Einstellungen","DE.Views.RightMenu.txtTextArtSettings":"TextArt-Einstellungen","DE.Views.RoleDeleteDlg.textLabel":"Um diesen Empfänger zu löschen, müssen Sie die damit verbundenen Felder zu einem anderen Empfänger verschieben.","DE.Views.RoleDeleteDlg.textSelect":"Empfänger für Feldzusammenführung auswählen","DE.Views.RoleDeleteDlg.textTitle":"Empfänger löschen","DE.Views.RoleEditDlg.errNameExists":"Ein Empfänger mit diesem Namen ist bereits vorhanden.","DE.Views.RoleEditDlg.textEmptyError":"Der Name des Empfängers darf nicht leer sein.","DE.Views.RoleEditDlg.textName":"Name des Empfängers","DE.Views.RoleEditDlg.textNameEx":"Beispiel: Antragsteller, Kunde, Handelsvertreter","DE.Views.RoleEditDlg.textNoHighlight":"Ohne Hervorhebung","DE.Views.RoleEditDlg.txtTitleEdit":"Empfänger bearbeiten","DE.Views.RoleEditDlg.txtTitleNew":"Neue Empfänger erstellen","DE.Views.RolesManagerDlg.textAnyone":"Alle","DE.Views.RolesManagerDlg.textDelete":"Löschen","DE.Views.RolesManagerDlg.textDeleteLast":"Möchten Sie den Empfänger {0} wirklich löschen?
Nach dem Löschen wird der Standardempfänger erstellt.","DE.Views.RolesManagerDlg.textDescription":"Fügen Sie Empfänger hinzu und legen Sie die Reihenfolge fest, in der die Ausfüller das Dokument erhalten und unterschreiben","DE.Views.RolesManagerDlg.textDown":"Empfänger nach unten verschieben","DE.Views.RolesManagerDlg.textEdit":"Bearbeiten","DE.Views.RolesManagerDlg.textEmpty":"Es wurden noch keine Empfänger erstellt.
Erstellen Sie mindestens einen Empfänger und er wird in diesem Feld angezeigt.","DE.Views.RolesManagerDlg.textNew":"Neu erstellen","DE.Views.RolesManagerDlg.textUp":"Empfänger nach oben verschieben","DE.Views.RolesManagerDlg.txtTitle":"Empfängerrollen verwalten","DE.Views.RolesManagerDlg.warnCantDelete":"Sie können diesen Empfänger nicht löschen, da ihm Felder zugeordnet sind.","DE.Views.RolesManagerDlg.warnDelete":"Möchten Sie den Empfänger {0} wirklich löschen?","DE.Views.SaveFormDlg.saveButtonText":"Speichern","DE.Views.SaveFormDlg.textAnyone":"Alle","DE.Views.SaveFormDlg.textDescription":"Beim Speichern im PDF werden nur Empfänger mit Feldern zur Füllliste hinzugefügt","DE.Views.SaveFormDlg.textEmpty":"Den Feldern sind keine Empfänger zugeordnet.","DE.Views.SaveFormDlg.textFill":"Befüllungsliste","DE.Views.SaveFormDlg.txtTitle":"Als Formular speichern","DE.Views.ShapeSettings.strBackground":"Hintergrundfarbe","DE.Views.ShapeSettings.strChange":"Form ändern","DE.Views.ShapeSettings.strColor":"Farbe","DE.Views.ShapeSettings.strFill":"Füllung","DE.Views.ShapeSettings.strForeground":"Vordergrundfarbe","DE.Views.ShapeSettings.strPattern":"Muster","DE.Views.ShapeSettings.strShadow":"Schatten anzeigen","DE.Views.ShapeSettings.strSize":"Größe","DE.Views.ShapeSettings.strStroke":"Strich","DE.Views.ShapeSettings.strTransparency":"Undurchsichtigkeit","DE.Views.ShapeSettings.strType":"Typ","DE.Views.ShapeSettings.textAdjustShadow":"Schatten anpassen","DE.Views.ShapeSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.ShapeSettings.textAngle":"Winkel","DE.Views.ShapeSettings.textBorderSizeErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.","DE.Views.ShapeSettings.textColor":"Farbfüllung","DE.Views.ShapeSettings.textDirection":"Richtung","DE.Views.ShapeSettings.textEditPoints":"Punkte bearbeiten","DE.Views.ShapeSettings.textEditShape":"Form bearbeiten","DE.Views.ShapeSettings.textEmptyPattern":"Kein Muster","DE.Views.ShapeSettings.textEyedropper":"Pipette","DE.Views.ShapeSettings.textFlip":"Kippen","DE.Views.ShapeSettings.textFromFile":"Aus Datei","DE.Views.ShapeSettings.textFromStorage":"Aus dem Speicher","DE.Views.ShapeSettings.textFromUrl":"Aus URL","DE.Views.ShapeSettings.textGradient":"Farbverlauf","DE.Views.ShapeSettings.textGradientFill":"Füllung mit Farbverlauf","DE.Views.ShapeSettings.textHint270":"Um 90 ° gegen den Uhrzeigersinn drehen","DE.Views.ShapeSettings.textHint90":"90° im UZS drehen","DE.Views.ShapeSettings.textHintFlipH":"Horizontal kippen","DE.Views.ShapeSettings.textHintFlipV":"Vertikal kippen","DE.Views.ShapeSettings.textImageTexture":"Bild oder Textur","DE.Views.ShapeSettings.textLinear":"Linear","DE.Views.ShapeSettings.textMoreColors":"Mehr Farben","DE.Views.ShapeSettings.textNoFill":"Keine Füllung","DE.Views.ShapeSettings.textNoShadow":"Kein Schatten","DE.Views.ShapeSettings.textPatternFill":"Muster","DE.Views.ShapeSettings.textPosition":"Stellung","DE.Views.ShapeSettings.textRadial":"Radial","DE.Views.ShapeSettings.textRecentlyUsed":"Zuletzt verwendet","DE.Views.ShapeSettings.textRotate90":"90 Grad drehen","DE.Views.ShapeSettings.textRotation":"Rotation","DE.Views.ShapeSettings.textSelectImage":"Bild auswählen","DE.Views.ShapeSettings.textSelectTexture":"Auswählen","DE.Views.ShapeSettings.textShadow":"Schatten","DE.Views.ShapeSettings.textStretch":"Ausdehnung","DE.Views.ShapeSettings.textStyle":"Stil","DE.Views.ShapeSettings.textTexture":"Aus Textur","DE.Views.ShapeSettings.textTile":"Kachel","DE.Views.ShapeSettings.textWrap":"Textumbruch","DE.Views.ShapeSettings.tipAddGradientPoint":"Punkt des Farbverlaufs einfügen","DE.Views.ShapeSettings.tipRemoveGradientPoint":"Punkt des Farbverlaufs entfernen","DE.Views.ShapeSettings.txtBehind":"Hinter dem Text","DE.Views.ShapeSettings.txtBrownPaper":"Kraftpapier","DE.Views.ShapeSettings.txtCanvas":"Leinwand","DE.Views.ShapeSettings.txtCarton":"Pappe","DE.Views.ShapeSettings.txtDarkFabric":"Dunkler Stoff","DE.Views.ShapeSettings.txtGrain":"Korn","DE.Views.ShapeSettings.txtGranite":"Granit","DE.Views.ShapeSettings.txtGreyPaper":"Graues Papier","DE.Views.ShapeSettings.txtInFront":"Vorne","DE.Views.ShapeSettings.txtInline":"Inline","DE.Views.ShapeSettings.txtKnit":"Knit","DE.Views.ShapeSettings.txtLeather":"Leder","DE.Views.ShapeSettings.txtNoBorders":"Keine Linie","DE.Views.ShapeSettings.txtOffsetBottom":"Versatz: Unten","DE.Views.ShapeSettings.txtOffsetBottomLeft":"Versatz: Unten links","DE.Views.ShapeSettings.txtOffsetBottomRight":"Versatz: Unten rechts","DE.Views.ShapeSettings.txtOffsetCenter":"Versatz: Mitte","DE.Views.ShapeSettings.txtOffsetLeft":"Versatz: Links","DE.Views.ShapeSettings.txtOffsetRight":"Versatz: Rechts","DE.Views.ShapeSettings.txtOffsetTop":"Versatz: Oben","DE.Views.ShapeSettings.txtOffsetTopLeft":"Versatz: Oben links","DE.Views.ShapeSettings.txtOffsetTopRight":"Versatz: Oben rechts","DE.Views.ShapeSettings.txtPapyrus":"Papyrus","DE.Views.ShapeSettings.txtSquare":"Eckig","DE.Views.ShapeSettings.txtThrough":"Durchgehend","DE.Views.ShapeSettings.txtTight":"Passend","DE.Views.ShapeSettings.txtTopAndBottom":"Oben und unten","DE.Views.ShapeSettings.txtWood":"Holz","DE.Views.SignatureSettings.notcriticalErrorTitle":"Warnung","DE.Views.SignatureSettings.strDelete":"Signatur entfernen","DE.Views.SignatureSettings.strDetails":"Signaturdetails","DE.Views.SignatureSettings.strInvalid":"Ungültige Signaturen","DE.Views.SignatureSettings.strRequested":"Angeforderte Signaturen","DE.Views.SignatureSettings.strSetup":"Signatureinrichtung","DE.Views.SignatureSettings.strSign":"Signieren","DE.Views.SignatureSettings.strSignature":"Signatur","DE.Views.SignatureSettings.strSigner":"Signaturgeber","DE.Views.SignatureSettings.strValid":"Gültige Signaturen","DE.Views.SignatureSettings.txtContinueEditing":"Trotzdem bearbeiten","DE.Views.SignatureSettings.txtEditWarning":"Die Bearbeitung entfernt Signaturen aus diesem Dokument.
Möchten Sie trotzdem fortsetzen?","DE.Views.SignatureSettings.txtRemoveWarning":"Möchten Sie diese Signatur wirklich entfernen?
Dies kann nicht rückgängig gemacht werden.","DE.Views.SignatureSettings.txtRequestedSignatures":"Dieses Dokument muss signiert werden.","DE.Views.SignatureSettings.txtSigned":"Gültige Signaturen wurden dem Dokument hinzugefügt. Das Dokument ist vor der Bearbeitung geschützt.","DE.Views.SignatureSettings.txtSignedForm":"Dieses Dokument wurde signiert und kann nicht bearbeitet werden.","DE.Views.SignatureSettings.txtSignedInvalid":"Einige der digitalen Signaturen im Dokument sind ungültig oder konnten nicht verifiziert werden. Das Dokument ist vor der Bearbeitung geschützt.","DE.Views.Statusbar.goToPageText":"Auf die Seite übergehen","DE.Views.Statusbar.pageIndexText":"Seite {0} von {1}","DE.Views.Statusbar.tipFitPage":"Seite anpassen","DE.Views.Statusbar.tipFitWidth":"Breite anpassen","DE.Views.Statusbar.tipHandTool":"Hand-Werkzeug","DE.Views.Statusbar.tipMultiplePages":"Mehrere Seiten","DE.Views.Statusbar.tipSelectTool":"Auswählungstool","DE.Views.Statusbar.tipSetLang":"Textsprache wählen","DE.Views.Statusbar.tipZoomFactor":"Vergrößern","DE.Views.Statusbar.tipZoomIn":"Vergrößern","DE.Views.Statusbar.tipZoomOut":"Verkleinern","DE.Views.Statusbar.txtPageNumInvalid":"Ungültige Seitennummer","DE.Views.Statusbar.txtPages":"Seiten","DE.Views.Statusbar.txtParagraphs":"Absätze","DE.Views.Statusbar.txtSpaces":"Zeichen mit Leerzeichen","DE.Views.Statusbar.txtSymbols":"Zeichen","DE.Views.Statusbar.txtWordCount":"Wörter zählen","DE.Views.Statusbar.txtWords":"Wörter","DE.Views.StyleTitleDialog.textHeader":"Neuer Stil erstellen","DE.Views.StyleTitleDialog.textNextStyle":"Nächste Absatz-Formatvorlage","DE.Views.StyleTitleDialog.textTitle":"Titel","DE.Views.StyleTitleDialog.txtEmpty":"Dieses Feld ist erforderlich","DE.Views.StyleTitleDialog.txtNotEmpty":"Das Feld darf nicht leer sein","DE.Views.StyleTitleDialog.txtSameAs":"Gleich wie der neu erstellte Stil","DE.Views.TableFormulaDialog.textBookmark":"Lesezeichen einfügen","DE.Views.TableFormulaDialog.textFormat":"Zahlenformat","DE.Views.TableFormulaDialog.textFormula":"Formula","DE.Views.TableFormulaDialog.textInsertFunction":"Funktion einfügen","DE.Views.TableFormulaDialog.textTitle":"Formel-Einstellungen","DE.Views.TableOfContentsSettings.strAlign":"Seitenzahlen rechtsbündig","DE.Views.TableOfContentsSettings.strFullCaption":"Bezeichnung und Nummer einschließen","DE.Views.TableOfContentsSettings.strLinks":"Inhaltsverzeichnis als Links formatieren","DE.Views.TableOfContentsSettings.strLinksOF":"Abbildungsverzeichnis als Links formatieren","DE.Views.TableOfContentsSettings.strShowPages":"Seitenzahlen anzeigen","DE.Views.TableOfContentsSettings.textBuildTable":"Erstellen eines Inhaltsverzeichnisses von","DE.Views.TableOfContentsSettings.textBuildTableOF":"Erstelle Abbildungsverzeichnis aus","DE.Views.TableOfContentsSettings.textEquation":"Gleichung","DE.Views.TableOfContentsSettings.textFigure":"Abbildung","DE.Views.TableOfContentsSettings.textLeader":"Füllzeichen","DE.Views.TableOfContentsSettings.textLevel":"Ebene","DE.Views.TableOfContentsSettings.textLevels":"Ebenen","DE.Views.TableOfContentsSettings.textNone":"Kein","DE.Views.TableOfContentsSettings.textRadioCaption":"Beschriftung","DE.Views.TableOfContentsSettings.textRadioLevels":"Gliederungsebenen","DE.Views.TableOfContentsSettings.textRadioStyle":"Stil","DE.Views.TableOfContentsSettings.textRadioStyles":"Ausgewählte Formatvorlagen","DE.Views.TableOfContentsSettings.textStyle":"Formatvorlage","DE.Views.TableOfContentsSettings.textStyles":"Formatvorlagen","DE.Views.TableOfContentsSettings.textTable":"Tabelle","DE.Views.TableOfContentsSettings.textTitle":"Inhaltsverzeichnis","DE.Views.TableOfContentsSettings.textTitleTOF":"Abbildungsverzeichnis","DE.Views.TableOfContentsSettings.txtCentered":"Zentriert","DE.Views.TableOfContentsSettings.txtClassic":"Klassisch","DE.Views.TableOfContentsSettings.txtCurrent":"Aktuell","DE.Views.TableOfContentsSettings.txtDistinctive":"Elegant","DE.Views.TableOfContentsSettings.txtFormal":"Formell","DE.Views.TableOfContentsSettings.txtModern":"Modern","DE.Views.TableOfContentsSettings.txtOnline":"Online","DE.Views.TableOfContentsSettings.txtSimple":"Einfach","DE.Views.TableOfContentsSettings.txtStandard":"Standard","DE.Views.TableSettings.deleteColumnText":"Spalte löschen","DE.Views.TableSettings.deleteRowText":"Zeile löschen","DE.Views.TableSettings.deleteTableText":"Tabelle löschen","DE.Views.TableSettings.insertColumnLeftText":"Spalte links einfügen","DE.Views.TableSettings.insertColumnRightText":"Spalte rechts einfügen","DE.Views.TableSettings.insertRowAboveText":"Zeile oberhalb einfügen","DE.Views.TableSettings.insertRowBelowText":"Zeile unterhalb einfügen","DE.Views.TableSettings.mergeCellsText":"Zellen verbinden","DE.Views.TableSettings.selectCellText":"Zelle auswählen","DE.Views.TableSettings.selectColumnText":"Spalte auswählen","DE.Views.TableSettings.selectRowText":"Zeile auswählen","DE.Views.TableSettings.selectTableText":"Tabelle auswählen","DE.Views.TableSettings.splitCellsText":"Zelle teilen...","DE.Views.TableSettings.splitCellTitleText":"Zelle teilen","DE.Views.TableSettings.strRepeatRow":"Gleiche Kopfzeile auf jeder Seite wiederholen","DE.Views.TableSettings.textAddFormula":"Formel hinzufügen","DE.Views.TableSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","DE.Views.TableSettings.textAutofit":"Automatische Größenanpassung an den Inhalt","DE.Views.TableSettings.textBackColor":"Hintergrundfarbe","DE.Views.TableSettings.textBanded":"Gestreift","DE.Views.TableSettings.textBorderColor":"Farbe","DE.Views.TableSettings.textBorders":"Stil des Rahmens","DE.Views.TableSettings.textCellSize":"Zeilen- und Spaltengröße","DE.Views.TableSettings.textColumns":"Spalten","DE.Views.TableSettings.textConvert":"Tabelle in Text umwandeln","DE.Views.TableSettings.textDistributeCols":"Spalten verteilen","DE.Views.TableSettings.textDistributeRows":"Zeilen verteilen","DE.Views.TableSettings.textEdit":"Zeilen & Spalten","DE.Views.TableSettings.textEmptyTemplate":"Keine Vorlagen","DE.Views.TableSettings.textFirst":"Erste","DE.Views.TableSettings.textHeader":"Kopfzeile","DE.Views.TableSettings.textHeight":"Höhe","DE.Views.TableSettings.textLast":"Letzte","DE.Views.TableSettings.textRows":"Zeilen","DE.Views.TableSettings.textSelectBorders":"Wählen Sie Rahmenlinien, auf die ein anderer Stil angewandt wird","DE.Views.TableSettings.textTemplate":"Vorlage auswählen","DE.Views.TableSettings.textTotal":"Insgesamt","DE.Views.TableSettings.textWidth":"Breite","DE.Views.TableSettings.tipAll":"Äußere Rahmenlinie und alle inneren Linien festlegen","DE.Views.TableSettings.tipBottom":"Nur äußere untere Rahmenlinie festlegen","DE.Views.TableSettings.tipInner":"Nur innere Linien festlegen","DE.Views.TableSettings.tipInnerHor":"Nur innere horizontale Linien festlegen","DE.Views.TableSettings.tipInnerVert":"Nur vertikale innere Linien festlegen","DE.Views.TableSettings.tipLeft":"Nur äußere linke Rahmenlinie festlegen","DE.Views.TableSettings.tipNone":"Keine Rahmenlinien festlegen","DE.Views.TableSettings.tipOuter":"Nur äußere Rahmenlinie festlegen","DE.Views.TableSettings.tipRight":"Nur äußere rechte Rahmenlinie festlegen","DE.Views.TableSettings.tipTop":"Nur äußere obere Rahmenlinie festlegen","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"Umgrenzte und linierte Tabellen","DE.Views.TableSettings.txtGroupTable_Custom":"Einstellbar","DE.Views.TableSettings.txtGroupTable_Grid":"Gitternetztabellen","DE.Views.TableSettings.txtGroupTable_List":"Listentabellen","DE.Views.TableSettings.txtGroupTable_Plain":"Einfache Tabellen","DE.Views.TableSettings.txtNoBorders":"Keine Rahmen","DE.Views.TableSettings.txtTable_Accent":"Akzent","DE.Views.TableSettings.txtTable_Bordered":"Umgrenzt","DE.Views.TableSettings.txtTable_BorderedAndLined":"Umgrenzt und liniert","DE.Views.TableSettings.txtTable_Colorful":"Farbig","DE.Views.TableSettings.txtTable_Dark":"Dunkel","DE.Views.TableSettings.txtTable_GridTable":"Gitternetztabelle","DE.Views.TableSettings.txtTable_Light":"Hell","DE.Views.TableSettings.txtTable_Lined":"Mit Linien","DE.Views.TableSettings.txtTable_ListTable":"Listentabelle","DE.Views.TableSettings.txtTable_PlainTable":"Einfache Tabelle","DE.Views.TableSettings.txtTable_TableGrid":"Tabellenraster","DE.Views.TableSettingsAdvanced.textAlign":"Ausrichtung","DE.Views.TableSettingsAdvanced.textAlignment":"Ausrichtung","DE.Views.TableSettingsAdvanced.textAllowSpacing":"Abstand zwischen Zellen zulassen","DE.Views.TableSettingsAdvanced.textAlt":"Alternativer Text","DE.Views.TableSettingsAdvanced.textAltDescription":"Beschreibung","DE.Views.TableSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","DE.Views.TableSettingsAdvanced.textAltTitle":"Titel","DE.Views.TableSettingsAdvanced.textAnchorText":"Text","DE.Views.TableSettingsAdvanced.textAutofit":"Größe an Inhalt automatisch anpassen","DE.Views.TableSettingsAdvanced.textBackColor":"Zellenhintergrund","DE.Views.TableSettingsAdvanced.textBelow":"unten","DE.Views.TableSettingsAdvanced.textBorderColor":"Rahmenfarbe","DE.Views.TableSettingsAdvanced.textBorderDesc":"Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen und den gewählten Stil anzuwenden","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"Rahmen & Hintergrund","DE.Views.TableSettingsAdvanced.textBorderWidth":"Rahmenstärke","DE.Views.TableSettingsAdvanced.textBottom":"Unten","DE.Views.TableSettingsAdvanced.textCellOptions":"Zellenoptionen","DE.Views.TableSettingsAdvanced.textCellProps":"Zelle","DE.Views.TableSettingsAdvanced.textCellSize":"Zellengröße","DE.Views.TableSettingsAdvanced.textCenter":"Zenter","DE.Views.TableSettingsAdvanced.textCenterTooltip":"Zenter","DE.Views.TableSettingsAdvanced.textCheckMargins":"Standardränder nutzen","DE.Views.TableSettingsAdvanced.textDefaultMargins":"Standardränder","DE.Views.TableSettingsAdvanced.textDistance":"Abstand vom Text","DE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.TableSettingsAdvanced.textIndLeft":"Einzug von links","DE.Views.TableSettingsAdvanced.textLeft":"Links","DE.Views.TableSettingsAdvanced.textLeftTooltip":"Links","DE.Views.TableSettingsAdvanced.textMargin":"Rand","DE.Views.TableSettingsAdvanced.textMargins":"Zellenränder","DE.Views.TableSettingsAdvanced.textMeasure":"Maßeinheit in","DE.Views.TableSettingsAdvanced.textMove":"Objekt mit Text verschieben","DE.Views.TableSettingsAdvanced.textOnlyCells":"Nur für gewählte Zellen","DE.Views.TableSettingsAdvanced.textOptions":"Optionen","DE.Views.TableSettingsAdvanced.textOverlap":"Überlappung zulassen","DE.Views.TableSettingsAdvanced.textPage":"Seite","DE.Views.TableSettingsAdvanced.textPosition":"Position","DE.Views.TableSettingsAdvanced.textPrefWidth":"Vorzugsbreite","DE.Views.TableSettingsAdvanced.textPreview":"Vorschau","DE.Views.TableSettingsAdvanced.textRelative":"im Bezug auf ","DE.Views.TableSettingsAdvanced.textRight":"Rechts","DE.Views.TableSettingsAdvanced.textRightOf":"rechts von","DE.Views.TableSettingsAdvanced.textRightTooltip":"Rechts","DE.Views.TableSettingsAdvanced.textTable":"Tabelle","DE.Views.TableSettingsAdvanced.textTableBackColor":"Tabellenhintergrund","DE.Views.TableSettingsAdvanced.textTablePosition":"Tabellenposition","DE.Views.TableSettingsAdvanced.textTableSize":"Größe der Tabelle","DE.Views.TableSettingsAdvanced.textTitle":"Tabelle - Erweiterte Einstellungen","DE.Views.TableSettingsAdvanced.textTop":"Oben","DE.Views.TableSettingsAdvanced.textVertical":"Vertikal","DE.Views.TableSettingsAdvanced.textWidth":"Breite","DE.Views.TableSettingsAdvanced.textWidthSpaces":"Breite & Abstand","DE.Views.TableSettingsAdvanced.textWrap":"Textumbruch","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"Inline-Tabelle","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"Flow-Tabelle","DE.Views.TableSettingsAdvanced.textWrappingStyle":"Textumbruch","DE.Views.TableSettingsAdvanced.textWrapText":"Zeilenumbruch","DE.Views.TableSettingsAdvanced.tipAll":"Äußere Rahmenlinie und alle inneren Linien festlegen","DE.Views.TableSettingsAdvanced.tipCellAll":"Rahmenlinien nur für innere Zellen festlegen","DE.Views.TableSettingsAdvanced.tipCellInner":"Horizontale und vertikale Linien nur für innere Zellen festlegen ","DE.Views.TableSettingsAdvanced.tipCellOuter":"Äußere Rahmenlinien nur für innere Zellen festlegen","DE.Views.TableSettingsAdvanced.tipInner":"Nur innere Linien festlegen","DE.Views.TableSettingsAdvanced.tipNone":"Keine Rahmenlinien festlegen","DE.Views.TableSettingsAdvanced.tipOuter":"Nur äußere Rahmenlinie festlegen","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"Äußere Rahmenlinie und Rahmenlinien für alle inneren Zellen festlegen","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"Äußere Rahmenlinie und vertikale und horizontale Linien für innere Zellen festlegen","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"Äußere Rahmenlinie der Tabelle und äußere Rahmenlinien für innere Zellen festlegen","DE.Views.TableSettingsAdvanced.txtCm":"Zentimeter","DE.Views.TableSettingsAdvanced.txtInch":"Zoll","DE.Views.TableSettingsAdvanced.txtNoBorders":"Keine Rahmen","DE.Views.TableSettingsAdvanced.txtPercent":"Prozent","DE.Views.TableSettingsAdvanced.txtPt":"Punkt","DE.Views.TableToTextDialog.textEmpty":"Für das benutzerdefinierte Trennzeichen muss ein Zeichen eingegeben werden.","DE.Views.TableToTextDialog.textNested":"Geschachtelte Tabellen konvertieren","DE.Views.TableToTextDialog.textOther":"Sonstiges","DE.Views.TableToTextDialog.textPara":"Absatzmarken","DE.Views.TableToTextDialog.textSemicolon":"Semikolons","DE.Views.TableToTextDialog.textSeparator":"Text trennen durch:","DE.Views.TableToTextDialog.textTab":"Tabulatoren","DE.Views.TableToTextDialog.textTitle":"Tabelle in Text umwandeln","DE.Views.TextArtSettings.strColor":"Farbe","DE.Views.TextArtSettings.strFill":"Füllung","DE.Views.TextArtSettings.strSize":"Größe","DE.Views.TextArtSettings.strStroke":"Strich","DE.Views.TextArtSettings.strTransparency":"Undurchsichtigkeit","DE.Views.TextArtSettings.strType":"Typ","DE.Views.TextArtSettings.textAngle":"Winkel","DE.Views.TextArtSettings.textBorderSizeErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.","DE.Views.TextArtSettings.textColor":"Farbfüllung","DE.Views.TextArtSettings.textDirection":"Richtung","DE.Views.TextArtSettings.textGradient":"Farbverlauf","DE.Views.TextArtSettings.textGradientFill":"Füllung mit Farbverlauf","DE.Views.TextArtSettings.textLinear":"Linear","DE.Views.TextArtSettings.textNoFill":"Keine Füllung","DE.Views.TextArtSettings.textPosition":"Stellung","DE.Views.TextArtSettings.textRadial":"Radial","DE.Views.TextArtSettings.textSelectTexture":"Auswählen","DE.Views.TextArtSettings.textStyle":"Stil","DE.Views.TextArtSettings.textTemplate":"Vorlage","DE.Views.TextArtSettings.textTransform":"Transformieren","DE.Views.TextArtSettings.tipAddGradientPoint":"Punkt des Farbverlaufs einfügen","DE.Views.TextArtSettings.tipRemoveGradientPoint":"Punkt des Farbverlaufs entfernen","DE.Views.TextArtSettings.txtNoBorders":"Keine Linie","DE.Views.TextToTableDialog.textAutofit":"Einstellung für Autoanpassen","DE.Views.TextToTableDialog.textColumns":"Spalten","DE.Views.TextToTableDialog.textContents":"An Inhalt autoanpassen","DE.Views.TextToTableDialog.textEmpty":"Für das benutzerdefinierte Trennzeichen muss ein Zeichen eingegeben werden.","DE.Views.TextToTableDialog.textFixed":"Feste Spaltenbreite","DE.Views.TextToTableDialog.textOther":"Sonstiges","DE.Views.TextToTableDialog.textPara":"Absätze","DE.Views.TextToTableDialog.textRows":"Zeilen","DE.Views.TextToTableDialog.textSemicolon":"Semikolons","DE.Views.TextToTableDialog.textSeparator":"Text trennen bei:","DE.Views.TextToTableDialog.textTab":"Tabulatoren","DE.Views.TextToTableDialog.textTableSize":"Größe der Tabelle","DE.Views.TextToTableDialog.textTitle":"Text in Tabelle umwandeln","DE.Views.TextToTableDialog.textWindow":"An Fenster autoanpassen","DE.Views.TextToTableDialog.txtAutoText":"Automatisch","DE.Views.Toolbar.capBtnAddComment":"Kommentar Hinzufügen","DE.Views.Toolbar.capBtnBlankPage":"Leere Seite","DE.Views.Toolbar.capBtnColumns":"Spalten","DE.Views.Toolbar.capBtnComment":"Kommentar","DE.Views.Toolbar.capBtnHand":"Hand","DE.Views.Toolbar.capBtnHyphenation":"Trennen","DE.Views.Toolbar.capBtnInsChart":"Diagramm","DE.Views.Toolbar.capBtnInsControls":"Inhaltssteuerelemente","DE.Views.Toolbar.capBtnInsDropcap":"Initialbuchstaben ","DE.Views.Toolbar.capBtnInsEquation":"Gleichung","DE.Views.Toolbar.capBtnInsHeader":"Kopf- und Fußzeile","DE.Views.Toolbar.capBtnInsPagebreak":"Umbrüche","DE.Views.Toolbar.capBtnInsShape":"Form","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"Symbol","DE.Views.Toolbar.capBtnInsTable":"Tabelle","DE.Views.Toolbar.capBtnInsTextart":"Text Art","DE.Views.Toolbar.capBtnInsTextbox":"Textfeld","DE.Views.Toolbar.capBtnInsTextFromFile":"Text aus Datei","DE.Views.Toolbar.capBtnLineNumbers":"Zeilennummern","DE.Views.Toolbar.capBtnMargins":"Ränder","DE.Views.Toolbar.capBtnPageColor":"Seitenfarbe","DE.Views.Toolbar.capBtnPageOrient":"Orientierung","DE.Views.Toolbar.capBtnPageSize":"Größe","DE.Views.Toolbar.capBtnSelect":"Auswählen","DE.Views.Toolbar.capBtnWatermark":"Wasserzeichen","DE.Views.Toolbar.capColorScheme":"Farben","DE.Views.Toolbar.capImgAlign":"Ausrichten","DE.Views.Toolbar.capImgBackward":"Eine Ebene nach hinten","DE.Views.Toolbar.capImgForward":"Eine Ebene nach vorne","DE.Views.Toolbar.capImgGroup":"Gruppieren","DE.Views.Toolbar.capImgWrapping":"Umbruch","DE.Views.Toolbar.capShapesMerge":"Formen zusammenführen","DE.Views.Toolbar.mniCapitalizeWords":"Ersten Buchstaben im jedem Wort großschreiben","DE.Views.Toolbar.mniCustomTable":"Benutzerdefinierte Tabelle einfügen","DE.Views.Toolbar.mniDrawTable":"Tabelle zeichnen","DE.Views.Toolbar.mniEditControls":"Steuerelementeinstellungen","DE.Views.Toolbar.mniEditDropCap":"Initialeinstellungen","DE.Views.Toolbar.mniEditFooter":"Fußzeile bearbeiten","DE.Views.Toolbar.mniEditHeader":"Kopfzeile bearbeiten","DE.Views.Toolbar.mniEraseTable":"Tabelle löschen","DE.Views.Toolbar.mniFromFile":"Aus Datei","DE.Views.Toolbar.mniFromStorage":"Aus dem Speicher","DE.Views.Toolbar.mniFromUrl":"Aus einer URL","DE.Views.Toolbar.mniHiddenBorders":"Ausgeblendete Tabellenrahmen","DE.Views.Toolbar.mniHiddenChars":"Nichtdruckende Buchstaben","DE.Views.Toolbar.mniHighlightControls":"Einstellungen für Hervorhebungen","DE.Views.Toolbar.mniInsertSSE":"Tabelle einfügen","DE.Views.Toolbar.mniLowerCase":"Kleinbuchstaben","DE.Views.Toolbar.mniRemoveFooter":"Fußzeile entfernen","DE.Views.Toolbar.mniRemoveHeader":"Kopfzeile entfernen","DE.Views.Toolbar.mniSentenceCase":"Ersten Buchstaben im Satz großschreiben.","DE.Views.Toolbar.mniTextFromLocalFile":"Text aus der lokalen Datei","DE.Views.Toolbar.mniTextFromStorage":"Text aus der Ablagedatei","DE.Views.Toolbar.mniTextFromURL":"Text aus der URL-Datei","DE.Views.Toolbar.mniTextToTable":"Text in Tabelle umwandeln","DE.Views.Toolbar.mniToggleCase":"gROSS-/kLEINSCHREIBUNG","DE.Views.Toolbar.mniUpperCase":"GROSSBUCHSTABEN","DE.Views.Toolbar.strMenuNoFill":"Keine Füllung","DE.Views.Toolbar.textAddSpaceAfter":"Leerzeichen nach Absatz einfügen","DE.Views.Toolbar.textAddSpaceBefore":"Leerzeichen vor Absatz einfügen","DE.Views.Toolbar.textAllBorders":"Alle Rahmenlinien","DE.Views.Toolbar.textAlpha":"Griechischer Kleinbuchstabe Alpha","DE.Views.Toolbar.textAuto":"Automatisch","DE.Views.Toolbar.textAutoColor":"Automatisch","DE.Views.Toolbar.textBetta":"Griechischer Kleinbuchstabe Beta","DE.Views.Toolbar.textBlackHeart":"Schwarzes Herz","DE.Views.Toolbar.textBold":"Fett","DE.Views.Toolbar.textBordersColor":"Rahmenfarbe","DE.Views.Toolbar.textBordersStyle":"Rahmenart","DE.Views.Toolbar.textBottom":"Unten: ","DE.Views.Toolbar.textBottomBorders":"Untere Ränder","DE.Views.Toolbar.textBullet":"Aufzählungszeichen","DE.Views.Toolbar.textChangeLevel":"Listenebene ändern","DE.Views.Toolbar.textCheckboxControl":"Kontrollkästchen","DE.Views.Toolbar.textColumnsCustom":"Benutzerdefinierte Spalten","DE.Views.Toolbar.textColumnsLeft":"Links","DE.Views.Toolbar.textColumnsOne":"Ein","DE.Views.Toolbar.textColumnsRight":"Rechts","DE.Views.Toolbar.textColumnsThree":"Drei","DE.Views.Toolbar.textColumnsTwo":"Zwei","DE.Views.Toolbar.textComboboxControl":"Kombinationsfeld","DE.Views.Toolbar.textContinuous":"Ununterbrochen","DE.Views.Toolbar.textContPage":"Fortlaufende Seite","DE.Views.Toolbar.textCopyright":"Copyrightzeichen","DE.Views.Toolbar.textCustomHyphen":"Trenn Optionen","DE.Views.Toolbar.textCustomLineNumbers":"Zeilennummerierungsoptionen","DE.Views.Toolbar.textDateControl":"Datum","DE.Views.Toolbar.textDegree":"Gradzeichen","DE.Views.Toolbar.textDelta":"Griechischer Kleinbuchstabe Delta","DE.Views.Toolbar.textDirLtr":"Von links nach rechts","DE.Views.Toolbar.textDirRtl":"Von rechts nach links","DE.Views.Toolbar.textDivision":"Divisionszeichen","DE.Views.Toolbar.textDollar":"Dollarzeichen","DE.Views.Toolbar.textDropdownControl":"Dropdownliste","DE.Views.Toolbar.textEditMode":"PDF bearbeiten","DE.Views.Toolbar.textEditWatermark":"Benutzerdefiniertes Wasserzeichen","DE.Views.Toolbar.textEuro":"Eurozeichen","DE.Views.Toolbar.textEvenPage":"Gerade Seite","DE.Views.Toolbar.textGreaterEqual":"Größer als oder gleich wie ","DE.Views.Toolbar.textIndAfter":"Einzug nach","DE.Views.Toolbar.textIndBefore":"Einzug vor","DE.Views.Toolbar.textIndLeft":"Linker Einzug","DE.Views.Toolbar.textIndRight":"Rechter Einzug","DE.Views.Toolbar.textInfinity":"Unendlichkeit","DE.Views.Toolbar.textInMargin":"Im Rand","DE.Views.Toolbar.textInsColumnBreak":"Spaltenumbruch einfügen","DE.Views.Toolbar.textInsertPageCount":"Anzahl der Seiten einfügen","DE.Views.Toolbar.textInsertPageNumber":"Seitenzahl einfügen","DE.Views.Toolbar.textInsideBorders":"Rahmenlinien innen","DE.Views.Toolbar.textInsideHorBorders":"Innere horizontale Rahmenlinien","DE.Views.Toolbar.textInsideVertBorders":"Innere vertikale Rahmenlinien","DE.Views.Toolbar.textInsPageBreak":"Seitenumbruch einfügen","DE.Views.Toolbar.textInsSectionBreak":"Abschnittsumbruch einfügen","DE.Views.Toolbar.textInText":"Im Text","DE.Views.Toolbar.textItalic":"Kursiv","DE.Views.Toolbar.textLandscape":"Querformat","DE.Views.Toolbar.textLeft":"Links: ","DE.Views.Toolbar.textLeftBorders":"Rahmenlinien links","DE.Views.Toolbar.textLessEqual":"Kleiner als oder gleich","DE.Views.Toolbar.textLetterPi":"Griechischer Kleinbuchstabe Pi","DE.Views.Toolbar.textLineSpaceOptions":"Optionen zum Zeilenabstand","DE.Views.Toolbar.textListSettings":"Listeneinstellungen","DE.Views.Toolbar.textMarginsLast":" Benutzerdefiniert als letzte","DE.Views.Toolbar.textMarginsModerate":"Mittelmäßig","DE.Views.Toolbar.textMarginsNarrow":"Schmal","DE.Views.Toolbar.textMarginsNormal":"Normal","DE.Views.Toolbar.textMarginsWide":"Breit","DE.Views.Toolbar.textMoreSymbols":"Mehr Symbole","DE.Views.Toolbar.textNewColor":"Mehr Farben","DE.Views.Toolbar.textNextPage":"Nächste Seite","DE.Views.Toolbar.textNoBorders":"Keine Rahmen","DE.Views.Toolbar.textNoHighlight":"Ohne Hervorhebung","DE.Views.Toolbar.textNone":"Kein","DE.Views.Toolbar.textNotEqualTo":"Nicht gleich","DE.Views.Toolbar.textOddPage":"Ungerade Seite","DE.Views.Toolbar.textOneHalf":"Vulgäre Fraktion Eine Hälfte","DE.Views.Toolbar.textOneQuarter":"Vulgäre Fraktion Ganz","DE.Views.Toolbar.textOutBorders":"Rahmenlinien außen","DE.Views.Toolbar.textPageMarginsCustom":"Benutzerdefinierte Seitenränder ","DE.Views.Toolbar.textPageSizeCustom":"Benutzerdefinierte Seitengröße","DE.Views.Toolbar.textPictureControl":"Bild","DE.Views.Toolbar.textPlainControl":"Einfacher Text","DE.Views.Toolbar.textPlusMinus":"Plus-Minus-Zeichen","DE.Views.Toolbar.textPortrait":"Hochformat","DE.Views.Toolbar.textRegistered":"Registered Trademark-Symbol","DE.Views.Toolbar.textRemoveControl":"Inhaltssteuerelement entfernen","DE.Views.Toolbar.textRemSpaceAfter":"Leerzeichen nach Absatz entfernen","DE.Views.Toolbar.textRemSpaceBefore":"Leerzeichen vor Absatz entfernen","DE.Views.Toolbar.textRemWatermark":"Wasserzeichen entfernen","DE.Views.Toolbar.textRestartEachPage":"Jede Seite neu beginnen","DE.Views.Toolbar.textRestartEachSection":"Jeden Abschnitt neu beginnen","DE.Views.Toolbar.textRichControl":"Rich-Text","DE.Views.Toolbar.textRight":"Rechts: ","DE.Views.Toolbar.textRightBorders":"Rahmenlinien rechts","DE.Views.Toolbar.textSection":"Paragraphenzeichen","DE.Views.Toolbar.textShapesCombine":"Kombinieren","DE.Views.Toolbar.textShapesFragment":"Fragment","DE.Views.Toolbar.textShapesIntersect":"Schneiden","DE.Views.Toolbar.textShapesSubstract":"Subtrahieren","DE.Views.Toolbar.textShapesUnion":"Vereinigung","DE.Views.Toolbar.textSmile":"Weißes Lachendes Gesicht","DE.Views.Toolbar.textSpaceAfter":"Leerzeichen nach","DE.Views.Toolbar.textSpaceBefore":"Leerzeichen vor","DE.Views.Toolbar.textSquareRoot":"Quadratwurzel","DE.Views.Toolbar.textStrikeout":"Durchgestrichen","DE.Views.Toolbar.textStyleMenuDelete":"Stil löschen","DE.Views.Toolbar.textStyleMenuDeleteAll":"Alle benutzerdefinierte Stile löschen ","DE.Views.Toolbar.textStyleMenuNew":"Neue Formatvorlagen auf der Basis einer Auswahl","DE.Views.Toolbar.textStyleMenuRestore":"Auf Standard setzen","DE.Views.Toolbar.textStyleMenuRestoreAll":"Alle Standardformatvorlagen zurücksetzen","DE.Views.Toolbar.textStyleMenuUpdate":"Aus der Auswahl neu aktualisieren","DE.Views.Toolbar.textSubscript":"Tiefgestellt","DE.Views.Toolbar.textSuperscript":"Hochgestellt","DE.Views.Toolbar.textSuppressForCurrentParagraph":"Für aktuellen Absatz unterdrücken","DE.Views.Toolbar.textTabCollaboration":"Zusammenarbeit","DE.Views.Toolbar.textTabDraw":"Zeichnen","DE.Views.Toolbar.textTabFile":"Datei","DE.Views.Toolbar.textTabHeaderFooter":"Kopf- und Fußzeile","DE.Views.Toolbar.textTabHome":"Startseite","DE.Views.Toolbar.textTabInsert":"Einfügen","DE.Views.Toolbar.textTabLayout":"Layout","DE.Views.Toolbar.textTabLinks":"Verweise","DE.Views.Toolbar.textTabProtect":"Schutz","DE.Views.Toolbar.textTabReview":"Review","DE.Views.Toolbar.textTabView":"Ansicht","DE.Views.Toolbar.textTilde":"Tilde","DE.Views.Toolbar.textTitleError":"Fehler","DE.Views.Toolbar.textToCurrent":"An aktueller Position","DE.Views.Toolbar.textTop":"Oben: ","DE.Views.Toolbar.textTopBorders":"Rahmenlinien oben","DE.Views.Toolbar.textTradeMark":"Markenzeichen","DE.Views.Toolbar.textUnderline":"Unterstrichen","DE.Views.Toolbar.textYen":"Yen-Zeichen","DE.Views.Toolbar.tipAlignCenter":"Zentriert ausrichten","DE.Views.Toolbar.tipAlignJust":"Blocksatz","DE.Views.Toolbar.tipAlignLeft":"Linksbündig ausrichten","DE.Views.Toolbar.tipAlignRight":"Rechtsbündig ausrichten","DE.Views.Toolbar.tipBack":"Zurück","DE.Views.Toolbar.tipBlankPage":"Leere Seite einlegen","DE.Views.Toolbar.tipBorders":"Rahmen","DE.Views.Toolbar.tipChangeCase":"Groß-/Kleinschreibung ändern","DE.Views.Toolbar.tipChangeChart":"Diagrammtyp ändern","DE.Views.Toolbar.tipClearStyle":"Formatierung löschen","DE.Views.Toolbar.tipColorSchemas":"Farbschema ändern","DE.Views.Toolbar.tipColumns":"Spalten einfügen","DE.Views.Toolbar.tipControls":"Inhaltssteuerelemente einfügen","DE.Views.Toolbar.tipCopy":"Kopieren","DE.Views.Toolbar.tipCopyStyle":"Format übertragen","DE.Views.Toolbar.tipCut":"Ausschneiden","DE.Views.Toolbar.tipDecFont":"Schriftart verkleinern","DE.Views.Toolbar.tipDecPrLeft":"Einzug verkleinern","DE.Views.Toolbar.tipDownload":"Datei herunterladen","DE.Views.Toolbar.tipDropCap":"Initiale einfügen","DE.Views.Toolbar.tipEditMode":"Die aktuelle Datei bearbeiten.
Die Seite wird neu geladen.","DE.Views.Toolbar.tipFontColor":"Schriftfarbe","DE.Views.Toolbar.tipFontName":"Schriftart","DE.Views.Toolbar.tipFontSize":"Schriftgrad","DE.Views.Toolbar.tipHandTool":"Hand-Werkzeug","DE.Views.Toolbar.tipHighlightColor":"Texthervorhebungsfarbe","DE.Views.Toolbar.tipHyphenation":"Trennen ändern","DE.Views.Toolbar.tipImgAlign":"Objekte ausrichten","DE.Views.Toolbar.tipImgGroup":"Objekte gruppieren","DE.Views.Toolbar.tipImgWrapping":"Textumbruch","DE.Views.Toolbar.tipIncFont":"Schriftart vergrößern\n ","DE.Views.Toolbar.tipIncPrLeft":"Einzug vergrößern","DE.Views.Toolbar.tipInsertChart":"Diagramm einfügen","DE.Views.Toolbar.tipInsertEquation":"Formel einfügen","DE.Views.Toolbar.tipInsertHorizontalText":"Horizontales Textfeld einfügen","DE.Views.Toolbar.tipInsertNum":"Seitenzahl einfügen","DE.Views.Toolbar.tipInsertShape":"Form einfügen","DE.Views.Toolbar.tipInsertSmartArt":"SmartArt einfügen","DE.Views.Toolbar.tipInsertSymbol":"Symbol einfügen","DE.Views.Toolbar.tipInsertTable":"Tabelle einfügen","DE.Views.Toolbar.tipInsertText":"Textfeld einfügen","DE.Views.Toolbar.tipInsertTextArt":"TextArt einfügen","DE.Views.Toolbar.tipInsertVerticalText":"Vertikales Textfeld einfügen","DE.Views.Toolbar.tipLineNumbers":"Zeilennummern anzeigen","DE.Views.Toolbar.tipLineSpace":"Zeilenabstand","DE.Views.Toolbar.tipMailRecepients":"Serienbrief","DE.Views.Toolbar.tipMarkers":"Aufzählung","DE.Views.Toolbar.tipMarkersArrow":"Pfeilförmige Aufzählungszeichen","DE.Views.Toolbar.tipMarkersCheckmark":"Häkchenaufzählungszeichen","DE.Views.Toolbar.tipMarkersDash":"Aufzählungszeichen","DE.Views.Toolbar.tipMarkersFRhombus":"Ausgefüllte karoförmige Aufzählungszeichen","DE.Views.Toolbar.tipMarkersFRound":"Ausgefüllte runde Aufzählungszeichen","DE.Views.Toolbar.tipMarkersFSquare":"Ausgefüllte quadratische Aufzählungszeichen","DE.Views.Toolbar.tipMarkersHRound":"Leere runde Aufzählungszeichen","DE.Views.Toolbar.tipMarkersStar":"Sternförmige Aufzählungszeichen","DE.Views.Toolbar.tipMultiLevelArticl":"Mehrstufig nummerierte Artikel","DE.Views.Toolbar.tipMultiLevelChapter":"Mehrstufig nummerierte Kapitel","DE.Views.Toolbar.tipMultiLevelHeadings":"Mehrstufig nummerierte Überschriften","DE.Views.Toolbar.tipMultiLevelHeadVarious":"Unterschiedliche mehrstufig nummerierte Überschriften","DE.Views.Toolbar.tipMultiLevelNumbered":"Nummerierte Liste mit mehreren Ebenen","DE.Views.Toolbar.tipMultilevels":"Liste mit mehreren Ebenen","DE.Views.Toolbar.tipMultiLevelSymbols":"Aufzählungsliste mit mehreren Ebenen","DE.Views.Toolbar.tipMultiLevelVarious":"Kombinierte Liste mit mehreren Ebenen","DE.Views.Toolbar.tipNumbers":"Nummerierung","DE.Views.Toolbar.tipPageBreak":"Seiten- oder Abschnittsumbruch einfügen","DE.Views.Toolbar.tipPageColor":"Seitenfarbe ändern","DE.Views.Toolbar.tipPageMargins":"Seitenränder","DE.Views.Toolbar.tipPageOrient":"Seitenausrichtung","DE.Views.Toolbar.tipPageSize":"Seitenformat","DE.Views.Toolbar.tipParagraphStyle":"Absatzformat","DE.Views.Toolbar.tipPaste":"Einfügen","DE.Views.Toolbar.tipPrColor":"Absatzhintergrundfarbe","DE.Views.Toolbar.tipPrint":"Drucken","DE.Views.Toolbar.tipPrintQuick":"Schnelldruck","DE.Views.Toolbar.tipRedo":"Wiederholen","DE.Views.Toolbar.tipReplace":"Ersetzen","DE.Views.Toolbar.tipSave":"Speichern","DE.Views.Toolbar.tipSaveCoauth":"Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.","DE.Views.Toolbar.tipSelectAll":"Alles auswählen","DE.Views.Toolbar.tipSelectTool":"Auswählungstool","DE.Views.Toolbar.tipSendBackward":"Eine Ebene nach hinten","DE.Views.Toolbar.tipSendForward":"Eine Ebene nach vorne","DE.Views.Toolbar.tipShapesMerge":"Formen zusammenführen","DE.Views.Toolbar.tipShowHiddenChars":"Formatierungszeichen","DE.Views.Toolbar.tipSynchronize":"Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.","DE.Views.Toolbar.tipTextDir":"Textrichtung","DE.Views.Toolbar.tipTextFromFile":"Text aus Datei","DE.Views.Toolbar.tipUndo":"Rückgängig","DE.Views.Toolbar.tipWatermark":"Wasserzeichen bearbeiten","DE.Views.Toolbar.txtAutoText":"Auto","DE.Views.Toolbar.txtDistribHor":"Horizontal verteilen","DE.Views.Toolbar.txtDistribVert":"Vertikal verteilen","DE.Views.Toolbar.txtGroupBulletDoc":"Aufzählungszeichen des Dokuments","DE.Views.Toolbar.txtGroupBulletLib":"Bibliothek der Aufzählungszeichen","DE.Views.Toolbar.txtGroupMultiDoc":"Listen im aktuellen Dokument","DE.Views.Toolbar.txtGroupMultiLib":"Bibliothek der Listen","DE.Views.Toolbar.txtGroupNumDoc":"Formate der Dokumentennummerierung","DE.Views.Toolbar.txtGroupNumLib":"Nummerierungsbibliothek","DE.Views.Toolbar.txtGroupRecent":"Zuletzt verwendet","DE.Views.Toolbar.txtMarginAlign":"Am Rand ausrichten","DE.Views.Toolbar.txtObjectsAlign":"Ausgewählte Objekte ausrichten","DE.Views.Toolbar.txtPageAlign":"An Seite ausrichten","DE.Views.ViewTab.textAlwaysShowToolbar":"Symbolleiste immer anzeigen","DE.Views.ViewTab.textDarkDocument":"Dunkles Dokument","DE.Views.ViewTab.textFill":"Füllung","DE.Views.ViewTab.textFitToPage":"Seite anpassen","DE.Views.ViewTab.textFitToWidth":"An Breite anpassen","DE.Views.ViewTab.textInterfaceTheme":"Thema der Benutzeroberfläche","DE.Views.ViewTab.textLeftMenu":"Linkes Bedienfeld","DE.Views.ViewTab.textLine":"Linie","DE.Views.ViewTab.textMacros":"Makros","DE.Views.ViewTab.textMultiplePages":"Mehrere Seiten","DE.Views.ViewTab.textNavigation":"Navigation","DE.Views.ViewTab.textOutline":"Überschriften","DE.Views.ViewTab.textPauseMacro":"Aufnahme pausieren","DE.Views.ViewTab.textRecMacro":"Makro aufzeichnen","DE.Views.ViewTab.textResumeMacro":"Aufnahme fortsetzen","DE.Views.ViewTab.textRightMenu":"Rechtes Bedienungsfeld ","DE.Views.ViewTab.textRulers":"Lineale","DE.Views.ViewTab.textStatusBar":"Statusleiste","DE.Views.ViewTab.textStopMacro":"Aufnahme beenden","DE.Views.ViewTab.textTabStyle":"Stil der Registerkarte","DE.Views.ViewTab.textZoom":"Vergrößern","DE.Views.ViewTab.textZoom100":"Auf 100 % zoomen","DE.Views.ViewTab.tipDarkDocument":"Dunkles Dokument","DE.Views.ViewTab.tipFitToPage":"Seite anpassen","DE.Views.ViewTab.tipFitToWidth":"An Breite anpassen","DE.Views.ViewTab.tipHeadings":"Überschriften","DE.Views.ViewTab.tipInterfaceTheme":"Thema der Benutzeroberfläche","DE.Views.ViewTab.tipMacros":"Makros","DE.Views.ViewTab.tipMultiplePages":"Mehrere Seiten","DE.Views.ViewTab.tipPauseMacro":"Aufnahme pausieren","DE.Views.ViewTab.tipRecMacro":"Makro aufzeichnen","DE.Views.ViewTab.tipResumeMacro":"Aufnahme fortsetzen","DE.Views.ViewTab.tipStopMacro":"Aufnahme beenden","DE.Views.ViewTab.tipZoom100":"Auf 100 % zoomen","DE.Views.WatermarkSettingsDialog.textAuto":"Automatisch","DE.Views.WatermarkSettingsDialog.textBold":"Fett","DE.Views.WatermarkSettingsDialog.textColor":"Textfarbe","DE.Views.WatermarkSettingsDialog.textDiagonal":"Diagonal","DE.Views.WatermarkSettingsDialog.textFont":"Schriftart","DE.Views.WatermarkSettingsDialog.textFromFile":"Aus Datei","DE.Views.WatermarkSettingsDialog.textFromStorage":"Aus dem Speicher","DE.Views.WatermarkSettingsDialog.textFromUrl":"Aus URL","DE.Views.WatermarkSettingsDialog.textHor":"Horizontal","DE.Views.WatermarkSettingsDialog.textImageW":"Bild-Wasserzeichen","DE.Views.WatermarkSettingsDialog.textItalic":"Kursiv","DE.Views.WatermarkSettingsDialog.textLanguage":"Sprache","DE.Views.WatermarkSettingsDialog.textLayout":"Layout","DE.Views.WatermarkSettingsDialog.textNone":"Kein","DE.Views.WatermarkSettingsDialog.textScale":"Maßstab","DE.Views.WatermarkSettingsDialog.textSelect":"Bild auswählen","DE.Views.WatermarkSettingsDialog.textStrikeout":"Durchgestrichen","DE.Views.WatermarkSettingsDialog.textText":"Text","DE.Views.WatermarkSettingsDialog.textTextW":"Text-Wasserzeichen","DE.Views.WatermarkSettingsDialog.textTitle":"Wasserzeichen-Einstellungen","DE.Views.WatermarkSettingsDialog.textTransparency":"Halbtransparent","DE.Views.WatermarkSettingsDialog.textUnderline":"Unterstrichen","DE.Views.WatermarkSettingsDialog.tipFontName":"Schriftartname","DE.Views.WatermarkSettingsDialog.tipFontSize":"Schriftgrad"} \ No newline at end of file diff --git a/public/web-apps/apps/documenteditor/main/locale/es.json b/public/web-apps/apps/documenteditor/main/locale/es.json index 0dd9eedea..e73afd970 100644 --- a/public/web-apps/apps/documenteditor/main/locale/es.json +++ b/public/web-apps/apps/documenteditor/main/locale/es.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"Aviso","Common.Controllers.Desktop.hintBtnHome":"Mostrar ventana principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Crear a partir de una plantilla","Common.Controllers.ExternalDiagramEditor.textAnonymous":"Anónimo","Common.Controllers.ExternalDiagramEditor.textClose":"Cerrar","Common.Controllers.ExternalDiagramEditor.warningText":"El objeto está desactivado porque lo está editando otro usuario.","Common.Controllers.ExternalDiagramEditor.warningTitle":"Aviso","Common.Controllers.ExternalLinks.textAddExternalData":"Se ha añadido el enlace a un origen externo. Puede actualizar tales enlaces en la pestaña «Datos».","Common.Controllers.ExternalLinks.textDontUpdate":"No actualizar","Common.Controllers.ExternalLinks.textUpdate":"Actualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Se ha producido un error al actualizar","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Este libro de trabajo contiene enlaces a una o más fuentes externas que podrían ser inseguras.
Si confía en estos enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta presentación contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalMergeEditor.textAnonymous":"Anónimo","Common.Controllers.ExternalMergeEditor.textClose":"Cerrar","Common.Controllers.ExternalMergeEditor.warningText":"El objeto está desactivado porque lo está editando otro usuario.","Common.Controllers.ExternalMergeEditor.warningTitle":"Aviso","Common.Controllers.ExternalOleEditor.textAnonymous":"Anónimo","Common.Controllers.ExternalOleEditor.textClose":"Cerrar","Common.Controllers.ExternalOleEditor.warningText":"El objeto está desactivado porque lo está editando otro usuario.","Common.Controllers.ExternalOleEditor.warningTitle":"Advertencia","Common.Controllers.History.notcriticalErrorTitle":"Aviso","Common.Controllers.History.txtErrorLoadHistory":"Error al cargar el historial","Common.Controllers.Plugins.helpMoveMacros":"Para empezar a trabajar con macros, cambie a la pestaña Vista.","Common.Controllers.Plugins.helpMoveMacrosHeader":"El botón Macros desplazado","Common.Controllers.Plugins.helpUseMacros":"Encuentre el botón Macros aquí","Common.Controllers.Plugins.helpUseMacrosHeader":"Acceso actualizado a las macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Los plugins se han instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} se ha instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textRunInstalledPlugins":"Ejecutar plugins instalados","Common.Controllers.Plugins.textRunPlugin":"Ejecutar plugin","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"A fin de comparar los documentos, se considerará que todos los cambios registrados en ellos han sido aceptados. ¿Quiere continuar?","Common.Controllers.ReviewChanges.textAtLeast":"al menos","Common.Controllers.ReviewChanges.textAuto":"auto","Common.Controllers.ReviewChanges.textBaseline":"Línea de base","Common.Controllers.ReviewChanges.textBold":"Negrita","Common.Controllers.ReviewChanges.textBreakBefore":"Salto de página antes","Common.Controllers.ReviewChanges.textCaps":"Mayúsculas","Common.Controllers.ReviewChanges.textCenter":"Alinear al centro","Common.Controllers.ReviewChanges.textChar":"Nivel del carácter","Common.Controllers.ReviewChanges.textChart":"Gráfico","Common.Controllers.ReviewChanges.textColor":"Color de la fuente","Common.Controllers.ReviewChanges.textContextual":"No añadir espacio entre párrafos del mismo estilo","Common.Controllers.ReviewChanges.textDeleted":"Eliminado:","Common.Controllers.ReviewChanges.textDStrikeout":"Tachado doble","Common.Controllers.ReviewChanges.textEquation":"Ecuación","Common.Controllers.ReviewChanges.textExact":"Exacto","Common.Controllers.ReviewChanges.textFirstLine":"Primera línea","Common.Controllers.ReviewChanges.textFontSize":"Tamaño de la fuente","Common.Controllers.ReviewChanges.textFormatted":"Formateado","Common.Controllers.ReviewChanges.textHighlight":"Color de resaltado","Common.Controllers.ReviewChanges.textImage":"Imagen","Common.Controllers.ReviewChanges.textIndentLeft":"Sangría izquierda","Common.Controllers.ReviewChanges.textIndentRight":"Sangría derecha","Common.Controllers.ReviewChanges.textInserted":"Insertado:","Common.Controllers.ReviewChanges.textItalic":"Cursiva","Common.Controllers.ReviewChanges.textJustify":"Justificada","Common.Controllers.ReviewChanges.textKeepLines":"Mantener líneas juntas","Common.Controllers.ReviewChanges.textKeepNext":"Conservar con el siguiente","Common.Controllers.ReviewChanges.textLeft":"Alinear a la izquierda","Common.Controllers.ReviewChanges.textLineSpacing":"Interlineado:","Common.Controllers.ReviewChanges.textMultiple":"Múltiple","Common.Controllers.ReviewChanges.textNoBreakBefore":"Sin salto de página antes","Common.Controllers.ReviewChanges.textNoContextual":"Añadir espacio entre párrafos del mismo estilo","Common.Controllers.ReviewChanges.textNoKeepLines":"No mantener líneas juntas","Common.Controllers.ReviewChanges.textNoKeepNext":"No mantener con el siguiente","Common.Controllers.ReviewChanges.textNot":"No","Common.Controllers.ReviewChanges.textNoWidow":"No controlar líneas viudas","Common.Controllers.ReviewChanges.textNum":"Cambiar numeración","Common.Controllers.ReviewChanges.textOff":"{0} ya no utiliza el seguimiento de cambios.","Common.Controllers.ReviewChanges.textOffGlobal":"{0} ha deshabilitado el seguimiento de cambios para todos.","Common.Controllers.ReviewChanges.textOn":"{0} está usando el seguimiento de cambios.","Common.Controllers.ReviewChanges.textOnGlobal":"{0} ha habilitado el seguimiento de cambios para todos.","Common.Controllers.ReviewChanges.textParaDeleted":"Párrafo eliminado","Common.Controllers.ReviewChanges.textParaFormatted":"Párrafo formateado","Common.Controllers.ReviewChanges.textParaInserted":"Párrafo insertado","Common.Controllers.ReviewChanges.textParaMoveFromDown":"Bajado:","Common.Controllers.ReviewChanges.textParaMoveFromUp":"Subido:","Common.Controllers.ReviewChanges.textParaMoveTo":"Movido:","Common.Controllers.ReviewChanges.textPosition":"Posición","Common.Controllers.ReviewChanges.textRight":"Alinear a la derecha","Common.Controllers.ReviewChanges.textShape":"Forma","Common.Controllers.ReviewChanges.textShd":"Color del fondo","Common.Controllers.ReviewChanges.textShow":"Mostrar cambios en:","Common.Controllers.ReviewChanges.textSmallCaps":"Versalitas","Common.Controllers.ReviewChanges.textSpacing":"Espaciado","Common.Controllers.ReviewChanges.textSpacingAfter":"Espaciado después","Common.Controllers.ReviewChanges.textSpacingBefore":"Espaciado antes","Common.Controllers.ReviewChanges.textStrikeout":"Tachado","Common.Controllers.ReviewChanges.textSubScript":"Subíndice","Common.Controllers.ReviewChanges.textSuperScript":"Superíndice","Common.Controllers.ReviewChanges.textTableChanged":"Se ha cambiado la configuración de la tabla","Common.Controllers.ReviewChanges.textTableRowsAdd":"Se han añadido filas a la tabla","Common.Controllers.ReviewChanges.textTableRowsDel":"Se han eliminado filas de la tabla","Common.Controllers.ReviewChanges.textTabs":"Cambiar tabuladores","Common.Controllers.ReviewChanges.textTitleComparison":"Ajustes de comparación","Common.Controllers.ReviewChanges.textUnderline":"Subrayado","Common.Controllers.ReviewChanges.textUrl":"Pegue la URL del documento","Common.Controllers.ReviewChanges.textWidow":"Control de líneas viudas","Common.Controllers.ReviewChanges.textWord":"Nivel de palabra","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Añadir una nueva fila al final de la tabla.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Aplicar el estilo del encabezado 1 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Aplicar el estilo del encabezado 2 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Aplicar el estilo del encabezado 3 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Crear una lista con viñetas sin ordenar a partir del fragmento de texto seleccionado, o comenzar una nueva.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia la izquierda.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia la derecha.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionBold":"Hacer que la fuente del fragmento de texto seleccionado sea más oscura y gruesa de lo normal.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Cambiar un párrafo entre centrado y alineado a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Seleccionar la siguiente opción del cuadro combinado en el formulario.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Seleccionar la opción anterior del cuadro combinado en el formulario.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Cerrar la ventana del documento actual.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Cerrar un menú o una ventana modal. Restablecer ventanas emergentes y globos con comentarios y revisar cambios. Restablecer el modo de dibujo y borrado de la tabla. Restablecer la función de arrastrar y soltar texto. Restablecer el modo de selección de marcadores. Restablecer el modo de copiar formato. Deseleccionar formas. Restablecer el modo de añadir formas. Salir del encabezado/pie de página. Salir del rellenado de formularios.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Enviar el fragmento de texto seleccionado al portapapeles del ordenador. El texto copiado se puede insertar posteriormente en otro lugar del mismo documento, en otro documento o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Copiar el formato del fragmento seleccionado del texto que se está editando actualmente. El formato copiado se puede aplicar posteriormente a otro fragmento de texto del mismo documento.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Insertar un símbolo de copyright dentro del documento actual y a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionCut":"Eliminar el fragmento de texto seleccionado y enviarlo a la memoria del portapapeles del ordenador. El texto copiado se puede insertar posteriormente en otro lugar del mismo documento, en otro documento o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Reducir el tamaño de la fuente del fragmento de texto seleccionado en 1 punto.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Eliminar un carácter a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Eliminar una palabra/selección/objeto gráfico a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Eliminar un carácter a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Eliminar una palabra/selección/objeto gráfico a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Cuando se selecciona el título del gráfico, si el título está vacío, mover el cursor al principio de la línea; de lo contrario, seleccionar el texto.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repetir la última acción deshecha.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Seleccionar todo el texto del documento con tablas e imágenes.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Cuando se seleccione la forma, si no contiene contenido, crear contenido y mover el cursor al principio de la línea. Si el contenido está vacío, mover el cursor hacia él; de lo contrario, seleccionar todo el contenido.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Revertir la última acción realizada.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Insertar un guión largo dentro del documento actual y a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insertar un guión corto dentro del documento actual y a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Terminar el párrafo actual y comenzar uno nuevo.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Iniciar un nuevo párrafo dentro de una celda.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Añadir un nuevo marcador de posición al argumento de la ecuación.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Cambiar el nivel de alineación del operador a la izquierda (para la segunda línea de la ecuación con un salto forzado).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Cambiar el nivel de alineación del operador a la derecha (para la segunda línea de la ecuación con un salto forzado).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Insertar el símbolo del euro en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Insertar el signo de elipsis en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar el tamaño de la fuente del fragmento de texto seleccionado en 1 punto.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Sangrar un párrafo desde la izquierda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Añadir un salto de columna.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Insertar una nota al final.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"Insertar una ecuación en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Insertar una nota al pie.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insertar un hiperenlace que se puede utilizar para acceder a una dirección web.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Añadir un salto de línea sin comenzar un nuevo párrafo.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Añade un salto de línea en el formulario multilínea.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"Insertar un salto de página en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Añadir el número de página actual en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Añadir el carácter de tabulación a un párrafo (si el cursor no está al principio del párrafo).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Insertar un salto de tabla dentro de la tabla.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Hacer que la fuente del fragmento de texto seleccionado aparezca en cursiva y ligeramente inclinada.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Cambiar un párrafo entre justificado y alineado a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinear un párrafo a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia abajo un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la izquierda un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la derecha un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia arriba un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Aumentar la sangría de los párrafos seleccionados.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Disminuir la sangría de los párrafos seleccionados.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Mover el foco al siguiente objeto después del seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Mover el foco al objeto anterior al seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Mover el cursor una línea hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Colocar el cursor al final del documento que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Colocar el cursor al final de la línea que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Mover el cursor una palabra a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Mover el cursor un carácter a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Desplazarse al encabezado inferior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Desplazarse al encabezado/pie de página inferior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Ir a la siguiente celda en una fila de la tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Pasar al siguiente formulario.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Ir a la página siguiente del documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Ir a la siguiente fila de una tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Ir a la celda anterior en una fila de la tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Pasar al formulario anterior.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Ir a la página anterior del documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Ir a la fila anterior en una tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Mover el cursor un carácter a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Colocar el cursor al principio del documento que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Colocar el cursor al principio de la línea que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Colocar el cursor al principio de la página siguiente a la que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Colocar el cursor al principio de la página anterior a la que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Mover el cursor al principio de una palabra o una palabra a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Mover el cursor una línea hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Desplazarse al encabezado superior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Desplazarse al encabezado/pie de página superior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Cambiar a la siguiente pestaña de archivo en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Navegar entre los controles para dar el foco al siguiente control en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Crear un guión entre caracteres, que no se puede utilizar para comenzar una nueva línea.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Crear un espacio entre caracteres que no se puede utilizar para comenzar una nueva línea.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abrir el panel Chat en los editores en línea y enviar un mensaje.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abrir un campo de entrada de datos donde se puede añadir el texto del comentario.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abrir el panel Comentarios para añadir su propio comentario o responder a los comentarios de otros usuarios.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abrir el menú contextual del elemento seleccionado.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abrir el cuadro de diálogo estándar que permite seleccionar un archivo existente. Si selecciona el archivo en este cuadro de diálogo y hace clic en Abrir, el archivo se abrirá en una nueva pestaña o ventana de los editores de escritorio.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abrir el panel Archivo para guardar, descargar, imprimir el documento actual, ver su información, crear un nuevo documento o abrir uno existente, acceder al Centro de ayuda del editor de documentos o a la configuración avanzada.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abrir el menú (panel) Buscar y reemplazar con el campo de reemplazo para reemplazar una o más apariciones de los caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abrir el diálogo Buscar para iniciar la búsqueda de un carácter/palabra/frase en el documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abrir el menú Ayuda del editor de documentos.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insertar el fragmento de texto copiado previamente desde el portapapeles del ordenador en la posición actual del cursor. El texto puede haberse copiado previamente desde el mismo documento, desde otro documento o desde algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Aplicar el formato copiado anteriormente al texto del documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Insertar el fragmento de texto copiado previamente desde el portapapeles del ordenador en la posición actual del cursor sin conservar su formato original. El texto puede haberse copiado previamente desde el mismo documento, desde otro documento o desde algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Cambiar a la pestaña del archivo anterior en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Navegar entre los controles para dar el foco al control anterior en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprimir el documento con una de las impresoras disponibles o guardarlo como archivo.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Insertar el símbolo de marca registrada en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Reemplazar el código Unicode seleccionado con un símbolo.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Borrar el formato del fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Cambiar un párrafo entre alineación a la derecha y alineación a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionSave":"Guardar todos los cambios realizados en el documento editado actualmente con el editor de documentos. El archivo activo se guardará con su nombre, ubicación y formato de archivo actuales.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Abrir el panel Descargar como... para guardar el documento actualmente editado en el disco duro de su ordenador en uno de los formatos compatibles.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Desplazar el documento aproximadamente una página visible hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Desplazar el documento aproximadamente una página visible hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Seleccionar un carácter a la izquierda de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Seleccionar un fragmento de texto desde el cursor hasta el principio de una palabra.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mover el cursor una línea hacia abajo, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mover el cursor una línea hacia arriba, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Seleccionar la parte de la página desde la posición del cursor hasta la parte inferior de la pantalla.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Seleccionar la parte de la página desde la posición del cursor hasta la parte superior de la pantalla.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Seleccionar un carácter a la derecha de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Seleccionar un fragmento de texto desde el cursor hasta el final de una palabra.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Seleccionar un fragmento de texto desde el cursor hasta el comienzo de la página siguiente.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la página anterior.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Seleccionar un fragmento de texto desde el cursor hasta el final del documento.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Seleccionar un fragmento de texto desde el cursor hasta el final de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Seleccionar un fragmento de texto desde el cursor hasta el principio del documento.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Mostrar u ocultar la visualización de caracteres no imprimibles.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Insertar el signo de guión suave en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Mantener el formato original del texto copiado.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Pegar el texto sin su formato original.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Pegar la tabla copiada como una tabla anidada en la celda seleccionada de la tabla existente.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Reemplazar el contenido de la tabla existente con los datos copiados.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Activar/desactivar la transmisión de acciones realizadas en la aplicación para lectores de pantalla.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Aumentar el nivel de lista/sangría (con el cursor al principio de un párrafo).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Disminuir el nivel de lista/sangría (con el cursor al principio de un párrafo).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Hacer que se tache el fragmento de texto seleccionado con una línea que atraviese las letras.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte inferior de la línea de texto, por ejemplo, como en las fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte superior de la línea de texto, por ejemplo, como en las fracciones.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Insertar el símbolo de marca registrada en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Hacer que el fragmento de texto seleccionado aparezca subrayado con una línea debajo de las letras.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Eliminar la sangría de un párrafo desde la izquierda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Actualizar campos (por ejemplo, tabla de contenido).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visitar un hiperenlace (con el cursor sobre el hiperenlace).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Restablecer el parámetro «Ampliación» del documento actual al valor predeterminado del 100 %.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Ampliar el documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Alejar el documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área apilada","Common.define.chartData.textAreaStackedPer":"Área apilada 100% ","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Columna agrupada","Common.define.chartData.textBarNormal3d":"Columna 3D agrupada","Common.define.chartData.textBarNormal3dPerspective":"Columna 3D","Common.define.chartData.textBarStacked":"Columna apilada","Common.define.chartData.textBarStacked3d":"Columna 3D apilada","Common.define.chartData.textBarStackedPer":"Columna apilada 100%","Common.define.chartData.textBarStackedPer3d":"Columna 3D apilada 100%","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Gráfico de columnas","Common.define.chartData.textCombo":"Combinado","Common.define.chartData.textComboAreaBar":"Área apilada - Columna agrupada","Common.define.chartData.textComboBarLine":"Columna agrupada - Línea","Common.define.chartData.textComboBarLineSecondary":"Columna agrupada - Línea en eje secundario","Common.define.chartData.textComboCustom":"Combinación personalizada","Common.define.chartData.textDoughnut":"Anillo","Common.define.chartData.textHBarNormal":"Barra agrupada","Common.define.chartData.textHBarNormal3d":"Barra 3D agrupada","Common.define.chartData.textHBarStacked":"Barra apilada","Common.define.chartData.textHBarStacked3d":"Barra 3D apilada","Common.define.chartData.textHBarStackedPer":"Barra apilada 100%","Common.define.chartData.textHBarStackedPer3d":"Barra 3D apilada 100%","Common.define.chartData.textLine":"Línea","Common.define.chartData.textLine3d":"Línea 3D","Common.define.chartData.textLineMarker":"Línea con marcadores","Common.define.chartData.textLineStacked":"Línea apilada","Common.define.chartData.textLineStackedMarker":"Línea apilada con marcadores","Common.define.chartData.textLineStackedPer":"Línea apilada al 100%","Common.define.chartData.textLineStackedPerMarker":"Línea apilada al 100% con marcadores ","Common.define.chartData.textPie":"Gráfico circular","Common.define.chartData.textPie3d":"Circular 3D","Common.define.chartData.textPoint":"XY (Dispersión)","Common.define.chartData.textRadar":"Radial","Common.define.chartData.textRadarFilled":"Radial relleno","Common.define.chartData.textRadarMarker":"Radial con marcadores","Common.define.chartData.textScatter":"Dispersión","Common.define.chartData.textScatterLine":"Dispersión con líneas rectas","Common.define.chartData.textScatterLineMarker":"Dispersión con líneas rectas y marcadores","Common.define.chartData.textScatterSmooth":"Dispersión con líneas suavizadas","Common.define.chartData.textScatterSmoothMarker":"Dispersión con líneas suavizadas y marcadores","Common.define.chartData.textStock":"De cotizaciones","Common.define.chartData.textSurface":"Superficie","Common.define.smartArt.textAccentedPicture":"Imagen destacada","Common.define.smartArt.textAccentProcess":"Proceso destacado","Common.define.smartArt.textAlternatingFlow":"Flujo alternativo","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternados","Common.define.smartArt.textAlternatingPictureBlocks":"Bloques de imágenes alternativos","Common.define.smartArt.textAlternatingPictureCircles":"Círculos con imágenes alternativos","Common.define.smartArt.textArchitectureLayout":"Diseño de arquitectura","Common.define.smartArt.textArrowRibbon":"Cinta de flechas","Common.define.smartArt.textAscendingPictureAccentProcess":"Proceso de imágenes destacadas ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Proceso curvo básico","Common.define.smartArt.textBasicBlockList":"Lista de bloques básica","Common.define.smartArt.textBasicChevronProcess":"Proceso cheurón básico","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Circular básico","Common.define.smartArt.textBasicProcess":"Proceso básico","Common.define.smartArt.textBasicPyramid":"Pirámide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Objetivo básico","Common.define.smartArt.textBasicTimeline":"Escala de tiempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista destacada con círculos abajo","Common.define.smartArt.textBendingPictureBlocks":"Bloques de imágenes con cuadro","Common.define.smartArt.textBendingPictureCaption":"Imagen curvada con títulos","Common.define.smartArt.textBendingPictureCaptionList":"Lista de imágenes curvadas con títulos","Common.define.smartArt.textBendingPictureSemiTranparentText":"Imágenes curvadas con texto semitransparente","Common.define.smartArt.textBlockCycle":"Ciclo de bloques","Common.define.smartArt.textBubblePictureList":"Lista de imágenes con burbujas","Common.define.smartArt.textCaptionedPictures":"Imágenes con títulos","Common.define.smartArt.textChevronAccentProcess":"Proceso cheurón destacado","Common.define.smartArt.textChevronList":"Lista de cheurones","Common.define.smartArt.textCircleAccentTimeline":"Línea de tiempo con círculos","Common.define.smartArt.textCircleArrowProcess":"Proceso de círculos con flecha","Common.define.smartArt.textCirclePictureHierarchy":"Jerarquía con imágenes en círculos","Common.define.smartArt.textCircleProcess":"Proceso de círculos","Common.define.smartArt.textCircleRelationship":"Relación de círculo","Common.define.smartArt.textCircularBendingProcess":"Proceso curvo circular","Common.define.smartArt.textCircularPictureCallout":"Llamada de imagen circular","Common.define.smartArt.textClosedChevronProcess":"Proceso de cheurón cerrado","Common.define.smartArt.textContinuousArrowProcess":"Proceso de flechas continuo","Common.define.smartArt.textContinuousBlockProcess":"Proceso de bloque continuo","Common.define.smartArt.textContinuousCycle":"Ciclo continuo","Common.define.smartArt.textContinuousPictureList":"Lista de imágenes continua","Common.define.smartArt.textConvergingArrows":"Flechas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Flechas de contrapeso","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista de bloques descendente","Common.define.smartArt.textDescendingProcess":"Proceso descendente","Common.define.smartArt.textDetailedProcess":"Proceso detallado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Ecuación","Common.define.smartArt.textFramedTextPicture":"Imagen de texto enmarcado","Common.define.smartArt.textFunnel":"Embudo","Common.define.smartArt.textGear":"Engranaje","Common.define.smartArt.textGridMatrix":"Matriz de cuadrícula","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organigrama con semicírculos","Common.define.smartArt.textHexagonCluster":"Grupo de hexágonos","Common.define.smartArt.textHexagonRadial":"Radial con hexágonos","Common.define.smartArt.textHierarchy":"Jerarquía","Common.define.smartArt.textHierarchyList":"Lista de jerarquías","Common.define.smartArt.textHorizontalBulletList":"Lista de viñetas horizontal","Common.define.smartArt.textHorizontalHierarchy":"Jerarquía horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Jerarquía etiquetada horizontal","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Jerarquía horizontal de varios niveles","Common.define.smartArt.textHorizontalOrganizationChart":"Organigrama horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista horizontal de imágenes","Common.define.smartArt.textIncreasingArrowProcess":"Proceso de flechas crecientes","Common.define.smartArt.textIncreasingCircleProcess":"Proceso de círculos crecientes","Common.define.smartArt.textInterconnectedBlockProcess":"Proceso de bloques interconectados","Common.define.smartArt.textInterconnectedRings":"Anillos interconectados","Common.define.smartArt.textInvertedPyramid":"Pirámide invertida","Common.define.smartArt.textLabeledHierarchy":"Jerarquía etiquetada","Common.define.smartArt.textLinearVenn":"Venn lineal","Common.define.smartArt.textLinedList":"Lista alineada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidireccional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigrama con nombres y cargos","Common.define.smartArt.textNestedTarget":"Objetivo anidado","Common.define.smartArt.textNondirectionalCycle":"Ciclo sin dirección","Common.define.smartArt.textOpposingArrows":"Flechas opuestas","Common.define.smartArt.textOpposingIdeas":"Ideas opuestas","Common.define.smartArt.textOrganizationChart":"Organigrama","Common.define.smartArt.textOther":"Otro","Common.define.smartArt.textPhasedProcess":"Proceso en fases","Common.define.smartArt.textPicture":"Imagen","Common.define.smartArt.textPictureAccentBlocks":"Imágenes destacadas en bloques","Common.define.smartArt.textPictureAccentList":"Lista de imágenes destacadas","Common.define.smartArt.textPictureAccentProcess":"Proceso de imágenes destacadas","Common.define.smartArt.textPictureCaptionList":"Lista de títulos de imágenes","Common.define.smartArt.textPictureFrame":"Marco de fotos","Common.define.smartArt.textPictureGrid":"Imágenes en cuadrícula","Common.define.smartArt.textPictureLineup":"Imágenes en paralelo","Common.define.smartArt.textPictureOrganizationChart":"Organigrama con imágenes","Common.define.smartArt.textPictureStrips":"Tiras de imagen","Common.define.smartArt.textPieProcess":"Proceso circular","Common.define.smartArt.textPlusAndMinus":"Más y menos","Common.define.smartArt.textProcess":"Proceso","Common.define.smartArt.textProcessArrows":"Flechas de proceso","Common.define.smartArt.textProcessList":"Lista de procesos","Common.define.smartArt.textPyramid":"Pirámide","Common.define.smartArt.textPyramidList":"Lista en pirámide","Common.define.smartArt.textRadialCluster":"Diseño radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista radial con imágenes","Common.define.smartArt.textRadialVenn":"Venn radial","Common.define.smartArt.textRandomToResultProcess":"Proceso de azar a resultado","Common.define.smartArt.textRelationship":"Relación","Common.define.smartArt.textRepeatingBendingProcess":"Proceso curvo repetitivo","Common.define.smartArt.textReverseList":"Lista inversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Proceso segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirámide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de imágenes instantáneas","Common.define.smartArt.textSpiralPicture":"Imagen en espiral","Common.define.smartArt.textSquareAccentList":"Lista de imágenes con cuadrados","Common.define.smartArt.textStackedList":"Lista apilada","Common.define.smartArt.textStackedVenn":"Venn apilado","Common.define.smartArt.textStaggeredProcess":"Proceso escalonado","Common.define.smartArt.textStepDownProcess":"Proceso de nivel inferior","Common.define.smartArt.textStepUpProcess":"Proceso de nivel superior","Common.define.smartArt.textSubStepProcess":"Proceso de pasos secundarios","Common.define.smartArt.textTabbedArc":"Arco con pestañas","Common.define.smartArt.textTableHierarchy":"Jerarquía de tabla","Common.define.smartArt.textTableList":"Lista de tablas","Common.define.smartArt.textTabList":"Lista de pestañas","Common.define.smartArt.textTargetList":"Lista de objetivo","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Imágenes temáticas destacadas","Common.define.smartArt.textThemePictureAlternatingAccent":"Imágenes temáticas destacadas alternativas","Common.define.smartArt.textThemePictureGrid":"Imágenes temáticas en cuadrícula","Common.define.smartArt.textTitledMatrix":"Matriz con títulos","Common.define.smartArt.textTitledPictureAccentList":"Lista de imágenes destacadas con título","Common.define.smartArt.textTitledPictureBlocks":"Bloques de imágenes con títulos","Common.define.smartArt.textTitlePictureLineup":"Serie de imágenes con título","Common.define.smartArt.textTrapezoidList":"Lista de trapezoides","Common.define.smartArt.textUpwardArrow":"Flecha arriba","Common.define.smartArt.textVaryingWidthList":"Lista de ancho variable","Common.define.smartArt.textVerticalAccentList":"Lista con rectángulos en vertical","Common.define.smartArt.textVerticalArrowList":"Lista vertical de flechas","Common.define.smartArt.textVerticalBendingProcess":"Proceso curvo vertical","Common.define.smartArt.textVerticalBlockList":"Lista de bloques verticales","Common.define.smartArt.textVerticalBoxList":"Lista vertical de cuadros","Common.define.smartArt.textVerticalBracketList":"Lista vertical con corchetes","Common.define.smartArt.textVerticalBulletList":"Lista vertical de viñetas","Common.define.smartArt.textVerticalChevronList":"Lista vertical de cheurones","Common.define.smartArt.textVerticalCircleList":"Lista con círculos en vertical","Common.define.smartArt.textVerticalCurvedList":"Lista curvada vertical","Common.define.smartArt.textVerticalEquation":"Ecuación vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista con círculos a la izquierda","Common.define.smartArt.textVerticalPictureList":"Lista vertical de imágenes","Common.define.smartArt.textVerticalProcess":"Proceso vertical","Common.Translation.textMoreButton":"Más","Common.Translation.tipFileLocked":"El documento está bloqueado para su edición. Puede hacer cambios y guardarlo como copia local más tarde.","Common.Translation.tipFileReadOnly":"El archivo es de solo lectura. Para no perder los cambios, guarde el archivo con otro nombre o en otra ubicación.","Common.Translation.warnFileLocked":"No puede editar este archivo porque lo está editando otra aplicación.","Common.Translation.warnFileLockedBtnEdit":"Crear una copia","Common.Translation.warnFileLockedBtnView":"Abrir en solo lectura","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Cuentagotas","Common.UI.ButtonColored.textNewColor":"Más colores","Common.UI.Calendar.textApril":"Abril","Common.UI.Calendar.textAugust":"Agosto","Common.UI.Calendar.textDecember":"Diciembre","Common.UI.Calendar.textFebruary":"Febrero","Common.UI.Calendar.textJanuary":"Enero","Common.UI.Calendar.textJuly":"Julio","Common.UI.Calendar.textJune":"Junio","Common.UI.Calendar.textMarch":"Marzo","Common.UI.Calendar.textMay":"Mayo","Common.UI.Calendar.textMonths":"Meses","Common.UI.Calendar.textNovember":"Noviembre","Common.UI.Calendar.textOctober":"Octubre","Common.UI.Calendar.textSeptember":"Septiembre","Common.UI.Calendar.textShortApril":"abr.","Common.UI.Calendar.textShortAugust":"ago.","Common.UI.Calendar.textShortDecember":"dic.","Common.UI.Calendar.textShortFebruary":"feb.","Common.UI.Calendar.textShortFriday":"vie.","Common.UI.Calendar.textShortJanuary":"ene.","Common.UI.Calendar.textShortJuly":"jul.","Common.UI.Calendar.textShortJune":"jun.","Common.UI.Calendar.textShortMarch":"mar.","Common.UI.Calendar.textShortMay":"may.","Common.UI.Calendar.textShortMonday":"lu.","Common.UI.Calendar.textShortNovember":"nov.","Common.UI.Calendar.textShortOctober":"oct.","Common.UI.Calendar.textShortSaturday":"sáb.","Common.UI.Calendar.textShortSeptember":"sep.","Common.UI.Calendar.textShortSunday":"dom.","Common.UI.Calendar.textShortThursday":"jue.","Common.UI.Calendar.textShortTuesday":"mar.","Common.UI.Calendar.textShortWednesday":"mie.","Common.UI.Calendar.textYears":"Años","Common.UI.ComboBorderSize.txtNoBorders":"Sin bordes","Common.UI.ComboBorderSizeEditable.txtNoBorders":"Sin bordes","Common.UI.ComboDataView.emptyComboText":"Sin estilo","Common.UI.ExtendedColorDialog.addButtonText":"Añadir","Common.UI.ExtendedColorDialog.textCurrent":"Actual","Common.UI.ExtendedColorDialog.textHexErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor de 000000 a FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Nuevo","Common.UI.ExtendedColorDialog.textRGBErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico de 0 a 225.","Common.UI.HSBColorPicker.textNoColor":"Sin color","Common.UI.InputField.txtEmpty":"Este campo es obligatorio","Common.UI.InputFieldBtnCalendar.textDate":"Seleccionar fecha","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar la contraseña","Common.UI.InputFieldBtnPassword.textHintHold":"Manténgalo pulsado para mostrar la contraseña","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar la contraseña","Common.UI.SearchBar.textFind":"Buscar","Common.UI.SearchBar.tipCloseSearch":"Cerrar búsqueda","Common.UI.SearchBar.tipNextResult":"Resultado siguiente","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abrir ajustes avanzados","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Resaltar resultados","Common.UI.SearchDialog.textMatchCase":"Distinguir mayúsculas y minúsculas","Common.UI.SearchDialog.textReplaceDef":"Introduzca el texto de sustitución","Common.UI.SearchDialog.textSearchStart":"Introduzca su texto aquí","Common.UI.SearchDialog.textTitle":"Buscar y reemplazar","Common.UI.SearchDialog.textTitle2":"Buscar","Common.UI.SearchDialog.textWholeWords":"Solo palabras completas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar sustitución","Common.UI.SearchDialog.txtBtnReplace":"Reemplazar","Common.UI.SearchDialog.txtBtnReplaceAll":"Reemplazar todo","Common.UI.SynchronizeTip.textDontShow":"No volver a mostrar este mensaje","Common.UI.SynchronizeTip.textGotIt":"Entendido","Common.UI.SynchronizeTip.textNew":"Nuevo","Common.UI.SynchronizeTip.textSynchronize":"El documento ha sido modificado por otro usuario.
Por favor, haga clic para guardar sus cambios y recargue el documento.","Common.UI.ThemeColorPalette.textRecentColors":"Colores recientes","Common.UI.ThemeColorPalette.textStandartColors":"Colores estándar","Common.UI.ThemeColorPalette.textThemeColors":"Colores del tema","Common.UI.ThemeColorPalette.textTransparent":"Transparente","Common.UI.Themes.txtThemeClassicLight":"Clásico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste oscuro","Common.UI.Themes.txtThemeDark":"Oscuro","Common.UI.Themes.txtThemeGray":"Gris","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Moderno oscuro","Common.UI.Themes.txtThemeModernLight":"Moderno claro","Common.UI.Themes.txtThemeSystem":"Igual que el sistema","Common.UI.Themes.txtThemeWhite":"Blanco","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Cerrar","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"Aceptar","Common.UI.Window.textConfirmation":"Confirmación","Common.UI.Window.textDontShow":"No volver a mostrar este mensaje","Common.UI.Window.textError":"Error","Common.UI.Window.textInformation":"Información","Common.UI.Window.textWarning":"Aviso","Common.UI.Window.yesButtonText":"Sí","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Control","Common.Utils.String.textShift":"Mayús","Common.Utils.ThemeColor.txtaccent":"Acento","Common.Utils.ThemeColor.txtAqua":"Aguamarina","Common.Utils.ThemeColor.txtbackground":"Fondo","Common.Utils.ThemeColor.txtBlack":"Negro","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde vivo","Common.Utils.ThemeColor.txtBrown":"Marrón","Common.Utils.ThemeColor.txtDarkBlue":"Azul oscuro","Common.Utils.ThemeColor.txtDarker":"Más oscuro","Common.Utils.ThemeColor.txtDarkGray":"Gris oscuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde oscuro","Common.Utils.ThemeColor.txtDarkPurple":"Púrpura oscuro","Common.Utils.ThemeColor.txtDarkRed":"Rojo oscuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde azulado oscuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarillo oscuro","Common.Utils.ThemeColor.txtGold":"Oro","Common.Utils.ThemeColor.txtGray":"Gris","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Añil","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Más claro","Common.Utils.ThemeColor.txtLightGray":"Gris claro","Common.Utils.ThemeColor.txtLightGreen":"Verde claro","Common.Utils.ThemeColor.txtLightOrange":"Naranja claro","Common.Utils.ThemeColor.txtLightYellow":"Amarillo claro","Common.Utils.ThemeColor.txtOrange":"Naranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Púrpura","Common.Utils.ThemeColor.txtRed":"Rojo","Common.Utils.ThemeColor.txtRose":"Rosa claro","Common.Utils.ThemeColor.txtSkyBlue":"Azul cielo","Common.Utils.ThemeColor.txtTeal":"Verde azulado","Common.Utils.ThemeColor.txttext":"Texto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Blanco","Common.Utils.ThemeColor.txtYellow":"Amarillo","Common.Views.About.txtAddress":"dirección: ","Common.Views.About.txtLicensee":"LICENCIATARIO ","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"correo: ","Common.Views.About.txtPoweredBy":"Desarrollado por","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versión ","Common.Views.AutoCorrectDialog.textAdd":"Añadir","Common.Views.AutoCorrectDialog.textApplyText":"Aplicar mientras escribe","Common.Views.AutoCorrectDialog.textAutoCorrect":"Autocorrección de texto","Common.Views.AutoCorrectDialog.textAutoFormat":"Autoformato mientras escribe","Common.Views.AutoCorrectDialog.textBulleted":"Listas con viñetas automáticas","Common.Views.AutoCorrectDialog.textBy":"Por","Common.Views.AutoCorrectDialog.textDelete":"Eliminar","Common.Views.AutoCorrectDialog.textDoubleSpaces":"Añadir punto con doble espacio","Common.Views.AutoCorrectDialog.textFLCells":"Poner en mayúsculas la primera letra de las celdas de la tabla","Common.Views.AutoCorrectDialog.textFLDont":"No poner en mayúsculas después de","Common.Views.AutoCorrectDialog.textFLSentence":"Poner en mayúscula la primera letra de las oraciones","Common.Views.AutoCorrectDialog.textForLangFL":"Excepciones para el idioma:","Common.Views.AutoCorrectDialog.textHyperlink":"Rutas de red e internet con enlaces","Common.Views.AutoCorrectDialog.textHyphens":"Guiones cortos (--) con rayas (—)","Common.Views.AutoCorrectDialog.textMathCorrect":"Autocorrección matemática","Common.Views.AutoCorrectDialog.textNumbered":"Listas con numeración automática","Common.Views.AutoCorrectDialog.textQuotes":"\"Comillas rectas\" con \"comillas tipográficas\"","Common.Views.AutoCorrectDialog.textRecognized":"Funciones reconocidas","Common.Views.AutoCorrectDialog.textRecognizedDesc":"Las siguientes expresiones son expresiones matemáticas reconocidas. No se pondrán en cursiva automáticamente.","Common.Views.AutoCorrectDialog.textReplace":"Reemplazar","Common.Views.AutoCorrectDialog.textReplaceText":"Reemplazar mientras escribe","Common.Views.AutoCorrectDialog.textReplaceType":"Reemplazar texto mientras escribe","Common.Views.AutoCorrectDialog.textReset":"Restablecer","Common.Views.AutoCorrectDialog.textResetAll":"Restablecer a valores predeterminados","Common.Views.AutoCorrectDialog.textRestore":"Restaurar","Common.Views.AutoCorrectDialog.textTitle":"Autocorrección","Common.Views.AutoCorrectDialog.textWarnAddFL":"Las excepciones deben contener sólo las letras, mayúsculas o minúsculas.","Common.Views.AutoCorrectDialog.textWarnAddRec":"Las funciones reconocidas deben contener solo letras de la A a la Z, mayúsculas o minúsculas.","Common.Views.AutoCorrectDialog.textWarnResetFL":"Las excepciones añadidas se eliminarán y las eliminadas se restablecerán. ¿Desea continuar?","Common.Views.AutoCorrectDialog.textWarnResetRec":"Cualquier expresión que haya añadido se eliminará y las eliminadas se restaurarán. ¿Desea continuar?","Common.Views.AutoCorrectDialog.warnReplace":"La entrada de autocorreción para %1 ya existe. ¿Desea reemplazarla?","Common.Views.AutoCorrectDialog.warnReset":"Las autocorrecciones que haya añadido se eliminarán y las modificadas recuperarán sus valores originales. ¿Desea continuar?","Common.Views.AutoCorrectDialog.warnRestore":"La entrada de autocorrección para %1 será restablecida a su valor original. ¿Desea continuar?","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Cerrar chat","Common.Views.Chat.textEnterMessage":"Introduzca su mensaje aquí","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor de Z a A","Common.Views.Comments.mniDateAsc":"Más antiguo","Common.Views.Comments.mniDateDesc":"Más reciente","Common.Views.Comments.mniFilterComments":"Mostrar comentarios","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"Desde arriba","Common.Views.Comments.mniPositionDesc":"Desde abajo","Common.Views.Comments.textAdd":"Añadir","Common.Views.Comments.textAddComment":"Añadir comentario","Common.Views.Comments.textAddCommentToDoc":"Añadir comentario al documento","Common.Views.Comments.textAddReply":"Añadir respuesta","Common.Views.Comments.textAll":"Todo","Common.Views.Comments.textAnonym":"Invitado","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Cerrar","Common.Views.Comments.textClosePanel":"Cerrar comentarios","Common.Views.Comments.textComment":"Comentario","Common.Views.Comments.textComments":"Comentarios","Common.Views.Comments.textEdit":"Aceptar","Common.Views.Comments.textEnterCommentHint":"Introduzca aquí su comentario","Common.Views.Comments.textHintAddComment":"Añadir comentario","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir de nuevo","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resuelto","Common.Views.Comments.textSort":"Ordenar comentarios","Common.Views.Comments.textSortFilter":"Ordenar y filtrar comentarios","Common.Views.Comments.textSortFilterMore":"Ordenar, filtrar y mucho más","Common.Views.Comments.textSortMore":"Ordenar y más","Common.Views.Comments.textViewResolved":"No tiene permiso para volver a abrir el documento","Common.Views.Comments.txtEmpty":"No hay comentarios en el documento","Common.Views.CopyWarningDialog.textDontShow":"No volver a mostrar este mensaje","Common.Views.CopyWarningDialog.textMsg":"Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y del menú contextual solo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, use las siguientes combinaciones de teclas:","Common.Views.CopyWarningDialog.textTitle":"Acciones de Copiar, Cortar y Pegar","Common.Views.CopyWarningDialog.textToCopy":"para copiar","Common.Views.CopyWarningDialog.textToCut":"para cortar","Common.Views.CopyWarningDialog.textToPaste":"para pegar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Descargar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Marque los comandos que se mostrarán en la barra de herramientas Acceso rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impresión rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Rehacer","Common.Views.CustomizeQuickAccessDialog.textSave":"Guardar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalizar acceso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Deshacer","Common.Views.DocumentAccessDialog.textLoading":"Cargando...","Common.Views.DocumentAccessDialog.textTitle":"Ajustes de uso compartido","Common.Views.DocumentPropertyDialog.errorDate":"Puede elegir un valor del calendario para almacenar el valor como Fecha.
Si introduce un valor manualmente, se almacenará como Texto.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"No","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"Sí","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"La propiedad debe tener un título","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"Título","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"Sí\" or \"No\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"Fecha","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"Tipo","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"Número","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"Indique un número válido","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"Texto","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"La propiedad debe tener un valor","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"Valor","Common.Views.DocumentPropertyDialog.txtTitle":"Nueva propiedad del documento","Common.Views.Draw.hintEraser":"Borrador","Common.Views.Draw.hintSelect":"Seleccionar","Common.Views.Draw.txtEraser":"Borrador","Common.Views.Draw.txtHighlighter":"Marcador de resaltado","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Bolígrafo","Common.Views.Draw.txtSelect":"Seleccionar","Common.Views.Draw.txtSize":"Tamaño","Common.Views.ExternalDiagramEditor.textTitle":"Editor de gráficos","Common.Views.ExternalEditor.textClose":"Cerrar","Common.Views.ExternalEditor.textSave":"Guardar y salir","Common.Views.ExternalLinksDlg.closeButtonText":"Cerrar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Actualizar automáticamente los datos de las fuentes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Cambiar fuente","Common.Views.ExternalLinksDlg.textDelete":"Quitar enlaces","Common.Views.ExternalLinksDlg.textDeleteAll":"Quitar todos los enlaces","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Abrir fuente","Common.Views.ExternalLinksDlg.textSource":"Fuente","Common.Views.ExternalLinksDlg.textStatus":"Estado","Common.Views.ExternalLinksDlg.textUnknown":"Desconocido","Common.Views.ExternalLinksDlg.textUpdate":"Actualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Actualizar todo","Common.Views.ExternalLinksDlg.textUpdating":"Actualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Enlaces externos","Common.Views.ExternalMergeEditor.textTitle":"Destinatarios de la combinación de correspondencia","Common.Views.ExternalOleEditor.textTitle":"Editor de hojas de cálculo","Common.Views.FormatSettingsDialog.textCategory":"Categoría","Common.Views.FormatSettingsDialog.textDecimal":"Decimal","Common.Views.FormatSettingsDialog.textFormat":"Formato","Common.Views.FormatSettingsDialog.textLinked":"Vinculado al origen","Common.Views.FormatSettingsDialog.textLocale":"Configuración regional","Common.Views.FormatSettingsDialog.textSeparator":"Usar separador de millares","Common.Views.FormatSettingsDialog.textSymbols":"Símbolos","Common.Views.FormatSettingsDialog.textTitle":"Formato de número","Common.Views.FormatSettingsDialog.txtAccounting":"Financiero","Common.Views.FormatSettingsDialog.txtAs10":"Décimas (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"Сentésimas (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"Dieciseisavos (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"Mitades (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"Cuartos (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"Octavos (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"Moneda","Common.Views.FormatSettingsDialog.txtCustom":"Personalizado","Common.Views.FormatSettingsDialog.txtCustomWarning":"Por favor, introduzca el formato de número personalizado con cuidado. El editor de hojas de cálculo no comprueba los formatos personalizados para detectar errores que puedan afectar al archivo xlsx.","Common.Views.FormatSettingsDialog.txtDate":"Fecha","Common.Views.FormatSettingsDialog.txtFraction":"Fracción","Common.Views.FormatSettingsDialog.txtGeneral":"General","Common.Views.FormatSettingsDialog.txtNone":"Ningún","Common.Views.FormatSettingsDialog.txtNumber":"Número","Common.Views.FormatSettingsDialog.txtPercentage":"Porcentaje","Common.Views.FormatSettingsDialog.txtSample":"Ejemplo:","Common.Views.FormatSettingsDialog.txtScientific":"Científico","Common.Views.FormatSettingsDialog.txtText":"Texto","Common.Views.FormatSettingsDialog.txtTime":"Hora","Common.Views.FormatSettingsDialog.txtUpto1":"Hasta un dígito (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"Hasta dos dígitos (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"Hasta tres dígitos (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"Barra de herramientas de acceso rápido","Common.Views.Header.labelCoUsersDescr":"Usuarios que están editando el archivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Configuración avanzada","Common.Views.Header.textBack":"Abrir ubicación del archivo","Common.Views.Header.textClose":"Cerrar archivo","Common.Views.Header.textCompactView":"Ocultar barra de herramientas","Common.Views.Header.textDocEditDesc":"Realizar cualquier cambio","Common.Views.Header.textDocViewDesc":"Ver el archivo, pero no realizar cambios","Common.Views.Header.textDocViewFormDesc":"Ver cómo se verá el formulario al rellenarlo","Common.Views.Header.textDownload":"Descargar","Common.Views.Header.textEdit":"Edición","Common.Views.Header.textHideLines":"Ocultar reglas","Common.Views.Header.textHideStatusBar":"Ocultar barra de estado","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Solo lectura","Common.Views.Header.textRemoveFavorite":"Eliminar de «Favoritos»","Common.Views.Header.textReview":"Revisión","Common.Views.Header.textReviewDesc":"Sugerir cambios","Common.Views.Header.textShare":"Compartir","Common.Views.Header.textStartFill":"Compartir y recopilar","Common.Views.Header.textView":"Visualización","Common.Views.Header.textViewForm":"Vista previa","Common.Views.Header.textZoom":"Ampliación","Common.Views.Header.tipAccessRights":"Gestionar permisos de acceso al documento","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalizar la barra de herramientas Acceso rápido","Common.Views.Header.tipDocEdit":"Edición","Common.Views.Header.tipDocView":"Visualización","Common.Views.Header.tipDocViewForm":"Visualización del formulario","Common.Views.Header.tipDownload":"Descargar archivo","Common.Views.Header.tipFillStatus":"Estado del rellenado","Common.Views.Header.tipGoEdit":"Editar archivo actual","Common.Views.Header.tipPrint":"Imprimir archivo","Common.Views.Header.tipPrintQuick":"Impresión rápida","Common.Views.Header.tipRedo":"Rehacer","Common.Views.Header.tipReview":"Revisión","Common.Views.Header.tipSave":"Guardar","Common.Views.Header.tipSearch":"Buscar","Common.Views.Header.tipUndo":"Deshacer","Common.Views.Header.tipUsers":"Ver usuarios","Common.Views.Header.tipViewSettings":"Mostrar ajustes","Common.Views.Header.tipViewUsers":"Ver usuarios y administrar permisos de acceso al documento","Common.Views.Header.txtAccessRights":"Cambiar permisos de acceso","Common.Views.Header.txtRename":"Renombrar","Common.Views.History.textCloseHistory":"Cerrar historial","Common.Views.History.textHide":"Contraer","Common.Views.History.textHideAll":"Ocultar cambios detallados","Common.Views.History.textHighlightDeleted":"Resaltar eliminado","Common.Views.History.textMore":"Más","Common.Views.History.textRestore":"Restaurar","Common.Views.History.textShow":"Desplegar","Common.Views.History.textShowAll":"Mostrar cambios detallados","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"Historial de versiones","Common.Views.ImageFromUrlDialog.textUrl":"Pegue la URL de la imagen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo es obligatorio","Common.Views.ImageFromUrlDialog.txtNotUrl":"El campo debe ser una URL en el formato \"http://www.example.com\"","Common.Views.InsertTableDialog.textInvalidRowsCols":"Debe especificar un número válido de filas y columnas","Common.Views.InsertTableDialog.txtColumns":"Número de columnas","Common.Views.InsertTableDialog.txtMaxText":"El valor máximo para este campo es {0}.","Common.Views.InsertTableDialog.txtMinText":"El valor mínimo para este campo es {0}.","Common.Views.InsertTableDialog.txtRows":"Número de filas","Common.Views.InsertTableDialog.txtTitle":"Tamaño de tabla","Common.Views.InsertTableDialog.txtTitleSplit":"Dividir celda","Common.Views.LanguageDialog.labelSelect":"Seleccionar el idioma del documento","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Introduzca un prompt para la consulta","Common.Views.MacrosAiDialog.textCreate":"Crear","Common.Views.MacrosDialog.textAutostart":"Inicio automático","Common.Views.MacrosDialog.textConvertFromVBA":"Convertir desde VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convertir macros desde VBA","Common.Views.MacrosDialog.textCopy":"Copiar ","Common.Views.MacrosDialog.textCreateFromDesc":"Crear a partir de la descripción","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Crear macros a partir de la descripción","Common.Views.MacrosDialog.textCustomFunction":"Función personalizada","Common.Views.MacrosDialog.textCustomFunctions":"Funciones personalizadas","Common.Views.MacrosDialog.textDebug":"Depurar","Common.Views.MacrosDialog.textDelete":"Eliminar","Common.Views.MacrosDialog.textFunctions":"Funciones","Common.Views.MacrosDialog.textLoading":"Cargando...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Crear inicio automático","Common.Views.MacrosDialog.textRename":"Renombrar","Common.Views.MacrosDialog.textRun":"Ejecutar","Common.Views.MacrosDialog.textSave":"Guardar","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Desactivar inicio automático","Common.Views.MacrosDialog.tipAI":"IA","Common.Views.MacrosDialog.tipFunctionAdd":"Añadir función personalizada","Common.Views.MacrosDialog.tipFunctionCopy":"Copiar función personalizada","Common.Views.MacrosDialog.tipFunctionDelete":"Eliminar función personalizada","Common.Views.MacrosDialog.tipFunctionRename":"Renombrar función personalizada","Common.Views.MacrosDialog.tipMacrosAdd":"Añadir macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copiar macros","Common.Views.MacrosDialog.tipMacrosDebug":"Depurar macros","Common.Views.MacrosDialog.tipMacrosRename":"Renombrar macros","Common.Views.MacrosDialog.tipMacrosRun":"Ejecutar macros","Common.Views.MacrosDialog.tipRedo":"Rehacer","Common.Views.MacrosDialog.tipUndo":"Deshacer","Common.Views.OpenDialog.closeButtonText":"Cerrar archivo","Common.Views.OpenDialog.txtEncoding":"Codificación","Common.Views.OpenDialog.txtIncorrectPwd":"La contraseña es incorrecta","Common.Views.OpenDialog.txtOpenFile":"Introduzca una contraseña para abrir el archivo","Common.Views.OpenDialog.txtPassword":"Contraseña","Common.Views.OpenDialog.txtPreview":"Vista previa","Common.Views.OpenDialog.txtProtected":"Una vez se haya introducido la contraseña y abierto el archivo, la contraseña actual del archivo se restablecerá","Common.Views.OpenDialog.txtTitle":"Elegir opciones de %1","Common.Views.OpenDialog.txtTitleProtected":"Archivo protegido","Common.Views.PasswordDialog.txtDescription":"Establezca una contraseña para proteger este documento","Common.Views.PasswordDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","Common.Views.PasswordDialog.txtPassword":"Contraseña","Common.Views.PasswordDialog.txtRepeat":"Repita la contraseña","Common.Views.PasswordDialog.txtTitle":"Establecer contraseña","Common.Views.PasswordDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdela en un lugar seguro.","Common.Views.PdfSignDialog.textBefore":"Antes de firmar este documento, compruebe que el contenido que está firmando es correcto","Common.Views.PdfSignDialog.textClear":"Borrar","Common.Views.PdfSignDialog.textFromFile":"Desde archivo","Common.Views.PdfSignDialog.textFromStorage":"Desde almacenamiento","Common.Views.PdfSignDialog.textFromUrl":"Desde URL","Common.Views.PdfSignDialog.textLooksAs":"La firma se ve como","Common.Views.PdfSignDialog.textSelect":"Seleccionar imagen","Common.Views.PdfSignDialog.tipRedo":"Rehacer","Common.Views.PdfSignDialog.tipUndo":"Deshacer","Common.Views.PdfSignDialog.txtDraw":"Dibujar","Common.Views.PdfSignDialog.txtRemBack":"Eliminar fondo blanco","Common.Views.PdfSignDialog.txtTitle":"Firma","Common.Views.PdfSignDialog.txtType":"Escribir","Common.Views.PdfSignDialog.txtUpload":"Subir","Common.Views.PdfSignDialog.txtUploadDesc":"Puede subir imágenes en formatos JPEG, JPG, GIF y PNG con un tamaño máximo de 30 Mb","Common.Views.PluginDlg.textDock":"Anclar plugin","Common.Views.PluginDlg.textLoading":"Cargando","Common.Views.PluginPanel.textClosePanel":"Cerrar plugin","Common.Views.PluginPanel.textHidePanel":"Contraer plugin","Common.Views.PluginPanel.textLoading":"Cargando","Common.Views.PluginPanel.textUndock":"Desanclar plugin","Common.Views.Plugins.groupCaption":"Extensiones","Common.Views.Plugins.strPlugins":"Extensiones","Common.Views.Plugins.textBackgroundPlugins":"Plugins de fondo","Common.Views.Plugins.textClosePanel":"Cerrar extensión","Common.Views.Plugins.textLoading":"Cargando","Common.Views.Plugins.textSettings":"Ajustes","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Detener","Common.Views.Plugins.textTheListOfBackgroundPlugins":"La lista de plugins de fondo","Common.Views.Plugins.tipMore":"Más","Common.Views.Protection.hintAddPwd":"Cifrar con contraseña","Common.Views.Protection.hintDelPwd":"Eliminar contraseña","Common.Views.Protection.hintPwd":"Cambiar o eliminar la contraseña","Common.Views.Protection.hintSignature":"Añadir firma digital o línea de firma","Common.Views.Protection.txtAddPwd":"Añadir contraseña","Common.Views.Protection.txtChangePwd":"Cambiar contraseña","Common.Views.Protection.txtDeletePwd":"Eliminar contraseña","Common.Views.Protection.txtEncrypt":"Cifrar","Common.Views.Protection.txtInvisibleSignature":"Añadir firma digital","Common.Views.Protection.txtSignature":"Firma","Common.Views.Protection.txtSignatureLine":"Añadir línea de firma","Common.Views.RecentFiles.txtOpenRecent":"Abrir recientes","Common.Views.RenameDialog.textName":"Nombre del archivo","Common.Views.RenameDialog.txtInvalidName":"El nombre del archivo no debe contener los símbolos siguientes:","Common.Views.ReviewChanges.hintNext":"Al cambio siguiente","Common.Views.ReviewChanges.hintPrev":"Al cambio anterior","Common.Views.ReviewChanges.mniFromFile":"Documento desde archivo","Common.Views.ReviewChanges.mniFromStorage":"Documento desde almacenamiento","Common.Views.ReviewChanges.mniFromUrl":"Documento desde URL","Common.Views.ReviewChanges.mniMMFromFile":"Desde archivo","Common.Views.ReviewChanges.mniMMFromStorage":"Desde almacenamiento","Common.Views.ReviewChanges.mniMMFromUrl":"Desde URL","Common.Views.ReviewChanges.mniSettings":"Ajustes de comparación","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedición en tiempo real. Todos los cambios se guardan automáticamente","Common.Views.ReviewChanges.strStrict":"Estricto","Common.Views.ReviewChanges.strStrictDesc":"Use el botón \"Guardar\" para sincronizar los cambios hechos por usted y por otros usuarios","Common.Views.ReviewChanges.textEnable":"Habilitar","Common.Views.ReviewChanges.textWarnTrackChanges":"El seguimiento de cambios se activará para todos los usuarios con acceso total. La próxima vez que alguien abra el documento, el seguimiento de cambios seguirá activado.","Common.Views.ReviewChanges.textWarnTrackChangesTitle":"¿Habilitar el seguimiento de cambios para todos?","Common.Views.ReviewChanges.tipAcceptCurrent":"Aceptar el cambio actual y pasar al siguiente","Common.Views.ReviewChanges.tipCoAuthMode":"Establecer modo de coedición","Common.Views.ReviewChanges.tipCombine":"Combinar el documento actual con otro","Common.Views.ReviewChanges.tipCommentRem":"Eliminar comentarios","Common.Views.ReviewChanges.tipCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentarios","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver los comentarios actuales","Common.Views.ReviewChanges.tipCompare":"Comparar el documento actual con otro","Common.Views.ReviewChanges.tipHistory":"Mostrar historial de versiones","Common.Views.ReviewChanges.tipMailRecepients":"Combinación de correspondencia","Common.Views.ReviewChanges.tipRejectCurrent":"Rechazar el cambio actual y pasar al siguiente","Common.Views.ReviewChanges.tipReview":"Rastrear cambios","Common.Views.ReviewChanges.tipReviewView":"Seleccionar modo en que presentar los cambios","Common.Views.ReviewChanges.tipSetDocLang":"Establecer idioma del documento","Common.Views.ReviewChanges.tipSetSpelling":"Сorrección ortográfica","Common.Views.ReviewChanges.tipSharing":"Gestionar permisos de acceso al documento","Common.Views.ReviewChanges.txtAccept":"Aceptar","Common.Views.ReviewChanges.txtAcceptAll":"Aceptar todos los cambios","Common.Views.ReviewChanges.txtAcceptChanges":"Aceptar cambios","Common.Views.ReviewChanges.txtAcceptCurrent":"Aceptar cambio actual","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Cerrar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedición","Common.Views.ReviewChanges.txtCombine":"Combinar","Common.Views.ReviewChanges.txtCommentRemAll":"Eliminar todos los comentarios","Common.Views.ReviewChanges.txtCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.txtCommentRemMy":"Eliminar mis comentarios","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Eliminar mis comentarios actuales","Common.Views.ReviewChanges.txtCommentRemove":"Eliminar","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos los comentarios","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentarios actuales","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver mis comentarios","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver mis comentarios actuales","Common.Views.ReviewChanges.txtCompare":"Comparar","Common.Views.ReviewChanges.txtDocLang":"Idioma","Common.Views.ReviewChanges.txtEditing":"Edición","Common.Views.ReviewChanges.txtFinal":"Todos los cambios aceptados {0}","Common.Views.ReviewChanges.txtFinalCap":"Final","Common.Views.ReviewChanges.txtHistory":"Historial de versiones","Common.Views.ReviewChanges.txtMailMerge":"Combinación de correspondencia","Common.Views.ReviewChanges.txtMarkup":"Todos los cambios {0}","Common.Views.ReviewChanges.txtMarkupCap":"Revisiones y globos","Common.Views.ReviewChanges.txtMarkupSimple":"Todos los cambios {0}
Sin globos","Common.Views.ReviewChanges.txtMarkupSimpleCap":"Solo revisiones","Common.Views.ReviewChanges.txtNext":"Al cambio siguiente","Common.Views.ReviewChanges.txtOff":"Desactivar para mí","Common.Views.ReviewChanges.txtOffGlobal":"Desactivar para mí y para todos","Common.Views.ReviewChanges.txtOn":"Activar para mí","Common.Views.ReviewChanges.txtOnGlobal":"Activar para mí y para todos","Common.Views.ReviewChanges.txtOriginal":"Todos los cambios rechazados {0}","Common.Views.ReviewChanges.txtOriginalCap":"Original","Common.Views.ReviewChanges.txtPrev":"Al cambio anterior","Common.Views.ReviewChanges.txtPreview":"Vista previa","Common.Views.ReviewChanges.txtReject":"Rechazar","Common.Views.ReviewChanges.txtRejectAll":"Rechazar todos los cambios","Common.Views.ReviewChanges.txtRejectChanges":"Rechazar cambios","Common.Views.ReviewChanges.txtRejectCurrent":"Rechazar cambio actual","Common.Views.ReviewChanges.txtSharing":"Compartir","Common.Views.ReviewChanges.txtSpelling":"Сorrección ortográfica","Common.Views.ReviewChanges.txtTurnon":"Rastrear cambios","Common.Views.ReviewChanges.txtView":"Modo de visualización","Common.Views.ReviewChangesDialog.textTitle":"Revisar cambios","Common.Views.ReviewChangesDialog.txtAccept":"Aceptar","Common.Views.ReviewChangesDialog.txtAcceptAll":"Aceptar todos los cambios","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"Aceptar cambio actual","Common.Views.ReviewChangesDialog.txtNext":"Al siguiente cambio","Common.Views.ReviewChangesDialog.txtPrev":"Al cambio anterior","Common.Views.ReviewChangesDialog.txtReject":"Rechazar","Common.Views.ReviewChangesDialog.txtRejectAll":"Rechazar todos los cambios","Common.Views.ReviewChangesDialog.txtRejectCurrent":"Rechazar cambio actual","Common.Views.ReviewPopover.textAdd":"Añadir","Common.Views.ReviewPopover.textAddReply":"Añadir respuesta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Cerrar","Common.Views.ReviewPopover.textComment":"Comentario","Common.Views.ReviewPopover.textEdit":"Aceptar","Common.Views.ReviewPopover.textEnterComment":"Introduzca su comentario aquí","Common.Views.ReviewPopover.textFollowMove":"Seguir movimiento","Common.Views.ReviewPopover.textMention":"+mención proporcionará acceso al documento y enviará un correo","Common.Views.ReviewPopover.textMentionNotify":"+mención notificará al usuario por correo","Common.Views.ReviewPopover.textOpenAgain":"Abrir de nuevo","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"No tiene permiso para volver a abrir el documento","Common.Views.ReviewPopover.txtAccept":"Aceptar","Common.Views.ReviewPopover.txtDeleteTip":"Eliminar","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.ReviewPopover.txtReject":"Rechazar","Common.Views.SaveAsDlg.textLoading":"Cargando","Common.Views.SaveAsDlg.textTitle":"Carpeta en donde guardar","Common.Views.SearchPanel.textCaseSensitive":"Distinguir mayúsculas y minúsculas","Common.Views.SearchPanel.textCloseSearch":"Cerrar búsqueda","Common.Views.SearchPanel.textContentChanged":"Se ha modificado el documento","Common.Views.SearchPanel.textFind":"Buscar","Common.Views.SearchPanel.textFindAndReplace":"Buscar y reemplazar","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} elementos reemplazados correctamente.","Common.Views.SearchPanel.textMatchUsingRegExp":"Buscar utilizando expresiones regulares","Common.Views.SearchPanel.textNoMatches":"No hay coincidencias","Common.Views.SearchPanel.textNoSearchResults":"No hay resultados de búsqueda","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} elementos reemplazados. Los {2} elementos restantes están bloqueados por otros usuarios.","Common.Views.SearchPanel.textReplace":"Reemplazar","Common.Views.SearchPanel.textReplaceAll":"Reemplazar todo","Common.Views.SearchPanel.textReplaceWith":"Reemplazar por","Common.Views.SearchPanel.textSearchAgain":"{0}Realice una nueva búsqueda{1} para obtener resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"La búsqueda se ha detenido","Common.Views.SearchPanel.textSearchResults":"Resultados de la búsqueda: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados de búsqueda","Common.Views.SearchPanel.textTooManyResults":"Hay demasiados resultados para mostrarlos aquí","Common.Views.SearchPanel.textWholeWords":"Solo palabras completas","Common.Views.SearchPanel.tipNextResult":"Resultado siguiente","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Cargando","Common.Views.SelectFileDlg.textTitle":"Seleccionar origen de los datos","Common.Views.ShapeShadowDialog.txtAngle":"Ángulo","Common.Views.ShapeShadowDialog.txtDistance":"Distancia","Common.Views.ShapeShadowDialog.txtSize":"Tamaño","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparencia","Common.Views.ShortcutsDialog.txtDescription":"Descripción","Common.Views.ShortcutsDialog.txtEmpty":"No se han encontrado coincidencias. Ajuste su búsqueda.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restablecer todos los valores predeterminados","Common.Views.ShortcutsDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todos los ajustes de los accesos directos se restablecerán a los valores predeterminados.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsDialog.txtSearch":"Búsqueda","Common.Views.ShortcutsDialog.txtTitle":"Accesos directos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Acción","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"Este acceso directo no se puede editar.","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Escriba el acceso directo deseado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"El acceso directo utilizado por las acciones %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"El acceso directo utilizado por las acciones %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"El acceso directo utilizado por la acción %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"El acceso directo utilizado por la acción %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Nuevo acceso directo","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos los accesos directos para la acción «%1» se restablecerán a los valores predeterminados.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsEditDialog.txtTitle":"Editar acceso directo","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Escriba el acceso directo deseado","Common.Views.SignDialog.textBold":"Negrita","Common.Views.SignDialog.textCertificate":"Certificado","Common.Views.SignDialog.textChange":"Cambiar","Common.Views.SignDialog.textInputName":"Introduzca el nombre del firmante","Common.Views.SignDialog.textItalic":"Cursiva","Common.Views.SignDialog.textNameError":"El nombre del firmante no debe estar vacío.","Common.Views.SignDialog.textPurpose":"Propósito al firmar este documento","Common.Views.SignDialog.textSelect":"Seleccionar","Common.Views.SignDialog.textSelectImage":"Seleccionar imagen","Common.Views.SignDialog.textSignature":"La firma se ve como","Common.Views.SignDialog.textTitle":"Firmar documento","Common.Views.SignDialog.textUseImage":"o pulse en 'Seleccionar imagen' para usar una imagen como firma","Common.Views.SignDialog.textValid":"Válido desde %1 hasta %2","Common.Views.SignDialog.tipFontName":"Nombre de la fuente","Common.Views.SignDialog.tipFontSize":"Tamaño de la fuente","Common.Views.SignSettingsDialog.textAllowComment":"Permitir al firmante añadir comentarios en el diálogo de la firma","Common.Views.SignSettingsDialog.textDefInstruction":"Antes de firmar este documento, verifique que el contenido que está firmando sea correcto.","Common.Views.SignSettingsDialog.textInfoEmail":"Correo electrónico del firmante sugerido","Common.Views.SignSettingsDialog.textInfoName":"Firmante sugerido","Common.Views.SignSettingsDialog.textInfoTitle":"Título del firmante sugerido","Common.Views.SignSettingsDialog.textInstructions":"Instrucciones para el firmante","Common.Views.SignSettingsDialog.textShowDate":"Mostrar fecha de la firma","Common.Views.SignSettingsDialog.textTitle":"Configuración de firma","Common.Views.SignSettingsDialog.txtEmpty":"Este campo es obligatorio","Common.Views.SymbolTableDialog.textCharacter":"Carácter","Common.Views.SymbolTableDialog.textCode":"Valor hexadecimal de Unicode","Common.Views.SymbolTableDialog.textCopyright":"Signo de «copyright»","Common.Views.SymbolTableDialog.textDCQuote":"Comillas dobles de cierre","Common.Views.SymbolTableDialog.textDOQuote":"Comillas dobles de apertura","Common.Views.SymbolTableDialog.textEllipsis":"Puntos suspensivos","Common.Views.SymbolTableDialog.textEmDash":"Raya","Common.Views.SymbolTableDialog.textEmSpace":"Espacio largo","Common.Views.SymbolTableDialog.textEnDash":"Guion corto","Common.Views.SymbolTableDialog.textEnSpace":"Espacio corto","Common.Views.SymbolTableDialog.textFont":"Fuente","Common.Views.SymbolTableDialog.textNBHyphen":"Guion de no separación","Common.Views.SymbolTableDialog.textNBSpace":"Espacio de no separación","Common.Views.SymbolTableDialog.textPilcrow":"Signo de antígrafo","Common.Views.SymbolTableDialog.textQEmSpace":"1/4 de espacio largo","Common.Views.SymbolTableDialog.textRange":"Rango","Common.Views.SymbolTableDialog.textRecent":"Símbolos utilizados recientemente","Common.Views.SymbolTableDialog.textRegistered":"Signo de marca registrada","Common.Views.SymbolTableDialog.textSCQuote":"Comillas simples de cierre","Common.Views.SymbolTableDialog.textSection":"Signo de párrafo","Common.Views.SymbolTableDialog.textShortcut":"Tecla de método abreviado","Common.Views.SymbolTableDialog.textSHyphen":"Guion opcional","Common.Views.SymbolTableDialog.textSOQuote":"Comillas simples de apertura","Common.Views.SymbolTableDialog.textSpecial":"Caracteres especiales","Common.Views.SymbolTableDialog.textSymbols":"Símbolos","Common.Views.SymbolTableDialog.textTitle":"Símbolo","Common.Views.SymbolTableDialog.textTradeMark":"Símbolo de marca registrada","Common.Views.UserNameDialog.textDontShow":"No volver a preguntarme","Common.Views.UserNameDialog.textLabel":"Etiqueta:","Common.Views.UserNameDialog.textLabelError":"La etiqueta no debe estar vacía.","DE.Controllers.DocProtection.txtIsProtectedComment":"El documento está protegido. Solo puede añadir comentarios en este documento.","DE.Controllers.DocProtection.txtIsProtectedForms":"El documento está protegido. Solo puede rellenar formularios en este documento.","DE.Controllers.DocProtection.txtIsProtectedTrack":"El documento está protegido. Puede editar este documento, pero todos los cambios serán rastreados.","DE.Controllers.DocProtection.txtIsProtectedView":"El documento está protegido. Solo puede ver este documento.","DE.Controllers.DocProtection.txtWasProtectedComment":"El documento ha sido protegido por otro usuario.\nSolo puede añadir comentarios en este documento.","DE.Controllers.DocProtection.txtWasProtectedForms":"El documento ha sido protegido por otro usuario.\nSolo puede rellenar formularios en este documento.","DE.Controllers.DocProtection.txtWasProtectedTrack":"El documento ha sido protegido por otro usuario.\nPuede editar este documento, pero todos los cambios serán rastreados.","DE.Controllers.DocProtection.txtWasProtectedView":"El documento ha sido protegido por otro usuario.\nSolo puede ver este documento.","DE.Controllers.DocProtection.txtWasUnprotected":"El documento ha sido desprotegido.","DE.Controllers.HeaderFooterTab.textFieldExample":"Ejemplo de escribir código: HORA \\@ \"dddd, MMMM d, aaaa\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"Códigos de campo","DE.Controllers.HeaderFooterTab.textFieldTitle":"Campo","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"Numeración de páginas","DE.Controllers.LeftMenu.leavePageText":"Todos los cambios no guardados de este documento se perderán.
Pulse \"Cancelar\" después \"Guardar\" para guardarlos. Pulse \"Aceptar\" para deshacer todos los cambios no guardados.","DE.Controllers.LeftMenu.newDocumentTitle":"Documento sin título","DE.Controllers.LeftMenu.notcriticalErrorTitle":"Aviso","DE.Controllers.LeftMenu.requestEditRightsText":"Solicitando permisos de edición...","DE.Controllers.LeftMenu.textLoadHistory":"Cargando historial de versiones...","DE.Controllers.LeftMenu.textNoTextFound":"No se pueden encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","DE.Controllers.LeftMenu.textReplaceSkipped":"Se ha realizado el reemplazo. Se omitieron {0} coincidencias.","DE.Controllers.LeftMenu.textReplaceSuccess":"La búsqueda se ha realizado. Coincidencias reemplazadas: {0}","DE.Controllers.LeftMenu.textSelectPath":"Introduzca un nuevo nombre para guardar la copia del archivo","DE.Controllers.LeftMenu.txtCompatible":"El documento se guardará en el nuevo formato. Permitirá utilizar todas las características del editor, pero podría afectar al diseño del documento.
Utilice la opción 'Compatibilidad' de la configuración avanzada si quiere hacer que los archivos sean compatibles con versiones anteriores de MS Word.","DE.Controllers.LeftMenu.txtUntitled":"Sin título","DE.Controllers.LeftMenu.warnDownloadAs":"Si sigue guardando en este formato todas las características a excepción del texto se perderán.
¿Está seguro de que quiere continuar?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"Su {0} se convertirá en un formato editable. Esto puede llevar un tiempo. El documento resultante será optimizado para permitirle editar el texto, por lo que puede que no se vea exactamente como el {0} original, especialmente si el archivo original contenía muchos gráficos.","DE.Controllers.LeftMenu.warnDownloadAsRTF":"Si usted sigue guardando en este formato, una parte del formato puede perderse.
¿Está seguro de que desea continuar?","DE.Controllers.LeftMenu.warnReplaceString":"{0} no es un carácter especial válido para el campo de sustitución.","DE.Controllers.Main.applyChangesTextText":"Cargando cambios...","DE.Controllers.Main.applyChangesTitleText":"Cargando cambios","DE.Controllers.Main.confirmMaxChangesSize":"El tamaño de las acciones excede la limitación establecida para su servidor.
Pulse \"Deshacer\" para cancelar su última acción o pulse \"Continuar\" para mantener la acción localmente (debe descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada).","DE.Controllers.Main.convertationTimeoutText":"Tiempo de conversión está superado.","DE.Controllers.Main.criticalErrorExtText":"Pulse \"Aceptar\" para regresar a la lista de documentos.","DE.Controllers.Main.criticalErrorExtTextClose":"Pulse \"OK\" para cerrar el editor.","DE.Controllers.Main.criticalErrorTitle":"Error","DE.Controllers.Main.downloadErrorText":"Error de descarga.","DE.Controllers.Main.downloadMergeText":"Descargando...","DE.Controllers.Main.downloadMergeTitle":"Descargando","DE.Controllers.Main.downloadTextText":"Cargando documento...","DE.Controllers.Main.downloadTitleText":"Descargando documento","DE.Controllers.Main.errorAccessDeny":"Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con el administrador del servidor de documentos.","DE.Controllers.Main.errorBadImageUrl":"La URL de la imagen es incorrecta","DE.Controllers.Main.errorCannotPasteImg":"No es posible pegar esta imagen desde el portapapeles, pero puede guardarla en su dispositivo e \ninsertarla desde allí, o puede copiar la imagen sin texto y pegarla en el documento.","DE.Controllers.Main.errorCoAuthoringDisconnect":"Se ha perdido la conexión con servidor. El documento no puede ser editado en este momento.","DE.Controllers.Main.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","DE.Controllers.Main.errorCompare":"La característica de comparación de documentos no está disponible durante la coedición.","DE.Controllers.Main.errorConnectToServer":"No se ha podido guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.
Al hacer clic en el botón 'Aceptar' se le solicitará que descargue el documento.","DE.Controllers.Main.errorCopyDisabled":"Por motivos de seguridad, el contenido de este documento no se puede copiar.","DE.Controllers.Main.errorDatabaseConnection":"Error externo.
Error de conexión a la base de datos. Por favor, póngase en contacto con el servicio de atención al cliente si el error persiste.","DE.Controllers.Main.errorDataEncrypted":"Se han recibido cambios cifrados que no pueden descifrarse.","DE.Controllers.Main.errorDataRange":"Rango de datos incorrecto.","DE.Controllers.Main.errorDefaultMessage":"Código de error: %1","DE.Controllers.Main.errorDirectUrl":"Por favor, compruebe el vínculo al documento.
Este vínculo debe ser un vínculo directo al archivo que descargar.","DE.Controllers.Main.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.Controllers.Main.errorEditingSaveas":"Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro.","DE.Controllers.Main.errorEditProtectedRange":"No tiene permiso para editar esta selección porque está protegida.","DE.Controllers.Main.errorEmailClient":"No se ha podido encontrar ningún cliente de correo","DE.Controllers.Main.errorEmptyTOC":"Empezar a crear una tabla de contenido aplicando un estilo de título de la galería de estilos para el texto seleccionado.","DE.Controllers.Main.errorFilePassProtect":"El archivo está protegido por una contraseña y no puede ser abierto.","DE.Controllers.Main.errorFileSizeExceed":"El tamaño del archivo excede la limitación establecida para su servidor.
Por favor, póngase en contacto con el administrador del servidor de documentos para obtener más detalles.","DE.Controllers.Main.errorForceSave":"Se produjo un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.","DE.Controllers.Main.errorInconsistentExt":"Se ha producido un error al abrir el archivo.
El contenido del archivo no coincide con la extensión del mismo.","DE.Controllers.Main.errorInconsistentExtDocx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con documentos de texto (por ejemplo, docx), pero el archivo tiene una extensión inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtPdf":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con uno de los siguientes formatos: pdf/djvu/xps/oxps, pero el archivo tiene una extensión inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtPptx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con presentaciones (por ejemplo, pptx), pero el archivo tiene una extensión inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtXlsx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con hojas de cálculo (por ejemplo, xlsx), pero el archivo tiene una extensión inconsistente: %1.","DE.Controllers.Main.errorKeyEncrypt":"Descriptor de clave desconocido","DE.Controllers.Main.errorKeyExpire":"El descriptor de la clave ha expirado","DE.Controllers.Main.errorLoadingFont":"Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del servidor de documentos.","DE.Controllers.Main.errorMailMergeLoadFile":"La carga del documento ha fallado. Por favor, seleccione un archivo diferente.","DE.Controllers.Main.errorMailMergeSaveFile":"No se han podido fusionar los archivos.","DE.Controllers.Main.errorNoTOC":"No hay ninguna tabla de contenido que actualizar. Se puede insertar una desde la pestaña «Referencias».","DE.Controllers.Main.errorPasswordIsNotCorrect":"La contraseña que ha proporcionado no es correcta.
Verifique que la tecla «Bloq Mayús» esté desactivada y asegúrese de utilizar las mayúsculas correctamente.","DE.Controllers.Main.errorSaveWatermark":"Este archivo contiene una imagen de marca de agua vinculada a otro dominio.
Para que sea visible en PDF, actualice la imagen de marca de agua para que se vincule desde el mismo dominio que su documento, o cárguela desde su ordenador.","DE.Controllers.Main.errorServerVersion":"La versión del editor se ha actualizado. La página se recargará para aplicar los cambios.","DE.Controllers.Main.errorSessionAbsolute":"La sesión ha expirado. Por favor, recargue la página.","DE.Controllers.Main.errorSessionIdle":"El documento no ha sido editado durante bastante tiempo. Por favor, recargue la página.","DE.Controllers.Main.errorSessionToken":"La conexión con el servidor se ha interrumpido. Por favor, recargue la página.","DE.Controllers.Main.errorSetPassword":"No se ha podido establecer la contraseña.","DE.Controllers.Main.errorStockChart":"El orden de las filas es incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja de la forma siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","DE.Controllers.Main.errorSubmit":"Error al enviar.","DE.Controllers.Main.errorTextFormWrongFormat":"El valor introducido no se corresponde con el formato del campo","DE.Controllers.Main.errorToken":"El 'token' de seguridad del documento tiene un formato incorrecto.
Por favor, contacte con el administrador del servidor de documentos.","DE.Controllers.Main.errorTokenExpire":"El 'token' de seguridad del documento ha expirado.
Por favor, contacte con el administrador del servidor de documentos.","DE.Controllers.Main.errorUpdateVersion":"Se ha cambiado la versión del archivo. La página se actualizará.","DE.Controllers.Main.errorUpdateVersionOnDisconnect":"Se ha restablecido la conexión a internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se haya perdido nada, y luego volver a cargar esta página.","DE.Controllers.Main.errorUserDrop":"No se puede acceder al archivo en este momento.","DE.Controllers.Main.errorUsersExceed":"Se ha excedido el número de usuarios permitido por su plan contratado","DE.Controllers.Main.errorViewerDisconnect":"Se ha perdido la conexión. Usted todavía puede visualizar el documento,
pero no puede descargar o imprimirlo hasta que recupere la conexión y la página esté recargada.","DE.Controllers.Main.leavePageText":"Hay cambios no guardados en este documento. Haga clic en 'Permanecer en esta página', después en 'Guardar' para guardarlos. Haga clic en 'Abandonar esta página' para descartar todos los cambios no guardados.","DE.Controllers.Main.leavePageTextOnClose":"Todos los cambios no guardados de este documento se perderán.
Pulse \"Cancelar\" después \"Guardar\" para guardarlos. Pulse \"Aceptar\" para deshacer todos los cambios no guardados.","DE.Controllers.Main.loadFontsTextText":"Cargando datos...","DE.Controllers.Main.loadFontsTitleText":"Cargando datos","DE.Controllers.Main.loadFontTextText":"Cargando datos...","DE.Controllers.Main.loadFontTitleText":"Cargando datos","DE.Controllers.Main.loadImagesTextText":"Cargando imágenes...","DE.Controllers.Main.loadImagesTitleText":"Cargando imágenes","DE.Controllers.Main.loadImageTextText":"Cargando imagen...","DE.Controllers.Main.loadImageTitleText":"Cargando imagen","DE.Controllers.Main.loadingDocumentTextText":"Cargando documento...","DE.Controllers.Main.loadingDocumentTitleText":"Cargando documento","DE.Controllers.Main.mailMergeLoadFileText":"Cargando fuente de datos...","DE.Controllers.Main.mailMergeLoadFileTitle":"Cargando fuente de datos","DE.Controllers.Main.notcriticalErrorTitle":"Aviso","DE.Controllers.Main.openErrorText":"Ha ocurrido un error al abrir el archivo.","DE.Controllers.Main.openTextText":"Abriendo documento...","DE.Controllers.Main.openTitleText":"Abriendo documento","DE.Controllers.Main.printTextText":"Imprimiendo documento...","DE.Controllers.Main.printTitleText":"Imprimiendo documento","DE.Controllers.Main.reloadButtonText":"Recargar página","DE.Controllers.Main.requestEditFailedMessageText":"Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.","DE.Controllers.Main.requestEditFailedTitleText":"Acceso denegado","DE.Controllers.Main.saveErrorText":"Ha ocurrido un error al guardar el archivo. ","DE.Controllers.Main.saveErrorTextDesktop":"Este archivo no se puede guardar o crear.
Las razones posibles son:
1. El archivo es de solo lectura.
2. El archivo está siendo editado por otros usuarios.
3. El disco está lleno o corrupto.","DE.Controllers.Main.saveTextText":"Guardando documento...","DE.Controllers.Main.saveTitleText":"Guardando documento","DE.Controllers.Main.savingText":"Enviando","DE.Controllers.Main.scriptLoadError":"La conexión a internet es demasiado lenta, no se han podido cargar algunos componentes. Por favor, recargue la página.","DE.Controllers.Main.sendMergeText":"Enviando fusión de documentos...","DE.Controllers.Main.sendMergeTitle":"Enviar fusión de documentos","DE.Controllers.Main.splitDividerErrorText":"El número de filas debe ser un divisor de %1.","DE.Controllers.Main.splitMaxColsErrorText":"El número de columnas debe ser menor a %1.","DE.Controllers.Main.splitMaxRowsErrorText":"El número de filas debe ser menor a %1.","DE.Controllers.Main.textAnonymous":"Anónimo","DE.Controllers.Main.textAnyone":"Cualquiera","DE.Controllers.Main.textApplyAll":"Aplicar a todas las ecuaciones","DE.Controllers.Main.textBuyNow":"Visitar sitio web","DE.Controllers.Main.textChangesSaved":"Se han guardado todos los cambios","DE.Controllers.Main.textClose":"Cerrar","DE.Controllers.Main.textCloseTip":"Pulse para cerrar el consejo","DE.Controllers.Main.textConnectionLost":"Intentando conectar. Por favor, compruebe los ajustes de conexión.","DE.Controllers.Main.textContactUs":"Contactar con el equipo de ventas","DE.Controllers.Main.textContinue":"Continuar","DE.Controllers.Main.textConvertEquation":"Esta ecuación fue creada con una versión antigua del editor de ecuaciones, el cual ya no es compatible. Para editarla, convierta la ecuación al formato ML de Office Math.
¿Convertir ahora?","DE.Controllers.Main.textCustomLoader":"Tenga en cuenta que, según los términos de la licencia, usted no tiene permiso para cambiar el cargador.
Por favor, póngase en contacto con nuestro departamento de ventas para obtener más información.","DE.Controllers.Main.textDisconnect":"Se ha perdido la conexión","DE.Controllers.Main.textGuest":"Invitado","DE.Controllers.Main.textHasMacros":"El archivo contiene macros automáticas.
¿Quiere ejecutar macros?","DE.Controllers.Main.textLearnMore":"Más información","DE.Controllers.Main.textLoadingDocument":"Cargando documento","DE.Controllers.Main.textLongName":"Escriba un nombre que tenga menos de 128 caracteres.","DE.Controllers.Main.textNoLicenseTitle":"Se ha alcanzado el límite de la licencia","DE.Controllers.Main.textPaidFeature":"Función de pago","DE.Controllers.Main.textReconnect":"Se ha restablecido la conexión","DE.Controllers.Main.textRemember":"Recordar mi elección para todos los archivos","DE.Controllers.Main.textRememberMacros":"Recordar mi elección para todas las macros","DE.Controllers.Main.textRenameError":"El nombre de usuario no debe estar vacío.","DE.Controllers.Main.textRenameLabel":"Escriba un nombre que se utilizará para la colaboración","DE.Controllers.Main.textRequestMacros":"Una macro realiza una solicitud a la URL. ¿Quiere permitir la solicitud al %1?","DE.Controllers.Main.textShape":"Forma","DE.Controllers.Main.textSignature":"Firma","DE.Controllers.Main.textStrict":"Modo estricto","DE.Controllers.Main.textText":"Texto","DE.Controllers.Main.textTryQuickPrint":"Ha seleccionado «impresión rápida»: todo el documento se imprimirá en la última impresora seleccionada o predeterminada.
¿Desea continuar?","DE.Controllers.Main.textTryUndoRedo":"Las funciones «Deshacer/Rehacer» se desactivan para el modo «coedición rápido».
Haga Clic en el botón \"modo estricto\" para cambiar al modo de «coedición estricta» para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios solo después de guardarlos. Se puede cambiar entre los modos de coedición usando los ajustes avanzados de edición.","DE.Controllers.Main.textTryUndoRedoWarn":"Las funciones «Deshacer/Rehacer» se desactivan en el modo «coedición rápido».","DE.Controllers.Main.textUndo":"Deshacer","DE.Controllers.Main.textUpdateVersion":"El documento no se puede editar en este momento.
Tratando de actualizar el archivo, por favor espere...","DE.Controllers.Main.textUpdating":"Actualizando","DE.Controllers.Main.tipLicenseExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de conexiones simultáneas permitidas por la licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","DE.Controllers.Main.tipLicenseUsersExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de usuarios autorizados a editar documentos por licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","DE.Controllers.Main.titleLicenseExp":"Licencia ha expirado","DE.Controllers.Main.titleLicenseNotActive":"Licencia no activa","DE.Controllers.Main.titleReadOnly":"Modo de sólo lectura","DE.Controllers.Main.titleServerVersion":"El editor se ha actualizado","DE.Controllers.Main.titleUpdateVersion":"La versión ha cambiado","DE.Controllers.Main.txtAbove":"encima","DE.Controllers.Main.txtArt":"Su texto aquí","DE.Controllers.Main.txtBasicShapes":"Formas básicas","DE.Controllers.Main.txtBelow":"debajo","DE.Controllers.Main.txtBookmarkError":"¡Error! El marcador no se ha definido","DE.Controllers.Main.txtButtons":"Botones","DE.Controllers.Main.txtCallouts":"Llamadas","DE.Controllers.Main.txtCharts":"Gráficos","DE.Controllers.Main.txtChoose":"Elija un elemento","DE.Controllers.Main.txtClickToLoad":"Haga clic para cargar la imagen","DE.Controllers.Main.txtCurrentDocument":"Documento actual","DE.Controllers.Main.txtDiagramTitle":"Título del gráfico","DE.Controllers.Main.txtEditingMode":"Establecer el modo de edición...","DE.Controllers.Main.txtEndOfFormula":"Final de la fórmula inesperado","DE.Controllers.Main.txtEnterDate":"Introducir una fecha","DE.Controllers.Main.txtErrorLoadHistory":"Ha fallado la carga del historial","DE.Controllers.Main.txtEvenPage":"Página par","DE.Controllers.Main.txtFiguredArrows":"Flechas figuradas","DE.Controllers.Main.txtFirstPage":"Primera página","DE.Controllers.Main.txtFooter":"Pie de página","DE.Controllers.Main.txtFormulaNotInTable":"La fórmula no está en la tabla","DE.Controllers.Main.txtHeader":"Encabezado","DE.Controllers.Main.txtHyperlink":"Enlace","DE.Controllers.Main.txtIndTooLarge":"El índice es demasiado grande","DE.Controllers.Main.txtLines":"Líneas","DE.Controllers.Main.txtMainDocOnly":"¡Error! Solo el documento principal.","DE.Controllers.Main.txtMath":"Matemáticas","DE.Controllers.Main.txtMissArg":"Argumento ausente","DE.Controllers.Main.txtMissOperator":"Operador ausente","DE.Controllers.Main.txtNeedSynchronize":"Hay actualizaciones disponibles","DE.Controllers.Main.txtNone":"Ninguno","DE.Controllers.Main.txtNoTableOfContents":"No hay títulos en el documento. Aplique un estilo de título al texto para que aparezca en la tabla de contenido.","DE.Controllers.Main.txtNoTableOfFigures":"No se han encontrado elementos en la tabla de ilustraciones.","DE.Controllers.Main.txtNoText":"¡Error! No hay texto del estilo especificado en el documento.","DE.Controllers.Main.txtNotInTable":"No está en la tabla","DE.Controllers.Main.txtNotValidBookmark":"¡Error! No es una autoreferencia de marcador válida.","DE.Controllers.Main.txtOddPage":"Página impar","DE.Controllers.Main.txtOnPage":"en la página","DE.Controllers.Main.txtRectangles":"Rectángulos","DE.Controllers.Main.txtSameAsPrev":"Igual al anterior","DE.Controllers.Main.txtSaveCopyAsComplete":"La copia del archivo se ha guardado correctamente","DE.Controllers.Main.txtScheme_Aspect":"Aspecto","DE.Controllers.Main.txtScheme_Blue":"Azul","DE.Controllers.Main.txtScheme_Blue_Green":"Verde azulado","DE.Controllers.Main.txtScheme_Blue_II":"Azul II","DE.Controllers.Main.txtScheme_Blue_Warm":"Azul cálido","DE.Controllers.Main.txtScheme_Grayscale":"Escala de grises","DE.Controllers.Main.txtScheme_Green":"Verde","DE.Controllers.Main.txtScheme_Green_Yellow":"Verde amarillo","DE.Controllers.Main.txtScheme_Marquee":"Marquesina","DE.Controllers.Main.txtScheme_Median":"Medio","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"Naranja","DE.Controllers.Main.txtScheme_Orange_Red":"Rojo naranja","DE.Controllers.Main.txtScheme_Paper":"Papel","DE.Controllers.Main.txtScheme_Red":"Rojo","DE.Controllers.Main.txtScheme_Red_Orange":"Naranja rojo","DE.Controllers.Main.txtScheme_Red_Violet":"Violeta rojo","DE.Controllers.Main.txtScheme_Slipstream":"Flujo de aire","DE.Controllers.Main.txtScheme_Violet":"Violeta","DE.Controllers.Main.txtScheme_Violet_II":"Violeta II","DE.Controllers.Main.txtScheme_Yellow":"Amarillo","DE.Controllers.Main.txtScheme_Yellow_Orange":"Amarillo naranja","DE.Controllers.Main.txtSection":"-Sección","DE.Controllers.Main.txtSeries":"Serie","DE.Controllers.Main.txtShape_accentBorderCallout1":"Llamada con línea 1 (borde y barra de énfasis)","DE.Controllers.Main.txtShape_accentBorderCallout2":"Llamada con línea 2 (borde y barra de énfasis)","DE.Controllers.Main.txtShape_accentBorderCallout3":"Llamada con línea 3 (borde y barra de énfasis)","DE.Controllers.Main.txtShape_accentCallout1":"Llamada con línea 1 (barra de énfasis)","DE.Controllers.Main.txtShape_accentCallout2":"Llamada con línea 2 (barra de énfasis)","DE.Controllers.Main.txtShape_accentCallout3":"Llamada con línea 3 (barra de énfasis)","DE.Controllers.Main.txtShape_actionButtonBackPrevious":"Botón de atrás o anterior","DE.Controllers.Main.txtShape_actionButtonBeginning":"Botón de inicio","DE.Controllers.Main.txtShape_actionButtonBlank":"Botón en blanco","DE.Controllers.Main.txtShape_actionButtonDocument":"Botón de documento","DE.Controllers.Main.txtShape_actionButtonEnd":"Botón de final","DE.Controllers.Main.txtShape_actionButtonForwardNext":"Botón de adelante o siguiente","DE.Controllers.Main.txtShape_actionButtonHelp":"Botón de ayuda","DE.Controllers.Main.txtShape_actionButtonHome":"Botón de inicio","DE.Controllers.Main.txtShape_actionButtonInformation":"Botón de información","DE.Controllers.Main.txtShape_actionButtonMovie":"Botón de vídeo","DE.Controllers.Main.txtShape_actionButtonReturn":"Botón de regreso","DE.Controllers.Main.txtShape_actionButtonSound":"Botón de sonido","DE.Controllers.Main.txtShape_arc":"Arco","DE.Controllers.Main.txtShape_bentArrow":"Flecha doblada","DE.Controllers.Main.txtShape_bentConnector5":"Conector angular","DE.Controllers.Main.txtShape_bentConnector5WithArrow":"Conector angular de flecha","DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"Conector angular de flecha doble","DE.Controllers.Main.txtShape_bentUpArrow":"Flecha doblada hacia arriba","DE.Controllers.Main.txtShape_bevel":"Bisel","DE.Controllers.Main.txtShape_blockArc":"Arco de bloque","DE.Controllers.Main.txtShape_borderCallout1":"Llamada con línea 1","DE.Controllers.Main.txtShape_borderCallout2":"Llamada con línea 2","DE.Controllers.Main.txtShape_borderCallout3":"Llamada con línea 3","DE.Controllers.Main.txtShape_bracePair":"Llaves","DE.Controllers.Main.txtShape_callout1":"Llamada con línea 1 (sin borde)","DE.Controllers.Main.txtShape_callout2":"Llamada con línea 2 (sin borde)","DE.Controllers.Main.txtShape_callout3":"Llamada con línea 3 (sin borde)","DE.Controllers.Main.txtShape_can":"Сilindro","DE.Controllers.Main.txtShape_chevron":"Cheurón","DE.Controllers.Main.txtShape_chord":"Acorde","DE.Controllers.Main.txtShape_circularArrow":"Flecha circular","DE.Controllers.Main.txtShape_cloud":"Nube","DE.Controllers.Main.txtShape_cloudCallout":"Llamada de nube","DE.Controllers.Main.txtShape_corner":"Esquina","DE.Controllers.Main.txtShape_cube":"Cubo","DE.Controllers.Main.txtShape_curvedConnector3":"Conector curvado","DE.Controllers.Main.txtShape_curvedConnector3WithArrow":"Conector curvado de flecha","DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"Conector curvado de flecha doble","DE.Controllers.Main.txtShape_curvedDownArrow":"Flecha curvada hacia abajo","DE.Controllers.Main.txtShape_curvedLeftArrow":"Flecha curvada hacia la izquierda","DE.Controllers.Main.txtShape_curvedRightArrow":"Flecha curvada hacia la derecha","DE.Controllers.Main.txtShape_curvedUpArrow":"Flecha curvada hacia arriba","DE.Controllers.Main.txtShape_decagon":"Decágono","DE.Controllers.Main.txtShape_diagStripe":"Franja diagonal","DE.Controllers.Main.txtShape_diamond":"Rombo","DE.Controllers.Main.txtShape_dodecagon":"Dodecágono","DE.Controllers.Main.txtShape_donut":"Anillo","DE.Controllers.Main.txtShape_doubleWave":"Doble onda","DE.Controllers.Main.txtShape_downArrow":"Flecha abajo","DE.Controllers.Main.txtShape_downArrowCallout":"Llamada de flecha hacia abajo","DE.Controllers.Main.txtShape_ellipse":"Elipse","DE.Controllers.Main.txtShape_ellipseRibbon":"Cinta curvada hacia abajo","DE.Controllers.Main.txtShape_ellipseRibbon2":"Cinta curvada hacia arriba","DE.Controllers.Main.txtShape_flowChartAlternateProcess":"Diagrama de flujo: Proceso alternativo","DE.Controllers.Main.txtShape_flowChartCollate":"Intercalar","DE.Controllers.Main.txtShape_flowChartConnector":"Conector","DE.Controllers.Main.txtShape_flowChartDecision":"Decisión","DE.Controllers.Main.txtShape_flowChartDelay":"Retraso","DE.Controllers.Main.txtShape_flowChartDisplay":"Pantalla","DE.Controllers.Main.txtShape_flowChartDocument":"Documento","DE.Controllers.Main.txtShape_flowChartExtract":"Extracto","DE.Controllers.Main.txtShape_flowChartInputOutput":"Datos","DE.Controllers.Main.txtShape_flowChartInternalStorage":"Diagrama de flujo: Almacenamiento interno","DE.Controllers.Main.txtShape_flowChartMagneticDisk":"Diagrama de flujo: Disco magnético","DE.Controllers.Main.txtShape_flowChartMagneticDrum":"Diagrama de flujo: Almacenamiento de acceso directo","DE.Controllers.Main.txtShape_flowChartMagneticTape":"Diagrama de flujo: Almacenamiento de acceso secuencial","DE.Controllers.Main.txtShape_flowChartManualInput":"Diagrama de flujo: Entrada manual","DE.Controllers.Main.txtShape_flowChartManualOperation":"Diagrama de flujo: Operación manual","DE.Controllers.Main.txtShape_flowChartMerge":"Combinar","DE.Controllers.Main.txtShape_flowChartMultidocument":"Multidocumento","DE.Controllers.Main.txtShape_flowChartOffpageConnector":"Diagrama de flujo: Conector fuera de página","DE.Controllers.Main.txtShape_flowChartOnlineStorage":"Diagrama de flujo: Datos almacenados","DE.Controllers.Main.txtShape_flowChartOr":"Diagrama de flujo: O","DE.Controllers.Main.txtShape_flowChartPredefinedProcess":"Diagrama de flujo: Proceso predefinido","DE.Controllers.Main.txtShape_flowChartPreparation":"Preparación","DE.Controllers.Main.txtShape_flowChartProcess":"Proceso","DE.Controllers.Main.txtShape_flowChartPunchedCard":"Tarjeta","DE.Controllers.Main.txtShape_flowChartPunchedTape":"Diagrama de flujo: Cinta perforada","DE.Controllers.Main.txtShape_flowChartSort":"Ordenar","DE.Controllers.Main.txtShape_flowChartSummingJunction":"Diagrama de flujo: Conexión sumadora","DE.Controllers.Main.txtShape_flowChartTerminator":"Terminador","DE.Controllers.Main.txtShape_foldedCorner":"Esquina doblada","DE.Controllers.Main.txtShape_frame":"Marco","DE.Controllers.Main.txtShape_halfFrame":"Medio marco","DE.Controllers.Main.txtShape_heart":"Corazón","DE.Controllers.Main.txtShape_heptagon":"Heptágono","DE.Controllers.Main.txtShape_hexagon":"Hexágono","DE.Controllers.Main.txtShape_homePlate":"Pentágono","DE.Controllers.Main.txtShape_horizontalScroll":"Pergamino horizontal","DE.Controllers.Main.txtShape_irregularSeal1":"Explosión 1","DE.Controllers.Main.txtShape_irregularSeal2":"Explosión 2","DE.Controllers.Main.txtShape_leftArrow":"Flecha izquierda","DE.Controllers.Main.txtShape_leftArrowCallout":"Llamada de flecha a la izquierda","DE.Controllers.Main.txtShape_leftBrace":"Abrir llave","DE.Controllers.Main.txtShape_leftBracket":"Abrir corchete","DE.Controllers.Main.txtShape_leftRightArrow":"Flecha izquierda y derecha","DE.Controllers.Main.txtShape_leftRightArrowCallout":"Llamada de flecha izquierda y derecha","DE.Controllers.Main.txtShape_leftRightUpArrow":"Flecha izquierda, derecha y arriba","DE.Controllers.Main.txtShape_leftUpArrow":"Flecha izquierda y arriba","DE.Controllers.Main.txtShape_lightningBolt":"Rayo","DE.Controllers.Main.txtShape_line":"Línea","DE.Controllers.Main.txtShape_lineWithArrow":"Flecha","DE.Controllers.Main.txtShape_lineWithTwoArrows":"Flecha doble","DE.Controllers.Main.txtShape_mathDivide":"División","DE.Controllers.Main.txtShape_mathEqual":"Igual","DE.Controllers.Main.txtShape_mathMinus":"Menos","DE.Controllers.Main.txtShape_mathMultiply":"Multiplicar","DE.Controllers.Main.txtShape_mathNotEqual":"No igual","DE.Controllers.Main.txtShape_mathPlus":"Más","DE.Controllers.Main.txtShape_moon":"Luna","DE.Controllers.Main.txtShape_noSmoking":"Señal de prohibición","DE.Controllers.Main.txtShape_notchedRightArrow":"Flecha a la derecha con muesca","DE.Controllers.Main.txtShape_octagon":"Octágono","DE.Controllers.Main.txtShape_parallelogram":"Paralelogramo","DE.Controllers.Main.txtShape_pentagon":"Pentágono","DE.Controllers.Main.txtShape_pie":"Gráfico circular","DE.Controllers.Main.txtShape_plaque":"Signo","DE.Controllers.Main.txtShape_plus":"Más","DE.Controllers.Main.txtShape_polyline1":"A mano alzada","DE.Controllers.Main.txtShape_polyline2":"Forma libre","DE.Controllers.Main.txtShape_quadArrow":"Flecha cuádruple","DE.Controllers.Main.txtShape_quadArrowCallout":"Llamada de flecha cuádruple","DE.Controllers.Main.txtShape_rect":"Rectángulo","DE.Controllers.Main.txtShape_ribbon":"Cinta hacia abajo","DE.Controllers.Main.txtShape_ribbon2":"Cinta hacia arriba","DE.Controllers.Main.txtShape_rightArrow":"Flecha derecha","DE.Controllers.Main.txtShape_rightArrowCallout":"Llamada de flecha a la derecha","DE.Controllers.Main.txtShape_rightBrace":"Cerrar llave","DE.Controllers.Main.txtShape_rightBracket":"Cerrar corchete","DE.Controllers.Main.txtShape_round1Rect":"Rectángulo sencillo de esquina redondeada","DE.Controllers.Main.txtShape_round2DiagRect":"Rectángulo de esquina redondeada en diagonal","DE.Controllers.Main.txtShape_round2SameRect":"Rectángulo de esquina redondeada del mismo lado","DE.Controllers.Main.txtShape_roundRect":"Rectángulo con esquinas redondeadas","DE.Controllers.Main.txtShape_rtTriangle":"Triángulo rectángulo","DE.Controllers.Main.txtShape_smileyFace":"Cara sonriente","DE.Controllers.Main.txtShape_snip1Rect":"Rectángulo de esquina sencilla recortada","DE.Controllers.Main.txtShape_snip2DiagRect":"Rectángulo de esquina diagonal recortada","DE.Controllers.Main.txtShape_snip2SameRect":"Rectángulo de esquina recortada del mismo lado","DE.Controllers.Main.txtShape_snipRoundRect":"Rectángulo de esquina sencilla redondeada y recortada","DE.Controllers.Main.txtShape_spline":"Curva","DE.Controllers.Main.txtShape_star10":"Estrella de 10 puntas","DE.Controllers.Main.txtShape_star12":"Estrella de 12 puntas","DE.Controllers.Main.txtShape_star16":"Estrella de 16 puntas","DE.Controllers.Main.txtShape_star24":"Estrella de 24 puntas","DE.Controllers.Main.txtShape_star32":"Estrella de 32 puntas","DE.Controllers.Main.txtShape_star4":"Estrella de 4 puntas","DE.Controllers.Main.txtShape_star5":"Estrella de 5 puntas","DE.Controllers.Main.txtShape_star6":"Estrella de 6 puntas","DE.Controllers.Main.txtShape_star7":"Estrella de 7 puntas","DE.Controllers.Main.txtShape_star8":"Estrella de 8 puntas","DE.Controllers.Main.txtShape_stripedRightArrow":"Flecha a la derecha con bandas","DE.Controllers.Main.txtShape_sun":"Sol","DE.Controllers.Main.txtShape_teardrop":"Lágrima","DE.Controllers.Main.txtShape_textRect":"Cuadro de texto","DE.Controllers.Main.txtShape_trapezoid":"Trapecio","DE.Controllers.Main.txtShape_triangle":"Triángulo","DE.Controllers.Main.txtShape_upArrow":"Flecha hacia arriba","DE.Controllers.Main.txtShape_upArrowCallout":"Llamada de flecha hacia arriba","DE.Controllers.Main.txtShape_upDownArrow":"Flecha hacia arriba y abajo","DE.Controllers.Main.txtShape_uturnArrow":"Flecha en U","DE.Controllers.Main.txtShape_verticalScroll":"Pergamino vertical","DE.Controllers.Main.txtShape_wave":"Onda","DE.Controllers.Main.txtShape_wedgeEllipseCallout":"Globo ovalado","DE.Controllers.Main.txtShape_wedgeRectCallout":"Llamada rectangular","DE.Controllers.Main.txtShape_wedgeRoundRectCallout":"Llamada rectangular redondeada","DE.Controllers.Main.txtStarsRibbons":"Cintas y estrellas","DE.Controllers.Main.txtStyle_Book_Title":"Título del libro","DE.Controllers.Main.txtStyle_Caption":"Leyenda","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"Fuente de párrafo predeterminada","DE.Controllers.Main.txtStyle_Emphasis":"Énfasis","DE.Controllers.Main.txtStyle_endnote_reference":"Referencia de la nota al final","DE.Controllers.Main.txtStyle_endnote_text":"Texto de nota al final","DE.Controllers.Main.txtStyle_footnote_reference":"Referencia de la nota al pie","DE.Controllers.Main.txtStyle_footnote_text":"Texto de nota al pie","DE.Controllers.Main.txtStyle_Heading_1":"Título 1","DE.Controllers.Main.txtStyle_Heading_2":"Título 2","DE.Controllers.Main.txtStyle_Heading_3":"Título 3","DE.Controllers.Main.txtStyle_Heading_4":"Título 4","DE.Controllers.Main.txtStyle_Heading_5":"Título 5","DE.Controllers.Main.txtStyle_Heading_6":"Título 6","DE.Controllers.Main.txtStyle_Heading_7":"Título 7","DE.Controllers.Main.txtStyle_Heading_8":"Título 8","DE.Controllers.Main.txtStyle_Heading_9":"Título 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"Énfasis intenso","DE.Controllers.Main.txtStyle_Intense_Quote":"Cita destacada","DE.Controllers.Main.txtStyle_Intense_Reference":"Referencia intensa","DE.Controllers.Main.txtStyle_List_Paragraph":"Párrafo de la lista","DE.Controllers.Main.txtStyle_No_List":"No hay lista","DE.Controllers.Main.txtStyle_No_Spacing":"Sin espacio","DE.Controllers.Main.txtStyle_Normal":"Normal","DE.Controllers.Main.txtStyle_Quote":"Cita","DE.Controllers.Main.txtStyle_Strong":"Fuerte","DE.Controllers.Main.txtStyle_Subtitle":"Subtítulo","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"Énfasis sutil","DE.Controllers.Main.txtStyle_Subtle_Reference":"Referencia sutil","DE.Controllers.Main.txtStyle_Title":"Título","DE.Controllers.Main.txtSyntaxError":"Error de sintaxis","DE.Controllers.Main.txtTableInd":"El índice de la tabla no puede ser cero","DE.Controllers.Main.txtTableOfContents":"Tabla de contenidos","DE.Controllers.Main.txtTableOfFigures":"Tabla de ilustraciones","DE.Controllers.Main.txtTOCHeading":"Título de la tabla de contenidos","DE.Controllers.Main.txtTooLarge":"El número es demasiado grande para darle formato","DE.Controllers.Main.txtTypeEquation":"Escriba una ecuación aquí.","DE.Controllers.Main.txtUndefBookmark":"Marcador no definido","DE.Controllers.Main.txtXAxis":"Eje X","DE.Controllers.Main.txtYAxis":"Eje Y","DE.Controllers.Main.txtZeroDivide":"División por cero","DE.Controllers.Main.unknownErrorText":"Error desconocido.","DE.Controllers.Main.unsupportedBrowserErrorText":"Su navegador no es compatible.","DE.Controllers.Main.updateChartText":"Actualizando los datos del gráfico...","DE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconocido","DE.Controllers.Main.uploadDocFileCountMessage":"No hay documentos subidos","DE.Controllers.Main.uploadDocSizeMessage":"Se ha excedido el límite de tamaño máximo del documento.","DE.Controllers.Main.uploadImageExtMessage":"Formato de imagen desconocido.","DE.Controllers.Main.uploadImageFileCountMessage":"No se ha cargado ninguna imagen.","DE.Controllers.Main.uploadImageSizeMessage":"La imagen es demasiado grande. El tamaño máximo es de 25 MB.","DE.Controllers.Main.uploadImageTextText":"Subiendo imagen...","DE.Controllers.Main.uploadImageTitleText":"Subiendo imagen","DE.Controllers.Main.waitText":"Por favor, espere...","DE.Controllers.Main.warnBrowserIE9":"Esta aplicación tiene bajas capacidades en IE9. Utilice IE10 o superior","DE.Controllers.Main.warnBrowserZoom":"La configuración actual de 'zoom' de su navegador no es compatible por completo. Por favor, restablezca el 'zoom' predeterminado pulsando Ctrl+0.","DE.Controllers.Main.warnLicenseAnonymous":"Acceso denegado a usuarios anónimos.
Este documento se abrirá solo para su visualización.","DE.Controllers.Main.warnLicenseBefore":"Licencia no activa.
Por favor, póngase en contacto con su administrador.","DE.Controllers.Main.warnLicenseExp":"Su licencia ha expirado.
Por favor, actualice su licencia y después recargue la página.","DE.Controllers.Main.warnLicenseLimitedNoAccess":"Licencia expirada.
No tiene acceso a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador.","DE.Controllers.Main.warnLicenseLimitedRenewed":"Se requiere que renueve su licencia.
Tiene un acceso limitado a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador para obtener un acceso completo","DE.Controllers.Main.warnNoLicense":"Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá en modo de solo lectura.
Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.","DE.Controllers.Main.warnNoLicenseUsers":"Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.","DE.Controllers.Main.warnProcessRightsChange":"No tiene permiso para editar este documento","DE.Controllers.Main.warnStartFilling":"El rellenado de formularios está en curso.
La edición de archivos no está disponible actualmente.","DE.Controllers.Navigation.txtBeginning":"Principio del documento","DE.Controllers.Navigation.txtGotoBeginning":"Ir al principio del documento","DE.Controllers.Print.textMarginsLast":"Último personalizado","DE.Controllers.Print.txtCustom":"Personalizado","DE.Controllers.Print.txtPrintRangeInvalid":"Intervalo de impresión no válido","DE.Controllers.Search.notcriticalErrorTitle":"Advertencia","DE.Controllers.Search.textNoTextFound":"No se pueden encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","DE.Controllers.Search.textReplaceSkipped":"Se ha realizado el reemplazo. Se han omitido {0} coincidencias.","DE.Controllers.Search.textReplaceSuccess":"Se ha realizado la búsqueda. Se han sustituido {0} coincidencias.","DE.Controllers.Search.warnReplaceString":"{0} no es un carácter especial válido para la casilla «Reemplazar con».","DE.Controllers.Statusbar.textDisconnect":"Se ha perdido la conexión
Intentando conectar. Por favor, compruebe la configuración de la conexión.","DE.Controllers.Statusbar.textHasChanges":"Se han registrado nuevos cambios","DE.Controllers.Statusbar.textSetTrackChanges":"Usted está en el modo de seguimiento de cambios","DE.Controllers.Statusbar.textTrackChanges":"El documento se abre con el modo de seguimiento de cambios activado","DE.Controllers.Statusbar.tipReview":"Seguimiento de cambios","DE.Controllers.Statusbar.zoomText":"Ampliación {0}%","DE.Controllers.Toolbar.confirmAddFontName":"La fuente que va a guardar no está disponible en este dispositivo.
El estilo del texto se mostrará usando una de las fuentes encontradas en el dispositivo, la fuente guardada se usará cuando esté disponible.
¿Desea continuar?","DE.Controllers.Toolbar.dataUrl":"Pegar una URL de datos","DE.Controllers.Toolbar.errorAccessDeny":"Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del Servidor de documentos.","DE.Controllers.Toolbar.fileUrl":"Pegar la URL de un archivo","DE.Controllers.Toolbar.helpChartElements":"Cambie fácilmente la visibilidad de los elementos del gráfico con unos pocos clics.","DE.Controllers.Toolbar.helpChartElementsHeader":"Visualización de elementos del gráfico","DE.Controllers.Toolbar.helpCommentFilter":"Gestione su vista alternando entre comentarios abiertos y resueltos en el panel izquierdo.","DE.Controllers.Toolbar.helpCommentFilterHeader":"Filtros de comentarios","DE.Controllers.Toolbar.notcriticalErrorTitle":"Aviso","DE.Controllers.Toolbar.textAccent":"Acentos","DE.Controllers.Toolbar.textBracket":"Paréntesis","DE.Controllers.Toolbar.textConvertFormDownload":"Descargue el archivo en formato PDF para poder rellenarlo.","DE.Controllers.Toolbar.textConvertFormSave":"Guarde el archivo como un formulario PDF rellenable para poder rellenarlo.","DE.Controllers.Toolbar.textDownloadPdf":"Descargar PDF","DE.Controllers.Toolbar.textEmptyMMergeUrl":"Debe especificar la URL.","DE.Controllers.Toolbar.textFontSizeErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico entre 1 y 300","DE.Controllers.Toolbar.textFraction":"Fracciones","DE.Controllers.Toolbar.textFunction":"Funciones","DE.Controllers.Toolbar.textGroup":"Grupo","DE.Controllers.Toolbar.textInsert":"Insertar","DE.Controllers.Toolbar.textIntegral":"Integrales","DE.Controllers.Toolbar.textLargeOperator":"Operadores grandes","DE.Controllers.Toolbar.textLimitAndLog":"Límites y logaritmos","DE.Controllers.Toolbar.textMatrix":"Matrices","DE.Controllers.Toolbar.textOperator":"Operadores","DE.Controllers.Toolbar.textRadical":"Radicales","DE.Controllers.Toolbar.textRecentlyUsed":"Usados recientemente","DE.Controllers.Toolbar.textSavePdf":"Guardar como PDF","DE.Controllers.Toolbar.textScript":"Letras","DE.Controllers.Toolbar.textSymbols":"Símbolos","DE.Controllers.Toolbar.textTabForms":"Formularios","DE.Controllers.Toolbar.textWarning":"Aviso","DE.Controllers.Toolbar.txtAccent_Accent":"Acento agudo","DE.Controllers.Toolbar.txtAccent_ArrowD":"Flecha derecha-izquierda superior","DE.Controllers.Toolbar.txtAccent_ArrowL":"Flecha superior hacia izquierda","DE.Controllers.Toolbar.txtAccent_ArrowR":"Flecha superior hacia derecha","DE.Controllers.Toolbar.txtAccent_Bar":"Barra","DE.Controllers.Toolbar.txtAccent_BarBot":"Barra subyacente","DE.Controllers.Toolbar.txtAccent_BarTop":"Barra superpuesta","DE.Controllers.Toolbar.txtAccent_BorderBox":"Fórmula encuadrada (con marcador de posición)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"Fórmula encuadrada (ejemplo)","DE.Controllers.Toolbar.txtAccent_Check":"Comprobar","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"Llave subyacente","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"Llave superpuesta","DE.Controllers.Toolbar.txtAccent_Custom_1":"Vector A","DE.Controllers.Toolbar.txtAccent_Custom_2":"ABC con barra superpuesta","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y con barra superpuesta","DE.Controllers.Toolbar.txtAccent_DDDot":"Tres puntos","DE.Controllers.Toolbar.txtAccent_DDot":"Dos puntos","DE.Controllers.Toolbar.txtAccent_Dot":"Punto","DE.Controllers.Toolbar.txtAccent_DoubleBar":"Barra doble superpuesta","DE.Controllers.Toolbar.txtAccent_Grave":"Acento grave","DE.Controllers.Toolbar.txtAccent_GroupBot":"Carácter de agrupación inferior","DE.Controllers.Toolbar.txtAccent_GroupTop":"Carácter de agrupación superior","DE.Controllers.Toolbar.txtAccent_HarpoonL":"Arpón superior hacia izquierdo","DE.Controllers.Toolbar.txtAccent_HarpoonR":"Arpón superior hacia derecha","DE.Controllers.Toolbar.txtAccent_Hat":"Circunflejo","DE.Controllers.Toolbar.txtAccent_Smile":"Acento breve","DE.Controllers.Toolbar.txtAccent_Tilde":"Virgulilla","DE.Controllers.Toolbar.txtBracket_Angle":"Corchetes angulares","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"Corchetes angulares con separador","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"Corchetes angulares con dos separadores","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"Corchete angular de cierre","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"Corchete angular de apertura","DE.Controllers.Toolbar.txtBracket_Curve":"Llaves","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"Llaves con separador","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"Llave de cierre","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"Llave de apertura","DE.Controllers.Toolbar.txtBracket_Custom_1":"Casos (dos condiciones)","DE.Controllers.Toolbar.txtBracket_Custom_2":"Casos (tres condiciones)","DE.Controllers.Toolbar.txtBracket_Custom_3":"Objeto de pila","DE.Controllers.Toolbar.txtBracket_Custom_4":"Objeto acotado entre paréntesis","DE.Controllers.Toolbar.txtBracket_Custom_5":"Ejemplo de casos","DE.Controllers.Toolbar.txtBracket_Custom_6":"Coeficiente de binomio","DE.Controllers.Toolbar.txtBracket_Custom_7":"Coeficiente binomial en corchetes angulares","DE.Controllers.Toolbar.txtBracket_Line":"Plecas","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"Pleca de cierre","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"Pleca de apertura","DE.Controllers.Toolbar.txtBracket_LineDouble":"Plecas dobles","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"Pleca doble de cierre","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"Pleca doble de apertura","DE.Controllers.Toolbar.txtBracket_LowLim":"Corchete inferior","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"Corchete inferior de cierre","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"Corchete inferior de apertura","DE.Controllers.Toolbar.txtBracket_Round":"Paréntesis","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"Paréntesis con separador","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"Paréntesis de cierre","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"Paréntesis de apertura","DE.Controllers.Toolbar.txtBracket_Square":"Corchetes","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"Marcador de posición entre dos corchetes de cierre","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"Corchetes invertidos","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"Corchete de cierre","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"Corchete de apertura","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"Marcador de posición entre dos corchetes de apertura","DE.Controllers.Toolbar.txtBracket_SquareDouble":"Corchetes dobles","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"Corchete doble de cierre","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"Corchete doble de apertura","DE.Controllers.Toolbar.txtBracket_UppLim":"Corchete de techo","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"Corchete de techo de cierre","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"Corchete de techo de apertura","DE.Controllers.Toolbar.txtDownload":"Descargar","DE.Controllers.Toolbar.txtFractionDiagonal":"Fracción sesgada","DE.Controllers.Toolbar.txtFractionDifferential_1":"dx sobre dy","DE.Controllers.Toolbar.txtFractionDifferential_2":"Delta mayúscula y sobre delta mayúscula x","DE.Controllers.Toolbar.txtFractionDifferential_3":"y parcial sobre x parcial","DE.Controllers.Toolbar.txtFractionDifferential_4":"Delta y sobre delta x","DE.Controllers.Toolbar.txtFractionHorizontal":"Fracción lineal","DE.Controllers.Toolbar.txtFractionPi_2":"Pi dividir a 2","DE.Controllers.Toolbar.txtFractionSmall":"Fracción pequeña","DE.Controllers.Toolbar.txtFractionVertical":"Fracción apilada","DE.Controllers.Toolbar.txtFunction_1_Cos":"Función de coseno inversa","DE.Controllers.Toolbar.txtFunction_1_Cosh":"Función de coseno inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Cot":"Función de cotangente inversa","DE.Controllers.Toolbar.txtFunction_1_Coth":"Función de cotangente inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Csc":"Función de cosecante inversa","DE.Controllers.Toolbar.txtFunction_1_Csch":"Función de cosecante inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Sec":"Función de secante inversa","DE.Controllers.Toolbar.txtFunction_1_Sech":"Función de secante inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Sin":"Función de seno inversa","DE.Controllers.Toolbar.txtFunction_1_Sinh":"Función de seno inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Tan":"Función de tangente inversa","DE.Controllers.Toolbar.txtFunction_1_Tanh":"Función de tangente inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_Cos":"Función de coseno","DE.Controllers.Toolbar.txtFunction_Cosh":"Función de coseno hiperbólica","DE.Controllers.Toolbar.txtFunction_Cot":"Función de cotangente","DE.Controllers.Toolbar.txtFunction_Coth":"Función de cotangente hiperbólica","DE.Controllers.Toolbar.txtFunction_Csc":"Función de cosecante","DE.Controllers.Toolbar.txtFunction_Csch":"Función de cosecante hiperbólica","DE.Controllers.Toolbar.txtFunction_Custom_1":"Seno zeta","DE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"Fórmula de tangente","DE.Controllers.Toolbar.txtFunction_Sec":"Función de secante","DE.Controllers.Toolbar.txtFunction_Sech":"Función de secante hiperbólica","DE.Controllers.Toolbar.txtFunction_Sin":"Función de seno","DE.Controllers.Toolbar.txtFunction_Sinh":"Función de seno hiperbólica","DE.Controllers.Toolbar.txtFunction_Tan":"Función de tangente","DE.Controllers.Toolbar.txtFunction_Tanh":"Función de tangente hiperbólica","DE.Controllers.Toolbar.txtIntegral":"Integral","DE.Controllers.Toolbar.txtIntegral_dtheta":"Diferencial zeta","DE.Controllers.Toolbar.txtIntegral_dx":"Diferencial x","DE.Controllers.Toolbar.txtIntegral_dy":"Diferencial y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral con límites acotados","DE.Controllers.Toolbar.txtIntegralDouble":"Integral doble","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Integral doble con límites acotados","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Integral doble con límites","DE.Controllers.Toolbar.txtIntegralOriented":"Integral de contorno","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"Integral de contorno con límites acotados","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"Integral de superficie","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Integral de superficie con límites acotados","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"Integral de superficie con límites","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"Integral de contorno con límites","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"Integral de volumen","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"Integral de volumen con límites acotados","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"Integral de volumen con límites","DE.Controllers.Toolbar.txtIntegralSubSup":"Integral con límites","DE.Controllers.Toolbar.txtIntegralTriple":"Integral triple","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Integral triple con límites acotados","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"Integral triple con límites","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Y lógico","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Y lógico con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Y lógico con límites","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Y lógico con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Y lógico con límites de subíndice/supraíndice","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"Coproducto","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Coproducto con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Coproducto con límites","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Coproducto con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Coproducto con límites de subíndice/supraíndice","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Sumatoria sobre k de n sobre k","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Sumatoria de i igual a cero a n","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Ejemplo de suma con dos índices","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Ejemplo del producto","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"Ejemplo de unión","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"O lógico","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"O lógico con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"O lógico con límites","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"O lógico con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"O lógico con límites de subíndice/supraíndice","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"Intersección","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"Intersección con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"Intersección con límites","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"Intersección con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"Intersección con límites de subíndice/superíndice","DE.Controllers.Toolbar.txtLargeOperator_Prod":"Producto","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Producto con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Producto con límites","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Producto con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Producto con límites de subíndice/superíndice","DE.Controllers.Toolbar.txtLargeOperator_Sum":"Suma","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Sumatoria con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Sumatoria con límites","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Sumatoria con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Sumatoria con límites de subíndice/supraíndice","DE.Controllers.Toolbar.txtLargeOperator_Union":"Unión","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"Unión con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"Unión con límites","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"Unión con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"Unión con límites de subíndice/superíndice","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"Ejemplo de límite","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"Ejemplo de máximo","DE.Controllers.Toolbar.txtLimitLog_Lim":"Límite","DE.Controllers.Toolbar.txtLimitLog_Ln":"Logaritmo natural","DE.Controllers.Toolbar.txtLimitLog_Log":"Logaritmo","DE.Controllers.Toolbar.txtLimitLog_LogBase":"Logaritmo","DE.Controllers.Toolbar.txtLimitLog_Max":"Máximo","DE.Controllers.Toolbar.txtLimitLog_Min":"Mínimo","DE.Controllers.Toolbar.txtMarginsH":"Los márgenes superior e inferior son demasiado altos para la altura de la página","DE.Controllers.Toolbar.txtMarginsW":"Los márgenes izquierdo y derecho son demasiado anchos para la anchura de la página","DE.Controllers.Toolbar.txtMatrix_1_2":"Matriz vacía de 1x2","DE.Controllers.Toolbar.txtMatrix_1_3":"Matriz vacía de 1x3","DE.Controllers.Toolbar.txtMatrix_2_1":"Matriz vacía de 2x1","DE.Controllers.Toolbar.txtMatrix_2_2":"Matriz vacía de 2x2","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"Matriz de 2 por 2 vacía entre plecas dobles","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"Determinante de 2 por 2 vacío","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"Matriz de 2 por 2 vacía entre paréntesis","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"Matriz de 2 por 2 vacía entre paréntesis","DE.Controllers.Toolbar.txtMatrix_2_3":"Matriz vacía de 2x3","DE.Controllers.Toolbar.txtMatrix_3_1":"Matriz vacía de 3x1","DE.Controllers.Toolbar.txtMatrix_3_2":"Matriz vacía de 3x2","DE.Controllers.Toolbar.txtMatrix_3_3":"Matriz vacía de 3x3","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"Puntos en línea base","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"Puntos en línea media","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"Puntos diagonales","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"Puntos verticales","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"Matriz dispersa entre paréntesis","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"Matriz dispersa entre corchetes","DE.Controllers.Toolbar.txtMatrix_Identity_2":"Matriz de identidad de 2x2 con ceros","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"Matriz de identidad de 2x2 con celdas en blanco que no están en la diagonal","DE.Controllers.Toolbar.txtMatrix_Identity_3":"Matriz de identidad de 3x3 con ceros","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"Matriz de identidad de 3x3 con celdas en blanco que no están en la diagonal","DE.Controllers.Toolbar.txtNeedDownload":"El visor de PDF solo puede guardar los nuevos cambios en copias separadas del archivo. No admite la coedición y otros usuarios no verán sus cambios a menos que comparta una nueva versión del archivo.","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"Flecha derecha-izquierda inferior","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"Flecha derecha-izquierda superior","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"Flecha inferior hacia izquierda","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"Flecha superior hacia izquierda","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"Flecha inferior hacia derecha","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"Flecha superior hacia derecha","DE.Controllers.Toolbar.txtOperator_ColonEquals":"Dos puntos igual","DE.Controllers.Toolbar.txtOperator_Custom_1":"Produce","DE.Controllers.Toolbar.txtOperator_Custom_2":"Produce con delta","DE.Controllers.Toolbar.txtOperator_Definition":"Igual por definición","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta igual a","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"Flecha doble inferior derecha e izquierda","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"Flecha doble superior derecha e izquierda","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"Flecha inferior hacia izquierda","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"Flecha superior hacia izquierda","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"Flecha inferior hacia derecha","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"Flecha superior hacia derecha","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"Igual igual","DE.Controllers.Toolbar.txtOperator_MinusEquals":"Menos igual","DE.Controllers.Toolbar.txtOperator_PlusEquals":"Más igual","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"Unidad de medida","DE.Controllers.Toolbar.txtRadicalCustom_1":"Lado derecho de la fórmula cuadrática","DE.Controllers.Toolbar.txtRadicalCustom_2":"Raíz cuadrada de un cuadrado más b al cuadrado","DE.Controllers.Toolbar.txtRadicalRoot_2":"Raíz cuadrada con índice","DE.Controllers.Toolbar.txtRadicalRoot_3":"Raíz cúbica","DE.Controllers.Toolbar.txtRadicalRoot_n":"Radical con índice","DE.Controllers.Toolbar.txtRadicalSqrt":"Raíz cuadrada","DE.Controllers.Toolbar.txtSaveCopy":"Guardar copia","DE.Controllers.Toolbar.txtScriptCustom_1":"x subíndice y al cuadrado","DE.Controllers.Toolbar.txtScriptCustom_2":"e elevado a menos i omega t","DE.Controllers.Toolbar.txtScriptCustom_3":"x al cuadrado","DE.Controllers.Toolbar.txtScriptCustom_4":"Y superíndice izquierdo n subíndice izquierdo uno","DE.Controllers.Toolbar.txtScriptSub":"Subíndice","DE.Controllers.Toolbar.txtScriptSubSup":"Subíndice/Superíndice","DE.Controllers.Toolbar.txtScriptSubSupLeft":"Subíndice-superíndice izquierdo","DE.Controllers.Toolbar.txtScriptSup":"Sobreíndice","DE.Controllers.Toolbar.txtSymbol_about":"Aproximadamente","DE.Controllers.Toolbar.txtSymbol_additional":"Complemento","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Alfa","DE.Controllers.Toolbar.txtSymbol_approx":"Casi igual a","DE.Controllers.Toolbar.txtSymbol_ast":"Operador asterisco","DE.Controllers.Toolbar.txtSymbol_beta":"Beta","DE.Controllers.Toolbar.txtSymbol_beth":"Bet","DE.Controllers.Toolbar.txtSymbol_bullet":"Operador de viñeta","DE.Controllers.Toolbar.txtSymbol_cap":"Intersección","DE.Controllers.Toolbar.txtSymbol_cbrt":"Raíz cúbica","DE.Controllers.Toolbar.txtSymbol_cdots":"Elipsis horizontal de línea media","DE.Controllers.Toolbar.txtSymbol_celsius":"Grados Celsius","DE.Controllers.Toolbar.txtSymbol_chi":"Ji","DE.Controllers.Toolbar.txtSymbol_cong":"Aproximadamente igual a","DE.Controllers.Toolbar.txtSymbol_cup":"Unión","DE.Controllers.Toolbar.txtSymbol_ddots":"Elipsis en diagonal de derecha a izquierda","DE.Controllers.Toolbar.txtSymbol_degree":"Grados","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"Signo de división","DE.Controllers.Toolbar.txtSymbol_downarrow":"Flecha hacia abajo","DE.Controllers.Toolbar.txtSymbol_emptyset":"Conjunto vacío","DE.Controllers.Toolbar.txtSymbol_epsilon":"Épsilon","DE.Controllers.Toolbar.txtSymbol_equals":"Igual","DE.Controllers.Toolbar.txtSymbol_equiv":"Idéntico a","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"Existe","DE.Controllers.Toolbar.txtSymbol_factorial":"Factorial","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"Grados Fahrenheit","DE.Controllers.Toolbar.txtSymbol_forall":"Para todos","DE.Controllers.Toolbar.txtSymbol_gamma":"Gamma","DE.Controllers.Toolbar.txtSymbol_geq":"Mayor o igual a","DE.Controllers.Toolbar.txtSymbol_gg":"Mucho mayor que","DE.Controllers.Toolbar.txtSymbol_greater":"Mayor que","DE.Controllers.Toolbar.txtSymbol_in":"Elemento de","DE.Controllers.Toolbar.txtSymbol_inc":"Incremento","DE.Controllers.Toolbar.txtSymbol_infinity":"Infinito","DE.Controllers.Toolbar.txtSymbol_iota":"Iota","DE.Controllers.Toolbar.txtSymbol_kappa":"Kappa","DE.Controllers.Toolbar.txtSymbol_lambda":"Lambda","DE.Controllers.Toolbar.txtSymbol_leftarrow":"Flecha izquierda","DE.Controllers.Toolbar.txtSymbol_leftrightarrow":"Flecha izquierda-derecha","DE.Controllers.Toolbar.txtSymbol_leq":"Menor o igual a","DE.Controllers.Toolbar.txtSymbol_less":"Menor que","DE.Controllers.Toolbar.txtSymbol_ll":"Mucho menor que","DE.Controllers.Toolbar.txtSymbol_minus":"Menos","DE.Controllers.Toolbar.txtSymbol_mp":"Menos más","DE.Controllers.Toolbar.txtSymbol_mu":"Mi","DE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","DE.Controllers.Toolbar.txtSymbol_neq":"No igual a","DE.Controllers.Toolbar.txtSymbol_ni":"Contiene como miembro","DE.Controllers.Toolbar.txtSymbol_not":"Signo de negación","DE.Controllers.Toolbar.txtSymbol_notexists":"No existe","DE.Controllers.Toolbar.txtSymbol_nu":"Ni","DE.Controllers.Toolbar.txtSymbol_o":"Ómicron","DE.Controllers.Toolbar.txtSymbol_omega":"Omega","DE.Controllers.Toolbar.txtSymbol_partial":"Derivada parcial","DE.Controllers.Toolbar.txtSymbol_percent":"Porcentaje","DE.Controllers.Toolbar.txtSymbol_phi":"Fi","DE.Controllers.Toolbar.txtSymbol_pi":"Pi","DE.Controllers.Toolbar.txtSymbol_plus":"Más","DE.Controllers.Toolbar.txtSymbol_pm":"Más menos","DE.Controllers.Toolbar.txtSymbol_propto":"Proporcional a","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"Raíz cuarta","DE.Controllers.Toolbar.txtSymbol_qed":"Lo que era necesario demostrar","DE.Controllers.Toolbar.txtSymbol_rddots":"Elipsis en diagonal de izquierda a derecha","DE.Controllers.Toolbar.txtSymbol_rho":"Ro","DE.Controllers.Toolbar.txtSymbol_rightarrow":"Flecha derecha","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"Signo de radical","DE.Controllers.Toolbar.txtSymbol_tau":"Tau","DE.Controllers.Toolbar.txtSymbol_therefore":"Por lo tanto ","DE.Controllers.Toolbar.txtSymbol_theta":"Zeta","DE.Controllers.Toolbar.txtSymbol_times":"Signo de multiplicación","DE.Controllers.Toolbar.txtSymbol_uparrow":"Flecha hacia arriba","DE.Controllers.Toolbar.txtSymbol_upsilon":"Ípsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Variante de épsilon","DE.Controllers.Toolbar.txtSymbol_varphi":"Variante fi","DE.Controllers.Toolbar.txtSymbol_varpi":"Variante pi","DE.Controllers.Toolbar.txtSymbol_varrho":"Variante ro","DE.Controllers.Toolbar.txtSymbol_varsigma":"Variante sigma","DE.Controllers.Toolbar.txtSymbol_vartheta":"Variante zeta","DE.Controllers.Toolbar.txtSymbol_vdots":"Elipsis vertical","DE.Controllers.Toolbar.txtSymbol_xsi":"Csi","DE.Controllers.Toolbar.txtSymbol_zeta":"Dseda","DE.Controllers.Toolbar.txtUntitled":"Sin título","DE.Controllers.Viewport.textFitPage":"Ajustar a la página","DE.Controllers.Viewport.textFitWidth":"Ajustar al ancho","DE.Controllers.Viewport.txtDarkMode":"Modo oscuro","DE.Views.BookmarksDialog.textAdd":"Añadir","DE.Views.BookmarksDialog.textAddAndGetLink":"Añadir y obtener enlace","DE.Views.BookmarksDialog.textBookmarkName":"Nombre del marcador","DE.Views.BookmarksDialog.textClose":"Cerrar","DE.Views.BookmarksDialog.textCopy":"Copiar ","DE.Views.BookmarksDialog.textDelete":"Eliminar","DE.Views.BookmarksDialog.textGetLink":"Obtener enlace","DE.Views.BookmarksDialog.textGoto":"Ir a","DE.Views.BookmarksDialog.textHidden":"Marcadores ocultos","DE.Views.BookmarksDialog.textLocation":"Ubicación","DE.Views.BookmarksDialog.textName":"Nombre","DE.Views.BookmarksDialog.textSort":"Ordenar por","DE.Views.BookmarksDialog.textTitle":"Marcadores","DE.Views.BookmarksDialog.txtInvalidName":"El nombre del marcador solo puede contener letras, dígitos y barras bajas y debe comenzar con una letra","DE.Views.CaptionDialog.textAdd":"Añadir","DE.Views.CaptionDialog.textAfter":"Después","DE.Views.CaptionDialog.textBefore":"Antes","DE.Views.CaptionDialog.textCaption":"Leyenda","DE.Views.CaptionDialog.textChapter":"Iniciar capítulo con el estilo","DE.Views.CaptionDialog.textChapterInc":"Incluir el número de capítulo","DE.Views.CaptionDialog.textColon":"dos puntos","DE.Views.CaptionDialog.textDash":"guion medio","DE.Views.CaptionDialog.textDelete":"Eliminar","DE.Views.CaptionDialog.textEquation":"Ecuación","DE.Views.CaptionDialog.textExamples":"Ejemplos: Tabla 2-A, Imagen 1.IV","DE.Views.CaptionDialog.textExclude":"Excluir la etiqueta de la leyenda","DE.Views.CaptionDialog.textFigure":"Figura","DE.Views.CaptionDialog.textHyphen":"guion","DE.Views.CaptionDialog.textInsert":"Insertar","DE.Views.CaptionDialog.textLabel":"Etiqueta","DE.Views.CaptionDialog.textLabelError":"La etiqueta no debe estar vacía.","DE.Views.CaptionDialog.textLongDash":"raya","DE.Views.CaptionDialog.textNumbering":"Numeración","DE.Views.CaptionDialog.textPeriod":"punto","DE.Views.CaptionDialog.textSeparator":"Utilizar separador","DE.Views.CaptionDialog.textTable":"Tabla","DE.Views.CaptionDialog.textTitle":"Insertar leyenda","DE.Views.CellsAddDialog.textCol":"Columnas","DE.Views.CellsAddDialog.textDown":"Por debajo del cursor","DE.Views.CellsAddDialog.textLeft":"A la izquierda","DE.Views.CellsAddDialog.textRight":"A la derecha","DE.Views.CellsAddDialog.textRow":"Filas","DE.Views.CellsAddDialog.textTitle":"Insertar varios","DE.Views.CellsAddDialog.textUp":"Por encima del cursor","DE.Views.CellsRemoveDialog.textCol":"Eliminar toda la columna","DE.Views.CellsRemoveDialog.textLeft":"Desplazar celdas a la izquierda","DE.Views.CellsRemoveDialog.textRow":"Borrar toda la fila","DE.Views.CellsRemoveDialog.textTitle":"Borrar celdas","DE.Views.ChartSettings.text3dDepth":"Profundidad (% de la base)","DE.Views.ChartSettings.text3dHeight":"Altura (% de la base)","DE.Views.ChartSettings.text3dRotation":"Rotación 3D","DE.Views.ChartSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.ChartSettings.textAutoscale":"Escalado automático","DE.Views.ChartSettings.textChartType":"Cambiar tipo de gráfico","DE.Views.ChartSettings.textData":"Datos","DE.Views.ChartSettings.textDefault":"Rotación predeterminada","DE.Views.ChartSettings.textDown":"Abajo","DE.Views.ChartSettings.textEditData":"Editar datos","DE.Views.ChartSettings.textEditLinks":"Editar enlaces","DE.Views.ChartSettings.textHeight":"Altura","DE.Views.ChartSettings.textKeepRatio":"Proporciones constantes","DE.Views.ChartSettings.textLeft":"Izquierda","DE.Views.ChartSettings.textLinkedData":"Datos vinculados","DE.Views.ChartSettings.textNarrow":"Campo de visión estrecho","DE.Views.ChartSettings.textOriginalSize":"Tamaño real","DE.Views.ChartSettings.textPerspective":"Perspectiva","DE.Views.ChartSettings.textRight":"Derecha","DE.Views.ChartSettings.textRightAngle":"Ejes en ángulo recto","DE.Views.ChartSettings.textSelectData":"Seleccionar datos","DE.Views.ChartSettings.textSize":"Tamaño","DE.Views.ChartSettings.textStyle":"Estilo","DE.Views.ChartSettings.textUndock":"Desacoplar del panel","DE.Views.ChartSettings.textUp":"Arriba","DE.Views.ChartSettings.textUpdateData":"Actualizar datos","DE.Views.ChartSettings.textWiden":"Campo de visión ancho","DE.Views.ChartSettings.textWidth":"Ancho","DE.Views.ChartSettings.textWrap":"Ajuste de texto","DE.Views.ChartSettings.textX":"Rotación X","DE.Views.ChartSettings.textY":"Rotación Y","DE.Views.ChartSettings.txtBehind":"Detrás del texto","DE.Views.ChartSettings.txtInFront":"Delante del texto","DE.Views.ChartSettings.txtInline":"En línea con el texto","DE.Views.ChartSettings.txtSquare":"Cuadrado","DE.Views.ChartSettings.txtThrough":"A través","DE.Views.ChartSettings.txtTight":"Estrecho","DE.Views.ChartSettings.txtTitle":"Gráfico","DE.Views.ChartSettings.txtTopAndBottom":"Superior e inferior","DE.Views.ChartSettingsDlg.textLeftOverlay":"Superposición a la izquierda","DE.Views.CompareSettingsDialog.textChar":"Nivel del carácter","DE.Views.CompareSettingsDialog.textShow":"Mostrar cambios en","DE.Views.CompareSettingsDialog.textTitle":"Ajustes de comparación","DE.Views.CompareSettingsDialog.textWord":"Nivel de palabra","DE.Views.ControlSettingsDialog.strGeneral":"General","DE.Views.ControlSettingsDialog.textAdd":"Añadir","DE.Views.ControlSettingsDialog.textAppearance":"Aspecto","DE.Views.ControlSettingsDialog.textApplyAll":"Aplicar a todo","DE.Views.ControlSettingsDialog.textBox":"Cuadro delimitador","DE.Views.ControlSettingsDialog.textChange":"Editar","DE.Views.ControlSettingsDialog.textCheckbox":"Casilla de selección","DE.Views.ControlSettingsDialog.textChecked":"Símbolo de revisado","DE.Views.ControlSettingsDialog.textColor":"Color","DE.Views.ControlSettingsDialog.textCombobox":"Cuadro de lista desplegable","DE.Views.ControlSettingsDialog.textDate":"Formato de la fecha","DE.Views.ControlSettingsDialog.textDelete":"Eliminar","DE.Views.ControlSettingsDialog.textDisplayName":"Nombre para mostrar","DE.Views.ControlSettingsDialog.textDown":"Abajo","DE.Views.ControlSettingsDialog.textDropDown":"Lista desplegable","DE.Views.ControlSettingsDialog.textFormat":"Mostrar la fecha de esta manera","DE.Views.ControlSettingsDialog.textLang":"Idioma","DE.Views.ControlSettingsDialog.textLock":"Bloqueando","DE.Views.ControlSettingsDialog.textName":"Título","DE.Views.ControlSettingsDialog.textNone":"Ninguno","DE.Views.ControlSettingsDialog.textPlaceholder":"Marcador de posición","DE.Views.ControlSettingsDialog.textShowAs":"Mostrar como","DE.Views.ControlSettingsDialog.textSystemColor":"Sistema","DE.Views.ControlSettingsDialog.textTag":"Etiqueta","DE.Views.ControlSettingsDialog.textTitle":"Ajustes del control de contenido","DE.Views.ControlSettingsDialog.textUnchecked":"Símbolo de desactivado","DE.Views.ControlSettingsDialog.textUp":"Arriba","DE.Views.ControlSettingsDialog.textValue":"Valor","DE.Views.ControlSettingsDialog.tipChange":"Cambiar símbolo","DE.Views.ControlSettingsDialog.txtLockDelete":"El control de contenido no puede eliminarse","DE.Views.ControlSettingsDialog.txtLockEdit":"Los contenidos no se pueden editar","DE.Views.ControlSettingsDialog.txtRemContent":"Eliminar el control de contenido cuando se editan los contenidos","DE.Views.CrossReferenceDialog.textAboveBelow":"Arriba/abajo","DE.Views.CrossReferenceDialog.textBookmark":"Marcador","DE.Views.CrossReferenceDialog.textBookmarkText":"Marcar texto","DE.Views.CrossReferenceDialog.textCaption":"Título completo","DE.Views.CrossReferenceDialog.textEmpty":"La referencia de la solicitud está vacía.","DE.Views.CrossReferenceDialog.textEndnote":"Nota al final","DE.Views.CrossReferenceDialog.textEndNoteNum":"Número de nota al final","DE.Views.CrossReferenceDialog.textEndNoteNumForm":"Número de nota al final (formateado)","DE.Views.CrossReferenceDialog.textEquation":"Ecuación","DE.Views.CrossReferenceDialog.textFigure":"Figura","DE.Views.CrossReferenceDialog.textFootnote":"Nota al pie","DE.Views.CrossReferenceDialog.textHeading":"Encabezado","DE.Views.CrossReferenceDialog.textHeadingNum":"Número de encabezado","DE.Views.CrossReferenceDialog.textHeadingNumFull":"Número de encabezado (contexto completo)","DE.Views.CrossReferenceDialog.textHeadingNumNo":"Número de encabezado (sin contexto)","DE.Views.CrossReferenceDialog.textHeadingText":"Número de encabezado","DE.Views.CrossReferenceDialog.textIncludeAbove":"Incluir arriba/abajo","DE.Views.CrossReferenceDialog.textInsert":"Insertar","DE.Views.CrossReferenceDialog.textInsertAs":"Insertar como enlace","DE.Views.CrossReferenceDialog.textLabelNum":"Solo etiqueta y número","DE.Views.CrossReferenceDialog.textNoteNum":"Número de nota al pie","DE.Views.CrossReferenceDialog.textNoteNumForm":"Número de nota al pie (formateado)","DE.Views.CrossReferenceDialog.textOnlyCaption":"Solo texto de la leyenda","DE.Views.CrossReferenceDialog.textPageNum":"Número de página","DE.Views.CrossReferenceDialog.textParagraph":"Elemento numerado","DE.Views.CrossReferenceDialog.textParaNum":"Número de párrafo","DE.Views.CrossReferenceDialog.textParaNumFull":"Número de párrafo (contexto completo)","DE.Views.CrossReferenceDialog.textParaNumNo":"Número de párarfo (sin contexto)","DE.Views.CrossReferenceDialog.textSeparate":"Separar números con","DE.Views.CrossReferenceDialog.textTable":"Tabla","DE.Views.CrossReferenceDialog.textText":"Texto de párrafo","DE.Views.CrossReferenceDialog.textWhich":"Elija el objeto","DE.Views.CrossReferenceDialog.textWhichBookmark":"Elija el marcador","DE.Views.CrossReferenceDialog.textWhichEndnote":"Elija la nota al final","DE.Views.CrossReferenceDialog.textWhichHeading":"Elija el encabezado","DE.Views.CrossReferenceDialog.textWhichNote":"Elija la nota al pie","DE.Views.CrossReferenceDialog.textWhichPara":"Elija el elemento numerado","DE.Views.CrossReferenceDialog.txtReference":"Insertar referencia a","DE.Views.CrossReferenceDialog.txtTitle":"Referencia cruzada","DE.Views.CrossReferenceDialog.txtType":"Tipo de referencia","DE.Views.CustomColumnsDialog.textColumns":"Número de columnas","DE.Views.CustomColumnsDialog.textEqualWidth":"Columnas de igual ancho","DE.Views.CustomColumnsDialog.textSeparator":"Divisor de columnas","DE.Views.CustomColumnsDialog.textTitle":"Columnas","DE.Views.CustomColumnsDialog.textTitleSpacing":"Espaciado","DE.Views.CustomColumnsDialog.textWidth":"Ancho","DE.Views.DateTimeDialog.confirmDefault":"Establecer formato predeterminado para {0}: \"{1}\"","DE.Views.DateTimeDialog.textDefault":"Establecer como predeterminado","DE.Views.DateTimeDialog.textFormat":"Formatos","DE.Views.DateTimeDialog.textLang":"Idioma","DE.Views.DateTimeDialog.textUpdate":"Actualizar automáticamente","DE.Views.DateTimeDialog.txtTitle":"Fecha y hora","DE.Views.DocProtection.hintProtectDoc":"Proteger documento","DE.Views.DocProtection.txtDocProtectedComment":"El documento está protegido.
Solo puede insertar comentarios en este documento.","DE.Views.DocProtection.txtDocProtectedForms":"El documento está protegido.
Solo puede rellenar los formularios de este documento.","DE.Views.DocProtection.txtDocProtectedTrack":"El documento está protegido.
Puede editar este documento, pero todos los cambios serán revisados.","DE.Views.DocProtection.txtDocProtectedView":"El documento está protegido.
Solo puede visualizar este documento.","DE.Views.DocProtection.txtDocUnlockDescription":"Introduzca una contraseña para desbloquear el documento","DE.Views.DocProtection.txtProtectDoc":"Proteger documento","DE.Views.DocProtection.txtUnlockTitle":"Desbloquear documento","DE.Views.DocumentHolder.aboveText":"Encima","DE.Views.DocumentHolder.addCommentText":"Añadir comentario","DE.Views.DocumentHolder.advancedDropCapText":"Ajustes de letras capitulares","DE.Views.DocumentHolder.advancedEquationText":"Ajustes de ecuaciones","DE.Views.DocumentHolder.advancedFrameText":"Ajustes avanzados de marco","DE.Views.DocumentHolder.advancedParagraphText":"Ajustes avanzados de párrafo","DE.Views.DocumentHolder.advancedTableText":"Ajustes avanzados de tabla","DE.Views.DocumentHolder.advancedText":"Ajustes avanzados","DE.Views.DocumentHolder.AlignBottom":"Inferior","DE.Views.DocumentHolder.AlignCenter":"Centro","DE.Views.DocumentHolder.AlignJust":"Justificar","DE.Views.DocumentHolder.AlignLeft":"A la izquierda","DE.Views.DocumentHolder.alignmentText":"Alineación","DE.Views.DocumentHolder.AlignMiddle":"Medio","DE.Views.DocumentHolder.AlignRight":"A la derecha","DE.Views.DocumentHolder.AlignText":"Alineación de texto","DE.Views.DocumentHolder.AlignTop":"Arriba","DE.Views.DocumentHolder.allLinearText":"Lineal (todos)","DE.Views.DocumentHolder.allProfText":"Profesional (todos)","DE.Views.DocumentHolder.belowText":"Abajo","DE.Views.DocumentHolder.breakBeforeText":"Salto de página antes","DE.Views.DocumentHolder.btnChart":"Añada, elimine o modifique elementos de gráficos como el título, la leyenda, las líneas de cuadrícula y las etiquetas de datos.","DE.Views.DocumentHolder.bulletsText":"Viñetas y numeración","DE.Views.DocumentHolder.cellAlignText":"Alineación vertical de la celda","DE.Views.DocumentHolder.cellText":"Celda","DE.Views.DocumentHolder.centerText":"Centrada","DE.Views.DocumentHolder.chartText":"Ajustes avanzados de gráfico","DE.Views.DocumentHolder.columnText":"Columna","DE.Views.DocumentHolder.currLinearText":"Lineal (actual)","DE.Views.DocumentHolder.currProfText":"Profesional (actual)","DE.Views.DocumentHolder.deleteColumnText":"Eliminar columna","DE.Views.DocumentHolder.deleteRowText":"Eliminar fila","DE.Views.DocumentHolder.deleteTableText":"Eliminar tabla","DE.Views.DocumentHolder.deleteText":"Eliminar","DE.Views.DocumentHolder.DepthAxis":"Eje Z","DE.Views.DocumentHolder.direct270Text":"Girar texto hacia arriba","DE.Views.DocumentHolder.direct90Text":"Girar texto hacia abajo","DE.Views.DocumentHolder.directHText":"Horizontal","DE.Views.DocumentHolder.directionText":"Dirección del texto","DE.Views.DocumentHolder.editChartText":"Editar datos","DE.Views.DocumentHolder.editFooterText":"Editar pie de página","DE.Views.DocumentHolder.editHeaderText":"Editar encabezado","DE.Views.DocumentHolder.editHyperlinkText":"Editar hiperenlace","DE.Views.DocumentHolder.eqToDisplayText":"Cambiar a Pantalla","DE.Views.DocumentHolder.eqToInlineText":"Situar junto al texto","DE.Views.DocumentHolder.guestText":"Visitante","DE.Views.DocumentHolder.hideEqToolbar":"Ocultar la barra de herramientas de ecuaciones","DE.Views.DocumentHolder.hyperlinkText":"Enlace","DE.Views.DocumentHolder.ignoreAllSpellText":"Ignorar todo","DE.Views.DocumentHolder.ignoreSpellText":"Ignorar","DE.Views.DocumentHolder.imageText":"Ajustes avanzados de imagen","DE.Views.DocumentHolder.insertColumnLeftText":"Columna izquierda","DE.Views.DocumentHolder.insertColumnRightText":"Columna derecha","DE.Views.DocumentHolder.insertColumnText":"Insertar columna","DE.Views.DocumentHolder.insertRowAboveText":"Fila arriba","DE.Views.DocumentHolder.insertRowBelowText":"Fila debajo","DE.Views.DocumentHolder.insertRowText":"Insertar fila","DE.Views.DocumentHolder.insertText":"Insertar","DE.Views.DocumentHolder.keepLinesText":"Mantener líneas juntas","DE.Views.DocumentHolder.langText":"Seleccionar idioma","DE.Views.DocumentHolder.latexText":"LaTeX","DE.Views.DocumentHolder.leftText":"Izquierda","DE.Views.DocumentHolder.loadSpellText":"Cargando variantes","DE.Views.DocumentHolder.mergeCellsText":"Unir celdas","DE.Views.DocumentHolder.mniImageFromFile":"Imagen desde archivo","DE.Views.DocumentHolder.mniImageFromStorage":"Imagen desde almacenamiento","DE.Views.DocumentHolder.mniImageFromUrl":"Imagen desde URL","DE.Views.DocumentHolder.moreText":"Más variantes...","DE.Views.DocumentHolder.noSpellVariantsText":"Sin variantes ","DE.Views.DocumentHolder.notcriticalErrorTitle":"Advertencia","DE.Views.DocumentHolder.originalSizeText":"Tamaño real","DE.Views.DocumentHolder.paragraphText":"Párrafo","DE.Views.DocumentHolder.removeHyperlinkText":"Eliminar enlace","DE.Views.DocumentHolder.rightText":"Derecha","DE.Views.DocumentHolder.rowText":"Fila","DE.Views.DocumentHolder.saveStyleText":"Crear estilo nuevo","DE.Views.DocumentHolder.selectCellText":"Seleccionar celda","DE.Views.DocumentHolder.selectColumnText":"Seleccionar columna","DE.Views.DocumentHolder.selectRowText":"Seleccionar fila","DE.Views.DocumentHolder.selectTableText":"Seleccionar tabla","DE.Views.DocumentHolder.selectText":"Seleccionar","DE.Views.DocumentHolder.shapeText":"Ajustes avanzados de forma","DE.Views.DocumentHolder.showEqToolbar":"Mostrar la barra de herramientas de ecuaciones","DE.Views.DocumentHolder.spellcheckText":"Сorrección ortográfica","DE.Views.DocumentHolder.splitCellsText":"Dividir celda...","DE.Views.DocumentHolder.splitCellTitleText":"Dividir celda","DE.Views.DocumentHolder.strDelete":"Eliminar firma","DE.Views.DocumentHolder.strDetails":"Detalles de la firma","DE.Views.DocumentHolder.strSetup":"Preparación de la firma","DE.Views.DocumentHolder.strSign":"Firmar","DE.Views.DocumentHolder.styleText":"Formatear como...","DE.Views.DocumentHolder.tableText":"Tabla","DE.Views.DocumentHolder.textAccept":"Aceptar el cambio","DE.Views.DocumentHolder.textAlign":"Alinear","DE.Views.DocumentHolder.textArrange":"Organizar","DE.Views.DocumentHolder.textArrangeBack":"Enviar al fondo","DE.Views.DocumentHolder.textArrangeBackward":"Enviar atrás","DE.Views.DocumentHolder.textArrangeForward":"Traer adelante","DE.Views.DocumentHolder.textArrangeFront":"Traer al primer plano","DE.Views.DocumentHolder.textAxes":"Ejes","DE.Views.DocumentHolder.textAxisTitles":"Títulos de eje","DE.Views.DocumentHolder.textBottom":"Abajo ","DE.Views.DocumentHolder.textCells":"Celdas","DE.Views.DocumentHolder.textCenter":"Al centro","DE.Views.DocumentHolder.textChartTitle":"Título de gráfico","DE.Views.DocumentHolder.textClearField":"Borrar campo","DE.Views.DocumentHolder.textCol":"Eliminar toda la columna","DE.Views.DocumentHolder.textContentControls":"Control de contenido","DE.Views.DocumentHolder.textContinueNumbering":"Continuar numeración","DE.Views.DocumentHolder.textCopy":"Copiar","DE.Views.DocumentHolder.textCrop":"Recortar","DE.Views.DocumentHolder.textCropFill":"Relleno","DE.Views.DocumentHolder.textCropFit":"Adaptar","DE.Views.DocumentHolder.textCut":"Cortar","DE.Views.DocumentHolder.textDataLabels":"Etiquetas de datos","DE.Views.DocumentHolder.textDataTable":"Tabla de datos","DE.Views.DocumentHolder.textDistributeCols":"Distribuir columnas","DE.Views.DocumentHolder.textDistributeRows":"Distribuir filas","DE.Views.DocumentHolder.textEditControls":"Ajustes del control de contenido","DE.Views.DocumentHolder.textEditField":"Editar campo","DE.Views.DocumentHolder.textEditObject":"Editar objeto","DE.Views.DocumentHolder.textEditPoints":"Modificar puntos","DE.Views.DocumentHolder.textEditWrapBoundary":"Editar límite de ajuste","DE.Views.DocumentHolder.textErrorBars":"Barras de error","DE.Views.DocumentHolder.textExponential":"Exponencial","DE.Views.DocumentHolder.textFieldCodes":"Alternar códigos de campo","DE.Views.DocumentHolder.textFit":"Ajustar al ancho","DE.Views.DocumentHolder.textFlipH":"Voltear horizontalmente","DE.Views.DocumentHolder.textFlipV":"Voltear verticalmente","DE.Views.DocumentHolder.textFollow":"Seguir movimiento","DE.Views.DocumentHolder.textFromFile":"Desde archivo","DE.Views.DocumentHolder.textFromStorage":"Desde almacenamiento","DE.Views.DocumentHolder.textFromUrl":"Desde URL","DE.Views.DocumentHolder.textGridLines":"Líneas de cuadrícula","DE.Views.DocumentHolder.textHorAxis":"Eje horizontal","DE.Views.DocumentHolder.textHorAxisSec":"Eje horizontal secundario","DE.Views.DocumentHolder.textHorizontalMajor":"Horizontal principal","DE.Views.DocumentHolder.textHorizontalMinor":"Horizontal secundario","DE.Views.DocumentHolder.textIndents":"Ajustar sangrías de la lista","DE.Views.DocumentHolder.textInnerBottom":"Abajo en el interior","DE.Views.DocumentHolder.textInnerTop":"Arriba en el interior","DE.Views.DocumentHolder.textJoinList":"Unir con lista anterior","DE.Views.DocumentHolder.textLeft":"Desplazar las celdas hacia la izquierda","DE.Views.DocumentHolder.textLeftData":"A la izquierda","DE.Views.DocumentHolder.textLeftOverlay":"Superposición a la izquierda","DE.Views.DocumentHolder.textLeftPos":"A la izquierda","DE.Views.DocumentHolder.textLegendPos":"Leyenda","DE.Views.DocumentHolder.textLinear":"Lineal","DE.Views.DocumentHolder.textLinearForecast":"Pronóstico lineal","DE.Views.DocumentHolder.textLines":"Líneas","DE.Views.DocumentHolder.textMovingAverage":"Media móvil (2)","DE.Views.DocumentHolder.textNest":"Tabla anidada","DE.Views.DocumentHolder.textNextPage":"Página siguiente","DE.Views.DocumentHolder.textNone":"Ningún","DE.Views.DocumentHolder.textNoOverlay":"Sin superposición","DE.Views.DocumentHolder.textNumberingValue":"Valor de inicio","DE.Views.DocumentHolder.textOuterTop":"Arriba en el exterior","DE.Views.DocumentHolder.textOverlay":"Superposición","DE.Views.DocumentHolder.textPaste":"Pegar","DE.Views.DocumentHolder.textPrevPage":"Página anterior","DE.Views.DocumentHolder.textRedo":"Rehacer","DE.Views.DocumentHolder.textRefreshField":"Actualizar campos","DE.Views.DocumentHolder.textReject":"Rechazar el cambio","DE.Views.DocumentHolder.textRemCheckBox":"Eliminar casilla de selección","DE.Views.DocumentHolder.textRemComboBox":"Eliminar cuadro combinado","DE.Views.DocumentHolder.textRemDropdown":"Eliminar lista desplegable","DE.Views.DocumentHolder.textRemField":"Eliminar campo de texto","DE.Views.DocumentHolder.textRemove":"Eliminar","DE.Views.DocumentHolder.textRemoveControl":"Eliminar control de contenido","DE.Views.DocumentHolder.textRemPicture":"Eliminar imagen","DE.Views.DocumentHolder.textRemRadioBox":"Eliminar botón de opción","DE.Views.DocumentHolder.textReplace":"Reemplazar imagen","DE.Views.DocumentHolder.textResetCrop":"Restablecer recorte","DE.Views.DocumentHolder.textRight":"A la derecha","DE.Views.DocumentHolder.textRightOverlay":"Superposición a la derecha","DE.Views.DocumentHolder.textRotate":"Girar","DE.Views.DocumentHolder.textRotate270":"Girar 90° a la izquierda","DE.Views.DocumentHolder.textRotate90":"Girar 90° a la derecha","DE.Views.DocumentHolder.textRow":"Eliminar toda la fila","DE.Views.DocumentHolder.textSaveAsPicture":"Guardar como imagen","DE.Views.DocumentHolder.textSeparateList":"Separar lista","DE.Views.DocumentHolder.textSettings":"Ajustes","DE.Views.DocumentHolder.textSeveral":"Varias filas/columnas","DE.Views.DocumentHolder.textShapeAlignBottom":"Alinear hacia abajo","DE.Views.DocumentHolder.textShapeAlignCenter":"Alinear al centro","DE.Views.DocumentHolder.textShapeAlignLeft":"Alinear a la izquierda","DE.Views.DocumentHolder.textShapeAlignMiddle":"Alinear al medio","DE.Views.DocumentHolder.textShapeAlignRight":"Alinear a la derecha","DE.Views.DocumentHolder.textShapeAlignTop":"Alinear hacia arriba","DE.Views.DocumentHolder.textShapesMerge":"Fusionar formas","DE.Views.DocumentHolder.textShowDataTable":"Mostrar tabla de datos","DE.Views.DocumentHolder.textShowLegendKeys":"Mostrar claves de leyenda","DE.Views.DocumentHolder.textShowUpDown":"Mostrar barras arriba/abajo","DE.Views.DocumentHolder.textStandardDeviation":"Desviación estándar","DE.Views.DocumentHolder.textStandardError":"Error estándar","DE.Views.DocumentHolder.textStartNewList":"Iniciar nueva lista","DE.Views.DocumentHolder.textStartNumberingFrom":"Establecer valor de inicio","DE.Views.DocumentHolder.textTitleCellsRemove":"Eliminar celdas","DE.Views.DocumentHolder.textTOC":"Tabla de contenidos","DE.Views.DocumentHolder.textTOCSettings":"Ajustes de la tabla de contenidos","DE.Views.DocumentHolder.textTop":"Arriba","DE.Views.DocumentHolder.textTrendline":"Línea de tendencia","DE.Views.DocumentHolder.textUndo":"Deshacer","DE.Views.DocumentHolder.textUpdateAll":"Actualizar toda la tabla","DE.Views.DocumentHolder.textUpdatePages":"Actualizar solo los números de página","DE.Views.DocumentHolder.textUpdateTOC":"Actualizar la tabla de contenidos","DE.Views.DocumentHolder.textUpDownBars":"Barras arriba/abajo","DE.Views.DocumentHolder.textVertAxis":"Eje vertical","DE.Views.DocumentHolder.textVertAxisSec":"Eje vertical secundario","DE.Views.DocumentHolder.textVerticalMajor":"Vertical principal","DE.Views.DocumentHolder.textVerticalMinor":"Vertical secundario","DE.Views.DocumentHolder.textWrap":"Ajuste de texto","DE.Views.DocumentHolder.tipIsLocked":"Otro usuario está editando este elemento ahora.","DE.Views.DocumentHolder.toDictionaryText":"Añadir al diccionario","DE.Views.DocumentHolder.txtAddBottom":"Añadir borde inferior","DE.Views.DocumentHolder.txtAddFractionBar":"Añadir barra de fracción","DE.Views.DocumentHolder.txtAddHor":"Añadir línea horizontal","DE.Views.DocumentHolder.txtAddLB":"Añadir línea inferior izquierda","DE.Views.DocumentHolder.txtAddLeft":"Añadir borde izquierdo","DE.Views.DocumentHolder.txtAddLT":"Añadir línea superior izquierda","DE.Views.DocumentHolder.txtAddRight":"Añadir borde derecho","DE.Views.DocumentHolder.txtAddTop":"Añadir borde superior","DE.Views.DocumentHolder.txtAddVer":"Añadir línea vertical","DE.Views.DocumentHolder.txtAlignToChar":"Alinear a carácter","DE.Views.DocumentHolder.txtBehind":"Detrás del texto","DE.Views.DocumentHolder.txtBorderProps":"Propiedades de borde","DE.Views.DocumentHolder.txtBottom":"Inferior","DE.Views.DocumentHolder.txtColumnAlign":"Alineación de columna","DE.Views.DocumentHolder.txtDecreaseArg":"Disminuir tamaño del argumento","DE.Views.DocumentHolder.txtDeleteArg":"Eliminar argumento","DE.Views.DocumentHolder.txtDeleteBreak":"Eliminar abertura manual","DE.Views.DocumentHolder.txtDeleteChars":"Eliminar carácteres encerrados","DE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Eliminar caracteres encerrados y separadores","DE.Views.DocumentHolder.txtDeleteEq":"Eliminar ecuación","DE.Views.DocumentHolder.txtDeleteGroupChar":"Eliminar carácter","DE.Views.DocumentHolder.txtDeleteRadical":"Eliminar radical","DE.Views.DocumentHolder.txtDestEmbed":"Utilizar el tema de destino e incrustar el libro de trabajo","DE.Views.DocumentHolder.txtDestLink":"Utilizar el tema de destino y vincular datos","DE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","DE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","DE.Views.DocumentHolder.txtEmpty":"(Vacío)","DE.Views.DocumentHolder.txtFractionLinear":"Cambiar a fracción lineal","DE.Views.DocumentHolder.txtFractionSkewed":"Cambiar a fracción sesgada","DE.Views.DocumentHolder.txtFractionStacked":"Cambiar a fracción apilada","DE.Views.DocumentHolder.txtGroup":"Grupo","DE.Views.DocumentHolder.txtGroupCharOver":"Carácter por encima del texto","DE.Views.DocumentHolder.txtGroupCharUnder":"Carácter por debajo del texto","DE.Views.DocumentHolder.txtHideBottom":"Ocultar borde inferior","DE.Views.DocumentHolder.txtHideBottomLimit":"Ocultar límite inferior","DE.Views.DocumentHolder.txtHideCloseBracket":"Ocultar corchete de cierre","DE.Views.DocumentHolder.txtHideDegree":"Ocultar grado","DE.Views.DocumentHolder.txtHideHor":"Ocultar línea horizontal","DE.Views.DocumentHolder.txtHideLB":"Ocultar línea inferior izquierda ","DE.Views.DocumentHolder.txtHideLeft":"Ocultar borde izquierdo","DE.Views.DocumentHolder.txtHideLT":"Ocultar línea superior izquierda","DE.Views.DocumentHolder.txtHideOpenBracket":"Ocultar corchete de apertura","DE.Views.DocumentHolder.txtHidePlaceholder":"Ocultar marcador de posición","DE.Views.DocumentHolder.txtHideRight":"Ocultar borde derecho","DE.Views.DocumentHolder.txtHideTop":"Ocultar borde superior","DE.Views.DocumentHolder.txtHideTopLimit":"Ocultar límite superior","DE.Views.DocumentHolder.txtHideVer":"Ocultar línea vertical","DE.Views.DocumentHolder.txtIncreaseArg":"Aumentar el tamaño del argumento","DE.Views.DocumentHolder.txtInFront":"Delante del texto","DE.Views.DocumentHolder.txtInline":"En línea con el texto","DE.Views.DocumentHolder.txtInsertArgAfter":"Insertar argumento después","DE.Views.DocumentHolder.txtInsertArgBefore":"Insertar argumento antes","DE.Views.DocumentHolder.txtInsertBreak":"Insertar grieta manual","DE.Views.DocumentHolder.txtInsertCaption":"Insertar leyenda","DE.Views.DocumentHolder.txtInsertEqAfter":"Insertar la ecuación después de","DE.Views.DocumentHolder.txtInsertEqBefore":"Insertar la ecuación antes de","DE.Views.DocumentHolder.txtInsImage":"Insertar imagen desde archivo","DE.Views.DocumentHolder.txtInsImageUrl":"Insertar imagen desde URL","DE.Views.DocumentHolder.txtKeepTextOnly":"Mantener solo texto","DE.Views.DocumentHolder.txtLimitChange":"Cambiar ubicación de límites","DE.Views.DocumentHolder.txtLimitOver":"Límite sobre el texto","DE.Views.DocumentHolder.txtLimitUnder":"Límite debajo del texto","DE.Views.DocumentHolder.txtMatchBrackets":"Situar cochetes a la altura del argumento","DE.Views.DocumentHolder.txtMatrixAlign":"Alineación de la matriz","DE.Views.DocumentHolder.txtOverbar":"Barra sobre texto","DE.Views.DocumentHolder.txtOverwriteCells":"Sobreescribir las celdas","DE.Views.DocumentHolder.txtPastePicture":"Imagen","DE.Views.DocumentHolder.txtPasteSourceFormat":"Mantener el formato original","DE.Views.DocumentHolder.txtPercentage":"Porcentaje","DE.Views.DocumentHolder.txtPressLink":"Pulse {0} y haga clic en el enlace","DE.Views.DocumentHolder.txtPrintSelection":"Imprimir selección","DE.Views.DocumentHolder.txtRemFractionBar":"Quitar la barra de fracción","DE.Views.DocumentHolder.txtRemLimit":"Eliminar límite","DE.Views.DocumentHolder.txtRemoveAccentChar":"Quitar acento del carácter","DE.Views.DocumentHolder.txtRemoveBar":"Eliminar barra","DE.Views.DocumentHolder.txtRemoveWarning":"¿Desea eliminar esta firma?
No se puede deshacer.","DE.Views.DocumentHolder.txtRemScripts":"Eliminar texto","DE.Views.DocumentHolder.txtRemSubscript":"Eliminar subíndice","DE.Views.DocumentHolder.txtRemSuperscript":"Eliminar subíndice","DE.Views.DocumentHolder.txtScriptsAfter":"Letras después de texto","DE.Views.DocumentHolder.txtScriptsBefore":"Letras antes de texto","DE.Views.DocumentHolder.txtShowBottomLimit":"Mostrar límite inferior","DE.Views.DocumentHolder.txtShowCloseBracket":"Mostrar corchete de cierre","DE.Views.DocumentHolder.txtShowDegree":"Mostrar grado","DE.Views.DocumentHolder.txtShowOpenBracket":"Mostrar corchete de apertura","DE.Views.DocumentHolder.txtShowPlaceholder":"Mostrar marcador de posición","DE.Views.DocumentHolder.txtShowTopLimit":"Mostrar límite superior","DE.Views.DocumentHolder.txtSourceEmbed":"Mantener el formato original e incrustar el libro de trabajo","DE.Views.DocumentHolder.txtSourceLink":"Mantener el formato original y vincular los datos","DE.Views.DocumentHolder.txtSquare":"Cuadrado","DE.Views.DocumentHolder.txtStretchBrackets":"Estirar corchetes","DE.Views.DocumentHolder.txtThrough":"A través","DE.Views.DocumentHolder.txtTight":"Estrecho","DE.Views.DocumentHolder.txtTop":"Superior","DE.Views.DocumentHolder.txtTopAndBottom":"Superior e inferior","DE.Views.DocumentHolder.txtUnderbar":"Barra debajo de texto","DE.Views.DocumentHolder.txtUngroup":"Desagrupar","DE.Views.DocumentHolder.txtWarnUrl":"Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. Para proteger su ordenador, haga clic solo en los hiperenlaces de fuentes fiables. Esta ubicación puede ser insegura:

{0}

¿Está seguro de que desea continuar?","DE.Views.DocumentHolder.unicodeText":"Unicode","DE.Views.DocumentHolder.updateStyleText":"Actualizar estilo «%1»","DE.Views.DocumentHolder.vertAlignText":"Alineación vertical","DE.Views.DropcapSettingsAdvanced.strBorders":"Bordes y relleno","DE.Views.DropcapSettingsAdvanced.strDropcap":"Letra capitular","DE.Views.DropcapSettingsAdvanced.strMargins":"Márgenes","DE.Views.DropcapSettingsAdvanced.textAlign":"Alineación","DE.Views.DropcapSettingsAdvanced.textAtLeast":"Al menos","DE.Views.DropcapSettingsAdvanced.textAuto":"Auto","DE.Views.DropcapSettingsAdvanced.textBackColor":"Color del fondo","DE.Views.DropcapSettingsAdvanced.textBorderColor":"Color del borde","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"Pulse en el diagrama o utilice los botones para seleccionar los bordes","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"Tamaño del borde","DE.Views.DropcapSettingsAdvanced.textBottom":"Inferior","DE.Views.DropcapSettingsAdvanced.textCenter":"Centrado","DE.Views.DropcapSettingsAdvanced.textColumn":"Columna","DE.Views.DropcapSettingsAdvanced.textDistance":"Distancia del texto","DE.Views.DropcapSettingsAdvanced.textExact":"Exacto","DE.Views.DropcapSettingsAdvanced.textFlow":"Marco de flujo","DE.Views.DropcapSettingsAdvanced.textFont":"Letra ","DE.Views.DropcapSettingsAdvanced.textFrame":"Marco","DE.Views.DropcapSettingsAdvanced.textHeight":"Altura","DE.Views.DropcapSettingsAdvanced.textHorizontal":"Horizontal ","DE.Views.DropcapSettingsAdvanced.textInline":"Marco flotante","DE.Views.DropcapSettingsAdvanced.textInMargin":"Al margen","DE.Views.DropcapSettingsAdvanced.textInText":"En el texto","DE.Views.DropcapSettingsAdvanced.textLeft":"Izquierdo","DE.Views.DropcapSettingsAdvanced.textMargin":"Margen","DE.Views.DropcapSettingsAdvanced.textMove":"Desplazarse con el texto","DE.Views.DropcapSettingsAdvanced.textNone":"Ninguno","DE.Views.DropcapSettingsAdvanced.textPage":"Página","DE.Views.DropcapSettingsAdvanced.textParagraph":"Párrafo","DE.Views.DropcapSettingsAdvanced.textParameters":"Parámetros","DE.Views.DropcapSettingsAdvanced.textPosition":"Posición","DE.Views.DropcapSettingsAdvanced.textRelative":"En relación con","DE.Views.DropcapSettingsAdvanced.textRight":"Derecho","DE.Views.DropcapSettingsAdvanced.textRowHeight":"Altura en filas","DE.Views.DropcapSettingsAdvanced.textTitle":"Letra capitular - Ajustes avanzados","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"Marco - Ajustes avanzados","DE.Views.DropcapSettingsAdvanced.textTop":"Superior","DE.Views.DropcapSettingsAdvanced.textVertical":"Vertical","DE.Views.DropcapSettingsAdvanced.textWidth":"Ancho","DE.Views.DropcapSettingsAdvanced.tipFontName":"Fuente","DE.Views.EditListItemDialog.textDisplayName":"Nombre para mostrar","DE.Views.EditListItemDialog.textNameError":"El nombre para mostrar no debe estar vacío.","DE.Views.EditListItemDialog.textValue":"Valor","DE.Views.EditListItemDialog.textValueError":"Ya existe un elemento con el mismo valor.","DE.Views.FileMenu.ariaFileMenu":"Menú Archivo","DE.Views.FileMenu.btnBackCaption":"Abrir ubicación del archivo","DE.Views.FileMenu.btnCloseEditor":"Cerrar archivo","DE.Views.FileMenu.btnCloseMenuCaption":"Atrás","DE.Views.FileMenu.btnCreateNewCaption":"Crear nueva","DE.Views.FileMenu.btnDownloadCaption":"Descargar como","DE.Views.FileMenu.btnExitCaption":"Cerrar","DE.Views.FileMenu.btnFileOpenCaption":"Abrir","DE.Views.FileMenu.btnHelpCaption":"Ayuda","DE.Views.FileMenu.btnHistoryCaption":"Historial de versiones","DE.Views.FileMenu.btnInfoCaption":"Info sobre el documento","DE.Views.FileMenu.btnPrintCaption":"Imprimir","DE.Views.FileMenu.btnProtectCaption":"Proteger","DE.Views.FileMenu.btnRecentFilesCaption":"Abrir reciente","DE.Views.FileMenu.btnRenameCaption":"Renombrar","DE.Views.FileMenu.btnReturnCaption":"Volver al documento","DE.Views.FileMenu.btnRightsCaption":"Permisos de acceso","DE.Views.FileMenu.btnSaveAsCaption":"Guardar como","DE.Views.FileMenu.btnSaveCaption":"Guardar","DE.Views.FileMenu.btnSaveCopyAsCaption":"Guardar copia como","DE.Views.FileMenu.btnSettingsCaption":"Configuración avanzada","DE.Views.FileMenu.btnSuggestCaption":"Sugerir una función","DE.Views.FileMenu.btnSwitchToMobileCaption":"Cambiar a móvil","DE.Views.FileMenu.btnToEditCaption":"Editar documento","DE.Views.FileMenu.textDownload":"Descargar","DE.Views.FileMenuPanels.CreateNew.txtBlank":"Documento en blanco","DE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Crear nuevo","DE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Añadir autor","DE.Views.FileMenuPanels.DocumentInfo.txtAddProperty":"Añadir propiedad","DE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Añadir texto","DE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicación","DE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Cambiar permisos de acceso","DE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentario","DE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comunes","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Creado","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Información del documento","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"Propiedad del documento","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Vista web rápida","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Cargando...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última modificación realizada por","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificación","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"No","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Propietario","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"Páginas","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Tamaño de la página","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Párrafos","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"Generador de PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF etiquetado","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"Versión de PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Ubicación","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"Propiedades","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"Ya existe una propiedad con este título","DE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personas que tienen permisos","DE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Caracteres con espacios","DE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Estadísticas","DE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Asunto","DE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Caracteres","DE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Subido","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"Palabras","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"Sí","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Permisos de acceso","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Cambiar permisos de acceso","DE.Views.FileMenuPanels.DocumentRights.txtRights":"Personas que tienen permisos","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"Aviso","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Con contraseña","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger documento","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"Con firma","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Se han añadido firmas válidas al documento.
El documento está protegido contra la edición.","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garantizar la integridad del documento añadiendo una
firma digital invisible","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar documento","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"La edición eliminará las firmas del documento.
¿Continuar?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Este documento se ha protegido con una contraseña","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Cifrar este documento con una contraseña","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Este documento necesita ser firmado","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Se han añadido firmas válidas al documento. El documento está protegido contra la edición.","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algunas de las firmas digitales del documento no son válidas o no se han podido verificar. El documento está protegido contra la edición.","DE.Views.FileMenuPanels.ProtectDoc.txtView":"Ver firmas","DE.Views.FileMenuPanels.Settings.okButtonText":"Aplicar","DE.Views.FileMenuPanels.Settings.strChinese":"Chino","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modo de coedición","DE.Views.FileMenuPanels.Settings.strDocContent":"Contenido del documento","DE.Views.FileMenuPanels.Settings.strFast":"rápido","DE.Views.FileMenuPanels.Settings.strFontRender":"Renderizado de las fuentes","DE.Views.FileMenuPanels.Settings.strFontSizeType":"Utilizar el primero de la lista de tamaños de fuente","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"Omitir palabras en MAYÚSCULAS","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"Omitir palabras con números","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Accesos directos de teclado","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"Ajustes de macros","DE.Views.FileMenuPanels.Settings.strNumeral":"Numeral","DE.Views.FileMenuPanels.Settings.strPasteButton":"Mostrar el botón «Opciones de pegado» cuando se pegue contenido","DE.Views.FileMenuPanels.Settings.strRTLSupport":"Interfaz RTL","DE.Views.FileMenuPanels.Settings.strShowChanges":"Cambios de colaboradores en tiempo real","DE.Views.FileMenuPanels.Settings.strShowComments":"Mostrar comentarios en el texto","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Mostrar los cambios de otros usuarios","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Mostrar comentarios resueltos","DE.Views.FileMenuPanels.Settings.strStrict":"Estricto","DE.Views.FileMenuPanels.Settings.strTabStyle":"Estilo de pestaña","DE.Views.FileMenuPanels.Settings.strTheme":"Tema de la interfaz","DE.Views.FileMenuPanels.Settings.strUnit":"Unidades de medida","DE.Views.FileMenuPanels.Settings.strWestern":"Occidental","DE.Views.FileMenuPanels.Settings.strZoom":"Valor de ampliación predeterminado","DE.Views.FileMenuPanels.Settings.text10Minutes":"Cada 10 minutos","DE.Views.FileMenuPanels.Settings.text30Minutes":"Cada 30 minutos","DE.Views.FileMenuPanels.Settings.text5Minutes":"Cada 5 minutos","DE.Views.FileMenuPanels.Settings.text60Minutes":"Cada hora","DE.Views.FileMenuPanels.Settings.textAlignGuides":"Guías de alineación","DE.Views.FileMenuPanels.Settings.textAutoRecover":"Guardar información de autorrecuperación","DE.Views.FileMenuPanels.Settings.textAutoSave":"Guardar automáticamente","DE.Views.FileMenuPanels.Settings.textDisabled":"Desactivado","DE.Views.FileMenuPanels.Settings.textFill":"Rellenar","DE.Views.FileMenuPanels.Settings.textForceSave":"Guardar versiones intermedias","DE.Views.FileMenuPanels.Settings.textLine":"Línea","DE.Views.FileMenuPanels.Settings.textMinute":"Cada minuto","DE.Views.FileMenuPanels.Settings.textOldVersions":"Hacer que los archivos sean compatibles con versiones anteriores de MS Word cuando se guarden como DOCX, DOTX","DE.Views.FileMenuPanels.Settings.textSmartSelection":"Utilizar la selección inteligente de párrafos","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Ajustes avanzados","DE.Views.FileMenuPanels.Settings.txtAll":"Ver todo","DE.Views.FileMenuPanels.Settings.txtAppearance":"Aspecto","DE.Views.FileMenuPanels.Settings.txtArabic":"Árabe","DE.Views.FileMenuPanels.Settings.txtAutoCorrect":"Opciones de autocorrección","DE.Views.FileMenuPanels.Settings.txtCacheMode":"Modo de caché predeterminado","DE.Views.FileMenuPanels.Settings.txtChangesBalloons":"Mostrar con un clic en los globos","DE.Views.FileMenuPanels.Settings.txtChangesTip":"Mostrar al pasar el puntero por la barra de herramientas","DE.Views.FileMenuPanels.Settings.txtCm":"Centímetros","DE.Views.FileMenuPanels.Settings.txtCollaboration":"Colaboración","DE.Views.FileMenuPanels.Settings.txtContext":"Contexto","DE.Views.FileMenuPanels.Settings.txtCustomize":"Personalizar","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Personalizar acceso rápido","DE.Views.FileMenuPanels.Settings.txtDarkMode":"Activar el modo oscuro para los documentos","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"Editar y guardar","DE.Views.FileMenuPanels.Settings.txtFastTip":"Coedición en tiempo real. Todos los cambios se guardan automáticamente","DE.Views.FileMenuPanels.Settings.txtFitPage":"Ajustar a la página","DE.Views.FileMenuPanels.Settings.txtFitWidth":"Ajustar al ancho","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Jeroglíficos","DE.Views.FileMenuPanels.Settings.txtHindi":"Hindi","DE.Views.FileMenuPanels.Settings.txtInch":"Pulgadas","DE.Views.FileMenuPanels.Settings.txtLast":"Ver últimos","DE.Views.FileMenuPanels.Settings.txtLastUsed":"Utilizados recientemente","DE.Views.FileMenuPanels.Settings.txtMac":"como en OS X","DE.Views.FileMenuPanels.Settings.txtNative":"Nativo","DE.Views.FileMenuPanels.Settings.txtNone":"No ver ninguno","DE.Views.FileMenuPanels.Settings.txtProofing":"Revisión","DE.Views.FileMenuPanels.Settings.txtPt":"Puntos","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"Mostrar el botón «Impresión rápida» en el encabezado del editor","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"El documento se imprimirá en la última impresora seleccionada o predeterminada","DE.Views.FileMenuPanels.Settings.txtRunMacros":"Habilitar todo","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"Habilitar todas las macros sin notificación ","DE.Views.FileMenuPanels.Settings.txtScreenReader":"Activar el soporte para lectores de pantalla","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"Mostrar control de cambios","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"Сorrección ortográfica","DE.Views.FileMenuPanels.Settings.txtStopMacros":"Deshabilitar todo","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"Deshabilitar todas las macros sin notificación","DE.Views.FileMenuPanels.Settings.txtStrictTip":"Utilizar el botón \"Guardar\" para sincronizar los cambios que usted y los demás realicen","DE.Views.FileMenuPanels.Settings.txtTabBack":"Utilizar el color de la barra de herramientas como fondo de las pestañas","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"Utilizar la tecla «Alt» para navegar por la interfaz de usuario mediante el teclado","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Utilizar la tecla «Opción» para navegar por la interfaz de usuario mediante el teclado","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"Mostrar notificación","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"Deshabilitar todas las macros con notificación","DE.Views.FileMenuPanels.Settings.txtWin":"como en Windows","DE.Views.FileMenuPanels.Settings.txtWorkspace":"Área de trabajo","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Descargar como","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Guardar copia como","DE.Views.FormSettings.textAddRole":"Añadir destinatario","DE.Views.FormSettings.textAlways":"Siempre","DE.Views.FormSettings.textAnyone":"Cualquiera","DE.Views.FormSettings.textAspect":"Bloquear relación de aspecto","DE.Views.FormSettings.textAtLeast":"Al menos","DE.Views.FormSettings.textAuto":"Automático","DE.Views.FormSettings.textAutofit":"Autoajustar","DE.Views.FormSettings.textBackgroundColor":"Color del fondo","DE.Views.FormSettings.textCheckbox":"Casilla","DE.Views.FormSettings.textCheckDefault":"La casilla de verificación está marcada de forma predeterminada","DE.Views.FormSettings.textColor":"Color del borde","DE.Views.FormSettings.textComb":"Peine de caracteres","DE.Views.FormSettings.textCombobox":"Cuadro combinado","DE.Views.FormSettings.textComplex":"Campo complejo","DE.Views.FormSettings.textConnected":"Campos conectados","DE.Views.FormSettings.textCreditCard":"Número de tarjeta de crédito (por ejemplo, 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"Campo Fecha y hora","DE.Views.FormSettings.textDateFormat":"Mostrar la fecha de esta manera","DE.Views.FormSettings.textDefValue":"Valor predeterminado","DE.Views.FormSettings.textDelete":"Eliminar","DE.Views.FormSettings.textDigits":"Dígitos","DE.Views.FormSettings.textDisconnect":"Desconectar","DE.Views.FormSettings.textDropDown":"Desplegable","DE.Views.FormSettings.textExact":"Exactamente","DE.Views.FormSettings.textField":"Campo de texto","DE.Views.FormSettings.textFillRoles":"¿Quién tiene que rellenar esto?","DE.Views.FormSettings.textFixed":"Campo de tamaño fijo","DE.Views.FormSettings.textFormat":"Formato","DE.Views.FormSettings.textFormatSymbols":"Símbolos permitidos","DE.Views.FormSettings.textFromFile":"Desde archivo","DE.Views.FormSettings.textFromStorage":"Desde almacenamiento","DE.Views.FormSettings.textFromUrl":"Desde URL","DE.Views.FormSettings.textGroupKey":"Clave de grupo","DE.Views.FormSettings.textImage":"Imagen","DE.Views.FormSettings.textKey":"Clave","DE.Views.FormSettings.textLabel":"Etiqueta","DE.Views.FormSettings.textLang":"Idioma","DE.Views.FormSettings.textLetters":"Letras","DE.Views.FormSettings.textLock":"Bloquear","DE.Views.FormSettings.textMask":"Máscara arbitraria","DE.Views.FormSettings.textMaxChars":"Límite de caracteres","DE.Views.FormSettings.textMulti":"Campo multilínea","DE.Views.FormSettings.textNever":"Nunca","DE.Views.FormSettings.textNoBorder":"Sin bordes","DE.Views.FormSettings.textNone":"Ninguno","DE.Views.FormSettings.textPhone1":"Número de teléfono (por ejemplo, (123) 456-7890)","DE.Views.FormSettings.textPhone2":"Número de teléfono (por ejemplo, +447911123456)","DE.Views.FormSettings.textPlaceholder":"Marcador de posición","DE.Views.FormSettings.textRadiobox":"Botón de opción","DE.Views.FormSettings.textRadioChoice":"Botón de radio","DE.Views.FormSettings.textRadioDefault":"El botón está marcado de forma predeterminada","DE.Views.FormSettings.textReg":"Expresión regular","DE.Views.FormSettings.textRequired":"Necesario","DE.Views.FormSettings.textScale":"Cuándo escalar","DE.Views.FormSettings.textSelectImage":"Seleccionar imagen","DE.Views.FormSettings.textSignature":"Firma","DE.Views.FormSettings.textTag":"Etiqueta","DE.Views.FormSettings.textTip":"Sugerencia","DE.Views.FormSettings.textTipAdd":"Añadir valor nuevo","DE.Views.FormSettings.textTipDelete":"Eliminar valor","DE.Views.FormSettings.textTipDown":"Mover hacia abajo","DE.Views.FormSettings.textTipUp":"Mover hacia arriba","DE.Views.FormSettings.textTooBig":"La imagen es demasiado grande","DE.Views.FormSettings.textTooSmall":"La imagen es demasiado pequeña","DE.Views.FormSettings.textUKPassport":"Número de pasaporte británico (por ejemplo, 925665416)","DE.Views.FormSettings.textUnlock":"Desbloquear","DE.Views.FormSettings.textUSSSN":"SSN de EE.UU. (por ejemplo, 123-45-6789)","DE.Views.FormSettings.textValue":"Opciones de valor","DE.Views.FormSettings.textWidth":"Ancho de celda","DE.Views.FormSettings.textZipCodeUS":"Código postal de EE.UU. (por ejemplo, 92663 o 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"Casilla","DE.Views.FormsTab.capBtnComboBox":"Cuadro combinado","DE.Views.FormsTab.capBtnComplex":"Campo complejo","DE.Views.FormsTab.capBtnDownloadForm":"Descargar como PDF","DE.Views.FormsTab.capBtnDropDown":"Lista desplegable","DE.Views.FormsTab.capBtnEmail":"Dirección de correo electrónico","DE.Views.FormsTab.capBtnFinal":"Marcar como final","DE.Views.FormsTab.capBtnImage":"Imagen","DE.Views.FormsTab.capBtnManager":"Gestionar roles de destinatarios","DE.Views.FormsTab.capBtnNext":"Campo siguiente","DE.Views.FormsTab.capBtnPhone":"Número de teléfono","DE.Views.FormsTab.capBtnPrev":"Campo anterior","DE.Views.FormsTab.capBtnRadioBox":"Botón de opción","DE.Views.FormsTab.capBtnSaveForm":"Guardar como PDF","DE.Views.FormsTab.capBtnSaveFormDesktop":"Guardar como...","DE.Views.FormsTab.capBtnSignature":"Firma","DE.Views.FormsTab.capBtnSubmit":"Rellenar y enviar","DE.Views.FormsTab.capBtnText":"Campo de texto","DE.Views.FormsTab.capBtnView":"Vista previa","DE.Views.FormsTab.capCreditCard":"Tarjeta de crédito","DE.Views.FormsTab.capDateTime":"Fecha y hora","DE.Views.FormsTab.capZipCode":"Código postal","DE.Views.FormsTab.helpTextFillStatus":"Este formulario está listo para su rellenado basado en roles. Haga clic en el botón de estado para comprobar la fase de rellenado.","DE.Views.FormsTab.textAddRole":"Añadir destinatario","DE.Views.FormsTab.textAnyone":"Cualquiera","DE.Views.FormsTab.textClear":"Eliminar campos","DE.Views.FormsTab.textClearFields":"Eliminar todos los campos","DE.Views.FormsTab.textCreateForm":"Agregue campos y cree un documento PDF rellenable","DE.Views.FormsTab.textFilled":"Rellenado","DE.Views.FormsTab.textFillFor":"Insertar campos para","DE.Views.FormsTab.textGotIt":"Entiendo","DE.Views.FormsTab.textHighlight":"Ajustes de resaltado","DE.Views.FormsTab.textNoHighlight":"No resaltar","DE.Views.FormsTab.textRequired":"Rellene todos los campos obligatorios para enviar el formulario","DE.Views.FormsTab.textSubmited":"El formulario se ha enviado correctamente","DE.Views.FormsTab.textSubmitOk":"Su formulario PDF se ha guardado en la sección Completado.","DE.Views.FormsTab.tipCheckBox":"Insertar casilla","DE.Views.FormsTab.tipComboBox":"Insertar cuadro combinado","DE.Views.FormsTab.tipComplexField":"Insertar campo complejo","DE.Views.FormsTab.tipCreateField":"Para crear un campo, seleccione el tipo de campo deseado en la barra de herramientas y haga clic sobre él. El campo aparecerá en el documento.","DE.Views.FormsTab.tipCreditCard":"Insertar el número de tarjeta de crédito","DE.Views.FormsTab.tipDateTime":"Insertar fecha y hora","DE.Views.FormsTab.tipDownloadForm":"Descargar el archivo como documento PDF rellenable","DE.Views.FormsTab.tipDropDown":"Insertar lista desplegable","DE.Views.FormsTab.tipEmailField":"Insertar dirección de correo electrónico","DE.Views.FormsTab.tipFieldSettings":"Puede configurar los campos seleccionados en la barra lateral derecha. Haga clic en este icono para abrir la configuración de los campos.","DE.Views.FormsTab.tipFieldsLink":"Más información sobre los parámetros de campo","DE.Views.FormsTab.tipFinalForm":"Marcar como final","DE.Views.FormsTab.tipFirstPage":"Ir a la primera página","DE.Views.FormsTab.tipFixedText":"Insertar campo de texto fijo","DE.Views.FormsTab.tipFormGroupKey":"Agrupe los botones de radio para agilizar el proceso de relleno. Las opciones con los mismos nombres se sincronizarán. Los usuarios solo pueden marcar un botón de radio del grupo.","DE.Views.FormsTab.tipFormKey":"Puede asignar una clave a un campo o a un grupo de campos. Cuando un usuario rellene los datos, se copiarán en todos los campos con la misma clave.","DE.Views.FormsTab.tipHelpRoles":"Utilice la función Gestionar destinatarios para agrupar los campos según su finalidad y asignar a los miembros del equipo responsables.","DE.Views.FormsTab.tipImageField":"Insertar imagen","DE.Views.FormsTab.tipInlineText":"Insertar campo de texto alineado","DE.Views.FormsTab.tipLastPage":"Ir a la última página","DE.Views.FormsTab.tipManager":"Gestionar roles de destinatarios","DE.Views.FormsTab.tipNextForm":"Ir al campo siguiente","DE.Views.FormsTab.tipNextPage":"Ir a la página siguiente","DE.Views.FormsTab.tipPhoneField":"Insertar número de teléfono","DE.Views.FormsTab.tipPrevForm":"Ir al campo anterior","DE.Views.FormsTab.tipPrevPage":"Ir a la página anterior","DE.Views.FormsTab.tipRadioBox":"Insertar botón de opción","DE.Views.FormsTab.tipRolesLink":"Más información sobre los destinatarios","DE.Views.FormsTab.tipSaveFile":"Haga clic en \"Guardar como PDF\" para guardar el formulario en el formato listo para rellenar.","DE.Views.FormsTab.tipSaveForm":"Guardar el archivo como un documento PDF rellenable","DE.Views.FormsTab.tipSignField":"Insertar firma","DE.Views.FormsTab.tipSubmit":"Enviar formulario","DE.Views.FormsTab.tipTextField":"Insertar campo de texto","DE.Views.FormsTab.tipViewForm":"Ver formulario","DE.Views.FormsTab.tipZipCode":"Insertar código postal","DE.Views.FormsTab.txtFixedDesc":"Insertar campo de texto fijo","DE.Views.FormsTab.txtFixedText":"Fijo","DE.Views.FormsTab.txtInlineDesc":"Insertar campo de texto alineado","DE.Views.FormsTab.txtInlineText":"Alineado","DE.Views.FormsTab.txtSignedForm":"Este documento se ha firmado y no se puede modificar.","DE.Views.FormsTab.txtUntitled":"Sin título","DE.Views.HeaderFooterSettings.textBottomCenter":"Inferior centro","DE.Views.HeaderFooterSettings.textBottomLeft":"Inferior izquierdo","DE.Views.HeaderFooterSettings.textBottomPage":"Al pie de la página","DE.Views.HeaderFooterSettings.textBottomRight":"Inferior derecho","DE.Views.HeaderFooterSettings.textDiffFirst":"Primera página diferente","DE.Views.HeaderFooterSettings.textDiffOdd":"Páginas impares y pares diferentes","DE.Views.HeaderFooterSettings.textFrom":"Empezar desde","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"Pie de página desde abajo","DE.Views.HeaderFooterSettings.textHeaderFromTop":"Encabezado desde arriba","DE.Views.HeaderFooterSettings.textInsertCurrent":"Insertar en la posición actual","DE.Views.HeaderFooterSettings.textNumFormat":"Formato de número","DE.Views.HeaderFooterSettings.textOptions":"Opciones","DE.Views.HeaderFooterSettings.textPageNum":"Insertar número de página","DE.Views.HeaderFooterSettings.textPageNumbering":"Numeración de páginas","DE.Views.HeaderFooterSettings.textPosition":"Posición","DE.Views.HeaderFooterSettings.textPrev":"Continuar desde el anterior","DE.Views.HeaderFooterSettings.textSameAs":"Enlazar con el anterior","DE.Views.HeaderFooterSettings.textTopCenter":"Superior centro","DE.Views.HeaderFooterSettings.textTopLeft":"Superior izquierdo","DE.Views.HeaderFooterSettings.textTopPage":"Inicio de la página","DE.Views.HeaderFooterSettings.textTopRight":"Superior derecho","DE.Views.HeaderFooterSettings.txtMoreTypes":"Más tipos","DE.Views.HeaderFooterTab.capBtnDateTime":"Fecha y hora","DE.Views.HeaderFooterTab.capBtnInsField":"Campo","DE.Views.HeaderFooterTab.capBtnInsImage":"Imagen","DE.Views.HeaderFooterTab.capCurrentPos":"A la posición actual","DE.Views.HeaderFooterTab.capFooterBottom":"Pie de página desde abajo","DE.Views.HeaderFooterTab.capFormatNums":"Numeración de páginas","DE.Views.HeaderFooterTab.capHeaderTop":"Encabezado desde arriba","DE.Views.HeaderFooterTab.capNumOfPages":"Número de páginas","DE.Views.HeaderFooterTab.mniImageFromFile":"Imagen desde archivo","DE.Views.HeaderFooterTab.mniImageFromStorage":"Imagen desde almacenamiento","DE.Views.HeaderFooterTab.mniImageFromUrl":"Imagen desde URL","DE.Views.HeaderFooterTab.tipCloseTab":"Cerrar pestaña","DE.Views.HeaderFooterTab.tipDateTime":"Insertar la fecha y hora actuales","DE.Views.HeaderFooterTab.tipHeaderFooter":"Editar encabezado o pie de página","DE.Views.HeaderFooterTab.tipInsertImage":"Insertar imagen","DE.Views.HeaderFooterTab.tipInsField":"Insertar campo","DE.Views.HeaderFooterTab.tipNumOfPages":"Número de páginas","DE.Views.HeaderFooterTab.tipPageNumbering":"Numeración de páginas","DE.Views.HeaderFooterTab.txtCloseTab":"Cerrar","DE.Views.HeaderFooterTab.txtDiffFirst":"Primera página diferente","DE.Views.HeaderFooterTab.txtDiffOddEven":"Páginas impares y pares diferentes","DE.Views.HeaderFooterTab.txtEditFooter":"Editar pie de página","DE.Views.HeaderFooterTab.txtEditHeader":"Editar encabezado","DE.Views.HeaderFooterTab.txtHeaderFooter":"Encabezado/Pie de página","DE.Views.HeaderFooterTab.txtPageNumbering":"Número de página","DE.Views.HeaderFooterTab.txtRemoveFooter":"Quitar pie de página","DE.Views.HeaderFooterTab.txtRemoveHeader":"Quitar encabezado","DE.Views.HeaderFooterTab.txtSameAs":"Vincular al anterior","DE.Views.HyperlinkSettingsDialog.textDefault":"Fragmento de texto seleccionado","DE.Views.HyperlinkSettingsDialog.textDisplay":"Mostrar","DE.Views.HyperlinkSettingsDialog.textExternal":"Enlace externo","DE.Views.HyperlinkSettingsDialog.textInternal":"Lugar del documento","DE.Views.HyperlinkSettingsDialog.textSelectFile":"Seleccionar archivo","DE.Views.HyperlinkSettingsDialog.textTitle":"Ajustes de enlace","DE.Views.HyperlinkSettingsDialog.textTooltip":"Información en pantalla","DE.Views.HyperlinkSettingsDialog.textUrl":"Enlace a","DE.Views.HyperlinkSettingsDialog.txtBeginning":"Principio del documento","DE.Views.HyperlinkSettingsDialog.txtBookmarks":"Marcadores","DE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo es obligatorio","DE.Views.HyperlinkSettingsDialog.txtHeadings":"Títulos","DE.Views.HyperlinkSettingsDialog.txtNotUrl":"Este campo debe ser una URL con el formato \"http://www.example.com\"","DE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo está limitado a 2083 caracteres","DE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Introduzca la dirección web o seleccione un archivo","DE.Views.HyphenationDialog.textAuto":"Dividir el documento con guiones automáticamente","DE.Views.HyphenationDialog.textCaps":"Dividir palabras en MAYÚSCULAS","DE.Views.HyphenationDialog.textLimit":"Limitar los guiones consecutivos a","DE.Views.HyphenationDialog.textNoLimit":"Sin limites","DE.Views.HyphenationDialog.textTitle":"Guiones","DE.Views.HyphenationDialog.textZone":"Zona de guiones","DE.Views.ImageSettings.strTransparency":"Opacidad ","DE.Views.ImageSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.ImageSettings.textCrop":"Recortar","DE.Views.ImageSettings.textCropFill":"Relleno","DE.Views.ImageSettings.textCropFit":"Adaptar","DE.Views.ImageSettings.textCropToShape":"Recortar a la forma","DE.Views.ImageSettings.textEdit":"Editar","DE.Views.ImageSettings.textEditObject":"Editar objeto","DE.Views.ImageSettings.textFitMargins":"Ajustar al margen","DE.Views.ImageSettings.textFlip":"Volteo","DE.Views.ImageSettings.textFromFile":"Desde archivo","DE.Views.ImageSettings.textFromStorage":"Desde almacenamiento","DE.Views.ImageSettings.textFromUrl":"Desde URL","DE.Views.ImageSettings.textHeight":"Altura","DE.Views.ImageSettings.textHint270":"Girar 90° a la izquierda","DE.Views.ImageSettings.textHint90":"Girar 90° a la derecha","DE.Views.ImageSettings.textHintFlipH":"Voltear horizontalmente","DE.Views.ImageSettings.textHintFlipV":"Voltear verticalmente","DE.Views.ImageSettings.textInsert":"Reemplazar imagen","DE.Views.ImageSettings.textOriginalSize":"Tamaño real","DE.Views.ImageSettings.textRecentlyUsed":"Usados recientemente","DE.Views.ImageSettings.textResetCrop":"Restablecer recorte","DE.Views.ImageSettings.textRotate90":"Girar 90°","DE.Views.ImageSettings.textRotation":"Rotación","DE.Views.ImageSettings.textSize":"Tamaño","DE.Views.ImageSettings.textWidth":"Ancho","DE.Views.ImageSettings.textWrap":"Ajuste de texto","DE.Views.ImageSettings.txtBehind":"Detrás del texto","DE.Views.ImageSettings.txtInFront":"Delante del texto","DE.Views.ImageSettings.txtInline":"En línea con el texto","DE.Views.ImageSettings.txtSquare":"Cuadrado","DE.Views.ImageSettings.txtThrough":"A través","DE.Views.ImageSettings.txtTight":"Estrecho","DE.Views.ImageSettings.txtTopAndBottom":"Superior e inferior","DE.Views.ImageSettingsAdvanced.strMargins":"Espaciado del texto","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"Absoluto","DE.Views.ImageSettingsAdvanced.textAlignment":"Alineación","DE.Views.ImageSettingsAdvanced.textAlt":"Texto alternativo","DE.Views.ImageSettingsAdvanced.textAltDescription":"Descripción","DE.Views.ImageSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","DE.Views.ImageSettingsAdvanced.textAltTitle":"Título","DE.Views.ImageSettingsAdvanced.textAngle":"Ángulo","DE.Views.ImageSettingsAdvanced.textArrows":"Flechas","DE.Views.ImageSettingsAdvanced.textAspectRatio":"Bloquear relación de aspecto","DE.Views.ImageSettingsAdvanced.textAuto":"Automático","DE.Views.ImageSettingsAdvanced.textAutofit":"Autoajustar","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"Intersección con eje","DE.Views.ImageSettingsAdvanced.textAxisPos":"Posición de eje","DE.Views.ImageSettingsAdvanced.textAxisTitle":"Título","DE.Views.ImageSettingsAdvanced.textBase":"Base","DE.Views.ImageSettingsAdvanced.textBeginSize":"Tamaño inicial","DE.Views.ImageSettingsAdvanced.textBeginStyle":"Estilo inicial","DE.Views.ImageSettingsAdvanced.textBelow":"abajo","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"Entre marcas de graduación","DE.Views.ImageSettingsAdvanced.textBevel":"Biselado","DE.Views.ImageSettingsAdvanced.textBillions":"Miles de millones","DE.Views.ImageSettingsAdvanced.textBottom":"Inferior","DE.Views.ImageSettingsAdvanced.textBottomMargin":"Margen inferior","DE.Views.ImageSettingsAdvanced.textBtnWrap":"Ajuste de texto","DE.Views.ImageSettingsAdvanced.textCapType":"Tipo de remate","DE.Views.ImageSettingsAdvanced.textCategoryName":"Nombre de categoría","DE.Views.ImageSettingsAdvanced.textCenter":"Centrada","DE.Views.ImageSettingsAdvanced.textCharacter":"Carácter","DE.Views.ImageSettingsAdvanced.textChartTitle":"Título de gráfico","DE.Views.ImageSettingsAdvanced.textColumn":"Columna","DE.Views.ImageSettingsAdvanced.textCross":"Intersección","DE.Views.ImageSettingsAdvanced.textCustom":"Personalizado","DE.Views.ImageSettingsAdvanced.textDataLabels":"Etiquetas de datos","DE.Views.ImageSettingsAdvanced.textDistance":"Distancia desde el texto","DE.Views.ImageSettingsAdvanced.textEndSize":"Tamaño final","DE.Views.ImageSettingsAdvanced.textEndStyle":"Estilo final","DE.Views.ImageSettingsAdvanced.textFit":"Ajustar al ancho","DE.Views.ImageSettingsAdvanced.textFixed":"Fijado","DE.Views.ImageSettingsAdvanced.textFlat":"Plano","DE.Views.ImageSettingsAdvanced.textFlipped":"Volteado","DE.Views.ImageSettingsAdvanced.textFormat":"Formato de etiqueta","DE.Views.ImageSettingsAdvanced.textGridLines":"Líneas de cuadrícula","DE.Views.ImageSettingsAdvanced.textHeight":"Altura","DE.Views.ImageSettingsAdvanced.textHideAxis":"Ocultar eje","DE.Views.ImageSettingsAdvanced.textHigh":"Alto","DE.Views.ImageSettingsAdvanced.textHorAxis":"Eje horizontal","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"Eje horizontal secundario","DE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal ","DE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","DE.Views.ImageSettingsAdvanced.textHundredMil":"100.000.000","DE.Views.ImageSettingsAdvanced.textHundreds":"Cientos","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100.000","DE.Views.ImageSettingsAdvanced.textIn":"En","DE.Views.ImageSettingsAdvanced.textInnerBottom":"Abajo en el interior","DE.Views.ImageSettingsAdvanced.textInnerTop":"Arriba en el interior","DE.Views.ImageSettingsAdvanced.textJoinType":"Tipo de combinación","DE.Views.ImageSettingsAdvanced.textKeepRatio":"Proporciones constantes","DE.Views.ImageSettingsAdvanced.textLabelDist":"Distancia entre eje y etiqueta","DE.Views.ImageSettingsAdvanced.textLabelInterval":"Intervalo entre etiquetas","DE.Views.ImageSettingsAdvanced.textLabelOptions":"Parámetros de etiqueta","DE.Views.ImageSettingsAdvanced.textLabelPos":"Posición de etiqueta","DE.Views.ImageSettingsAdvanced.textLayout":"Diseño","DE.Views.ImageSettingsAdvanced.textLeft":"Izquierda","DE.Views.ImageSettingsAdvanced.textLeftMargin":"Margen izquierdo","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"Superposición a la izquierda","DE.Views.ImageSettingsAdvanced.textLegendBottom":"Abajo ","DE.Views.ImageSettingsAdvanced.textLegendLeft":"A la izquierda","DE.Views.ImageSettingsAdvanced.textLegendPos":"Leyenda","DE.Views.ImageSettingsAdvanced.textLegendRight":"A la derecha","DE.Views.ImageSettingsAdvanced.textLegendTop":"Arriba","DE.Views.ImageSettingsAdvanced.textLine":"Línea","DE.Views.ImageSettingsAdvanced.textLines":"Líneas","DE.Views.ImageSettingsAdvanced.textLineStyle":"Estilo de línea","DE.Views.ImageSettingsAdvanced.textLogScale":"Escala logarítmica","DE.Views.ImageSettingsAdvanced.textLow":"Bajo","DE.Views.ImageSettingsAdvanced.textMajor":"Principal","DE.Views.ImageSettingsAdvanced.textMajorMinor":"Principales y secundarios","DE.Views.ImageSettingsAdvanced.textMajorType":"Tipo principal","DE.Views.ImageSettingsAdvanced.textManual":"Manualmente","DE.Views.ImageSettingsAdvanced.textMargin":"Margen","DE.Views.ImageSettingsAdvanced.textMarkers":"Marcadores","DE.Views.ImageSettingsAdvanced.textMarksInterval":"Intervalo entre marcas","DE.Views.ImageSettingsAdvanced.textMaxValue":"Valor máximo","DE.Views.ImageSettingsAdvanced.textMillions":"Millones","DE.Views.ImageSettingsAdvanced.textMinor":"Secundario","DE.Views.ImageSettingsAdvanced.textMinorType":"Tipo secundario","DE.Views.ImageSettingsAdvanced.textMinValue":"Valor mínimo","DE.Views.ImageSettingsAdvanced.textMiter":"Ángulo","DE.Views.ImageSettingsAdvanced.textMove":"Desplazar objeto con texto","DE.Views.ImageSettingsAdvanced.textNextToAxis":"Junto al eje","DE.Views.ImageSettingsAdvanced.textNone":"Ningún","DE.Views.ImageSettingsAdvanced.textNoOverlay":"Sin superposición","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"Marcas de graduación","DE.Views.ImageSettingsAdvanced.textOptions":"Opciones","DE.Views.ImageSettingsAdvanced.textOriginalSize":"Tamaño real","DE.Views.ImageSettingsAdvanced.textOut":"Hacia fuera","DE.Views.ImageSettingsAdvanced.textOuterTop":"Arriba en el exterior","DE.Views.ImageSettingsAdvanced.textOverlap":"Superposición","DE.Views.ImageSettingsAdvanced.textOverlay":"Superposición","DE.Views.ImageSettingsAdvanced.textPage":"Página","DE.Views.ImageSettingsAdvanced.textParagraph":"Párrafo","DE.Views.ImageSettingsAdvanced.textPosition":"Posición","DE.Views.ImageSettingsAdvanced.textPositionPc":"Posición relativa","DE.Views.ImageSettingsAdvanced.textRelative":"en relación con","DE.Views.ImageSettingsAdvanced.textRelativeWH":"Relativo","DE.Views.ImageSettingsAdvanced.textResizeFit":"Ajustar tamaño de la forma al texto","DE.Views.ImageSettingsAdvanced.textReverse":"Valores en orden inverso","DE.Views.ImageSettingsAdvanced.textRight":"Derecha","DE.Views.ImageSettingsAdvanced.textRightMargin":"Margen derecho","DE.Views.ImageSettingsAdvanced.textRightOf":"a la derecha de","DE.Views.ImageSettingsAdvanced.textRightOverlay":"Superposición a la derecha","DE.Views.ImageSettingsAdvanced.textRotated":"Girado","DE.Views.ImageSettingsAdvanced.textRotation":"Rotación","DE.Views.ImageSettingsAdvanced.textRound":"Redondeado","DE.Views.ImageSettingsAdvanced.textSeparator":"Separador de etiquetas de datos","DE.Views.ImageSettingsAdvanced.textSeriesName":"Nombre de serie","DE.Views.ImageSettingsAdvanced.textShape":"Ajustes de forma","DE.Views.ImageSettingsAdvanced.textSize":"Tamaño","DE.Views.ImageSettingsAdvanced.textSmooth":"Suave","DE.Views.ImageSettingsAdvanced.textSquare":"Cuadrado","DE.Views.ImageSettingsAdvanced.textStraight":"Recto","DE.Views.ImageSettingsAdvanced.textTenMillions":"10.000.000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10.000","DE.Views.ImageSettingsAdvanced.textTextBox":"Cuadro de texto","DE.Views.ImageSettingsAdvanced.textThousands":"Miles","DE.Views.ImageSettingsAdvanced.textTickOptions":"Parámetros de marcas de graduación","DE.Views.ImageSettingsAdvanced.textTitle":"Imagen - Ajustes avanzados","DE.Views.ImageSettingsAdvanced.textTitleChart":"Gráfico - Ajustes avanzados","DE.Views.ImageSettingsAdvanced.textTitleShape":"Forma - Ajustes avanzados","DE.Views.ImageSettingsAdvanced.textTop":"Superior","DE.Views.ImageSettingsAdvanced.textTopMargin":"Margen superior","DE.Views.ImageSettingsAdvanced.textTrillions":"Trillones","DE.Views.ImageSettingsAdvanced.textUnits":"Unidades de visualización","DE.Views.ImageSettingsAdvanced.textValue":"Valor","DE.Views.ImageSettingsAdvanced.textVertAxis":"Eje vertical","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"Eje vertical secundario","DE.Views.ImageSettingsAdvanced.textVertical":"Vertical","DE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","DE.Views.ImageSettingsAdvanced.textWeightArrows":"Grosores y flechas","DE.Views.ImageSettingsAdvanced.textWidth":"Ancho","DE.Views.ImageSettingsAdvanced.textWrap":"Estilo de ajuste","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"Detrás del texto","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"Delante del texto","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"En línea con el texto","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"Cuadrado","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"A través","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"Estrecho","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"Superior e inferior","DE.Views.LeftMenu.ariaLeftMenu":"Menú de la izquierda","DE.Views.LeftMenu.tipAbout":"Acerca de","DE.Views.LeftMenu.tipChat":"Chat","DE.Views.LeftMenu.tipComments":"Comentarios","DE.Views.LeftMenu.tipNavigation":"Navegación","DE.Views.LeftMenu.tipOutline":"Títulos","DE.Views.LeftMenu.tipPageThumbnails":"Miniaturas de página","DE.Views.LeftMenu.tipPlugins":"Extensiones","DE.Views.LeftMenu.tipSearch":"Buscar","DE.Views.LeftMenu.tipSupport":"Sugerencias y ayuda","DE.Views.LeftMenu.tipTitles":"Títulos","DE.Views.LeftMenu.txtDeveloper":"MODO DE DESARROLLO","DE.Views.LeftMenu.txtEditor":"Editor de documentos","DE.Views.LeftMenu.txtLimit":"Acceso limitado","DE.Views.LeftMenu.txtTrial":"MODO DE PRUEBA","DE.Views.LeftMenu.txtTrialDev":"Modo desarrollador de prueba","DE.Views.LineNumbersDialog.textAddLineNumbering":"Añadir numeración de líneas","DE.Views.LineNumbersDialog.textApplyTo":"Aplicar cambios a","DE.Views.LineNumbersDialog.textContinuous":"Continuo","DE.Views.LineNumbersDialog.textCountBy":"Contar por","DE.Views.LineNumbersDialog.textDocument":"Todo el documento","DE.Views.LineNumbersDialog.textForward":"Desde este punto en adelante","DE.Views.LineNumbersDialog.textFromText":"Desde el texto","DE.Views.LineNumbersDialog.textNumbering":"Numeración","DE.Views.LineNumbersDialog.textRestartEachPage":"Reiniciar en cada página","DE.Views.LineNumbersDialog.textRestartEachSection":"Reiniciar en cada sección","DE.Views.LineNumbersDialog.textSection":"Sección actual","DE.Views.LineNumbersDialog.textStartAt":"Empezar en","DE.Views.LineNumbersDialog.textTitle":"Numeración de líneas","DE.Views.LineNumbersDialog.txtAutoText":"Auto","DE.Views.Links.capBtnAddText":"Añadir texto","DE.Views.Links.capBtnBookmarks":"Marcador","DE.Views.Links.capBtnCaption":"Leyenda","DE.Views.Links.capBtnContentsUpdate":"Actualizar la tabla","DE.Views.Links.capBtnCrossRef":"Referencia cruzada","DE.Views.Links.capBtnInsContents":"Tabla de contenidos","DE.Views.Links.capBtnInsFootnote":"Nota a pie de página","DE.Views.Links.capBtnInsLink":"Enlace","DE.Views.Links.capBtnTOF":"Tabla de ilustraciones","DE.Views.Links.confirmDeleteFootnotes":"¿Desea eliminar todas las notas al pie?","DE.Views.Links.confirmReplaceTOF":"¿Quiere reemplazar la tabla de ilustraciones seleccionada?","DE.Views.Links.mniConvertNote":"Convertir todas las notas","DE.Views.Links.mniDelFootnote":"Eliminar todas las notas","DE.Views.Links.mniInsEndnote":"Insertar nota al final","DE.Views.Links.mniInsFootnote":"Insertar nota a pie de página","DE.Views.Links.mniNoteSettings":"Ajustes de notas","DE.Views.Links.textContentsRemove":"Eliminar la tabla de contenidos","DE.Views.Links.textContentsSettings":"Ajustes","DE.Views.Links.textConvertToEndnotes":"Convertir todas las notas al pie a notas al final","DE.Views.Links.textConvertToFootnotes":"Convertir todas las notas al final a notas al pie","DE.Views.Links.textGotoEndnote":"Ir a notas al final","DE.Views.Links.textGotoFootnote":"Ir a notas a pie de página","DE.Views.Links.textSwapNotes":"Intercambiar notas al pie y notas al final","DE.Views.Links.textUpdateAll":"Actualizar toda la tabla","DE.Views.Links.textUpdatePages":"Actualizar solo los números de página","DE.Views.Links.tipAddText":"Incluir título en la tabla de contenido","DE.Views.Links.tipBookmarks":"Crear marcador","DE.Views.Links.tipCaption":"Insertar leyenda","DE.Views.Links.tipContents":"Introducir tabla de contenidos","DE.Views.Links.tipContentsUpdate":"Actualizar la tabla de contenidos","DE.Views.Links.tipCrossRef":"Insertar referencia cruzada","DE.Views.Links.tipInsertHyperlink":"Añadir enlace ","DE.Views.Links.tipNotes":"Introducir o editar notas a pie de página","DE.Views.Links.tipTableFigures":"Insertar tabla de ilustraciones","DE.Views.Links.tipTableFiguresUpdate":"Actualizar la tabla de ilustraciones","DE.Views.Links.titleUpdateTOF":"Actualizar la tabla de ilustraciones","DE.Views.Links.txtDontShowTof":"No mostrar en la tabla de contenido","DE.Views.Links.txtLevel":"Nivel","DE.Views.ListIndentsDialog.textSpace":"Espacio","DE.Views.ListIndentsDialog.textTab":"Marca de tabulación","DE.Views.ListIndentsDialog.textTitle":"Sangrías de la lista","DE.Views.ListIndentsDialog.txtFollowBullet":"Viñeta seguida de","DE.Views.ListIndentsDialog.txtFollowNumber":"Número seguido de","DE.Views.ListIndentsDialog.txtIndent":"Sangría de texto","DE.Views.ListIndentsDialog.txtNone":"Ninguna","DE.Views.ListIndentsDialog.txtPosBullet":"Posición de la viñeta","DE.Views.ListIndentsDialog.txtPosNumber":"Posición de número","DE.Views.ListSettingsDialog.textAuto":"Automático","DE.Views.ListSettingsDialog.textBold":"Negrita","DE.Views.ListSettingsDialog.textCenter":"Centrada","DE.Views.ListSettingsDialog.textHide":"Ocultar ajustes","DE.Views.ListSettingsDialog.textItalic":"Cursiva","DE.Views.ListSettingsDialog.textLeft":"Izquierda","DE.Views.ListSettingsDialog.textLevel":"Nivel","DE.Views.ListSettingsDialog.textMore":"Mostrar más ajustes","DE.Views.ListSettingsDialog.textPreview":"Vista previa","DE.Views.ListSettingsDialog.textRight":"Derecha","DE.Views.ListSettingsDialog.textSelectLevel":"Seleccionar nivel","DE.Views.ListSettingsDialog.textSpace":"Espacio","DE.Views.ListSettingsDialog.textTab":"Marca de tabulación","DE.Views.ListSettingsDialog.txtAlign":"Alineación","DE.Views.ListSettingsDialog.txtAlignAt":"en","DE.Views.ListSettingsDialog.txtBullet":"Viñeta","DE.Views.ListSettingsDialog.txtColor":"Color","DE.Views.ListSettingsDialog.txtFollow":"Número seguido de","DE.Views.ListSettingsDialog.txtFontName":"Fuente","DE.Views.ListSettingsDialog.txtInclcudeLevel":"Incluir número de nivel","DE.Views.ListSettingsDialog.txtIndent":"Sangría de texto","DE.Views.ListSettingsDialog.txtLikeText":"Como el texto","DE.Views.ListSettingsDialog.txtMoreTypes":"Más tipos","DE.Views.ListSettingsDialog.txtNewBullet":"Nueva viñeta","DE.Views.ListSettingsDialog.txtNone":"No","DE.Views.ListSettingsDialog.txtNumFormatString":"Formato de número","DE.Views.ListSettingsDialog.txtRestart":"Reiniciar lista","DE.Views.ListSettingsDialog.txtSize":"Tamaño","DE.Views.ListSettingsDialog.txtStart":"Empezar en","DE.Views.ListSettingsDialog.txtSymbol":"Símbolo","DE.Views.ListSettingsDialog.txtTabStop":"Añadir tabulación en","DE.Views.ListSettingsDialog.txtTitle":"Ajustes de lista","DE.Views.ListSettingsDialog.txtType":"Tipo","DE.Views.ListTypesAdvanced.labelSelect":"Seleccionar tipo de lista","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"Enviar","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"Tema","DE.Views.MailMergeEmailDlg.textAttachDocx":"Adjuntar como DOCX","DE.Views.MailMergeEmailDlg.textAttachPdf":"Adjuntar como PDF","DE.Views.MailMergeEmailDlg.textFileName":"Nombre de archivo","DE.Views.MailMergeEmailDlg.textFormat":"Formato","DE.Views.MailMergeEmailDlg.textFrom":"De","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"Mensaje","DE.Views.MailMergeEmailDlg.textSubject":"Línea de asunto","DE.Views.MailMergeEmailDlg.textTitle":"Enviar a correo electrónico","DE.Views.MailMergeEmailDlg.textTo":"Para","DE.Views.MailMergeEmailDlg.textWarning":"¡Aviso!","DE.Views.MailMergeEmailDlg.textWarningMsg":"Tenga en cuenta que no se puede detener el envío una vez pulsado el botón 'Enviar'.","DE.Views.MailMergeSettings.downloadMergeTitle":"Combinación de correspondencia","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"Error al combinar.","DE.Views.MailMergeSettings.notcriticalErrorTitle":"Aviso","DE.Views.MailMergeSettings.textAddRecipients":"Añada primero algunos destinatarios a la lista","DE.Views.MailMergeSettings.textAll":"Todos los registros","DE.Views.MailMergeSettings.textCurrent":"Registro actual","DE.Views.MailMergeSettings.textDataSource":"Origen de datos","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"Descargar","DE.Views.MailMergeSettings.textEditData":"Editar lista de destinatarios","DE.Views.MailMergeSettings.textEmail":"Correo","DE.Views.MailMergeSettings.textFrom":"De","DE.Views.MailMergeSettings.textGoToMail":"Ir al correo","DE.Views.MailMergeSettings.textHighlight":"Resaltar campos combinados","DE.Views.MailMergeSettings.textInsertField":"Insertar campo combinado","DE.Views.MailMergeSettings.textMaxRecepients":"Máximo - 100 destinatarios","DE.Views.MailMergeSettings.textMerge":"Combinar","DE.Views.MailMergeSettings.textMergeFields":"Unir campos","DE.Views.MailMergeSettings.textMergeTo":"Combinar con","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"Guardar","DE.Views.MailMergeSettings.textPreview":"Vista previa de resultados","DE.Views.MailMergeSettings.textReadMore":"Más información","DE.Views.MailMergeSettings.textSendMsg":"Todos los mensajes de correo están listos y se enviarán en breve.
La velocidad de envío dependerá de su servicio de correo.
Puede continuar trabajando en el documento o cerrarlo. Una vez terminada la operación, la notificación se enviará a la dirección de correo con que se registró.","DE.Views.MailMergeSettings.textTo":"con","DE.Views.MailMergeSettings.txtFirst":"Primer campo","DE.Views.MailMergeSettings.txtFromToError":"El valor \"De\" debe ser menor que el valor \"A\"","DE.Views.MailMergeSettings.txtLast":"Último campo","DE.Views.MailMergeSettings.txtNext":"Campo siguente","DE.Views.MailMergeSettings.txtPrev":"Registro anterior","DE.Views.MailMergeSettings.txtUntitled":"Sin título","DE.Views.MailMergeSettings.warnProcessMailMerge":"No se ha podido realizar la combinación","DE.Views.Navigation.strNavigate":"Títulos","DE.Views.Navigation.txtClosePanel":"Cerrar títulos","DE.Views.Navigation.txtCollapse":"Desplegar todo","DE.Views.Navigation.txtDemote":"Bajar un nivel","DE.Views.Navigation.txtEmpty":"No hay títulos en el documento.
Aplique un estilo de título al texto para que aparezca en la tabla de contenido.","DE.Views.Navigation.txtEmptyItem":"Encabezado vacío","DE.Views.Navigation.txtEmptyViewer":"No hay títulos en el documento.","DE.Views.Navigation.txtExpand":"Expandir todo","DE.Views.Navigation.txtExpandToLevel":"Expandir a nivel","DE.Views.Navigation.txtFontSize":"Tamaño de la fuente","DE.Views.Navigation.txtHeadingAfter":"Título nuevo después ","DE.Views.Navigation.txtHeadingBefore":"Título nuevo antes","DE.Views.Navigation.txtLarge":"Grande","DE.Views.Navigation.txtMedium":"Medio","DE.Views.Navigation.txtNewHeading":"Subtítulo nuevo","DE.Views.Navigation.txtPromote":"Subir un nivel","DE.Views.Navigation.txtSelect":"Seleccionar contenido","DE.Views.Navigation.txtSettings":"Ajustes de los títulos","DE.Views.Navigation.txtSmall":"Pequeño","DE.Views.Navigation.txtWrapHeadings":"Ajustar títulos largos","DE.Views.NoteSettingsDialog.textApply":"Aplicar","DE.Views.NoteSettingsDialog.textApplyTo":"Aplicar cambios a","DE.Views.NoteSettingsDialog.textContinue":"Continua","DE.Views.NoteSettingsDialog.textCustom":"Marca personalizada","DE.Views.NoteSettingsDialog.textDocEnd":"Final del documento","DE.Views.NoteSettingsDialog.textDocument":"Todo el documento","DE.Views.NoteSettingsDialog.textEachPage":"Reiniciar cada página","DE.Views.NoteSettingsDialog.textEachSection":"Reiniciar cada sección","DE.Views.NoteSettingsDialog.textEndnote":"Nota al final","DE.Views.NoteSettingsDialog.textFootnote":"Nota a pie de página","DE.Views.NoteSettingsDialog.textFormat":"Formato","DE.Views.NoteSettingsDialog.textInsert":"Insertar","DE.Views.NoteSettingsDialog.textLocation":"Ubicación","DE.Views.NoteSettingsDialog.textNumbering":"Numeración","DE.Views.NoteSettingsDialog.textNumFormat":"Formato de número","DE.Views.NoteSettingsDialog.textPageBottom":"Al pie de la página","DE.Views.NoteSettingsDialog.textSectEnd":"Al final de la sección","DE.Views.NoteSettingsDialog.textSection":"Sección actual","DE.Views.NoteSettingsDialog.textStart":"Empezar con","DE.Views.NoteSettingsDialog.textTextBottom":"Bajo el texto","DE.Views.NoteSettingsDialog.textTitle":"Ajustes de notas","DE.Views.NotesRemoveDialog.textEnd":"Eliminar todas las notas al final","DE.Views.NotesRemoveDialog.textFoot":"Eliminar todas las notas al pie de página","DE.Views.NotesRemoveDialog.textTitle":"Eliminar notas","DE.Views.PageMarginsDialog.notcriticalErrorTitle":"Aviso","DE.Views.PageMarginsDialog.textBottom":"Inferior","DE.Views.PageMarginsDialog.textGutter":"Medianiles","DE.Views.PageMarginsDialog.textGutterPosition":"Posición de medianiles","DE.Views.PageMarginsDialog.textInside":"Dentro de","DE.Views.PageMarginsDialog.textLandscape":"Horizontal","DE.Views.PageMarginsDialog.textLeft":"Izquierdo","DE.Views.PageMarginsDialog.textMirrorMargins":"Márgenes simétricos","DE.Views.PageMarginsDialog.textMultiplePages":"Múltiples páginas","DE.Views.PageMarginsDialog.textNormal":"Normal","DE.Views.PageMarginsDialog.textOrientation":"Orientación","DE.Views.PageMarginsDialog.textOutside":"Exterior","DE.Views.PageMarginsDialog.textPortrait":"Vertical","DE.Views.PageMarginsDialog.textPreview":"Vista previa","DE.Views.PageMarginsDialog.textRight":"Derecho","DE.Views.PageMarginsDialog.textTitle":"Márgenes","DE.Views.PageMarginsDialog.textTop":"Superior","DE.Views.PageMarginsDialog.txtMarginsH":"Los márgenes superior e inferior son demasiado altos para la altura de la página","DE.Views.PageMarginsDialog.txtMarginsW":"Los márgenes izquierdo y derecho son demasiado anchos para la anchura de la página","DE.Views.PageNumberingDlg.textFrom":"Empezar en","DE.Views.PageNumberingDlg.textMoreTypes":"Más tipos","DE.Views.PageNumberingDlg.textNumberFormat":"Formato de número","DE.Views.PageNumberingDlg.textPrev":"Continuar desde la sección anterior","DE.Views.PageSizeDialog.textHeight":"Altura","DE.Views.PageSizeDialog.textPreset":"Preajuste","DE.Views.PageSizeDialog.textTitle":"Tamaño de la página","DE.Views.PageSizeDialog.textWidth":"Ancho","DE.Views.PageSizeDialog.txtCustom":"Personalizado","DE.Views.PageThumbnails.textClosePanel":"Cerrar las miniaturas de las páginas","DE.Views.PageThumbnails.textHighlightVisiblePart":"Resaltar la parte visible de la página","DE.Views.PageThumbnails.textPageThumbnails":"Miniaturas de página","DE.Views.PageThumbnails.textThumbnailsSettings":"Configuración de las miniaturas","DE.Views.PageThumbnails.textThumbnailsSize":"Tamaño de las miniaturas","DE.Views.ParagraphSettings.strIndent":"Sangrías","DE.Views.ParagraphSettings.strIndentsLeftText":"A la izquierda","DE.Views.ParagraphSettings.strIndentsRightText":"A la derecha","DE.Views.ParagraphSettings.strIndentsSpecial":"Especial","DE.Views.ParagraphSettings.strLineHeight":"Interlineado","DE.Views.ParagraphSettings.strParagraphSpacing":"Espaciado de párafo","DE.Views.ParagraphSettings.strSomeParagraphSpace":"No añadir espaciado entre párrafos del mismo estilo","DE.Views.ParagraphSettings.strSpacingAfter":"Después","DE.Views.ParagraphSettings.strSpacingBefore":"Antes","DE.Views.ParagraphSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.ParagraphSettings.textAt":"En","DE.Views.ParagraphSettings.textAtLeast":"Al menos","DE.Views.ParagraphSettings.textAuto":"Múltiple","DE.Views.ParagraphSettings.textBackColor":"Color del fondo","DE.Views.ParagraphSettings.textExact":"Exacto","DE.Views.ParagraphSettings.textFirstLine":"Primera línea","DE.Views.ParagraphSettings.textHanging":"Sangría francesa","DE.Views.ParagraphSettings.textNoneSpecial":"(ninguno)","DE.Views.ParagraphSettings.txtAutoText":"Auto","DE.Views.ParagraphSettingsAdvanced.noTabs":"Los tabuladores especificados aparecerán en este campo","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"Mayúsculas","DE.Views.ParagraphSettingsAdvanced.strBorders":"Bordes y relleno","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"Salto de página antes","DE.Views.ParagraphSettingsAdvanced.strDirection":"Dirección ","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Tachado doble","DE.Views.ParagraphSettingsAdvanced.strIndent":"Sangrías","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Izquierda","DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Espaciado de línea","DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel":"Nivel de esquema ","DE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Derecha","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Después","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","DE.Views.ParagraphSettingsAdvanced.strKeepLines":"Mantener líneas juntas","DE.Views.ParagraphSettingsAdvanced.strKeepNext":"Conservar con el siguiente","DE.Views.ParagraphSettingsAdvanced.strMargins":"Espaciados internos","DE.Views.ParagraphSettingsAdvanced.strOrphan":"Control de líneas huérfanas","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Fuente","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Sangría y espaciado","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"Saltos de línea y saltos de página","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"Ubicación","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versalitas","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"No añadir espaciado entre párrafos del mismo estilo","DE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaciado","DE.Views.ParagraphSettingsAdvanced.strStrike":"Tachado simple","DE.Views.ParagraphSettingsAdvanced.strSubscript":"Subíndice","DE.Views.ParagraphSettingsAdvanced.strSuperscript":"Superíndice","DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers":"Suprimir números de línea","DE.Views.ParagraphSettingsAdvanced.strTabs":"Tabuladores","DE.Views.ParagraphSettingsAdvanced.textAlign":"Alineación","DE.Views.ParagraphSettingsAdvanced.textAll":"Todo","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"Al menos","DE.Views.ParagraphSettingsAdvanced.textAuto":"Múltiple","DE.Views.ParagraphSettingsAdvanced.textBackColor":"Color del fondo","DE.Views.ParagraphSettingsAdvanced.textBodyText":"Texto básico","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"Color del borde","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"Haga clic en el diagrama o use los botones para seleccionar bordes y aplicar el estilo seleccionado","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"Tamaño del borde","DE.Views.ParagraphSettingsAdvanced.textBottom":"Inferior","DE.Views.ParagraphSettingsAdvanced.textCentered":"Centrado","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaciado entre caracteres","DE.Views.ParagraphSettingsAdvanced.textContext":"Contexto","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"Contextuales y discrecionales","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"Contextuales, históricas y discrecionales","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"Contextuales e históricas","DE.Views.ParagraphSettingsAdvanced.textDefault":"Tabulador predeterminado","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"De izquierda a derecha","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"De derecha a izquierda","DE.Views.ParagraphSettingsAdvanced.textDiscret":"Discrecionalidad","DE.Views.ParagraphSettingsAdvanced.textEffects":"Efectos","DE.Views.ParagraphSettingsAdvanced.textExact":"Exactamente","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primera línea","DE.Views.ParagraphSettingsAdvanced.textHanging":"Suspendido","DE.Views.ParagraphSettingsAdvanced.textHistorical":"Histórico","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"Históricas y discrecionales","DE.Views.ParagraphSettingsAdvanced.textJustified":"Justificada","DE.Views.ParagraphSettingsAdvanced.textLeader":"Relleno","DE.Views.ParagraphSettingsAdvanced.textLeft":"Izquierda","DE.Views.ParagraphSettingsAdvanced.textLevel":"Nivel","DE.Views.ParagraphSettingsAdvanced.textLigatures":"Ligaduras","DE.Views.ParagraphSettingsAdvanced.textNone":"No","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(ninguno)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"Características de OpenType","DE.Views.ParagraphSettingsAdvanced.textPosition":"Posición","DE.Views.ParagraphSettingsAdvanced.textRemove":"Eliminar","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Eliminar todo","DE.Views.ParagraphSettingsAdvanced.textRight":"Derecha","DE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","DE.Views.ParagraphSettingsAdvanced.textSpacing":"Espaciado","DE.Views.ParagraphSettingsAdvanced.textStandard":"Solamente estándar","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"Estándar y contextual","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"Estándar, contextual y discrecional","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"Estándar, contextual e histórico","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"Estándar y discrecional","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"Estándar, histórico y discrecional","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"Estándar e histórico","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"Centrada","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"Izquierda","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posición del tabulador","DE.Views.ParagraphSettingsAdvanced.textTabRight":"Derecha","DE.Views.ParagraphSettingsAdvanced.textTitle":"Párrafo - Ajustes avanzados","DE.Views.ParagraphSettingsAdvanced.textTop":"Superior","DE.Views.ParagraphSettingsAdvanced.tipAll":"Establecer borde exterior y todas líneas interiores","DE.Views.ParagraphSettingsAdvanced.tipBottom":"Establecer solo borde inferior","DE.Views.ParagraphSettingsAdvanced.tipInner":"Establecer solo líneas horizontales interiores","DE.Views.ParagraphSettingsAdvanced.tipLeft":"Establecer solo borde izquierdo","DE.Views.ParagraphSettingsAdvanced.tipNone":"No establecer bordes","DE.Views.ParagraphSettingsAdvanced.tipOuter":"Establecer solo borde exterior","DE.Views.ParagraphSettingsAdvanced.tipRight":"Establecer solo borde derecho","DE.Views.ParagraphSettingsAdvanced.tipTop":"Establecer solo borde superior","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"Auto","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"Sin bordes","DE.Views.PrintWithPreview.textMarginsLast":"Último personalizado","DE.Views.PrintWithPreview.textMarginsModerate":"Moderado","DE.Views.PrintWithPreview.textMarginsNarrow":"Estrecho","DE.Views.PrintWithPreview.textMarginsNormal":"Normal","DE.Views.PrintWithPreview.textMarginsWide":"Amplio","DE.Views.PrintWithPreview.txtAllPages":"Todas las páginas","DE.Views.PrintWithPreview.txtAuto":"Automático","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impresión en blanco y negro","DE.Views.PrintWithPreview.txtBothSides":"Imprimir en ambas caras","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"Girar páginas por borde largo","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"Girar páginas por borde corto","DE.Views.PrintWithPreview.txtBottom":"Parte inferior","DE.Views.PrintWithPreview.txtColorPrinting":"Impresión en color","DE.Views.PrintWithPreview.txtCopies":"Copias","DE.Views.PrintWithPreview.txtCurrentPage":"Página actual","DE.Views.PrintWithPreview.txtCustom":"Personalizado","DE.Views.PrintWithPreview.txtCustomPages":"Impresión personalizada","DE.Views.PrintWithPreview.txtLandscape":"Horizontal","DE.Views.PrintWithPreview.txtLeft":"Izquierdo","DE.Views.PrintWithPreview.txtMargins":"Márgenes","DE.Views.PrintWithPreview.txtOf":"de {0}","DE.Views.PrintWithPreview.txtOneSide":"Imprimir a una cara","DE.Views.PrintWithPreview.txtOneSideDesc":"Imprimir solo en una cara de la página","DE.Views.PrintWithPreview.txtPage":"Página","DE.Views.PrintWithPreview.txtPageNumInvalid":"Número de página no válido","DE.Views.PrintWithPreview.txtPageOrientation":"Orientación de página","DE.Views.PrintWithPreview.txtPages":"Páginas","DE.Views.PrintWithPreview.txtPageSize":"Tamaño de la página","DE.Views.PrintWithPreview.txtPortrait":"Vertical","DE.Views.PrintWithPreview.txtPrint":"Imprimir","DE.Views.PrintWithPreview.txtPrinter":"Impresora","DE.Views.PrintWithPreview.txtPrinterNotSelected":"Impresora no seleccionada","DE.Views.PrintWithPreview.txtPrintersNotFound":"Impresoras no encontradas","DE.Views.PrintWithPreview.txtPrintPdf":"Imprimir en PDF","DE.Views.PrintWithPreview.txtPrintRange":"Intervalo de impresión","DE.Views.PrintWithPreview.txtPrintSides":"Caras de impresión","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir utilizando el diálogo del sistema","DE.Views.PrintWithPreview.txtRight":"Derecho","DE.Views.PrintWithPreview.txtSelection":"Selección","DE.Views.PrintWithPreview.txtTop":"Parte superior","DE.Views.PrintWithPreview.txtWaitingForPrinters":"Esperando impresoras","DE.Views.ProtectDialog.textComments":"Comentarios","DE.Views.ProtectDialog.textForms":"Rellenado de formularios","DE.Views.ProtectDialog.textReview":"Cambios realizados","DE.Views.ProtectDialog.textView":"Sin cambios (solo lectura)","DE.Views.ProtectDialog.txtAllow":"Permitir solo este tipo de edición en el documento","DE.Views.ProtectDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","DE.Views.ProtectDialog.txtLimit":"La contraseña está limitada a 15 caracteres","DE.Views.ProtectDialog.txtOptional":"opcional","DE.Views.ProtectDialog.txtPassword":"Contraseña","DE.Views.ProtectDialog.txtProtect":"Proteger","DE.Views.ProtectDialog.txtRepeat":"Repita la contraseña","DE.Views.ProtectDialog.txtTitle":"Proteger","DE.Views.ProtectDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdela en un lugar seguro.","DE.Views.RightMenu.ariaRightMenu":"Menú de la derecha","DE.Views.RightMenu.txtChartSettings":"Ajustes de gráfico","DE.Views.RightMenu.txtFormSettings":"Ajustes de formulario","DE.Views.RightMenu.txtHeaderFooterSettings":"Ajustes de encabezado y pie de página","DE.Views.RightMenu.txtImageSettings":"Ajustes de imagen","DE.Views.RightMenu.txtMailMergeSettings":"Ajustes de fusión","DE.Views.RightMenu.txtParagraphSettings":"Ajustes de párrafo","DE.Views.RightMenu.txtShapeSettings":"Ajustes de forma","DE.Views.RightMenu.txtSignatureSettings":"Configuración de firma","DE.Views.RightMenu.txtTableSettings":"Ajustes de tabla","DE.Views.RightMenu.txtTextArtSettings":"Ajustes de galería de texto","DE.Views.RoleDeleteDlg.textLabel":"Para eliminar este destinatario, es necesario mover sus campos asociados a otro destinatario.","DE.Views.RoleDeleteDlg.textSelect":"Seleccionar el destinatario para la fusión de campos","DE.Views.RoleDeleteDlg.textTitle":"Eliminar destinatario","DE.Views.RoleEditDlg.errNameExists":"Ya existe un destinatario con ese nombre.","DE.Views.RoleEditDlg.textEmptyError":"El nombre del destinatario no debe estar vacío.","DE.Views.RoleEditDlg.textName":"Nombre del destinatario","DE.Views.RoleEditDlg.textNameEx":"Ejemplo: Solicitante, cliente, vendedor","DE.Views.RoleEditDlg.textNoHighlight":"No resaltar","DE.Views.RoleEditDlg.txtTitleEdit":"Editar destinatario","DE.Views.RoleEditDlg.txtTitleNew":"Crear nuevo destinatario","DE.Views.RolesManagerDlg.textAnyone":"Cualquiera","DE.Views.RolesManagerDlg.textDelete":"Eliminar","DE.Views.RolesManagerDlg.textDeleteLast":"¿Está seguro de que desea eliminar el destinatario {0}?
Una vez eliminado, se creará el destinatario predeterminado.","DE.Views.RolesManagerDlg.textDescription":"Añada destinatarios y establezca el orden en que los rellenadores reciben y firman el documento","DE.Views.RolesManagerDlg.textDown":"Mover el destinatario hacia abajo","DE.Views.RolesManagerDlg.textEdit":"Editar","DE.Views.RolesManagerDlg.textEmpty":"Todavía no se ha creado ningún destinatario.
Cree al menos un destinatario y aparecerá en este campo.","DE.Views.RolesManagerDlg.textNew":"Nuevo","DE.Views.RolesManagerDlg.textUp":"Mover el destinatario hacia arriba","DE.Views.RolesManagerDlg.txtTitle":"Gestionar roles de destinatarios","DE.Views.RolesManagerDlg.warnCantDelete":"No puede eliminar este destinatario porque tiene campos asociados.","DE.Views.RolesManagerDlg.warnDelete":"¿Está seguro de que desea eliminar el destinatario {0}?","DE.Views.SaveFormDlg.saveButtonText":"Guardar","DE.Views.SaveFormDlg.textAnyone":"Cualquiera","DE.Views.SaveFormDlg.textDescription":"Al guardar en PDF, solo los destinatario con campos se añaden a la lista de relleno","DE.Views.SaveFormDlg.textEmpty":"No hay destinatarios asociados a los campos.","DE.Views.SaveFormDlg.textFill":"Lista de relleno","DE.Views.SaveFormDlg.txtTitle":"Guardar como formulario","DE.Views.ShapeSettings.strBackground":"Color del fondo","DE.Views.ShapeSettings.strChange":"Cambiar forma","DE.Views.ShapeSettings.strColor":"Color","DE.Views.ShapeSettings.strFill":"Relleno","DE.Views.ShapeSettings.strForeground":"Color del primer plano","DE.Views.ShapeSettings.strPattern":"Patrón","DE.Views.ShapeSettings.strShadow":"Mostrar sombra","DE.Views.ShapeSettings.strSize":"Tamaño","DE.Views.ShapeSettings.strStroke":"Trazo","DE.Views.ShapeSettings.strTransparency":"Opacidad","DE.Views.ShapeSettings.strType":"Tipo","DE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","DE.Views.ShapeSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.ShapeSettings.textAngle":"Ángulo","DE.Views.ShapeSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","DE.Views.ShapeSettings.textColor":"Relleno de color","DE.Views.ShapeSettings.textDirection":"Dirección ","DE.Views.ShapeSettings.textEditPoints":"Modificar puntos","DE.Views.ShapeSettings.textEditShape":"Editar forma","DE.Views.ShapeSettings.textEmptyPattern":"Sin patrón","DE.Views.ShapeSettings.textEyedropper":"Cuentagotas","DE.Views.ShapeSettings.textFlip":"Volteo","DE.Views.ShapeSettings.textFromFile":"Desde archivo","DE.Views.ShapeSettings.textFromStorage":"Desde almacenamiento","DE.Views.ShapeSettings.textFromUrl":"Desde URL","DE.Views.ShapeSettings.textGradient":"Puntos de gradiente","DE.Views.ShapeSettings.textGradientFill":"Relleno degradado","DE.Views.ShapeSettings.textHint270":"Girar 90° a la izquierda","DE.Views.ShapeSettings.textHint90":"Girar 90° a la derecha","DE.Views.ShapeSettings.textHintFlipH":"Voltear horizontalmente","DE.Views.ShapeSettings.textHintFlipV":"Voltear verticalmente","DE.Views.ShapeSettings.textImageTexture":"Imagen o textura","DE.Views.ShapeSettings.textLinear":"Lineal","DE.Views.ShapeSettings.textMoreColors":"Más colores","DE.Views.ShapeSettings.textNoFill":"Sin relleno","DE.Views.ShapeSettings.textNoShadow":"Sin sombra","DE.Views.ShapeSettings.textPatternFill":"Patrón","DE.Views.ShapeSettings.textPosition":"Posición","DE.Views.ShapeSettings.textRadial":"Radial","DE.Views.ShapeSettings.textRecentlyUsed":"Usados recientemente","DE.Views.ShapeSettings.textRotate90":"Girar 90°","DE.Views.ShapeSettings.textRotation":"Rotación","DE.Views.ShapeSettings.textSelectImage":"Seleccionar imagen","DE.Views.ShapeSettings.textSelectTexture":"Seleccionar","DE.Views.ShapeSettings.textShadow":"Sombra","DE.Views.ShapeSettings.textStretch":"Estirar","DE.Views.ShapeSettings.textStyle":"Estilo","DE.Views.ShapeSettings.textTexture":"Desde textura","DE.Views.ShapeSettings.textTile":"Mosaico","DE.Views.ShapeSettings.textWrap":"Ajuste de texto","DE.Views.ShapeSettings.tipAddGradientPoint":"Añadir punto de degradado","DE.Views.ShapeSettings.tipRemoveGradientPoint":"Eliminar punto de degradado","DE.Views.ShapeSettings.txtBehind":"Detrás del texto","DE.Views.ShapeSettings.txtBrownPaper":"Papel marrón","DE.Views.ShapeSettings.txtCanvas":"Lienzo","DE.Views.ShapeSettings.txtCarton":"Cartón","DE.Views.ShapeSettings.txtDarkFabric":"Tela oscura","DE.Views.ShapeSettings.txtGrain":"Grano","DE.Views.ShapeSettings.txtGranite":"Granito","DE.Views.ShapeSettings.txtGreyPaper":"Papel gris","DE.Views.ShapeSettings.txtInFront":"Delante del texto","DE.Views.ShapeSettings.txtInline":"En línea con el texto","DE.Views.ShapeSettings.txtKnit":"Tejido","DE.Views.ShapeSettings.txtLeather":"Cuero","DE.Views.ShapeSettings.txtNoBorders":"Sin línea","DE.Views.ShapeSettings.txtOffsetBottom":"Desplazamiento: Abajo","DE.Views.ShapeSettings.txtOffsetBottomLeft":"Desplazamiento: Abajo a la izquierda","DE.Views.ShapeSettings.txtOffsetBottomRight":"Desplazamiento: Abajo a la derecha","DE.Views.ShapeSettings.txtOffsetCenter":"Desplazamiento: Al centro","DE.Views.ShapeSettings.txtOffsetLeft":"Desplazamiento: A la izquierda","DE.Views.ShapeSettings.txtOffsetRight":"Desplazamiento: A la derecha","DE.Views.ShapeSettings.txtOffsetTop":"Desplazamiento: Arriba","DE.Views.ShapeSettings.txtOffsetTopLeft":"Desplazamiento: Arriba a la izquierda","DE.Views.ShapeSettings.txtOffsetTopRight":"Desplazamiento: Arriba a la derecha","DE.Views.ShapeSettings.txtPapyrus":"Papiro","DE.Views.ShapeSettings.txtSquare":"Cuadrado","DE.Views.ShapeSettings.txtThrough":"A través","DE.Views.ShapeSettings.txtTight":"Estrecho","DE.Views.ShapeSettings.txtTopAndBottom":"Superior e inferior","DE.Views.ShapeSettings.txtWood":"Madera","DE.Views.SignatureSettings.notcriticalErrorTitle":"Aviso","DE.Views.SignatureSettings.strDelete":"Eliminar la firma","DE.Views.SignatureSettings.strDetails":"Detalles de la firma","DE.Views.SignatureSettings.strInvalid":"Firmas inválidas","DE.Views.SignatureSettings.strRequested":"Firmas requeridas","DE.Views.SignatureSettings.strSetup":"Configuración de la firma","DE.Views.SignatureSettings.strSign":"Firmar","DE.Views.SignatureSettings.strSignature":"Firma","DE.Views.SignatureSettings.strSigner":"Firmante","DE.Views.SignatureSettings.strValid":"Firmas valida","DE.Views.SignatureSettings.txtContinueEditing":"Editar de todas maneras","DE.Views.SignatureSettings.txtEditWarning":"La edición eliminará las firmas del documento.
¿Continuar?","DE.Views.SignatureSettings.txtRemoveWarning":"¿Desea eliminar esta firma?
No se puede deshacer.","DE.Views.SignatureSettings.txtRequestedSignatures":"Este documento necesita ser firmado","DE.Views.SignatureSettings.txtSigned":"Se han añadido firmas válidas al documento. El documento está protegido contra la edición.","DE.Views.SignatureSettings.txtSignedForm":"Este documento se ha firmado y no se puede modificar.","DE.Views.SignatureSettings.txtSignedInvalid":"Algunas de las firmas digitales del documento no son válidas o no han podido ser verificadas. El documento está protegido contra la edición.","DE.Views.Statusbar.goToPageText":"Ir a página","DE.Views.Statusbar.pageIndexText":"Página {0} de {1}","DE.Views.Statusbar.tipFitPage":"Ajustar a la página","DE.Views.Statusbar.tipFitWidth":"Ajustar al ancho","DE.Views.Statusbar.tipHandTool":"Herramienta manual","DE.Views.Statusbar.tipMultiplePages":"Múltiples páginas","DE.Views.Statusbar.tipSelectTool":"Seleccionar herramienta","DE.Views.Statusbar.tipSetLang":"Establecer idioma del texto","DE.Views.Statusbar.tipZoomFactor":"Ampliación","DE.Views.Statusbar.tipZoomIn":"Acercar","DE.Views.Statusbar.tipZoomOut":"Alejar","DE.Views.Statusbar.txtPageNumInvalid":"Número de página inválido","DE.Views.Statusbar.txtPages":"Páginas","DE.Views.Statusbar.txtParagraphs":"Párrafos","DE.Views.Statusbar.txtSpaces":"Símbolos con espacios","DE.Views.Statusbar.txtSymbols":"Símbolos","DE.Views.Statusbar.txtWordCount":"Recuento de palabras","DE.Views.Statusbar.txtWords":"Palabras","DE.Views.StyleTitleDialog.textHeader":"Crear estilo nuevo","DE.Views.StyleTitleDialog.textNextStyle":"Estilo de párrafo siguiente","DE.Views.StyleTitleDialog.textTitle":"Título","DE.Views.StyleTitleDialog.txtEmpty":"Este campo es obligatorio","DE.Views.StyleTitleDialog.txtNotEmpty":"El campo no puede estar vacío","DE.Views.StyleTitleDialog.txtSameAs":"Igual que el nuevo estilo creado","DE.Views.TableFormulaDialog.textBookmark":"Pegar marcador","DE.Views.TableFormulaDialog.textFormat":"Formato de número","DE.Views.TableFormulaDialog.textFormula":"Fórmula","DE.Views.TableFormulaDialog.textInsertFunction":"Pegar función","DE.Views.TableFormulaDialog.textTitle":"Ajustes de fórmula","DE.Views.TableOfContentsSettings.strAlign":"Alinear los números de página a la derecha","DE.Views.TableOfContentsSettings.strFullCaption":"Incluir etiqueta y número","DE.Views.TableOfContentsSettings.strLinks":"Formatear tabla de contenido como enlaces","DE.Views.TableOfContentsSettings.strLinksOF":"Formatear tabla de ilustraciones como enlaces","DE.Views.TableOfContentsSettings.strShowPages":"Mostrar números de página","DE.Views.TableOfContentsSettings.textBuildTable":"Generar tabla de contenidos desde","DE.Views.TableOfContentsSettings.textBuildTableOF":"Generar tabla de ilustraciones a partir de:","DE.Views.TableOfContentsSettings.textEquation":"Ecuación","DE.Views.TableOfContentsSettings.textFigure":"Figura","DE.Views.TableOfContentsSettings.textLeader":"Relleno","DE.Views.TableOfContentsSettings.textLevel":"Nivel","DE.Views.TableOfContentsSettings.textLevels":"Niveles","DE.Views.TableOfContentsSettings.textNone":"Ninguna","DE.Views.TableOfContentsSettings.textRadioCaption":"Leyenda","DE.Views.TableOfContentsSettings.textRadioLevels":"Niveles de perfil","DE.Views.TableOfContentsSettings.textRadioStyle":"Estilo","DE.Views.TableOfContentsSettings.textRadioStyles":"Seleccionar estilos","DE.Views.TableOfContentsSettings.textStyle":"Estilo","DE.Views.TableOfContentsSettings.textStyles":"Estilos","DE.Views.TableOfContentsSettings.textTable":"Tabla","DE.Views.TableOfContentsSettings.textTitle":"Tabla de contenidos","DE.Views.TableOfContentsSettings.textTitleTOF":"Tabla de ilustraciones","DE.Views.TableOfContentsSettings.txtCentered":"Centrada","DE.Views.TableOfContentsSettings.txtClassic":"Clásico","DE.Views.TableOfContentsSettings.txtCurrent":"Actual","DE.Views.TableOfContentsSettings.txtDistinctive":"Distintiva","DE.Views.TableOfContentsSettings.txtFormal":"Formal","DE.Views.TableOfContentsSettings.txtModern":"Moderna","DE.Views.TableOfContentsSettings.txtOnline":"Con enlaces","DE.Views.TableOfContentsSettings.txtSimple":"Simple","DE.Views.TableOfContentsSettings.txtStandard":"Estándar","DE.Views.TableSettings.deleteColumnText":"Eliminar columna","DE.Views.TableSettings.deleteRowText":"Eliminar fila","DE.Views.TableSettings.deleteTableText":"Eliminar tabla","DE.Views.TableSettings.insertColumnLeftText":"Insertar columna a la izquierda","DE.Views.TableSettings.insertColumnRightText":"Insertar columna a la derecha","DE.Views.TableSettings.insertRowAboveText":"Insertar fila arriba","DE.Views.TableSettings.insertRowBelowText":"Insertar fila debajo","DE.Views.TableSettings.mergeCellsText":"Unir celdas","DE.Views.TableSettings.selectCellText":"Seleccionar celda","DE.Views.TableSettings.selectColumnText":"Seleccionar columna","DE.Views.TableSettings.selectRowText":"Seleccionar fila","DE.Views.TableSettings.selectTableText":"Seleccionar tabla","DE.Views.TableSettings.splitCellsText":"Dividir celda...","DE.Views.TableSettings.splitCellTitleText":"Dividir celda","DE.Views.TableSettings.strRepeatRow":"Repetir como una fila de encabezado en la parte superior de cada página","DE.Views.TableSettings.textAddFormula":"Añadir fórmula","DE.Views.TableSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.TableSettings.textAutofit":"Ajustar automáticamente según el contenido","DE.Views.TableSettings.textBackColor":"Color del fondo","DE.Views.TableSettings.textBanded":"Con bandas","DE.Views.TableSettings.textBorderColor":"Color","DE.Views.TableSettings.textBorders":"Estilo de bordes","DE.Views.TableSettings.textCellSize":"Tamaño de filas y columnas","DE.Views.TableSettings.textColumns":"Columnas","DE.Views.TableSettings.textConvert":"Convertir tabla en texto","DE.Views.TableSettings.textDistributeCols":"Distribuir columnas","DE.Views.TableSettings.textDistributeRows":"Distribuir filas","DE.Views.TableSettings.textEdit":"Filas y columnas","DE.Views.TableSettings.textEmptyTemplate":"Sin plantillas","DE.Views.TableSettings.textFirst":"primero","DE.Views.TableSettings.textHeader":"Encabezado","DE.Views.TableSettings.textHeight":"Altura","DE.Views.TableSettings.textLast":"Última","DE.Views.TableSettings.textRows":"Filas","DE.Views.TableSettings.textSelectBorders":"Seleccione los bordes que desea cambiar aplicando el estilo seleccionado arriba","DE.Views.TableSettings.textTemplate":"Seleccionar desde plantilla","DE.Views.TableSettings.textTotal":"Total","DE.Views.TableSettings.textWidth":"Ancho","DE.Views.TableSettings.tipAll":"Establecer borde exterior y todas líneas interiores","DE.Views.TableSettings.tipBottom":"Establecer solo borde exterior inferior","DE.Views.TableSettings.tipInner":"Establecer solo líneas interiores","DE.Views.TableSettings.tipInnerHor":"Establecer solo líneas horizontales interiores","DE.Views.TableSettings.tipInnerVert":"Establecer solo líneas verticales interiores","DE.Views.TableSettings.tipLeft":"Establecer solo borde exterior izquierdo","DE.Views.TableSettings.tipNone":"No establecer bordes","DE.Views.TableSettings.tipOuter":"Establecer solo borde exterior","DE.Views.TableSettings.tipRight":"Establecer solo borde exterior derecho","DE.Views.TableSettings.tipTop":"Establecer solo borde exterior superior","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"Tablas con bordes y líneas","DE.Views.TableSettings.txtGroupTable_Custom":"Personalizado","DE.Views.TableSettings.txtGroupTable_Grid":"Tablas de cuadrícula","DE.Views.TableSettings.txtGroupTable_List":"Tablas de lista","DE.Views.TableSettings.txtGroupTable_Plain":"Tablas sin formato","DE.Views.TableSettings.txtNoBorders":"Sin bordes","DE.Views.TableSettings.txtTable_Accent":"Acento","DE.Views.TableSettings.txtTable_Bordered":"Con bordes","DE.Views.TableSettings.txtTable_BorderedAndLined":"Con bordes y líneas","DE.Views.TableSettings.txtTable_Colorful":"Colorido","DE.Views.TableSettings.txtTable_Dark":"Oscuro","DE.Views.TableSettings.txtTable_GridTable":"Tabla de rejilla","DE.Views.TableSettings.txtTable_Light":"Claro","DE.Views.TableSettings.txtTable_Lined":"Con líneas","DE.Views.TableSettings.txtTable_ListTable":"Tabla de lista","DE.Views.TableSettings.txtTable_PlainTable":"Tabla normal","DE.Views.TableSettings.txtTable_TableGrid":"Cuadrícula de tabla","DE.Views.TableSettingsAdvanced.textAlign":"Alineación","DE.Views.TableSettingsAdvanced.textAlignment":"Alineación","DE.Views.TableSettingsAdvanced.textAllowSpacing":"Espacio entre celdas","DE.Views.TableSettingsAdvanced.textAlt":"Texto alternativo","DE.Views.TableSettingsAdvanced.textAltDescription":"Descripción","DE.Views.TableSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","DE.Views.TableSettingsAdvanced.textAltTitle":"Título","DE.Views.TableSettingsAdvanced.textAnchorText":"Texto","DE.Views.TableSettingsAdvanced.textAutofit":"Cambiar tamaño automáticamente para ajustarse al contenido","DE.Views.TableSettingsAdvanced.textBackColor":"Fondo de la celda","DE.Views.TableSettingsAdvanced.textBelow":"abajo","DE.Views.TableSettingsAdvanced.textBorderColor":"Color del borde","DE.Views.TableSettingsAdvanced.textBorderDesc":"Haga clic en el diagrama o use los botones para seleccionar los bordes y aplicar el estilo seleccionado","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"Bordes y fondo","DE.Views.TableSettingsAdvanced.textBorderWidth":"Tamaño del borde","DE.Views.TableSettingsAdvanced.textBottom":"Inferior","DE.Views.TableSettingsAdvanced.textCellOptions":"Opciones de la celda","DE.Views.TableSettingsAdvanced.textCellProps":"Celda","DE.Views.TableSettingsAdvanced.textCellSize":"Tamaño de la сelda","DE.Views.TableSettingsAdvanced.textCenter":"Centrada","DE.Views.TableSettingsAdvanced.textCenterTooltip":"Centrada","DE.Views.TableSettingsAdvanced.textCheckMargins":"Usar márgenes predeterminados","DE.Views.TableSettingsAdvanced.textDefaultMargins":"Márgenes de la celda predeterminados","DE.Views.TableSettingsAdvanced.textDistance":"Distancia desde el texto","DE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal ","DE.Views.TableSettingsAdvanced.textIndLeft":"Sangría a la izquierda","DE.Views.TableSettingsAdvanced.textLeft":"Izquierda","DE.Views.TableSettingsAdvanced.textLeftTooltip":"Izquierda","DE.Views.TableSettingsAdvanced.textMargin":"Margen","DE.Views.TableSettingsAdvanced.textMargins":"Márgenes de la celda","DE.Views.TableSettingsAdvanced.textMeasure":"Medir en","DE.Views.TableSettingsAdvanced.textMove":"Desplazar objeto con texto","DE.Views.TableSettingsAdvanced.textOnlyCells":"Solo para celdas seleccionadas","DE.Views.TableSettingsAdvanced.textOptions":"Opciones","DE.Views.TableSettingsAdvanced.textOverlap":"Superposición","DE.Views.TableSettingsAdvanced.textPage":"Página","DE.Views.TableSettingsAdvanced.textPosition":"Posición","DE.Views.TableSettingsAdvanced.textPrefWidth":"Anchura preferida","DE.Views.TableSettingsAdvanced.textPreview":"Vista previa","DE.Views.TableSettingsAdvanced.textRelative":"en relación con","DE.Views.TableSettingsAdvanced.textRight":"Derecha","DE.Views.TableSettingsAdvanced.textRightOf":"a la derecha de","DE.Views.TableSettingsAdvanced.textRightTooltip":"Derecha","DE.Views.TableSettingsAdvanced.textTable":"Tabla","DE.Views.TableSettingsAdvanced.textTableBackColor":"Fondo de la tabla","DE.Views.TableSettingsAdvanced.textTablePosition":"Posición de la tabla","DE.Views.TableSettingsAdvanced.textTableSize":"Tamaño de la tabla","DE.Views.TableSettingsAdvanced.textTitle":"Tabla - Ajustes avanzados","DE.Views.TableSettingsAdvanced.textTop":"Superior","DE.Views.TableSettingsAdvanced.textVertical":"Vertical","DE.Views.TableSettingsAdvanced.textWidth":"Ancho","DE.Views.TableSettingsAdvanced.textWidthSpaces":"Ancho y espacios","DE.Views.TableSettingsAdvanced.textWrap":"Ajustar el texto al tamaño de la celda","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"Tabla anclada","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"Tabla incrustada","DE.Views.TableSettingsAdvanced.textWrappingStyle":"Estilo de ajuste","DE.Views.TableSettingsAdvanced.textWrapText":"Ajustar texto","DE.Views.TableSettingsAdvanced.tipAll":"Establecer borde exterior y todas líneas interiores","DE.Views.TableSettingsAdvanced.tipCellAll":"Establecer bordes solo para celdas interiores","DE.Views.TableSettingsAdvanced.tipCellInner":"Establecer líneas verticales y horizontales solo para celdas interiores","DE.Views.TableSettingsAdvanced.tipCellOuter":"Establecer bordes exteriores solo para celdas inferiores","DE.Views.TableSettingsAdvanced.tipInner":"Establecer solo líneas interiores","DE.Views.TableSettingsAdvanced.tipNone":"No establecer bordes","DE.Views.TableSettingsAdvanced.tipOuter":"Establecer solo borde exterior","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"Establecer borde exterior y bordes para todas celdas inferiores","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"Establecer borde exterior y líneas verticales y horizontales para celdas inferiores","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"Establecer borde de tabla exterior y bordes exteriores para celdas interiores","DE.Views.TableSettingsAdvanced.txtCm":"Centímetros","DE.Views.TableSettingsAdvanced.txtInch":"Pulgadas","DE.Views.TableSettingsAdvanced.txtNoBorders":"Sin bordes","DE.Views.TableSettingsAdvanced.txtPercent":"Porcentaje","DE.Views.TableSettingsAdvanced.txtPt":"Punto","DE.Views.TableToTextDialog.textEmpty":"Debe escribir un carácter para el separador personalizado.","DE.Views.TableToTextDialog.textNested":"Convertir tablas anidadas","DE.Views.TableToTextDialog.textOther":"Otro","DE.Views.TableToTextDialog.textPara":"Marcas de párrafo","DE.Views.TableToTextDialog.textSemicolon":"Signos de punto y coma","DE.Views.TableToTextDialog.textSeparator":"Separadores","DE.Views.TableToTextDialog.textTab":"Tabuladores","DE.Views.TableToTextDialog.textTitle":"Convertir tabla en texto","DE.Views.TextArtSettings.strColor":"Color","DE.Views.TextArtSettings.strFill":"Relleno","DE.Views.TextArtSettings.strSize":"Tamaño","DE.Views.TextArtSettings.strStroke":"Gráfico de líneas","DE.Views.TextArtSettings.strTransparency":"Opacidad","DE.Views.TextArtSettings.strType":"Tipo","DE.Views.TextArtSettings.textAngle":"Ángulo","DE.Views.TextArtSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","DE.Views.TextArtSettings.textColor":"Relleno de color","DE.Views.TextArtSettings.textDirection":"Dirección","DE.Views.TextArtSettings.textGradient":"Puntos de gradiente","DE.Views.TextArtSettings.textGradientFill":"Relleno degradado","DE.Views.TextArtSettings.textLinear":"Lineal","DE.Views.TextArtSettings.textNoFill":"Sin relleno","DE.Views.TextArtSettings.textPosition":"Posición","DE.Views.TextArtSettings.textRadial":"Radial","DE.Views.TextArtSettings.textSelectTexture":"Seleccionar","DE.Views.TextArtSettings.textStyle":"Estilo","DE.Views.TextArtSettings.textTemplate":"Plantilla","DE.Views.TextArtSettings.textTransform":"Transformar","DE.Views.TextArtSettings.tipAddGradientPoint":"Añadir punto de degradado","DE.Views.TextArtSettings.tipRemoveGradientPoint":"Eliminar punto de degradado","DE.Views.TextArtSettings.txtNoBorders":"Sin línea","DE.Views.TextToTableDialog.textAutofit":"Autoajuste","DE.Views.TextToTableDialog.textColumns":"Columnas","DE.Views.TextToTableDialog.textContents":"Autoajustar al contenido","DE.Views.TextToTableDialog.textEmpty":"Debe escribir un carácter para el separador personalizado.","DE.Views.TextToTableDialog.textFixed":"Ancho de columna fijo","DE.Views.TextToTableDialog.textOther":"Otro","DE.Views.TextToTableDialog.textPara":"Párrafos","DE.Views.TextToTableDialog.textRows":"Filas","DE.Views.TextToTableDialog.textSemicolon":"Signos de punto y coma","DE.Views.TextToTableDialog.textSeparator":"Separar texto en","DE.Views.TextToTableDialog.textTab":"Tabuladores","DE.Views.TextToTableDialog.textTableSize":"Tamaño de la tabla","DE.Views.TextToTableDialog.textTitle":"Convertir texto en tabla","DE.Views.TextToTableDialog.textWindow":"Autoajustar a la ventana","DE.Views.TextToTableDialog.txtAutoText":"Auto","DE.Views.Toolbar.capBtnAddComment":"Añadir comentario","DE.Views.Toolbar.capBtnBlankPage":"Página en blanco","DE.Views.Toolbar.capBtnColumns":"Columnas","DE.Views.Toolbar.capBtnComment":"Comentario","DE.Views.Toolbar.capBtnHand":"Mano","DE.Views.Toolbar.capBtnHyphenation":"Guiones","DE.Views.Toolbar.capBtnInsChart":"Diagrama","DE.Views.Toolbar.capBtnInsControls":"Controles de contenido","DE.Views.Toolbar.capBtnInsDropcap":"Letras capitulares","DE.Views.Toolbar.capBtnInsEquation":"Ecuación","DE.Views.Toolbar.capBtnInsHeader":"Encabezado/Pie de página","DE.Views.Toolbar.capBtnInsPagebreak":"Saltos","DE.Views.Toolbar.capBtnInsShape":"Forma","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"Símbolo","DE.Views.Toolbar.capBtnInsTable":"Tabla","DE.Views.Toolbar.capBtnInsTextart":"Galería de texto","DE.Views.Toolbar.capBtnInsTextbox":"Cuadro de Texto","DE.Views.Toolbar.capBtnInsTextFromFile":"Texto de archivo","DE.Views.Toolbar.capBtnLineNumbers":"Numeración de líneas","DE.Views.Toolbar.capBtnMargins":"Márgenes","DE.Views.Toolbar.capBtnPageColor":"Color de página","DE.Views.Toolbar.capBtnPageOrient":"Orientación","DE.Views.Toolbar.capBtnPageSize":"Tamaño","DE.Views.Toolbar.capBtnSelect":"Seleccionar","DE.Views.Toolbar.capBtnWatermark":"Marca de agua","DE.Views.Toolbar.capColorScheme":"Colores","DE.Views.Toolbar.capImgAlign":"Alinear","DE.Views.Toolbar.capImgBackward":"Enviar atrás","DE.Views.Toolbar.capImgForward":"Enviar adelante","DE.Views.Toolbar.capImgGroup":"Agrupar","DE.Views.Toolbar.capImgWrapping":"Ajuste","DE.Views.Toolbar.capShapesMerge":"Fusionar formas","DE.Views.Toolbar.mniCapitalizeWords":"Poner en mayúsculas cada palabra","DE.Views.Toolbar.mniCustomTable":"Insertar tabla personalizada","DE.Views.Toolbar.mniDrawTable":"Dibujar tabla","DE.Views.Toolbar.mniEditControls":"Ajustes de control","DE.Views.Toolbar.mniEditDropCap":"Ajustes de letra capitular","DE.Views.Toolbar.mniEditFooter":"Editar pie de página","DE.Views.Toolbar.mniEditHeader":"Editar encabezado","DE.Views.Toolbar.mniEraseTable":"Eliminar tabla","DE.Views.Toolbar.mniFromFile":"Desde archivo","DE.Views.Toolbar.mniFromStorage":"Desde almacenamiento","DE.Views.Toolbar.mniFromUrl":"Desde URL","DE.Views.Toolbar.mniHiddenBorders":"Bordes de tabla ocultos","DE.Views.Toolbar.mniHiddenChars":"Caracteres no imprimibles","DE.Views.Toolbar.mniHighlightControls":"Ajustes de resaltado","DE.Views.Toolbar.mniInsertSSE":"Insertar hoja de cálculo","DE.Views.Toolbar.mniLowerCase":"minúsculas","DE.Views.Toolbar.mniRemoveFooter":"Quitar pie de página","DE.Views.Toolbar.mniRemoveHeader":"Quitar encabezado","DE.Views.Toolbar.mniSentenceCase":"Tipo oración.","DE.Views.Toolbar.mniTextFromLocalFile":"Texto del archivo local","DE.Views.Toolbar.mniTextFromStorage":"Texto del archivo de almacenamiento","DE.Views.Toolbar.mniTextFromURL":"Texto del archivo de URL","DE.Views.Toolbar.mniTextToTable":"Convertir texto en tabla","DE.Views.Toolbar.mniToggleCase":"tIPO iNVERSO","DE.Views.Toolbar.mniUpperCase":"MAYÚSCULAS","DE.Views.Toolbar.strMenuNoFill":"Sin relleno","DE.Views.Toolbar.textAddSpaceAfter":"Añadir espacio después del párrafo","DE.Views.Toolbar.textAddSpaceBefore":"Añadir espacio antes del párrafo","DE.Views.Toolbar.textAllBorders":"Todos los bordes","DE.Views.Toolbar.textAlpha":"Letra minúscula griega Alfa","DE.Views.Toolbar.textAuto":"Automático","DE.Views.Toolbar.textAutoColor":"Automático","DE.Views.Toolbar.textBetta":"Letra minúscula griega Beta","DE.Views.Toolbar.textBlackHeart":"Corazón negro","DE.Views.Toolbar.textBold":"Negrita","DE.Views.Toolbar.textBordersColor":"Color de borde","DE.Views.Toolbar.textBordersStyle":"Estilo de borde","DE.Views.Toolbar.textBottom":"Inferior: ","DE.Views.Toolbar.textBottomBorders":"Bordes inferiores","DE.Views.Toolbar.textBullet":"Viñeta","DE.Views.Toolbar.textChangeLevel":"Cambiar nivel de lista","DE.Views.Toolbar.textCheckboxControl":"Casilla de selección","DE.Views.Toolbar.textColumnsCustom":"Columnas personalizadas","DE.Views.Toolbar.textColumnsLeft":"Izquierda","DE.Views.Toolbar.textColumnsOne":"Una","DE.Views.Toolbar.textColumnsRight":"Derecha","DE.Views.Toolbar.textColumnsThree":"Tres","DE.Views.Toolbar.textColumnsTwo":"Dos","DE.Views.Toolbar.textComboboxControl":"Cuadro combinado","DE.Views.Toolbar.textContinuous":"Continuo","DE.Views.Toolbar.textContPage":"Página continua","DE.Views.Toolbar.textCopyright":"Signo de «copyright»","DE.Views.Toolbar.textCustomHyphen":"Opciones de guiones","DE.Views.Toolbar.textCustomLineNumbers":"Opciones de numeración de líneas","DE.Views.Toolbar.textDateControl":"Selector de fecha","DE.Views.Toolbar.textDegree":"Símbolo de grado","DE.Views.Toolbar.textDelta":"Letra minúscula griega Delta","DE.Views.Toolbar.textDirLtr":"De izquierda a derecha","DE.Views.Toolbar.textDirRtl":"De derecha a izquierda","DE.Views.Toolbar.textDivision":"Signo de división","DE.Views.Toolbar.textDollar":"Signo de dólar","DE.Views.Toolbar.textDropdownControl":"Lista desplegable","DE.Views.Toolbar.textEditMode":"Editar PDF","DE.Views.Toolbar.textEditWatermark":"Marca de agua personalizada","DE.Views.Toolbar.textEuro":"Signo de euro","DE.Views.Toolbar.textEvenPage":"Página par","DE.Views.Toolbar.textGreaterEqual":"Mayor que o igual a","DE.Views.Toolbar.textIndAfter":"Sangría después","DE.Views.Toolbar.textIndBefore":"Sangría antes","DE.Views.Toolbar.textIndLeft":"Sangría izquierda","DE.Views.Toolbar.textIndRight":"Sangría derecha","DE.Views.Toolbar.textInfinity":"Infinito","DE.Views.Toolbar.textInMargin":"En margen","DE.Views.Toolbar.textInsColumnBreak":"Insertar salto de columna","DE.Views.Toolbar.textInsertPageCount":"Insertar el número de páginas","DE.Views.Toolbar.textInsertPageNumber":"Insertar número de página","DE.Views.Toolbar.textInsideBorders":"Bordes internos","DE.Views.Toolbar.textInsideHorBorders":"Bordes horizontales internos","DE.Views.Toolbar.textInsideVertBorders":"Bordes verticales internos","DE.Views.Toolbar.textInsPageBreak":"Insertar salto de página","DE.Views.Toolbar.textInsSectionBreak":"Insertar salto de sección","DE.Views.Toolbar.textInText":"En texto","DE.Views.Toolbar.textItalic":"Cursiva","DE.Views.Toolbar.textLandscape":"Horizontal","DE.Views.Toolbar.textLeft":"Izquierdo: ","DE.Views.Toolbar.textLeftBorders":"Bordes izquierdos","DE.Views.Toolbar.textLessEqual":"Menor que o igual a","DE.Views.Toolbar.textLetterPi":"Letra minúscula griega Pi","DE.Views.Toolbar.textLineSpaceOptions":"Opciones de interlineado","DE.Views.Toolbar.textListSettings":"Ajustes de lista","DE.Views.Toolbar.textMarginsLast":"último personalizado","DE.Views.Toolbar.textMarginsModerate":"Moderar","DE.Views.Toolbar.textMarginsNarrow":"Estrecho","DE.Views.Toolbar.textMarginsNormal":"Normal","DE.Views.Toolbar.textMarginsWide":"Amplio","DE.Views.Toolbar.textMoreSymbols":"Más símbolos","DE.Views.Toolbar.textNewColor":"Más colores","DE.Views.Toolbar.textNextPage":"Página siguiente","DE.Views.Toolbar.textNoBorders":"Sin bordes","DE.Views.Toolbar.textNoHighlight":"No resaltar","DE.Views.Toolbar.textNone":"No","DE.Views.Toolbar.textNotEqualTo":"No igual a","DE.Views.Toolbar.textOddPage":"Página impar","DE.Views.Toolbar.textOneHalf":"Fracción vulgar a la mitad","DE.Views.Toolbar.textOneQuarter":"Fracción vulgar de un cuarto","DE.Views.Toolbar.textOutBorders":"Bordes externos","DE.Views.Toolbar.textPageMarginsCustom":"Márgenes personalizados","DE.Views.Toolbar.textPageSizeCustom":"Tamaño de página personalizado","DE.Views.Toolbar.textPictureControl":"Imagen","DE.Views.Toolbar.textPlainControl":"Texto sin formato","DE.Views.Toolbar.textPlusMinus":"Signo de más-menos","DE.Views.Toolbar.textPortrait":"Vertical","DE.Views.Toolbar.textRegistered":"Signo de marca registrada","DE.Views.Toolbar.textRemoveControl":"Eliminar control de contenido","DE.Views.Toolbar.textRemSpaceAfter":"Eliminar espacio después del párrafo","DE.Views.Toolbar.textRemSpaceBefore":"Eliminar espacio antes del párrafo","DE.Views.Toolbar.textRemWatermark":"Quitar marca de agua","DE.Views.Toolbar.textRestartEachPage":"Reiniciar en cada página","DE.Views.Toolbar.textRestartEachSection":"Reiniciar en cada sección","DE.Views.Toolbar.textRichControl":"Texto enriquecido","DE.Views.Toolbar.textRight":"Derecho: ","DE.Views.Toolbar.textRightBorders":"Bordes derechos","DE.Views.Toolbar.textSection":"Signo de sección","DE.Views.Toolbar.textShapesCombine":"Combinar","DE.Views.Toolbar.textShapesFragment":"Fragmento","DE.Views.Toolbar.textShapesIntersect":"Formar intersección","DE.Views.Toolbar.textShapesSubstract":"Restar","DE.Views.Toolbar.textShapesUnion":"Unión","DE.Views.Toolbar.textSmile":"Cara blanca sonriente","DE.Views.Toolbar.textSpaceAfter":"Espacio después","DE.Views.Toolbar.textSpaceBefore":"Espacio antes","DE.Views.Toolbar.textSquareRoot":"Raíz cuadrada","DE.Views.Toolbar.textStrikeout":"Tachado","DE.Views.Toolbar.textStyleMenuDelete":"Eliminar estilo","DE.Views.Toolbar.textStyleMenuDeleteAll":"Eliminar todos los estilos personalizados","DE.Views.Toolbar.textStyleMenuNew":"Nuevo estilo de la selección","DE.Views.Toolbar.textStyleMenuRestore":"Restablecer a predeterminado","DE.Views.Toolbar.textStyleMenuRestoreAll":"Restaurar todo a estilos predeterminados ","DE.Views.Toolbar.textStyleMenuUpdate":"Actualizar de la selección","DE.Views.Toolbar.textSubscript":"Subíndice","DE.Views.Toolbar.textSuperscript":"Superíndice","DE.Views.Toolbar.textSuppressForCurrentParagraph":"Suprimir del párrafo actual","DE.Views.Toolbar.textTabCollaboration":"Colaboración","DE.Views.Toolbar.textTabDraw":"Dibujar","DE.Views.Toolbar.textTabFile":"Archivo","DE.Views.Toolbar.textTabHeaderFooter":"Encabezado/Pie de página","DE.Views.Toolbar.textTabHome":"Inicio","DE.Views.Toolbar.textTabInsert":"Insertar","DE.Views.Toolbar.textTabLayout":"Diseño","DE.Views.Toolbar.textTabLinks":"Referencias","DE.Views.Toolbar.textTabProtect":"Protección","DE.Views.Toolbar.textTabReview":"Revisar","DE.Views.Toolbar.textTabView":"Vista","DE.Views.Toolbar.textTilde":"Tilde","DE.Views.Toolbar.textTitleError":"Error","DE.Views.Toolbar.textToCurrent":"A la posición actual","DE.Views.Toolbar.textTop":"Superior: ","DE.Views.Toolbar.textTopBorders":"Bordes superiores","DE.Views.Toolbar.textTradeMark":"Signo de marca comercial","DE.Views.Toolbar.textUnderline":"Subrayado","DE.Views.Toolbar.textYen":"Signo de yen","DE.Views.Toolbar.tipAlignCenter":"Alinear al centro","DE.Views.Toolbar.tipAlignJust":"Justificar","DE.Views.Toolbar.tipAlignLeft":"Alinear a la izquierda","DE.Views.Toolbar.tipAlignRight":"Alinear a la derecha","DE.Views.Toolbar.tipBack":"Atrás","DE.Views.Toolbar.tipBlankPage":"Insertar página en blanco","DE.Views.Toolbar.tipBorders":"Bordes","DE.Views.Toolbar.tipChangeCase":"Cambiar mayúsculas y minúsculas","DE.Views.Toolbar.tipChangeChart":"Cambiar tipo de gráfico","DE.Views.Toolbar.tipClearStyle":"Eliminar estilo","DE.Views.Toolbar.tipColorSchemas":"Cambiar combinación de colores","DE.Views.Toolbar.tipColumns":"Insertar columnas","DE.Views.Toolbar.tipControls":"Insertar controles de contenido","DE.Views.Toolbar.tipCopy":"Copiar","DE.Views.Toolbar.tipCopyStyle":"Copiar estilo","DE.Views.Toolbar.tipCut":"Cortar","DE.Views.Toolbar.tipDecFont":"Reducir tamaño de la fuente","DE.Views.Toolbar.tipDecPrLeft":"Reducir sangría","DE.Views.Toolbar.tipDownload":"Descargar archivo","DE.Views.Toolbar.tipDropCap":"Insertar letra capitular","DE.Views.Toolbar.tipEditMode":"Editar el archivo actual.
La página se recargará.","DE.Views.Toolbar.tipFontColor":"Color de la fuente","DE.Views.Toolbar.tipFontName":"Fuente","DE.Views.Toolbar.tipFontSize":"Tamaño de la fuente","DE.Views.Toolbar.tipHandTool":"Herramienta de mano","DE.Views.Toolbar.tipHighlightColor":"Color de resaltado","DE.Views.Toolbar.tipHyphenation":"Cambiar guiones","DE.Views.Toolbar.tipImgAlign":"Alinear objetos","DE.Views.Toolbar.tipImgGroup":"Agrupar objetos","DE.Views.Toolbar.tipImgWrapping":"Ajustar texto","DE.Views.Toolbar.tipIncFont":"Aumentar tamaño de la fuente","DE.Views.Toolbar.tipIncPrLeft":"Aumentar sangría","DE.Views.Toolbar.tipInsertChart":"Insertar gráfico","DE.Views.Toolbar.tipInsertEquation":"Insertar ecuación","DE.Views.Toolbar.tipInsertHorizontalText":"Insertar cuadro de texto horizontal","DE.Views.Toolbar.tipInsertNum":"Insertar número de página","DE.Views.Toolbar.tipInsertShape":"Insertar forma","DE.Views.Toolbar.tipInsertSmartArt":"Insertar 'smartart'","DE.Views.Toolbar.tipInsertSymbol":"Insertar símbolo","DE.Views.Toolbar.tipInsertTable":"Insertar tabla","DE.Views.Toolbar.tipInsertText":"Insertar cuadro de texto","DE.Views.Toolbar.tipInsertTextArt":"Insertar galería de texto","DE.Views.Toolbar.tipInsertVerticalText":"Insertar cuadro de texto vertical","DE.Views.Toolbar.tipLineNumbers":"Mostrar números de línea","DE.Views.Toolbar.tipLineSpace":"Espaciado de línea de párrafo","DE.Views.Toolbar.tipMailRecepients":"Combinación de correspondencia","DE.Views.Toolbar.tipMarkers":"Viñetas","DE.Views.Toolbar.tipMarkersArrow":"Viñetas de flecha","DE.Views.Toolbar.tipMarkersCheckmark":"Viñetas de marca de verificación","DE.Views.Toolbar.tipMarkersDash":"Viñetas guion","DE.Views.Toolbar.tipMarkersFRhombus":"Rombos rellenos","DE.Views.Toolbar.tipMarkersFRound":"Viñetas redondas rellenas","DE.Views.Toolbar.tipMarkersFSquare":"Viñetas cuadradas rellenas","DE.Views.Toolbar.tipMarkersHRound":"Viñetas redondas huecas","DE.Views.Toolbar.tipMarkersStar":"Viñetas de estrella","DE.Views.Toolbar.tipMultiLevelArticl":"Artículos numerados en varios niveles","DE.Views.Toolbar.tipMultiLevelChapter":"Capítulos numerados en varios niveles","DE.Views.Toolbar.tipMultiLevelHeadings":"Títulos numerados en varios niveles","DE.Views.Toolbar.tipMultiLevelHeadVarious":"Títulos numerados en varios niveles","DE.Views.Toolbar.tipMultiLevelNumbered":"Viñetas numeradas de varios niveles","DE.Views.Toolbar.tipMultilevels":"Esquema","DE.Views.Toolbar.tipMultiLevelSymbols":"Viñetas de símbolos de varios niveles","DE.Views.Toolbar.tipMultiLevelVarious":"Viñetas numeradas de varios niveles","DE.Views.Toolbar.tipNumbers":"Numeración","DE.Views.Toolbar.tipPageBreak":"Insertar salto de página o de sección","DE.Views.Toolbar.tipPageColor":"Cambiar color de página","DE.Views.Toolbar.tipPageMargins":"Márgenes de la página","DE.Views.Toolbar.tipPageOrient":"Orientación de la página","DE.Views.Toolbar.tipPageSize":"Tamaño de la página","DE.Views.Toolbar.tipParagraphStyle":"Estilo de párrafo","DE.Views.Toolbar.tipPaste":"Pegar","DE.Views.Toolbar.tipPrColor":"Sombreado","DE.Views.Toolbar.tipPrint":"Imprimir","DE.Views.Toolbar.tipPrintQuick":"Impresión rápida","DE.Views.Toolbar.tipRedo":"Rehacer","DE.Views.Toolbar.tipReplace":"Reemplazar","DE.Views.Toolbar.tipSave":"Guardar","DE.Views.Toolbar.tipSaveCoauth":"Guarde sus modificaciones para que otros usuarios puedan verlas.","DE.Views.Toolbar.tipSelectAll":"Seleccionar todo","DE.Views.Toolbar.tipSelectTool":"Seleccionar herramienta","DE.Views.Toolbar.tipSendBackward":"Enviar al fondo","DE.Views.Toolbar.tipSendForward":"Traer al frente","DE.Views.Toolbar.tipShapesMerge":"Fusionar formas","DE.Views.Toolbar.tipShowHiddenChars":"Caracteres no imprimibles","DE.Views.Toolbar.tipSynchronize":"El documento ha sido modificado por otro usuario. Por favor haga clic para guardar sus cambios y recargue el documento.","DE.Views.Toolbar.tipTextDir":"Dirección del texto","DE.Views.Toolbar.tipTextFromFile":"Texto de archivo","DE.Views.Toolbar.tipUndo":"Deshacer","DE.Views.Toolbar.tipWatermark":"Editar marca de agua","DE.Views.Toolbar.txtAutoText":"Auto","DE.Views.Toolbar.txtDistribHor":"Distribuir horizontalmente","DE.Views.Toolbar.txtDistribVert":"Distribuir verticalmente","DE.Views.Toolbar.txtGroupBulletDoc":"Viñetas de documento","DE.Views.Toolbar.txtGroupBulletLib":"Biblioteca de viñetas","DE.Views.Toolbar.txtGroupMultiDoc":"Listas en el documento actual","DE.Views.Toolbar.txtGroupMultiLib":"Biblioteca de listas","DE.Views.Toolbar.txtGroupNumDoc":"Formatos de numeración de documentos","DE.Views.Toolbar.txtGroupNumLib":"Biblioteca de numeración","DE.Views.Toolbar.txtGroupRecent":"Usados recientemente","DE.Views.Toolbar.txtMarginAlign":"Alinear al margen","DE.Views.Toolbar.txtObjectsAlign":"Alinear objetos seleccionados","DE.Views.Toolbar.txtPageAlign":"Alinear a la página","DE.Views.ViewTab.textAlwaysShowToolbar":"Mostrar siempre la barra de herramientas","DE.Views.ViewTab.textDarkDocument":"Documento oscuro","DE.Views.ViewTab.textFill":"Rellenar","DE.Views.ViewTab.textFitToPage":"Ajustar a la página","DE.Views.ViewTab.textFitToWidth":"Ajustar al ancho","DE.Views.ViewTab.textInterfaceTheme":"Tema de la interfaz","DE.Views.ViewTab.textLeftMenu":"Panel izquierdo","DE.Views.ViewTab.textLine":"Línea","DE.Views.ViewTab.textMacros":"Macros","DE.Views.ViewTab.textMultiplePages":"Múltiples páginas","DE.Views.ViewTab.textNavigation":"Navegación","DE.Views.ViewTab.textOutline":"Títulos","DE.Views.ViewTab.textPauseMacro":"Pausar la grabación","DE.Views.ViewTab.textRecMacro":"Grabar macro","DE.Views.ViewTab.textResumeMacro":"Continuar la grabación","DE.Views.ViewTab.textRightMenu":"Panel derecho","DE.Views.ViewTab.textRulers":"Reglas","DE.Views.ViewTab.textStatusBar":"Barra de estado","DE.Views.ViewTab.textStopMacro":"Detener la grabación","DE.Views.ViewTab.textTabStyle":"Estilo de pestaña","DE.Views.ViewTab.textZoom":"Ampliación","DE.Views.ViewTab.textZoom100":"Ampliar al 100 %","DE.Views.ViewTab.tipDarkDocument":"Documento oscuro","DE.Views.ViewTab.tipFitToPage":"Ajustar a la página","DE.Views.ViewTab.tipFitToWidth":"Ajustar al ancho","DE.Views.ViewTab.tipHeadings":"Títulos","DE.Views.ViewTab.tipInterfaceTheme":"Tema de la interfaz","DE.Views.ViewTab.tipMacros":"Macros","DE.Views.ViewTab.tipMultiplePages":"Múltiples páginas","DE.Views.ViewTab.tipPauseMacro":"Pausar la grabación","DE.Views.ViewTab.tipRecMacro":"Grabar macro","DE.Views.ViewTab.tipResumeMacro":"Continuar la grabación","DE.Views.ViewTab.tipStopMacro":"Detener la grabación","DE.Views.ViewTab.tipZoom100":"Ampliar al 100 %","DE.Views.WatermarkSettingsDialog.textAuto":"Auto","DE.Views.WatermarkSettingsDialog.textBold":"Negrita","DE.Views.WatermarkSettingsDialog.textColor":"Color del texto","DE.Views.WatermarkSettingsDialog.textDiagonal":"Diagonal","DE.Views.WatermarkSettingsDialog.textFont":"Fuente","DE.Views.WatermarkSettingsDialog.textFromFile":"Desde archivo","DE.Views.WatermarkSettingsDialog.textFromStorage":"Desde almacenamiento","DE.Views.WatermarkSettingsDialog.textFromUrl":"Desde URL","DE.Views.WatermarkSettingsDialog.textHor":"Horizontal","DE.Views.WatermarkSettingsDialog.textImageW":"Marca de agua de imagen","DE.Views.WatermarkSettingsDialog.textItalic":"Cursiva","DE.Views.WatermarkSettingsDialog.textLanguage":"Idioma","DE.Views.WatermarkSettingsDialog.textLayout":"Disposición","DE.Views.WatermarkSettingsDialog.textNone":"Ninguna","DE.Views.WatermarkSettingsDialog.textScale":"Escala","DE.Views.WatermarkSettingsDialog.textSelect":"Seleccionar imagen","DE.Views.WatermarkSettingsDialog.textStrikeout":"Tachado","DE.Views.WatermarkSettingsDialog.textText":"Texto","DE.Views.WatermarkSettingsDialog.textTextW":"Marca de agua de texto","DE.Views.WatermarkSettingsDialog.textTitle":"Ajustes de marca de agua","DE.Views.WatermarkSettingsDialog.textTransparency":"Semitransparente","DE.Views.WatermarkSettingsDialog.textUnderline":"Subrayado","DE.Views.WatermarkSettingsDialog.tipFontName":"Nombre de la fuente","DE.Views.WatermarkSettingsDialog.tipFontSize":"Tamaño de la fuente"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":"Aviso","Common.Controllers.Desktop.hintBtnHome":"Mostrar ventana principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Crear a partir de una plantilla","Common.Controllers.ExternalDiagramEditor.textAnonymous":"Anónimo","Common.Controllers.ExternalDiagramEditor.textClose":"Cerrar","Common.Controllers.ExternalDiagramEditor.warningText":"El objeto está desactivado porque lo está editando otro usuario.","Common.Controllers.ExternalDiagramEditor.warningTitle":"Aviso","Common.Controllers.ExternalLinks.textAddExternalData":"Se ha añadido el enlace a un origen externo. Puede actualizar tales enlaces en la pestaña «Datos».","Common.Controllers.ExternalLinks.textDontUpdate":"No actualizar","Common.Controllers.ExternalLinks.textUpdate":"Actualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Se ha producido un error al actualizar","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Este libro de trabajo contiene enlaces a una o más fuentes externas que podrían ser inseguras.
Si confía en estos enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta presentación contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalMergeEditor.textAnonymous":"Anónimo","Common.Controllers.ExternalMergeEditor.textClose":"Cerrar","Common.Controllers.ExternalMergeEditor.warningText":"El objeto está desactivado porque lo está editando otro usuario.","Common.Controllers.ExternalMergeEditor.warningTitle":"Aviso","Common.Controllers.ExternalOleEditor.textAnonymous":"Anónimo","Common.Controllers.ExternalOleEditor.textClose":"Cerrar","Common.Controllers.ExternalOleEditor.warningText":"El objeto está desactivado porque lo está editando otro usuario.","Common.Controllers.ExternalOleEditor.warningTitle":"Advertencia","Common.Controllers.History.notcriticalErrorTitle":"Aviso","Common.Controllers.History.txtErrorLoadHistory":"Error al cargar el historial","Common.Controllers.Plugins.helpMoveMacros":"Para empezar a trabajar con macros, cambie a la pestaña Vista.","Common.Controllers.Plugins.helpMoveMacrosHeader":"El botón Macros desplazado","Common.Controllers.Plugins.helpUseMacros":"Encuentre el botón Macros aquí","Common.Controllers.Plugins.helpUseMacrosHeader":"Acceso actualizado a las macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Los plugins se han instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} se ha instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textRunInstalledPlugins":"Ejecutar plugins instalados","Common.Controllers.Plugins.textRunPlugin":"Ejecutar plugin","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"A fin de comparar los documentos, se considerará que todos los cambios registrados en ellos han sido aceptados. ¿Quiere continuar?","Common.Controllers.ReviewChanges.textAtLeast":"al menos","Common.Controllers.ReviewChanges.textAuto":"auto","Common.Controllers.ReviewChanges.textBaseline":"Línea de base","Common.Controllers.ReviewChanges.textBold":"Negrita","Common.Controllers.ReviewChanges.textBreakBefore":"Salto de página antes","Common.Controllers.ReviewChanges.textCaps":"Mayúsculas","Common.Controllers.ReviewChanges.textCenter":"Alinear al centro","Common.Controllers.ReviewChanges.textChar":"Nivel del carácter","Common.Controllers.ReviewChanges.textChart":"Gráfico","Common.Controllers.ReviewChanges.textColor":"Color de la fuente","Common.Controllers.ReviewChanges.textContextual":"No añadir espacio entre párrafos del mismo estilo","Common.Controllers.ReviewChanges.textDeleted":"Eliminado:","Common.Controllers.ReviewChanges.textDStrikeout":"Tachado doble","Common.Controllers.ReviewChanges.textEquation":"Ecuación","Common.Controllers.ReviewChanges.textExact":"Exacto","Common.Controllers.ReviewChanges.textFirstLine":"Primera línea","Common.Controllers.ReviewChanges.textFontSize":"Tamaño de la fuente","Common.Controllers.ReviewChanges.textFormatted":"Formateado","Common.Controllers.ReviewChanges.textHighlight":"Color de resaltado","Common.Controllers.ReviewChanges.textImage":"Imagen","Common.Controllers.ReviewChanges.textIndentLeft":"Sangría izquierda","Common.Controllers.ReviewChanges.textIndentRight":"Sangría derecha","Common.Controllers.ReviewChanges.textInserted":"Insertado:","Common.Controllers.ReviewChanges.textItalic":"Cursiva","Common.Controllers.ReviewChanges.textJustify":"Justificada","Common.Controllers.ReviewChanges.textKeepLines":"Mantener líneas juntas","Common.Controllers.ReviewChanges.textKeepNext":"Conservar con el siguiente","Common.Controllers.ReviewChanges.textLeft":"Alinear a la izquierda","Common.Controllers.ReviewChanges.textLineSpacing":"Interlineado:","Common.Controllers.ReviewChanges.textMultiple":"Múltiple","Common.Controllers.ReviewChanges.textNoBreakBefore":"Sin salto de página antes","Common.Controllers.ReviewChanges.textNoContextual":"Añadir espacio entre párrafos del mismo estilo","Common.Controllers.ReviewChanges.textNoKeepLines":"No mantener líneas juntas","Common.Controllers.ReviewChanges.textNoKeepNext":"No mantener con el siguiente","Common.Controllers.ReviewChanges.textNot":"No","Common.Controllers.ReviewChanges.textNoWidow":"No controlar líneas viudas","Common.Controllers.ReviewChanges.textNum":"Cambiar numeración","Common.Controllers.ReviewChanges.textOff":"{0} ya no utiliza el seguimiento de cambios.","Common.Controllers.ReviewChanges.textOffGlobal":"{0} ha deshabilitado el seguimiento de cambios para todos.","Common.Controllers.ReviewChanges.textOn":"{0} está usando el seguimiento de cambios.","Common.Controllers.ReviewChanges.textOnGlobal":"{0} ha habilitado el seguimiento de cambios para todos.","Common.Controllers.ReviewChanges.textParaDeleted":"Párrafo eliminado","Common.Controllers.ReviewChanges.textParaFormatted":"Párrafo formateado","Common.Controllers.ReviewChanges.textParaInserted":"Párrafo insertado","Common.Controllers.ReviewChanges.textParaMoveFromDown":"Bajado:","Common.Controllers.ReviewChanges.textParaMoveFromUp":"Subido:","Common.Controllers.ReviewChanges.textParaMoveTo":"Movido:","Common.Controllers.ReviewChanges.textPosition":"Posición","Common.Controllers.ReviewChanges.textRight":"Alinear a la derecha","Common.Controllers.ReviewChanges.textShape":"Forma","Common.Controllers.ReviewChanges.textShd":"Color del fondo","Common.Controllers.ReviewChanges.textShow":"Mostrar cambios en:","Common.Controllers.ReviewChanges.textSmallCaps":"Versalitas","Common.Controllers.ReviewChanges.textSpacing":"Espaciado","Common.Controllers.ReviewChanges.textSpacingAfter":"Espaciado después","Common.Controllers.ReviewChanges.textSpacingBefore":"Espaciado antes","Common.Controllers.ReviewChanges.textStrikeout":"Tachado","Common.Controllers.ReviewChanges.textSubScript":"Subíndice","Common.Controllers.ReviewChanges.textSuperScript":"Superíndice","Common.Controllers.ReviewChanges.textTableChanged":"Se ha cambiado la configuración de la tabla","Common.Controllers.ReviewChanges.textTableRowsAdd":"Se han añadido filas a la tabla","Common.Controllers.ReviewChanges.textTableRowsDel":"Se han eliminado filas de la tabla","Common.Controllers.ReviewChanges.textTabs":"Cambiar tabuladores","Common.Controllers.ReviewChanges.textTitleComparison":"Ajustes de comparación","Common.Controllers.ReviewChanges.textUnderline":"Subrayado","Common.Controllers.ReviewChanges.textUrl":"Pegue la URL del documento","Common.Controllers.ReviewChanges.textWidow":"Control de líneas viudas","Common.Controllers.ReviewChanges.textWord":"Nivel de palabra","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Añadir una nueva fila al final de la tabla.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Aplicar el estilo del encabezado 1 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Aplicar el estilo del encabezado 2 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Aplicar el estilo del encabezado 3 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Crear una lista con viñetas sin ordenar a partir del fragmento de texto seleccionado, o comenzar una nueva.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia la izquierda.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia la derecha.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionBold":"Hacer que la fuente del fragmento de texto seleccionado sea más oscura y gruesa de lo normal.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Cambiar un párrafo entre centrado y alineado a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Seleccionar la siguiente opción del cuadro combinado en el formulario.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Seleccionar la opción anterior del cuadro combinado en el formulario.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Cerrar la ventana del documento actual.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Cerrar un menú o una ventana modal. Restablecer ventanas emergentes y globos con comentarios y revisar cambios. Restablecer el modo de dibujo y borrado de la tabla. Restablecer la función de arrastrar y soltar texto. Restablecer el modo de selección de marcadores. Restablecer el modo de copiar formato. Deseleccionar formas. Restablecer el modo de añadir formas. Salir del encabezado/pie de página. Salir del rellenado de formularios.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Enviar el fragmento de texto seleccionado al portapapeles del ordenador. El texto copiado se puede insertar posteriormente en otro lugar del mismo documento, en otro documento o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Copiar el formato del fragmento seleccionado del texto que se está editando actualmente. El formato copiado se puede aplicar posteriormente a otro fragmento de texto del mismo documento.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Insertar un símbolo de copyright dentro del documento actual y a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionCut":"Eliminar el fragmento de texto seleccionado y enviarlo a la memoria del portapapeles del ordenador. El texto copiado se puede insertar posteriormente en otro lugar del mismo documento, en otro documento o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Reducir el tamaño de la fuente del fragmento de texto seleccionado en 1 punto.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Eliminar un carácter a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Eliminar una palabra/selección/objeto gráfico a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Eliminar un carácter a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Eliminar una palabra/selección/objeto gráfico a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Cuando se selecciona el título del gráfico, si el título está vacío, mover el cursor al principio de la línea; de lo contrario, seleccionar el texto.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repetir la última acción deshecha.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Seleccionar todo el texto del documento con tablas e imágenes.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Cuando se seleccione la forma, si no contiene contenido, crear contenido y mover el cursor al principio de la línea. Si el contenido está vacío, mover el cursor hacia él; de lo contrario, seleccionar todo el contenido.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Revertir la última acción realizada.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Insertar un guión largo dentro del documento actual y a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insertar un guión corto dentro del documento actual y a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Terminar el párrafo actual y comenzar uno nuevo.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Iniciar un nuevo párrafo dentro de una celda.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Añadir un nuevo marcador de posición al argumento de la ecuación.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Cambiar el nivel de alineación del operador a la izquierda (para la segunda línea de la ecuación con un salto forzado).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Cambiar el nivel de alineación del operador a la derecha (para la segunda línea de la ecuación con un salto forzado).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Insertar el símbolo del euro en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Insertar el signo de elipsis en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar el tamaño de la fuente del fragmento de texto seleccionado en 1 punto.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Sangrar un párrafo desde la izquierda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Añadir un salto de columna.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Insertar una nota al final.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"Insertar una ecuación en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Insertar una nota al pie.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insertar un hiperenlace que se puede utilizar para acceder a una dirección web.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Añadir un salto de línea sin comenzar un nuevo párrafo.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Añade un salto de línea en el formulario multilínea.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"Insertar un salto de página en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Añadir el número de página actual en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Añadir el carácter de tabulación a un párrafo (si el cursor no está al principio del párrafo).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Insertar un salto de tabla dentro de la tabla.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Hacer que la fuente del fragmento de texto seleccionado aparezca en cursiva y ligeramente inclinada.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Cambiar un párrafo entre justificado y alineado a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinear un párrafo a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia abajo un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la izquierda un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la derecha un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia arriba un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Aumentar la sangría de los párrafos seleccionados.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Disminuir la sangría de los párrafos seleccionados.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Mover el foco al siguiente objeto después del seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Mover el foco al objeto anterior al seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Mover el cursor una línea hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Colocar el cursor al final del documento que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Colocar el cursor al final de la línea que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Mover el cursor una palabra a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Mover el cursor un carácter a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Desplazarse al encabezado inferior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Desplazarse al encabezado/pie de página inferior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Ir a la siguiente celda en una fila de la tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Pasar al siguiente formulario.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Ir a la página siguiente del documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Ir a la siguiente fila de una tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Ir a la celda anterior en una fila de la tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Pasar al formulario anterior.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Ir a la página anterior del documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Ir a la fila anterior en una tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Mover el cursor un carácter a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Colocar el cursor al principio del documento que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Colocar el cursor al principio de la línea que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Colocar el cursor al principio de la página siguiente a la que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Colocar el cursor al principio de la página anterior a la que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Mover el cursor al principio de una palabra o una palabra a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Mover el cursor una línea hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Desplazarse al encabezado superior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Desplazarse al encabezado/pie de página superior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Cambiar a la siguiente pestaña de archivo en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Navegar entre los controles para dar el foco al siguiente control en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Crear un guión entre caracteres, que no se puede utilizar para comenzar una nueva línea.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Crear un espacio entre caracteres que no se puede utilizar para comenzar una nueva línea.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abrir el panel Chat en los editores en línea y enviar un mensaje.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abrir un campo de entrada de datos donde se puede añadir el texto del comentario.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abrir el panel Comentarios para añadir su propio comentario o responder a los comentarios de otros usuarios.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abrir el menú contextual del elemento seleccionado.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abrir el cuadro de diálogo estándar que permite seleccionar un archivo existente. Si selecciona el archivo en este cuadro de diálogo y hace clic en Abrir, el archivo se abrirá en una nueva pestaña o ventana de los editores de escritorio.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abrir el panel Archivo para guardar, descargar, imprimir el documento actual, ver su información, crear un nuevo documento o abrir uno existente, acceder al Centro de ayuda del editor de documentos o a la configuración avanzada.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abrir el menú (panel) Buscar y reemplazar con el campo de reemplazo para reemplazar una o más apariciones de los caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abrir el diálogo Buscar para iniciar la búsqueda de un carácter/palabra/frase en el documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abrir el menú Ayuda del editor de documentos.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insertar el fragmento de texto copiado previamente desde el portapapeles del ordenador en la posición actual del cursor. El texto puede haberse copiado previamente desde el mismo documento, desde otro documento o desde algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Aplicar el formato copiado anteriormente al texto del documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Insertar el fragmento de texto copiado previamente desde el portapapeles del ordenador en la posición actual del cursor sin conservar su formato original. El texto puede haberse copiado previamente desde el mismo documento, desde otro documento o desde algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Cambiar a la pestaña del archivo anterior en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Navegar entre los controles para dar el foco al control anterior en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprimir el documento con una de las impresoras disponibles o guardarlo como archivo.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Insertar el símbolo de marca registrada en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Reemplazar el código Unicode seleccionado con un símbolo.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Borrar el formato del fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Cambiar un párrafo entre alineación a la derecha y alineación a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionSave":"Guardar todos los cambios realizados en el documento editado actualmente con el editor de documentos. El archivo activo se guardará con su nombre, ubicación y formato de archivo actuales.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Abrir el panel Descargar como... para guardar el documento actualmente editado en el disco duro de su ordenador en uno de los formatos compatibles.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Desplazar el documento aproximadamente una página visible hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Desplazar el documento aproximadamente una página visible hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Seleccionar un carácter a la izquierda de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Seleccionar un fragmento de texto desde el cursor hasta el principio de una palabra.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mover el cursor una línea hacia abajo, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mover el cursor una línea hacia arriba, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Seleccionar la parte de la página desde la posición del cursor hasta la parte inferior de la pantalla.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Seleccionar la parte de la página desde la posición del cursor hasta la parte superior de la pantalla.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Seleccionar un carácter a la derecha de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Seleccionar un fragmento de texto desde el cursor hasta el final de una palabra.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Seleccionar un fragmento de texto desde el cursor hasta el comienzo de la página siguiente.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la página anterior.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Seleccionar un fragmento de texto desde el cursor hasta el final del documento.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Seleccionar un fragmento de texto desde el cursor hasta el final de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Seleccionar un fragmento de texto desde el cursor hasta el principio del documento.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Mostrar u ocultar la visualización de caracteres no imprimibles.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Insertar el signo de guión suave en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Mantener el formato original del texto copiado.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Pegar el texto sin su formato original.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Pegar la tabla copiada como una tabla anidada en la celda seleccionada de la tabla existente.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Reemplazar el contenido de la tabla existente con los datos copiados.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Activar/desactivar la transmisión de acciones realizadas en la aplicación para lectores de pantalla.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Aumentar el nivel de lista/sangría (con el cursor al principio de un párrafo).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Disminuir el nivel de lista/sangría (con el cursor al principio de un párrafo).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Hacer que se tache el fragmento de texto seleccionado con una línea que atraviese las letras.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte inferior de la línea de texto, por ejemplo, como en las fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte superior de la línea de texto, por ejemplo, como en las fracciones.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Insertar el símbolo de marca registrada en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Hacer que el fragmento de texto seleccionado aparezca subrayado con una línea debajo de las letras.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Eliminar la sangría de un párrafo desde la izquierda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Actualizar campos (por ejemplo, tabla de contenido).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visitar un hiperenlace (con el cursor sobre el hiperenlace).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Restablecer el parámetro «Ampliación» del documento actual al valor predeterminado del 100 %.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Ampliar el documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Alejar el documento que se está editando actualmente.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área apilada","Common.define.chartData.textAreaStackedPer":"Área apilada 100% ","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Columna agrupada","Common.define.chartData.textBarNormal3d":"Columna 3D agrupada","Common.define.chartData.textBarNormal3dPerspective":"Columna 3D","Common.define.chartData.textBarStacked":"Columna apilada","Common.define.chartData.textBarStacked3d":"Columna 3D apilada","Common.define.chartData.textBarStackedPer":"Columna apilada 100%","Common.define.chartData.textBarStackedPer3d":"Columna 3D apilada 100%","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Gráfico de columnas","Common.define.chartData.textCombo":"Combinado","Common.define.chartData.textComboAreaBar":"Área apilada - Columna agrupada","Common.define.chartData.textComboBarLine":"Columna agrupada - Línea","Common.define.chartData.textComboBarLineSecondary":"Columna agrupada - Línea en eje secundario","Common.define.chartData.textComboCustom":"Combinación personalizada","Common.define.chartData.textDoughnut":"Anillo","Common.define.chartData.textHBarNormal":"Barra agrupada","Common.define.chartData.textHBarNormal3d":"Barra 3D agrupada","Common.define.chartData.textHBarStacked":"Barra apilada","Common.define.chartData.textHBarStacked3d":"Barra 3D apilada","Common.define.chartData.textHBarStackedPer":"Barra apilada 100%","Common.define.chartData.textHBarStackedPer3d":"Barra 3D apilada 100%","Common.define.chartData.textLine":"Línea","Common.define.chartData.textLine3d":"Línea 3D","Common.define.chartData.textLineMarker":"Línea con marcadores","Common.define.chartData.textLineStacked":"Línea apilada","Common.define.chartData.textLineStackedMarker":"Línea apilada con marcadores","Common.define.chartData.textLineStackedPer":"Línea apilada al 100%","Common.define.chartData.textLineStackedPerMarker":"Línea apilada al 100% con marcadores ","Common.define.chartData.textPie":"Gráfico circular","Common.define.chartData.textPie3d":"Circular 3D","Common.define.chartData.textPoint":"XY (Dispersión)","Common.define.chartData.textRadar":"Radial","Common.define.chartData.textRadarFilled":"Radial relleno","Common.define.chartData.textRadarMarker":"Radial con marcadores","Common.define.chartData.textScatter":"Dispersión","Common.define.chartData.textScatterLine":"Dispersión con líneas rectas","Common.define.chartData.textScatterLineMarker":"Dispersión con líneas rectas y marcadores","Common.define.chartData.textScatterSmooth":"Dispersión con líneas suavizadas","Common.define.chartData.textScatterSmoothMarker":"Dispersión con líneas suavizadas y marcadores","Common.define.chartData.textStock":"De cotizaciones","Common.define.chartData.textSurface":"Superficie","Common.define.smartArt.textAccentedPicture":"Imagen destacada","Common.define.smartArt.textAccentProcess":"Proceso destacado","Common.define.smartArt.textAlternatingFlow":"Flujo alternativo","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternados","Common.define.smartArt.textAlternatingPictureBlocks":"Bloques de imágenes alternativos","Common.define.smartArt.textAlternatingPictureCircles":"Círculos con imágenes alternativos","Common.define.smartArt.textArchitectureLayout":"Diseño de arquitectura","Common.define.smartArt.textArrowRibbon":"Cinta de flechas","Common.define.smartArt.textAscendingPictureAccentProcess":"Proceso de imágenes destacadas ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Proceso curvo básico","Common.define.smartArt.textBasicBlockList":"Lista de bloques básica","Common.define.smartArt.textBasicChevronProcess":"Proceso cheurón básico","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Circular básico","Common.define.smartArt.textBasicProcess":"Proceso básico","Common.define.smartArt.textBasicPyramid":"Pirámide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Objetivo básico","Common.define.smartArt.textBasicTimeline":"Escala de tiempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista destacada con círculos abajo","Common.define.smartArt.textBendingPictureBlocks":"Bloques de imágenes con cuadro","Common.define.smartArt.textBendingPictureCaption":"Imagen curvada con títulos","Common.define.smartArt.textBendingPictureCaptionList":"Lista de imágenes curvadas con títulos","Common.define.smartArt.textBendingPictureSemiTranparentText":"Imágenes curvadas con texto semitransparente","Common.define.smartArt.textBlockCycle":"Ciclo de bloques","Common.define.smartArt.textBubblePictureList":"Lista de imágenes con burbujas","Common.define.smartArt.textCaptionedPictures":"Imágenes con títulos","Common.define.smartArt.textChevronAccentProcess":"Proceso cheurón destacado","Common.define.smartArt.textChevronList":"Lista de cheurones","Common.define.smartArt.textCircleAccentTimeline":"Línea de tiempo con círculos","Common.define.smartArt.textCircleArrowProcess":"Proceso de círculos con flecha","Common.define.smartArt.textCirclePictureHierarchy":"Jerarquía con imágenes en círculos","Common.define.smartArt.textCircleProcess":"Proceso de círculos","Common.define.smartArt.textCircleRelationship":"Relación de círculo","Common.define.smartArt.textCircularBendingProcess":"Proceso curvo circular","Common.define.smartArt.textCircularPictureCallout":"Llamada de imagen circular","Common.define.smartArt.textClosedChevronProcess":"Proceso de cheurón cerrado","Common.define.smartArt.textContinuousArrowProcess":"Proceso de flechas continuo","Common.define.smartArt.textContinuousBlockProcess":"Proceso de bloque continuo","Common.define.smartArt.textContinuousCycle":"Ciclo continuo","Common.define.smartArt.textContinuousPictureList":"Lista de imágenes continua","Common.define.smartArt.textConvergingArrows":"Flechas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Flechas de contrapeso","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista de bloques descendente","Common.define.smartArt.textDescendingProcess":"Proceso descendente","Common.define.smartArt.textDetailedProcess":"Proceso detallado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Ecuación","Common.define.smartArt.textFramedTextPicture":"Imagen de texto enmarcado","Common.define.smartArt.textFunnel":"Embudo","Common.define.smartArt.textGear":"Engranaje","Common.define.smartArt.textGridMatrix":"Matriz de cuadrícula","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organigrama con semicírculos","Common.define.smartArt.textHexagonCluster":"Grupo de hexágonos","Common.define.smartArt.textHexagonRadial":"Radial con hexágonos","Common.define.smartArt.textHierarchy":"Jerarquía","Common.define.smartArt.textHierarchyList":"Lista de jerarquías","Common.define.smartArt.textHorizontalBulletList":"Lista de viñetas horizontal","Common.define.smartArt.textHorizontalHierarchy":"Jerarquía horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Jerarquía etiquetada horizontal","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Jerarquía horizontal de varios niveles","Common.define.smartArt.textHorizontalOrganizationChart":"Organigrama horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista horizontal de imágenes","Common.define.smartArt.textIncreasingArrowProcess":"Proceso de flechas crecientes","Common.define.smartArt.textIncreasingCircleProcess":"Proceso de círculos crecientes","Common.define.smartArt.textInterconnectedBlockProcess":"Proceso de bloques interconectados","Common.define.smartArt.textInterconnectedRings":"Anillos interconectados","Common.define.smartArt.textInvertedPyramid":"Pirámide invertida","Common.define.smartArt.textLabeledHierarchy":"Jerarquía etiquetada","Common.define.smartArt.textLinearVenn":"Venn lineal","Common.define.smartArt.textLinedList":"Lista alineada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidireccional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigrama con nombres y cargos","Common.define.smartArt.textNestedTarget":"Objetivo anidado","Common.define.smartArt.textNondirectionalCycle":"Ciclo sin dirección","Common.define.smartArt.textOpposingArrows":"Flechas opuestas","Common.define.smartArt.textOpposingIdeas":"Ideas opuestas","Common.define.smartArt.textOrganizationChart":"Organigrama","Common.define.smartArt.textOther":"Otro","Common.define.smartArt.textPhasedProcess":"Proceso en fases","Common.define.smartArt.textPicture":"Imagen","Common.define.smartArt.textPictureAccentBlocks":"Imágenes destacadas en bloques","Common.define.smartArt.textPictureAccentList":"Lista de imágenes destacadas","Common.define.smartArt.textPictureAccentProcess":"Proceso de imágenes destacadas","Common.define.smartArt.textPictureCaptionList":"Lista de títulos de imágenes","Common.define.smartArt.textPictureFrame":"Marco de fotos","Common.define.smartArt.textPictureGrid":"Imágenes en cuadrícula","Common.define.smartArt.textPictureLineup":"Imágenes en paralelo","Common.define.smartArt.textPictureOrganizationChart":"Organigrama con imágenes","Common.define.smartArt.textPictureStrips":"Tiras de imagen","Common.define.smartArt.textPieProcess":"Proceso circular","Common.define.smartArt.textPlusAndMinus":"Más y menos","Common.define.smartArt.textProcess":"Proceso","Common.define.smartArt.textProcessArrows":"Flechas de proceso","Common.define.smartArt.textProcessList":"Lista de procesos","Common.define.smartArt.textPyramid":"Pirámide","Common.define.smartArt.textPyramidList":"Lista en pirámide","Common.define.smartArt.textRadialCluster":"Diseño radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista radial con imágenes","Common.define.smartArt.textRadialVenn":"Venn radial","Common.define.smartArt.textRandomToResultProcess":"Proceso de azar a resultado","Common.define.smartArt.textRelationship":"Relación","Common.define.smartArt.textRepeatingBendingProcess":"Proceso curvo repetitivo","Common.define.smartArt.textReverseList":"Lista inversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Proceso segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirámide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de imágenes instantáneas","Common.define.smartArt.textSpiralPicture":"Imagen en espiral","Common.define.smartArt.textSquareAccentList":"Lista de imágenes con cuadrados","Common.define.smartArt.textStackedList":"Lista apilada","Common.define.smartArt.textStackedVenn":"Venn apilado","Common.define.smartArt.textStaggeredProcess":"Proceso escalonado","Common.define.smartArt.textStepDownProcess":"Proceso de nivel inferior","Common.define.smartArt.textStepUpProcess":"Proceso de nivel superior","Common.define.smartArt.textSubStepProcess":"Proceso de pasos secundarios","Common.define.smartArt.textTabbedArc":"Arco con pestañas","Common.define.smartArt.textTableHierarchy":"Jerarquía de tabla","Common.define.smartArt.textTableList":"Lista de tablas","Common.define.smartArt.textTabList":"Lista de pestañas","Common.define.smartArt.textTargetList":"Lista de objetivo","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Imágenes temáticas destacadas","Common.define.smartArt.textThemePictureAlternatingAccent":"Imágenes temáticas destacadas alternativas","Common.define.smartArt.textThemePictureGrid":"Imágenes temáticas en cuadrícula","Common.define.smartArt.textTitledMatrix":"Matriz con títulos","Common.define.smartArt.textTitledPictureAccentList":"Lista de imágenes destacadas con título","Common.define.smartArt.textTitledPictureBlocks":"Bloques de imágenes con títulos","Common.define.smartArt.textTitlePictureLineup":"Serie de imágenes con título","Common.define.smartArt.textTrapezoidList":"Lista de trapezoides","Common.define.smartArt.textUpwardArrow":"Flecha arriba","Common.define.smartArt.textVaryingWidthList":"Lista de ancho variable","Common.define.smartArt.textVerticalAccentList":"Lista con rectángulos en vertical","Common.define.smartArt.textVerticalArrowList":"Lista vertical de flechas","Common.define.smartArt.textVerticalBendingProcess":"Proceso curvo vertical","Common.define.smartArt.textVerticalBlockList":"Lista de bloques verticales","Common.define.smartArt.textVerticalBoxList":"Lista vertical de cuadros","Common.define.smartArt.textVerticalBracketList":"Lista vertical con corchetes","Common.define.smartArt.textVerticalBulletList":"Lista vertical de viñetas","Common.define.smartArt.textVerticalChevronList":"Lista vertical de cheurones","Common.define.smartArt.textVerticalCircleList":"Lista con círculos en vertical","Common.define.smartArt.textVerticalCurvedList":"Lista curvada vertical","Common.define.smartArt.textVerticalEquation":"Ecuación vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista con círculos a la izquierda","Common.define.smartArt.textVerticalPictureList":"Lista vertical de imágenes","Common.define.smartArt.textVerticalProcess":"Proceso vertical","Common.Translation.textMoreButton":"Más","Common.Translation.tipFileLocked":"El documento está bloqueado para su edición. Puede hacer cambios y guardarlo como copia local más tarde.","Common.Translation.tipFileReadOnly":"El archivo es de solo lectura. Para no perder los cambios, guarde el archivo con otro nombre o en otra ubicación.","Common.Translation.warnFileLocked":"No puede editar este archivo porque lo está editando otra aplicación.","Common.Translation.warnFileLockedBtnEdit":"Crear una copia","Common.Translation.warnFileLockedBtnView":"Abrir en solo lectura","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Cuentagotas","Common.UI.ButtonColored.textNewColor":"Más colores","Common.UI.Calendar.textApril":"Abril","Common.UI.Calendar.textAugust":"Agosto","Common.UI.Calendar.textDecember":"Diciembre","Common.UI.Calendar.textFebruary":"Febrero","Common.UI.Calendar.textJanuary":"Enero","Common.UI.Calendar.textJuly":"Julio","Common.UI.Calendar.textJune":"Junio","Common.UI.Calendar.textMarch":"Marzo","Common.UI.Calendar.textMay":"Mayo","Common.UI.Calendar.textMonths":"Meses","Common.UI.Calendar.textNovember":"Noviembre","Common.UI.Calendar.textOctober":"Octubre","Common.UI.Calendar.textSeptember":"Septiembre","Common.UI.Calendar.textShortApril":"abr.","Common.UI.Calendar.textShortAugust":"ago.","Common.UI.Calendar.textShortDecember":"dic.","Common.UI.Calendar.textShortFebruary":"feb.","Common.UI.Calendar.textShortFriday":"vie.","Common.UI.Calendar.textShortJanuary":"ene.","Common.UI.Calendar.textShortJuly":"jul.","Common.UI.Calendar.textShortJune":"jun.","Common.UI.Calendar.textShortMarch":"mar.","Common.UI.Calendar.textShortMay":"may.","Common.UI.Calendar.textShortMonday":"lu.","Common.UI.Calendar.textShortNovember":"nov.","Common.UI.Calendar.textShortOctober":"oct.","Common.UI.Calendar.textShortSaturday":"sáb.","Common.UI.Calendar.textShortSeptember":"sep.","Common.UI.Calendar.textShortSunday":"dom.","Common.UI.Calendar.textShortThursday":"jue.","Common.UI.Calendar.textShortTuesday":"mar.","Common.UI.Calendar.textShortWednesday":"mie.","Common.UI.Calendar.textYears":"Años","Common.UI.ComboBorderSize.txtNoBorders":"Sin bordes","Common.UI.ComboBorderSizeEditable.txtNoBorders":"Sin bordes","Common.UI.ComboDataView.emptyComboText":"Sin estilo","Common.UI.ExtendedColorDialog.addButtonText":"Añadir","Common.UI.ExtendedColorDialog.textCurrent":"Actual","Common.UI.ExtendedColorDialog.textHexErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor de 000000 a FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Nuevo","Common.UI.ExtendedColorDialog.textRGBErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico de 0 a 225.","Common.UI.HSBColorPicker.textNoColor":"Sin color","Common.UI.InputField.txtEmpty":"Este campo es obligatorio","Common.UI.InputFieldBtnCalendar.textDate":"Seleccionar fecha","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar la contraseña","Common.UI.InputFieldBtnPassword.textHintHold":"Manténgalo pulsado para mostrar la contraseña","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar la contraseña","Common.UI.SearchBar.textFind":"Buscar","Common.UI.SearchBar.tipCloseSearch":"Cerrar búsqueda","Common.UI.SearchBar.tipNextResult":"Resultado siguiente","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abrir ajustes avanzados","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Resaltar resultados","Common.UI.SearchDialog.textMatchCase":"Distinguir mayúsculas y minúsculas","Common.UI.SearchDialog.textReplaceDef":"Introduzca el texto de sustitución","Common.UI.SearchDialog.textSearchStart":"Introduzca su texto aquí","Common.UI.SearchDialog.textTitle":"Buscar y reemplazar","Common.UI.SearchDialog.textTitle2":"Buscar","Common.UI.SearchDialog.textWholeWords":"Solo palabras completas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar sustitución","Common.UI.SearchDialog.txtBtnReplace":"Reemplazar","Common.UI.SearchDialog.txtBtnReplaceAll":"Reemplazar todo","Common.UI.SynchronizeTip.textDontShow":"No volver a mostrar este mensaje","Common.UI.SynchronizeTip.textGotIt":"Entendido","Common.UI.SynchronizeTip.textNew":"Nuevo","Common.UI.SynchronizeTip.textSynchronize":"El documento ha sido modificado por otro usuario.
Por favor, haga clic para guardar sus cambios y recargue el documento.","Common.UI.ThemeColorPalette.textRecentColors":"Colores recientes","Common.UI.ThemeColorPalette.textStandartColors":"Colores estándar","Common.UI.ThemeColorPalette.textThemeColors":"Colores del tema","Common.UI.ThemeColorPalette.textTransparent":"Transparente","Common.UI.Themes.txtThemeClassicLight":"Clásico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste oscuro","Common.UI.Themes.txtThemeDark":"Oscuro","Common.UI.Themes.txtThemeGray":"Gris","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Moderno oscuro","Common.UI.Themes.txtThemeModernLight":"Moderno claro","Common.UI.Themes.txtThemeSystem":"Igual que el sistema","Common.UI.Themes.txtThemeWhite":"Blanco","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Cerrar","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"Aceptar","Common.UI.Window.textConfirmation":"Confirmación","Common.UI.Window.textDontShow":"No volver a mostrar este mensaje","Common.UI.Window.textError":"Error","Common.UI.Window.textInformation":"Información","Common.UI.Window.textWarning":"Aviso","Common.UI.Window.yesButtonText":"Sí","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Control","Common.Utils.String.textShift":"Mayús","Common.Utils.ThemeColor.txtaccent":"Acento","Common.Utils.ThemeColor.txtAqua":"Aguamarina","Common.Utils.ThemeColor.txtbackground":"Fondo","Common.Utils.ThemeColor.txtBlack":"Negro","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde vivo","Common.Utils.ThemeColor.txtBrown":"Marrón","Common.Utils.ThemeColor.txtDarkBlue":"Azul oscuro","Common.Utils.ThemeColor.txtDarker":"Más oscuro","Common.Utils.ThemeColor.txtDarkGray":"Gris oscuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde oscuro","Common.Utils.ThemeColor.txtDarkPurple":"Púrpura oscuro","Common.Utils.ThemeColor.txtDarkRed":"Rojo oscuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde azulado oscuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarillo oscuro","Common.Utils.ThemeColor.txtGold":"Oro","Common.Utils.ThemeColor.txtGray":"Gris","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Añil","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Más claro","Common.Utils.ThemeColor.txtLightGray":"Gris claro","Common.Utils.ThemeColor.txtLightGreen":"Verde claro","Common.Utils.ThemeColor.txtLightOrange":"Naranja claro","Common.Utils.ThemeColor.txtLightYellow":"Amarillo claro","Common.Utils.ThemeColor.txtOrange":"Naranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Púrpura","Common.Utils.ThemeColor.txtRed":"Rojo","Common.Utils.ThemeColor.txtRose":"Rosa claro","Common.Utils.ThemeColor.txtSkyBlue":"Azul cielo","Common.Utils.ThemeColor.txtTeal":"Verde azulado","Common.Utils.ThemeColor.txttext":"Texto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Blanco","Common.Utils.ThemeColor.txtYellow":"Amarillo","Common.Views.About.txtAddress":"dirección: ","Common.Views.About.txtLicensee":"LICENCIATARIO ","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"correo: ","Common.Views.About.txtPoweredBy":"Desarrollado por","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versión ","Common.Views.AutoCorrectDialog.textAdd":"Añadir","Common.Views.AutoCorrectDialog.textApplyText":"Aplicar mientras escribe","Common.Views.AutoCorrectDialog.textAutoCorrect":"Autocorrección de texto","Common.Views.AutoCorrectDialog.textAutoFormat":"Autoformato mientras escribe","Common.Views.AutoCorrectDialog.textBulleted":"Listas con viñetas automáticas","Common.Views.AutoCorrectDialog.textBy":"Por","Common.Views.AutoCorrectDialog.textDelete":"Eliminar","Common.Views.AutoCorrectDialog.textDoubleSpaces":"Añadir punto con doble espacio","Common.Views.AutoCorrectDialog.textFLCells":"Poner en mayúsculas la primera letra de las celdas de la tabla","Common.Views.AutoCorrectDialog.textFLDont":"No poner en mayúsculas después de","Common.Views.AutoCorrectDialog.textFLSentence":"Poner en mayúscula la primera letra de las oraciones","Common.Views.AutoCorrectDialog.textForLangFL":"Excepciones para el idioma:","Common.Views.AutoCorrectDialog.textHyperlink":"Rutas de red e internet con enlaces","Common.Views.AutoCorrectDialog.textHyphens":"Guiones cortos (--) con rayas (—)","Common.Views.AutoCorrectDialog.textMathCorrect":"Autocorrección matemática","Common.Views.AutoCorrectDialog.textNumbered":"Listas con numeración automática","Common.Views.AutoCorrectDialog.textQuotes":"\"Comillas rectas\" con \"comillas tipográficas\"","Common.Views.AutoCorrectDialog.textRecognized":"Funciones reconocidas","Common.Views.AutoCorrectDialog.textRecognizedDesc":"Las siguientes expresiones son expresiones matemáticas reconocidas. No se pondrán en cursiva automáticamente.","Common.Views.AutoCorrectDialog.textReplace":"Reemplazar","Common.Views.AutoCorrectDialog.textReplaceText":"Reemplazar mientras escribe","Common.Views.AutoCorrectDialog.textReplaceType":"Reemplazar texto mientras escribe","Common.Views.AutoCorrectDialog.textReset":"Restablecer","Common.Views.AutoCorrectDialog.textResetAll":"Restablecer a valores predeterminados","Common.Views.AutoCorrectDialog.textRestore":"Restaurar","Common.Views.AutoCorrectDialog.textTitle":"Autocorrección","Common.Views.AutoCorrectDialog.textWarnAddFL":"Las excepciones deben contener sólo las letras, mayúsculas o minúsculas.","Common.Views.AutoCorrectDialog.textWarnAddRec":"Las funciones reconocidas deben contener solo letras de la A a la Z, mayúsculas o minúsculas.","Common.Views.AutoCorrectDialog.textWarnResetFL":"Las excepciones añadidas se eliminarán y las eliminadas se restablecerán. ¿Desea continuar?","Common.Views.AutoCorrectDialog.textWarnResetRec":"Cualquier expresión que haya añadido se eliminará y las eliminadas se restaurarán. ¿Desea continuar?","Common.Views.AutoCorrectDialog.warnReplace":"La entrada de autocorreción para %1 ya existe. ¿Desea reemplazarla?","Common.Views.AutoCorrectDialog.warnReset":"Las autocorrecciones que haya añadido se eliminarán y las modificadas recuperarán sus valores originales. ¿Desea continuar?","Common.Views.AutoCorrectDialog.warnRestore":"La entrada de autocorrección para %1 será restablecida a su valor original. ¿Desea continuar?","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Cerrar chat","Common.Views.Chat.textEnterMessage":"Introduzca su mensaje aquí","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor de Z a A","Common.Views.Comments.mniDateAsc":"Más antiguo","Common.Views.Comments.mniDateDesc":"Más reciente","Common.Views.Comments.mniFilterComments":"Mostrar comentarios","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"Desde arriba","Common.Views.Comments.mniPositionDesc":"Desde abajo","Common.Views.Comments.textAdd":"Añadir","Common.Views.Comments.textAddComment":"Añadir comentario","Common.Views.Comments.textAddCommentToDoc":"Añadir comentario al documento","Common.Views.Comments.textAddReply":"Añadir respuesta","Common.Views.Comments.textAll":"Todo","Common.Views.Comments.textAnonym":"Invitado","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Cerrar","Common.Views.Comments.textClosePanel":"Cerrar comentarios","Common.Views.Comments.textComment":"Comentario","Common.Views.Comments.textComments":"Comentarios","Common.Views.Comments.textEdit":"Aceptar","Common.Views.Comments.textEnterCommentHint":"Introduzca aquí su comentario","Common.Views.Comments.textHintAddComment":"Añadir comentario","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir de nuevo","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resuelto","Common.Views.Comments.textSort":"Ordenar comentarios","Common.Views.Comments.textSortFilter":"Ordenar y filtrar comentarios","Common.Views.Comments.textSortFilterMore":"Ordenar, filtrar y mucho más","Common.Views.Comments.textSortMore":"Ordenar y más","Common.Views.Comments.textViewResolved":"No tiene permiso para volver a abrir el documento","Common.Views.Comments.txtEmpty":"No hay comentarios en el documento","Common.Views.CopyWarningDialog.textDontShow":"No volver a mostrar este mensaje","Common.Views.CopyWarningDialog.textMsg":"Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y del menú contextual solo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, use las siguientes combinaciones de teclas:","Common.Views.CopyWarningDialog.textTitle":"Acciones de Copiar, Cortar y Pegar","Common.Views.CopyWarningDialog.textToCopy":"para copiar","Common.Views.CopyWarningDialog.textToCut":"para cortar","Common.Views.CopyWarningDialog.textToPaste":"para pegar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Descargar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Marque los comandos que se mostrarán en la barra de herramientas Acceso rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impresión rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Rehacer","Common.Views.CustomizeQuickAccessDialog.textSave":"Guardar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalizar acceso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Deshacer","Common.Views.DocumentAccessDialog.textLoading":"Cargando...","Common.Views.DocumentAccessDialog.textTitle":"Ajustes de uso compartido","Common.Views.DocumentPropertyDialog.errorDate":"Puede elegir un valor del calendario para almacenar el valor como Fecha.
Si introduce un valor manualmente, se almacenará como Texto.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"No","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"Sí","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"La propiedad debe tener un título","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"Título","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"Sí\" or \"No\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"Fecha","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"Tipo","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"Número","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"Indique un número válido","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"Texto","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"La propiedad debe tener un valor","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"Valor","Common.Views.DocumentPropertyDialog.txtTitle":"Nueva propiedad del documento","Common.Views.Draw.hintEraser":"Borrador","Common.Views.Draw.hintSelect":"Seleccionar","Common.Views.Draw.txtEraser":"Borrador","Common.Views.Draw.txtHighlighter":"Marcador de resaltado","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Bolígrafo","Common.Views.Draw.txtSelect":"Seleccionar","Common.Views.Draw.txtSize":"Tamaño","Common.Views.ExternalDiagramEditor.textTitle":"Editor de gráficos","Common.Views.ExternalEditor.textClose":"Cerrar","Common.Views.ExternalEditor.textSave":"Guardar y salir","Common.Views.ExternalLinksDlg.closeButtonText":"Cerrar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Actualizar automáticamente los datos de las fuentes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Cambiar fuente","Common.Views.ExternalLinksDlg.textDelete":"Quitar enlaces","Common.Views.ExternalLinksDlg.textDeleteAll":"Quitar todos los enlaces","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Abrir fuente","Common.Views.ExternalLinksDlg.textSource":"Fuente","Common.Views.ExternalLinksDlg.textStatus":"Estado","Common.Views.ExternalLinksDlg.textUnknown":"Desconocido","Common.Views.ExternalLinksDlg.textUpdate":"Actualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Actualizar todo","Common.Views.ExternalLinksDlg.textUpdating":"Actualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Enlaces externos","Common.Views.ExternalMergeEditor.textTitle":"Destinatarios de la combinación de correspondencia","Common.Views.ExternalOleEditor.textTitle":"Editor de hojas de cálculo","Common.Views.FormatSettingsDialog.textCategory":"Categoría","Common.Views.FormatSettingsDialog.textDecimal":"Decimal","Common.Views.FormatSettingsDialog.textFormat":"Formato","Common.Views.FormatSettingsDialog.textLinked":"Vinculado al origen","Common.Views.FormatSettingsDialog.textLocale":"Configuración regional","Common.Views.FormatSettingsDialog.textSeparator":"Usar separador de millares","Common.Views.FormatSettingsDialog.textSymbols":"Símbolos","Common.Views.FormatSettingsDialog.textTitle":"Formato de número","Common.Views.FormatSettingsDialog.txtAccounting":"Financiero","Common.Views.FormatSettingsDialog.txtAs10":"Décimas (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"Сentésimas (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"Dieciseisavos (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"Mitades (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"Cuartos (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"Octavos (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"Moneda","Common.Views.FormatSettingsDialog.txtCustom":"Personalizado","Common.Views.FormatSettingsDialog.txtCustomWarning":"Por favor, introduzca el formato de número personalizado con cuidado. El editor de hojas de cálculo no comprueba los formatos personalizados para detectar errores que puedan afectar al archivo xlsx.","Common.Views.FormatSettingsDialog.txtDate":"Fecha","Common.Views.FormatSettingsDialog.txtFraction":"Fracción","Common.Views.FormatSettingsDialog.txtGeneral":"General","Common.Views.FormatSettingsDialog.txtNone":"Ningún","Common.Views.FormatSettingsDialog.txtNumber":"Número","Common.Views.FormatSettingsDialog.txtPercentage":"Porcentaje","Common.Views.FormatSettingsDialog.txtSample":"Ejemplo:","Common.Views.FormatSettingsDialog.txtScientific":"Científico","Common.Views.FormatSettingsDialog.txtText":"Texto","Common.Views.FormatSettingsDialog.txtTime":"Hora","Common.Views.FormatSettingsDialog.txtUpto1":"Hasta un dígito (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"Hasta dos dígitos (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"Hasta tres dígitos (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"Barra de herramientas de acceso rápido","Common.Views.Header.labelCoUsersDescr":"Usuarios que están editando el archivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Configuración avanzada","Common.Views.Header.textBack":"Abrir ubicación del archivo","Common.Views.Header.textClose":"Cerrar archivo","Common.Views.Header.textCompactView":"Ocultar barra de herramientas","Common.Views.Header.textDocEditDesc":"Realizar cualquier cambio","Common.Views.Header.textDocViewDesc":"Ver el archivo, pero no realizar cambios","Common.Views.Header.textDocViewFormDesc":"Ver cómo se verá el formulario al rellenarlo","Common.Views.Header.textDownload":"Descargar","Common.Views.Header.textEdit":"Edición","Common.Views.Header.textHideLines":"Ocultar reglas","Common.Views.Header.textHideStatusBar":"Ocultar barra de estado","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Solo lectura","Common.Views.Header.textRemoveFavorite":"Eliminar de «Favoritos»","Common.Views.Header.textReview":"Revisión","Common.Views.Header.textReviewDesc":"Sugerir cambios","Common.Views.Header.textShare":"Compartir","Common.Views.Header.textStartFill":"Compartir y recopilar","Common.Views.Header.textView":"Visualización","Common.Views.Header.textViewForm":"Vista previa","Common.Views.Header.textZoom":"Ampliación","Common.Views.Header.tipAccessRights":"Gestionar permisos de acceso al documento","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalizar la barra de herramientas Acceso rápido","Common.Views.Header.tipDocEdit":"Edición","Common.Views.Header.tipDocView":"Visualización","Common.Views.Header.tipDocViewForm":"Visualización del formulario","Common.Views.Header.tipDownload":"Descargar archivo","Common.Views.Header.tipFillStatus":"Estado del rellenado","Common.Views.Header.tipGoEdit":"Editar archivo actual","Common.Views.Header.tipPrint":"Imprimir archivo","Common.Views.Header.tipPrintQuick":"Impresión rápida","Common.Views.Header.tipRedo":"Rehacer","Common.Views.Header.tipReview":"Revisión","Common.Views.Header.tipSave":"Guardar","Common.Views.Header.tipSearch":"Buscar","Common.Views.Header.tipUndo":"Deshacer","Common.Views.Header.tipUsers":"Ver usuarios","Common.Views.Header.tipViewSettings":"Mostrar ajustes","Common.Views.Header.tipViewUsers":"Ver usuarios y administrar permisos de acceso al documento","Common.Views.Header.txtAccessRights":"Cambiar permisos de acceso","Common.Views.Header.txtRename":"Renombrar","Common.Views.History.textCloseHistory":"Cerrar historial","Common.Views.History.textHide":"Contraer","Common.Views.History.textHideAll":"Ocultar cambios detallados","Common.Views.History.textHighlightDeleted":"Resaltar eliminado","Common.Views.History.textMore":"Más","Common.Views.History.textRestore":"Restaurar","Common.Views.History.textShow":"Desplegar","Common.Views.History.textShowAll":"Mostrar cambios detallados","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"Historial de versiones","Common.Views.ImageFromUrlDialog.textUrl":"Pegue la URL de la imagen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo es obligatorio","Common.Views.ImageFromUrlDialog.txtNotUrl":"El campo debe ser una URL en el formato \"http://www.example.com\"","Common.Views.InsertTableDialog.textInvalidRowsCols":"Debe especificar un número válido de filas y columnas","Common.Views.InsertTableDialog.txtColumns":"Número de columnas","Common.Views.InsertTableDialog.txtMaxText":"El valor máximo para este campo es {0}.","Common.Views.InsertTableDialog.txtMinText":"El valor mínimo para este campo es {0}.","Common.Views.InsertTableDialog.txtRows":"Número de filas","Common.Views.InsertTableDialog.txtTitle":"Tamaño de tabla","Common.Views.InsertTableDialog.txtTitleSplit":"Dividir celda","Common.Views.LanguageDialog.labelSelect":"Seleccionar el idioma del documento","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Introduzca un prompt para la consulta","Common.Views.MacrosAiDialog.textCreate":"Crear","Common.Views.MacrosDialog.textAutostart":"Inicio automático","Common.Views.MacrosDialog.textConvertFromVBA":"Convertir desde VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convertir macros desde VBA","Common.Views.MacrosDialog.textCopy":"Copiar ","Common.Views.MacrosDialog.textCreateFromDesc":"Crear a partir de la descripción","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Crear macros a partir de la descripción","Common.Views.MacrosDialog.textCustomFunction":"Función personalizada","Common.Views.MacrosDialog.textCustomFunctions":"Funciones personalizadas","Common.Views.MacrosDialog.textDebug":"Depurar","Common.Views.MacrosDialog.textDelete":"Eliminar","Common.Views.MacrosDialog.textFunctions":"Funciones","Common.Views.MacrosDialog.textLoading":"Cargando...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Crear inicio automático","Common.Views.MacrosDialog.textRename":"Renombrar","Common.Views.MacrosDialog.textRun":"Ejecutar","Common.Views.MacrosDialog.textSave":"Guardar","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Desactivar inicio automático","Common.Views.MacrosDialog.tipAI":"IA","Common.Views.MacrosDialog.tipFunctionAdd":"Añadir función personalizada","Common.Views.MacrosDialog.tipFunctionCopy":"Copiar función personalizada","Common.Views.MacrosDialog.tipFunctionDelete":"Eliminar función personalizada","Common.Views.MacrosDialog.tipFunctionRename":"Renombrar función personalizada","Common.Views.MacrosDialog.tipMacrosAdd":"Añadir macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copiar macros","Common.Views.MacrosDialog.tipMacrosDebug":"Depurar macros","Common.Views.MacrosDialog.tipMacrosRename":"Renombrar macros","Common.Views.MacrosDialog.tipMacrosRun":"Ejecutar macros","Common.Views.MacrosDialog.tipRedo":"Rehacer","Common.Views.MacrosDialog.tipUndo":"Deshacer","Common.Views.OpenDialog.closeButtonText":"Cerrar archivo","Common.Views.OpenDialog.txtEncoding":"Codificación","Common.Views.OpenDialog.txtIncorrectPwd":"La contraseña es incorrecta","Common.Views.OpenDialog.txtOpenFile":"Introduzca una contraseña para abrir el archivo","Common.Views.OpenDialog.txtPassword":"Contraseña","Common.Views.OpenDialog.txtPreview":"Vista previa","Common.Views.OpenDialog.txtProtected":"Una vez se haya introducido la contraseña y abierto el archivo, la contraseña actual del archivo se restablecerá","Common.Views.OpenDialog.txtTitle":"Elegir opciones de %1","Common.Views.OpenDialog.txtTitleProtected":"Archivo protegido","Common.Views.PasswordDialog.txtDescription":"Establezca una contraseña para proteger este documento","Common.Views.PasswordDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","Common.Views.PasswordDialog.txtPassword":"Contraseña","Common.Views.PasswordDialog.txtRepeat":"Repita la contraseña","Common.Views.PasswordDialog.txtTitle":"Establecer contraseña","Common.Views.PasswordDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdela en un lugar seguro.","Common.Views.PdfSignDialog.textBefore":"Antes de firmar este documento, compruebe que el contenido que está firmando es correcto","Common.Views.PdfSignDialog.textClear":"Borrar","Common.Views.PdfSignDialog.textFromFile":"Desde archivo","Common.Views.PdfSignDialog.textFromStorage":"Desde almacenamiento","Common.Views.PdfSignDialog.textFromUrl":"Desde URL","Common.Views.PdfSignDialog.textLooksAs":"La firma se ve como","Common.Views.PdfSignDialog.textSelect":"Seleccionar imagen","Common.Views.PdfSignDialog.tipRedo":"Rehacer","Common.Views.PdfSignDialog.tipUndo":"Deshacer","Common.Views.PdfSignDialog.txtDraw":"Dibujar","Common.Views.PdfSignDialog.txtRemBack":"Eliminar fondo blanco","Common.Views.PdfSignDialog.txtTitle":"Firma","Common.Views.PdfSignDialog.txtType":"Escribir","Common.Views.PdfSignDialog.txtUpload":"Subir","Common.Views.PdfSignDialog.txtUploadDesc":"Puede subir imágenes en formatos JPEG, JPG, GIF y PNG con un tamaño máximo de 30 Mb","Common.Views.PluginDlg.textDock":"Anclar plugin","Common.Views.PluginDlg.textLoading":"Cargando","Common.Views.PluginPanel.textClosePanel":"Cerrar plugin","Common.Views.PluginPanel.textHidePanel":"Contraer plugin","Common.Views.PluginPanel.textLoading":"Cargando","Common.Views.PluginPanel.textUndock":"Desanclar plugin","Common.Views.Plugins.groupCaption":"Extensiones","Common.Views.Plugins.strPlugins":"Extensiones","Common.Views.Plugins.textBackgroundPlugins":"Plugins de fondo","Common.Views.Plugins.textClosePanel":"Cerrar extensión","Common.Views.Plugins.textLoading":"Cargando","Common.Views.Plugins.textSettings":"Ajustes","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Detener","Common.Views.Plugins.textTheListOfBackgroundPlugins":"La lista de plugins de fondo","Common.Views.Plugins.tipMore":"Más","Common.Views.Protection.hintAddPwd":"Cifrar con contraseña","Common.Views.Protection.hintDelPwd":"Eliminar contraseña","Common.Views.Protection.hintPwd":"Cambiar o eliminar la contraseña","Common.Views.Protection.hintSignature":"Añadir firma digital o línea de firma","Common.Views.Protection.txtAddPwd":"Añadir contraseña","Common.Views.Protection.txtChangePwd":"Cambiar contraseña","Common.Views.Protection.txtDeletePwd":"Eliminar contraseña","Common.Views.Protection.txtEncrypt":"Cifrar","Common.Views.Protection.txtInvisibleSignature":"Añadir firma digital","Common.Views.Protection.txtSignature":"Firma","Common.Views.Protection.txtSignatureLine":"Añadir línea de firma","Common.Views.RecentFiles.txtOpenRecent":"Abrir recientes","Common.Views.RenameDialog.textName":"Nombre del archivo","Common.Views.RenameDialog.txtInvalidName":"El nombre del archivo no debe contener los símbolos siguientes:","Common.Views.ReviewChanges.hintNext":"Al cambio siguiente","Common.Views.ReviewChanges.hintPrev":"Al cambio anterior","Common.Views.ReviewChanges.mniFromFile":"Documento desde archivo","Common.Views.ReviewChanges.mniFromStorage":"Documento desde almacenamiento","Common.Views.ReviewChanges.mniFromUrl":"Documento desde URL","Common.Views.ReviewChanges.mniMMFromFile":"Desde archivo","Common.Views.ReviewChanges.mniMMFromStorage":"Desde almacenamiento","Common.Views.ReviewChanges.mniMMFromUrl":"Desde URL","Common.Views.ReviewChanges.mniSettings":"Ajustes de comparación","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedición en tiempo real. Todos los cambios se guardan automáticamente","Common.Views.ReviewChanges.strStrict":"Estricto","Common.Views.ReviewChanges.strStrictDesc":"Use el botón \"Guardar\" para sincronizar los cambios hechos por usted y por otros usuarios","Common.Views.ReviewChanges.textEnable":"Habilitar","Common.Views.ReviewChanges.textWarnTrackChanges":"El seguimiento de cambios se activará para todos los usuarios con acceso total. La próxima vez que alguien abra el documento, el seguimiento de cambios seguirá activado.","Common.Views.ReviewChanges.textWarnTrackChangesTitle":"¿Habilitar el seguimiento de cambios para todos?","Common.Views.ReviewChanges.tipAcceptCurrent":"Aceptar el cambio actual y pasar al siguiente","Common.Views.ReviewChanges.tipCoAuthMode":"Establecer modo de coedición","Common.Views.ReviewChanges.tipCombine":"Combinar el documento actual con otro","Common.Views.ReviewChanges.tipCommentRem":"Eliminar comentarios","Common.Views.ReviewChanges.tipCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentarios","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver los comentarios actuales","Common.Views.ReviewChanges.tipCompare":"Comparar el documento actual con otro","Common.Views.ReviewChanges.tipHistory":"Mostrar historial de versiones","Common.Views.ReviewChanges.tipMailRecepients":"Combinación de correspondencia","Common.Views.ReviewChanges.tipRejectCurrent":"Rechazar el cambio actual y pasar al siguiente","Common.Views.ReviewChanges.tipReview":"Rastrear cambios","Common.Views.ReviewChanges.tipReviewView":"Seleccionar modo en que presentar los cambios","Common.Views.ReviewChanges.tipSetDocLang":"Establecer idioma del documento","Common.Views.ReviewChanges.tipSetSpelling":"Сorrección ortográfica","Common.Views.ReviewChanges.tipSharing":"Gestionar permisos de acceso al documento","Common.Views.ReviewChanges.txtAccept":"Aceptar","Common.Views.ReviewChanges.txtAcceptAll":"Aceptar todos los cambios","Common.Views.ReviewChanges.txtAcceptChanges":"Aceptar cambios","Common.Views.ReviewChanges.txtAcceptCurrent":"Aceptar cambio actual","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Cerrar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedición","Common.Views.ReviewChanges.txtCombine":"Combinar","Common.Views.ReviewChanges.txtCommentRemAll":"Eliminar todos los comentarios","Common.Views.ReviewChanges.txtCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.txtCommentRemMy":"Eliminar mis comentarios","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Eliminar mis comentarios actuales","Common.Views.ReviewChanges.txtCommentRemove":"Eliminar","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos los comentarios","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentarios actuales","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver mis comentarios","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver mis comentarios actuales","Common.Views.ReviewChanges.txtCompare":"Comparar","Common.Views.ReviewChanges.txtDocLang":"Idioma","Common.Views.ReviewChanges.txtEditing":"Edición","Common.Views.ReviewChanges.txtFinal":"Todos los cambios aceptados {0}","Common.Views.ReviewChanges.txtFinalCap":"Final","Common.Views.ReviewChanges.txtHistory":"Historial de versiones","Common.Views.ReviewChanges.txtMailMerge":"Combinación de correspondencia","Common.Views.ReviewChanges.txtMarkup":"Todos los cambios {0}","Common.Views.ReviewChanges.txtMarkupCap":"Revisiones y globos","Common.Views.ReviewChanges.txtMarkupSimple":"Todos los cambios {0}
Sin globos","Common.Views.ReviewChanges.txtMarkupSimpleCap":"Solo revisiones","Common.Views.ReviewChanges.txtNext":"Al cambio siguiente","Common.Views.ReviewChanges.txtOff":"Desactivar para mí","Common.Views.ReviewChanges.txtOffGlobal":"Desactivar para mí y para todos","Common.Views.ReviewChanges.txtOn":"Activar para mí","Common.Views.ReviewChanges.txtOnGlobal":"Activar para mí y para todos","Common.Views.ReviewChanges.txtOriginal":"Todos los cambios rechazados {0}","Common.Views.ReviewChanges.txtOriginalCap":"Original","Common.Views.ReviewChanges.txtPrev":"Al cambio anterior","Common.Views.ReviewChanges.txtPreview":"Vista previa","Common.Views.ReviewChanges.txtReject":"Rechazar","Common.Views.ReviewChanges.txtRejectAll":"Rechazar todos los cambios","Common.Views.ReviewChanges.txtRejectChanges":"Rechazar cambios","Common.Views.ReviewChanges.txtRejectCurrent":"Rechazar cambio actual","Common.Views.ReviewChanges.txtSharing":"Compartir","Common.Views.ReviewChanges.txtSpelling":"Сorrección ortográfica","Common.Views.ReviewChanges.txtTurnon":"Rastrear cambios","Common.Views.ReviewChanges.txtView":"Modo de visualización","Common.Views.ReviewChangesDialog.textTitle":"Revisar cambios","Common.Views.ReviewChangesDialog.txtAccept":"Aceptar","Common.Views.ReviewChangesDialog.txtAcceptAll":"Aceptar todos los cambios","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"Aceptar cambio actual","Common.Views.ReviewChangesDialog.txtNext":"Al siguiente cambio","Common.Views.ReviewChangesDialog.txtPrev":"Al cambio anterior","Common.Views.ReviewChangesDialog.txtReject":"Rechazar","Common.Views.ReviewChangesDialog.txtRejectAll":"Rechazar todos los cambios","Common.Views.ReviewChangesDialog.txtRejectCurrent":"Rechazar cambio actual","Common.Views.ReviewPopover.textAdd":"Añadir","Common.Views.ReviewPopover.textAddReply":"Añadir respuesta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Cerrar","Common.Views.ReviewPopover.textComment":"Comentario","Common.Views.ReviewPopover.textEdit":"Aceptar","Common.Views.ReviewPopover.textEnterComment":"Introduzca su comentario aquí","Common.Views.ReviewPopover.textFollowMove":"Seguir movimiento","Common.Views.ReviewPopover.textMention":"+mención proporcionará acceso al documento y enviará un correo","Common.Views.ReviewPopover.textMentionNotify":"+mención notificará al usuario por correo","Common.Views.ReviewPopover.textOpenAgain":"Abrir de nuevo","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"No tiene permiso para volver a abrir el documento","Common.Views.ReviewPopover.txtAccept":"Aceptar","Common.Views.ReviewPopover.txtDeleteTip":"Eliminar","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.ReviewPopover.txtReject":"Rechazar","Common.Views.SaveAsDlg.textLoading":"Cargando","Common.Views.SaveAsDlg.textTitle":"Carpeta en donde guardar","Common.Views.SearchPanel.textCaseSensitive":"Distinguir mayúsculas y minúsculas","Common.Views.SearchPanel.textCloseSearch":"Cerrar búsqueda","Common.Views.SearchPanel.textContentChanged":"Se ha modificado el documento","Common.Views.SearchPanel.textFind":"Buscar","Common.Views.SearchPanel.textFindAndReplace":"Buscar y reemplazar","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} elementos reemplazados correctamente.","Common.Views.SearchPanel.textMatchUsingRegExp":"Buscar utilizando expresiones regulares","Common.Views.SearchPanel.textNoMatches":"No hay coincidencias","Common.Views.SearchPanel.textNoSearchResults":"No hay resultados de búsqueda","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} elementos reemplazados. Los {2} elementos restantes están bloqueados por otros usuarios.","Common.Views.SearchPanel.textReplace":"Reemplazar","Common.Views.SearchPanel.textReplaceAll":"Reemplazar todo","Common.Views.SearchPanel.textReplaceWith":"Reemplazar por","Common.Views.SearchPanel.textSearchAgain":"{0}Realice una nueva búsqueda{1} para obtener resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"La búsqueda se ha detenido","Common.Views.SearchPanel.textSearchResults":"Resultados de la búsqueda: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados de búsqueda","Common.Views.SearchPanel.textTooManyResults":"Hay demasiados resultados para mostrarlos aquí","Common.Views.SearchPanel.textWholeWords":"Solo palabras completas","Common.Views.SearchPanel.tipNextResult":"Resultado siguiente","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Cargando","Common.Views.SelectFileDlg.textTitle":"Seleccionar origen de los datos","Common.Views.ShapeShadowDialog.txtAngle":"Ángulo","Common.Views.ShapeShadowDialog.txtDistance":"Distancia","Common.Views.ShapeShadowDialog.txtSize":"Tamaño","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparencia","Common.Views.ShortcutsDialog.txtDescription":"Descripción","Common.Views.ShortcutsDialog.txtEmpty":"No se han encontrado coincidencias. Ajuste su búsqueda.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restablecer todos los valores predeterminados","Common.Views.ShortcutsDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todos los ajustes de los accesos directos se restablecerán a los valores predeterminados.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsDialog.txtSearch":"Búsqueda","Common.Views.ShortcutsDialog.txtTitle":"Accesos directos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Acción","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"Este acceso directo no se puede editar.","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Escriba el acceso directo deseado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"El acceso directo utilizado por las acciones %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"El acceso directo utilizado por las acciones %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"El acceso directo utilizado por la acción %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"El acceso directo utilizado por la acción %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Nuevo acceso directo","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos los accesos directos para la acción «%1» se restablecerán a los valores predeterminados.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsEditDialog.txtTitle":"Editar acceso directo","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Escriba el acceso directo deseado","Common.Views.SignDialog.textBold":"Negrita","Common.Views.SignDialog.textCertificate":"Certificado","Common.Views.SignDialog.textChange":"Cambiar","Common.Views.SignDialog.textInputName":"Introduzca el nombre del firmante","Common.Views.SignDialog.textItalic":"Cursiva","Common.Views.SignDialog.textNameError":"El nombre del firmante no debe estar vacío.","Common.Views.SignDialog.textPurpose":"Propósito al firmar este documento","Common.Views.SignDialog.textSelect":"Seleccionar","Common.Views.SignDialog.textSelectImage":"Seleccionar imagen","Common.Views.SignDialog.textSignature":"La firma se ve como","Common.Views.SignDialog.textTitle":"Firmar documento","Common.Views.SignDialog.textUseImage":"o pulse en 'Seleccionar imagen' para usar una imagen como firma","Common.Views.SignDialog.textValid":"Válido desde %1 hasta %2","Common.Views.SignDialog.tipFontName":"Nombre de la fuente","Common.Views.SignDialog.tipFontSize":"Tamaño de la fuente","Common.Views.SignSettingsDialog.textAllowComment":"Permitir al firmante añadir comentarios en el diálogo de la firma","Common.Views.SignSettingsDialog.textDefInstruction":"Antes de firmar este documento, verifique que el contenido que está firmando sea correcto.","Common.Views.SignSettingsDialog.textInfoEmail":"Correo electrónico del firmante sugerido","Common.Views.SignSettingsDialog.textInfoName":"Firmante sugerido","Common.Views.SignSettingsDialog.textInfoTitle":"Título del firmante sugerido","Common.Views.SignSettingsDialog.textInstructions":"Instrucciones para el firmante","Common.Views.SignSettingsDialog.textShowDate":"Mostrar fecha de la firma","Common.Views.SignSettingsDialog.textTitle":"Configuración de firma","Common.Views.SignSettingsDialog.txtEmpty":"Este campo es obligatorio","Common.Views.SymbolTableDialog.textCharacter":"Carácter","Common.Views.SymbolTableDialog.textCode":"Valor hexadecimal de Unicode","Common.Views.SymbolTableDialog.textCopyright":"Signo de «copyright»","Common.Views.SymbolTableDialog.textDCQuote":"Comillas dobles de cierre","Common.Views.SymbolTableDialog.textDOQuote":"Comillas dobles de apertura","Common.Views.SymbolTableDialog.textEllipsis":"Puntos suspensivos","Common.Views.SymbolTableDialog.textEmDash":"Raya","Common.Views.SymbolTableDialog.textEmSpace":"Espacio largo","Common.Views.SymbolTableDialog.textEnDash":"Guion corto","Common.Views.SymbolTableDialog.textEnSpace":"Espacio corto","Common.Views.SymbolTableDialog.textFont":"Fuente","Common.Views.SymbolTableDialog.textNBHyphen":"Guion de no separación","Common.Views.SymbolTableDialog.textNBSpace":"Espacio de no separación","Common.Views.SymbolTableDialog.textPilcrow":"Signo de antígrafo","Common.Views.SymbolTableDialog.textQEmSpace":"1/4 de espacio largo","Common.Views.SymbolTableDialog.textRange":"Rango","Common.Views.SymbolTableDialog.textRecent":"Símbolos utilizados recientemente","Common.Views.SymbolTableDialog.textRegistered":"Signo de marca registrada","Common.Views.SymbolTableDialog.textSCQuote":"Comillas simples de cierre","Common.Views.SymbolTableDialog.textSection":"Signo de párrafo","Common.Views.SymbolTableDialog.textShortcut":"Tecla de método abreviado","Common.Views.SymbolTableDialog.textSHyphen":"Guion opcional","Common.Views.SymbolTableDialog.textSOQuote":"Comillas simples de apertura","Common.Views.SymbolTableDialog.textSpecial":"Caracteres especiales","Common.Views.SymbolTableDialog.textSymbols":"Símbolos","Common.Views.SymbolTableDialog.textTitle":"Símbolo","Common.Views.SymbolTableDialog.textTradeMark":"Símbolo de marca registrada","Common.Views.UserNameDialog.textDontShow":"No volver a preguntarme","Common.Views.UserNameDialog.textLabel":"Etiqueta:","Common.Views.UserNameDialog.textLabelError":"La etiqueta no debe estar vacía.","DE.Controllers.DocProtection.txtIsProtectedComment":"El documento está protegido. Solo puede añadir comentarios en este documento.","DE.Controllers.DocProtection.txtIsProtectedForms":"El documento está protegido. Solo puede rellenar formularios en este documento.","DE.Controllers.DocProtection.txtIsProtectedTrack":"El documento está protegido. Puede editar este documento, pero todos los cambios serán rastreados.","DE.Controllers.DocProtection.txtIsProtectedView":"El documento está protegido. Solo puede ver este documento.","DE.Controllers.DocProtection.txtWasProtectedComment":"El documento ha sido protegido por otro usuario.\nSolo puede añadir comentarios en este documento.","DE.Controllers.DocProtection.txtWasProtectedForms":"El documento ha sido protegido por otro usuario.\nSolo puede rellenar formularios en este documento.","DE.Controllers.DocProtection.txtWasProtectedTrack":"El documento ha sido protegido por otro usuario.\nPuede editar este documento, pero todos los cambios serán rastreados.","DE.Controllers.DocProtection.txtWasProtectedView":"El documento ha sido protegido por otro usuario.\nSolo puede ver este documento.","DE.Controllers.DocProtection.txtWasUnprotected":"El documento ha sido desprotegido.","DE.Controllers.HeaderFooterTab.textFieldExample":"Ejemplo de escribir código: HORA \\@ \"dddd, MMMM d, aaaa\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"Códigos de campo","DE.Controllers.HeaderFooterTab.textFieldTitle":"Campo","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"Numeración de páginas","DE.Controllers.LeftMenu.leavePageText":"Todos los cambios no guardados de este documento se perderán.
Pulse \"Cancelar\" después \"Guardar\" para guardarlos. Pulse \"Aceptar\" para deshacer todos los cambios no guardados.","DE.Controllers.LeftMenu.newDocumentTitle":"Documento sin título","DE.Controllers.LeftMenu.notcriticalErrorTitle":"Aviso","DE.Controllers.LeftMenu.requestEditRightsText":"Solicitando permisos de edición...","DE.Controllers.LeftMenu.textLoadHistory":"Cargando historial de versiones...","DE.Controllers.LeftMenu.textNoTextFound":"No se pueden encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","DE.Controllers.LeftMenu.textReplaceSkipped":"Se ha realizado el reemplazo. Se omitieron {0} coincidencias.","DE.Controllers.LeftMenu.textReplaceSuccess":"La búsqueda se ha realizado. Coincidencias reemplazadas: {0}","DE.Controllers.LeftMenu.textSelectPath":"Introduzca un nuevo nombre para guardar la copia del archivo","DE.Controllers.LeftMenu.txtCompatible":"El documento se guardará en el nuevo formato. Permitirá utilizar todas las características del editor, pero podría afectar al diseño del documento.
Utilice la opción 'Compatibilidad' de la configuración avanzada si quiere hacer que los archivos sean compatibles con versiones anteriores de MS Word.","DE.Controllers.LeftMenu.txtUntitled":"Sin título","DE.Controllers.LeftMenu.warnDownloadAs":"Si sigue guardando en este formato todas las características a excepción del texto se perderán.
¿Está seguro de que quiere continuar?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"Su {0} se convertirá en un formato editable. Esto puede llevar un tiempo. El documento resultante será optimizado para permitirle editar el texto, por lo que puede que no se vea exactamente como el {0} original, especialmente si el archivo original contenía muchos gráficos.","DE.Controllers.LeftMenu.warnDownloadAsRTF":"Si usted sigue guardando en este formato, una parte del formato puede perderse.
¿Está seguro de que desea continuar?","DE.Controllers.LeftMenu.warnReplaceString":"{0} no es un carácter especial válido para el campo de sustitución.","DE.Controllers.Main.applyChangesTextText":"Cargando cambios...","DE.Controllers.Main.applyChangesTitleText":"Cargando cambios","DE.Controllers.Main.confirmMaxChangesSize":"El tamaño de las acciones excede la limitación establecida para su servidor.
Pulse \"Deshacer\" para cancelar su última acción o pulse \"Continuar\" para mantener la acción localmente (debe descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada).","DE.Controllers.Main.convertationTimeoutText":"Tiempo de conversión está superado.","DE.Controllers.Main.criticalErrorExtText":"Pulse \"Aceptar\" para regresar a la lista de documentos.","DE.Controllers.Main.criticalErrorExtTextClose":"Pulse \"OK\" para cerrar el editor.","DE.Controllers.Main.criticalErrorTitle":"Error","DE.Controllers.Main.downloadErrorText":"Error de descarga.","DE.Controllers.Main.downloadMergeText":"Descargando...","DE.Controllers.Main.downloadMergeTitle":"Descargando","DE.Controllers.Main.downloadTextText":"Cargando documento...","DE.Controllers.Main.downloadTitleText":"Descargando documento","DE.Controllers.Main.errorAccessDeny":"Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con el administrador del servidor de documentos.","DE.Controllers.Main.errorBadImageUrl":"La URL de la imagen es incorrecta","DE.Controllers.Main.errorCannotPasteImg":"No es posible pegar esta imagen desde el portapapeles, pero puede guardarla en su dispositivo e \ninsertarla desde allí, o puede copiar la imagen sin texto y pegarla en el documento.","DE.Controllers.Main.errorCoAuthoringDisconnect":"Se ha perdido la conexión con servidor. El documento no puede ser editado en este momento.","DE.Controllers.Main.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","DE.Controllers.Main.errorCompare":"La característica de comparación de documentos no está disponible durante la coedición.","DE.Controllers.Main.errorConnectToServer":"No se ha podido guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.
Al hacer clic en el botón 'Aceptar' se le solicitará que descargue el documento.","DE.Controllers.Main.errorCopyDisabled":"Por motivos de seguridad, el contenido de este documento no se puede copiar.","DE.Controllers.Main.errorDatabaseConnection":"Error externo.
Error de conexión a la base de datos. Por favor, póngase en contacto con el servicio de atención al cliente si el error persiste.","DE.Controllers.Main.errorDataEncrypted":"Se han recibido cambios cifrados que no pueden descifrarse.","DE.Controllers.Main.errorDataRange":"Rango de datos incorrecto.","DE.Controllers.Main.errorDefaultMessage":"Código de error: %1","DE.Controllers.Main.errorDirectUrl":"Por favor, compruebe el vínculo al documento.
Este vínculo debe ser un vínculo directo al archivo que descargar.","DE.Controllers.Main.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.Controllers.Main.errorEditingSaveas":"Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro.","DE.Controllers.Main.errorEditProtectedRange":"No tiene permiso para editar esta selección porque está protegida.","DE.Controllers.Main.errorEmailClient":"No se ha podido encontrar ningún cliente de correo","DE.Controllers.Main.errorEmptyTOC":"Empezar a crear una tabla de contenido aplicando un estilo de título de la galería de estilos para el texto seleccionado.","DE.Controllers.Main.errorFilePassProtect":"El archivo está protegido por una contraseña y no puede ser abierto.","DE.Controllers.Main.errorFileSizeExceed":"El tamaño del archivo excede la limitación establecida para su servidor.
Por favor, póngase en contacto con el administrador del servidor de documentos para obtener más detalles.","DE.Controllers.Main.errorForceSave":"Se produjo un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.","DE.Controllers.Main.errorInconsistentExt":"Se ha producido un error al abrir el archivo.
El contenido del archivo no coincide con la extensión del mismo.","DE.Controllers.Main.errorInconsistentExtDocx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con documentos de texto (por ejemplo, docx), pero el archivo tiene una extensión inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtPdf":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con uno de los siguientes formatos: pdf/djvu/xps/oxps, pero el archivo tiene una extensión inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtPptx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con presentaciones (por ejemplo, pptx), pero el archivo tiene una extensión inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtXlsx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con hojas de cálculo (por ejemplo, xlsx), pero el archivo tiene una extensión inconsistente: %1.","DE.Controllers.Main.errorKeyEncrypt":"Descriptor de clave desconocido","DE.Controllers.Main.errorKeyExpire":"El descriptor de la clave ha expirado","DE.Controllers.Main.errorLoadingFont":"Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del servidor de documentos.","DE.Controllers.Main.errorMailMergeLoadFile":"La carga del documento ha fallado. Por favor, seleccione un archivo diferente.","DE.Controllers.Main.errorMailMergeSaveFile":"No se han podido fusionar los archivos.","DE.Controllers.Main.errorNoTOC":"No hay ninguna tabla de contenido que actualizar. Se puede insertar una desde la pestaña «Referencias».","DE.Controllers.Main.errorPasswordIsNotCorrect":"La contraseña que ha proporcionado no es correcta.
Verifique que la tecla «Bloq Mayús» esté desactivada y asegúrese de utilizar las mayúsculas correctamente.","DE.Controllers.Main.errorSaveWatermark":"Este archivo contiene una imagen de marca de agua vinculada a otro dominio.
Para que sea visible en PDF, actualice la imagen de marca de agua para que se vincule desde el mismo dominio que su documento, o cárguela desde su ordenador.","DE.Controllers.Main.errorServerVersion":"La versión del editor se ha actualizado. La página se recargará para aplicar los cambios.","DE.Controllers.Main.errorSessionAbsolute":"La sesión ha expirado. Por favor, recargue la página.","DE.Controllers.Main.errorSessionIdle":"El documento no ha sido editado durante bastante tiempo. Por favor, recargue la página.","DE.Controllers.Main.errorSessionToken":"La conexión con el servidor se ha interrumpido. Por favor, recargue la página.","DE.Controllers.Main.errorSetPassword":"No se ha podido establecer la contraseña.","DE.Controllers.Main.errorStockChart":"El orden de las filas es incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja de la forma siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","DE.Controllers.Main.errorSubmit":"Error al enviar.","DE.Controllers.Main.errorTextFormWrongFormat":"El valor introducido no se corresponde con el formato del campo","DE.Controllers.Main.errorToken":"El 'token' de seguridad del documento tiene un formato incorrecto.
Por favor, contacte con el administrador del servidor de documentos.","DE.Controllers.Main.errorTokenExpire":"El 'token' de seguridad del documento ha expirado.
Por favor, contacte con el administrador del servidor de documentos.","DE.Controllers.Main.errorUpdateVersion":"Se ha cambiado la versión del archivo. La página se actualizará.","DE.Controllers.Main.errorUpdateVersionOnDisconnect":"Se ha restablecido la conexión a internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se haya perdido nada, y luego volver a cargar esta página.","DE.Controllers.Main.errorUserDrop":"No se puede acceder al archivo en este momento.","DE.Controllers.Main.errorUsersExceed":"Se ha excedido el número de usuarios permitido por su plan contratado","DE.Controllers.Main.errorViewerDisconnect":"Se ha perdido la conexión. Usted todavía puede visualizar el documento,
pero no puede descargar o imprimirlo hasta que recupere la conexión y la página esté recargada.","DE.Controllers.Main.leavePageText":"Hay cambios no guardados en este documento. Haga clic en 'Permanecer en esta página', después en 'Guardar' para guardarlos. Haga clic en 'Abandonar esta página' para descartar todos los cambios no guardados.","DE.Controllers.Main.leavePageTextOnClose":"Todos los cambios no guardados de este documento se perderán.
Pulse \"Cancelar\" después \"Guardar\" para guardarlos. Pulse \"Aceptar\" para deshacer todos los cambios no guardados.","DE.Controllers.Main.loadFontsTextText":"Cargando datos...","DE.Controllers.Main.loadFontsTitleText":"Cargando datos","DE.Controllers.Main.loadFontTextText":"Cargando datos...","DE.Controllers.Main.loadFontTitleText":"Cargando datos","DE.Controllers.Main.loadImagesTextText":"Cargando imágenes...","DE.Controllers.Main.loadImagesTitleText":"Cargando imágenes","DE.Controllers.Main.loadImageTextText":"Cargando imagen...","DE.Controllers.Main.loadImageTitleText":"Cargando imagen","DE.Controllers.Main.loadingDocumentTextText":"Cargando documento...","DE.Controllers.Main.loadingDocumentTitleText":"Cargando documento","DE.Controllers.Main.mailMergeLoadFileText":"Cargando fuente de datos...","DE.Controllers.Main.mailMergeLoadFileTitle":"Cargando fuente de datos","DE.Controllers.Main.notcriticalErrorTitle":"Aviso","DE.Controllers.Main.openErrorText":"Ha ocurrido un error al abrir el archivo.","DE.Controllers.Main.openTextText":"Abriendo documento...","DE.Controllers.Main.openTitleText":"Abriendo documento","DE.Controllers.Main.printTextText":"Imprimiendo documento...","DE.Controllers.Main.printTitleText":"Imprimiendo documento","DE.Controllers.Main.reloadButtonText":"Recargar página","DE.Controllers.Main.requestEditFailedMessageText":"Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.","DE.Controllers.Main.requestEditFailedTitleText":"Acceso denegado","DE.Controllers.Main.saveErrorText":"Ha ocurrido un error al guardar el archivo. ","DE.Controllers.Main.saveErrorTextDesktop":"Este archivo no se puede guardar o crear.
Las razones posibles son:
1. El archivo es de solo lectura.
2. El archivo está siendo editado por otros usuarios.
3. El disco está lleno o corrupto.","DE.Controllers.Main.saveTextText":"Guardando documento...","DE.Controllers.Main.saveTitleText":"Guardando documento","DE.Controllers.Main.savingText":"Enviando","DE.Controllers.Main.scriptLoadError":"La conexión a internet es demasiado lenta, no se han podido cargar algunos componentes. Por favor, recargue la página.","DE.Controllers.Main.sendMergeText":"Enviando fusión de documentos...","DE.Controllers.Main.sendMergeTitle":"Enviar fusión de documentos","DE.Controllers.Main.splitDividerErrorText":"El número de filas debe ser un divisor de %1.","DE.Controllers.Main.splitMaxColsErrorText":"El número de columnas debe ser menor a %1.","DE.Controllers.Main.splitMaxRowsErrorText":"El número de filas debe ser menor a %1.","DE.Controllers.Main.textAnonymous":"Anónimo","DE.Controllers.Main.textAnyone":"Cualquiera","DE.Controllers.Main.textApplyAll":"Aplicar a todas las ecuaciones","DE.Controllers.Main.textBuyNow":"Visitar sitio web","DE.Controllers.Main.textChangesSaved":"Se han guardado todos los cambios","DE.Controllers.Main.textClose":"Cerrar","DE.Controllers.Main.textCloseTip":"Pulse para cerrar el consejo","DE.Controllers.Main.textConnectionLost":"Intentando conectar. Por favor, compruebe los ajustes de conexión.","DE.Controllers.Main.textContactUs":"Contactar con el equipo de ventas","DE.Controllers.Main.textContinue":"Continuar","DE.Controllers.Main.textConvertEquation":"Esta ecuación fue creada con una versión antigua del editor de ecuaciones, el cual ya no es compatible. Para editarla, convierta la ecuación al formato ML de Office Math.
¿Convertir ahora?","DE.Controllers.Main.textCustomLoader":"Tenga en cuenta que, según los términos de la licencia, usted no tiene permiso para cambiar el cargador.
Por favor, póngase en contacto con nuestro departamento de ventas para obtener más información.","DE.Controllers.Main.textDisconnect":"Se ha perdido la conexión","DE.Controllers.Main.textGuest":"Invitado","DE.Controllers.Main.textHasMacros":"El archivo contiene macros automáticas.
¿Quiere ejecutar macros?","DE.Controllers.Main.textLearnMore":"Más información","DE.Controllers.Main.textLoadingDocument":"Cargando documento","DE.Controllers.Main.textLongName":"Escriba un nombre que tenga menos de 128 caracteres.","DE.Controllers.Main.textNoLicenseTitle":"Se ha alcanzado el límite de la licencia","DE.Controllers.Main.textPaidFeature":"Función de pago","DE.Controllers.Main.textReconnect":"Se ha restablecido la conexión","DE.Controllers.Main.textRemember":"Recordar mi elección para todos los archivos","DE.Controllers.Main.textRememberMacros":"Recordar mi elección para todas las macros","DE.Controllers.Main.textRenameError":"El nombre de usuario no debe estar vacío.","DE.Controllers.Main.textRenameLabel":"Escriba un nombre que se utilizará para la colaboración","DE.Controllers.Main.textRequestMacros":"Una macro realiza una solicitud a la URL. ¿Quiere permitir la solicitud al %1?","DE.Controllers.Main.textShape":"Forma","DE.Controllers.Main.textSignature":"Firma","DE.Controllers.Main.textStrict":"Modo estricto","DE.Controllers.Main.textText":"Texto","DE.Controllers.Main.textTryQuickPrint":"Ha seleccionado «impresión rápida»: todo el documento se imprimirá en la última impresora seleccionada o predeterminada.
¿Desea continuar?","DE.Controllers.Main.textTryUndoRedo":"Las funciones «Deshacer/Rehacer» se desactivan para el modo «coedición rápido».
Haga Clic en el botón \"modo estricto\" para cambiar al modo de «coedición estricta» para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios solo después de guardarlos. Se puede cambiar entre los modos de coedición usando los ajustes avanzados de edición.","DE.Controllers.Main.textTryUndoRedoWarn":"Las funciones «Deshacer/Rehacer» se desactivan en el modo «coedición rápido».","DE.Controllers.Main.textUndo":"Deshacer","DE.Controllers.Main.textUpdateVersion":"El documento no se puede editar en este momento.
Tratando de actualizar el archivo, por favor espere...","DE.Controllers.Main.textUpdating":"Actualizando","DE.Controllers.Main.tipLicenseExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de conexiones simultáneas permitidas por la licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","DE.Controllers.Main.tipLicenseUsersExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de usuarios autorizados a editar documentos por licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","DE.Controllers.Main.titleLicenseExp":"Licencia ha expirado","DE.Controllers.Main.titleLicenseNotActive":"Licencia no activa","DE.Controllers.Main.titleReadOnly":"Modo de sólo lectura","DE.Controllers.Main.titleServerVersion":"El editor se ha actualizado","DE.Controllers.Main.titleUpdateVersion":"La versión ha cambiado","DE.Controllers.Main.txtAbove":"encima","DE.Controllers.Main.txtArt":"Su texto aquí","DE.Controllers.Main.txtBasicShapes":"Formas básicas","DE.Controllers.Main.txtBelow":"debajo","DE.Controllers.Main.txtBookmarkError":"¡Error! El marcador no se ha definido","DE.Controllers.Main.txtButtons":"Botones","DE.Controllers.Main.txtCallouts":"Llamadas","DE.Controllers.Main.txtCharts":"Gráficos","DE.Controllers.Main.txtChoose":"Elija un elemento","DE.Controllers.Main.txtClickToLoad":"Haga clic para cargar la imagen","DE.Controllers.Main.txtCurrentDocument":"Documento actual","DE.Controllers.Main.txtDiagramTitle":"Título del gráfico","DE.Controllers.Main.txtEditingMode":"Establecer el modo de edición...","DE.Controllers.Main.txtEndOfFormula":"Final de la fórmula inesperado","DE.Controllers.Main.txtEnterDate":"Introducir una fecha","DE.Controllers.Main.txtErrorLoadHistory":"Ha fallado la carga del historial","DE.Controllers.Main.txtEvenPage":"Página par","DE.Controllers.Main.txtFiguredArrows":"Flechas figuradas","DE.Controllers.Main.txtFirstPage":"Primera página","DE.Controllers.Main.txtFooter":"Pie de página","DE.Controllers.Main.txtFormulaNotInTable":"La fórmula no está en la tabla","DE.Controllers.Main.txtHeader":"Encabezado","DE.Controllers.Main.txtHyperlink":"Enlace","DE.Controllers.Main.txtIndTooLarge":"El índice es demasiado grande","DE.Controllers.Main.txtLines":"Líneas","DE.Controllers.Main.txtMainDocOnly":"¡Error! Solo el documento principal.","DE.Controllers.Main.txtMath":"Matemáticas","DE.Controllers.Main.txtMissArg":"Argumento ausente","DE.Controllers.Main.txtMissOperator":"Operador ausente","DE.Controllers.Main.txtNeedSynchronize":"Hay actualizaciones disponibles","DE.Controllers.Main.txtNone":"Ninguno","DE.Controllers.Main.txtNoTableOfContents":"No hay títulos en el documento. Aplique un estilo de título al texto para que aparezca en la tabla de contenido.","DE.Controllers.Main.txtNoTableOfFigures":"No se han encontrado elementos en la tabla de ilustraciones.","DE.Controllers.Main.txtNoText":"¡Error! No hay texto del estilo especificado en el documento.","DE.Controllers.Main.txtNotInTable":"No está en la tabla","DE.Controllers.Main.txtNotValidBookmark":"¡Error! No es una autoreferencia de marcador válida.","DE.Controllers.Main.txtOddPage":"Página impar","DE.Controllers.Main.txtOnPage":"en la página","DE.Controllers.Main.txtRectangles":"Rectángulos","DE.Controllers.Main.txtSameAsPrev":"Igual al anterior","DE.Controllers.Main.txtSaveCopyAsComplete":"La copia del archivo se ha guardado correctamente","DE.Controllers.Main.txtScheme_Aspect":"Aspecto","DE.Controllers.Main.txtScheme_Blue":"Azul","DE.Controllers.Main.txtScheme_Blue_Green":"Verde azulado","DE.Controllers.Main.txtScheme_Blue_II":"Azul II","DE.Controllers.Main.txtScheme_Blue_Warm":"Azul cálido","DE.Controllers.Main.txtScheme_Grayscale":"Escala de grises","DE.Controllers.Main.txtScheme_Green":"Verde","DE.Controllers.Main.txtScheme_Green_Yellow":"Verde amarillo","DE.Controllers.Main.txtScheme_Marquee":"Marquesina","DE.Controllers.Main.txtScheme_Median":"Medio","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"Naranja","DE.Controllers.Main.txtScheme_Orange_Red":"Rojo naranja","DE.Controllers.Main.txtScheme_Paper":"Papel","DE.Controllers.Main.txtScheme_Red":"Rojo","DE.Controllers.Main.txtScheme_Red_Orange":"Naranja rojo","DE.Controllers.Main.txtScheme_Red_Violet":"Violeta rojo","DE.Controllers.Main.txtScheme_Slipstream":"Flujo de aire","DE.Controllers.Main.txtScheme_Violet":"Violeta","DE.Controllers.Main.txtScheme_Violet_II":"Violeta II","DE.Controllers.Main.txtScheme_Yellow":"Amarillo","DE.Controllers.Main.txtScheme_Yellow_Orange":"Amarillo naranja","DE.Controllers.Main.txtSection":"-Sección","DE.Controllers.Main.txtSeries":"Serie","DE.Controllers.Main.txtShape_accentBorderCallout1":"Llamada con línea 1 (borde y barra de énfasis)","DE.Controllers.Main.txtShape_accentBorderCallout2":"Llamada con línea 2 (borde y barra de énfasis)","DE.Controllers.Main.txtShape_accentBorderCallout3":"Llamada con línea 3 (borde y barra de énfasis)","DE.Controllers.Main.txtShape_accentCallout1":"Llamada con línea 1 (barra de énfasis)","DE.Controllers.Main.txtShape_accentCallout2":"Llamada con línea 2 (barra de énfasis)","DE.Controllers.Main.txtShape_accentCallout3":"Llamada con línea 3 (barra de énfasis)","DE.Controllers.Main.txtShape_actionButtonBackPrevious":"Botón de atrás o anterior","DE.Controllers.Main.txtShape_actionButtonBeginning":"Botón de inicio","DE.Controllers.Main.txtShape_actionButtonBlank":"Botón en blanco","DE.Controllers.Main.txtShape_actionButtonDocument":"Botón de documento","DE.Controllers.Main.txtShape_actionButtonEnd":"Botón de final","DE.Controllers.Main.txtShape_actionButtonForwardNext":"Botón de adelante o siguiente","DE.Controllers.Main.txtShape_actionButtonHelp":"Botón de ayuda","DE.Controllers.Main.txtShape_actionButtonHome":"Botón de inicio","DE.Controllers.Main.txtShape_actionButtonInformation":"Botón de información","DE.Controllers.Main.txtShape_actionButtonMovie":"Botón de vídeo","DE.Controllers.Main.txtShape_actionButtonReturn":"Botón de regreso","DE.Controllers.Main.txtShape_actionButtonSound":"Botón de sonido","DE.Controllers.Main.txtShape_arc":"Arco","DE.Controllers.Main.txtShape_bentArrow":"Flecha doblada","DE.Controllers.Main.txtShape_bentConnector5":"Conector angular","DE.Controllers.Main.txtShape_bentConnector5WithArrow":"Conector angular de flecha","DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"Conector angular de flecha doble","DE.Controllers.Main.txtShape_bentUpArrow":"Flecha doblada hacia arriba","DE.Controllers.Main.txtShape_bevel":"Bisel","DE.Controllers.Main.txtShape_blockArc":"Arco de bloque","DE.Controllers.Main.txtShape_borderCallout1":"Llamada con línea 1","DE.Controllers.Main.txtShape_borderCallout2":"Llamada con línea 2","DE.Controllers.Main.txtShape_borderCallout3":"Llamada con línea 3","DE.Controllers.Main.txtShape_bracePair":"Llaves","DE.Controllers.Main.txtShape_callout1":"Llamada con línea 1 (sin borde)","DE.Controllers.Main.txtShape_callout2":"Llamada con línea 2 (sin borde)","DE.Controllers.Main.txtShape_callout3":"Llamada con línea 3 (sin borde)","DE.Controllers.Main.txtShape_can":"Сilindro","DE.Controllers.Main.txtShape_chevron":"Cheurón","DE.Controllers.Main.txtShape_chord":"Acorde","DE.Controllers.Main.txtShape_circularArrow":"Flecha circular","DE.Controllers.Main.txtShape_cloud":"Nube","DE.Controllers.Main.txtShape_cloudCallout":"Llamada de nube","DE.Controllers.Main.txtShape_corner":"Esquina","DE.Controllers.Main.txtShape_cube":"Cubo","DE.Controllers.Main.txtShape_curvedConnector3":"Conector curvado","DE.Controllers.Main.txtShape_curvedConnector3WithArrow":"Conector curvado de flecha","DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"Conector curvado de flecha doble","DE.Controllers.Main.txtShape_curvedDownArrow":"Flecha curvada hacia abajo","DE.Controllers.Main.txtShape_curvedLeftArrow":"Flecha curvada hacia la izquierda","DE.Controllers.Main.txtShape_curvedRightArrow":"Flecha curvada hacia la derecha","DE.Controllers.Main.txtShape_curvedUpArrow":"Flecha curvada hacia arriba","DE.Controllers.Main.txtShape_decagon":"Decágono","DE.Controllers.Main.txtShape_diagStripe":"Franja diagonal","DE.Controllers.Main.txtShape_diamond":"Rombo","DE.Controllers.Main.txtShape_dodecagon":"Dodecágono","DE.Controllers.Main.txtShape_donut":"Anillo","DE.Controllers.Main.txtShape_doubleWave":"Doble onda","DE.Controllers.Main.txtShape_downArrow":"Flecha abajo","DE.Controllers.Main.txtShape_downArrowCallout":"Llamada de flecha hacia abajo","DE.Controllers.Main.txtShape_ellipse":"Elipse","DE.Controllers.Main.txtShape_ellipseRibbon":"Cinta curvada hacia abajo","DE.Controllers.Main.txtShape_ellipseRibbon2":"Cinta curvada hacia arriba","DE.Controllers.Main.txtShape_flowChartAlternateProcess":"Diagrama de flujo: Proceso alternativo","DE.Controllers.Main.txtShape_flowChartCollate":"Intercalar","DE.Controllers.Main.txtShape_flowChartConnector":"Conector","DE.Controllers.Main.txtShape_flowChartDecision":"Decisión","DE.Controllers.Main.txtShape_flowChartDelay":"Retraso","DE.Controllers.Main.txtShape_flowChartDisplay":"Pantalla","DE.Controllers.Main.txtShape_flowChartDocument":"Documento","DE.Controllers.Main.txtShape_flowChartExtract":"Extracto","DE.Controllers.Main.txtShape_flowChartInputOutput":"Datos","DE.Controllers.Main.txtShape_flowChartInternalStorage":"Diagrama de flujo: Almacenamiento interno","DE.Controllers.Main.txtShape_flowChartMagneticDisk":"Diagrama de flujo: Disco magnético","DE.Controllers.Main.txtShape_flowChartMagneticDrum":"Diagrama de flujo: Almacenamiento de acceso directo","DE.Controllers.Main.txtShape_flowChartMagneticTape":"Diagrama de flujo: Almacenamiento de acceso secuencial","DE.Controllers.Main.txtShape_flowChartManualInput":"Diagrama de flujo: Entrada manual","DE.Controllers.Main.txtShape_flowChartManualOperation":"Diagrama de flujo: Operación manual","DE.Controllers.Main.txtShape_flowChartMerge":"Combinar","DE.Controllers.Main.txtShape_flowChartMultidocument":"Multidocumento","DE.Controllers.Main.txtShape_flowChartOffpageConnector":"Diagrama de flujo: Conector fuera de página","DE.Controllers.Main.txtShape_flowChartOnlineStorage":"Diagrama de flujo: Datos almacenados","DE.Controllers.Main.txtShape_flowChartOr":"Diagrama de flujo: O","DE.Controllers.Main.txtShape_flowChartPredefinedProcess":"Diagrama de flujo: Proceso predefinido","DE.Controllers.Main.txtShape_flowChartPreparation":"Preparación","DE.Controllers.Main.txtShape_flowChartProcess":"Proceso","DE.Controllers.Main.txtShape_flowChartPunchedCard":"Tarjeta","DE.Controllers.Main.txtShape_flowChartPunchedTape":"Diagrama de flujo: Cinta perforada","DE.Controllers.Main.txtShape_flowChartSort":"Ordenar","DE.Controllers.Main.txtShape_flowChartSummingJunction":"Diagrama de flujo: Conexión sumadora","DE.Controllers.Main.txtShape_flowChartTerminator":"Terminador","DE.Controllers.Main.txtShape_foldedCorner":"Esquina doblada","DE.Controllers.Main.txtShape_frame":"Marco","DE.Controllers.Main.txtShape_halfFrame":"Medio marco","DE.Controllers.Main.txtShape_heart":"Corazón","DE.Controllers.Main.txtShape_heptagon":"Heptágono","DE.Controllers.Main.txtShape_hexagon":"Hexágono","DE.Controllers.Main.txtShape_homePlate":"Pentágono","DE.Controllers.Main.txtShape_horizontalScroll":"Pergamino horizontal","DE.Controllers.Main.txtShape_irregularSeal1":"Explosión 1","DE.Controllers.Main.txtShape_irregularSeal2":"Explosión 2","DE.Controllers.Main.txtShape_leftArrow":"Flecha izquierda","DE.Controllers.Main.txtShape_leftArrowCallout":"Llamada de flecha a la izquierda","DE.Controllers.Main.txtShape_leftBrace":"Abrir llave","DE.Controllers.Main.txtShape_leftBracket":"Abrir corchete","DE.Controllers.Main.txtShape_leftRightArrow":"Flecha izquierda y derecha","DE.Controllers.Main.txtShape_leftRightArrowCallout":"Llamada de flecha izquierda y derecha","DE.Controllers.Main.txtShape_leftRightUpArrow":"Flecha izquierda, derecha y arriba","DE.Controllers.Main.txtShape_leftUpArrow":"Flecha izquierda y arriba","DE.Controllers.Main.txtShape_lightningBolt":"Rayo","DE.Controllers.Main.txtShape_line":"Línea","DE.Controllers.Main.txtShape_lineWithArrow":"Flecha","DE.Controllers.Main.txtShape_lineWithTwoArrows":"Flecha doble","DE.Controllers.Main.txtShape_mathDivide":"División","DE.Controllers.Main.txtShape_mathEqual":"Igual","DE.Controllers.Main.txtShape_mathMinus":"Menos","DE.Controllers.Main.txtShape_mathMultiply":"Multiplicar","DE.Controllers.Main.txtShape_mathNotEqual":"No igual","DE.Controllers.Main.txtShape_mathPlus":"Más","DE.Controllers.Main.txtShape_moon":"Luna","DE.Controllers.Main.txtShape_noSmoking":"Señal de prohibición","DE.Controllers.Main.txtShape_notchedRightArrow":"Flecha a la derecha con muesca","DE.Controllers.Main.txtShape_octagon":"Octágono","DE.Controllers.Main.txtShape_parallelogram":"Paralelogramo","DE.Controllers.Main.txtShape_pentagon":"Pentágono","DE.Controllers.Main.txtShape_pie":"Gráfico circular","DE.Controllers.Main.txtShape_plaque":"Signo","DE.Controllers.Main.txtShape_plus":"Más","DE.Controllers.Main.txtShape_polyline1":"A mano alzada","DE.Controllers.Main.txtShape_polyline2":"Forma libre","DE.Controllers.Main.txtShape_quadArrow":"Flecha cuádruple","DE.Controllers.Main.txtShape_quadArrowCallout":"Llamada de flecha cuádruple","DE.Controllers.Main.txtShape_rect":"Rectángulo","DE.Controllers.Main.txtShape_ribbon":"Cinta hacia abajo","DE.Controllers.Main.txtShape_ribbon2":"Cinta hacia arriba","DE.Controllers.Main.txtShape_rightArrow":"Flecha derecha","DE.Controllers.Main.txtShape_rightArrowCallout":"Llamada de flecha a la derecha","DE.Controllers.Main.txtShape_rightBrace":"Cerrar llave","DE.Controllers.Main.txtShape_rightBracket":"Cerrar corchete","DE.Controllers.Main.txtShape_round1Rect":"Rectángulo sencillo de esquina redondeada","DE.Controllers.Main.txtShape_round2DiagRect":"Rectángulo de esquina redondeada en diagonal","DE.Controllers.Main.txtShape_round2SameRect":"Rectángulo de esquina redondeada del mismo lado","DE.Controllers.Main.txtShape_roundRect":"Rectángulo con esquinas redondeadas","DE.Controllers.Main.txtShape_rtTriangle":"Triángulo rectángulo","DE.Controllers.Main.txtShape_smileyFace":"Cara sonriente","DE.Controllers.Main.txtShape_snip1Rect":"Rectángulo de esquina sencilla recortada","DE.Controllers.Main.txtShape_snip2DiagRect":"Rectángulo de esquina diagonal recortada","DE.Controllers.Main.txtShape_snip2SameRect":"Rectángulo de esquina recortada del mismo lado","DE.Controllers.Main.txtShape_snipRoundRect":"Rectángulo de esquina sencilla redondeada y recortada","DE.Controllers.Main.txtShape_spline":"Curva","DE.Controllers.Main.txtShape_star10":"Estrella de 10 puntas","DE.Controllers.Main.txtShape_star12":"Estrella de 12 puntas","DE.Controllers.Main.txtShape_star16":"Estrella de 16 puntas","DE.Controllers.Main.txtShape_star24":"Estrella de 24 puntas","DE.Controllers.Main.txtShape_star32":"Estrella de 32 puntas","DE.Controllers.Main.txtShape_star4":"Estrella de 4 puntas","DE.Controllers.Main.txtShape_star5":"Estrella de 5 puntas","DE.Controllers.Main.txtShape_star6":"Estrella de 6 puntas","DE.Controllers.Main.txtShape_star7":"Estrella de 7 puntas","DE.Controllers.Main.txtShape_star8":"Estrella de 8 puntas","DE.Controllers.Main.txtShape_stripedRightArrow":"Flecha a la derecha con bandas","DE.Controllers.Main.txtShape_sun":"Sol","DE.Controllers.Main.txtShape_teardrop":"Lágrima","DE.Controllers.Main.txtShape_textRect":"Cuadro de texto","DE.Controllers.Main.txtShape_trapezoid":"Trapecio","DE.Controllers.Main.txtShape_triangle":"Triángulo","DE.Controllers.Main.txtShape_upArrow":"Flecha hacia arriba","DE.Controllers.Main.txtShape_upArrowCallout":"Llamada de flecha hacia arriba","DE.Controllers.Main.txtShape_upDownArrow":"Flecha hacia arriba y abajo","DE.Controllers.Main.txtShape_uturnArrow":"Flecha en U","DE.Controllers.Main.txtShape_verticalScroll":"Pergamino vertical","DE.Controllers.Main.txtShape_wave":"Onda","DE.Controllers.Main.txtShape_wedgeEllipseCallout":"Globo ovalado","DE.Controllers.Main.txtShape_wedgeRectCallout":"Llamada rectangular","DE.Controllers.Main.txtShape_wedgeRoundRectCallout":"Llamada rectangular redondeada","DE.Controllers.Main.txtStarsRibbons":"Cintas y estrellas","DE.Controllers.Main.txtStyle_Book_Title":"Título del libro","DE.Controllers.Main.txtStyle_Caption":"Leyenda","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"Fuente de párrafo predeterminada","DE.Controllers.Main.txtStyle_Emphasis":"Énfasis","DE.Controllers.Main.txtStyle_endnote_reference":"Referencia de la nota al final","DE.Controllers.Main.txtStyle_endnote_text":"Texto de nota al final","DE.Controllers.Main.txtStyle_footnote_reference":"Referencia de la nota al pie","DE.Controllers.Main.txtStyle_footnote_text":"Texto de nota al pie","DE.Controllers.Main.txtStyle_Heading_1":"Título 1","DE.Controllers.Main.txtStyle_Heading_2":"Título 2","DE.Controllers.Main.txtStyle_Heading_3":"Título 3","DE.Controllers.Main.txtStyle_Heading_4":"Título 4","DE.Controllers.Main.txtStyle_Heading_5":"Título 5","DE.Controllers.Main.txtStyle_Heading_6":"Título 6","DE.Controllers.Main.txtStyle_Heading_7":"Título 7","DE.Controllers.Main.txtStyle_Heading_8":"Título 8","DE.Controllers.Main.txtStyle_Heading_9":"Título 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"Énfasis intenso","DE.Controllers.Main.txtStyle_Intense_Quote":"Cita destacada","DE.Controllers.Main.txtStyle_Intense_Reference":"Referencia intensa","DE.Controllers.Main.txtStyle_List_Paragraph":"Párrafo de la lista","DE.Controllers.Main.txtStyle_No_List":"No hay lista","DE.Controllers.Main.txtStyle_No_Spacing":"Sin espacio","DE.Controllers.Main.txtStyle_Normal":"Normal","DE.Controllers.Main.txtStyle_Quote":"Cita","DE.Controllers.Main.txtStyle_Strong":"Fuerte","DE.Controllers.Main.txtStyle_Subtitle":"Subtítulo","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"Énfasis sutil","DE.Controllers.Main.txtStyle_Subtle_Reference":"Referencia sutil","DE.Controllers.Main.txtStyle_Title":"Título","DE.Controllers.Main.txtSyntaxError":"Error de sintaxis","DE.Controllers.Main.txtTableInd":"El índice de la tabla no puede ser cero","DE.Controllers.Main.txtTableOfContents":"Tabla de contenidos","DE.Controllers.Main.txtTableOfFigures":"Tabla de ilustraciones","DE.Controllers.Main.txtTOCHeading":"Título de la tabla de contenidos","DE.Controllers.Main.txtTooLarge":"El número es demasiado grande para darle formato","DE.Controllers.Main.txtTypeEquation":"Escriba una ecuación aquí.","DE.Controllers.Main.txtUndefBookmark":"Marcador no definido","DE.Controllers.Main.txtXAxis":"Eje X","DE.Controllers.Main.txtYAxis":"Eje Y","DE.Controllers.Main.txtZeroDivide":"División por cero","DE.Controllers.Main.unknownErrorText":"Error desconocido.","DE.Controllers.Main.unsupportedBrowserErrorText":"Su navegador no es compatible.","DE.Controllers.Main.updateChartText":"Actualizando los datos del gráfico...","DE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconocido","DE.Controllers.Main.uploadDocFileCountMessage":"No hay documentos subidos","DE.Controllers.Main.uploadDocSizeMessage":"Se ha excedido el límite de tamaño máximo del documento.","DE.Controllers.Main.uploadImageExtMessage":"Formato de imagen desconocido.","DE.Controllers.Main.uploadImageFileCountMessage":"No se ha cargado ninguna imagen.","DE.Controllers.Main.uploadImageSizeMessage":"La imagen es demasiado grande. El tamaño máximo es de 25 MB.","DE.Controllers.Main.uploadImageTextText":"Subiendo imagen...","DE.Controllers.Main.uploadImageTitleText":"Subiendo imagen","DE.Controllers.Main.waitText":"Por favor, espere...","DE.Controllers.Main.warnBrowserIE9":"Esta aplicación tiene bajas capacidades en IE9. Utilice IE10 o superior","DE.Controllers.Main.warnBrowserZoom":"La configuración actual de 'zoom' de su navegador no es compatible por completo. Por favor, restablezca el 'zoom' predeterminado pulsando Ctrl+0.","DE.Controllers.Main.warnLicenseAnonymous":"Acceso denegado a usuarios anónimos.
Este documento se abrirá solo para su visualización.","DE.Controllers.Main.warnLicenseBefore":"Licencia no activa.
Por favor, póngase en contacto con su administrador.","DE.Controllers.Main.warnLicenseExp":"Su licencia ha expirado.
Por favor, actualice su licencia y después recargue la página.","DE.Controllers.Main.warnLicenseLimitedNoAccess":"Licencia expirada.
No tiene acceso a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador.","DE.Controllers.Main.warnLicenseLimitedRenewed":"Se requiere que renueve su licencia.
Tiene un acceso limitado a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador para obtener un acceso completo","DE.Controllers.Main.warnNoLicense":"Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá en modo de solo lectura.
Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.","DE.Controllers.Main.warnNoLicenseUsers":"Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.","DE.Controllers.Main.warnProcessRightsChange":"No tiene permiso para editar este documento","DE.Controllers.Main.warnStartFilling":"El rellenado de formularios está en curso.
La edición de archivos no está disponible actualmente.","DE.Controllers.Navigation.txtBeginning":"Principio del documento","DE.Controllers.Navigation.txtGotoBeginning":"Ir al principio del documento","DE.Controllers.Print.textMarginsLast":"Último personalizado","DE.Controllers.Print.txtCustom":"Personalizado","DE.Controllers.Print.txtPrintRangeInvalid":"Intervalo de impresión no válido","DE.Controllers.Search.notcriticalErrorTitle":"Advertencia","DE.Controllers.Search.textNoTextFound":"No se pueden encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","DE.Controllers.Search.textReplaceSkipped":"Se ha realizado el reemplazo. Se han omitido {0} coincidencias.","DE.Controllers.Search.textReplaceSuccess":"Se ha realizado la búsqueda. Se han sustituido {0} coincidencias.","DE.Controllers.Search.warnReplaceString":"{0} no es un carácter especial válido para la casilla «Reemplazar con».","DE.Controllers.Statusbar.textDisconnect":"Se ha perdido la conexión
Intentando conectar. Por favor, compruebe la configuración de la conexión.","DE.Controllers.Statusbar.textHasChanges":"Se han registrado nuevos cambios","DE.Controllers.Statusbar.textSetTrackChanges":"Usted está en el modo de seguimiento de cambios","DE.Controllers.Statusbar.textTrackChanges":"El documento se abre con el modo de seguimiento de cambios activado","DE.Controllers.Statusbar.tipReview":"Seguimiento de cambios","DE.Controllers.Statusbar.zoomText":"Ampliación {0}%","DE.Controllers.Toolbar.confirmAddFontName":"La fuente que va a guardar no está disponible en este dispositivo.
El estilo del texto se mostrará usando una de las fuentes encontradas en el dispositivo, la fuente guardada se usará cuando esté disponible.
¿Desea continuar?","DE.Controllers.Toolbar.dataUrl":"Pegar una URL de datos","DE.Controllers.Toolbar.errorAccessDeny":"Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del Servidor de documentos.","DE.Controllers.Toolbar.fileUrl":"Pegar la URL de un archivo","DE.Controllers.Toolbar.helpChartElements":"Cambie fácilmente la visibilidad de los elementos del gráfico con unos pocos clics.","DE.Controllers.Toolbar.helpChartElementsHeader":"Visualización de elementos del gráfico","DE.Controllers.Toolbar.helpCommentFilter":"Gestione su vista alternando entre comentarios abiertos y resueltos en el panel izquierdo.","DE.Controllers.Toolbar.helpCommentFilterHeader":"Filtros de comentarios","DE.Controllers.Toolbar.notcriticalErrorTitle":"Aviso","DE.Controllers.Toolbar.textAccent":"Acentos","DE.Controllers.Toolbar.textBracket":"Paréntesis","DE.Controllers.Toolbar.textConvertFormDownload":"Descargue el archivo en formato PDF para poder rellenarlo.","DE.Controllers.Toolbar.textConvertFormSave":"Guarde el archivo como un formulario PDF rellenable para poder rellenarlo.","DE.Controllers.Toolbar.textDownloadPdf":"Descargar PDF","DE.Controllers.Toolbar.textEmptyMMergeUrl":"Debe especificar la URL.","DE.Controllers.Toolbar.textFontSizeErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico entre 1 y 300","DE.Controllers.Toolbar.textFraction":"Fracciones","DE.Controllers.Toolbar.textFunction":"Funciones","DE.Controllers.Toolbar.textGroup":"Grupo","DE.Controllers.Toolbar.textInsert":"Insertar","DE.Controllers.Toolbar.textIntegral":"Integrales","DE.Controllers.Toolbar.textLargeOperator":"Operadores grandes","DE.Controllers.Toolbar.textLimitAndLog":"Límites y logaritmos","DE.Controllers.Toolbar.textMatrix":"Matrices","DE.Controllers.Toolbar.textOperator":"Operadores","DE.Controllers.Toolbar.textRadical":"Radicales","DE.Controllers.Toolbar.textRecentlyUsed":"Usados recientemente","DE.Controllers.Toolbar.textSavePdf":"Guardar como PDF","DE.Controllers.Toolbar.textScript":"Letras","DE.Controllers.Toolbar.textSymbols":"Símbolos","DE.Controllers.Toolbar.textTabForms":"Formularios","DE.Controllers.Toolbar.textWarning":"Aviso","DE.Controllers.Toolbar.txtAccent_Accent":"Acento agudo","DE.Controllers.Toolbar.txtAccent_ArrowD":"Flecha derecha-izquierda superior","DE.Controllers.Toolbar.txtAccent_ArrowL":"Flecha superior hacia izquierda","DE.Controllers.Toolbar.txtAccent_ArrowR":"Flecha superior hacia derecha","DE.Controllers.Toolbar.txtAccent_Bar":"Barra","DE.Controllers.Toolbar.txtAccent_BarBot":"Barra subyacente","DE.Controllers.Toolbar.txtAccent_BarTop":"Barra superpuesta","DE.Controllers.Toolbar.txtAccent_BorderBox":"Fórmula encuadrada (con marcador de posición)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"Fórmula encuadrada (ejemplo)","DE.Controllers.Toolbar.txtAccent_Check":"Comprobar","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"Llave subyacente","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"Llave superpuesta","DE.Controllers.Toolbar.txtAccent_Custom_1":"Vector A","DE.Controllers.Toolbar.txtAccent_Custom_2":"ABC con barra superpuesta","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y con barra superpuesta","DE.Controllers.Toolbar.txtAccent_DDDot":"Tres puntos","DE.Controllers.Toolbar.txtAccent_DDot":"Dos puntos","DE.Controllers.Toolbar.txtAccent_Dot":"Punto","DE.Controllers.Toolbar.txtAccent_DoubleBar":"Barra doble superpuesta","DE.Controllers.Toolbar.txtAccent_Grave":"Acento grave","DE.Controllers.Toolbar.txtAccent_GroupBot":"Carácter de agrupación inferior","DE.Controllers.Toolbar.txtAccent_GroupTop":"Carácter de agrupación superior","DE.Controllers.Toolbar.txtAccent_HarpoonL":"Arpón superior hacia izquierdo","DE.Controllers.Toolbar.txtAccent_HarpoonR":"Arpón superior hacia derecha","DE.Controllers.Toolbar.txtAccent_Hat":"Circunflejo","DE.Controllers.Toolbar.txtAccent_Smile":"Acento breve","DE.Controllers.Toolbar.txtAccent_Tilde":"Virgulilla","DE.Controllers.Toolbar.txtBracket_Angle":"Corchetes angulares","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"Corchetes angulares con separador","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"Corchetes angulares con dos separadores","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"Corchete angular de cierre","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"Corchete angular de apertura","DE.Controllers.Toolbar.txtBracket_Curve":"Llaves","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"Llaves con separador","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"Llave de cierre","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"Llave de apertura","DE.Controllers.Toolbar.txtBracket_Custom_1":"Casos (dos condiciones)","DE.Controllers.Toolbar.txtBracket_Custom_2":"Casos (tres condiciones)","DE.Controllers.Toolbar.txtBracket_Custom_3":"Objeto de pila","DE.Controllers.Toolbar.txtBracket_Custom_4":"Objeto acotado entre paréntesis","DE.Controllers.Toolbar.txtBracket_Custom_5":"Ejemplo de casos","DE.Controllers.Toolbar.txtBracket_Custom_6":"Coeficiente de binomio","DE.Controllers.Toolbar.txtBracket_Custom_7":"Coeficiente binomial en corchetes angulares","DE.Controllers.Toolbar.txtBracket_Line":"Plecas","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"Pleca de cierre","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"Pleca de apertura","DE.Controllers.Toolbar.txtBracket_LineDouble":"Plecas dobles","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"Pleca doble de cierre","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"Pleca doble de apertura","DE.Controllers.Toolbar.txtBracket_LowLim":"Corchete inferior","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"Corchete inferior de cierre","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"Corchete inferior de apertura","DE.Controllers.Toolbar.txtBracket_Round":"Paréntesis","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"Paréntesis con separador","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"Paréntesis de cierre","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"Paréntesis de apertura","DE.Controllers.Toolbar.txtBracket_Square":"Corchetes","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"Marcador de posición entre dos corchetes de cierre","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"Corchetes invertidos","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"Corchete de cierre","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"Corchete de apertura","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"Marcador de posición entre dos corchetes de apertura","DE.Controllers.Toolbar.txtBracket_SquareDouble":"Corchetes dobles","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"Corchete doble de cierre","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"Corchete doble de apertura","DE.Controllers.Toolbar.txtBracket_UppLim":"Corchete de techo","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"Corchete de techo de cierre","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"Corchete de techo de apertura","DE.Controllers.Toolbar.txtDownload":"Descargar","DE.Controllers.Toolbar.txtFractionDiagonal":"Fracción sesgada","DE.Controllers.Toolbar.txtFractionDifferential_1":"dx sobre dy","DE.Controllers.Toolbar.txtFractionDifferential_2":"Delta mayúscula y sobre delta mayúscula x","DE.Controllers.Toolbar.txtFractionDifferential_3":"y parcial sobre x parcial","DE.Controllers.Toolbar.txtFractionDifferential_4":"Delta y sobre delta x","DE.Controllers.Toolbar.txtFractionHorizontal":"Fracción lineal","DE.Controllers.Toolbar.txtFractionPi_2":"Pi dividir a 2","DE.Controllers.Toolbar.txtFractionSmall":"Fracción pequeña","DE.Controllers.Toolbar.txtFractionVertical":"Fracción apilada","DE.Controllers.Toolbar.txtFunction_1_Cos":"Función de coseno inversa","DE.Controllers.Toolbar.txtFunction_1_Cosh":"Función de coseno inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Cot":"Función de cotangente inversa","DE.Controllers.Toolbar.txtFunction_1_Coth":"Función de cotangente inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Csc":"Función de cosecante inversa","DE.Controllers.Toolbar.txtFunction_1_Csch":"Función de cosecante inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Sec":"Función de secante inversa","DE.Controllers.Toolbar.txtFunction_1_Sech":"Función de secante inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Sin":"Función de seno inversa","DE.Controllers.Toolbar.txtFunction_1_Sinh":"Función de seno inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Tan":"Función de tangente inversa","DE.Controllers.Toolbar.txtFunction_1_Tanh":"Función de tangente inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_Cos":"Función de coseno","DE.Controllers.Toolbar.txtFunction_Cosh":"Función de coseno hiperbólica","DE.Controllers.Toolbar.txtFunction_Cot":"Función de cotangente","DE.Controllers.Toolbar.txtFunction_Coth":"Función de cotangente hiperbólica","DE.Controllers.Toolbar.txtFunction_Csc":"Función de cosecante","DE.Controllers.Toolbar.txtFunction_Csch":"Función de cosecante hiperbólica","DE.Controllers.Toolbar.txtFunction_Custom_1":"Seno zeta","DE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"Fórmula de tangente","DE.Controllers.Toolbar.txtFunction_Sec":"Función de secante","DE.Controllers.Toolbar.txtFunction_Sech":"Función de secante hiperbólica","DE.Controllers.Toolbar.txtFunction_Sin":"Función de seno","DE.Controllers.Toolbar.txtFunction_Sinh":"Función de seno hiperbólica","DE.Controllers.Toolbar.txtFunction_Tan":"Función de tangente","DE.Controllers.Toolbar.txtFunction_Tanh":"Función de tangente hiperbólica","DE.Controllers.Toolbar.txtIntegral":"Integral","DE.Controllers.Toolbar.txtIntegral_dtheta":"Diferencial zeta","DE.Controllers.Toolbar.txtIntegral_dx":"Diferencial x","DE.Controllers.Toolbar.txtIntegral_dy":"Diferencial y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral con límites acotados","DE.Controllers.Toolbar.txtIntegralDouble":"Integral doble","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Integral doble con límites acotados","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Integral doble con límites","DE.Controllers.Toolbar.txtIntegralOriented":"Integral de contorno","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"Integral de contorno con límites acotados","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"Integral de superficie","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Integral de superficie con límites acotados","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"Integral de superficie con límites","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"Integral de contorno con límites","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"Integral de volumen","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"Integral de volumen con límites acotados","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"Integral de volumen con límites","DE.Controllers.Toolbar.txtIntegralSubSup":"Integral con límites","DE.Controllers.Toolbar.txtIntegralTriple":"Integral triple","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Integral triple con límites acotados","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"Integral triple con límites","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Y lógico","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Y lógico con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Y lógico con límites","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Y lógico con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Y lógico con límites de subíndice/supraíndice","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"Coproducto","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Coproducto con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Coproducto con límites","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Coproducto con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Coproducto con límites de subíndice/supraíndice","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Sumatoria sobre k de n sobre k","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Sumatoria de i igual a cero a n","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Ejemplo de suma con dos índices","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Ejemplo del producto","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"Ejemplo de unión","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"O lógico","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"O lógico con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"O lógico con límites","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"O lógico con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"O lógico con límites de subíndice/supraíndice","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"Intersección","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"Intersección con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"Intersección con límites","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"Intersección con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"Intersección con límites de subíndice/superíndice","DE.Controllers.Toolbar.txtLargeOperator_Prod":"Producto","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Producto con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Producto con límites","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Producto con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Producto con límites de subíndice/superíndice","DE.Controllers.Toolbar.txtLargeOperator_Sum":"Suma","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Sumatoria con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Sumatoria con límites","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Sumatoria con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Sumatoria con límites de subíndice/supraíndice","DE.Controllers.Toolbar.txtLargeOperator_Union":"Unión","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"Unión con límite inferior","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"Unión con límites","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"Unión con límite inferior en subíndice","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"Unión con límites de subíndice/superíndice","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"Ejemplo de límite","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"Ejemplo de máximo","DE.Controllers.Toolbar.txtLimitLog_Lim":"Límite","DE.Controllers.Toolbar.txtLimitLog_Ln":"Logaritmo natural","DE.Controllers.Toolbar.txtLimitLog_Log":"Logaritmo","DE.Controllers.Toolbar.txtLimitLog_LogBase":"Logaritmo","DE.Controllers.Toolbar.txtLimitLog_Max":"Máximo","DE.Controllers.Toolbar.txtLimitLog_Min":"Mínimo","DE.Controllers.Toolbar.txtMarginsH":"Los márgenes superior e inferior son demasiado altos para la altura de la página","DE.Controllers.Toolbar.txtMarginsW":"Los márgenes izquierdo y derecho son demasiado anchos para la anchura de la página","DE.Controllers.Toolbar.txtMatrix_1_2":"Matriz vacía de 1x2","DE.Controllers.Toolbar.txtMatrix_1_3":"Matriz vacía de 1x3","DE.Controllers.Toolbar.txtMatrix_2_1":"Matriz vacía de 2x1","DE.Controllers.Toolbar.txtMatrix_2_2":"Matriz vacía de 2x2","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"Matriz de 2 por 2 vacía entre plecas dobles","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"Determinante de 2 por 2 vacío","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"Matriz de 2 por 2 vacía entre paréntesis","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"Matriz de 2 por 2 vacía entre paréntesis","DE.Controllers.Toolbar.txtMatrix_2_3":"Matriz vacía de 2x3","DE.Controllers.Toolbar.txtMatrix_3_1":"Matriz vacía de 3x1","DE.Controllers.Toolbar.txtMatrix_3_2":"Matriz vacía de 3x2","DE.Controllers.Toolbar.txtMatrix_3_3":"Matriz vacía de 3x3","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"Puntos en línea base","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"Puntos en línea media","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"Puntos diagonales","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"Puntos verticales","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"Matriz dispersa entre paréntesis","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"Matriz dispersa entre corchetes","DE.Controllers.Toolbar.txtMatrix_Identity_2":"Matriz de identidad de 2x2 con ceros","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"Matriz de identidad de 2x2 con celdas en blanco que no están en la diagonal","DE.Controllers.Toolbar.txtMatrix_Identity_3":"Matriz de identidad de 3x3 con ceros","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"Matriz de identidad de 3x3 con celdas en blanco que no están en la diagonal","DE.Controllers.Toolbar.txtNeedDownload":"El visor de PDF solo puede guardar los nuevos cambios en copias separadas del archivo. No admite la coedición y otros usuarios no verán sus cambios a menos que comparta una nueva versión del archivo.","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"Flecha derecha-izquierda inferior","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"Flecha derecha-izquierda superior","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"Flecha inferior hacia izquierda","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"Flecha superior hacia izquierda","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"Flecha inferior hacia derecha","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"Flecha superior hacia derecha","DE.Controllers.Toolbar.txtOperator_ColonEquals":"Dos puntos igual","DE.Controllers.Toolbar.txtOperator_Custom_1":"Produce","DE.Controllers.Toolbar.txtOperator_Custom_2":"Produce con delta","DE.Controllers.Toolbar.txtOperator_Definition":"Igual por definición","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta igual a","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"Flecha doble inferior derecha e izquierda","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"Flecha doble superior derecha e izquierda","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"Flecha inferior hacia izquierda","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"Flecha superior hacia izquierda","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"Flecha inferior hacia derecha","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"Flecha superior hacia derecha","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"Igual igual","DE.Controllers.Toolbar.txtOperator_MinusEquals":"Menos igual","DE.Controllers.Toolbar.txtOperator_PlusEquals":"Más igual","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"Unidad de medida","DE.Controllers.Toolbar.txtRadicalCustom_1":"Lado derecho de la fórmula cuadrática","DE.Controllers.Toolbar.txtRadicalCustom_2":"Raíz cuadrada de un cuadrado más b al cuadrado","DE.Controllers.Toolbar.txtRadicalRoot_2":"Raíz cuadrada con índice","DE.Controllers.Toolbar.txtRadicalRoot_3":"Raíz cúbica","DE.Controllers.Toolbar.txtRadicalRoot_n":"Radical con índice","DE.Controllers.Toolbar.txtRadicalSqrt":"Raíz cuadrada","DE.Controllers.Toolbar.txtSaveCopy":"Guardar copia","DE.Controllers.Toolbar.txtScriptCustom_1":"x subíndice y al cuadrado","DE.Controllers.Toolbar.txtScriptCustom_2":"e elevado a menos i omega t","DE.Controllers.Toolbar.txtScriptCustom_3":"x al cuadrado","DE.Controllers.Toolbar.txtScriptCustom_4":"Y superíndice izquierdo n subíndice izquierdo uno","DE.Controllers.Toolbar.txtScriptSub":"Subíndice","DE.Controllers.Toolbar.txtScriptSubSup":"Subíndice/Superíndice","DE.Controllers.Toolbar.txtScriptSubSupLeft":"Subíndice-superíndice izquierdo","DE.Controllers.Toolbar.txtScriptSup":"Sobreíndice","DE.Controllers.Toolbar.txtSymbol_about":"Aproximadamente","DE.Controllers.Toolbar.txtSymbol_additional":"Complemento","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Alfa","DE.Controllers.Toolbar.txtSymbol_approx":"Casi igual a","DE.Controllers.Toolbar.txtSymbol_ast":"Operador asterisco","DE.Controllers.Toolbar.txtSymbol_beta":"Beta","DE.Controllers.Toolbar.txtSymbol_beth":"Bet","DE.Controllers.Toolbar.txtSymbol_bullet":"Operador de viñeta","DE.Controllers.Toolbar.txtSymbol_cap":"Intersección","DE.Controllers.Toolbar.txtSymbol_cbrt":"Raíz cúbica","DE.Controllers.Toolbar.txtSymbol_cdots":"Elipsis horizontal de línea media","DE.Controllers.Toolbar.txtSymbol_celsius":"Grados Celsius","DE.Controllers.Toolbar.txtSymbol_chi":"Ji","DE.Controllers.Toolbar.txtSymbol_cong":"Aproximadamente igual a","DE.Controllers.Toolbar.txtSymbol_cup":"Unión","DE.Controllers.Toolbar.txtSymbol_ddots":"Elipsis en diagonal de derecha a izquierda","DE.Controllers.Toolbar.txtSymbol_degree":"Grados","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"Signo de división","DE.Controllers.Toolbar.txtSymbol_downarrow":"Flecha hacia abajo","DE.Controllers.Toolbar.txtSymbol_emptyset":"Conjunto vacío","DE.Controllers.Toolbar.txtSymbol_epsilon":"Épsilon","DE.Controllers.Toolbar.txtSymbol_equals":"Igual","DE.Controllers.Toolbar.txtSymbol_equiv":"Idéntico a","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"Existe","DE.Controllers.Toolbar.txtSymbol_factorial":"Factorial","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"Grados Fahrenheit","DE.Controllers.Toolbar.txtSymbol_forall":"Para todos","DE.Controllers.Toolbar.txtSymbol_gamma":"Gamma","DE.Controllers.Toolbar.txtSymbol_geq":"Mayor o igual a","DE.Controllers.Toolbar.txtSymbol_gg":"Mucho mayor que","DE.Controllers.Toolbar.txtSymbol_greater":"Mayor que","DE.Controllers.Toolbar.txtSymbol_in":"Elemento de","DE.Controllers.Toolbar.txtSymbol_inc":"Incremento","DE.Controllers.Toolbar.txtSymbol_infinity":"Infinito","DE.Controllers.Toolbar.txtSymbol_iota":"Iota","DE.Controllers.Toolbar.txtSymbol_kappa":"Kappa","DE.Controllers.Toolbar.txtSymbol_lambda":"Lambda","DE.Controllers.Toolbar.txtSymbol_leftarrow":"Flecha izquierda","DE.Controllers.Toolbar.txtSymbol_leftrightarrow":"Flecha izquierda-derecha","DE.Controllers.Toolbar.txtSymbol_leq":"Menor o igual a","DE.Controllers.Toolbar.txtSymbol_less":"Menor que","DE.Controllers.Toolbar.txtSymbol_ll":"Mucho menor que","DE.Controllers.Toolbar.txtSymbol_minus":"Menos","DE.Controllers.Toolbar.txtSymbol_mp":"Menos más","DE.Controllers.Toolbar.txtSymbol_mu":"Mi","DE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","DE.Controllers.Toolbar.txtSymbol_neq":"No igual a","DE.Controllers.Toolbar.txtSymbol_ni":"Contiene como miembro","DE.Controllers.Toolbar.txtSymbol_not":"Signo de negación","DE.Controllers.Toolbar.txtSymbol_notexists":"No existe","DE.Controllers.Toolbar.txtSymbol_nu":"Ni","DE.Controllers.Toolbar.txtSymbol_o":"Ómicron","DE.Controllers.Toolbar.txtSymbol_omega":"Omega","DE.Controllers.Toolbar.txtSymbol_partial":"Derivada parcial","DE.Controllers.Toolbar.txtSymbol_percent":"Porcentaje","DE.Controllers.Toolbar.txtSymbol_phi":"Fi","DE.Controllers.Toolbar.txtSymbol_pi":"Pi","DE.Controllers.Toolbar.txtSymbol_plus":"Más","DE.Controllers.Toolbar.txtSymbol_pm":"Más menos","DE.Controllers.Toolbar.txtSymbol_propto":"Proporcional a","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"Raíz cuarta","DE.Controllers.Toolbar.txtSymbol_qed":"Lo que era necesario demostrar","DE.Controllers.Toolbar.txtSymbol_rddots":"Elipsis en diagonal de izquierda a derecha","DE.Controllers.Toolbar.txtSymbol_rho":"Ro","DE.Controllers.Toolbar.txtSymbol_rightarrow":"Flecha derecha","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"Signo de radical","DE.Controllers.Toolbar.txtSymbol_tau":"Tau","DE.Controllers.Toolbar.txtSymbol_therefore":"Por lo tanto ","DE.Controllers.Toolbar.txtSymbol_theta":"Zeta","DE.Controllers.Toolbar.txtSymbol_times":"Signo de multiplicación","DE.Controllers.Toolbar.txtSymbol_uparrow":"Flecha hacia arriba","DE.Controllers.Toolbar.txtSymbol_upsilon":"Ípsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Variante de épsilon","DE.Controllers.Toolbar.txtSymbol_varphi":"Variante fi","DE.Controllers.Toolbar.txtSymbol_varpi":"Variante pi","DE.Controllers.Toolbar.txtSymbol_varrho":"Variante ro","DE.Controllers.Toolbar.txtSymbol_varsigma":"Variante sigma","DE.Controllers.Toolbar.txtSymbol_vartheta":"Variante zeta","DE.Controllers.Toolbar.txtSymbol_vdots":"Elipsis vertical","DE.Controllers.Toolbar.txtSymbol_xsi":"Csi","DE.Controllers.Toolbar.txtSymbol_zeta":"Dseda","DE.Controllers.Toolbar.txtUntitled":"Sin título","DE.Controllers.Viewport.textFitPage":"Ajustar a la página","DE.Controllers.Viewport.textFitWidth":"Ajustar al ancho","DE.Controllers.Viewport.txtDarkMode":"Modo oscuro","DE.Views.BookmarksDialog.textAdd":"Añadir","DE.Views.BookmarksDialog.textAddAndGetLink":"Añadir y obtener enlace","DE.Views.BookmarksDialog.textBookmarkName":"Nombre del marcador","DE.Views.BookmarksDialog.textClose":"Cerrar","DE.Views.BookmarksDialog.textCopy":"Copiar ","DE.Views.BookmarksDialog.textDelete":"Eliminar","DE.Views.BookmarksDialog.textGetLink":"Obtener enlace","DE.Views.BookmarksDialog.textGoto":"Ir a","DE.Views.BookmarksDialog.textHidden":"Marcadores ocultos","DE.Views.BookmarksDialog.textLocation":"Ubicación","DE.Views.BookmarksDialog.textName":"Nombre","DE.Views.BookmarksDialog.textSort":"Ordenar por","DE.Views.BookmarksDialog.textTitle":"Marcadores","DE.Views.BookmarksDialog.txtInvalidName":"El nombre del marcador solo puede contener letras, dígitos y barras bajas y debe comenzar con una letra","DE.Views.CaptionDialog.textAdd":"Añadir","DE.Views.CaptionDialog.textAfter":"Después","DE.Views.CaptionDialog.textBefore":"Antes","DE.Views.CaptionDialog.textCaption":"Leyenda","DE.Views.CaptionDialog.textChapter":"Iniciar capítulo con el estilo","DE.Views.CaptionDialog.textChapterInc":"Incluir el número de capítulo","DE.Views.CaptionDialog.textColon":"dos puntos","DE.Views.CaptionDialog.textDash":"guion medio","DE.Views.CaptionDialog.textDelete":"Eliminar","DE.Views.CaptionDialog.textEquation":"Ecuación","DE.Views.CaptionDialog.textExamples":"Ejemplos: Tabla 2-A, Imagen 1.IV","DE.Views.CaptionDialog.textExclude":"Excluir la etiqueta de la leyenda","DE.Views.CaptionDialog.textFigure":"Figura","DE.Views.CaptionDialog.textHyphen":"guion","DE.Views.CaptionDialog.textInsert":"Insertar","DE.Views.CaptionDialog.textLabel":"Etiqueta","DE.Views.CaptionDialog.textLabelError":"La etiqueta no debe estar vacía.","DE.Views.CaptionDialog.textLongDash":"raya","DE.Views.CaptionDialog.textNumbering":"Numeración","DE.Views.CaptionDialog.textPeriod":"punto","DE.Views.CaptionDialog.textSeparator":"Utilizar separador","DE.Views.CaptionDialog.textTable":"Tabla","DE.Views.CaptionDialog.textTitle":"Insertar leyenda","DE.Views.CellsAddDialog.textCol":"Columnas","DE.Views.CellsAddDialog.textDown":"Por debajo del cursor","DE.Views.CellsAddDialog.textLeft":"A la izquierda","DE.Views.CellsAddDialog.textRight":"A la derecha","DE.Views.CellsAddDialog.textRow":"Filas","DE.Views.CellsAddDialog.textTitle":"Insertar varios","DE.Views.CellsAddDialog.textUp":"Por encima del cursor","DE.Views.CellsRemoveDialog.textCol":"Eliminar toda la columna","DE.Views.CellsRemoveDialog.textLeft":"Desplazar celdas a la izquierda","DE.Views.CellsRemoveDialog.textRow":"Borrar toda la fila","DE.Views.CellsRemoveDialog.textTitle":"Borrar celdas","DE.Views.ChartSettings.text3dDepth":"Profundidad (% de la base)","DE.Views.ChartSettings.text3dHeight":"Altura (% de la base)","DE.Views.ChartSettings.text3dRotation":"Rotación 3D","DE.Views.ChartSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.ChartSettings.textAutoscale":"Escalado automático","DE.Views.ChartSettings.textChartType":"Cambiar tipo de gráfico","DE.Views.ChartSettings.textData":"Datos","DE.Views.ChartSettings.textDefault":"Rotación predeterminada","DE.Views.ChartSettings.textDown":"Abajo","DE.Views.ChartSettings.textEditData":"Editar datos","DE.Views.ChartSettings.textEditLinks":"Editar enlaces","DE.Views.ChartSettings.textHeight":"Altura","DE.Views.ChartSettings.textKeepRatio":"Proporciones constantes","DE.Views.ChartSettings.textLeft":"Izquierda","DE.Views.ChartSettings.textLinkedData":"Datos vinculados","DE.Views.ChartSettings.textNarrow":"Campo de visión estrecho","DE.Views.ChartSettings.textOriginalSize":"Tamaño real","DE.Views.ChartSettings.textPerspective":"Perspectiva","DE.Views.ChartSettings.textRight":"Derecha","DE.Views.ChartSettings.textRightAngle":"Ejes en ángulo recto","DE.Views.ChartSettings.textSelectData":"Seleccionar datos","DE.Views.ChartSettings.textSize":"Tamaño","DE.Views.ChartSettings.textStyle":"Estilo","DE.Views.ChartSettings.textUndock":"Desacoplar del panel","DE.Views.ChartSettings.textUp":"Arriba","DE.Views.ChartSettings.textUpdateData":"Actualizar datos","DE.Views.ChartSettings.textWiden":"Campo de visión ancho","DE.Views.ChartSettings.textWidth":"Ancho","DE.Views.ChartSettings.textWrap":"Ajuste de texto","DE.Views.ChartSettings.textX":"Rotación X","DE.Views.ChartSettings.textY":"Rotación Y","DE.Views.ChartSettings.txtBehind":"Detrás del texto","DE.Views.ChartSettings.txtInFront":"Delante del texto","DE.Views.ChartSettings.txtInline":"En línea con el texto","DE.Views.ChartSettings.txtSquare":"Cuadrado","DE.Views.ChartSettings.txtThrough":"A través","DE.Views.ChartSettings.txtTight":"Estrecho","DE.Views.ChartSettings.txtTitle":"Gráfico","DE.Views.ChartSettings.txtTopAndBottom":"Superior e inferior","DE.Views.ChartSettingsDlg.textLeftOverlay":"Superposición a la izquierda","DE.Views.CompareSettingsDialog.textChar":"Nivel del carácter","DE.Views.CompareSettingsDialog.textShow":"Mostrar cambios en","DE.Views.CompareSettingsDialog.textTitle":"Ajustes de comparación","DE.Views.CompareSettingsDialog.textWord":"Nivel de palabra","DE.Views.ControlSettingsDialog.strGeneral":"General","DE.Views.ControlSettingsDialog.textAdd":"Añadir","DE.Views.ControlSettingsDialog.textAppearance":"Aspecto","DE.Views.ControlSettingsDialog.textApplyAll":"Aplicar a todo","DE.Views.ControlSettingsDialog.textBox":"Cuadro delimitador","DE.Views.ControlSettingsDialog.textChange":"Editar","DE.Views.ControlSettingsDialog.textCheckbox":"Casilla de selección","DE.Views.ControlSettingsDialog.textChecked":"Símbolo de revisado","DE.Views.ControlSettingsDialog.textColor":"Color","DE.Views.ControlSettingsDialog.textCombobox":"Cuadro de lista desplegable","DE.Views.ControlSettingsDialog.textDate":"Formato de la fecha","DE.Views.ControlSettingsDialog.textDelete":"Eliminar","DE.Views.ControlSettingsDialog.textDisplayName":"Nombre para mostrar","DE.Views.ControlSettingsDialog.textDown":"Abajo","DE.Views.ControlSettingsDialog.textDropDown":"Lista desplegable","DE.Views.ControlSettingsDialog.textFormat":"Mostrar la fecha de esta manera","DE.Views.ControlSettingsDialog.textLang":"Idioma","DE.Views.ControlSettingsDialog.textLock":"Bloqueando","DE.Views.ControlSettingsDialog.textName":"Título","DE.Views.ControlSettingsDialog.textNone":"Ninguno","DE.Views.ControlSettingsDialog.textPlaceholder":"Marcador de posición","DE.Views.ControlSettingsDialog.textShowAs":"Mostrar como","DE.Views.ControlSettingsDialog.textSystemColor":"Sistema","DE.Views.ControlSettingsDialog.textTag":"Etiqueta","DE.Views.ControlSettingsDialog.textTitle":"Ajustes del control de contenido","DE.Views.ControlSettingsDialog.textUnchecked":"Símbolo de desactivado","DE.Views.ControlSettingsDialog.textUp":"Arriba","DE.Views.ControlSettingsDialog.textValue":"Valor","DE.Views.ControlSettingsDialog.tipChange":"Cambiar símbolo","DE.Views.ControlSettingsDialog.txtLockDelete":"El control de contenido no puede eliminarse","DE.Views.ControlSettingsDialog.txtLockEdit":"Los contenidos no se pueden editar","DE.Views.ControlSettingsDialog.txtRemContent":"Eliminar el control de contenido cuando se editan los contenidos","DE.Views.CrossReferenceDialog.textAboveBelow":"Arriba/abajo","DE.Views.CrossReferenceDialog.textBookmark":"Marcador","DE.Views.CrossReferenceDialog.textBookmarkText":"Marcar texto","DE.Views.CrossReferenceDialog.textCaption":"Título completo","DE.Views.CrossReferenceDialog.textEmpty":"La referencia de la solicitud está vacía.","DE.Views.CrossReferenceDialog.textEndnote":"Nota al final","DE.Views.CrossReferenceDialog.textEndNoteNum":"Número de nota al final","DE.Views.CrossReferenceDialog.textEndNoteNumForm":"Número de nota al final (formateado)","DE.Views.CrossReferenceDialog.textEquation":"Ecuación","DE.Views.CrossReferenceDialog.textFigure":"Figura","DE.Views.CrossReferenceDialog.textFootnote":"Nota al pie","DE.Views.CrossReferenceDialog.textHeading":"Encabezado","DE.Views.CrossReferenceDialog.textHeadingNum":"Número de encabezado","DE.Views.CrossReferenceDialog.textHeadingNumFull":"Número de encabezado (contexto completo)","DE.Views.CrossReferenceDialog.textHeadingNumNo":"Número de encabezado (sin contexto)","DE.Views.CrossReferenceDialog.textHeadingText":"Número de encabezado","DE.Views.CrossReferenceDialog.textIncludeAbove":"Incluir arriba/abajo","DE.Views.CrossReferenceDialog.textInsert":"Insertar","DE.Views.CrossReferenceDialog.textInsertAs":"Insertar como enlace","DE.Views.CrossReferenceDialog.textLabelNum":"Solo etiqueta y número","DE.Views.CrossReferenceDialog.textNoteNum":"Número de nota al pie","DE.Views.CrossReferenceDialog.textNoteNumForm":"Número de nota al pie (formateado)","DE.Views.CrossReferenceDialog.textOnlyCaption":"Solo texto de la leyenda","DE.Views.CrossReferenceDialog.textPageNum":"Número de página","DE.Views.CrossReferenceDialog.textParagraph":"Elemento numerado","DE.Views.CrossReferenceDialog.textParaNum":"Número de párrafo","DE.Views.CrossReferenceDialog.textParaNumFull":"Número de párrafo (contexto completo)","DE.Views.CrossReferenceDialog.textParaNumNo":"Número de párarfo (sin contexto)","DE.Views.CrossReferenceDialog.textSeparate":"Separar números con","DE.Views.CrossReferenceDialog.textTable":"Tabla","DE.Views.CrossReferenceDialog.textText":"Texto de párrafo","DE.Views.CrossReferenceDialog.textWhich":"Elija el objeto","DE.Views.CrossReferenceDialog.textWhichBookmark":"Elija el marcador","DE.Views.CrossReferenceDialog.textWhichEndnote":"Elija la nota al final","DE.Views.CrossReferenceDialog.textWhichHeading":"Elija el encabezado","DE.Views.CrossReferenceDialog.textWhichNote":"Elija la nota al pie","DE.Views.CrossReferenceDialog.textWhichPara":"Elija el elemento numerado","DE.Views.CrossReferenceDialog.txtReference":"Insertar referencia a","DE.Views.CrossReferenceDialog.txtTitle":"Referencia cruzada","DE.Views.CrossReferenceDialog.txtType":"Tipo de referencia","DE.Views.CustomColumnsDialog.textColumns":"Número de columnas","DE.Views.CustomColumnsDialog.textEqualWidth":"Columnas de igual ancho","DE.Views.CustomColumnsDialog.textSeparator":"Divisor de columnas","DE.Views.CustomColumnsDialog.textTitle":"Columnas","DE.Views.CustomColumnsDialog.textTitleSpacing":"Espaciado","DE.Views.CustomColumnsDialog.textWidth":"Ancho","DE.Views.DateTimeDialog.confirmDefault":"Establecer formato predeterminado para {0}: \"{1}\"","DE.Views.DateTimeDialog.textDefault":"Establecer como predeterminado","DE.Views.DateTimeDialog.textFormat":"Formatos","DE.Views.DateTimeDialog.textLang":"Idioma","DE.Views.DateTimeDialog.textUpdate":"Actualizar automáticamente","DE.Views.DateTimeDialog.txtTitle":"Fecha y hora","DE.Views.DocProtection.hintProtectDoc":"Proteger documento","DE.Views.DocProtection.txtDocProtectedComment":"El documento está protegido.
Solo puede insertar comentarios en este documento.","DE.Views.DocProtection.txtDocProtectedForms":"El documento está protegido.
Solo puede rellenar los formularios de este documento.","DE.Views.DocProtection.txtDocProtectedTrack":"El documento está protegido.
Puede editar este documento, pero todos los cambios serán revisados.","DE.Views.DocProtection.txtDocProtectedView":"El documento está protegido.
Solo puede visualizar este documento.","DE.Views.DocProtection.txtDocUnlockDescription":"Introduzca una contraseña para desbloquear el documento","DE.Views.DocProtection.txtProtectDoc":"Proteger documento","DE.Views.DocProtection.txtUnlockTitle":"Desbloquear documento","DE.Views.DocumentHolder.aboveText":"Encima","DE.Views.DocumentHolder.addCommentText":"Añadir comentario","DE.Views.DocumentHolder.advancedDropCapText":"Ajustes de letras capitulares","DE.Views.DocumentHolder.advancedEquationText":"Ajustes de ecuaciones","DE.Views.DocumentHolder.advancedFrameText":"Ajustes avanzados de marco","DE.Views.DocumentHolder.advancedParagraphText":"Ajustes avanzados de párrafo","DE.Views.DocumentHolder.advancedTableText":"Ajustes avanzados de tabla","DE.Views.DocumentHolder.advancedText":"Ajustes avanzados","DE.Views.DocumentHolder.AlignBottom":"Inferior","DE.Views.DocumentHolder.AlignCenter":"Centro","DE.Views.DocumentHolder.AlignJust":"Justificar","DE.Views.DocumentHolder.AlignLeft":"A la izquierda","DE.Views.DocumentHolder.alignmentText":"Alineación","DE.Views.DocumentHolder.AlignMiddle":"Medio","DE.Views.DocumentHolder.AlignRight":"A la derecha","DE.Views.DocumentHolder.AlignText":"Alineación de texto","DE.Views.DocumentHolder.AlignTop":"Arriba","DE.Views.DocumentHolder.allLinearText":"Lineal (todos)","DE.Views.DocumentHolder.allProfText":"Profesional (todos)","DE.Views.DocumentHolder.belowText":"Abajo","DE.Views.DocumentHolder.breakBeforeText":"Salto de página antes","DE.Views.DocumentHolder.btnChart":"Añada, elimine o modifique elementos de gráficos como el título, la leyenda, las líneas de cuadrícula y las etiquetas de datos.","DE.Views.DocumentHolder.bulletsText":"Viñetas y numeración","DE.Views.DocumentHolder.cellAlignText":"Alineación vertical de la celda","DE.Views.DocumentHolder.cellText":"Celda","DE.Views.DocumentHolder.centerText":"Centrada","DE.Views.DocumentHolder.chartText":"Ajustes avanzados de gráfico","DE.Views.DocumentHolder.columnText":"Columna","DE.Views.DocumentHolder.currLinearText":"Lineal (actual)","DE.Views.DocumentHolder.currProfText":"Profesional (actual)","DE.Views.DocumentHolder.deleteColumnText":"Eliminar columna","DE.Views.DocumentHolder.deleteRowText":"Eliminar fila","DE.Views.DocumentHolder.deleteTableText":"Eliminar tabla","DE.Views.DocumentHolder.deleteText":"Eliminar","DE.Views.DocumentHolder.DepthAxis":"Eje Z","DE.Views.DocumentHolder.direct270Text":"Girar texto hacia arriba","DE.Views.DocumentHolder.direct90Text":"Girar texto hacia abajo","DE.Views.DocumentHolder.directHText":"Horizontal","DE.Views.DocumentHolder.directionText":"Dirección del texto","DE.Views.DocumentHolder.editChartText":"Editar datos","DE.Views.DocumentHolder.editFooterText":"Editar pie de página","DE.Views.DocumentHolder.editHeaderText":"Editar encabezado","DE.Views.DocumentHolder.editHyperlinkText":"Editar hiperenlace","DE.Views.DocumentHolder.eqToDisplayText":"Cambiar a Pantalla","DE.Views.DocumentHolder.eqToInlineText":"Situar junto al texto","DE.Views.DocumentHolder.guestText":"Visitante","DE.Views.DocumentHolder.hideEqToolbar":"Ocultar la barra de herramientas de ecuaciones","DE.Views.DocumentHolder.hyperlinkText":"Enlace","DE.Views.DocumentHolder.ignoreAllSpellText":"Ignorar todo","DE.Views.DocumentHolder.ignoreSpellText":"Ignorar","DE.Views.DocumentHolder.imageText":"Ajustes avanzados de imagen","DE.Views.DocumentHolder.insertColumnLeftText":"Columna izquierda","DE.Views.DocumentHolder.insertColumnRightText":"Columna derecha","DE.Views.DocumentHolder.insertColumnText":"Insertar columna","DE.Views.DocumentHolder.insertRowAboveText":"Fila arriba","DE.Views.DocumentHolder.insertRowBelowText":"Fila debajo","DE.Views.DocumentHolder.insertRowText":"Insertar fila","DE.Views.DocumentHolder.insertText":"Insertar","DE.Views.DocumentHolder.keepLinesText":"Mantener líneas juntas","DE.Views.DocumentHolder.langText":"Seleccionar idioma","DE.Views.DocumentHolder.latexText":"LaTeX","DE.Views.DocumentHolder.leftText":"Izquierda","DE.Views.DocumentHolder.loadSpellText":"Cargando variantes","DE.Views.DocumentHolder.mergeCellsText":"Unir celdas","DE.Views.DocumentHolder.mniImageFromFile":"Imagen desde archivo","DE.Views.DocumentHolder.mniImageFromStorage":"Imagen desde almacenamiento","DE.Views.DocumentHolder.mniImageFromUrl":"Imagen desde URL","DE.Views.DocumentHolder.moreText":"Más variantes...","DE.Views.DocumentHolder.noSpellVariantsText":"Sin variantes ","DE.Views.DocumentHolder.notcriticalErrorTitle":"Advertencia","DE.Views.DocumentHolder.originalSizeText":"Tamaño real","DE.Views.DocumentHolder.paragraphText":"Párrafo","DE.Views.DocumentHolder.removeHyperlinkText":"Eliminar enlace","DE.Views.DocumentHolder.rightText":"Derecha","DE.Views.DocumentHolder.rowText":"Fila","DE.Views.DocumentHolder.saveStyleText":"Crear estilo nuevo","DE.Views.DocumentHolder.selectCellText":"Seleccionar celda","DE.Views.DocumentHolder.selectColumnText":"Seleccionar columna","DE.Views.DocumentHolder.selectRowText":"Seleccionar fila","DE.Views.DocumentHolder.selectTableText":"Seleccionar tabla","DE.Views.DocumentHolder.selectText":"Seleccionar","DE.Views.DocumentHolder.shapeText":"Ajustes avanzados de forma","DE.Views.DocumentHolder.showEqToolbar":"Mostrar la barra de herramientas de ecuaciones","DE.Views.DocumentHolder.spellcheckText":"Сorrección ortográfica","DE.Views.DocumentHolder.splitCellsText":"Dividir celda...","DE.Views.DocumentHolder.splitCellTitleText":"Dividir celda","DE.Views.DocumentHolder.strDelete":"Eliminar firma","DE.Views.DocumentHolder.strDetails":"Detalles de la firma","DE.Views.DocumentHolder.strSetup":"Preparación de la firma","DE.Views.DocumentHolder.strSign":"Firmar","DE.Views.DocumentHolder.styleText":"Formatear como...","DE.Views.DocumentHolder.tableText":"Tabla","DE.Views.DocumentHolder.textAccept":"Aceptar el cambio","DE.Views.DocumentHolder.textAlign":"Alinear","DE.Views.DocumentHolder.textArrange":"Organizar","DE.Views.DocumentHolder.textArrangeBack":"Enviar al fondo","DE.Views.DocumentHolder.textArrangeBackward":"Enviar atrás","DE.Views.DocumentHolder.textArrangeForward":"Traer adelante","DE.Views.DocumentHolder.textArrangeFront":"Traer al primer plano","DE.Views.DocumentHolder.textAxes":"Ejes","DE.Views.DocumentHolder.textAxisTitles":"Títulos de eje","DE.Views.DocumentHolder.textBottom":"Abajo ","DE.Views.DocumentHolder.textCells":"Celdas","DE.Views.DocumentHolder.textCenter":"Al centro","DE.Views.DocumentHolder.textChartTitle":"Título de gráfico","DE.Views.DocumentHolder.textClearField":"Borrar campo","DE.Views.DocumentHolder.textCol":"Eliminar toda la columna","DE.Views.DocumentHolder.textContentControls":"Control de contenido","DE.Views.DocumentHolder.textContinueNumbering":"Continuar numeración","DE.Views.DocumentHolder.textCopy":"Copiar","DE.Views.DocumentHolder.textCrop":"Recortar","DE.Views.DocumentHolder.textCropFill":"Relleno","DE.Views.DocumentHolder.textCropFit":"Adaptar","DE.Views.DocumentHolder.textCut":"Cortar","DE.Views.DocumentHolder.textDataLabels":"Etiquetas de datos","DE.Views.DocumentHolder.textDataTable":"Tabla de datos","DE.Views.DocumentHolder.textDistributeCols":"Distribuir columnas","DE.Views.DocumentHolder.textDistributeRows":"Distribuir filas","DE.Views.DocumentHolder.textEditControls":"Ajustes del control de contenido","DE.Views.DocumentHolder.textEditField":"Editar campo","DE.Views.DocumentHolder.textEditObject":"Editar objeto","DE.Views.DocumentHolder.textEditPoints":"Modificar puntos","DE.Views.DocumentHolder.textEditWrapBoundary":"Editar límite de ajuste","DE.Views.DocumentHolder.textErrorBars":"Barras de error","DE.Views.DocumentHolder.textExponential":"Exponencial","DE.Views.DocumentHolder.textFieldCodes":"Alternar códigos de campo","DE.Views.DocumentHolder.textFit":"Ajustar al ancho","DE.Views.DocumentHolder.textFlipH":"Voltear horizontalmente","DE.Views.DocumentHolder.textFlipV":"Voltear verticalmente","DE.Views.DocumentHolder.textFollow":"Seguir movimiento","DE.Views.DocumentHolder.textFromFile":"Desde archivo","DE.Views.DocumentHolder.textFromStorage":"Desde almacenamiento","DE.Views.DocumentHolder.textFromUrl":"Desde URL","DE.Views.DocumentHolder.textGridLines":"Líneas de cuadrícula","DE.Views.DocumentHolder.textHorAxis":"Eje horizontal","DE.Views.DocumentHolder.textHorAxisSec":"Eje horizontal secundario","DE.Views.DocumentHolder.textHorizontalMajor":"Horizontal principal","DE.Views.DocumentHolder.textHorizontalMinor":"Horizontal secundario","DE.Views.DocumentHolder.textIndents":"Ajustar sangrías de la lista","DE.Views.DocumentHolder.textInnerBottom":"Abajo en el interior","DE.Views.DocumentHolder.textInnerTop":"Arriba en el interior","DE.Views.DocumentHolder.textJoinList":"Unir con lista anterior","DE.Views.DocumentHolder.textLeft":"Desplazar las celdas hacia la izquierda","DE.Views.DocumentHolder.textLeftData":"A la izquierda","DE.Views.DocumentHolder.textLeftOverlay":"Superposición a la izquierda","DE.Views.DocumentHolder.textLeftPos":"A la izquierda","DE.Views.DocumentHolder.textLegendPos":"Leyenda","DE.Views.DocumentHolder.textLinear":"Lineal","DE.Views.DocumentHolder.textLinearForecast":"Pronóstico lineal","DE.Views.DocumentHolder.textLines":"Líneas","DE.Views.DocumentHolder.textMovingAverage":"Media móvil (2)","DE.Views.DocumentHolder.textNest":"Tabla anidada","DE.Views.DocumentHolder.textNextPage":"Página siguiente","DE.Views.DocumentHolder.textNone":"Ningún","DE.Views.DocumentHolder.textNoOverlay":"Sin superposición","DE.Views.DocumentHolder.textNumberingValue":"Valor de inicio","DE.Views.DocumentHolder.textOuterTop":"Arriba en el exterior","DE.Views.DocumentHolder.textOverlay":"Superposición","DE.Views.DocumentHolder.textPaste":"Pegar","DE.Views.DocumentHolder.textPrevPage":"Página anterior","DE.Views.DocumentHolder.textRedo":"Rehacer","DE.Views.DocumentHolder.textRefreshField":"Actualizar campos","DE.Views.DocumentHolder.textReject":"Rechazar el cambio","DE.Views.DocumentHolder.textRemCheckBox":"Eliminar casilla de selección","DE.Views.DocumentHolder.textRemComboBox":"Eliminar cuadro combinado","DE.Views.DocumentHolder.textRemDropdown":"Eliminar lista desplegable","DE.Views.DocumentHolder.textRemField":"Eliminar campo de texto","DE.Views.DocumentHolder.textRemove":"Eliminar","DE.Views.DocumentHolder.textRemoveControl":"Eliminar control de contenido","DE.Views.DocumentHolder.textStretchControl":"Resize to cell","DE.Views.DocumentHolder.textRemPicture":"Eliminar imagen","DE.Views.DocumentHolder.textRemRadioBox":"Eliminar botón de opción","DE.Views.DocumentHolder.textReplace":"Reemplazar imagen","DE.Views.DocumentHolder.textResetCrop":"Restablecer recorte","DE.Views.DocumentHolder.textRight":"A la derecha","DE.Views.DocumentHolder.textRightOverlay":"Superposición a la derecha","DE.Views.DocumentHolder.textRotate":"Girar","DE.Views.DocumentHolder.textRotate270":"Girar 90° a la izquierda","DE.Views.DocumentHolder.textRotate90":"Girar 90° a la derecha","DE.Views.DocumentHolder.textRow":"Eliminar toda la fila","DE.Views.DocumentHolder.textSaveAsPicture":"Guardar como imagen","DE.Views.DocumentHolder.textSeparateList":"Separar lista","DE.Views.DocumentHolder.textSettings":"Ajustes","DE.Views.DocumentHolder.textSeveral":"Varias filas/columnas","DE.Views.DocumentHolder.textShapeAlignBottom":"Alinear hacia abajo","DE.Views.DocumentHolder.textShapeAlignCenter":"Alinear al centro","DE.Views.DocumentHolder.textShapeAlignLeft":"Alinear a la izquierda","DE.Views.DocumentHolder.textShapeAlignMiddle":"Alinear al medio","DE.Views.DocumentHolder.textShapeAlignRight":"Alinear a la derecha","DE.Views.DocumentHolder.textShapeAlignTop":"Alinear hacia arriba","DE.Views.DocumentHolder.textShapesMerge":"Fusionar formas","DE.Views.DocumentHolder.textShowDataTable":"Mostrar tabla de datos","DE.Views.DocumentHolder.textShowLegendKeys":"Mostrar claves de leyenda","DE.Views.DocumentHolder.textShowUpDown":"Mostrar barras arriba/abajo","DE.Views.DocumentHolder.textStandardDeviation":"Desviación estándar","DE.Views.DocumentHolder.textStandardError":"Error estándar","DE.Views.DocumentHolder.textStartNewList":"Iniciar nueva lista","DE.Views.DocumentHolder.textStartNumberingFrom":"Establecer valor de inicio","DE.Views.DocumentHolder.textTitleCellsRemove":"Eliminar celdas","DE.Views.DocumentHolder.textTOC":"Tabla de contenidos","DE.Views.DocumentHolder.textTOCSettings":"Ajustes de la tabla de contenidos","DE.Views.DocumentHolder.textTop":"Arriba","DE.Views.DocumentHolder.textTrendline":"Línea de tendencia","DE.Views.DocumentHolder.textUndo":"Deshacer","DE.Views.DocumentHolder.textUpdateAll":"Actualizar toda la tabla","DE.Views.DocumentHolder.textUpdatePages":"Actualizar solo los números de página","DE.Views.DocumentHolder.textUpdateTOC":"Actualizar la tabla de contenidos","DE.Views.DocumentHolder.textUpDownBars":"Barras arriba/abajo","DE.Views.DocumentHolder.textVertAxis":"Eje vertical","DE.Views.DocumentHolder.textVertAxisSec":"Eje vertical secundario","DE.Views.DocumentHolder.textVerticalMajor":"Vertical principal","DE.Views.DocumentHolder.textVerticalMinor":"Vertical secundario","DE.Views.DocumentHolder.textWrap":"Ajuste de texto","DE.Views.DocumentHolder.tipIsLocked":"Otro usuario está editando este elemento ahora.","DE.Views.DocumentHolder.toDictionaryText":"Añadir al diccionario","DE.Views.DocumentHolder.txtAddBottom":"Añadir borde inferior","DE.Views.DocumentHolder.txtAddFractionBar":"Añadir barra de fracción","DE.Views.DocumentHolder.txtAddHor":"Añadir línea horizontal","DE.Views.DocumentHolder.txtAddLB":"Añadir línea inferior izquierda","DE.Views.DocumentHolder.txtAddLeft":"Añadir borde izquierdo","DE.Views.DocumentHolder.txtAddLT":"Añadir línea superior izquierda","DE.Views.DocumentHolder.txtAddRight":"Añadir borde derecho","DE.Views.DocumentHolder.txtAddTop":"Añadir borde superior","DE.Views.DocumentHolder.txtAddVer":"Añadir línea vertical","DE.Views.DocumentHolder.txtAlignToChar":"Alinear a carácter","DE.Views.DocumentHolder.txtBehind":"Detrás del texto","DE.Views.DocumentHolder.txtBorderProps":"Propiedades de borde","DE.Views.DocumentHolder.txtBottom":"Inferior","DE.Views.DocumentHolder.txtColumnAlign":"Alineación de columna","DE.Views.DocumentHolder.txtDecreaseArg":"Disminuir tamaño del argumento","DE.Views.DocumentHolder.txtDeleteArg":"Eliminar argumento","DE.Views.DocumentHolder.txtDeleteBreak":"Eliminar abertura manual","DE.Views.DocumentHolder.txtDeleteChars":"Eliminar carácteres encerrados","DE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Eliminar caracteres encerrados y separadores","DE.Views.DocumentHolder.txtDeleteEq":"Eliminar ecuación","DE.Views.DocumentHolder.txtDeleteGroupChar":"Eliminar carácter","DE.Views.DocumentHolder.txtDeleteRadical":"Eliminar radical","DE.Views.DocumentHolder.txtDestEmbed":"Utilizar el tema de destino e incrustar el libro de trabajo","DE.Views.DocumentHolder.txtDestLink":"Utilizar el tema de destino y vincular datos","DE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","DE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","DE.Views.DocumentHolder.txtEmpty":"(Vacío)","DE.Views.DocumentHolder.txtFractionLinear":"Cambiar a fracción lineal","DE.Views.DocumentHolder.txtFractionSkewed":"Cambiar a fracción sesgada","DE.Views.DocumentHolder.txtFractionStacked":"Cambiar a fracción apilada","DE.Views.DocumentHolder.txtGroup":"Grupo","DE.Views.DocumentHolder.txtGroupCharOver":"Carácter por encima del texto","DE.Views.DocumentHolder.txtGroupCharUnder":"Carácter por debajo del texto","DE.Views.DocumentHolder.txtHideBottom":"Ocultar borde inferior","DE.Views.DocumentHolder.txtHideBottomLimit":"Ocultar límite inferior","DE.Views.DocumentHolder.txtHideCloseBracket":"Ocultar corchete de cierre","DE.Views.DocumentHolder.txtHideDegree":"Ocultar grado","DE.Views.DocumentHolder.txtHideHor":"Ocultar línea horizontal","DE.Views.DocumentHolder.txtHideLB":"Ocultar línea inferior izquierda ","DE.Views.DocumentHolder.txtHideLeft":"Ocultar borde izquierdo","DE.Views.DocumentHolder.txtHideLT":"Ocultar línea superior izquierda","DE.Views.DocumentHolder.txtHideOpenBracket":"Ocultar corchete de apertura","DE.Views.DocumentHolder.txtHidePlaceholder":"Ocultar marcador de posición","DE.Views.DocumentHolder.txtHideRight":"Ocultar borde derecho","DE.Views.DocumentHolder.txtHideTop":"Ocultar borde superior","DE.Views.DocumentHolder.txtHideTopLimit":"Ocultar límite superior","DE.Views.DocumentHolder.txtHideVer":"Ocultar línea vertical","DE.Views.DocumentHolder.txtIncreaseArg":"Aumentar el tamaño del argumento","DE.Views.DocumentHolder.txtInFront":"Delante del texto","DE.Views.DocumentHolder.txtInline":"En línea con el texto","DE.Views.DocumentHolder.txtInsertArgAfter":"Insertar argumento después","DE.Views.DocumentHolder.txtInsertArgBefore":"Insertar argumento antes","DE.Views.DocumentHolder.txtInsertBreak":"Insertar grieta manual","DE.Views.DocumentHolder.txtInsertCaption":"Insertar leyenda","DE.Views.DocumentHolder.txtInsertEqAfter":"Insertar la ecuación después de","DE.Views.DocumentHolder.txtInsertEqBefore":"Insertar la ecuación antes de","DE.Views.DocumentHolder.txtInsImage":"Insertar imagen desde archivo","DE.Views.DocumentHolder.txtInsImageUrl":"Insertar imagen desde URL","DE.Views.DocumentHolder.txtKeepTextOnly":"Mantener solo texto","DE.Views.DocumentHolder.txtLimitChange":"Cambiar ubicación de límites","DE.Views.DocumentHolder.txtLimitOver":"Límite sobre el texto","DE.Views.DocumentHolder.txtLimitUnder":"Límite debajo del texto","DE.Views.DocumentHolder.txtMatchBrackets":"Situar cochetes a la altura del argumento","DE.Views.DocumentHolder.txtMatrixAlign":"Alineación de la matriz","DE.Views.DocumentHolder.txtOverbar":"Barra sobre texto","DE.Views.DocumentHolder.txtOverwriteCells":"Sobreescribir las celdas","DE.Views.DocumentHolder.txtPastePicture":"Imagen","DE.Views.DocumentHolder.txtPasteSourceFormat":"Mantener el formato original","DE.Views.DocumentHolder.txtPercentage":"Porcentaje","DE.Views.DocumentHolder.txtPressLink":"Pulse {0} y haga clic en el enlace","DE.Views.DocumentHolder.txtPrintSelection":"Imprimir selección","DE.Views.DocumentHolder.txtRemFractionBar":"Quitar la barra de fracción","DE.Views.DocumentHolder.txtRemLimit":"Eliminar límite","DE.Views.DocumentHolder.txtRemoveAccentChar":"Quitar acento del carácter","DE.Views.DocumentHolder.txtRemoveBar":"Eliminar barra","DE.Views.DocumentHolder.txtRemoveWarning":"¿Desea eliminar esta firma?
No se puede deshacer.","DE.Views.DocumentHolder.txtRemScripts":"Eliminar texto","DE.Views.DocumentHolder.txtRemSubscript":"Eliminar subíndice","DE.Views.DocumentHolder.txtRemSuperscript":"Eliminar subíndice","DE.Views.DocumentHolder.txtScriptsAfter":"Letras después de texto","DE.Views.DocumentHolder.txtScriptsBefore":"Letras antes de texto","DE.Views.DocumentHolder.txtShowBottomLimit":"Mostrar límite inferior","DE.Views.DocumentHolder.txtShowCloseBracket":"Mostrar corchete de cierre","DE.Views.DocumentHolder.txtShowDegree":"Mostrar grado","DE.Views.DocumentHolder.txtShowOpenBracket":"Mostrar corchete de apertura","DE.Views.DocumentHolder.txtShowPlaceholder":"Mostrar marcador de posición","DE.Views.DocumentHolder.txtShowTopLimit":"Mostrar límite superior","DE.Views.DocumentHolder.txtSourceEmbed":"Mantener el formato original e incrustar el libro de trabajo","DE.Views.DocumentHolder.txtSourceLink":"Mantener el formato original y vincular los datos","DE.Views.DocumentHolder.txtSquare":"Cuadrado","DE.Views.DocumentHolder.txtStretchBrackets":"Estirar corchetes","DE.Views.DocumentHolder.txtThrough":"A través","DE.Views.DocumentHolder.txtTight":"Estrecho","DE.Views.DocumentHolder.txtTop":"Superior","DE.Views.DocumentHolder.txtTopAndBottom":"Superior e inferior","DE.Views.DocumentHolder.txtUnderbar":"Barra debajo de texto","DE.Views.DocumentHolder.txtUngroup":"Desagrupar","DE.Views.DocumentHolder.txtWarnUrl":"Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. Para proteger su ordenador, haga clic solo en los hiperenlaces de fuentes fiables. Esta ubicación puede ser insegura:

{0}

¿Está seguro de que desea continuar?","DE.Views.DocumentHolder.unicodeText":"Unicode","DE.Views.DocumentHolder.updateStyleText":"Actualizar estilo «%1»","DE.Views.DocumentHolder.vertAlignText":"Alineación vertical","DE.Views.DropcapSettingsAdvanced.strBorders":"Bordes y relleno","DE.Views.DropcapSettingsAdvanced.strDropcap":"Letra capitular","DE.Views.DropcapSettingsAdvanced.strMargins":"Márgenes","DE.Views.DropcapSettingsAdvanced.textAlign":"Alineación","DE.Views.DropcapSettingsAdvanced.textAtLeast":"Al menos","DE.Views.DropcapSettingsAdvanced.textAuto":"Auto","DE.Views.DropcapSettingsAdvanced.textBackColor":"Color del fondo","DE.Views.DropcapSettingsAdvanced.textBorderColor":"Color del borde","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"Pulse en el diagrama o utilice los botones para seleccionar los bordes","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"Tamaño del borde","DE.Views.DropcapSettingsAdvanced.textBottom":"Inferior","DE.Views.DropcapSettingsAdvanced.textCenter":"Centrado","DE.Views.DropcapSettingsAdvanced.textColumn":"Columna","DE.Views.DropcapSettingsAdvanced.textDistance":"Distancia del texto","DE.Views.DropcapSettingsAdvanced.textExact":"Exacto","DE.Views.DropcapSettingsAdvanced.textFlow":"Marco de flujo","DE.Views.DropcapSettingsAdvanced.textFont":"Letra ","DE.Views.DropcapSettingsAdvanced.textFrame":"Marco","DE.Views.DropcapSettingsAdvanced.textHeight":"Altura","DE.Views.DropcapSettingsAdvanced.textHorizontal":"Horizontal ","DE.Views.DropcapSettingsAdvanced.textInline":"Marco flotante","DE.Views.DropcapSettingsAdvanced.textInMargin":"Al margen","DE.Views.DropcapSettingsAdvanced.textInText":"En el texto","DE.Views.DropcapSettingsAdvanced.textLeft":"Izquierdo","DE.Views.DropcapSettingsAdvanced.textMargin":"Margen","DE.Views.DropcapSettingsAdvanced.textMove":"Desplazarse con el texto","DE.Views.DropcapSettingsAdvanced.textNone":"Ninguno","DE.Views.DropcapSettingsAdvanced.textPage":"Página","DE.Views.DropcapSettingsAdvanced.textParagraph":"Párrafo","DE.Views.DropcapSettingsAdvanced.textParameters":"Parámetros","DE.Views.DropcapSettingsAdvanced.textPosition":"Posición","DE.Views.DropcapSettingsAdvanced.textRelative":"En relación con","DE.Views.DropcapSettingsAdvanced.textRight":"Derecho","DE.Views.DropcapSettingsAdvanced.textRowHeight":"Altura en filas","DE.Views.DropcapSettingsAdvanced.textTitle":"Letra capitular - Ajustes avanzados","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"Marco - Ajustes avanzados","DE.Views.DropcapSettingsAdvanced.textTop":"Superior","DE.Views.DropcapSettingsAdvanced.textVertical":"Vertical","DE.Views.DropcapSettingsAdvanced.textWidth":"Ancho","DE.Views.DropcapSettingsAdvanced.tipFontName":"Fuente","DE.Views.EditListItemDialog.textDisplayName":"Nombre para mostrar","DE.Views.EditListItemDialog.textNameError":"El nombre para mostrar no debe estar vacío.","DE.Views.EditListItemDialog.textValue":"Valor","DE.Views.EditListItemDialog.textValueError":"Ya existe un elemento con el mismo valor.","DE.Views.FileMenu.ariaFileMenu":"Menú Archivo","DE.Views.FileMenu.btnBackCaption":"Abrir ubicación del archivo","DE.Views.FileMenu.btnCloseEditor":"Cerrar archivo","DE.Views.FileMenu.btnCloseMenuCaption":"Atrás","DE.Views.FileMenu.btnCreateNewCaption":"Crear nueva","DE.Views.FileMenu.btnDownloadCaption":"Descargar como","DE.Views.FileMenu.btnExitCaption":"Cerrar","DE.Views.FileMenu.btnFileOpenCaption":"Abrir","DE.Views.FileMenu.btnHelpCaption":"Ayuda","DE.Views.FileMenu.btnHistoryCaption":"Historial de versiones","DE.Views.FileMenu.btnInfoCaption":"Info sobre el documento","DE.Views.FileMenu.btnPrintCaption":"Imprimir","DE.Views.FileMenu.btnProtectCaption":"Proteger","DE.Views.FileMenu.btnRecentFilesCaption":"Abrir reciente","DE.Views.FileMenu.btnRenameCaption":"Renombrar","DE.Views.FileMenu.btnReturnCaption":"Volver al documento","DE.Views.FileMenu.btnRightsCaption":"Permisos de acceso","DE.Views.FileMenu.btnSaveAsCaption":"Guardar como","DE.Views.FileMenu.btnSaveCaption":"Guardar","DE.Views.FileMenu.btnSaveCopyAsCaption":"Guardar copia como","DE.Views.FileMenu.btnSettingsCaption":"Configuración avanzada","DE.Views.FileMenu.btnSuggestCaption":"Sugerir una función","DE.Views.FileMenu.btnSwitchToMobileCaption":"Cambiar a móvil","DE.Views.FileMenu.btnToEditCaption":"Editar documento","DE.Views.FileMenu.textDownload":"Descargar","DE.Views.FileMenuPanels.CreateNew.txtBlank":"Documento en blanco","DE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Crear nuevo","DE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Añadir autor","DE.Views.FileMenuPanels.DocumentInfo.txtAddProperty":"Añadir propiedad","DE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Añadir texto","DE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicación","DE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Cambiar permisos de acceso","DE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentario","DE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comunes","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Creado","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Información del documento","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"Propiedad del documento","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Vista web rápida","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Cargando...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última modificación realizada por","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificación","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"No","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Propietario","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"Páginas","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Tamaño de la página","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Párrafos","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"Generador de PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF etiquetado","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"Versión de PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Ubicación","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"Propiedades","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"Ya existe una propiedad con este título","DE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personas que tienen permisos","DE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Caracteres con espacios","DE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Estadísticas","DE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Asunto","DE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Caracteres","DE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Subido","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"Palabras","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"Sí","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Permisos de acceso","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Cambiar permisos de acceso","DE.Views.FileMenuPanels.DocumentRights.txtRights":"Personas que tienen permisos","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"Aviso","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Con contraseña","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger documento","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"Con firma","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Se han añadido firmas válidas al documento.
El documento está protegido contra la edición.","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garantizar la integridad del documento añadiendo una
firma digital invisible","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar documento","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"La edición eliminará las firmas del documento.
¿Continuar?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Este documento se ha protegido con una contraseña","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Cifrar este documento con una contraseña","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Este documento necesita ser firmado","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Se han añadido firmas válidas al documento. El documento está protegido contra la edición.","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algunas de las firmas digitales del documento no son válidas o no se han podido verificar. El documento está protegido contra la edición.","DE.Views.FileMenuPanels.ProtectDoc.txtView":"Ver firmas","DE.Views.FileMenuPanels.Settings.okButtonText":"Aplicar","DE.Views.FileMenuPanels.Settings.strChinese":"Chino","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modo de coedición","DE.Views.FileMenuPanels.Settings.strDocContent":"Contenido del documento","DE.Views.FileMenuPanels.Settings.strFast":"rápido","DE.Views.FileMenuPanels.Settings.strFontRender":"Renderizado de las fuentes","DE.Views.FileMenuPanels.Settings.strFontSizeType":"Utilizar el primero de la lista de tamaños de fuente","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"Omitir palabras en MAYÚSCULAS","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"Omitir palabras con números","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Accesos directos de teclado","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"Ajustes de macros","DE.Views.FileMenuPanels.Settings.strNumeral":"Numeral","DE.Views.FileMenuPanels.Settings.strPasteButton":"Mostrar el botón «Opciones de pegado» cuando se pegue contenido","DE.Views.FileMenuPanels.Settings.strRTLSupport":"Interfaz RTL","DE.Views.FileMenuPanels.Settings.strShowChanges":"Cambios de colaboradores en tiempo real","DE.Views.FileMenuPanels.Settings.strShowComments":"Mostrar comentarios en el texto","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Mostrar los cambios de otros usuarios","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Mostrar comentarios resueltos","DE.Views.FileMenuPanels.Settings.strStrict":"Estricto","DE.Views.FileMenuPanels.Settings.strTabStyle":"Estilo de pestaña","DE.Views.FileMenuPanels.Settings.strTheme":"Tema de la interfaz","DE.Views.FileMenuPanels.Settings.strUnit":"Unidades de medida","DE.Views.FileMenuPanels.Settings.strWestern":"Occidental","DE.Views.FileMenuPanels.Settings.strZoom":"Valor de ampliación predeterminado","DE.Views.FileMenuPanels.Settings.text10Minutes":"Cada 10 minutos","DE.Views.FileMenuPanels.Settings.text30Minutes":"Cada 30 minutos","DE.Views.FileMenuPanels.Settings.text5Minutes":"Cada 5 minutos","DE.Views.FileMenuPanels.Settings.text60Minutes":"Cada hora","DE.Views.FileMenuPanels.Settings.textAlignGuides":"Guías de alineación","DE.Views.FileMenuPanels.Settings.textAutoRecover":"Guardar información de autorrecuperación","DE.Views.FileMenuPanels.Settings.textAutoSave":"Guardar automáticamente","DE.Views.FileMenuPanels.Settings.textDisabled":"Desactivado","DE.Views.FileMenuPanels.Settings.textFill":"Rellenar","DE.Views.FileMenuPanels.Settings.textForceSave":"Guardar versiones intermedias","DE.Views.FileMenuPanels.Settings.textLine":"Línea","DE.Views.FileMenuPanels.Settings.textMinute":"Cada minuto","DE.Views.FileMenuPanels.Settings.textOldVersions":"Hacer que los archivos sean compatibles con versiones anteriores de MS Word cuando se guarden como DOCX, DOTX","DE.Views.FileMenuPanels.Settings.textSmartSelection":"Utilizar la selección inteligente de párrafos","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Ajustes avanzados","DE.Views.FileMenuPanels.Settings.txtAll":"Ver todo","DE.Views.FileMenuPanels.Settings.txtAppearance":"Aspecto","DE.Views.FileMenuPanels.Settings.txtArabic":"Árabe","DE.Views.FileMenuPanels.Settings.txtAutoCorrect":"Opciones de autocorrección","DE.Views.FileMenuPanels.Settings.txtCacheMode":"Modo de caché predeterminado","DE.Views.FileMenuPanels.Settings.txtChangesBalloons":"Mostrar con un clic en los globos","DE.Views.FileMenuPanels.Settings.txtChangesTip":"Mostrar al pasar el puntero por la barra de herramientas","DE.Views.FileMenuPanels.Settings.txtCm":"Centímetros","DE.Views.FileMenuPanels.Settings.txtCollaboration":"Colaboración","DE.Views.FileMenuPanels.Settings.txtContext":"Contexto","DE.Views.FileMenuPanels.Settings.txtCustomize":"Personalizar","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Personalizar acceso rápido","DE.Views.FileMenuPanels.Settings.txtDarkMode":"Activar el modo oscuro para los documentos","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"Editar y guardar","DE.Views.FileMenuPanels.Settings.txtFastTip":"Coedición en tiempo real. Todos los cambios se guardan automáticamente","DE.Views.FileMenuPanels.Settings.txtFitPage":"Ajustar a la página","DE.Views.FileMenuPanels.Settings.txtFitWidth":"Ajustar al ancho","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Jeroglíficos","DE.Views.FileMenuPanels.Settings.txtHindi":"Hindi","DE.Views.FileMenuPanels.Settings.txtInch":"Pulgadas","DE.Views.FileMenuPanels.Settings.txtLast":"Ver últimos","DE.Views.FileMenuPanels.Settings.txtLastUsed":"Utilizados recientemente","DE.Views.FileMenuPanels.Settings.txtMac":"como en OS X","DE.Views.FileMenuPanels.Settings.txtNative":"Nativo","DE.Views.FileMenuPanels.Settings.txtNone":"No ver ninguno","DE.Views.FileMenuPanels.Settings.txtProofing":"Revisión","DE.Views.FileMenuPanels.Settings.txtPt":"Puntos","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"Mostrar el botón «Impresión rápida» en el encabezado del editor","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"El documento se imprimirá en la última impresora seleccionada o predeterminada","DE.Views.FileMenuPanels.Settings.txtRunMacros":"Habilitar todo","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"Habilitar todas las macros sin notificación ","DE.Views.FileMenuPanels.Settings.txtScreenReader":"Activar el soporte para lectores de pantalla","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"Mostrar control de cambios","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"Сorrección ortográfica","DE.Views.FileMenuPanels.Settings.txtStopMacros":"Deshabilitar todo","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"Deshabilitar todas las macros sin notificación","DE.Views.FileMenuPanels.Settings.txtStrictTip":"Utilizar el botón \"Guardar\" para sincronizar los cambios que usted y los demás realicen","DE.Views.FileMenuPanels.Settings.txtTabBack":"Utilizar el color de la barra de herramientas como fondo de las pestañas","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"Utilizar la tecla «Alt» para navegar por la interfaz de usuario mediante el teclado","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Utilizar la tecla «Opción» para navegar por la interfaz de usuario mediante el teclado","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"Mostrar notificación","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"Deshabilitar todas las macros con notificación","DE.Views.FileMenuPanels.Settings.txtWin":"como en Windows","DE.Views.FileMenuPanels.Settings.txtWorkspace":"Área de trabajo","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Descargar como","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Guardar copia como","DE.Views.FormSettings.textAddRole":"Añadir destinatario","DE.Views.FormSettings.textAlways":"Siempre","DE.Views.FormSettings.textAnyone":"Cualquiera","DE.Views.FormSettings.textAspect":"Bloquear relación de aspecto","DE.Views.FormSettings.textAtLeast":"Al menos","DE.Views.FormSettings.textAuto":"Automático","DE.Views.FormSettings.textAutofit":"Autoajustar","DE.Views.FormSettings.textBackgroundColor":"Color del fondo","DE.Views.FormSettings.textCheckbox":"Casilla","DE.Views.FormSettings.textCheckDefault":"La casilla de verificación está marcada de forma predeterminada","DE.Views.FormSettings.textColor":"Color del borde","DE.Views.FormSettings.textComb":"Peine de caracteres","DE.Views.FormSettings.textCombobox":"Cuadro combinado","DE.Views.FormSettings.textComplex":"Campo complejo","DE.Views.FormSettings.textConnected":"Campos conectados","DE.Views.FormSettings.textCreditCard":"Número de tarjeta de crédito (por ejemplo, 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"Campo Fecha y hora","DE.Views.FormSettings.textDateFormat":"Mostrar la fecha de esta manera","DE.Views.FormSettings.textDefValue":"Valor predeterminado","DE.Views.FormSettings.textDelete":"Eliminar","DE.Views.FormSettings.textDigits":"Dígitos","DE.Views.FormSettings.textDisconnect":"Desconectar","DE.Views.FormSettings.textDropDown":"Desplegable","DE.Views.FormSettings.textExact":"Exactamente","DE.Views.FormSettings.textField":"Campo de texto","DE.Views.FormSettings.textFillRoles":"¿Quién tiene que rellenar esto?","DE.Views.FormSettings.textFixed":"Campo de tamaño fijo","DE.Views.FormSettings.textFormat":"Formato","DE.Views.FormSettings.textFormatSymbols":"Símbolos permitidos","DE.Views.FormSettings.textFromFile":"Desde archivo","DE.Views.FormSettings.textFromStorage":"Desde almacenamiento","DE.Views.FormSettings.textFromUrl":"Desde URL","DE.Views.FormSettings.textGroupKey":"Clave de grupo","DE.Views.FormSettings.textImage":"Imagen","DE.Views.FormSettings.textKey":"Clave","DE.Views.FormSettings.textLabel":"Etiqueta","DE.Views.FormSettings.textLang":"Idioma","DE.Views.FormSettings.textLetters":"Letras","DE.Views.FormSettings.textLock":"Bloquear","DE.Views.FormSettings.textMask":"Máscara arbitraria","DE.Views.FormSettings.textMaxChars":"Límite de caracteres","DE.Views.FormSettings.textMulti":"Campo multilínea","DE.Views.FormSettings.textNever":"Nunca","DE.Views.FormSettings.textNoBorder":"Sin bordes","DE.Views.FormSettings.textNone":"Ninguno","DE.Views.FormSettings.textPhone1":"Número de teléfono (por ejemplo, (123) 456-7890)","DE.Views.FormSettings.textPhone2":"Número de teléfono (por ejemplo, +447911123456)","DE.Views.FormSettings.textPlaceholder":"Marcador de posición","DE.Views.FormSettings.textRadiobox":"Botón de opción","DE.Views.FormSettings.textRadioChoice":"Botón de radio","DE.Views.FormSettings.textRadioDefault":"El botón está marcado de forma predeterminada","DE.Views.FormSettings.textReg":"Expresión regular","DE.Views.FormSettings.textRequired":"Necesario","DE.Views.FormSettings.textScale":"Cuándo escalar","DE.Views.FormSettings.textSelectImage":"Seleccionar imagen","DE.Views.FormSettings.textSignature":"Firma","DE.Views.FormSettings.textTag":"Etiqueta","DE.Views.FormSettings.textTip":"Sugerencia","DE.Views.FormSettings.textTipAdd":"Añadir valor nuevo","DE.Views.FormSettings.textTipDelete":"Eliminar valor","DE.Views.FormSettings.textTipDown":"Mover hacia abajo","DE.Views.FormSettings.textTipUp":"Mover hacia arriba","DE.Views.FormSettings.textTooBig":"La imagen es demasiado grande","DE.Views.FormSettings.textTooSmall":"La imagen es demasiado pequeña","DE.Views.FormSettings.textUKPassport":"Número de pasaporte británico (por ejemplo, 925665416)","DE.Views.FormSettings.textUnlock":"Desbloquear","DE.Views.FormSettings.textUSSSN":"SSN de EE.UU. (por ejemplo, 123-45-6789)","DE.Views.FormSettings.textValue":"Opciones de valor","DE.Views.FormSettings.textWidth":"Ancho de celda","DE.Views.FormSettings.textZipCodeUS":"Código postal de EE.UU. (por ejemplo, 92663 o 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"Casilla","DE.Views.FormsTab.capBtnComboBox":"Cuadro combinado","DE.Views.FormsTab.capBtnComplex":"Campo complejo","DE.Views.FormsTab.capBtnDownloadForm":"Descargar como PDF","DE.Views.FormsTab.capBtnDropDown":"Lista desplegable","DE.Views.FormsTab.capBtnEmail":"Dirección de correo electrónico","DE.Views.FormsTab.capBtnFinal":"Marcar como final","DE.Views.FormsTab.capBtnImage":"Imagen","DE.Views.FormsTab.capBtnManager":"Gestionar roles de destinatarios","DE.Views.FormsTab.capBtnNext":"Campo siguiente","DE.Views.FormsTab.capBtnPhone":"Número de teléfono","DE.Views.FormsTab.capBtnPrev":"Campo anterior","DE.Views.FormsTab.capBtnRadioBox":"Botón de opción","DE.Views.FormsTab.capBtnSaveForm":"Guardar como PDF","DE.Views.FormsTab.capBtnSaveFormDesktop":"Guardar como...","DE.Views.FormsTab.capBtnSignature":"Firma","DE.Views.FormsTab.capBtnSubmit":"Rellenar y enviar","DE.Views.FormsTab.capBtnText":"Campo de texto","DE.Views.FormsTab.capBtnView":"Vista previa","DE.Views.FormsTab.capCreditCard":"Tarjeta de crédito","DE.Views.FormsTab.capDateTime":"Fecha y hora","DE.Views.FormsTab.capZipCode":"Código postal","DE.Views.FormsTab.helpTextFillStatus":"Este formulario está listo para su rellenado basado en roles. Haga clic en el botón de estado para comprobar la fase de rellenado.","DE.Views.FormsTab.textAddRole":"Añadir destinatario","DE.Views.FormsTab.textAnyone":"Cualquiera","DE.Views.FormsTab.textClear":"Eliminar campos","DE.Views.FormsTab.textClearFields":"Eliminar todos los campos","DE.Views.FormsTab.textCreateForm":"Agregue campos y cree un documento PDF rellenable","DE.Views.FormsTab.textFilled":"Rellenado","DE.Views.FormsTab.textFillFor":"Insertar campos para","DE.Views.FormsTab.textGotIt":"Entiendo","DE.Views.FormsTab.textHighlight":"Ajustes de resaltado","DE.Views.FormsTab.textNoHighlight":"No resaltar","DE.Views.FormsTab.textRequired":"Rellene todos los campos obligatorios para enviar el formulario","DE.Views.FormsTab.textSubmited":"El formulario se ha enviado correctamente","DE.Views.FormsTab.textSubmitOk":"Su formulario PDF se ha guardado en la sección Completado.","DE.Views.FormsTab.tipCheckBox":"Insertar casilla","DE.Views.FormsTab.tipComboBox":"Insertar cuadro combinado","DE.Views.FormsTab.tipComplexField":"Insertar campo complejo","DE.Views.FormsTab.tipCreateField":"Para crear un campo, seleccione el tipo de campo deseado en la barra de herramientas y haga clic sobre él. El campo aparecerá en el documento.","DE.Views.FormsTab.tipCreditCard":"Insertar el número de tarjeta de crédito","DE.Views.FormsTab.tipDateTime":"Insertar fecha y hora","DE.Views.FormsTab.tipDownloadForm":"Descargar el archivo como documento PDF rellenable","DE.Views.FormsTab.tipDropDown":"Insertar lista desplegable","DE.Views.FormsTab.tipEmailField":"Insertar dirección de correo electrónico","DE.Views.FormsTab.tipFieldSettings":"Puede configurar los campos seleccionados en la barra lateral derecha. Haga clic en este icono para abrir la configuración de los campos.","DE.Views.FormsTab.tipFieldsLink":"Más información sobre los parámetros de campo","DE.Views.FormsTab.tipFinalForm":"Marcar como final","DE.Views.FormsTab.tipFirstPage":"Ir a la primera página","DE.Views.FormsTab.tipFixedText":"Insertar campo de texto fijo","DE.Views.FormsTab.tipFormGroupKey":"Agrupe los botones de radio para agilizar el proceso de relleno. Las opciones con los mismos nombres se sincronizarán. Los usuarios solo pueden marcar un botón de radio del grupo.","DE.Views.FormsTab.tipFormKey":"Puede asignar una clave a un campo o a un grupo de campos. Cuando un usuario rellene los datos, se copiarán en todos los campos con la misma clave.","DE.Views.FormsTab.tipHelpRoles":"Utilice la función Gestionar destinatarios para agrupar los campos según su finalidad y asignar a los miembros del equipo responsables.","DE.Views.FormsTab.tipImageField":"Insertar imagen","DE.Views.FormsTab.tipInlineText":"Insertar campo de texto alineado","DE.Views.FormsTab.tipLastPage":"Ir a la última página","DE.Views.FormsTab.tipManager":"Gestionar roles de destinatarios","DE.Views.FormsTab.tipNextForm":"Ir al campo siguiente","DE.Views.FormsTab.tipNextPage":"Ir a la página siguiente","DE.Views.FormsTab.tipPhoneField":"Insertar número de teléfono","DE.Views.FormsTab.tipPrevForm":"Ir al campo anterior","DE.Views.FormsTab.tipPrevPage":"Ir a la página anterior","DE.Views.FormsTab.tipRadioBox":"Insertar botón de opción","DE.Views.FormsTab.tipRolesLink":"Más información sobre los destinatarios","DE.Views.FormsTab.tipSaveFile":"Haga clic en \"Guardar como PDF\" para guardar el formulario en el formato listo para rellenar.","DE.Views.FormsTab.tipSaveForm":"Guardar el archivo como un documento PDF rellenable","DE.Views.FormsTab.tipSignField":"Insertar firma","DE.Views.FormsTab.tipSubmit":"Enviar formulario","DE.Views.FormsTab.tipTextField":"Insertar campo de texto","DE.Views.FormsTab.tipViewForm":"Ver formulario","DE.Views.FormsTab.tipZipCode":"Insertar código postal","DE.Views.FormsTab.txtFixedDesc":"Insertar campo de texto fijo","DE.Views.FormsTab.txtFixedText":"Fijo","DE.Views.FormsTab.txtInlineDesc":"Insertar campo de texto alineado","DE.Views.FormsTab.txtInlineText":"Alineado","DE.Views.FormsTab.txtSignedForm":"Este documento se ha firmado y no se puede modificar.","DE.Views.FormsTab.txtUntitled":"Sin título","DE.Views.HeaderFooterSettings.textBottomCenter":"Inferior centro","DE.Views.HeaderFooterSettings.textBottomLeft":"Inferior izquierdo","DE.Views.HeaderFooterSettings.textBottomPage":"Al pie de la página","DE.Views.HeaderFooterSettings.textBottomRight":"Inferior derecho","DE.Views.HeaderFooterSettings.textDiffFirst":"Primera página diferente","DE.Views.HeaderFooterSettings.textDiffOdd":"Páginas impares y pares diferentes","DE.Views.HeaderFooterSettings.textFrom":"Empezar desde","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"Pie de página desde abajo","DE.Views.HeaderFooterSettings.textHeaderFromTop":"Encabezado desde arriba","DE.Views.HeaderFooterSettings.textInsertCurrent":"Insertar en la posición actual","DE.Views.HeaderFooterSettings.textNumFormat":"Formato de número","DE.Views.HeaderFooterSettings.textOptions":"Opciones","DE.Views.HeaderFooterSettings.textPageNum":"Insertar número de página","DE.Views.HeaderFooterSettings.textPageNumbering":"Numeración de páginas","DE.Views.HeaderFooterSettings.textPosition":"Posición","DE.Views.HeaderFooterSettings.textPrev":"Continuar desde el anterior","DE.Views.HeaderFooterSettings.textSameAs":"Enlazar con el anterior","DE.Views.HeaderFooterSettings.textTopCenter":"Superior centro","DE.Views.HeaderFooterSettings.textTopLeft":"Superior izquierdo","DE.Views.HeaderFooterSettings.textTopPage":"Inicio de la página","DE.Views.HeaderFooterSettings.textTopRight":"Superior derecho","DE.Views.HeaderFooterSettings.txtMoreTypes":"Más tipos","DE.Views.HeaderFooterTab.capBtnDateTime":"Fecha y hora","DE.Views.HeaderFooterTab.capBtnInsField":"Campo","DE.Views.HeaderFooterTab.capBtnInsImage":"Imagen","DE.Views.HeaderFooterTab.capCurrentPos":"A la posición actual","DE.Views.HeaderFooterTab.capFooterBottom":"Pie de página desde abajo","DE.Views.HeaderFooterTab.capFormatNums":"Numeración de páginas","DE.Views.HeaderFooterTab.capHeaderTop":"Encabezado desde arriba","DE.Views.HeaderFooterTab.capNumOfPages":"Número de páginas","DE.Views.HeaderFooterTab.mniImageFromFile":"Imagen desde archivo","DE.Views.HeaderFooterTab.mniImageFromStorage":"Imagen desde almacenamiento","DE.Views.HeaderFooterTab.mniImageFromUrl":"Imagen desde URL","DE.Views.HeaderFooterTab.tipCloseTab":"Cerrar pestaña","DE.Views.HeaderFooterTab.tipDateTime":"Insertar la fecha y hora actuales","DE.Views.HeaderFooterTab.tipHeaderFooter":"Editar encabezado o pie de página","DE.Views.HeaderFooterTab.tipInsertImage":"Insertar imagen","DE.Views.HeaderFooterTab.tipInsField":"Insertar campo","DE.Views.HeaderFooterTab.tipNumOfPages":"Número de páginas","DE.Views.HeaderFooterTab.tipPageNumbering":"Numeración de páginas","DE.Views.HeaderFooterTab.txtCloseTab":"Cerrar","DE.Views.HeaderFooterTab.txtDiffFirst":"Primera página diferente","DE.Views.HeaderFooterTab.txtDiffOddEven":"Páginas impares y pares diferentes","DE.Views.HeaderFooterTab.txtEditFooter":"Editar pie de página","DE.Views.HeaderFooterTab.txtEditHeader":"Editar encabezado","DE.Views.HeaderFooterTab.txtHeaderFooter":"Encabezado/Pie de página","DE.Views.HeaderFooterTab.txtPageNumbering":"Número de página","DE.Views.HeaderFooterTab.txtRemoveFooter":"Quitar pie de página","DE.Views.HeaderFooterTab.txtRemoveHeader":"Quitar encabezado","DE.Views.HeaderFooterTab.txtSameAs":"Vincular al anterior","DE.Views.HyperlinkSettingsDialog.textDefault":"Fragmento de texto seleccionado","DE.Views.HyperlinkSettingsDialog.textDisplay":"Mostrar","DE.Views.HyperlinkSettingsDialog.textExternal":"Enlace externo","DE.Views.HyperlinkSettingsDialog.textInternal":"Lugar del documento","DE.Views.HyperlinkSettingsDialog.textSelectFile":"Seleccionar archivo","DE.Views.HyperlinkSettingsDialog.textTitle":"Ajustes de enlace","DE.Views.HyperlinkSettingsDialog.textTooltip":"Información en pantalla","DE.Views.HyperlinkSettingsDialog.textUrl":"Enlace a","DE.Views.HyperlinkSettingsDialog.txtBeginning":"Principio del documento","DE.Views.HyperlinkSettingsDialog.txtBookmarks":"Marcadores","DE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo es obligatorio","DE.Views.HyperlinkSettingsDialog.txtHeadings":"Títulos","DE.Views.HyperlinkSettingsDialog.txtNotUrl":"Este campo debe ser una URL con el formato \"http://www.example.com\"","DE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo está limitado a 2083 caracteres","DE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Introduzca la dirección web o seleccione un archivo","DE.Views.HyphenationDialog.textAuto":"Dividir el documento con guiones automáticamente","DE.Views.HyphenationDialog.textCaps":"Dividir palabras en MAYÚSCULAS","DE.Views.HyphenationDialog.textLimit":"Limitar los guiones consecutivos a","DE.Views.HyphenationDialog.textNoLimit":"Sin limites","DE.Views.HyphenationDialog.textTitle":"Guiones","DE.Views.HyphenationDialog.textZone":"Zona de guiones","DE.Views.ImageSettings.strTransparency":"Opacidad ","DE.Views.ImageSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.ImageSettings.textCrop":"Recortar","DE.Views.ImageSettings.textCropFill":"Relleno","DE.Views.ImageSettings.textCropFit":"Adaptar","DE.Views.ImageSettings.textCropToShape":"Recortar a la forma","DE.Views.ImageSettings.textEdit":"Editar","DE.Views.ImageSettings.textEditObject":"Editar objeto","DE.Views.ImageSettings.textFitMargins":"Ajustar al margen","DE.Views.ImageSettings.textFlip":"Volteo","DE.Views.ImageSettings.textFromFile":"Desde archivo","DE.Views.ImageSettings.textFromStorage":"Desde almacenamiento","DE.Views.ImageSettings.textFromUrl":"Desde URL","DE.Views.ImageSettings.textHeight":"Altura","DE.Views.ImageSettings.textHint270":"Girar 90° a la izquierda","DE.Views.ImageSettings.textHint90":"Girar 90° a la derecha","DE.Views.ImageSettings.textHintFlipH":"Voltear horizontalmente","DE.Views.ImageSettings.textHintFlipV":"Voltear verticalmente","DE.Views.ImageSettings.textInsert":"Reemplazar imagen","DE.Views.ImageSettings.textOriginalSize":"Tamaño real","DE.Views.ImageSettings.textRecentlyUsed":"Usados recientemente","DE.Views.ImageSettings.textResetCrop":"Restablecer recorte","DE.Views.ImageSettings.textRotate90":"Girar 90°","DE.Views.ImageSettings.textRotation":"Rotación","DE.Views.ImageSettings.textSize":"Tamaño","DE.Views.ImageSettings.textWidth":"Ancho","DE.Views.ImageSettings.textWrap":"Ajuste de texto","DE.Views.ImageSettings.txtBehind":"Detrás del texto","DE.Views.ImageSettings.txtInFront":"Delante del texto","DE.Views.ImageSettings.txtInline":"En línea con el texto","DE.Views.ImageSettings.txtSquare":"Cuadrado","DE.Views.ImageSettings.txtThrough":"A través","DE.Views.ImageSettings.txtTight":"Estrecho","DE.Views.ImageSettings.txtTopAndBottom":"Superior e inferior","DE.Views.ImageSettingsAdvanced.strMargins":"Espaciado del texto","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"Absoluto","DE.Views.ImageSettingsAdvanced.textAlignment":"Alineación","DE.Views.ImageSettingsAdvanced.textAlt":"Texto alternativo","DE.Views.ImageSettingsAdvanced.textAltDescription":"Descripción","DE.Views.ImageSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","DE.Views.ImageSettingsAdvanced.textAltTitle":"Título","DE.Views.ImageSettingsAdvanced.textAngle":"Ángulo","DE.Views.ImageSettingsAdvanced.textArrows":"Flechas","DE.Views.ImageSettingsAdvanced.textAspectRatio":"Bloquear relación de aspecto","DE.Views.ImageSettingsAdvanced.textAuto":"Automático","DE.Views.ImageSettingsAdvanced.textAutofit":"Autoajustar","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"Intersección con eje","DE.Views.ImageSettingsAdvanced.textAxisPos":"Posición de eje","DE.Views.ImageSettingsAdvanced.textAxisTitle":"Título","DE.Views.ImageSettingsAdvanced.textBase":"Base","DE.Views.ImageSettingsAdvanced.textBeginSize":"Tamaño inicial","DE.Views.ImageSettingsAdvanced.textBeginStyle":"Estilo inicial","DE.Views.ImageSettingsAdvanced.textBelow":"abajo","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"Entre marcas de graduación","DE.Views.ImageSettingsAdvanced.textBevel":"Biselado","DE.Views.ImageSettingsAdvanced.textBillions":"Miles de millones","DE.Views.ImageSettingsAdvanced.textBottom":"Inferior","DE.Views.ImageSettingsAdvanced.textBottomMargin":"Margen inferior","DE.Views.ImageSettingsAdvanced.textBtnWrap":"Ajuste de texto","DE.Views.ImageSettingsAdvanced.textCapType":"Tipo de remate","DE.Views.ImageSettingsAdvanced.textCategoryName":"Nombre de categoría","DE.Views.ImageSettingsAdvanced.textCenter":"Centrada","DE.Views.ImageSettingsAdvanced.textCharacter":"Carácter","DE.Views.ImageSettingsAdvanced.textChartTitle":"Título de gráfico","DE.Views.ImageSettingsAdvanced.textColumn":"Columna","DE.Views.ImageSettingsAdvanced.textCross":"Intersección","DE.Views.ImageSettingsAdvanced.textCustom":"Personalizado","DE.Views.ImageSettingsAdvanced.textDataLabels":"Etiquetas de datos","DE.Views.ImageSettingsAdvanced.textDistance":"Distancia desde el texto","DE.Views.ImageSettingsAdvanced.textEndSize":"Tamaño final","DE.Views.ImageSettingsAdvanced.textEndStyle":"Estilo final","DE.Views.ImageSettingsAdvanced.textFit":"Ajustar al ancho","DE.Views.ImageSettingsAdvanced.textFixed":"Fijado","DE.Views.ImageSettingsAdvanced.textFlat":"Plano","DE.Views.ImageSettingsAdvanced.textFlipped":"Volteado","DE.Views.ImageSettingsAdvanced.textFormat":"Formato de etiqueta","DE.Views.ImageSettingsAdvanced.textGridLines":"Líneas de cuadrícula","DE.Views.ImageSettingsAdvanced.textHeight":"Altura","DE.Views.ImageSettingsAdvanced.textHideAxis":"Ocultar eje","DE.Views.ImageSettingsAdvanced.textHigh":"Alto","DE.Views.ImageSettingsAdvanced.textHorAxis":"Eje horizontal","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"Eje horizontal secundario","DE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal ","DE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","DE.Views.ImageSettingsAdvanced.textHundredMil":"100.000.000","DE.Views.ImageSettingsAdvanced.textHundreds":"Cientos","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100.000","DE.Views.ImageSettingsAdvanced.textIn":"En","DE.Views.ImageSettingsAdvanced.textInnerBottom":"Abajo en el interior","DE.Views.ImageSettingsAdvanced.textInnerTop":"Arriba en el interior","DE.Views.ImageSettingsAdvanced.textJoinType":"Tipo de combinación","DE.Views.ImageSettingsAdvanced.textKeepRatio":"Proporciones constantes","DE.Views.ImageSettingsAdvanced.textLabelDist":"Distancia entre eje y etiqueta","DE.Views.ImageSettingsAdvanced.textLabelInterval":"Intervalo entre etiquetas","DE.Views.ImageSettingsAdvanced.textLabelOptions":"Parámetros de etiqueta","DE.Views.ImageSettingsAdvanced.textLabelPos":"Posición de etiqueta","DE.Views.ImageSettingsAdvanced.textLayout":"Diseño","DE.Views.ImageSettingsAdvanced.textLeft":"Izquierda","DE.Views.ImageSettingsAdvanced.textLeftMargin":"Margen izquierdo","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"Superposición a la izquierda","DE.Views.ImageSettingsAdvanced.textLegendBottom":"Abajo ","DE.Views.ImageSettingsAdvanced.textLegendLeft":"A la izquierda","DE.Views.ImageSettingsAdvanced.textLegendPos":"Leyenda","DE.Views.ImageSettingsAdvanced.textLegendRight":"A la derecha","DE.Views.ImageSettingsAdvanced.textLegendTop":"Arriba","DE.Views.ImageSettingsAdvanced.textLine":"Línea","DE.Views.ImageSettingsAdvanced.textLines":"Líneas","DE.Views.ImageSettingsAdvanced.textLineStyle":"Estilo de línea","DE.Views.ImageSettingsAdvanced.textLogScale":"Escala logarítmica","DE.Views.ImageSettingsAdvanced.textLow":"Bajo","DE.Views.ImageSettingsAdvanced.textMajor":"Principal","DE.Views.ImageSettingsAdvanced.textMajorMinor":"Principales y secundarios","DE.Views.ImageSettingsAdvanced.textMajorType":"Tipo principal","DE.Views.ImageSettingsAdvanced.textManual":"Manualmente","DE.Views.ImageSettingsAdvanced.textMargin":"Margen","DE.Views.ImageSettingsAdvanced.textMarkers":"Marcadores","DE.Views.ImageSettingsAdvanced.textMarksInterval":"Intervalo entre marcas","DE.Views.ImageSettingsAdvanced.textMaxValue":"Valor máximo","DE.Views.ImageSettingsAdvanced.textMillions":"Millones","DE.Views.ImageSettingsAdvanced.textMinor":"Secundario","DE.Views.ImageSettingsAdvanced.textMinorType":"Tipo secundario","DE.Views.ImageSettingsAdvanced.textMinValue":"Valor mínimo","DE.Views.ImageSettingsAdvanced.textMiter":"Ángulo","DE.Views.ImageSettingsAdvanced.textMove":"Desplazar objeto con texto","DE.Views.ImageSettingsAdvanced.textNextToAxis":"Junto al eje","DE.Views.ImageSettingsAdvanced.textNone":"Ningún","DE.Views.ImageSettingsAdvanced.textNoOverlay":"Sin superposición","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"Marcas de graduación","DE.Views.ImageSettingsAdvanced.textOptions":"Opciones","DE.Views.ImageSettingsAdvanced.textOriginalSize":"Tamaño real","DE.Views.ImageSettingsAdvanced.textOut":"Hacia fuera","DE.Views.ImageSettingsAdvanced.textOuterTop":"Arriba en el exterior","DE.Views.ImageSettingsAdvanced.textOverlap":"Superposición","DE.Views.ImageSettingsAdvanced.textOverlay":"Superposición","DE.Views.ImageSettingsAdvanced.textPage":"Página","DE.Views.ImageSettingsAdvanced.textParagraph":"Párrafo","DE.Views.ImageSettingsAdvanced.textPosition":"Posición","DE.Views.ImageSettingsAdvanced.textPositionPc":"Posición relativa","DE.Views.ImageSettingsAdvanced.textRelative":"en relación con","DE.Views.ImageSettingsAdvanced.textRelativeWH":"Relativo","DE.Views.ImageSettingsAdvanced.textResizeFit":"Ajustar tamaño de la forma al texto","DE.Views.ImageSettingsAdvanced.textReverse":"Valores en orden inverso","DE.Views.ImageSettingsAdvanced.textRight":"Derecha","DE.Views.ImageSettingsAdvanced.textRightMargin":"Margen derecho","DE.Views.ImageSettingsAdvanced.textRightOf":"a la derecha de","DE.Views.ImageSettingsAdvanced.textRightOverlay":"Superposición a la derecha","DE.Views.ImageSettingsAdvanced.textRotated":"Girado","DE.Views.ImageSettingsAdvanced.textRotation":"Rotación","DE.Views.ImageSettingsAdvanced.textRound":"Redondeado","DE.Views.ImageSettingsAdvanced.textSeparator":"Separador de etiquetas de datos","DE.Views.ImageSettingsAdvanced.textSeriesName":"Nombre de serie","DE.Views.ImageSettingsAdvanced.textShape":"Ajustes de forma","DE.Views.ImageSettingsAdvanced.textSize":"Tamaño","DE.Views.ImageSettingsAdvanced.textSmooth":"Suave","DE.Views.ImageSettingsAdvanced.textSquare":"Cuadrado","DE.Views.ImageSettingsAdvanced.textStraight":"Recto","DE.Views.ImageSettingsAdvanced.textTenMillions":"10.000.000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10.000","DE.Views.ImageSettingsAdvanced.textTextBox":"Cuadro de texto","DE.Views.ImageSettingsAdvanced.textThousands":"Miles","DE.Views.ImageSettingsAdvanced.textTickOptions":"Parámetros de marcas de graduación","DE.Views.ImageSettingsAdvanced.textTitle":"Imagen - Ajustes avanzados","DE.Views.ImageSettingsAdvanced.textTitleChart":"Gráfico - Ajustes avanzados","DE.Views.ImageSettingsAdvanced.textTitleShape":"Forma - Ajustes avanzados","DE.Views.ImageSettingsAdvanced.textTop":"Superior","DE.Views.ImageSettingsAdvanced.textTopMargin":"Margen superior","DE.Views.ImageSettingsAdvanced.textTrillions":"Trillones","DE.Views.ImageSettingsAdvanced.textUnits":"Unidades de visualización","DE.Views.ImageSettingsAdvanced.textValue":"Valor","DE.Views.ImageSettingsAdvanced.textVertAxis":"Eje vertical","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"Eje vertical secundario","DE.Views.ImageSettingsAdvanced.textVertical":"Vertical","DE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","DE.Views.ImageSettingsAdvanced.textWeightArrows":"Grosores y flechas","DE.Views.ImageSettingsAdvanced.textWidth":"Ancho","DE.Views.ImageSettingsAdvanced.textWrap":"Estilo de ajuste","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"Detrás del texto","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"Delante del texto","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"En línea con el texto","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"Cuadrado","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"A través","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"Estrecho","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"Superior e inferior","DE.Views.LeftMenu.ariaLeftMenu":"Menú de la izquierda","DE.Views.LeftMenu.tipAbout":"Acerca de","DE.Views.LeftMenu.tipChat":"Chat","DE.Views.LeftMenu.tipComments":"Comentarios","DE.Views.LeftMenu.tipNavigation":"Navegación","DE.Views.LeftMenu.tipOutline":"Títulos","DE.Views.LeftMenu.tipPageThumbnails":"Miniaturas de página","DE.Views.LeftMenu.tipPlugins":"Extensiones","DE.Views.LeftMenu.tipSearch":"Buscar","DE.Views.LeftMenu.tipSupport":"Sugerencias y ayuda","DE.Views.LeftMenu.tipTitles":"Títulos","DE.Views.LeftMenu.txtDeveloper":"MODO DE DESARROLLO","DE.Views.LeftMenu.txtEditor":"Editor de documentos","DE.Views.LeftMenu.txtLimit":"Acceso limitado","DE.Views.LeftMenu.txtTrial":"MODO DE PRUEBA","DE.Views.LeftMenu.txtTrialDev":"Modo desarrollador de prueba","DE.Views.LineNumbersDialog.textAddLineNumbering":"Añadir numeración de líneas","DE.Views.LineNumbersDialog.textApplyTo":"Aplicar cambios a","DE.Views.LineNumbersDialog.textContinuous":"Continuo","DE.Views.LineNumbersDialog.textCountBy":"Contar por","DE.Views.LineNumbersDialog.textDocument":"Todo el documento","DE.Views.LineNumbersDialog.textForward":"Desde este punto en adelante","DE.Views.LineNumbersDialog.textFromText":"Desde el texto","DE.Views.LineNumbersDialog.textNumbering":"Numeración","DE.Views.LineNumbersDialog.textRestartEachPage":"Reiniciar en cada página","DE.Views.LineNumbersDialog.textRestartEachSection":"Reiniciar en cada sección","DE.Views.LineNumbersDialog.textSection":"Sección actual","DE.Views.LineNumbersDialog.textStartAt":"Empezar en","DE.Views.LineNumbersDialog.textTitle":"Numeración de líneas","DE.Views.LineNumbersDialog.txtAutoText":"Auto","DE.Views.Links.capBtnAddText":"Añadir texto","DE.Views.Links.capBtnBookmarks":"Marcador","DE.Views.Links.capBtnCaption":"Leyenda","DE.Views.Links.capBtnContentsUpdate":"Actualizar la tabla","DE.Views.Links.capBtnCrossRef":"Referencia cruzada","DE.Views.Links.capBtnInsContents":"Tabla de contenidos","DE.Views.Links.capBtnInsFootnote":"Nota a pie de página","DE.Views.Links.capBtnInsLink":"Enlace","DE.Views.Links.capBtnTOF":"Tabla de ilustraciones","DE.Views.Links.confirmDeleteFootnotes":"¿Desea eliminar todas las notas al pie?","DE.Views.Links.confirmReplaceTOF":"¿Quiere reemplazar la tabla de ilustraciones seleccionada?","DE.Views.Links.mniConvertNote":"Convertir todas las notas","DE.Views.Links.mniDelFootnote":"Eliminar todas las notas","DE.Views.Links.mniInsEndnote":"Insertar nota al final","DE.Views.Links.mniInsFootnote":"Insertar nota a pie de página","DE.Views.Links.mniNoteSettings":"Ajustes de notas","DE.Views.Links.textContentsRemove":"Eliminar la tabla de contenidos","DE.Views.Links.textContentsSettings":"Ajustes","DE.Views.Links.textConvertToEndnotes":"Convertir todas las notas al pie a notas al final","DE.Views.Links.textConvertToFootnotes":"Convertir todas las notas al final a notas al pie","DE.Views.Links.textGotoEndnote":"Ir a notas al final","DE.Views.Links.textGotoFootnote":"Ir a notas a pie de página","DE.Views.Links.textSwapNotes":"Intercambiar notas al pie y notas al final","DE.Views.Links.textUpdateAll":"Actualizar toda la tabla","DE.Views.Links.textUpdatePages":"Actualizar solo los números de página","DE.Views.Links.tipAddText":"Incluir título en la tabla de contenido","DE.Views.Links.tipBookmarks":"Crear marcador","DE.Views.Links.tipCaption":"Insertar leyenda","DE.Views.Links.tipContents":"Introducir tabla de contenidos","DE.Views.Links.tipContentsUpdate":"Actualizar la tabla de contenidos","DE.Views.Links.tipCrossRef":"Insertar referencia cruzada","DE.Views.Links.tipInsertHyperlink":"Añadir enlace ","DE.Views.Links.tipNotes":"Introducir o editar notas a pie de página","DE.Views.Links.tipTableFigures":"Insertar tabla de ilustraciones","DE.Views.Links.tipTableFiguresUpdate":"Actualizar la tabla de ilustraciones","DE.Views.Links.titleUpdateTOF":"Actualizar la tabla de ilustraciones","DE.Views.Links.txtDontShowTof":"No mostrar en la tabla de contenido","DE.Views.Links.txtLevel":"Nivel","DE.Views.ListIndentsDialog.textSpace":"Espacio","DE.Views.ListIndentsDialog.textTab":"Marca de tabulación","DE.Views.ListIndentsDialog.textTitle":"Sangrías de la lista","DE.Views.ListIndentsDialog.txtFollowBullet":"Viñeta seguida de","DE.Views.ListIndentsDialog.txtFollowNumber":"Número seguido de","DE.Views.ListIndentsDialog.txtIndent":"Sangría de texto","DE.Views.ListIndentsDialog.txtNone":"Ninguna","DE.Views.ListIndentsDialog.txtPosBullet":"Posición de la viñeta","DE.Views.ListIndentsDialog.txtPosNumber":"Posición de número","DE.Views.ListSettingsDialog.textAuto":"Automático","DE.Views.ListSettingsDialog.textBold":"Negrita","DE.Views.ListSettingsDialog.textCenter":"Centrada","DE.Views.ListSettingsDialog.textHide":"Ocultar ajustes","DE.Views.ListSettingsDialog.textItalic":"Cursiva","DE.Views.ListSettingsDialog.textLeft":"Izquierda","DE.Views.ListSettingsDialog.textLevel":"Nivel","DE.Views.ListSettingsDialog.textMore":"Mostrar más ajustes","DE.Views.ListSettingsDialog.textPreview":"Vista previa","DE.Views.ListSettingsDialog.textRight":"Derecha","DE.Views.ListSettingsDialog.textSelectLevel":"Seleccionar nivel","DE.Views.ListSettingsDialog.textSpace":"Espacio","DE.Views.ListSettingsDialog.textTab":"Marca de tabulación","DE.Views.ListSettingsDialog.txtAlign":"Alineación","DE.Views.ListSettingsDialog.txtAlignAt":"en","DE.Views.ListSettingsDialog.txtBullet":"Viñeta","DE.Views.ListSettingsDialog.txtColor":"Color","DE.Views.ListSettingsDialog.txtFollow":"Número seguido de","DE.Views.ListSettingsDialog.txtFontName":"Fuente","DE.Views.ListSettingsDialog.txtInclcudeLevel":"Incluir número de nivel","DE.Views.ListSettingsDialog.txtIndent":"Sangría de texto","DE.Views.ListSettingsDialog.txtLikeText":"Como el texto","DE.Views.ListSettingsDialog.txtMoreTypes":"Más tipos","DE.Views.ListSettingsDialog.txtNewBullet":"Nueva viñeta","DE.Views.ListSettingsDialog.txtNone":"No","DE.Views.ListSettingsDialog.txtNumFormatString":"Formato de número","DE.Views.ListSettingsDialog.txtRestart":"Reiniciar lista","DE.Views.ListSettingsDialog.txtSize":"Tamaño","DE.Views.ListSettingsDialog.txtStart":"Empezar en","DE.Views.ListSettingsDialog.txtSymbol":"Símbolo","DE.Views.ListSettingsDialog.txtTabStop":"Añadir tabulación en","DE.Views.ListSettingsDialog.txtTitle":"Ajustes de lista","DE.Views.ListSettingsDialog.txtType":"Tipo","DE.Views.ListTypesAdvanced.labelSelect":"Seleccionar tipo de lista","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"Enviar","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"Tema","DE.Views.MailMergeEmailDlg.textAttachDocx":"Adjuntar como DOCX","DE.Views.MailMergeEmailDlg.textAttachPdf":"Adjuntar como PDF","DE.Views.MailMergeEmailDlg.textFileName":"Nombre de archivo","DE.Views.MailMergeEmailDlg.textFormat":"Formato","DE.Views.MailMergeEmailDlg.textFrom":"De","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"Mensaje","DE.Views.MailMergeEmailDlg.textSubject":"Línea de asunto","DE.Views.MailMergeEmailDlg.textTitle":"Enviar a correo electrónico","DE.Views.MailMergeEmailDlg.textTo":"Para","DE.Views.MailMergeEmailDlg.textWarning":"¡Aviso!","DE.Views.MailMergeEmailDlg.textWarningMsg":"Tenga en cuenta que no se puede detener el envío una vez pulsado el botón 'Enviar'.","DE.Views.MailMergeSettings.downloadMergeTitle":"Combinación de correspondencia","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"Error al combinar.","DE.Views.MailMergeSettings.notcriticalErrorTitle":"Aviso","DE.Views.MailMergeSettings.textAddRecipients":"Añada primero algunos destinatarios a la lista","DE.Views.MailMergeSettings.textAll":"Todos los registros","DE.Views.MailMergeSettings.textCurrent":"Registro actual","DE.Views.MailMergeSettings.textDataSource":"Origen de datos","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"Descargar","DE.Views.MailMergeSettings.textEditData":"Editar lista de destinatarios","DE.Views.MailMergeSettings.textEmail":"Correo","DE.Views.MailMergeSettings.textFrom":"De","DE.Views.MailMergeSettings.textGoToMail":"Ir al correo","DE.Views.MailMergeSettings.textHighlight":"Resaltar campos combinados","DE.Views.MailMergeSettings.textInsertField":"Insertar campo combinado","DE.Views.MailMergeSettings.textMaxRecepients":"Máximo - 100 destinatarios","DE.Views.MailMergeSettings.textMerge":"Combinar","DE.Views.MailMergeSettings.textMergeFields":"Unir campos","DE.Views.MailMergeSettings.textMergeTo":"Combinar con","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"Guardar","DE.Views.MailMergeSettings.textPreview":"Vista previa de resultados","DE.Views.MailMergeSettings.textReadMore":"Más información","DE.Views.MailMergeSettings.textSendMsg":"Todos los mensajes de correo están listos y se enviarán en breve.
La velocidad de envío dependerá de su servicio de correo.
Puede continuar trabajando en el documento o cerrarlo. Una vez terminada la operación, la notificación se enviará a la dirección de correo con que se registró.","DE.Views.MailMergeSettings.textTo":"con","DE.Views.MailMergeSettings.txtFirst":"Primer campo","DE.Views.MailMergeSettings.txtFromToError":"El valor \"De\" debe ser menor que el valor \"A\"","DE.Views.MailMergeSettings.txtLast":"Último campo","DE.Views.MailMergeSettings.txtNext":"Campo siguente","DE.Views.MailMergeSettings.txtPrev":"Registro anterior","DE.Views.MailMergeSettings.txtUntitled":"Sin título","DE.Views.MailMergeSettings.warnProcessMailMerge":"No se ha podido realizar la combinación","DE.Views.Navigation.strNavigate":"Títulos","DE.Views.Navigation.txtClosePanel":"Cerrar títulos","DE.Views.Navigation.txtCollapse":"Desplegar todo","DE.Views.Navigation.txtDemote":"Bajar un nivel","DE.Views.Navigation.txtEmpty":"No hay títulos en el documento.
Aplique un estilo de título al texto para que aparezca en la tabla de contenido.","DE.Views.Navigation.txtEmptyItem":"Encabezado vacío","DE.Views.Navigation.txtEmptyViewer":"No hay títulos en el documento.","DE.Views.Navigation.txtExpand":"Expandir todo","DE.Views.Navigation.txtExpandToLevel":"Expandir a nivel","DE.Views.Navigation.txtFontSize":"Tamaño de la fuente","DE.Views.Navigation.txtHeadingAfter":"Título nuevo después ","DE.Views.Navigation.txtHeadingBefore":"Título nuevo antes","DE.Views.Navigation.txtLarge":"Grande","DE.Views.Navigation.txtMedium":"Medio","DE.Views.Navigation.txtNewHeading":"Subtítulo nuevo","DE.Views.Navigation.txtPromote":"Subir un nivel","DE.Views.Navigation.txtSelect":"Seleccionar contenido","DE.Views.Navigation.txtSettings":"Ajustes de los títulos","DE.Views.Navigation.txtSmall":"Pequeño","DE.Views.Navigation.txtWrapHeadings":"Ajustar títulos largos","DE.Views.NoteSettingsDialog.textApply":"Aplicar","DE.Views.NoteSettingsDialog.textApplyTo":"Aplicar cambios a","DE.Views.NoteSettingsDialog.textContinue":"Continua","DE.Views.NoteSettingsDialog.textCustom":"Marca personalizada","DE.Views.NoteSettingsDialog.textDocEnd":"Final del documento","DE.Views.NoteSettingsDialog.textDocument":"Todo el documento","DE.Views.NoteSettingsDialog.textEachPage":"Reiniciar cada página","DE.Views.NoteSettingsDialog.textEachSection":"Reiniciar cada sección","DE.Views.NoteSettingsDialog.textEndnote":"Nota al final","DE.Views.NoteSettingsDialog.textFootnote":"Nota a pie de página","DE.Views.NoteSettingsDialog.textFormat":"Formato","DE.Views.NoteSettingsDialog.textInsert":"Insertar","DE.Views.NoteSettingsDialog.textLocation":"Ubicación","DE.Views.NoteSettingsDialog.textNumbering":"Numeración","DE.Views.NoteSettingsDialog.textNumFormat":"Formato de número","DE.Views.NoteSettingsDialog.textPageBottom":"Al pie de la página","DE.Views.NoteSettingsDialog.textSectEnd":"Al final de la sección","DE.Views.NoteSettingsDialog.textSection":"Sección actual","DE.Views.NoteSettingsDialog.textStart":"Empezar con","DE.Views.NoteSettingsDialog.textTextBottom":"Bajo el texto","DE.Views.NoteSettingsDialog.textTitle":"Ajustes de notas","DE.Views.NotesRemoveDialog.textEnd":"Eliminar todas las notas al final","DE.Views.NotesRemoveDialog.textFoot":"Eliminar todas las notas al pie de página","DE.Views.NotesRemoveDialog.textTitle":"Eliminar notas","DE.Views.PageMarginsDialog.notcriticalErrorTitle":"Aviso","DE.Views.PageMarginsDialog.textBottom":"Inferior","DE.Views.PageMarginsDialog.textGutter":"Medianiles","DE.Views.PageMarginsDialog.textGutterPosition":"Posición de medianiles","DE.Views.PageMarginsDialog.textInside":"Dentro de","DE.Views.PageMarginsDialog.textLandscape":"Horizontal","DE.Views.PageMarginsDialog.textLeft":"Izquierdo","DE.Views.PageMarginsDialog.textMirrorMargins":"Márgenes simétricos","DE.Views.PageMarginsDialog.textMultiplePages":"Múltiples páginas","DE.Views.PageMarginsDialog.textNormal":"Normal","DE.Views.PageMarginsDialog.textOrientation":"Orientación","DE.Views.PageMarginsDialog.textOutside":"Exterior","DE.Views.PageMarginsDialog.textPortrait":"Vertical","DE.Views.PageMarginsDialog.textPreview":"Vista previa","DE.Views.PageMarginsDialog.textRight":"Derecho","DE.Views.PageMarginsDialog.textTitle":"Márgenes","DE.Views.PageMarginsDialog.textTop":"Superior","DE.Views.PageMarginsDialog.txtMarginsH":"Los márgenes superior e inferior son demasiado altos para la altura de la página","DE.Views.PageMarginsDialog.txtMarginsW":"Los márgenes izquierdo y derecho son demasiado anchos para la anchura de la página","DE.Views.PageNumberingDlg.textFrom":"Empezar en","DE.Views.PageNumberingDlg.textMoreTypes":"Más tipos","DE.Views.PageNumberingDlg.textNumberFormat":"Formato de número","DE.Views.PageNumberingDlg.textPrev":"Continuar desde la sección anterior","DE.Views.PageSizeDialog.textHeight":"Altura","DE.Views.PageSizeDialog.textPreset":"Preajuste","DE.Views.PageSizeDialog.textTitle":"Tamaño de la página","DE.Views.PageSizeDialog.textWidth":"Ancho","DE.Views.PageSizeDialog.txtCustom":"Personalizado","DE.Views.PageThumbnails.textClosePanel":"Cerrar las miniaturas de las páginas","DE.Views.PageThumbnails.textHighlightVisiblePart":"Resaltar la parte visible de la página","DE.Views.PageThumbnails.textPageThumbnails":"Miniaturas de página","DE.Views.PageThumbnails.textThumbnailsSettings":"Configuración de las miniaturas","DE.Views.PageThumbnails.textThumbnailsSize":"Tamaño de las miniaturas","DE.Views.ParagraphSettings.strIndent":"Sangrías","DE.Views.ParagraphSettings.strIndentsLeftText":"A la izquierda","DE.Views.ParagraphSettings.strIndentsRightText":"A la derecha","DE.Views.ParagraphSettings.strIndentsSpecial":"Especial","DE.Views.ParagraphSettings.strLineHeight":"Interlineado","DE.Views.ParagraphSettings.strParagraphSpacing":"Espaciado de párafo","DE.Views.ParagraphSettings.strSomeParagraphSpace":"No añadir espaciado entre párrafos del mismo estilo","DE.Views.ParagraphSettings.strSpacingAfter":"Después","DE.Views.ParagraphSettings.strSpacingBefore":"Antes","DE.Views.ParagraphSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.ParagraphSettings.textAt":"En","DE.Views.ParagraphSettings.textAtLeast":"Al menos","DE.Views.ParagraphSettings.textAuto":"Múltiple","DE.Views.ParagraphSettings.textBackColor":"Color del fondo","DE.Views.ParagraphSettings.textExact":"Exacto","DE.Views.ParagraphSettings.textFirstLine":"Primera línea","DE.Views.ParagraphSettings.textHanging":"Sangría francesa","DE.Views.ParagraphSettings.textNoneSpecial":"(ninguno)","DE.Views.ParagraphSettings.txtAutoText":"Auto","DE.Views.ParagraphSettingsAdvanced.noTabs":"Los tabuladores especificados aparecerán en este campo","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"Mayúsculas","DE.Views.ParagraphSettingsAdvanced.strBorders":"Bordes y relleno","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"Salto de página antes","DE.Views.ParagraphSettingsAdvanced.strDirection":"Dirección ","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Tachado doble","DE.Views.ParagraphSettingsAdvanced.strIndent":"Sangrías","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Izquierda","DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Espaciado de línea","DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel":"Nivel de esquema ","DE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Derecha","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Después","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","DE.Views.ParagraphSettingsAdvanced.strKeepLines":"Mantener líneas juntas","DE.Views.ParagraphSettingsAdvanced.strKeepNext":"Conservar con el siguiente","DE.Views.ParagraphSettingsAdvanced.strMargins":"Espaciados internos","DE.Views.ParagraphSettingsAdvanced.strOrphan":"Control de líneas huérfanas","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Fuente","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Sangría y espaciado","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"Saltos de línea y saltos de página","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"Ubicación","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versalitas","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"No añadir espaciado entre párrafos del mismo estilo","DE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaciado","DE.Views.ParagraphSettingsAdvanced.strStrike":"Tachado simple","DE.Views.ParagraphSettingsAdvanced.strSubscript":"Subíndice","DE.Views.ParagraphSettingsAdvanced.strSuperscript":"Superíndice","DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers":"Suprimir números de línea","DE.Views.ParagraphSettingsAdvanced.strTabs":"Tabuladores","DE.Views.ParagraphSettingsAdvanced.textAlign":"Alineación","DE.Views.ParagraphSettingsAdvanced.textAll":"Todo","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"Al menos","DE.Views.ParagraphSettingsAdvanced.textAuto":"Múltiple","DE.Views.ParagraphSettingsAdvanced.textBackColor":"Color del fondo","DE.Views.ParagraphSettingsAdvanced.textBodyText":"Texto básico","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"Color del borde","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"Haga clic en el diagrama o use los botones para seleccionar bordes y aplicar el estilo seleccionado","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"Tamaño del borde","DE.Views.ParagraphSettingsAdvanced.textBottom":"Inferior","DE.Views.ParagraphSettingsAdvanced.textCentered":"Centrado","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaciado entre caracteres","DE.Views.ParagraphSettingsAdvanced.textContext":"Contexto","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"Contextuales y discrecionales","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"Contextuales, históricas y discrecionales","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"Contextuales e históricas","DE.Views.ParagraphSettingsAdvanced.textDefault":"Tabulador predeterminado","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"De izquierda a derecha","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"De derecha a izquierda","DE.Views.ParagraphSettingsAdvanced.textDiscret":"Discrecionalidad","DE.Views.ParagraphSettingsAdvanced.textEffects":"Efectos","DE.Views.ParagraphSettingsAdvanced.textExact":"Exactamente","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primera línea","DE.Views.ParagraphSettingsAdvanced.textHanging":"Suspendido","DE.Views.ParagraphSettingsAdvanced.textHistorical":"Histórico","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"Históricas y discrecionales","DE.Views.ParagraphSettingsAdvanced.textJustified":"Justificada","DE.Views.ParagraphSettingsAdvanced.textLeader":"Relleno","DE.Views.ParagraphSettingsAdvanced.textLeft":"Izquierda","DE.Views.ParagraphSettingsAdvanced.textLevel":"Nivel","DE.Views.ParagraphSettingsAdvanced.textLigatures":"Ligaduras","DE.Views.ParagraphSettingsAdvanced.textNone":"No","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(ninguno)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"Características de OpenType","DE.Views.ParagraphSettingsAdvanced.textPosition":"Posición","DE.Views.ParagraphSettingsAdvanced.textRemove":"Eliminar","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Eliminar todo","DE.Views.ParagraphSettingsAdvanced.textRight":"Derecha","DE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","DE.Views.ParagraphSettingsAdvanced.textSpacing":"Espaciado","DE.Views.ParagraphSettingsAdvanced.textStandard":"Solamente estándar","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"Estándar y contextual","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"Estándar, contextual y discrecional","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"Estándar, contextual e histórico","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"Estándar y discrecional","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"Estándar, histórico y discrecional","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"Estándar e histórico","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"Centrada","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"Izquierda","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posición del tabulador","DE.Views.ParagraphSettingsAdvanced.textTabRight":"Derecha","DE.Views.ParagraphSettingsAdvanced.textTitle":"Párrafo - Ajustes avanzados","DE.Views.ParagraphSettingsAdvanced.textTop":"Superior","DE.Views.ParagraphSettingsAdvanced.tipAll":"Establecer borde exterior y todas líneas interiores","DE.Views.ParagraphSettingsAdvanced.tipBottom":"Establecer solo borde inferior","DE.Views.ParagraphSettingsAdvanced.tipInner":"Establecer solo líneas horizontales interiores","DE.Views.ParagraphSettingsAdvanced.tipLeft":"Establecer solo borde izquierdo","DE.Views.ParagraphSettingsAdvanced.tipNone":"No establecer bordes","DE.Views.ParagraphSettingsAdvanced.tipOuter":"Establecer solo borde exterior","DE.Views.ParagraphSettingsAdvanced.tipRight":"Establecer solo borde derecho","DE.Views.ParagraphSettingsAdvanced.tipTop":"Establecer solo borde superior","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"Auto","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"Sin bordes","DE.Views.PrintWithPreview.textMarginsLast":"Último personalizado","DE.Views.PrintWithPreview.textMarginsModerate":"Moderado","DE.Views.PrintWithPreview.textMarginsNarrow":"Estrecho","DE.Views.PrintWithPreview.textMarginsNormal":"Normal","DE.Views.PrintWithPreview.textMarginsWide":"Amplio","DE.Views.PrintWithPreview.txtAllPages":"Todas las páginas","DE.Views.PrintWithPreview.txtAuto":"Automático","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impresión en blanco y negro","DE.Views.PrintWithPreview.txtBothSides":"Imprimir en ambas caras","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"Girar páginas por borde largo","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"Girar páginas por borde corto","DE.Views.PrintWithPreview.txtBottom":"Parte inferior","DE.Views.PrintWithPreview.txtColorPrinting":"Impresión en color","DE.Views.PrintWithPreview.txtCopies":"Copias","DE.Views.PrintWithPreview.txtCurrentPage":"Página actual","DE.Views.PrintWithPreview.txtCustom":"Personalizado","DE.Views.PrintWithPreview.txtCustomPages":"Impresión personalizada","DE.Views.PrintWithPreview.txtLandscape":"Horizontal","DE.Views.PrintWithPreview.txtLeft":"Izquierdo","DE.Views.PrintWithPreview.txtMargins":"Márgenes","DE.Views.PrintWithPreview.txtOf":"de {0}","DE.Views.PrintWithPreview.txtOneSide":"Imprimir a una cara","DE.Views.PrintWithPreview.txtOneSideDesc":"Imprimir solo en una cara de la página","DE.Views.PrintWithPreview.txtPage":"Página","DE.Views.PrintWithPreview.txtPageNumInvalid":"Número de página no válido","DE.Views.PrintWithPreview.txtPageOrientation":"Orientación de página","DE.Views.PrintWithPreview.txtPages":"Páginas","DE.Views.PrintWithPreview.txtPageSize":"Tamaño de la página","DE.Views.PrintWithPreview.txtPortrait":"Vertical","DE.Views.PrintWithPreview.txtPrint":"Imprimir","DE.Views.PrintWithPreview.txtPrinter":"Impresora","DE.Views.PrintWithPreview.txtPrinterNotSelected":"Impresora no seleccionada","DE.Views.PrintWithPreview.txtPrintersNotFound":"Impresoras no encontradas","DE.Views.PrintWithPreview.txtPrintPdf":"Imprimir en PDF","DE.Views.PrintWithPreview.txtPrintRange":"Intervalo de impresión","DE.Views.PrintWithPreview.txtPrintSides":"Caras de impresión","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir utilizando el diálogo del sistema","DE.Views.PrintWithPreview.txtRight":"Derecho","DE.Views.PrintWithPreview.txtSelection":"Selección","DE.Views.PrintWithPreview.txtTop":"Parte superior","DE.Views.PrintWithPreview.txtWaitingForPrinters":"Esperando impresoras","DE.Views.ProtectDialog.textComments":"Comentarios","DE.Views.ProtectDialog.textForms":"Rellenado de formularios","DE.Views.ProtectDialog.textReview":"Cambios realizados","DE.Views.ProtectDialog.textView":"Sin cambios (solo lectura)","DE.Views.ProtectDialog.txtAllow":"Permitir solo este tipo de edición en el documento","DE.Views.ProtectDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","DE.Views.ProtectDialog.txtLimit":"La contraseña está limitada a 15 caracteres","DE.Views.ProtectDialog.txtOptional":"opcional","DE.Views.ProtectDialog.txtPassword":"Contraseña","DE.Views.ProtectDialog.txtProtect":"Proteger","DE.Views.ProtectDialog.txtRepeat":"Repita la contraseña","DE.Views.ProtectDialog.txtTitle":"Proteger","DE.Views.ProtectDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdela en un lugar seguro.","DE.Views.RightMenu.ariaRightMenu":"Menú de la derecha","DE.Views.RightMenu.txtChartSettings":"Ajustes de gráfico","DE.Views.RightMenu.txtFormSettings":"Ajustes de formulario","DE.Views.RightMenu.txtHeaderFooterSettings":"Ajustes de encabezado y pie de página","DE.Views.RightMenu.txtImageSettings":"Ajustes de imagen","DE.Views.RightMenu.txtMailMergeSettings":"Ajustes de fusión","DE.Views.RightMenu.txtParagraphSettings":"Ajustes de párrafo","DE.Views.RightMenu.txtShapeSettings":"Ajustes de forma","DE.Views.RightMenu.txtSignatureSettings":"Configuración de firma","DE.Views.RightMenu.txtTableSettings":"Ajustes de tabla","DE.Views.RightMenu.txtTextArtSettings":"Ajustes de galería de texto","DE.Views.RoleDeleteDlg.textLabel":"Para eliminar este destinatario, es necesario mover sus campos asociados a otro destinatario.","DE.Views.RoleDeleteDlg.textSelect":"Seleccionar el destinatario para la fusión de campos","DE.Views.RoleDeleteDlg.textTitle":"Eliminar destinatario","DE.Views.RoleEditDlg.errNameExists":"Ya existe un destinatario con ese nombre.","DE.Views.RoleEditDlg.textEmptyError":"El nombre del destinatario no debe estar vacío.","DE.Views.RoleEditDlg.textName":"Nombre del destinatario","DE.Views.RoleEditDlg.textNameEx":"Ejemplo: Solicitante, cliente, vendedor","DE.Views.RoleEditDlg.textNoHighlight":"No resaltar","DE.Views.RoleEditDlg.txtTitleEdit":"Editar destinatario","DE.Views.RoleEditDlg.txtTitleNew":"Crear nuevo destinatario","DE.Views.RolesManagerDlg.textAnyone":"Cualquiera","DE.Views.RolesManagerDlg.textDelete":"Eliminar","DE.Views.RolesManagerDlg.textDeleteLast":"¿Está seguro de que desea eliminar el destinatario {0}?
Una vez eliminado, se creará el destinatario predeterminado.","DE.Views.RolesManagerDlg.textDescription":"Añada destinatarios y establezca el orden en que los rellenadores reciben y firman el documento","DE.Views.RolesManagerDlg.textDown":"Mover el destinatario hacia abajo","DE.Views.RolesManagerDlg.textEdit":"Editar","DE.Views.RolesManagerDlg.textEmpty":"Todavía no se ha creado ningún destinatario.
Cree al menos un destinatario y aparecerá en este campo.","DE.Views.RolesManagerDlg.textNew":"Nuevo","DE.Views.RolesManagerDlg.textUp":"Mover el destinatario hacia arriba","DE.Views.RolesManagerDlg.txtTitle":"Gestionar roles de destinatarios","DE.Views.RolesManagerDlg.warnCantDelete":"No puede eliminar este destinatario porque tiene campos asociados.","DE.Views.RolesManagerDlg.warnDelete":"¿Está seguro de que desea eliminar el destinatario {0}?","DE.Views.SaveFormDlg.saveButtonText":"Guardar","DE.Views.SaveFormDlg.textAnyone":"Cualquiera","DE.Views.SaveFormDlg.textDescription":"Al guardar en PDF, solo los destinatario con campos se añaden a la lista de relleno","DE.Views.SaveFormDlg.textEmpty":"No hay destinatarios asociados a los campos.","DE.Views.SaveFormDlg.textFill":"Lista de relleno","DE.Views.SaveFormDlg.txtTitle":"Guardar como formulario","DE.Views.ShapeSettings.strBackground":"Color del fondo","DE.Views.ShapeSettings.strChange":"Cambiar forma","DE.Views.ShapeSettings.strColor":"Color","DE.Views.ShapeSettings.strFill":"Relleno","DE.Views.ShapeSettings.strForeground":"Color del primer plano","DE.Views.ShapeSettings.strPattern":"Patrón","DE.Views.ShapeSettings.strShadow":"Mostrar sombra","DE.Views.ShapeSettings.strSize":"Tamaño","DE.Views.ShapeSettings.strStroke":"Trazo","DE.Views.ShapeSettings.strTransparency":"Opacidad","DE.Views.ShapeSettings.strType":"Tipo","DE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","DE.Views.ShapeSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.ShapeSettings.textAngle":"Ángulo","DE.Views.ShapeSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","DE.Views.ShapeSettings.textColor":"Relleno de color","DE.Views.ShapeSettings.textDirection":"Dirección ","DE.Views.ShapeSettings.textEditPoints":"Modificar puntos","DE.Views.ShapeSettings.textEditShape":"Editar forma","DE.Views.ShapeSettings.textEmptyPattern":"Sin patrón","DE.Views.ShapeSettings.textEyedropper":"Cuentagotas","DE.Views.ShapeSettings.textFlip":"Volteo","DE.Views.ShapeSettings.textFromFile":"Desde archivo","DE.Views.ShapeSettings.textFromStorage":"Desde almacenamiento","DE.Views.ShapeSettings.textFromUrl":"Desde URL","DE.Views.ShapeSettings.textGradient":"Puntos de gradiente","DE.Views.ShapeSettings.textGradientFill":"Relleno degradado","DE.Views.ShapeSettings.textHint270":"Girar 90° a la izquierda","DE.Views.ShapeSettings.textHint90":"Girar 90° a la derecha","DE.Views.ShapeSettings.textHintFlipH":"Voltear horizontalmente","DE.Views.ShapeSettings.textHintFlipV":"Voltear verticalmente","DE.Views.ShapeSettings.textImageTexture":"Imagen o textura","DE.Views.ShapeSettings.textLinear":"Lineal","DE.Views.ShapeSettings.textMoreColors":"Más colores","DE.Views.ShapeSettings.textNoFill":"Sin relleno","DE.Views.ShapeSettings.textNoShadow":"Sin sombra","DE.Views.ShapeSettings.textPatternFill":"Patrón","DE.Views.ShapeSettings.textPosition":"Posición","DE.Views.ShapeSettings.textRadial":"Radial","DE.Views.ShapeSettings.textRecentlyUsed":"Usados recientemente","DE.Views.ShapeSettings.textRotate90":"Girar 90°","DE.Views.ShapeSettings.textRotation":"Rotación","DE.Views.ShapeSettings.textSelectImage":"Seleccionar imagen","DE.Views.ShapeSettings.textSelectTexture":"Seleccionar","DE.Views.ShapeSettings.textShadow":"Sombra","DE.Views.ShapeSettings.textStretch":"Estirar","DE.Views.ShapeSettings.textStyle":"Estilo","DE.Views.ShapeSettings.textTexture":"Desde textura","DE.Views.ShapeSettings.textTile":"Mosaico","DE.Views.ShapeSettings.textWrap":"Ajuste de texto","DE.Views.ShapeSettings.tipAddGradientPoint":"Añadir punto de degradado","DE.Views.ShapeSettings.tipRemoveGradientPoint":"Eliminar punto de degradado","DE.Views.ShapeSettings.txtBehind":"Detrás del texto","DE.Views.ShapeSettings.txtBrownPaper":"Papel marrón","DE.Views.ShapeSettings.txtCanvas":"Lienzo","DE.Views.ShapeSettings.txtCarton":"Cartón","DE.Views.ShapeSettings.txtDarkFabric":"Tela oscura","DE.Views.ShapeSettings.txtGrain":"Grano","DE.Views.ShapeSettings.txtGranite":"Granito","DE.Views.ShapeSettings.txtGreyPaper":"Papel gris","DE.Views.ShapeSettings.txtInFront":"Delante del texto","DE.Views.ShapeSettings.txtInline":"En línea con el texto","DE.Views.ShapeSettings.txtKnit":"Tejido","DE.Views.ShapeSettings.txtLeather":"Cuero","DE.Views.ShapeSettings.txtNoBorders":"Sin línea","DE.Views.ShapeSettings.txtOffsetBottom":"Desplazamiento: Abajo","DE.Views.ShapeSettings.txtOffsetBottomLeft":"Desplazamiento: Abajo a la izquierda","DE.Views.ShapeSettings.txtOffsetBottomRight":"Desplazamiento: Abajo a la derecha","DE.Views.ShapeSettings.txtOffsetCenter":"Desplazamiento: Al centro","DE.Views.ShapeSettings.txtOffsetLeft":"Desplazamiento: A la izquierda","DE.Views.ShapeSettings.txtOffsetRight":"Desplazamiento: A la derecha","DE.Views.ShapeSettings.txtOffsetTop":"Desplazamiento: Arriba","DE.Views.ShapeSettings.txtOffsetTopLeft":"Desplazamiento: Arriba a la izquierda","DE.Views.ShapeSettings.txtOffsetTopRight":"Desplazamiento: Arriba a la derecha","DE.Views.ShapeSettings.txtPapyrus":"Papiro","DE.Views.ShapeSettings.txtSquare":"Cuadrado","DE.Views.ShapeSettings.txtThrough":"A través","DE.Views.ShapeSettings.txtTight":"Estrecho","DE.Views.ShapeSettings.txtTopAndBottom":"Superior e inferior","DE.Views.ShapeSettings.txtWood":"Madera","DE.Views.SignatureSettings.notcriticalErrorTitle":"Aviso","DE.Views.SignatureSettings.strDelete":"Eliminar la firma","DE.Views.SignatureSettings.strDetails":"Detalles de la firma","DE.Views.SignatureSettings.strInvalid":"Firmas inválidas","DE.Views.SignatureSettings.strRequested":"Firmas requeridas","DE.Views.SignatureSettings.strSetup":"Configuración de la firma","DE.Views.SignatureSettings.strSign":"Firmar","DE.Views.SignatureSettings.strSignature":"Firma","DE.Views.SignatureSettings.strSigner":"Firmante","DE.Views.SignatureSettings.strValid":"Firmas valida","DE.Views.SignatureSettings.txtContinueEditing":"Editar de todas maneras","DE.Views.SignatureSettings.txtEditWarning":"La edición eliminará las firmas del documento.
¿Continuar?","DE.Views.SignatureSettings.txtRemoveWarning":"¿Desea eliminar esta firma?
No se puede deshacer.","DE.Views.SignatureSettings.txtRequestedSignatures":"Este documento necesita ser firmado","DE.Views.SignatureSettings.txtSigned":"Se han añadido firmas válidas al documento. El documento está protegido contra la edición.","DE.Views.SignatureSettings.txtSignedForm":"Este documento se ha firmado y no se puede modificar.","DE.Views.SignatureSettings.txtSignedInvalid":"Algunas de las firmas digitales del documento no son válidas o no han podido ser verificadas. El documento está protegido contra la edición.","DE.Views.Statusbar.goToPageText":"Ir a página","DE.Views.Statusbar.pageIndexText":"Página {0} de {1}","DE.Views.Statusbar.tipFitPage":"Ajustar a la página","DE.Views.Statusbar.tipFitWidth":"Ajustar al ancho","DE.Views.Statusbar.tipHandTool":"Herramienta manual","DE.Views.Statusbar.tipMultiplePages":"Múltiples páginas","DE.Views.Statusbar.tipSelectTool":"Seleccionar herramienta","DE.Views.Statusbar.tipSetLang":"Establecer idioma del texto","DE.Views.Statusbar.tipZoomFactor":"Ampliación","DE.Views.Statusbar.tipZoomIn":"Acercar","DE.Views.Statusbar.tipZoomOut":"Alejar","DE.Views.Statusbar.txtPageNumInvalid":"Número de página inválido","DE.Views.Statusbar.txtPages":"Páginas","DE.Views.Statusbar.txtParagraphs":"Párrafos","DE.Views.Statusbar.txtSpaces":"Símbolos con espacios","DE.Views.Statusbar.txtSymbols":"Símbolos","DE.Views.Statusbar.txtWordCount":"Recuento de palabras","DE.Views.Statusbar.txtWords":"Palabras","DE.Views.StyleTitleDialog.textHeader":"Crear estilo nuevo","DE.Views.StyleTitleDialog.textNextStyle":"Estilo de párrafo siguiente","DE.Views.StyleTitleDialog.textTitle":"Título","DE.Views.StyleTitleDialog.txtEmpty":"Este campo es obligatorio","DE.Views.StyleTitleDialog.txtNotEmpty":"El campo no puede estar vacío","DE.Views.StyleTitleDialog.txtSameAs":"Igual que el nuevo estilo creado","DE.Views.TableFormulaDialog.textBookmark":"Pegar marcador","DE.Views.TableFormulaDialog.textFormat":"Formato de número","DE.Views.TableFormulaDialog.textFormula":"Fórmula","DE.Views.TableFormulaDialog.textInsertFunction":"Pegar función","DE.Views.TableFormulaDialog.textTitle":"Ajustes de fórmula","DE.Views.TableOfContentsSettings.strAlign":"Alinear los números de página a la derecha","DE.Views.TableOfContentsSettings.strFullCaption":"Incluir etiqueta y número","DE.Views.TableOfContentsSettings.strLinks":"Formatear tabla de contenido como enlaces","DE.Views.TableOfContentsSettings.strLinksOF":"Formatear tabla de ilustraciones como enlaces","DE.Views.TableOfContentsSettings.strShowPages":"Mostrar números de página","DE.Views.TableOfContentsSettings.textBuildTable":"Generar tabla de contenidos desde","DE.Views.TableOfContentsSettings.textBuildTableOF":"Generar tabla de ilustraciones a partir de:","DE.Views.TableOfContentsSettings.textEquation":"Ecuación","DE.Views.TableOfContentsSettings.textFigure":"Figura","DE.Views.TableOfContentsSettings.textLeader":"Relleno","DE.Views.TableOfContentsSettings.textLevel":"Nivel","DE.Views.TableOfContentsSettings.textLevels":"Niveles","DE.Views.TableOfContentsSettings.textNone":"Ninguna","DE.Views.TableOfContentsSettings.textRadioCaption":"Leyenda","DE.Views.TableOfContentsSettings.textRadioLevels":"Niveles de perfil","DE.Views.TableOfContentsSettings.textRadioStyle":"Estilo","DE.Views.TableOfContentsSettings.textRadioStyles":"Seleccionar estilos","DE.Views.TableOfContentsSettings.textStyle":"Estilo","DE.Views.TableOfContentsSettings.textStyles":"Estilos","DE.Views.TableOfContentsSettings.textTable":"Tabla","DE.Views.TableOfContentsSettings.textTitle":"Tabla de contenidos","DE.Views.TableOfContentsSettings.textTitleTOF":"Tabla de ilustraciones","DE.Views.TableOfContentsSettings.txtCentered":"Centrada","DE.Views.TableOfContentsSettings.txtClassic":"Clásico","DE.Views.TableOfContentsSettings.txtCurrent":"Actual","DE.Views.TableOfContentsSettings.txtDistinctive":"Distintiva","DE.Views.TableOfContentsSettings.txtFormal":"Formal","DE.Views.TableOfContentsSettings.txtModern":"Moderna","DE.Views.TableOfContentsSettings.txtOnline":"Con enlaces","DE.Views.TableOfContentsSettings.txtSimple":"Simple","DE.Views.TableOfContentsSettings.txtStandard":"Estándar","DE.Views.TableSettings.deleteColumnText":"Eliminar columna","DE.Views.TableSettings.deleteRowText":"Eliminar fila","DE.Views.TableSettings.deleteTableText":"Eliminar tabla","DE.Views.TableSettings.insertColumnLeftText":"Insertar columna a la izquierda","DE.Views.TableSettings.insertColumnRightText":"Insertar columna a la derecha","DE.Views.TableSettings.insertRowAboveText":"Insertar fila arriba","DE.Views.TableSettings.insertRowBelowText":"Insertar fila debajo","DE.Views.TableSettings.mergeCellsText":"Unir celdas","DE.Views.TableSettings.selectCellText":"Seleccionar celda","DE.Views.TableSettings.selectColumnText":"Seleccionar columna","DE.Views.TableSettings.selectRowText":"Seleccionar fila","DE.Views.TableSettings.selectTableText":"Seleccionar tabla","DE.Views.TableSettings.splitCellsText":"Dividir celda...","DE.Views.TableSettings.splitCellTitleText":"Dividir celda","DE.Views.TableSettings.strRepeatRow":"Repetir como una fila de encabezado en la parte superior de cada página","DE.Views.TableSettings.textAddFormula":"Añadir fórmula","DE.Views.TableSettings.textAdvanced":"Mostrar ajustes avanzados","DE.Views.TableSettings.textAutofit":"Ajustar automáticamente según el contenido","DE.Views.TableSettings.textBackColor":"Color del fondo","DE.Views.TableSettings.textBanded":"Con bandas","DE.Views.TableSettings.textBorderColor":"Color","DE.Views.TableSettings.textBorders":"Estilo de bordes","DE.Views.TableSettings.textCellSize":"Tamaño de filas y columnas","DE.Views.TableSettings.textColumns":"Columnas","DE.Views.TableSettings.textConvert":"Convertir tabla en texto","DE.Views.TableSettings.textDistributeCols":"Distribuir columnas","DE.Views.TableSettings.textDistributeRows":"Distribuir filas","DE.Views.TableSettings.textEdit":"Filas y columnas","DE.Views.TableSettings.textEmptyTemplate":"Sin plantillas","DE.Views.TableSettings.textFirst":"primero","DE.Views.TableSettings.textHeader":"Encabezado","DE.Views.TableSettings.textHeight":"Altura","DE.Views.TableSettings.textLast":"Última","DE.Views.TableSettings.textRows":"Filas","DE.Views.TableSettings.textSelectBorders":"Seleccione los bordes que desea cambiar aplicando el estilo seleccionado arriba","DE.Views.TableSettings.textTemplate":"Seleccionar desde plantilla","DE.Views.TableSettings.textTotal":"Total","DE.Views.TableSettings.textWidth":"Ancho","DE.Views.TableSettings.tipAll":"Establecer borde exterior y todas líneas interiores","DE.Views.TableSettings.tipBottom":"Establecer solo borde exterior inferior","DE.Views.TableSettings.tipInner":"Establecer solo líneas interiores","DE.Views.TableSettings.tipInnerHor":"Establecer solo líneas horizontales interiores","DE.Views.TableSettings.tipInnerVert":"Establecer solo líneas verticales interiores","DE.Views.TableSettings.tipLeft":"Establecer solo borde exterior izquierdo","DE.Views.TableSettings.tipNone":"No establecer bordes","DE.Views.TableSettings.tipOuter":"Establecer solo borde exterior","DE.Views.TableSettings.tipRight":"Establecer solo borde exterior derecho","DE.Views.TableSettings.tipTop":"Establecer solo borde exterior superior","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"Tablas con bordes y líneas","DE.Views.TableSettings.txtGroupTable_Custom":"Personalizado","DE.Views.TableSettings.txtGroupTable_Grid":"Tablas de cuadrícula","DE.Views.TableSettings.txtGroupTable_List":"Tablas de lista","DE.Views.TableSettings.txtGroupTable_Plain":"Tablas sin formato","DE.Views.TableSettings.txtNoBorders":"Sin bordes","DE.Views.TableSettings.txtTable_Accent":"Acento","DE.Views.TableSettings.txtTable_Bordered":"Con bordes","DE.Views.TableSettings.txtTable_BorderedAndLined":"Con bordes y líneas","DE.Views.TableSettings.txtTable_Colorful":"Colorido","DE.Views.TableSettings.txtTable_Dark":"Oscuro","DE.Views.TableSettings.txtTable_GridTable":"Tabla de rejilla","DE.Views.TableSettings.txtTable_Light":"Claro","DE.Views.TableSettings.txtTable_Lined":"Con líneas","DE.Views.TableSettings.txtTable_ListTable":"Tabla de lista","DE.Views.TableSettings.txtTable_PlainTable":"Tabla normal","DE.Views.TableSettings.txtTable_TableGrid":"Cuadrícula de tabla","DE.Views.TableSettingsAdvanced.textAlign":"Alineación","DE.Views.TableSettingsAdvanced.textAlignment":"Alineación","DE.Views.TableSettingsAdvanced.textAllowSpacing":"Espacio entre celdas","DE.Views.TableSettingsAdvanced.textAlt":"Texto alternativo","DE.Views.TableSettingsAdvanced.textAltDescription":"Descripción","DE.Views.TableSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","DE.Views.TableSettingsAdvanced.textAltTitle":"Título","DE.Views.TableSettingsAdvanced.textAnchorText":"Texto","DE.Views.TableSettingsAdvanced.textAutofit":"Cambiar tamaño automáticamente para ajustarse al contenido","DE.Views.TableSettingsAdvanced.textBackColor":"Fondo de la celda","DE.Views.TableSettingsAdvanced.textBelow":"abajo","DE.Views.TableSettingsAdvanced.textBorderColor":"Color del borde","DE.Views.TableSettingsAdvanced.textBorderDesc":"Haga clic en el diagrama o use los botones para seleccionar los bordes y aplicar el estilo seleccionado","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"Bordes y fondo","DE.Views.TableSettingsAdvanced.textBorderWidth":"Tamaño del borde","DE.Views.TableSettingsAdvanced.textBottom":"Inferior","DE.Views.TableSettingsAdvanced.textCellOptions":"Opciones de la celda","DE.Views.TableSettingsAdvanced.textCellProps":"Celda","DE.Views.TableSettingsAdvanced.textCellSize":"Tamaño de la сelda","DE.Views.TableSettingsAdvanced.textCenter":"Centrada","DE.Views.TableSettingsAdvanced.textCenterTooltip":"Centrada","DE.Views.TableSettingsAdvanced.textCheckMargins":"Usar márgenes predeterminados","DE.Views.TableSettingsAdvanced.textDefaultMargins":"Márgenes de la celda predeterminados","DE.Views.TableSettingsAdvanced.textDistance":"Distancia desde el texto","DE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal ","DE.Views.TableSettingsAdvanced.textIndLeft":"Sangría a la izquierda","DE.Views.TableSettingsAdvanced.textLeft":"Izquierda","DE.Views.TableSettingsAdvanced.textLeftTooltip":"Izquierda","DE.Views.TableSettingsAdvanced.textMargin":"Margen","DE.Views.TableSettingsAdvanced.textMargins":"Márgenes de la celda","DE.Views.TableSettingsAdvanced.textMeasure":"Medir en","DE.Views.TableSettingsAdvanced.textMove":"Desplazar objeto con texto","DE.Views.TableSettingsAdvanced.textOnlyCells":"Solo para celdas seleccionadas","DE.Views.TableSettingsAdvanced.textOptions":"Opciones","DE.Views.TableSettingsAdvanced.textOverlap":"Superposición","DE.Views.TableSettingsAdvanced.textPage":"Página","DE.Views.TableSettingsAdvanced.textPosition":"Posición","DE.Views.TableSettingsAdvanced.textPrefWidth":"Anchura preferida","DE.Views.TableSettingsAdvanced.textPreview":"Vista previa","DE.Views.TableSettingsAdvanced.textRelative":"en relación con","DE.Views.TableSettingsAdvanced.textRight":"Derecha","DE.Views.TableSettingsAdvanced.textRightOf":"a la derecha de","DE.Views.TableSettingsAdvanced.textRightTooltip":"Derecha","DE.Views.TableSettingsAdvanced.textTable":"Tabla","DE.Views.TableSettingsAdvanced.textTableBackColor":"Fondo de la tabla","DE.Views.TableSettingsAdvanced.textTablePosition":"Posición de la tabla","DE.Views.TableSettingsAdvanced.textTableSize":"Tamaño de la tabla","DE.Views.TableSettingsAdvanced.textTitle":"Tabla - Ajustes avanzados","DE.Views.TableSettingsAdvanced.textTop":"Superior","DE.Views.TableSettingsAdvanced.textVertical":"Vertical","DE.Views.TableSettingsAdvanced.textWidth":"Ancho","DE.Views.TableSettingsAdvanced.textWidthSpaces":"Ancho y espacios","DE.Views.TableSettingsAdvanced.textWrap":"Ajustar el texto al tamaño de la celda","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"Tabla anclada","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"Tabla incrustada","DE.Views.TableSettingsAdvanced.textWrappingStyle":"Estilo de ajuste","DE.Views.TableSettingsAdvanced.textWrapText":"Ajustar texto","DE.Views.TableSettingsAdvanced.tipAll":"Establecer borde exterior y todas líneas interiores","DE.Views.TableSettingsAdvanced.tipCellAll":"Establecer bordes solo para celdas interiores","DE.Views.TableSettingsAdvanced.tipCellInner":"Establecer líneas verticales y horizontales solo para celdas interiores","DE.Views.TableSettingsAdvanced.tipCellOuter":"Establecer bordes exteriores solo para celdas inferiores","DE.Views.TableSettingsAdvanced.tipInner":"Establecer solo líneas interiores","DE.Views.TableSettingsAdvanced.tipNone":"No establecer bordes","DE.Views.TableSettingsAdvanced.tipOuter":"Establecer solo borde exterior","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"Establecer borde exterior y bordes para todas celdas inferiores","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"Establecer borde exterior y líneas verticales y horizontales para celdas inferiores","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"Establecer borde de tabla exterior y bordes exteriores para celdas interiores","DE.Views.TableSettingsAdvanced.txtCm":"Centímetros","DE.Views.TableSettingsAdvanced.txtInch":"Pulgadas","DE.Views.TableSettingsAdvanced.txtNoBorders":"Sin bordes","DE.Views.TableSettingsAdvanced.txtPercent":"Porcentaje","DE.Views.TableSettingsAdvanced.txtPt":"Punto","DE.Views.TableToTextDialog.textEmpty":"Debe escribir un carácter para el separador personalizado.","DE.Views.TableToTextDialog.textNested":"Convertir tablas anidadas","DE.Views.TableToTextDialog.textOther":"Otro","DE.Views.TableToTextDialog.textPara":"Marcas de párrafo","DE.Views.TableToTextDialog.textSemicolon":"Signos de punto y coma","DE.Views.TableToTextDialog.textSeparator":"Separadores","DE.Views.TableToTextDialog.textTab":"Tabuladores","DE.Views.TableToTextDialog.textTitle":"Convertir tabla en texto","DE.Views.TextArtSettings.strColor":"Color","DE.Views.TextArtSettings.strFill":"Relleno","DE.Views.TextArtSettings.strSize":"Tamaño","DE.Views.TextArtSettings.strStroke":"Gráfico de líneas","DE.Views.TextArtSettings.strTransparency":"Opacidad","DE.Views.TextArtSettings.strType":"Tipo","DE.Views.TextArtSettings.textAngle":"Ángulo","DE.Views.TextArtSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","DE.Views.TextArtSettings.textColor":"Relleno de color","DE.Views.TextArtSettings.textDirection":"Dirección","DE.Views.TextArtSettings.textGradient":"Puntos de gradiente","DE.Views.TextArtSettings.textGradientFill":"Relleno degradado","DE.Views.TextArtSettings.textLinear":"Lineal","DE.Views.TextArtSettings.textNoFill":"Sin relleno","DE.Views.TextArtSettings.textPosition":"Posición","DE.Views.TextArtSettings.textRadial":"Radial","DE.Views.TextArtSettings.textSelectTexture":"Seleccionar","DE.Views.TextArtSettings.textStyle":"Estilo","DE.Views.TextArtSettings.textTemplate":"Plantilla","DE.Views.TextArtSettings.textTransform":"Transformar","DE.Views.TextArtSettings.tipAddGradientPoint":"Añadir punto de degradado","DE.Views.TextArtSettings.tipRemoveGradientPoint":"Eliminar punto de degradado","DE.Views.TextArtSettings.txtNoBorders":"Sin línea","DE.Views.TextToTableDialog.textAutofit":"Autoajuste","DE.Views.TextToTableDialog.textColumns":"Columnas","DE.Views.TextToTableDialog.textContents":"Autoajustar al contenido","DE.Views.TextToTableDialog.textEmpty":"Debe escribir un carácter para el separador personalizado.","DE.Views.TextToTableDialog.textFixed":"Ancho de columna fijo","DE.Views.TextToTableDialog.textOther":"Otro","DE.Views.TextToTableDialog.textPara":"Párrafos","DE.Views.TextToTableDialog.textRows":"Filas","DE.Views.TextToTableDialog.textSemicolon":"Signos de punto y coma","DE.Views.TextToTableDialog.textSeparator":"Separar texto en","DE.Views.TextToTableDialog.textTab":"Tabuladores","DE.Views.TextToTableDialog.textTableSize":"Tamaño de la tabla","DE.Views.TextToTableDialog.textTitle":"Convertir texto en tabla","DE.Views.TextToTableDialog.textWindow":"Autoajustar a la ventana","DE.Views.TextToTableDialog.txtAutoText":"Auto","DE.Views.Toolbar.capBtnAddComment":"Añadir comentario","DE.Views.Toolbar.capBtnBlankPage":"Página en blanco","DE.Views.Toolbar.capBtnColumns":"Columnas","DE.Views.Toolbar.capBtnComment":"Comentario","DE.Views.Toolbar.capBtnHand":"Mano","DE.Views.Toolbar.capBtnHyphenation":"Guiones","DE.Views.Toolbar.capBtnInsChart":"Diagrama","DE.Views.Toolbar.capBtnInsControls":"Controles de contenido","DE.Views.Toolbar.capBtnInsDropcap":"Letras capitulares","DE.Views.Toolbar.capBtnInsEquation":"Ecuación","DE.Views.Toolbar.capBtnInsHeader":"Encabezado/Pie de página","DE.Views.Toolbar.capBtnInsPagebreak":"Saltos","DE.Views.Toolbar.capBtnInsShape":"Forma","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"Símbolo","DE.Views.Toolbar.capBtnInsTable":"Tabla","DE.Views.Toolbar.capBtnInsTextart":"Galería de texto","DE.Views.Toolbar.capBtnInsTextbox":"Cuadro de Texto","DE.Views.Toolbar.capBtnInsTextFromFile":"Texto de archivo","DE.Views.Toolbar.capBtnLineNumbers":"Numeración de líneas","DE.Views.Toolbar.capBtnMargins":"Márgenes","DE.Views.Toolbar.capBtnPageColor":"Color de página","DE.Views.Toolbar.capBtnPageOrient":"Orientación","DE.Views.Toolbar.capBtnPageSize":"Tamaño","DE.Views.Toolbar.capBtnSelect":"Seleccionar","DE.Views.Toolbar.capBtnWatermark":"Marca de agua","DE.Views.Toolbar.capColorScheme":"Colores","DE.Views.Toolbar.capImgAlign":"Alinear","DE.Views.Toolbar.capImgBackward":"Enviar atrás","DE.Views.Toolbar.capImgForward":"Enviar adelante","DE.Views.Toolbar.capImgGroup":"Agrupar","DE.Views.Toolbar.capImgWrapping":"Ajuste","DE.Views.Toolbar.capShapesMerge":"Fusionar formas","DE.Views.Toolbar.mniCapitalizeWords":"Poner en mayúsculas cada palabra","DE.Views.Toolbar.mniCustomTable":"Insertar tabla personalizada","DE.Views.Toolbar.mniDrawTable":"Dibujar tabla","DE.Views.Toolbar.mniEditControls":"Ajustes de control","DE.Views.Toolbar.mniEditDropCap":"Ajustes de letra capitular","DE.Views.Toolbar.mniEditFooter":"Editar pie de página","DE.Views.Toolbar.mniEditHeader":"Editar encabezado","DE.Views.Toolbar.mniEraseTable":"Eliminar tabla","DE.Views.Toolbar.mniFromFile":"Desde archivo","DE.Views.Toolbar.mniFromStorage":"Desde almacenamiento","DE.Views.Toolbar.mniFromUrl":"Desde URL","DE.Views.Toolbar.mniHiddenBorders":"Bordes de tabla ocultos","DE.Views.Toolbar.mniHiddenChars":"Caracteres no imprimibles","DE.Views.Toolbar.mniHighlightControls":"Ajustes de resaltado","DE.Views.Toolbar.mniInsertSSE":"Insertar hoja de cálculo","DE.Views.Toolbar.mniLowerCase":"minúsculas","DE.Views.Toolbar.mniRemoveFooter":"Quitar pie de página","DE.Views.Toolbar.mniRemoveHeader":"Quitar encabezado","DE.Views.Toolbar.mniSentenceCase":"Tipo oración.","DE.Views.Toolbar.mniTextFromLocalFile":"Texto del archivo local","DE.Views.Toolbar.mniTextFromStorage":"Texto del archivo de almacenamiento","DE.Views.Toolbar.mniTextFromURL":"Texto del archivo de URL","DE.Views.Toolbar.mniTextToTable":"Convertir texto en tabla","DE.Views.Toolbar.mniToggleCase":"tIPO iNVERSO","DE.Views.Toolbar.mniUpperCase":"MAYÚSCULAS","DE.Views.Toolbar.strMenuNoFill":"Sin relleno","DE.Views.Toolbar.textAddSpaceAfter":"Añadir espacio después del párrafo","DE.Views.Toolbar.textAddSpaceBefore":"Añadir espacio antes del párrafo","DE.Views.Toolbar.textAllBorders":"Todos los bordes","DE.Views.Toolbar.textAlpha":"Letra minúscula griega Alfa","DE.Views.Toolbar.textAuto":"Automático","DE.Views.Toolbar.textAutoColor":"Automático","DE.Views.Toolbar.textBetta":"Letra minúscula griega Beta","DE.Views.Toolbar.textBlackHeart":"Corazón negro","DE.Views.Toolbar.textBold":"Negrita","DE.Views.Toolbar.textBordersColor":"Color de borde","DE.Views.Toolbar.textBordersStyle":"Estilo de borde","DE.Views.Toolbar.textBottom":"Inferior: ","DE.Views.Toolbar.textBottomBorders":"Bordes inferiores","DE.Views.Toolbar.textBullet":"Viñeta","DE.Views.Toolbar.textChangeLevel":"Cambiar nivel de lista","DE.Views.Toolbar.textCheckboxControl":"Casilla de selección","DE.Views.Toolbar.textColumnsCustom":"Columnas personalizadas","DE.Views.Toolbar.textColumnsLeft":"Izquierda","DE.Views.Toolbar.textColumnsOne":"Una","DE.Views.Toolbar.textColumnsRight":"Derecha","DE.Views.Toolbar.textColumnsThree":"Tres","DE.Views.Toolbar.textColumnsTwo":"Dos","DE.Views.Toolbar.textComboboxControl":"Cuadro combinado","DE.Views.Toolbar.textContinuous":"Continuo","DE.Views.Toolbar.textContPage":"Página continua","DE.Views.Toolbar.textCopyright":"Signo de «copyright»","DE.Views.Toolbar.textCustomHyphen":"Opciones de guiones","DE.Views.Toolbar.textCustomLineNumbers":"Opciones de numeración de líneas","DE.Views.Toolbar.textDateControl":"Selector de fecha","DE.Views.Toolbar.textDegree":"Símbolo de grado","DE.Views.Toolbar.textDelta":"Letra minúscula griega Delta","DE.Views.Toolbar.textDirLtr":"De izquierda a derecha","DE.Views.Toolbar.textDirRtl":"De derecha a izquierda","DE.Views.Toolbar.textDivision":"Signo de división","DE.Views.Toolbar.textDollar":"Signo de dólar","DE.Views.Toolbar.textDropdownControl":"Lista desplegable","DE.Views.Toolbar.textEditMode":"Editar PDF","DE.Views.Toolbar.textEditWatermark":"Marca de agua personalizada","DE.Views.Toolbar.textEuro":"Signo de euro","DE.Views.Toolbar.textEvenPage":"Página par","DE.Views.Toolbar.textGreaterEqual":"Mayor que o igual a","DE.Views.Toolbar.textIndAfter":"Sangría después","DE.Views.Toolbar.textIndBefore":"Sangría antes","DE.Views.Toolbar.textIndLeft":"Sangría izquierda","DE.Views.Toolbar.textIndRight":"Sangría derecha","DE.Views.Toolbar.textInfinity":"Infinito","DE.Views.Toolbar.textInMargin":"En margen","DE.Views.Toolbar.textInsColumnBreak":"Insertar salto de columna","DE.Views.Toolbar.textInsertPageCount":"Insertar el número de páginas","DE.Views.Toolbar.textInsertPageNumber":"Insertar número de página","DE.Views.Toolbar.textInsideBorders":"Bordes internos","DE.Views.Toolbar.textInsideHorBorders":"Bordes horizontales internos","DE.Views.Toolbar.textInsideVertBorders":"Bordes verticales internos","DE.Views.Toolbar.textInsPageBreak":"Insertar salto de página","DE.Views.Toolbar.textInsSectionBreak":"Insertar salto de sección","DE.Views.Toolbar.textInText":"En texto","DE.Views.Toolbar.textItalic":"Cursiva","DE.Views.Toolbar.textLandscape":"Horizontal","DE.Views.Toolbar.textLeft":"Izquierdo: ","DE.Views.Toolbar.textLeftBorders":"Bordes izquierdos","DE.Views.Toolbar.textLessEqual":"Menor que o igual a","DE.Views.Toolbar.textLetterPi":"Letra minúscula griega Pi","DE.Views.Toolbar.textLineSpaceOptions":"Opciones de interlineado","DE.Views.Toolbar.textListSettings":"Ajustes de lista","DE.Views.Toolbar.textMarginsLast":"último personalizado","DE.Views.Toolbar.textMarginsModerate":"Moderar","DE.Views.Toolbar.textMarginsNarrow":"Estrecho","DE.Views.Toolbar.textMarginsNormal":"Normal","DE.Views.Toolbar.textMarginsWide":"Amplio","DE.Views.Toolbar.textMoreSymbols":"Más símbolos","DE.Views.Toolbar.textNewColor":"Más colores","DE.Views.Toolbar.textNextPage":"Página siguiente","DE.Views.Toolbar.textNoBorders":"Sin bordes","DE.Views.Toolbar.textNoHighlight":"No resaltar","DE.Views.Toolbar.textNone":"No","DE.Views.Toolbar.textNotEqualTo":"No igual a","DE.Views.Toolbar.textOddPage":"Página impar","DE.Views.Toolbar.textOneHalf":"Fracción vulgar a la mitad","DE.Views.Toolbar.textOneQuarter":"Fracción vulgar de un cuarto","DE.Views.Toolbar.textOutBorders":"Bordes externos","DE.Views.Toolbar.textPageMarginsCustom":"Márgenes personalizados","DE.Views.Toolbar.textPageSizeCustom":"Tamaño de página personalizado","DE.Views.Toolbar.textPictureControl":"Imagen","DE.Views.Toolbar.textPlainControl":"Texto sin formato","DE.Views.Toolbar.textPlusMinus":"Signo de más-menos","DE.Views.Toolbar.textPortrait":"Vertical","DE.Views.Toolbar.textRegistered":"Signo de marca registrada","DE.Views.Toolbar.textRemoveControl":"Eliminar control de contenido","DE.Views.Toolbar.textRemSpaceAfter":"Eliminar espacio después del párrafo","DE.Views.Toolbar.textRemSpaceBefore":"Eliminar espacio antes del párrafo","DE.Views.Toolbar.textRemWatermark":"Quitar marca de agua","DE.Views.Toolbar.textRestartEachPage":"Reiniciar en cada página","DE.Views.Toolbar.textRestartEachSection":"Reiniciar en cada sección","DE.Views.Toolbar.textRichControl":"Texto enriquecido","DE.Views.Toolbar.textRight":"Derecho: ","DE.Views.Toolbar.textRightBorders":"Bordes derechos","DE.Views.Toolbar.textSection":"Signo de sección","DE.Views.Toolbar.textShapesCombine":"Combinar","DE.Views.Toolbar.textShapesFragment":"Fragmento","DE.Views.Toolbar.textShapesIntersect":"Formar intersección","DE.Views.Toolbar.textShapesSubstract":"Restar","DE.Views.Toolbar.textShapesUnion":"Unión","DE.Views.Toolbar.textSmile":"Cara blanca sonriente","DE.Views.Toolbar.textSpaceAfter":"Espacio después","DE.Views.Toolbar.textSpaceBefore":"Espacio antes","DE.Views.Toolbar.textSquareRoot":"Raíz cuadrada","DE.Views.Toolbar.textStrikeout":"Tachado","DE.Views.Toolbar.textStyleMenuDelete":"Eliminar estilo","DE.Views.Toolbar.textStyleMenuDeleteAll":"Eliminar todos los estilos personalizados","DE.Views.Toolbar.textStyleMenuNew":"Nuevo estilo de la selección","DE.Views.Toolbar.textStyleMenuRestore":"Restablecer a predeterminado","DE.Views.Toolbar.textStyleMenuRestoreAll":"Restaurar todo a estilos predeterminados ","DE.Views.Toolbar.textStyleMenuUpdate":"Actualizar de la selección","DE.Views.Toolbar.textSubscript":"Subíndice","DE.Views.Toolbar.textSuperscript":"Superíndice","DE.Views.Toolbar.textSuppressForCurrentParagraph":"Suprimir del párrafo actual","DE.Views.Toolbar.textTabCollaboration":"Colaboración","DE.Views.Toolbar.textTabDraw":"Dibujar","DE.Views.Toolbar.textTabFile":"Archivo","DE.Views.Toolbar.textTabHeaderFooter":"Encabezado/Pie de página","DE.Views.Toolbar.textTabHome":"Inicio","DE.Views.Toolbar.textTabInsert":"Insertar","DE.Views.Toolbar.textTabLayout":"Diseño","DE.Views.Toolbar.textTabLinks":"Referencias","DE.Views.Toolbar.textTabProtect":"Protección","DE.Views.Toolbar.textTabReview":"Revisar","DE.Views.Toolbar.textTabView":"Vista","DE.Views.Toolbar.textTilde":"Tilde","DE.Views.Toolbar.textTitleError":"Error","DE.Views.Toolbar.textToCurrent":"A la posición actual","DE.Views.Toolbar.textTop":"Superior: ","DE.Views.Toolbar.textTopBorders":"Bordes superiores","DE.Views.Toolbar.textTradeMark":"Signo de marca comercial","DE.Views.Toolbar.textUnderline":"Subrayado","DE.Views.Toolbar.textYen":"Signo de yen","DE.Views.Toolbar.tipAlignCenter":"Alinear al centro","DE.Views.Toolbar.tipAlignJust":"Justificar","DE.Views.Toolbar.tipAlignLeft":"Alinear a la izquierda","DE.Views.Toolbar.tipAlignRight":"Alinear a la derecha","DE.Views.Toolbar.tipBack":"Atrás","DE.Views.Toolbar.tipBlankPage":"Insertar página en blanco","DE.Views.Toolbar.tipBorders":"Bordes","DE.Views.Toolbar.tipChangeCase":"Cambiar mayúsculas y minúsculas","DE.Views.Toolbar.tipChangeChart":"Cambiar tipo de gráfico","DE.Views.Toolbar.tipClearStyle":"Eliminar estilo","DE.Views.Toolbar.tipColorSchemas":"Cambiar combinación de colores","DE.Views.Toolbar.tipColumns":"Insertar columnas","DE.Views.Toolbar.tipControls":"Insertar controles de contenido","DE.Views.Toolbar.tipCopy":"Copiar","DE.Views.Toolbar.tipCopyStyle":"Copiar estilo","DE.Views.Toolbar.tipCut":"Cortar","DE.Views.Toolbar.tipDecFont":"Reducir tamaño de la fuente","DE.Views.Toolbar.tipDecPrLeft":"Reducir sangría","DE.Views.Toolbar.tipDownload":"Descargar archivo","DE.Views.Toolbar.tipDropCap":"Insertar letra capitular","DE.Views.Toolbar.tipEditMode":"Editar el archivo actual.
La página se recargará.","DE.Views.Toolbar.tipFontColor":"Color de la fuente","DE.Views.Toolbar.tipFontName":"Fuente","DE.Views.Toolbar.tipFontSize":"Tamaño de la fuente","DE.Views.Toolbar.tipHandTool":"Herramienta de mano","DE.Views.Toolbar.tipHighlightColor":"Color de resaltado","DE.Views.Toolbar.tipHyphenation":"Cambiar guiones","DE.Views.Toolbar.tipImgAlign":"Alinear objetos","DE.Views.Toolbar.tipImgGroup":"Agrupar objetos","DE.Views.Toolbar.tipImgWrapping":"Ajustar texto","DE.Views.Toolbar.tipIncFont":"Aumentar tamaño de la fuente","DE.Views.Toolbar.tipIncPrLeft":"Aumentar sangría","DE.Views.Toolbar.tipInsertChart":"Insertar gráfico","DE.Views.Toolbar.tipInsertEquation":"Insertar ecuación","DE.Views.Toolbar.tipInsertHorizontalText":"Insertar cuadro de texto horizontal","DE.Views.Toolbar.tipInsertNum":"Insertar número de página","DE.Views.Toolbar.tipInsertShape":"Insertar forma","DE.Views.Toolbar.tipInsertSmartArt":"Insertar 'smartart'","DE.Views.Toolbar.tipInsertSymbol":"Insertar símbolo","DE.Views.Toolbar.tipInsertTable":"Insertar tabla","DE.Views.Toolbar.tipInsertText":"Insertar cuadro de texto","DE.Views.Toolbar.tipInsertTextArt":"Insertar galería de texto","DE.Views.Toolbar.tipInsertVerticalText":"Insertar cuadro de texto vertical","DE.Views.Toolbar.tipLineNumbers":"Mostrar números de línea","DE.Views.Toolbar.tipLineSpace":"Espaciado de línea de párrafo","DE.Views.Toolbar.tipMailRecepients":"Combinación de correspondencia","DE.Views.Toolbar.tipMarkers":"Viñetas","DE.Views.Toolbar.tipMarkersArrow":"Viñetas de flecha","DE.Views.Toolbar.tipMarkersCheckmark":"Viñetas de marca de verificación","DE.Views.Toolbar.tipMarkersDash":"Viñetas guion","DE.Views.Toolbar.tipMarkersFRhombus":"Rombos rellenos","DE.Views.Toolbar.tipMarkersFRound":"Viñetas redondas rellenas","DE.Views.Toolbar.tipMarkersFSquare":"Viñetas cuadradas rellenas","DE.Views.Toolbar.tipMarkersHRound":"Viñetas redondas huecas","DE.Views.Toolbar.tipMarkersStar":"Viñetas de estrella","DE.Views.Toolbar.tipMultiLevelArticl":"Artículos numerados en varios niveles","DE.Views.Toolbar.tipMultiLevelChapter":"Capítulos numerados en varios niveles","DE.Views.Toolbar.tipMultiLevelHeadings":"Títulos numerados en varios niveles","DE.Views.Toolbar.tipMultiLevelHeadVarious":"Títulos numerados en varios niveles","DE.Views.Toolbar.tipMultiLevelNumbered":"Viñetas numeradas de varios niveles","DE.Views.Toolbar.tipMultilevels":"Esquema","DE.Views.Toolbar.tipMultiLevelSymbols":"Viñetas de símbolos de varios niveles","DE.Views.Toolbar.tipMultiLevelVarious":"Viñetas numeradas de varios niveles","DE.Views.Toolbar.tipNumbers":"Numeración","DE.Views.Toolbar.tipPageBreak":"Insertar salto de página o de sección","DE.Views.Toolbar.tipPageColor":"Cambiar color de página","DE.Views.Toolbar.tipPageMargins":"Márgenes de la página","DE.Views.Toolbar.tipPageOrient":"Orientación de la página","DE.Views.Toolbar.tipPageSize":"Tamaño de la página","DE.Views.Toolbar.tipParagraphStyle":"Estilo de párrafo","DE.Views.Toolbar.tipPaste":"Pegar","DE.Views.Toolbar.tipPrColor":"Sombreado","DE.Views.Toolbar.tipPrint":"Imprimir","DE.Views.Toolbar.tipPrintQuick":"Impresión rápida","DE.Views.Toolbar.tipRedo":"Rehacer","DE.Views.Toolbar.tipReplace":"Reemplazar","DE.Views.Toolbar.tipSave":"Guardar","DE.Views.Toolbar.tipSaveCoauth":"Guarde sus modificaciones para que otros usuarios puedan verlas.","DE.Views.Toolbar.tipSelectAll":"Seleccionar todo","DE.Views.Toolbar.tipSelectTool":"Seleccionar herramienta","DE.Views.Toolbar.tipSendBackward":"Enviar al fondo","DE.Views.Toolbar.tipSendForward":"Traer al frente","DE.Views.Toolbar.tipShapesMerge":"Fusionar formas","DE.Views.Toolbar.tipShowHiddenChars":"Caracteres no imprimibles","DE.Views.Toolbar.tipSynchronize":"El documento ha sido modificado por otro usuario. Por favor haga clic para guardar sus cambios y recargue el documento.","DE.Views.Toolbar.tipTextDir":"Dirección del texto","DE.Views.Toolbar.tipTextFromFile":"Texto de archivo","DE.Views.Toolbar.tipUndo":"Deshacer","DE.Views.Toolbar.tipWatermark":"Editar marca de agua","DE.Views.Toolbar.txtAutoText":"Auto","DE.Views.Toolbar.txtDistribHor":"Distribuir horizontalmente","DE.Views.Toolbar.txtDistribVert":"Distribuir verticalmente","DE.Views.Toolbar.txtGroupBulletDoc":"Viñetas de documento","DE.Views.Toolbar.txtGroupBulletLib":"Biblioteca de viñetas","DE.Views.Toolbar.txtGroupMultiDoc":"Listas en el documento actual","DE.Views.Toolbar.txtGroupMultiLib":"Biblioteca de listas","DE.Views.Toolbar.txtGroupNumDoc":"Formatos de numeración de documentos","DE.Views.Toolbar.txtGroupNumLib":"Biblioteca de numeración","DE.Views.Toolbar.txtGroupRecent":"Usados recientemente","DE.Views.Toolbar.txtMarginAlign":"Alinear al margen","DE.Views.Toolbar.txtObjectsAlign":"Alinear objetos seleccionados","DE.Views.Toolbar.txtPageAlign":"Alinear a la página","DE.Views.ViewTab.textAlwaysShowToolbar":"Mostrar siempre la barra de herramientas","DE.Views.ViewTab.textDarkDocument":"Documento oscuro","DE.Views.ViewTab.textFill":"Rellenar","DE.Views.ViewTab.textFitToPage":"Ajustar a la página","DE.Views.ViewTab.textFitToWidth":"Ajustar al ancho","DE.Views.ViewTab.textInterfaceTheme":"Tema de la interfaz","DE.Views.ViewTab.textLeftMenu":"Panel izquierdo","DE.Views.ViewTab.textLine":"Línea","DE.Views.ViewTab.textMacros":"Macros","DE.Views.ViewTab.textMultiplePages":"Múltiples páginas","DE.Views.ViewTab.textNavigation":"Navegación","DE.Views.ViewTab.textOutline":"Títulos","DE.Views.ViewTab.textPauseMacro":"Pausar la grabación","DE.Views.ViewTab.textRecMacro":"Grabar macro","DE.Views.ViewTab.textResumeMacro":"Continuar la grabación","DE.Views.ViewTab.textRightMenu":"Panel derecho","DE.Views.ViewTab.textRulers":"Reglas","DE.Views.ViewTab.textStatusBar":"Barra de estado","DE.Views.ViewTab.textStopMacro":"Detener la grabación","DE.Views.ViewTab.textTabStyle":"Estilo de pestaña","DE.Views.ViewTab.textZoom":"Ampliación","DE.Views.ViewTab.textZoom100":"Ampliar al 100 %","DE.Views.ViewTab.tipDarkDocument":"Documento oscuro","DE.Views.ViewTab.tipFitToPage":"Ajustar a la página","DE.Views.ViewTab.tipFitToWidth":"Ajustar al ancho","DE.Views.ViewTab.tipHeadings":"Títulos","DE.Views.ViewTab.tipInterfaceTheme":"Tema de la interfaz","DE.Views.ViewTab.tipMacros":"Macros","DE.Views.ViewTab.tipMultiplePages":"Múltiples páginas","DE.Views.ViewTab.tipPauseMacro":"Pausar la grabación","DE.Views.ViewTab.tipRecMacro":"Grabar macro","DE.Views.ViewTab.tipResumeMacro":"Continuar la grabación","DE.Views.ViewTab.tipStopMacro":"Detener la grabación","DE.Views.ViewTab.tipZoom100":"Ampliar al 100 %","DE.Views.WatermarkSettingsDialog.textAuto":"Auto","DE.Views.WatermarkSettingsDialog.textBold":"Negrita","DE.Views.WatermarkSettingsDialog.textColor":"Color del texto","DE.Views.WatermarkSettingsDialog.textDiagonal":"Diagonal","DE.Views.WatermarkSettingsDialog.textFont":"Fuente","DE.Views.WatermarkSettingsDialog.textFromFile":"Desde archivo","DE.Views.WatermarkSettingsDialog.textFromStorage":"Desde almacenamiento","DE.Views.WatermarkSettingsDialog.textFromUrl":"Desde URL","DE.Views.WatermarkSettingsDialog.textHor":"Horizontal","DE.Views.WatermarkSettingsDialog.textImageW":"Marca de agua de imagen","DE.Views.WatermarkSettingsDialog.textItalic":"Cursiva","DE.Views.WatermarkSettingsDialog.textLanguage":"Idioma","DE.Views.WatermarkSettingsDialog.textLayout":"Disposición","DE.Views.WatermarkSettingsDialog.textNone":"Ninguna","DE.Views.WatermarkSettingsDialog.textScale":"Escala","DE.Views.WatermarkSettingsDialog.textSelect":"Seleccionar imagen","DE.Views.WatermarkSettingsDialog.textStrikeout":"Tachado","DE.Views.WatermarkSettingsDialog.textText":"Texto","DE.Views.WatermarkSettingsDialog.textTextW":"Marca de agua de texto","DE.Views.WatermarkSettingsDialog.textTitle":"Ajustes de marca de agua","DE.Views.WatermarkSettingsDialog.textTransparency":"Semitransparente","DE.Views.WatermarkSettingsDialog.textUnderline":"Subrayado","DE.Views.WatermarkSettingsDialog.tipFontName":"Nombre de la fuente","DE.Views.WatermarkSettingsDialog.tipFontSize":"Tamaño de la fuente"} \ No newline at end of file diff --git a/public/web-apps/apps/documenteditor/main/locale/ja.json b/public/web-apps/apps/documenteditor/main/locale/ja.json index 9eebae9dc..1224f33e6 100644 --- a/public/web-apps/apps/documenteditor/main/locale/ja.json +++ b/public/web-apps/apps/documenteditor/main/locale/ja.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.ExternalDiagramEditor.textAnonymous":"匿名者","Common.Controllers.ExternalDiagramEditor.textClose":"閉じる","Common.Controllers.ExternalDiagramEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalDiagramEditor.warningTitle":"警告","Common.Controllers.ExternalLinks.textAddExternalData":"外部ソースへのリンクが追加されました。このようなリンクは、「データ」タブで更新することができます。","Common.Controllers.ExternalLinks.textDontUpdate":"アップデートしない","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"エラー:アップデートに失敗しました","Common.Controllers.ExternalLinks.warnUpdateExternalData":"このワークブックには、安全でない可能性のある1つまたは複数の外部ソースへのリンクが含まれています。
リンクを信頼する場合は、最新のデータを取得するためにそれらを更新してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"このドキュメントには、安全でない可能性のある外部ソースへのリンクが1つ以上含まれています。
リンクを信頼できる場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"このプレゼンテーションには、安全でない可能性のある外部ソースへのリンクが含まれています。
リンクを信頼する場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalMergeEditor.textAnonymous":"匿名者","Common.Controllers.ExternalMergeEditor.textClose":"閉じる","Common.Controllers.ExternalMergeEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalMergeEditor.warningTitle":"警告","Common.Controllers.ExternalOleEditor.textAnonymous":"匿名","Common.Controllers.ExternalOleEditor.textClose":"閉じる","Common.Controllers.ExternalOleEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalOleEditor.warningTitle":"警告","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"履歴の読み込みに失敗しました。","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"文書を比較するために、文書内のすべての変更履歴が承認されたと見なされます。続行しますか?","Common.Controllers.ReviewChanges.textAtLeast":"最小","Common.Controllers.ReviewChanges.textAuto":"自動","Common.Controllers.ReviewChanges.textBaseline":"ベースライン","Common.Controllers.ReviewChanges.textBold":"太字","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.textDeleted":"削除済み:","Common.Controllers.ReviewChanges.textDStrikeout":"二重取り消し線","Common.Controllers.ReviewChanges.textEquation":"方程式\t","Common.Controllers.ReviewChanges.textExact":"固定値","Common.Controllers.ReviewChanges.textFirstLine":"最初の行","Common.Controllers.ReviewChanges.textFontSize":"フォントのサイズ","Common.Controllers.ReviewChanges.textFormatted":"書式設定済み","Common.Controllers.ReviewChanges.textHighlight":"ハイライトの色","Common.Controllers.ReviewChanges.textImage":"画像","Common.Controllers.ReviewChanges.textIndentLeft":"左インデント","Common.Controllers.ReviewChanges.textIndentRight":"右インデント","Common.Controllers.ReviewChanges.textInserted":"挿入済み:","Common.Controllers.ReviewChanges.textItalic":"イタリック","Common.Controllers.ReviewChanges.textJustify":"両端揃え","Common.Controllers.ReviewChanges.textKeepLines":"段落を分割しない","Common.Controllers.ReviewChanges.textKeepNext":"次の段落と分離しない","Common.Controllers.ReviewChanges.textLeft":"左揃え","Common.Controllers.ReviewChanges.textLineSpacing":"行間:","Common.Controllers.ReviewChanges.textMultiple":"倍数","Common.Controllers.ReviewChanges.textNoBreakBefore":"前にページ区切りなし","Common.Controllers.ReviewChanges.textNoContextual":"同じスタイルの段落の間に間隔を追加する","Common.Controllers.ReviewChanges.textNoKeepLines":"段落を分割する","Common.Controllers.ReviewChanges.textNoKeepNext":"次の段落と分離する","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":"段落が挿入されました","Common.Controllers.ReviewChanges.textParaMoveFromDown":"下に移動済み:","Common.Controllers.ReviewChanges.textParaMoveFromUp":"上に移動済み:","Common.Controllers.ReviewChanges.textParaMoveTo":"移動済み:","Common.Controllers.ReviewChanges.textPosition":"位置","Common.Controllers.ReviewChanges.textRight":"右揃え","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":"取り消し線","Common.Controllers.ReviewChanges.textSubScript":"下付き文字","Common.Controllers.ReviewChanges.textSuperScript":"上付き文字","Common.Controllers.ReviewChanges.textTableChanged":"テーブル設定が変更されました","Common.Controllers.ReviewChanges.textTableRowsAdd":"テーブルに行が追加されました","Common.Controllers.ReviewChanges.textTableRowsDel":"テーブルの行が削除されました","Common.Controllers.ReviewChanges.textTabs":"タブの変更","Common.Controllers.ReviewChanges.textTitleComparison":"比較設定","Common.Controllers.ReviewChanges.textUnderline":"アンダーライン","Common.Controllers.ReviewChanges.textUrl":"ドキュメントのURLを貼り付け","Common.Controllers.ReviewChanges.textWidow":"ウインドウ制御","Common.Controllers.ReviewChanges.textWord":"単語レベル","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"テーブルの一番下に新しい行を追加する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"選択したテキスト部分に見出し1のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"選択したテキスト部分に見出し2のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"選択されたテキスト部分に見出し3のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"選択したテキスト断片から順不同の箇条書きリストを作成するか、新しいリストを開始する。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"キーボードの矢印キーを使って、選択したオブジェクトを大きく下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"キーボードの矢印キーを使って、選択したオブジェクトを大きく左に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"キーボードの矢印キーを使って、選択したオブジェクトを大きく右に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"キーボードの矢印キーを使って、選択したオブジェクトを大きく上に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBold":"選択したテキストのフォントを通常より濃く、太くする。","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"段落の配置を中央揃えと左揃えの間で切り替える。","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"フォームで次のコンボボックスオプションを選択する。","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"フォームの前のコンボボックスオプションを選択する。","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"現在の文書ウィンドウを閉じる。","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"メニューやモーダルウィンドウを閉じる。コメントや変更履歴のポップアップやバルーンをリセットする。表の描画や消去モードをリセットする。テキストのドラッグ&ドロップをリセットする。マーカー選択モードをリセットする。書式のコピー/貼り付けモードをリセットする。図形の選択を解除する。図形追加モードをリセットする。ヘッダー/フッターから出る。フォーム入力を終了する。","Common.Controllers.Shortcuts.txtDescriptionCopy":"選択したテキストの断片をコンピューターのクリップボードメモリに送る。コピーしたテキストは後で、同じドキュメント内の別の場所や別のドキュメント、あるいは他のプログラムに貼り付けることができる。","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"現在編集中のテキストの選択された部分から書式をコピーします。コピーした書式は、同じドキュメント内の別のテキスト部分に後から適用することができます。","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"現在の文書内で、カーソルの右側に著作権記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionCut":"選択したテキスト部分を削除し、コンピューターのクリップボードメモリに送信する。コピーされたテキストは、後で同じ文書内の別の場所、別の文書、または他のプログラムに挿入することができます。","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"選択したテキスト部分のフォントサイズを1ポイント小さくする。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"カーソルの左側にある1文字を削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"カーソルの左側にある単語/選択部分/グラフィカルオブジェクトを1つ削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"カーソルの右側の文字を1文字削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"カーソルの右側にある単語/選択範囲/グラフィカルオブジェクトを1つ削除する。","Common.Controllers.Shortcuts.txtDescriptionEditChart":"チャートタイトルが選択された時、タイトルが空欄ならカーソルを行頭へ移動させる。そうでない場合はテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"直前に取り消した操作を繰り返す。","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"ドキュメント内のすべてのテキスト、表、画像を選択する。","Common.Controllers.Shortcuts.txtDescriptionEditShape":"図形が選択された時、内容が含まれていない場合は内容を作成し、カーソルを行の先頭に移動させる。内容が空の場合はカーソルをその内容に移動させ、そうでない場合は内容全体を選択する。","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"直近の操作を元に戻す。","Common.Controllers.Shortcuts.txtDescriptionEmDash":"現在の文書内で、カーソルの右側に長横線(エンダッシュ)を挿入する。","Common.Controllers.Shortcuts.txtDescriptionEnDash":"現在の文書内で、カーソルの右側に半角ダッシュを挿入する。","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"現在の段落を終了し、新しい段落を始める。","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"セル内で新しい段落を始める。","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"方程式の引数に新しいプレースホルダーを追加する。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"演算子の整列レベルを左に変更する(強制改行のある方程式の2行目の場合)。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"強制改行のある方程式の2行目に対して、演算子の位置揃えレベルを右に変更する。","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"現在のカーソル位置にユーロ記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"現在のカーソル位置に省略記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"選択したテキスト部分のフォントサイズを1ポイント大きくする。","Common.Controllers.Shortcuts.txtDescriptionIndent":"段落を左から徐々にインデントする。","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"列の区切りを追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"脚注を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"現在のカーソル位置に数式を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"脚注を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"ウェブアドレスに移動できるリンクを挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"新しい段落を始めずに改行を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"複数行フォームに改行を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"現在のカーソル位置に改ページを挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"現在のカーソル位置に現在のページ番号を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"カーソルが段落の先頭にない場合、段落にタブ文字を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"テーブル内に改行を挿入する。","Common.Controllers.Shortcuts.txtDescriptionItalic":"選択したテキストのフォントを斜体にし、わずかに傾ける。","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"段落の揃え方を両端揃えから左揃えに変更する。","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"段落を左揃えにする。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"指定されたキーを押しながらキーボードの矢印キーを使用して、選択したオブジェクトを一度に1ピクセルずつ下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"指定されたキーを押しながらキーボードの矢印キーを使用して、選択したオブジェクトを一度に1ピクセルずつ左に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"指定されたキーを押しながらキーボードの矢印を使用して、選択されたオブジェクトを一度に1ピクセルずつ右に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"指定されたキーを押しながらキーボードの矢印を使用して、選択したオブジェクトを一度に1ピクセルずつ上に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"選択した段落のインデントを増やす。","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"選択した段落のインデントを減らす。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"現在選択されているオブジェクトの次のオブジェクトにフォーカスを移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"現在選択されているオブジェクトの直前のオブジェクトにフォーカスを移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"カーソルを1行下に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"カーソルを現在編集中の文書の末尾に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"カーソルを現在編集中の行の末尾に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"カーソルを1語右に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"カーソルを1文字左に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"カーソルがヘッダー/フッター内にある場合、下部のヘッダーに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"カーソルがヘッダー/フッター内にある場合、下部のヘッダー/フッターに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"表の行内で次のセルに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"次のフォームに進む。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"現在編集中の文書の次のページに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"表の次の行に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"テーブル行内の前のセルに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"前のフォームに進む。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"現在編集中の文書で前のページに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"テーブル内で前の行に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"カーソルを1文字右に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"カーソルを現在編集中の文書の先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"カーソルを現在編集中の行の先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"カーソルを現在編集中のページの直後のページの先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"カーソルを現在編集中のページの直前のページの先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"カーソルを単語の先頭か、左の単語に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"カーソルを1行上に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"カーソルがヘッダー/フッター内にある場合、上部のヘッダーに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"カーソルがヘッダー/フッターにある場合、ヘッダー/フッターの上部に移動する。","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"デスクトップエディターでは次のファイルタブに、オンラインエディターでは次のブラウザタブに切り替える。","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"モーダルダイアログ内で、次のコントロールにフォーカスを移すためにコントロール間を移動する。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"文字間にハイフンを作成し、新しい行の先頭に使用できないようにする。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"改行の始まりとして使用できないような文字間にスペースを作成する。","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"オンラインエディタでチャットパネルを開き、メッセージを送る。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"コメントのテキストを追加できるデータ入力フィールドを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"コメントパネルを開いて、自分のコメントを追加したり、他のユーザーのコメントに返信したりできる。","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"選択した要素のコンテキストメニューを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"既存のファイルを選択できる標準のダイアログボックスを開く。このダイアログボックスでファイルを選択し「開く」をクリックすると、そのファイルはデスクトップエディターの新しいタブまたはウィンドウで開かれる。","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"「ファイル」パネルを開いて、現在の文書を保存、ダウンロード、印刷する;ドキュメントの情報を表示する;新規ドキュメントを作成するか既存のドキュメントを開く;ドキュメントエディターのヘルプセンターや詳細設定にアクセスする。","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"検索と置換メニュー(パネル)を開き、置換フィールドを使用して、見つかった文字列を一つ以上置き換える。","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"現在編集中のドキュメント内で文字・単語・フレーズを検索するには、検索ダイアログウィンドウを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"ドキュメントエディタのヘルプメニューを開く。","Common.Controllers.Shortcuts.txtDescriptionPaste":"クリップボードメモリから以前にコピーしたテキスト断片を、現在のカーソル位置に挿入する。テキストは、同じ文書、別の文書、または他のプログラムから以前にコピーされたものである可能性があります。","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"現在編集中の文書に、以前にコピーしたフォーマットを適用する。","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"クリップボードメモリから以前にコピーしたテキスト断片を、元の書式を保持せずに現在のカーソル位置に挿入する。テキストは、同じ文書、別の文書、または他のプログラムから以前にコピーされたものである可能性があります。","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"デスクトップエディターでは前のファイルタブに、オンラインエディターでは前のブラウザタブに切り替える。","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"モーダルダイアログ内で、前のコントロールにフォーカスを移すためにコントロール間を移動する。","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"利用可能なプリンターでドキュメントを印刷するか、ファイルとして保存する。","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"現在のカーソル位置に登録商標記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"選択したUnicodeコードを記号に置き換える。","Common.Controllers.Shortcuts.txtDescriptionResetChar":"選択したテキスト断片の書式を解除する。","Common.Controllers.Shortcuts.txtDescriptionRightPara":"段落の配置を右揃えと左揃えの間で切り替える。","Common.Controllers.Shortcuts.txtDescriptionSave":"ドキュメントエディターで現在編集中のドキュメントへの変更をすべて保存する。アクティブなファイルは、現在のファイル名、保存場所、ファイル形式で保存される。","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"「名前を付けて保存」パネルを開き、現在編集中の文書をサポートされている形式のいずれかで、コンピューターのハードディスクドライブに保存する。","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"ドキュメントを約1ページ分スクロールして下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"ドキュメントを約1ページ分上にスクロールする。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"カーソル位置の左側にある文字を一つ選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"カーソル位置から単語の先頭までテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"カーソルを1行下に移動し、前のカーソル位置と現在のカーソル位置の間にあるすべての記号を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"カーソルを1行上に移動し、前のカーソル位置と現在のカーソル位置の間にあるすべての記号を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"カーソルの位置から画面の下端までのページ部分を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"カーソルの位置から画面の上部まで、ページの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"カーソル位置の右側にある文字を一つ選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"カーソル位置から単語の終わりまでテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"カーソル位置から次のページの先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"カーソル位置から前のページの先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"カーソル位置から文書の末尾までのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"カーソル位置から現在の行の終わりまでのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"カーソル位置から文書の先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"カーソル位置から現在の行の先頭までのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionShowAll":"非表示文字の表示をオンまたはオフにする。","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"現在のカーソル位置にソフトハイフン記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"コピーしたテキストの元の書式を維持する。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"元の書式なしでテキストを貼り付ける。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"コピーした表を、既存の表の選択したセルにネストされた表として貼り付ける。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"既存のテーブルの内容を、コピーしたデータで置き換える。","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"スクリーンリーダー向けにアプリケーション内で実行されたアクションの送信を有効/無効にする。","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"リストのレベル/インデントを上げる(段落の先頭にカーソルを置いた状態で)。","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"リスト/インデントレベルを下げる(段落の先頭にカーソルを置いた状態で)。","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"選択したテキストの断片を、文字を貫通する線で取り消し線付きにする。","Common.Controllers.Shortcuts.txtDescriptionSubscript":"選択したテキスト断片を小さくし、化学式のようにテキスト行の下部に配置する。","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"選択したテキストの断片を小さくし、テキスト行の上部に配置する(例えば分数のように)。","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"現在のカーソル位置に商標記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionUnderline":"選択したテキストの断片を、文字の下に線を引き下線を引く。","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"段落の左側のインデントを段階的に削除する。","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"フィールドを更新する(例:目次)。","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"リンクをクリックする(カーソルをリンクの上に置いて)。","Common.Controllers.Shortcuts.txtDescriptionZoom100":"現在のドキュメントの「ズーム」パラメータをデフォルトの100%にリセットする。","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"現在編集中のドキュメントを拡大表示する。","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"現在編集中のドキュメントを縮小表示する。","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"コピー","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"切り取り","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"インデント","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"斜体","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"貼り付け","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"保存","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"取り消し線","Common.Controllers.Shortcuts.txtLabelSubscript":"下付き文字","Common.Controllers.Shortcuts.txtLabelSuperscript":"上付き文字","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"下線","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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.textRadar":"レーダーチャート","Common.define.chartData.textRadarFilled":"塗りつぶしレーダー","Common.define.chartData.textRadarMarker":"マーカー付きレーダー","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.define.smartArt.textAccentedPicture":"アクセント付きの図","Common.define.smartArt.textAccentProcess":"アクセント・プロセス","Common.define.smartArt.textAlternatingFlow":"波型ステップ","Common.define.smartArt.textAlternatingHexagons":"左右交替積み上げ六角形","Common.define.smartArt.textAlternatingPictureBlocks":"左右交替積み上げ画像ブロック","Common.define.smartArt.textAlternatingPictureCircles":"円形付き画像ジグザグ表示","Common.define.smartArt.textArchitectureLayout":"アーキテクチャ レイアウト","Common.define.smartArt.textArrowRibbon":"リボン状の矢印","Common.define.smartArt.textAscendingPictureAccentProcess":"アクセント画像付き上昇ステップ","Common.define.smartArt.textBalance":"バランス","Common.define.smartArt.textBasicBendingProcess":"基本蛇行ステップ","Common.define.smartArt.textBasicBlockList":"カード型リスト","Common.define.smartArt.textBasicChevronProcess":"プロセス","Common.define.smartArt.textBasicCycle":"基本の循環","Common.define.smartArt.textBasicMatrix":"基本マトリックス","Common.define.smartArt.textBasicPie":"円グラフ","Common.define.smartArt.textBasicProcess":"基本ステップ","Common.define.smartArt.textBasicPyramid":"基本ピラミッド","Common.define.smartArt.textBasicRadial":"基本放射","Common.define.smartArt.textBasicTarget":"ターゲット","Common.define.smartArt.textBasicTimeline":"タイムライン","Common.define.smartArt.textBasicVenn":"基本ベン図","Common.define.smartArt.textBendingPictureAccentList":"画像付きカード型リスト","Common.define.smartArt.textBendingPictureBlocks":"自動配置の画像ブロック","Common.define.smartArt.textBendingPictureCaption":"自動配置の表題付き画像","Common.define.smartArt.textBendingPictureCaptionList":"自動配置の表題付き画像レイアウト","Common.define.smartArt.textBendingPictureSemiTranparentText":"自動配置の半透明テキスト付き画像","Common.define.smartArt.textBlockCycle":"ボックス循環","Common.define.smartArt.textBubblePictureList":"バブル状画像リスト","Common.define.smartArt.textCaptionedPictures":"表題付き画像","Common.define.smartArt.textChevronAccentProcess":"アクセントステップ","Common.define.smartArt.textChevronList":"プロセス リスト","Common.define.smartArt.textCircleAccentTimeline":"円形組み合わせタイムライン","Common.define.smartArt.textCircleArrowProcess":"円形矢印プロセス","Common.define.smartArt.textCirclePictureHierarchy":"円形画像を使用した階層","Common.define.smartArt.textCircleProcess":"円形プロセス","Common.define.smartArt.textCircleRelationship":"円の関連付け","Common.define.smartArt.textCircularBendingProcess":"円形蛇行ステップ","Common.define.smartArt.textCircularPictureCallout":"円形画像を使った吹き出し","Common.define.smartArt.textClosedChevronProcess":"開始点強調型プロセス","Common.define.smartArt.textContinuousArrowProcess":"大きな矢印のプロセス","Common.define.smartArt.textContinuousBlockProcess":"矢印と長方形のプロセス","Common.define.smartArt.textContinuousCycle":"連続性強調循環","Common.define.smartArt.textContinuousPictureList":"矢印付き画像リスト","Common.define.smartArt.textConvergingArrows":"内向き矢印","Common.define.smartArt.textConvergingRadial":"集中","Common.define.smartArt.textConvergingText":"内向きテキスト","Common.define.smartArt.textCounterbalanceArrows":"対立とバランスの矢印","Common.define.smartArt.textCycle":"循環","Common.define.smartArt.textCycleMatrix":"循環マトリックス","Common.define.smartArt.textDescendingBlockList":"ブロックの降順リスト","Common.define.smartArt.textDescendingProcess":"降順プロセス","Common.define.smartArt.textDetailedProcess":"詳述プロセス","Common.define.smartArt.textDivergingArrows":"左右逆方向矢印","Common.define.smartArt.textDivergingRadial":"矢印付き放射","Common.define.smartArt.textEquation":"数式","Common.define.smartArt.textFramedTextPicture":"フレームに表示されるテキスト画像","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"歯車","Common.define.smartArt.textGridMatrix":"グリッド マトリックス","Common.define.smartArt.textGroupedList":"グループ リスト","Common.define.smartArt.textHalfCircleOrganizationChart":"アーチ型線で飾られた組織図","Common.define.smartArt.textHexagonCluster":"蜂の巣状の六角形","Common.define.smartArt.textHexagonRadial":"六角形放射","Common.define.smartArt.textHierarchy":"階層","Common.define.smartArt.textHierarchyList":"階層リスト","Common.define.smartArt.textHorizontalBulletList":"横方向箇条書きリスト","Common.define.smartArt.textHorizontalHierarchy":"横方向階層","Common.define.smartArt.textHorizontalLabeledHierarchy":"ラベル付き横方向階層","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"複数レベル対応の横方向階層","Common.define.smartArt.textHorizontalOrganizationChart":"水平方向の組織図","Common.define.smartArt.textHorizontalPictureList":"横方向画像リスト","Common.define.smartArt.textIncreasingArrowProcess":"上昇矢印のプロセス","Common.define.smartArt.textIncreasingCircleProcess":"上昇円プロセス","Common.define.smartArt.textInterconnectedBlockProcess":"相互接続された長方形のプロセス","Common.define.smartArt.textInterconnectedRings":"互いにつながったリング","Common.define.smartArt.textInvertedPyramid":"反転ピラミッド","Common.define.smartArt.textLabeledHierarchy":"ラベル付き階層","Common.define.smartArt.textLinearVenn":"横方向ベン図","Common.define.smartArt.textLinedList":"線区切りリスト","Common.define.smartArt.textList":"リスト","Common.define.smartArt.textMatrix":"マトリックス","Common.define.smartArt.textMultidirectionalCycle":"双方向循環","Common.define.smartArt.textNameAndTitleOrganizationChart":"氏名/役職名付き組織図","Common.define.smartArt.textNestedTarget":"包含","Common.define.smartArt.textNondirectionalCycle":"矢印無し循環","Common.define.smartArt.textOpposingArrows":"上下逆方向矢印","Common.define.smartArt.textOpposingIdeas":"対立する案","Common.define.smartArt.textOrganizationChart":"組織図","Common.define.smartArt.textOther":"その他","Common.define.smartArt.textPhasedProcess":"フェーズ プロセス","Common.define.smartArt.textPicture":"画像","Common.define.smartArt.textPictureAccentBlocks":"画像アクセントのブロック","Common.define.smartArt.textPictureAccentList":"画像アクセントのリスト","Common.define.smartArt.textPictureAccentProcess":"画像アクセントのプロセス","Common.define.smartArt.textPictureCaptionList":"画像キャプションのリスト","Common.define.smartArt.textPictureFrame":"フォトフレーム","Common.define.smartArt.textPictureGrid":"画像グリッド","Common.define.smartArt.textPictureLineup":"画像ラインアップ","Common.define.smartArt.textPictureOrganizationChart":"画像付き組織図","Common.define.smartArt.textPictureStrips":"画像付きラベル","Common.define.smartArt.textPieProcess":"円グラフのプロセス","Common.define.smartArt.textPlusAndMinus":"プラスとマイナス","Common.define.smartArt.textProcess":"プロセス","Common.define.smartArt.textProcessArrows":"矢印型ステップ","Common.define.smartArt.textProcessList":"プロセスのリスト","Common.define.smartArt.textPyramid":"ピラミッド","Common.define.smartArt.textPyramidList":"ピラミッドのリスト","Common.define.smartArt.textRadialCluster":"放射ブロック","Common.define.smartArt.textRadialCycle":"中心付き循環","Common.define.smartArt.textRadialList":"放射リスト","Common.define.smartArt.textRadialPictureList":"放射画像リスト","Common.define.smartArt.textRadialVenn":"放射型ベン図","Common.define.smartArt.textRandomToResultProcess":"複数案をまとめるステップ","Common.define.smartArt.textRelationship":"関係","Common.define.smartArt.textRepeatingBendingProcess":"改行型蛇行ステップ","Common.define.smartArt.textReverseList":"逆順リスト","Common.define.smartArt.textSegmentedCycle":"円型循環","Common.define.smartArt.textSegmentedProcess":"分割ステップ","Common.define.smartArt.textSegmentedPyramid":"分割ピラミッド","Common.define.smartArt.textSnapshotPictureList":"スナップショット画像リスト","Common.define.smartArt.textSpiralPicture":"渦巻き画像","Common.define.smartArt.textSquareAccentList":"箇条書き記号アクセントのリスト","Common.define.smartArt.textStackedList":"積み上げリスト","Common.define.smartArt.textStackedVenn":"包含型ベン図","Common.define.smartArt.textStaggeredProcess":"段違いステップ","Common.define.smartArt.textStepDownProcess":"ステップ ダウンのプロセス","Common.define.smartArt.textStepUpProcess":"ステップアップのプロセス","Common.define.smartArt.textSubStepProcess":"サブステップのプロセス","Common.define.smartArt.textTabbedArc":"円弧状タブ","Common.define.smartArt.textTableHierarchy":"積み木型の階層","Common.define.smartArt.textTableList":"表型リスト","Common.define.smartArt.textTabList":"タブ付きリスト","Common.define.smartArt.textTargetList":"ターゲットのリスト","Common.define.smartArt.textTextCycle":"テキスト循環","Common.define.smartArt.textThemePictureAccent":"テーマ画像アクセント","Common.define.smartArt.textThemePictureAlternatingAccent":"テーマ画像交互のアクセント","Common.define.smartArt.textThemePictureGrid":"テーマ画像グリッド","Common.define.smartArt.textTitledMatrix":"タイトル付きマトリックス","Common.define.smartArt.textTitledPictureAccentList":"画像付き横方向リスト","Common.define.smartArt.textTitledPictureBlocks":"タイトル付き画像ブロック","Common.define.smartArt.textTitlePictureLineup":"タイトル付き画像ラインアップ","Common.define.smartArt.textTrapezoidList":"台形リスト","Common.define.smartArt.textUpwardArrow":"上向き矢印","Common.define.smartArt.textVaryingWidthList":"可変幅リスト","Common.define.smartArt.textVerticalAccentList":"縦方向アクセントのリスト","Common.define.smartArt.textVerticalArrowList":"縦方向矢印リスト","Common.define.smartArt.textVerticalBendingProcess":"縦型蛇行ステップ","Common.define.smartArt.textVerticalBlockList":"縦方向ボックス リスト","Common.define.smartArt.textVerticalBoxList":"縦方向リスト","Common.define.smartArt.textVerticalBracketList":"縦方向ブラケット リスト","Common.define.smartArt.textVerticalBulletList":"縦方向箇条書きリスト","Common.define.smartArt.textVerticalChevronList":"縦方向プロセス","Common.define.smartArt.textVerticalCircleList":"縦方向円リスト","Common.define.smartArt.textVerticalCurvedList":"縦方向カーブのリスト","Common.define.smartArt.textVerticalEquation":"縦型の数式","Common.define.smartArt.textVerticalPictureAccentList":"縦方向円形画像リスト","Common.define.smartArt.textVerticalPictureList":"縦方向画像リスト","Common.define.smartArt.textVerticalProcess":"縦方向ステップ","Common.Translation.textMoreButton":"もっと","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"このファイルは他のアプリで編集されているので、編集できません。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"閲覧するために開く","Common.UI.ButtonColored.textAutoColor":"自動​","Common.UI.ButtonColored.textEyedropper":"スポイト","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":"金","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":"木","Common.UI.Calendar.textShortTuesday":"火","Common.UI.Calendar.textShortWednesday":"水","Common.UI.Calendar.textYears":"年","Common.UI.ComboBorderSize.txtNoBorders":"枠線なし","Common.UI.ComboBorderSizeEditable.txtNoBorders":"枠線なし","Common.UI.ComboDataView.emptyComboText":"スタイルなし","Common.UI.ExtendedColorDialog.addButtonText":"追加","Common.UI.ExtendedColorDialog.textCurrent":"現在","Common.UI.ExtendedColorDialog.textHexErr":"入力された値が正しくありません。
000000〜FFFFFFの数値を入力してください。","Common.UI.ExtendedColorDialog.textNew":"新しい","Common.UI.ExtendedColorDialog.textRGBErr":"入力された値が正しくありません。
0〜255の数値を入力してください。","Common.UI.HSBColorPicker.textNoColor":"色なし","Common.UI.InputField.txtEmpty":"このフィールドは必須です","Common.UI.InputFieldBtnCalendar.textDate":"日付の選択","Common.UI.InputFieldBtnPassword.textHintHidePwd":"パスワードを表示しない","Common.UI.InputFieldBtnPassword.textHintHold":"長押しでパスワード表示","Common.UI.InputFieldBtnPassword.textHintShowPwd":"パスワードを表示する","Common.UI.SearchBar.textFind":"検索する","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果のハイライト","Common.UI.SearchDialog.textMatchCase":"大文字と小文字の区別","Common.UI.SearchDialog.textReplaceDef":"代替テキストを挿入する","Common.UI.SearchDialog.textSearchStart":"テキストをここに挿入してください。","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索","Common.UI.SearchDialog.textWholeWords":"単語全体のみ","Common.UI.SearchDialog.txtBtnHideReplace":"置換を表示しない","Common.UI.SearchDialog.txtBtnReplace":"置換する","Common.UI.SearchDialog.txtBtnReplaceAll":"全てを置き換える","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"このドキュメントは他のユーザーによって変更されました。クリックして変更を保存し、更新を再読み込みしてください。","Common.UI.ThemeColorPalette.textRecentColors":"最近使用した色","Common.UI.ThemeColorPalette.textStandartColors":"標準の色","Common.UI.ThemeColorPalette.textThemeColors":"テーマの色","Common.UI.ThemeColorPalette.textTransparent":"透明","Common.UI.Themes.txtThemeClassicLight":"明るい(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"暗い","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"明るい","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Themes.txtThemeWhite":"白色","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":"警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"アクセント","Common.Utils.ThemeColor.txtAqua":"水色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黒色","Common.Utils.ThemeColor.txtBlue":"青色","Common.Utils.ThemeColor.txtBrightGreen":"明るい緑","Common.Utils.ThemeColor.txtBrown":"茶色","Common.Utils.ThemeColor.txtDarkBlue":"濃い青色","Common.Utils.ThemeColor.txtDarker":"より濃い","Common.Utils.ThemeColor.txtDarkGray":"濃い灰色","Common.Utils.ThemeColor.txtDarkGreen":"濃い緑色","Common.Utils.ThemeColor.txtDarkPurple":"濃い紫色","Common.Utils.ThemeColor.txtDarkRed":"濃い赤色","Common.Utils.ThemeColor.txtDarkTeal":"濃い青緑色","Common.Utils.ThemeColor.txtDarkYellow":"濃い黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"緑色","Common.Utils.ThemeColor.txtIndigo":"インディゴ","Common.Utils.ThemeColor.txtLavender":"ラベンダー","Common.Utils.ThemeColor.txtLightBlue":"明るい青色","Common.Utils.ThemeColor.txtLighter":"より明るい","Common.Utils.ThemeColor.txtLightGray":"明るい灰色","Common.Utils.ThemeColor.txtLightGreen":"明るい緑色","Common.Utils.ThemeColor.txtLightOrange":"明るいオレンジ色","Common.Utils.ThemeColor.txtLightYellow":"明るい黄色","Common.Utils.ThemeColor.txtOrange":"オレンジ色","Common.Utils.ThemeColor.txtPink":"ピンク色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"赤色","Common.Utils.ThemeColor.txtRose":"ローズ色","Common.Utils.ThemeColor.txtSkyBlue":"スカイブルー色","Common.Utils.ThemeColor.txtTeal":"青緑色","Common.Utils.ThemeColor.txttext":"テキスト","Common.Utils.ThemeColor.txtTurquosie":"ターコイズ色","Common.Utils.ThemeColor.txtViolet":"バイオレット色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"アドレス:","Common.Views.About.txtLicensee":"ライセンシー","Common.Views.About.txtLicensor":"ライセンサー\t","Common.Views.About.txtMail":"Email:","Common.Views.About.txtPoweredBy":"によって提供されています","Common.Views.About.txtTel":"電話番号:","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.textDoubleSpaces":"スペース2回でピリオドを入力する","Common.Views.AutoCorrectDialog.textFLCells":"テーブルセルの最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textFLDont":"次の項目の後は大文字にしない:","Common.Views.AutoCorrectDialog.textFLSentence":"文章の最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textForLangFL":"言語の例外:","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":"入力時に置き換える\n\t","Common.Views.AutoCorrectDialog.textReplaceType":"入力時にテキストを置き換える","Common.Views.AutoCorrectDialog.textReset":"リセット","Common.Views.AutoCorrectDialog.textResetAll":"デフォルト設定にリセットする","Common.Views.AutoCorrectDialog.textRestore":"復元する","Common.Views.AutoCorrectDialog.textTitle":"オートコレクト","Common.Views.AutoCorrectDialog.textWarnAddFL":"例外は、大文字または小文字の文字のみを含む必要があります。","Common.Views.AutoCorrectDialog.textWarnAddRec":"認識される関数には、大文字または小文字のAからZまでの文字のみを含める必要があります。","Common.Views.AutoCorrectDialog.textWarnResetFL":"追加した例外は削除され、削除した例外は元に戻ります。続行しますか?","Common.Views.AutoCorrectDialog.textWarnResetRec":"追加した式はすべて削除され、削除された式が復元されます。 このまま続けますか?","Common.Views.AutoCorrectDialog.warnReplace":"%1のオートコレクトのエントリはすでに存在します。 取り替えますか?","Common.Views.AutoCorrectDialog.warnReset":"追加したオートコレクトはすべて削除され、変更されたものは元の値に復元されます。 このまま続けますか?","Common.Views.AutoCorrectDialog.warnRestore":"%1のオートコレクトエントリは元の値にリセットされます。 続けますか?","Common.Views.Chat.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"ここにメッセージを挿入する","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.mniFilterComments":"コメントの表示","Common.Views.Comments.mniFilterGroups":"グループでフィルター","Common.Views.Comments.mniPositionAsc":"上から","Common.Views.Comments.mniPositionDesc":"下から","Common.Views.Comments.textAdd":"追加","Common.Views.Comments.textAddComment":"コメントの追加","Common.Views.Comments.textAddCommentToDoc":"ドキュメントにコメントを追加","Common.Views.Comments.textAddReply":"返信を追加","Common.Views.Comments.textAll":"すべて","Common.Views.Comments.textAnonym":"ゲスト","Common.Views.Comments.textCancel":"キャンセル","Common.Views.Comments.textClose":"閉じる","Common.Views.Comments.textClosePanel":"コメントを閉じる","Common.Views.Comments.textComment":"コメント","Common.Views.Comments.textComments":"コメント","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"ここにコメントを挿入してください。","Common.Views.Comments.textHintAddComment":"コメントを追加","Common.Views.Comments.textOpen":"開く","Common.Views.Comments.textOpenAgain":"もう一度開く","Common.Views.Comments.textReply":"返信する","Common.Views.Comments.textResolve":"解決する","Common.Views.Comments.textResolved":"解決済み","Common.Views.Comments.textSort":"コメントを並べ替える","Common.Views.Comments.textSortFilter":"コメントの並べ替えとフィルター","Common.Views.Comments.textSortFilterMore":"並び替え、フィルター、その他","Common.Views.Comments.textSortMore":"並び替えなど","Common.Views.Comments.textViewResolved":"コメントを再開する権限がありません","Common.Views.Comments.txtEmpty":"ドキュメントにはコメントがありません。","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"エディターツールバーのボタンやコンテキストメニューの操作によるコピー、カット、ペーストの動作は、このエディタータブ内でのみ実行されます。

エディタータブ以外のアプリケーションとの間でコピーまたは貼り付けを行うには、次のキーボードの組み合わせを使用して下さい:","Common.Views.CopyWarningDialog.textTitle":"コピー,切り取り,貼り付け","Common.Views.CopyWarningDialog.textToCopy":"コピーのため","Common.Views.CopyWarningDialog.textToCut":"切り取りのため","Common.Views.CopyWarningDialog.textToPaste":"貼り付のため","Common.Views.CustomizeQuickAccessDialog.textDownload":"ダウンロード","Common.Views.CustomizeQuickAccessDialog.textMsg":"クイックアクセスツールバーに表示されるコマンドをチェックしてください","Common.Views.CustomizeQuickAccessDialog.textPrint":"印刷","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"クイックプリント","Common.Views.CustomizeQuickAccessDialog.textRedo":"やり直し","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"クイックアクセスのカスタマイズ","Common.Views.CustomizeQuickAccessDialog.textUndo":"元に戻す","Common.Views.DocumentAccessDialog.textLoading":"読み込み中...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.DocumentPropertyDialog.errorDate":"カレンダーから値を選択して日付として保存できます。
値を手動で入力した場合は、テキストとして保存されます。","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"いいえ","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"はい","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"プロパティはタイトルが必要です","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"タイトル","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"「はい」または「いいえ」","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"日付","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"タイプ","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"数","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"有効な数値を入力してください","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"テキスト","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"プロパティには値が必要です","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"値","Common.Views.DocumentPropertyDialog.txtTitle":"新しいドキュメントのプロパティ","Common.Views.Draw.hintEraser":"消しゴム","Common.Views.Draw.hintSelect":"選択","Common.Views.Draw.txtEraser":"消しゴム","Common.Views.Draw.txtHighlighter":"蛍光ペン","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"ペン","Common.Views.Draw.txtSelect":"選択","Common.Views.Draw.txtSize":"サイズ","Common.Views.ExternalDiagramEditor.textTitle":"チャートのエディタ","Common.Views.ExternalEditor.textClose":"閉じる","Common.Views.ExternalEditor.textSave":"保存&終了","Common.Views.ExternalLinksDlg.closeButtonText":"閉じる","Common.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","Common.Views.ExternalLinksDlg.textChange":"変更元","Common.Views.ExternalLinksDlg.textDelete":"リンクの解除","Common.Views.ExternalLinksDlg.textDeleteAll":"すべてのリンクを解除","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"オープンソース","Common.Views.ExternalLinksDlg.textSource":"ソース","Common.Views.ExternalLinksDlg.textStatus":"ステータス","Common.Views.ExternalLinksDlg.textUnknown":"不明","Common.Views.ExternalLinksDlg.textUpdate":"値の更新","Common.Views.ExternalLinksDlg.textUpdateAll":"すべて更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部リンク","Common.Views.ExternalMergeEditor.textTitle":"差し込み印刷の宛先","Common.Views.ExternalOleEditor.textTitle":"スプレッドシートエディター","Common.Views.FormatSettingsDialog.textCategory":"カテゴリー","Common.Views.FormatSettingsDialog.textDecimal":"小数点","Common.Views.FormatSettingsDialog.textFormat":"フォーマット","Common.Views.FormatSettingsDialog.textLinked":"ソースにリンクした","Common.Views.FormatSettingsDialog.textLocale":"ロケール設定","Common.Views.FormatSettingsDialog.textSeparator":"1000 の区切り文字を使用する","Common.Views.FormatSettingsDialog.textSymbols":"記号","Common.Views.FormatSettingsDialog.textTitle":"数値の書式","Common.Views.FormatSettingsDialog.txtAccounting":"会計","Common.Views.FormatSettingsDialog.txtAs10":"10分の5(5/10)として","Common.Views.FormatSettingsDialog.txtAs100":"100分の50(50/100)として","Common.Views.FormatSettingsDialog.txtAs16":"16分の8(8/16)として","Common.Views.FormatSettingsDialog.txtAs2":"2分の1(1/2)として","Common.Views.FormatSettingsDialog.txtAs4":"8分の2(2/4)として","Common.Views.FormatSettingsDialog.txtAs8":"8分の4(4/8)として","Common.Views.FormatSettingsDialog.txtCurrency":"通貨","Common.Views.FormatSettingsDialog.txtCustom":"カスタム","Common.Views.FormatSettingsDialog.txtCustomWarning":"カスタム番号の形式を慎重に入力してください。 Spreadsheet Editorは、xlsxファイルに影響を与える可能性のあるエラーについてカスタム形式をチェックしません。","Common.Views.FormatSettingsDialog.txtDate":"日付","Common.Views.FormatSettingsDialog.txtFraction":"分数","Common.Views.FormatSettingsDialog.txtGeneral":"標準","Common.Views.FormatSettingsDialog.txtNone":"なし","Common.Views.FormatSettingsDialog.txtNumber":"数字","Common.Views.FormatSettingsDialog.txtPercentage":"パーセンテージ","Common.Views.FormatSettingsDialog.txtSample":"例:","Common.Views.FormatSettingsDialog.txtScientific":"学術的","Common.Views.FormatSettingsDialog.txtText":"テキスト","Common.Views.FormatSettingsDialog.txtTime":"時間","Common.Views.FormatSettingsDialog.txtUpto1":"最大1桁(1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"最大2桁(12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"最大3桁(131/135)","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りとしてマークする","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textBack":"ファイルの場所を開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textDocEditDesc":"あらゆる変更をする","Common.Views.Header.textDocViewDesc":"ファイルを閲覧するが、変更は行わない","Common.Views.Header.textDocViewFormDesc":"フォームに入力するとどのように表示されるかを確認する","Common.Views.Header.textDownload":"ダウンロード","Common.Views.Header.textEdit":"編集","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideStatusBar":"ステータスバーを表示しない","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textReview":"レビュー","Common.Views.Header.textReviewDesc":"変更点を提案する","Common.Views.Header.textShare":"共有","Common.Views.Header.textStartFill":"共有&収集","Common.Views.Header.textView":"閲覧","Common.Views.Header.textViewForm":"プレビュー","Common.Views.Header.textZoom":"ズーム","Common.Views.Header.tipAccessRights":"文書のアクセス許可のの管理","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDocEdit":"編集","Common.Views.Header.tipDocView":"閲覧","Common.Views.Header.tipDocViewForm":"フォームのプレビュー","Common.Views.Header.tipDownload":"ファイルをダウンロード","Common.Views.Header.tipFillStatus":"記入状況","Common.Views.Header.tipGoEdit":"現在のファイルを編集する","Common.Views.Header.tipPrint":"ファイルを印刷する","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直し","Common.Views.Header.tipReview":"レビュー","Common.Views.Header.tipSave":"保存する","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUsers":"ユーザーを表示する","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.textHighlightDeleted":"削除されたところをハイライトする","Common.Views.History.textMore":"もっと見る","Common.Views.History.textRestore":"復元する","Common.Views.History.textShow":"拡張する","Common.Views.History.textShowAll":"変更の詳細を表示する","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"バージョン履歴","Common.Views.ImageFromUrlDialog.textUrl":"画像URLの貼り付け","Common.Views.ImageFromUrlDialog.txtEmpty":"この項目は必須です","Common.Views.ImageFromUrlDialog.txtNotUrl":"リンクの入力内容は「http://www.example.com」形式のURLである必要があります。","Common.Views.InsertTableDialog.textInvalidRowsCols":"有効な行と列の数を指定する必要があります。","Common.Views.InsertTableDialog.txtColumns":"列数","Common.Views.InsertTableDialog.txtMaxText":"このフィールドの最大値は{0}です。","Common.Views.InsertTableDialog.txtMinText":"このフィールドの最小値は{0}です。","Common.Views.InsertTableDialog.txtRows":"行数","Common.Views.InsertTableDialog.txtTitle":"テーブルのサイズ","Common.Views.InsertTableDialog.txtTitleSplit":"セルを分割","Common.Views.LanguageDialog.labelSelect":"ドキュメントの言語の選択","Common.Views.MacrosAiDialog.textAreaPlaceholder":"クエリのプロンプトを入力してください","Common.Views.MacrosAiDialog.textCreate":"作成","Common.Views.MacrosDialog.textAutostart":"自動起動","Common.Views.MacrosDialog.textConvertFromVBA":"VBAから変換する","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"マクロをVBAから変換する","Common.Views.MacrosDialog.textCopy":"コピー","Common.Views.MacrosDialog.textCreateFromDesc":"説明から作成する","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"マクロを説明から作成する","Common.Views.MacrosDialog.textCustomFunction":"カスタム関数","Common.Views.MacrosDialog.textCustomFunctions":"カスタム関数","Common.Views.MacrosDialog.textDebug":"デバッグ","Common.Views.MacrosDialog.textDelete":"削除","Common.Views.MacrosDialog.textFunctions":"関数","Common.Views.MacrosDialog.textLoading":"読み込み中...","Common.Views.MacrosDialog.textMacro":"マクロ","Common.Views.MacrosDialog.textMacros":"マクロ","Common.Views.MacrosDialog.textMakeAutostart":"自動起動に設定する","Common.Views.MacrosDialog.textRename":"名前を変更","Common.Views.MacrosDialog.textRun":"実行","Common.Views.MacrosDialog.textSave":"保存","Common.Views.MacrosDialog.textTitle":"マクロ","Common.Views.MacrosDialog.textUnMakeAutostart":"自動起動を解除","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"カスタム関数を追加","Common.Views.MacrosDialog.tipFunctionCopy":"カスタム関数のコピー","Common.Views.MacrosDialog.tipFunctionDelete":"カスタム関数の削除","Common.Views.MacrosDialog.tipFunctionRename":"カスタム関数名の変更","Common.Views.MacrosDialog.tipMacrosAdd":"マクロを追加","Common.Views.MacrosDialog.tipMacrosCopy":"マクロのコピー","Common.Views.MacrosDialog.tipMacrosDebug":"マクロのデバッグ","Common.Views.MacrosDialog.tipMacrosRename":"マクロ名の変更","Common.Views.MacrosDialog.tipMacrosRun":"マクロの実行","Common.Views.MacrosDialog.tipRedo":"やり直す","Common.Views.MacrosDialog.tipUndo":"元に戻す","Common.Views.OpenDialog.closeButtonText":"ファイルを閉じる","Common.Views.OpenDialog.txtEncoding":"文字コード","Common.Views.OpenDialog.txtIncorrectPwd":"パスワードが正しくありません。","Common.Views.OpenDialog.txtOpenFile":"ファイルを開くためにパスワードを入力してください。","Common.Views.OpenDialog.txtPassword":"パスワード","Common.Views.OpenDialog.txtPreview":"プレビュー","Common.Views.OpenDialog.txtProtected":"一度パスワードを入力してファイルを開くと、そのファイルの既存のパスワードがリセットされます。","Common.Views.OpenDialog.txtTitle":"%1オプションの選択","Common.Views.OpenDialog.txtTitleProtected":"保護されたファイル","Common.Views.PasswordDialog.txtDescription":"この文書を保護するためのパスワードを設定してください。","Common.Views.PasswordDialog.txtIncorrectPwd":"先に入力したパスワードと一致しません。","Common.Views.PasswordDialog.txtPassword":"パスワード","Common.Views.PasswordDialog.txtRepeat":"パスワードを再入力","Common.Views.PasswordDialog.txtTitle":"パスワードの設定","Common.Views.PasswordDialog.txtWarning":"警告: パスワードを忘れると元に戻せません。安全な場所に記録してください。","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除する","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"開始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.Plugins.tipMore":"もっと","Common.Views.Protection.hintAddPwd":"パスワードを使用して暗号化する","Common.Views.Protection.hintDelPwd":"パスワードを削除する","Common.Views.Protection.hintPwd":"パスワードを変更か削除する","Common.Views.Protection.hintSignature":"デジタル署名かデジタル署名行を追加","Common.Views.Protection.txtAddPwd":"パスワードを追加","Common.Views.Protection.txtChangePwd":"パスワードを変更する","Common.Views.Protection.txtDeletePwd":"パスワードを削除する","Common.Views.Protection.txtEncrypt":"暗号化する","Common.Views.Protection.txtInvisibleSignature":"デジタル署名を追加","Common.Views.Protection.txtSignature":"署名","Common.Views.Protection.txtSignatureLine":"署名欄の追加","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","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.mniMMFromFile":"ファイルから","Common.Views.ReviewChanges.mniMMFromStorage":"ストレージから","Common.Views.ReviewChanges.mniMMFromUrl":"URLから","Common.Views.ReviewChanges.mniSettings":"比較設定","Common.Views.ReviewChanges.strFast":"高速","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.tipCombine":"現在のドキュメントを別のドキュメントと結合する","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.tipMailRecepients":"差し込み印刷","Common.Views.ReviewChanges.tipRejectCurrent":"現在の変更を拒否する","Common.Views.ReviewChanges.tipReview":"変更履歴","Common.Views.ReviewChanges.tipReviewView":"変更内容を表示するモードを選択してください","Common.Views.ReviewChanges.tipSetDocLang":"文書の言語を設定","Common.Views.ReviewChanges.tipSetSpelling":"スペルチェック","Common.Views.ReviewChanges.tipSharing":"文書のアクセス許可のの管理","Common.Views.ReviewChanges.txtAccept":"承諾","Common.Views.ReviewChanges.txtAcceptAll":"すべての変更を承諾する","Common.Views.ReviewChanges.txtAcceptChanges":"変更を承諾する","Common.Views.ReviewChanges.txtAcceptCurrent":"現在の変更を承諾する","Common.Views.ReviewChanges.txtChat":"チャット","Common.Views.ReviewChanges.txtClose":"閉じる","Common.Views.ReviewChanges.txtCoAuthMode":"共同編集のモード","Common.Views.ReviewChanges.txtCombine":"結合","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.txtMailMerge":"差し込み印刷","Common.Views.ReviewChanges.txtMarkup":"全ての変更点{0}","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":"前回の","Common.Views.ReviewChanges.txtPreview":"プレビュー","Common.Views.ReviewChanges.txtReject":"拒否する","Common.Views.ReviewChanges.txtRejectAll":"すべての変更を拒否する","Common.Views.ReviewChanges.txtRejectChanges":"変更を拒否","Common.Views.ReviewChanges.txtRejectCurrent":"現在の変更を拒否する","Common.Views.ReviewChanges.txtSharing":"共有","Common.Views.ReviewChanges.txtSpelling":"スペルチェック","Common.Views.ReviewChanges.txtTurnon":"変更履歴","Common.Views.ReviewChanges.txtView":"表示モード","Common.Views.ReviewChangesDialog.textTitle":"変更の確認","Common.Views.ReviewChangesDialog.txtAccept":"承諾","Common.Views.ReviewChangesDialog.txtAcceptAll":"すべての変更を承諾する","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"現在の変更を承諾する","Common.Views.ReviewChangesDialog.txtNext":"次の変更箇所へ","Common.Views.ReviewChangesDialog.txtPrev":"以前の変更箇所へ","Common.Views.ReviewChangesDialog.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.textComment":"コメント","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"ここにコメントを入力してください。","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.ReviewPopover.textViewResolved":"コメントを再開する権限がありません","Common.Views.ReviewPopover.txtAccept":"同意する","Common.Views.ReviewPopover.txtDeleteTip":"削除する","Common.Views.ReviewPopover.txtEditTip":"編集","Common.Views.ReviewPopover.txtReject":"拒否する","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字の区別","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索する","Common.Views.SearchPanel.textFindAndReplace":"検索して置換する","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textNoMatches":"一致する結果がありません","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"置換する","Common.Views.SearchPanel.textReplaceAll":"全てを置換する","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.ShapeShadowDialog.txtAngle":"角度","Common.Views.ShapeShadowDialog.txtDistance":"距離","Common.Views.ShapeShadowDialog.txtSize":"サイズ","Common.Views.ShapeShadowDialog.txtTitle":"影の調整","Common.Views.ShapeShadowDialog.txtTransparency":"透過性","Common.Views.ShortcutsDialog.txtDescription":"説明","Common.Views.ShortcutsDialog.txtEmpty":"該当する項目が見つかりませんでした。検索条件を調整してください。","Common.Views.ShortcutsDialog.txtRestoreAll":"すべてをデフォルトに戻す","Common.Views.ShortcutsDialog.txtRestoreContinue":"続行してよろしいですか。","Common.Views.ShortcutsDialog.txtRestoreDescription":"すべてのショートカット設定がデフォルトに戻されます。","Common.Views.ShortcutsDialog.txtRestoreToDefault":"デフォルトに戻す","Common.Views.ShortcutsDialog.txtSearch":"検索","Common.Views.ShortcutsDialog.txtTitle":"キーボードショートカット","Common.Views.ShortcutsEditDialog.txtAction":"アクション","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"このショートカットは編集できません","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"必要なショートカットを入力する","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"「%1」アクションが使用するショートカット","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"「%1」アクションが使用するショートカットは変更できません","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"「%1」アクションが使用するショートカット","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"「%1」アクションが使用するショートカットであり、変更することはできません。","Common.Views.ShortcutsEditDialog.txtNewShortcut":"新規ショートカット","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"続行してよろしいですか。","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"「%1」アクションのすべてのショートカットはデフォルトに復元されます。","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"デフォルトに戻す","Common.Views.ShortcutsEditDialog.txtTitle":"ショートカットを編集","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"必要なショートカットを入力する","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":"画像を選択する","Common.Views.SignDialog.textSignature":"署名は次のようになります:","Common.Views.SignDialog.textTitle":"文書に署名する","Common.Views.SignDialog.textUseImage":"または「画像を選択」をクリックして、画像を署名として使用します","Common.Views.SignDialog.textValid":"%1から%2まで有効","Common.Views.SignDialog.tipFontName":"フォント名","Common.Views.SignDialog.tipFontSize":"フォントのサイズ","Common.Views.SignSettingsDialog.textAllowComment":"署名ダイアログで署名者がコメントを追加できるようにする","Common.Views.SignSettingsDialog.textDefInstruction":"このドキュメントに署名する前に、署名するコンテンツが正しいことを確認してください。","Common.Views.SignSettingsDialog.textInfoEmail":"署名候補者のメールアドレス","Common.Views.SignSettingsDialog.textInfoName":"署名候補者","Common.Views.SignSettingsDialog.textInfoTitle":"署名候補者の役職","Common.Views.SignSettingsDialog.textInstructions":"署名者への説明","Common.Views.SignSettingsDialog.textShowDate":"署名欄に署名日を表示する","Common.Views.SignSettingsDialog.textTitle":"署名の設定","Common.Views.SignSettingsDialog.txtEmpty":"この項目は必須です","Common.Views.SymbolTableDialog.textCharacter":"文字","Common.Views.SymbolTableDialog.textCode":"UnicodeHEX値","Common.Views.SymbolTableDialog.textCopyright":"著作権マーク","Common.Views.SymbolTableDialog.textDCQuote":"二重引用符(右)を終了する","Common.Views.SymbolTableDialog.textDOQuote":"二重の引用符(左)","Common.Views.SymbolTableDialog.textEllipsis":"水平の省略記号","Common.Views.SymbolTableDialog.textEmDash":"全角ダッシュ","Common.Views.SymbolTableDialog.textEmSpace":"全角スペース","Common.Views.SymbolTableDialog.textEnDash":"半角ダッシュ","Common.Views.SymbolTableDialog.textEnSpace":"半角スペース","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":"ラベルは空白にできません","DE.Controllers.DocProtection.txtIsProtectedComment":"文書は保護されています。この文書には、コメントのみを挿入することができます。","DE.Controllers.DocProtection.txtIsProtectedForms":"文書は保護されています。この文書では、フォームにのみ記入することができます。","DE.Controllers.DocProtection.txtIsProtectedTrack":"文書は保護されています。あなたはこの文書を編集することができますが、すべての変更は追跡されます。","DE.Controllers.DocProtection.txtIsProtectedView":"文書は保護されています。この文書は閲覧のみ可能です。","DE.Controllers.DocProtection.txtWasProtectedComment":"この文書は他のユーザーによって保護されています。\nこの文書には、コメントのみ挿入できます。","DE.Controllers.DocProtection.txtWasProtectedForms":"この文書は、他のユーザーによって保護されています。\nこの文書では、フォームへの入力のみが可能です。","DE.Controllers.DocProtection.txtWasProtectedTrack":"この文書は他のユーザーによって保護されています。\nこの文書を編集することはできますが、すべての変更は追跡されます。","DE.Controllers.DocProtection.txtWasProtectedView":"この文書は他のユーザーによって保護されています。\nこの文書は閲覧のみ可能です。","DE.Controllers.DocProtection.txtWasUnprotected":"ドキュメントは保護されていません。","DE.Controllers.HeaderFooterTab.textFieldExample":"コード書き方の例:TIME \\@ \"dddd, MMMM d, yyyy\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"フィールドのコード","DE.Controllers.HeaderFooterTab.textFieldTitle":"フィールド","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"ページ番号","DE.Controllers.LeftMenu.leavePageText":"この文書で保存されていない変更はすべて失われます。
「キャンセル」をクリックし、「保存」をクリックすると、変更が保存されます。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","DE.Controllers.LeftMenu.newDocumentTitle":"無名のドキュメント","DE.Controllers.LeftMenu.notcriticalErrorTitle":"警告","DE.Controllers.LeftMenu.requestEditRightsText":"編集の権限を要求中...","DE.Controllers.LeftMenu.textLoadHistory":"バリエーションの履歴の読み込み中...","DE.Controllers.LeftMenu.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","DE.Controllers.LeftMenu.textReplaceSkipped":"置換が行われました。スキップされた発生回数は{0}です。","DE.Controllers.LeftMenu.textReplaceSuccess":"検索が完了しました。{0}つが置換されました。","DE.Controllers.LeftMenu.textSelectPath":"ファイルのコピーを保存するために新しいタイトルを入力してください","DE.Controllers.LeftMenu.txtCompatible":"ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。","DE.Controllers.LeftMenu.txtUntitled":"無題","DE.Controllers.LeftMenu.warnDownloadAs":"この形式で保存を続けると、テキスト以外のすべての機能が失われます。
本当に続行してもよろしいですか?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"あなたの{0}は編集可能な形式に変換されます。これには時間がかかる場合があります。変換後のドキュメントは、テキストを編集できるように最適化されるため、特に元のファイルに多くのグラフィックが含まれている場合、元の {0} と全く同じようには見えないかもしれません。","DE.Controllers.LeftMenu.warnDownloadAsRTF":"この形式で保存を続けると、一部の書式が失われる可能性があります。
本当に続行しますか?","DE.Controllers.LeftMenu.warnReplaceString":"{0} は、置換フィールドに有効な特殊文字ではありません。","DE.Controllers.Main.applyChangesTextText":"変更の読み込み中...","DE.Controllers.Main.applyChangesTitleText":"変更の読み込み中","DE.Controllers.Main.confirmMaxChangesSize":"アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。","DE.Controllers.Main.convertationTimeoutText":"変換タイムアウトを超過しました。","DE.Controllers.Main.criticalErrorExtText":"OKボタンを押すとドキュメントリストに戻ることができます。","DE.Controllers.Main.criticalErrorExtTextClose":"[OK]を押してエディターを閉じます。","DE.Controllers.Main.criticalErrorTitle":"エラー","DE.Controllers.Main.downloadErrorText":"ダウンロード失敗","DE.Controllers.Main.downloadMergeText":"ダウンロード中...","DE.Controllers.Main.downloadMergeTitle":"ダウンロード中","DE.Controllers.Main.downloadTextText":"ドキュメントのダウンロード中...","DE.Controllers.Main.downloadTitleText":"ドキュメントのダウンロード中","DE.Controllers.Main.errorAccessDeny":"権限のない操作を実行しようとしています。
ドキュメントサーバーの管理者にご連絡ください。","DE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません","DE.Controllers.Main.errorCannotPasteImg":"この画像をクリップボードから貼り付けることはできませんが、お使いのデバイスに保存して、 \nそこから挿入するか、テキストを含まない画像をコピーしてドキュメントに貼り付けることができます。","DE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。現在、文書を編集することができません。","DE.Controllers.Main.errorComboSeries":"組み合わせチャートを作成するには、最低2つのデータを選択します。","DE.Controllers.Main.errorCompare":"共同編集中は、ドキュメントの比較機能は使用できません。","DE.Controllers.Main.errorConnectToServer":"ドキュメントを保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
「OK」ボタンをクリックすると、ドキュメントのダウンロードを促すメッセージが表示されます。","DE.Controllers.Main.errorCopyDisabled":"セキュリティ上の理由により、この文書の内容はコピーできません。","DE.Controllers.Main.errorDatabaseConnection":"外部エラーです。
データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。","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.errorEditProtectedRange":"この選択は保護されているため、編集することはできません。","DE.Controllers.Main.errorEmailClient":"メールクライアントが見つかりませんでした。","DE.Controllers.Main.errorEmptyTOC":"スタイルギャラリーからの見出しスタイルを選択したテキストに適用して、目次の作成を開始します","DE.Controllers.Main.errorFilePassProtect":"文書がパスワードで保護されているため開くことができません","DE.Controllers.Main.errorFileSizeExceed":"ファイルサイズがサーバーで設定された制限を超過しています。
Documentサーバー管理者に詳細をお問い合わせください。","DE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存するか、後で再試行してください。","DE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","DE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","DE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","DE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","DE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","DE.Controllers.Main.errorKeyEncrypt":"不明なキーの記述子","DE.Controllers.Main.errorKeyExpire":"キー記述子は有効期限が切れました","DE.Controllers.Main.errorLoadingFont":"フォントが読み込まれていません。
ドキュメントサーバーの管理者に連絡してください。","DE.Controllers.Main.errorMailMergeLoadFile":"ドキュメントの読み込みに失敗しました。別のファイルを選択してください。","DE.Controllers.Main.errorMailMergeSaveFile":"結合に失敗しました。","DE.Controllers.Main.errorNoTOC":"更新する目次がありません。「参考資料」タブから挿入できます。","DE.Controllers.Main.errorPasswordIsNotCorrect":"入力されたパスワードが正しくありません。
CAPS LOCKキーがオフになっていることを確認し、大文字を正しく使用するようにしてください。","DE.Controllers.Main.errorSaveWatermark":"このファイルには、別のドメインにリンクされた透かし画像が含まれています。
PDFで見えるようにするには、文書と同じドメインからリンクされるように透かし画像を更新するか、コンピュータからアップロードしてください。","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.errorTextFormWrongFormat":"入力された値がフィールドのフォーマットと一致しません。","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.leavePageText":"この文書の保存されていない変更があります。保存するために「このページにとどまる」をクリックし、その後「保存」をクリックしてください。「このページを離れる」をクリックすると、未保存の変更がすべて破棄されます。","DE.Controllers.Main.leavePageTextOnClose":"この文書で保存されていない変更はすべて失われます。
「キャンセル」をクリックし、「保存」をクリックすると、変更が保存されます。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","DE.Controllers.Main.loadFontsTextText":"データを読み込んでいます…","DE.Controllers.Main.loadFontsTitleText":"データを読み込んでいます","DE.Controllers.Main.loadFontTextText":"データを読み込んでいます…","DE.Controllers.Main.loadFontTitleText":"データを読み込んでいます","DE.Controllers.Main.loadImagesTextText":"画像の読み込み中...","DE.Controllers.Main.loadImagesTitleText":"画像の読み込み中","DE.Controllers.Main.loadImageTextText":"画像の読み込み中...","DE.Controllers.Main.loadImageTitleText":"画像の読み込み中","DE.Controllers.Main.loadingDocumentTextText":"ドキュメントを読み込んでいます…","DE.Controllers.Main.loadingDocumentTitleText":"ドキュメントを読み込んでいます","DE.Controllers.Main.mailMergeLoadFileText":"データソースを読み込んでいます...","DE.Controllers.Main.mailMergeLoadFileTitle":"データソースを読み込んでいます","DE.Controllers.Main.notcriticalErrorTitle":"警告","DE.Controllers.Main.openErrorText":"ファイルを読み込み中にエラーが発生しました。","DE.Controllers.Main.openTextText":"ドキュメントを開いています...","DE.Controllers.Main.openTitleText":"ドキュメントを開いています","DE.Controllers.Main.printTextText":"ドキュメント印刷中...","DE.Controllers.Main.printTitleText":"ドキュメント印刷中","DE.Controllers.Main.reloadButtonText":"ページを再読み込み","DE.Controllers.Main.requestEditFailedMessageText":"この文書は他のユーザによって編集されています。後でもう一度お試しください。","DE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","DE.Controllers.Main.saveErrorText":"ファイルを保存中にエラーが発生しました。","DE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","DE.Controllers.Main.saveTextText":"文書を保存中...","DE.Controllers.Main.saveTitleText":"文書を保存中","DE.Controllers.Main.savingText":"提出中","DE.Controllers.Main.scriptLoadError":"インターネット接続が遅いため、一部のコンポーネントをロードできませんでした。ページを再読み込みしてください。","DE.Controllers.Main.sendMergeText":"マージを送信中...","DE.Controllers.Main.sendMergeTitle":"マージを送信中","DE.Controllers.Main.splitDividerErrorText":"行数は%1の除数になければなりません。","DE.Controllers.Main.splitMaxColsErrorText":"列の数は%1より小さくなければなりません。","DE.Controllers.Main.splitMaxRowsErrorText":"行数は%1より小さくなければなりません。","DE.Controllers.Main.textAnonymous":"匿名者","DE.Controllers.Main.textAnyone":"誰でも","DE.Controllers.Main.textApplyAll":"全ての数式に適用する","DE.Controllers.Main.textBuyNow":"ウェブサイトにアクセス","DE.Controllers.Main.textChangesSaved":"全ての変更点が保存されました","DE.Controllers.Main.textClose":"閉じる","DE.Controllers.Main.textCloseTip":"クリックでヒントを閉じる","DE.Controllers.Main.textConnectionLost":"接続中です。接続設定をご確認ください。","DE.Controllers.Main.textContactUs":"営業部に連絡する","DE.Controllers.Main.textContinue":"続ける","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":"ライセンス制限に達しました。","DE.Controllers.Main.textPaidFeature":"有料機能","DE.Controllers.Main.textReconnect":"接続が回復しました","DE.Controllers.Main.textRemember":"すべてのファイルに自分の選択を記憶させる","DE.Controllers.Main.textRememberMacros":"すべてのマクロに、この選択を記憶する","DE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","DE.Controllers.Main.textRenameLabel":"コラボレーションに使用する名前を入力して下さい。","DE.Controllers.Main.textRequestMacros":"マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?","DE.Controllers.Main.textShape":"図形","DE.Controllers.Main.textSignature":"署名","DE.Controllers.Main.textStrict":"厳格モード","DE.Controllers.Main.textText":"テキスト","DE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","DE.Controllers.Main.textTryUndoRedo":"高速共同編集モードでは、元に戻す/やり直し機能は無効になります。
「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。","DE.Controllers.Main.textTryUndoRedoWarn":"高速共同編集モードでは、元に戻す/やり直し機能が無効になります。","DE.Controllers.Main.textUndo":"元に戻す","DE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","DE.Controllers.Main.textUpdating":"アップデート中","DE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","DE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","DE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","DE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","DE.Controllers.Main.titleReadOnly":"閲覧専用モード","DE.Controllers.Main.titleServerVersion":"編集者が更新されました","DE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","DE.Controllers.Main.txtAbove":"上","DE.Controllers.Main.txtArt":"ここにテキストを入力","DE.Controllers.Main.txtBasicShapes":"基本図形","DE.Controllers.Main.txtBelow":"下","DE.Controllers.Main.txtBookmarkError":"エラー!ブックマークが定義されていません。","DE.Controllers.Main.txtButtons":"ボタン","DE.Controllers.Main.txtCallouts":"吹き出し","DE.Controllers.Main.txtCharts":"グラフ","DE.Controllers.Main.txtChoose":"アイテムを選択してください","DE.Controllers.Main.txtClickToLoad":"クリックして画像を読み込む","DE.Controllers.Main.txtCurrentDocument":"現在の文書","DE.Controllers.Main.txtDiagramTitle":"チャートのタイトル","DE.Controllers.Main.txtEditingMode":"編集モードを設定します...","DE.Controllers.Main.txtEndOfFormula":"予期しない数式の終了","DE.Controllers.Main.txtEnterDate":"日付を入力してください","DE.Controllers.Main.txtErrorLoadHistory":"履歴の読み込みに失敗しました。","DE.Controllers.Main.txtEvenPage":"偶数ページ","DE.Controllers.Main.txtFiguredArrows":"図形矢印","DE.Controllers.Main.txtFirstPage":"最初のページ","DE.Controllers.Main.txtFooter":"フッター","DE.Controllers.Main.txtFormulaNotInTable":"テーブルにない数式","DE.Controllers.Main.txtHeader":"ヘッダー","DE.Controllers.Main.txtHyperlink":"リンク","DE.Controllers.Main.txtIndTooLarge":"インデックスが大きすぎます","DE.Controllers.Main.txtLines":"線","DE.Controllers.Main.txtMainDocOnly":"エラー!メイン文書のみ。","DE.Controllers.Main.txtMath":"数学","DE.Controllers.Main.txtMissArg":"引数がありません","DE.Controllers.Main.txtMissOperator":"演算子がありません ","DE.Controllers.Main.txtNeedSynchronize":"更新があります","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.txtSameAsPrev":"前と同じ","DE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","DE.Controllers.Main.txtScheme_Aspect":"アスペクト","DE.Controllers.Main.txtScheme_Blue":"青色","DE.Controllers.Main.txtScheme_Blue_Green":"ブルーグリーン","DE.Controllers.Main.txtScheme_Blue_II":"青色II","DE.Controllers.Main.txtScheme_Blue_Warm":"ブルーウォーム","DE.Controllers.Main.txtScheme_Grayscale":"グレースケール","DE.Controllers.Main.txtScheme_Green":"緑色","DE.Controllers.Main.txtScheme_Green_Yellow":"黄緑色","DE.Controllers.Main.txtScheme_Marquee":"マーキー","DE.Controllers.Main.txtScheme_Median":"中位数","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"オレンジ色","DE.Controllers.Main.txtScheme_Orange_Red":"オレンジ赤色","DE.Controllers.Main.txtScheme_Paper":"紙","DE.Controllers.Main.txtScheme_Red":"赤色","DE.Controllers.Main.txtScheme_Red_Orange":"オレンジ赤色","DE.Controllers.Main.txtScheme_Red_Violet":"赤紫色","DE.Controllers.Main.txtScheme_Slipstream":"スリップストリーム","DE.Controllers.Main.txtScheme_Violet":"バイオレット色","DE.Controllers.Main.txtScheme_Violet_II":"バイオレット II","DE.Controllers.Main.txtScheme_Yellow":"黄色","DE.Controllers.Main.txtScheme_Yellow_Orange":"オレンジ黄色","DE.Controllers.Main.txtSection":"-セクション","DE.Controllers.Main.txtSeries":"系列","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_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":"角","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":"半フレーム","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":"爆発 1","DE.Controllers.Main.txtShape_irregularSeal2":"爆発 2","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_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":"1つの角を丸めた四角形","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":"1つの角を切り取った四角形","DE.Controllers.Main.txtShape_snip2DiagRect":"対角する2つの角を切り取った四角形","DE.Controllers.Main.txtShape_snip2SameRect":"片側の2つの角を切り取った四角形","DE.Controllers.Main.txtShape_snipRoundRect":"1つの角を切り取り1つの角を丸めた四角形","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_Book_Title":"書名","DE.Controllers.Main.txtStyle_Caption":"キャプション","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"デフォルトの段落フォント","DE.Controllers.Main.txtStyle_Emphasis":"強調斜体","DE.Controllers.Main.txtStyle_endnote_reference":"尾注参考","DE.Controllers.Main.txtStyle_endnote_text":"文末脚注","DE.Controllers.Main.txtStyle_footnote_reference":"脚注参考","DE.Controllers.Main.txtStyle_footnote_text":"脚注","DE.Controllers.Main.txtStyle_Heading_1":"見出し1","DE.Controllers.Main.txtStyle_Heading_2":"見出し2","DE.Controllers.Main.txtStyle_Heading_3":"見出し3","DE.Controllers.Main.txtStyle_Heading_4":"見出し4","DE.Controllers.Main.txtStyle_Heading_5":"見出し5","DE.Controllers.Main.txtStyle_Heading_6":"見出し6","DE.Controllers.Main.txtStyle_Heading_7":"見出し7","DE.Controllers.Main.txtStyle_Heading_8":"見出し8","DE.Controllers.Main.txtStyle_Heading_9":"見出し9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"強調斜体 2","DE.Controllers.Main.txtStyle_Intense_Quote":"引用文 2","DE.Controllers.Main.txtStyle_Intense_Reference":"参照 2","DE.Controllers.Main.txtStyle_List_Paragraph":"リスト段落","DE.Controllers.Main.txtStyle_No_List":"リストなし","DE.Controllers.Main.txtStyle_No_Spacing":"行間詰め","DE.Controllers.Main.txtStyle_Normal":"標準","DE.Controllers.Main.txtStyle_Quote":"引用文 1","DE.Controllers.Main.txtStyle_Strong":"強調太字","DE.Controllers.Main.txtStyle_Subtitle":"副題","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"斜体","DE.Controllers.Main.txtStyle_Subtle_Reference":"参照 1","DE.Controllers.Main.txtStyle_Title":"表題","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":"こちらに数式を入力してください","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.updateChartText":"チャートのデータが更新中です…","DE.Controllers.Main.uploadDocExtMessage":"不明な文書形式","DE.Controllers.Main.uploadDocFileCountMessage":"アップロードされた文書がありません。","DE.Controllers.Main.uploadDocSizeMessage":"文書の最大サイズ制限を超えました","DE.Controllers.Main.uploadImageExtMessage":"不明な画像形式","DE.Controllers.Main.uploadImageFileCountMessage":"画像のアップロードはありません。","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":"お使いのブラウザの現在のZoomの設定は完全にはサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。","DE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","DE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","DE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページをリロードしてください。","DE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","DE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください。","DE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","DE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","DE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","DE.Controllers.Main.warnStartFilling":"フォームへの入力中です。
現在、ファイルの編集はご利用いただけません。","DE.Controllers.Navigation.txtBeginning":"文書の先頭","DE.Controllers.Navigation.txtGotoBeginning":"文書の先頭に移動する","DE.Controllers.Print.textMarginsLast":"最後に適用した設定","DE.Controllers.Print.txtCustom":"ユーザー設定","DE.Controllers.Print.txtPrintRangeInvalid":"無効な印刷範囲","DE.Controllers.Search.notcriticalErrorTitle":" 警告","DE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。他の検索設定を選択してください。","DE.Controllers.Search.textReplaceSkipped":"置換が行われました。スキップされた発生回数は{0}です。","DE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました。","DE.Controllers.Search.warnReplaceString":"{0}は、「置換」ボックスで有効な特殊文字ではありません。","DE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","DE.Controllers.Statusbar.textHasChanges":"新しい変更点を追記しました","DE.Controllers.Statusbar.textSetTrackChanges":"変更履歴モードで編集中です","DE.Controllers.Statusbar.textTrackChanges":"ドキュメントが変更履歴モードが有効な状態で開かれています","DE.Controllers.Statusbar.tipReview":"変更履歴","DE.Controllers.Statusbar.zoomText":"ズーム{0}%","DE.Controllers.Toolbar.confirmAddFontName":"保存しようとしているフォントを現在のデバイスで使用することができません。
システムフォントを使って、テキストのスタイルが表示されます。利用可能になったとき、保存されたフォントが適用されます。
続行しますか。","DE.Controllers.Toolbar.dataUrl":"データのURLを貼り付け","DE.Controllers.Toolbar.errorAccessDeny":"権限のない操作を実行しようとしています。
ドキュメントサーバーの管理者にご連絡ください。","DE.Controllers.Toolbar.fileUrl":"ファイルのURLを貼り付ける","DE.Controllers.Toolbar.helpChartElements":"数回クリックするだけでグラフ要素の表示/非表示を簡単に切り替えられる。","DE.Controllers.Toolbar.helpChartElementsHeader":"グラフ要素表示","DE.Controllers.Toolbar.helpCommentFilter":"左パネルで、開いているコメントと解決済みコメントを切り替えて、表示の管理ができます。","DE.Controllers.Toolbar.helpCommentFilterHeader":"コメントのフィルター","DE.Controllers.Toolbar.notcriticalErrorTitle":"警告","DE.Controllers.Toolbar.textAccent":"ダイアクリティカル・マーク","DE.Controllers.Toolbar.textBracket":"括弧","DE.Controllers.Toolbar.textConvertFormDownload":"記入可能なPDF形式のファイルをダウンロードしてください。","DE.Controllers.Toolbar.textConvertFormSave":"記入可能なPDFフォームとしてファイルを保存すると、記入できるようになります。","DE.Controllers.Toolbar.textDownloadPdf":"PDFのダウンロード","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":"大型演算子","DE.Controllers.Toolbar.textLimitAndLog":"極限と対数","DE.Controllers.Toolbar.textMatrix":"行列","DE.Controllers.Toolbar.textOperator":"演算子","DE.Controllers.Toolbar.textRadical":"ラジカル","DE.Controllers.Toolbar.textRecentlyUsed":"最近使った項目","DE.Controllers.Toolbar.textSavePdf":"pdfとして保存","DE.Controllers.Toolbar.textScript":"スクリプト","DE.Controllers.Toolbar.textSymbols":"記号","DE.Controllers.Toolbar.textTabForms":"フォーム","DE.Controllers.Toolbar.textWarning":"警告","DE.Controllers.Toolbar.txtAccent_Accent":"アキュート","DE.Controllers.Toolbar.txtAccent_ArrowD":"左右双方向矢印 (上)","DE.Controllers.Toolbar.txtAccent_ArrowL":"左に矢印 (上)","DE.Controllers.Toolbar.txtAccent_ArrowR":"右向き矢印 (上)","DE.Controllers.Toolbar.txtAccent_Bar":"バー","DE.Controllers.Toolbar.txtAccent_BarBot":"アンダーバー","DE.Controllers.Toolbar.txtAccent_BarTop":"オーバーライン","DE.Controllers.Toolbar.txtAccent_BorderBox":"四角囲み数式 (プレースホルダ付き)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"四角囲み数式 (例)","DE.Controllers.Toolbar.txtAccent_Check":"チェック","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"下括弧","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"上括弧","DE.Controllers.Toolbar.txtAccent_Custom_1":"ベクトルA","DE.Controllers.Toolbar.txtAccent_Custom_2":"オーバーライン付き ABC","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XORと上線","DE.Controllers.Toolbar.txtAccent_DDDot":"トリプルドット","DE.Controllers.Toolbar.txtAccent_DDot":"複付点","DE.Controllers.Toolbar.txtAccent_Dot":"点","DE.Controllers.Toolbar.txtAccent_DoubleBar":"二重オーバーライン","DE.Controllers.Toolbar.txtAccent_Grave":"グレイヴ","DE.Controllers.Toolbar.txtAccent_GroupBot":"グループ化文字(下)","DE.Controllers.Toolbar.txtAccent_GroupTop":"グループ化文字(上)","DE.Controllers.Toolbar.txtAccent_HarpoonL":"左半矢印(上)","DE.Controllers.Toolbar.txtAccent_HarpoonR":"右向き半矢印 (上)","DE.Controllers.Toolbar.txtAccent_Hat":"ハット","DE.Controllers.Toolbar.txtAccent_Smile":"ブレーヴェ","DE.Controllers.Toolbar.txtAccent_Tilde":"チルダ","DE.Controllers.Toolbar.txtBracket_Angle":"山かっこ","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"山かっこと縦棒","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"山かっこと縦棒 2 本","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"終わり山かっこ","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"始め山かっこ","DE.Controllers.Toolbar.txtBracket_Curve":"中かっこ","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"中かっこと縦棒","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"右中かっこ","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"左中かっこ","DE.Controllers.Toolbar.txtBracket_Custom_1":"場合分け(条件2つ)","DE.Controllers.Toolbar.txtBracket_Custom_2":"場合分け (条件 3 つ)","DE.Controllers.Toolbar.txtBracket_Custom_3":"縦並びオブジェクト","DE.Controllers.Toolbar.txtBracket_Custom_4":"縦並びオブジェクト (かっこ付き)","DE.Controllers.Toolbar.txtBracket_Custom_5":"場合分けの例","DE.Controllers.Toolbar.txtBracket_Custom_6":"二項係数","DE.Controllers.Toolbar.txtBracket_Custom_7":"二項係数 (山かっこ付き)","DE.Controllers.Toolbar.txtBracket_Line":"縦棒","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"縦棒 (右のみ)","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"縦棒 (左のみ)","DE.Controllers.Toolbar.txtBracket_LineDouble":"二重縦棒","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"二重縦棒 (右のみ)","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"二重縦棒 (左のみ)","DE.Controllers.Toolbar.txtBracket_LowLim":"終わりかっこ","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"床関数 (右記号)","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"床関数 (左記号)","DE.Controllers.Toolbar.txtBracket_Round":"括弧","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"括弧と区切り線","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"右かっこ","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"左かっこ","DE.Controllers.Toolbar.txtBracket_Square":"大かっこ","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"右の角括弧の間のプレースホルダー","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"反転した角括弧","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"右角かっこ","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"左角かっこ","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"左の角括弧の間のプレースホルダー","DE.Controllers.Toolbar.txtBracket_SquareDouble":"二重の角括弧","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"右ダブル角型かっこ","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"左ダブル角型かっこ","DE.Controllers.Toolbar.txtBracket_UppLim":"天井大かっこ","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"天井関数 (右記号)","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"単一括弧","DE.Controllers.Toolbar.txtDownload":"ダウンロード","DE.Controllers.Toolbar.txtFractionDiagonal":"分数 (斜め)","DE.Controllers.Toolbar.txtFractionDifferential_1":"微分","DE.Controllers.Toolbar.txtFractionDifferential_2":"大文字デルタ y/大文字デルタ x","DE.Controllers.Toolbar.txtFractionDifferential_3":"部分的なxに対する部分的なy","DE.Controllers.Toolbar.txtFractionDifferential_4":"デルタ y/デルタ x","DE.Controllers.Toolbar.txtFractionHorizontal":"分数 (横)","DE.Controllers.Toolbar.txtFractionPi_2":"Pi/2","DE.Controllers.Toolbar.txtFractionSmall":"分数 (小)","DE.Controllers.Toolbar.txtFractionVertical":"分数 (縦)","DE.Controllers.Toolbar.txtFunction_1_Cos":"逆余弦関数","DE.Controllers.Toolbar.txtFunction_1_Cosh":"双曲線逆余弦関数","DE.Controllers.Toolbar.txtFunction_1_Cot":"逆余接関数","DE.Controllers.Toolbar.txtFunction_1_Coth":"双曲線逆共接関数","DE.Controllers.Toolbar.txtFunction_1_Csc":"逆余割関数","DE.Controllers.Toolbar.txtFunction_1_Csch":"双曲線逆余割関数","DE.Controllers.Toolbar.txtFunction_1_Sec":"逆正割関数","DE.Controllers.Toolbar.txtFunction_1_Sech":"双曲線逆正割関数","DE.Controllers.Toolbar.txtFunction_1_Sin":"逆正弦関数","DE.Controllers.Toolbar.txtFunction_1_Sinh":"双曲線逆正弦関数","DE.Controllers.Toolbar.txtFunction_1_Tan":"逆正接関数","DE.Controllers.Toolbar.txtFunction_1_Tanh":"双曲線逆正接関数","DE.Controllers.Toolbar.txtFunction_Cos":"余弦関数","DE.Controllers.Toolbar.txtFunction_Cosh":"双曲線余弦関数","DE.Controllers.Toolbar.txtFunction_Cot":"余接関数","DE.Controllers.Toolbar.txtFunction_Coth":"双曲線余接関数","DE.Controllers.Toolbar.txtFunction_Csc":"余割関数\t","DE.Controllers.Toolbar.txtFunction_Csch":"双曲線余割関数","DE.Controllers.Toolbar.txtFunction_Custom_1":"Sin θ","DE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"正接数式","DE.Controllers.Toolbar.txtFunction_Sec":"正割関数","DE.Controllers.Toolbar.txtFunction_Sech":"双曲線正割","DE.Controllers.Toolbar.txtFunction_Sin":"正弦関数","DE.Controllers.Toolbar.txtFunction_Sinh":"双曲線正弦","DE.Controllers.Toolbar.txtFunction_Tan":"正接関数","DE.Controllers.Toolbar.txtFunction_Tanh":"双曲線正接関数","DE.Controllers.Toolbar.txtIntegral":"積分","DE.Controllers.Toolbar.txtIntegral_dtheta":"微分シータ","DE.Controllers.Toolbar.txtIntegral_dx":"微分x","DE.Controllers.Toolbar.txtIntegral_dy":"微分y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralDouble":"二重積分","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"二重積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"二重積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralOriented":"周回積分","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"線積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"面積分","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"面積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"面積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"線積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"体積積分","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"体積積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"体積積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralSubSup":"積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralTriple":"三重積分","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"三重積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"三重積分 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"論理積","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"論理積 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"論理積 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"論理積 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"論理積 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"余積","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"下端付き余積","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"極限付き余積","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"下端下付き双対積","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"上下付き極限付き双対積","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"n から k を選ぶ場合の k の総和","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"総和 (i = 0 から n まで)","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"添え字 2 個を使う総和の例","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"積の例","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"和集合の例","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"論理和","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"論理和 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"論理和 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"論理和 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"論理和 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"共通集合","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"積集合 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"積集合 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"積集合 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"積集合 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Prod":"乗積","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"積 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"積 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"積 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"積 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Sum":"合計","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"総和 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"総和 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"総和 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"総和 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Union":"和集合","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"和集合 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"和集合 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"和集合 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"和集合 (下付き/上付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"極限の例","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"最大値の例","DE.Controllers.Toolbar.txtLimitLog_Lim":"極限","DE.Controllers.Toolbar.txtLimitLog_Ln":"自然対数","DE.Controllers.Toolbar.txtLimitLog_Log":"対数","DE.Controllers.Toolbar.txtLimitLog_LogBase":"対数","DE.Controllers.Toolbar.txtLimitLog_Max":"最大","DE.Controllers.Toolbar.txtLimitLog_Min":"最小","DE.Controllers.Toolbar.txtMarginsH":"指定されたページの高さ対して、上下の余白が大きすぎます。","DE.Controllers.Toolbar.txtMarginsW":"ページ幅に対して左右の余白が広すぎます。","DE.Controllers.Toolbar.txtMatrix_1_2":"1x2空行列","DE.Controllers.Toolbar.txtMatrix_1_3":"1x3空行列","DE.Controllers.Toolbar.txtMatrix_2_1":"2x1 空行列","DE.Controllers.Toolbar.txtMatrix_2_2":"2x2 空行列","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"空の 2x2 行列 (二重縦棒付き)","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"空の 2x2 行列式","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"空の 2x2 行列 (かっこ付き)","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"空の 2x2 行列 (大かっこ付き)","DE.Controllers.Toolbar.txtMatrix_2_3":"2x3 空行列","DE.Controllers.Toolbar.txtMatrix_3_1":"3x1 空行列","DE.Controllers.Toolbar.txtMatrix_3_2":"3x2 空行列","DE.Controllers.Toolbar.txtMatrix_3_3":"3x3 空行列","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"基準線点","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"ミッドラインドット","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"斜めドット","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"縦向きドット","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"疎行列 (かっこ付き)","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"疎行列 (大かっこ付き)","DE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 単位行列 (0 あり)","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"空白の対角セルを持つ 2x2 の単位行列","DE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 単位行列 (0 あり)","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3 単位行列 (対角線上以外のセルは空白)","DE.Controllers.Toolbar.txtNeedDownload":"PDFビューアは、新しい変更を別々のファイルコピーに保存することしかできません。共同編集をサポートしていないため、新しいファイルバージョンを共有しない限り、他のユーザーはあなたの変更を見ることができません。","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"左右双方向矢印 (下)","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"左右双方向矢印 (上)","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"左に矢印 (下)","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"左に矢印 (上)","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"右向き矢印 (下)","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"右向き矢印 (上)","DE.Controllers.Toolbar.txtOperator_ColonEquals":"コロンイコール","DE.Controllers.Toolbar.txtOperator_Custom_1":"導出","DE.Controllers.Toolbar.txtOperator_Custom_2":"デルタ収量","DE.Controllers.Toolbar.txtOperator_Definition":"定義上等しい","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"デルタ付き等号","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"左右双方向矢印 (下)","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"左右双方向矢印 (上)","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"左に矢印 (下)","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"左に矢印 (上)","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"右向き矢印 (下)","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"右向き矢印 (上)","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"イコールイコール","DE.Controllers.Toolbar.txtOperator_MinusEquals":"マイナスイコール","DE.Controllers.Toolbar.txtOperator_PlusEquals":"プラスイコール","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"によって測定","DE.Controllers.Toolbar.txtRadicalCustom_1":"二次方程式の解の公式の右辺","DE.Controllers.Toolbar.txtRadicalCustom_2":"a の 2 乗と b の 2 乗の和の平方根","DE.Controllers.Toolbar.txtRadicalRoot_2":"次数付き平方根","DE.Controllers.Toolbar.txtRadicalRoot_3":"立方根","DE.Controllers.Toolbar.txtRadicalRoot_n":"度付きラジカル","DE.Controllers.Toolbar.txtRadicalSqrt":"平方根","DE.Controllers.Toolbar.txtSaveCopy":"コピーを保存","DE.Controllers.Toolbar.txtScriptCustom_1":"x 下付き文字 y の 2 乗","DE.Controllers.Toolbar.txtScriptCustom_2":"e のマイナス i ω t 乗","DE.Controllers.Toolbar.txtScriptCustom_3":"x の 2 乗","DE.Controllers.Toolbar.txtScriptCustom_4":"Y 左上付き文字 n 左下付き文字 1","DE.Controllers.Toolbar.txtScriptSub":"下付き文字","DE.Controllers.Toolbar.txtScriptSubSup":"下付き文字 - 上付き文字","DE.Controllers.Toolbar.txtScriptSubSupLeft":"左下付き文字 - 上付き文字","DE.Controllers.Toolbar.txtScriptSup":"上付き文字","DE.Controllers.Toolbar.txtSymbol_about":"約","DE.Controllers.Toolbar.txtSymbol_additional":"補数","DE.Controllers.Toolbar.txtSymbol_aleph":"アレフ","DE.Controllers.Toolbar.txtSymbol_alpha":"アルファ","DE.Controllers.Toolbar.txtSymbol_approx":"にほぼ等しい","DE.Controllers.Toolbar.txtSymbol_ast":"アスタリスク","DE.Controllers.Toolbar.txtSymbol_beta":"ベータ","DE.Controllers.Toolbar.txtSymbol_beth":"ベート","DE.Controllers.Toolbar.txtSymbol_bullet":"箇条書きの演算子","DE.Controllers.Toolbar.txtSymbol_cap":"共通集合","DE.Controllers.Toolbar.txtSymbol_cbrt":"立方根","DE.Controllers.Toolbar.txtSymbol_cdots":"水平中央の省略記号","DE.Controllers.Toolbar.txtSymbol_celsius":"摂氏","DE.Controllers.Toolbar.txtSymbol_chi":"カイ","DE.Controllers.Toolbar.txtSymbol_cong":"にほぼ等しい","DE.Controllers.Toolbar.txtSymbol_cup":"和集合","DE.Controllers.Toolbar.txtSymbol_ddots":"下右斜めの省略記号","DE.Controllers.Toolbar.txtSymbol_degree":"度","DE.Controllers.Toolbar.txtSymbol_delta":"デルタ","DE.Controllers.Toolbar.txtSymbol_div":"除算記号","DE.Controllers.Toolbar.txtSymbol_downarrow":"下矢印","DE.Controllers.Toolbar.txtSymbol_emptyset":"空集合","DE.Controllers.Toolbar.txtSymbol_epsilon":"イプシロン","DE.Controllers.Toolbar.txtSymbol_equals":"イコール","DE.Controllers.Toolbar.txtSymbol_equiv":"と同一","DE.Controllers.Toolbar.txtSymbol_eta":"エータ","DE.Controllers.Toolbar.txtSymbol_exists":"存在します\t","DE.Controllers.Toolbar.txtSymbol_factorial":"階乗","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"華氏","DE.Controllers.Toolbar.txtSymbol_forall":"全てに","DE.Controllers.Toolbar.txtSymbol_gamma":"ガンマ","DE.Controllers.Toolbar.txtSymbol_geq":"次の値より大きいか等しい","DE.Controllers.Toolbar.txtSymbol_gg":"次の値よりはるかに大きい","DE.Controllers.Toolbar.txtSymbol_greater":"次の値より大きい","DE.Controllers.Toolbar.txtSymbol_in":"属する","DE.Controllers.Toolbar.txtSymbol_inc":"増分","DE.Controllers.Toolbar.txtSymbol_infinity":"無限","DE.Controllers.Toolbar.txtSymbol_iota":"イオタ","DE.Controllers.Toolbar.txtSymbol_kappa":"カッパ","DE.Controllers.Toolbar.txtSymbol_lambda":"ラムダ","DE.Controllers.Toolbar.txtSymbol_leftarrow":"左矢印","DE.Controllers.Toolbar.txtSymbol_leftrightarrow":"左右矢印","DE.Controllers.Toolbar.txtSymbol_leq":"次の値より小さいか等しい","DE.Controllers.Toolbar.txtSymbol_less":"次の値より小さい","DE.Controllers.Toolbar.txtSymbol_ll":"次の値よりはるかに小さい","DE.Controllers.Toolbar.txtSymbol_minus":"マイナス","DE.Controllers.Toolbar.txtSymbol_mp":"マイナスプラス\t","DE.Controllers.Toolbar.txtSymbol_mu":"ミュー","DE.Controllers.Toolbar.txtSymbol_nabla":"ナブラ","DE.Controllers.Toolbar.txtSymbol_neq":"と等しくない","DE.Controllers.Toolbar.txtSymbol_ni":"含む","DE.Controllers.Toolbar.txtSymbol_not":"否定記号","DE.Controllers.Toolbar.txtSymbol_notexists":"存在しません","DE.Controllers.Toolbar.txtSymbol_nu":"ニュー","DE.Controllers.Toolbar.txtSymbol_o":"オミクロン","DE.Controllers.Toolbar.txtSymbol_omega":"オメガ","DE.Controllers.Toolbar.txtSymbol_partial":"偏微分","DE.Controllers.Toolbar.txtSymbol_percent":"パーセンテージ","DE.Controllers.Toolbar.txtSymbol_phi":"ファイ","DE.Controllers.Toolbar.txtSymbol_pi":"パイ","DE.Controllers.Toolbar.txtSymbol_plus":"プラス","DE.Controllers.Toolbar.txtSymbol_pm":"プラス マイナス","DE.Controllers.Toolbar.txtSymbol_propto":"に比例","DE.Controllers.Toolbar.txtSymbol_psi":"プサイ","DE.Controllers.Toolbar.txtSymbol_qdrt":"四乗根","DE.Controllers.Toolbar.txtSymbol_qed":"証明終了","DE.Controllers.Toolbar.txtSymbol_rddots":"斜め(右上)の省略記号","DE.Controllers.Toolbar.txtSymbol_rho":"ロー","DE.Controllers.Toolbar.txtSymbol_rightarrow":"右矢印","DE.Controllers.Toolbar.txtSymbol_sigma":"シグマ","DE.Controllers.Toolbar.txtSymbol_sqrt":"根号","DE.Controllers.Toolbar.txtSymbol_tau":"タウ","DE.Controllers.Toolbar.txtSymbol_therefore":"従って","DE.Controllers.Toolbar.txtSymbol_theta":"シータ","DE.Controllers.Toolbar.txtSymbol_times":"乗算記号","DE.Controllers.Toolbar.txtSymbol_uparrow":"上矢印","DE.Controllers.Toolbar.txtSymbol_upsilon":"ウプシロン","DE.Controllers.Toolbar.txtSymbol_varepsilon":"イプシロン (別形)","DE.Controllers.Toolbar.txtSymbol_varphi":"ファイ (別形)","DE.Controllers.Toolbar.txtSymbol_varpi":"パイ","DE.Controllers.Toolbar.txtSymbol_varrho":"ロー (別形)","DE.Controllers.Toolbar.txtSymbol_varsigma":"シグマ (別形)","DE.Controllers.Toolbar.txtSymbol_vartheta":"シータ (別形)","DE.Controllers.Toolbar.txtSymbol_vdots":"垂直線の省略記号","DE.Controllers.Toolbar.txtSymbol_xsi":"グザイ","DE.Controllers.Toolbar.txtSymbol_zeta":"ゼータ","DE.Controllers.Toolbar.txtUntitled":"無題","DE.Controllers.Viewport.textFitPage":"ページに合わせる","DE.Controllers.Viewport.textFitWidth":"幅を合わせる","DE.Controllers.Viewport.txtDarkMode":"ダークモード","DE.Views.BookmarksDialog.textAdd":"追加","DE.Views.BookmarksDialog.textAddAndGetLink":"リンクの追加&取得","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.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":"方程式\t","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.textLabelError":"ラベルは空白にできません","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.CellsRemoveDialog.textCol":"列全体を削除","DE.Views.CellsRemoveDialog.textLeft":"セルの左シフト","DE.Views.CellsRemoveDialog.textRow":"行全体を削除","DE.Views.CellsRemoveDialog.textTitle":"セルを削除する","DE.Views.ChartSettings.text3dDepth":"深さ(ベースに対する割合)","DE.Views.ChartSettings.text3dHeight":"高さ(ベースに対する割合)","DE.Views.ChartSettings.text3dRotation":"3D回転","DE.Views.ChartSettings.textAdvanced":"詳細設定を表示","DE.Views.ChartSettings.textAutoscale":"自動スケーリング","DE.Views.ChartSettings.textChartType":"グラフの種類の変更","DE.Views.ChartSettings.textData":"データ","DE.Views.ChartSettings.textDefault":"デフォルト回転","DE.Views.ChartSettings.textDown":"下","DE.Views.ChartSettings.textEditData":"データの編集","DE.Views.ChartSettings.textEditLinks":"リンクの編集","DE.Views.ChartSettings.textHeight":"高さ","DE.Views.ChartSettings.textKeepRatio":"比例の一定","DE.Views.ChartSettings.textLeft":"左","DE.Views.ChartSettings.textLinkedData":"リンク済みのデータ","DE.Views.ChartSettings.textNarrow":"狭角","DE.Views.ChartSettings.textOriginalSize":"実際のサイズ","DE.Views.ChartSettings.textPerspective":"分析観点","DE.Views.ChartSettings.textRight":"右","DE.Views.ChartSettings.textRightAngle":"軸の直交","DE.Views.ChartSettings.textSelectData":"データの選択","DE.Views.ChartSettings.textSize":"サイズ","DE.Views.ChartSettings.textStyle":"スタイル","DE.Views.ChartSettings.textUndock":"パネルからドッキング解除","DE.Views.ChartSettings.textUp":"上","DE.Views.ChartSettings.textUpdateData":"データの更新","DE.Views.ChartSettings.textWiden":"広角","DE.Views.ChartSettings.textWidth":"幅","DE.Views.ChartSettings.textWrap":"折り返しの種類と配置","DE.Views.ChartSettings.textX":"X 回転","DE.Views.ChartSettings.textY":"Y 回転","DE.Views.ChartSettings.txtBehind":"テキストの背後に","DE.Views.ChartSettings.txtInFront":"テキストの前に","DE.Views.ChartSettings.txtInline":"テキストに沿って","DE.Views.ChartSettings.txtSquare":"四角","DE.Views.ChartSettings.txtThrough":"内部","DE.Views.ChartSettings.txtTight":"外周","DE.Views.ChartSettings.txtTitle":"チャート","DE.Views.ChartSettings.txtTopAndBottom":"上と下","DE.Views.ChartSettingsDlg.textLeftOverlay":"左のオーバーレイ","DE.Views.CompareSettingsDialog.textChar":"文字レベル","DE.Views.CompareSettingsDialog.textShow":"での変更点を表示","DE.Views.CompareSettingsDialog.textTitle":"比較設定","DE.Views.CompareSettingsDialog.textWord":"単語レベル","DE.Views.ControlSettingsDialog.strGeneral":"一般","DE.Views.ControlSettingsDialog.textAdd":"追加","DE.Views.ControlSettingsDialog.textAppearance":"外観","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.ControlSettingsDialog.txtRemContent":"コンテンツが編集されたときにコンテンツ・コントロールを削除する","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":"方程式\t","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.textEqualWidth":"段の幅をすべて同じにする","DE.Views.CustomColumnsDialog.textSeparator":"列の区切り線","DE.Views.CustomColumnsDialog.textTitle":"列","DE.Views.CustomColumnsDialog.textTitleSpacing":"間隔","DE.Views.CustomColumnsDialog.textWidth":"幅","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.DocProtection.hintProtectDoc":"文書を保護する","DE.Views.DocProtection.txtDocProtectedComment":"文書は保護されています。
この文書には、コメントしか挿入できません。","DE.Views.DocProtection.txtDocProtectedForms":"文書は保護されています。
この文書では、フォームにのみ記入することができます。","DE.Views.DocProtection.txtDocProtectedTrack":"文書は保護されています。
この文書を編集することは可能ですが、すべての変更は追跡されます。","DE.Views.DocProtection.txtDocProtectedView":"ドキュメントが保護されています。
このドキュメントは閲覧のみ可能です。","DE.Views.DocProtection.txtDocUnlockDescription":"パスワードを入力すると、文書の保護が解除されます","DE.Views.DocProtection.txtProtectDoc":"文書を保護する","DE.Views.DocProtection.txtUnlockTitle":"文書保護の解除","DE.Views.DocumentHolder.aboveText":"上","DE.Views.DocumentHolder.addCommentText":"コメントの追加","DE.Views.DocumentHolder.advancedDropCapText":"ドロップキャップの設定","DE.Views.DocumentHolder.advancedEquationText":"数式設定","DE.Views.DocumentHolder.advancedFrameText":"フレームの詳細設定","DE.Views.DocumentHolder.advancedParagraphText":"段落の詳細設定","DE.Views.DocumentHolder.advancedTableText":"テーブルの詳細設定","DE.Views.DocumentHolder.advancedText":"詳細設定","DE.Views.DocumentHolder.AlignBottom":"下","DE.Views.DocumentHolder.AlignCenter":"中央揃え","DE.Views.DocumentHolder.AlignJust":"両端揃え","DE.Views.DocumentHolder.AlignLeft":"左","DE.Views.DocumentHolder.alignmentText":"配置","DE.Views.DocumentHolder.AlignMiddle":"中央","DE.Views.DocumentHolder.AlignRight":"右","DE.Views.DocumentHolder.AlignText":"テキストの揃え","DE.Views.DocumentHolder.AlignTop":"トップ","DE.Views.DocumentHolder.allLinearText":"すべて - 線形","DE.Views.DocumentHolder.allProfText":"すべて - プロフェッショナル","DE.Views.DocumentHolder.belowText":"下","DE.Views.DocumentHolder.breakBeforeText":"前に改ページ","DE.Views.DocumentHolder.btnChart":"タイトル、凡例、目盛線、データ ラベルなどのグラフ要素を追加、削除、または変更します","DE.Views.DocumentHolder.bulletsText":"箇条書きと段落番号","DE.Views.DocumentHolder.cellAlignText":"セルの縦方向の配置","DE.Views.DocumentHolder.cellText":"セル","DE.Views.DocumentHolder.centerText":"中央揃え","DE.Views.DocumentHolder.chartText":"チャートの詳細設定","DE.Views.DocumentHolder.columnText":"列","DE.Views.DocumentHolder.currLinearText":"現在 - 線形","DE.Views.DocumentHolder.currProfText":"現在 - プロフェッショナル","DE.Views.DocumentHolder.deleteColumnText":"列の削除","DE.Views.DocumentHolder.deleteRowText":"行の削除","DE.Views.DocumentHolder.deleteTableText":"表の削除","DE.Views.DocumentHolder.deleteText":"削除する","DE.Views.DocumentHolder.DepthAxis":"Z軸","DE.Views.DocumentHolder.direct270Text":"上にテキストを回転","DE.Views.DocumentHolder.direct90Text":"下にテキストを回転","DE.Views.DocumentHolder.directHText":"水平","DE.Views.DocumentHolder.directionText":"文字の方向","DE.Views.DocumentHolder.editChartText":"データの編集","DE.Views.DocumentHolder.editFooterText":"フッターの編集","DE.Views.DocumentHolder.editHeaderText":"ヘッダーの編集","DE.Views.DocumentHolder.editHyperlinkText":"ハイパーリンクを編集","DE.Views.DocumentHolder.eqToDisplayText":"ディスプレイに変更","DE.Views.DocumentHolder.eqToInlineText":"内臓に切り替える","DE.Views.DocumentHolder.guestText":"ゲスト","DE.Views.DocumentHolder.hideEqToolbar":"方程式ツールバーを非表示にする","DE.Views.DocumentHolder.hyperlinkText":"リンク","DE.Views.DocumentHolder.ignoreAllSpellText":"全てを無視する","DE.Views.DocumentHolder.ignoreSpellText":"無視する","DE.Views.DocumentHolder.imageText":"画像の詳細設定","DE.Views.DocumentHolder.insertColumnLeftText":"左の列","DE.Views.DocumentHolder.insertColumnRightText":"1 列右","DE.Views.DocumentHolder.insertColumnText":"列の挿入","DE.Views.DocumentHolder.insertRowAboveText":"行 (上)","DE.Views.DocumentHolder.insertRowBelowText":"行(下)","DE.Views.DocumentHolder.insertRowText":"行の挿入","DE.Views.DocumentHolder.insertText":"挿入","DE.Views.DocumentHolder.keepLinesText":"段落を分割しない","DE.Views.DocumentHolder.langText":"言語の選択","DE.Views.DocumentHolder.latexText":"LaTeX","DE.Views.DocumentHolder.leftText":"左","DE.Views.DocumentHolder.loadSpellText":"バリエーションの読み込み中...","DE.Views.DocumentHolder.mergeCellsText":"セルの結合","DE.Views.DocumentHolder.mniImageFromFile":"ファイルから画像","DE.Views.DocumentHolder.mniImageFromStorage":"ストレージから画像","DE.Views.DocumentHolder.mniImageFromUrl":"URLから画像","DE.Views.DocumentHolder.moreText":"その他のバリエーション...","DE.Views.DocumentHolder.noSpellVariantsText":"バリエーションなし","DE.Views.DocumentHolder.notcriticalErrorTitle":"警告","DE.Views.DocumentHolder.originalSizeText":"実際のサイズ","DE.Views.DocumentHolder.paragraphText":"段落","DE.Views.DocumentHolder.removeHyperlinkText":"リンクを削除する","DE.Views.DocumentHolder.rightText":"右","DE.Views.DocumentHolder.rowText":"行","DE.Views.DocumentHolder.saveStyleText":"新しいスタイルの作成","DE.Views.DocumentHolder.selectCellText":"セルの選択","DE.Views.DocumentHolder.selectColumnText":"列の選択","DE.Views.DocumentHolder.selectRowText":"行の選択","DE.Views.DocumentHolder.selectTableText":"テーブルの選択","DE.Views.DocumentHolder.selectText":"選択する","DE.Views.DocumentHolder.shapeText":"図形の詳細設定","DE.Views.DocumentHolder.showEqToolbar":"方程式ツールバーの表示","DE.Views.DocumentHolder.spellcheckText":"スペルチェック","DE.Views.DocumentHolder.splitCellsText":"セルを分割...","DE.Views.DocumentHolder.splitCellTitleText":"セルを分割","DE.Views.DocumentHolder.strDelete":"署名の削除","DE.Views.DocumentHolder.strDetails":"署名の詳細","DE.Views.DocumentHolder.strSetup":"署名の設定","DE.Views.DocumentHolder.strSign":"署名する","DE.Views.DocumentHolder.styleText":"スタイルとしての書式設定","DE.Views.DocumentHolder.tableText":"テーブル","DE.Views.DocumentHolder.textAccept":"変更を承諾する","DE.Views.DocumentHolder.textAlign":"整列","DE.Views.DocumentHolder.textArrange":"順序","DE.Views.DocumentHolder.textArrangeBack":"最背面ヘ移動","DE.Views.DocumentHolder.textArrangeBackward":"背面ヘ移動","DE.Views.DocumentHolder.textArrangeForward":"前面ヘ移動","DE.Views.DocumentHolder.textArrangeFront":"最前面ヘ移動","DE.Views.DocumentHolder.textAxes":"座標軸","DE.Views.DocumentHolder.textAxisTitles":"軸のタイトル","DE.Views.DocumentHolder.textBottom":"下","DE.Views.DocumentHolder.textCells":"セル","DE.Views.DocumentHolder.textCenter":"中央揃え","DE.Views.DocumentHolder.textChartTitle":"グラフのタイトル","DE.Views.DocumentHolder.textClearField":"フィールドのクリア","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.textDataLabels":"データラベル","DE.Views.DocumentHolder.textDataTable":"データ表","DE.Views.DocumentHolder.textDistributeCols":"列の幅を揃える","DE.Views.DocumentHolder.textDistributeRows":"行の高さを揃える","DE.Views.DocumentHolder.textEditControls":"コンテンツコントロール設定","DE.Views.DocumentHolder.textEditField":"フィールドの編集","DE.Views.DocumentHolder.textEditObject":"オブジェクトを編集","DE.Views.DocumentHolder.textEditPoints":"頂点の編集","DE.Views.DocumentHolder.textEditWrapBoundary":"折り返し点の編集","DE.Views.DocumentHolder.textErrorBars":"誤差範囲","DE.Views.DocumentHolder.textExponential":"指数","DE.Views.DocumentHolder.textFieldCodes":"フィールドコードの切り替え","DE.Views.DocumentHolder.textFit":"幅に合わせる","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.textGridLines":"グリッド線","DE.Views.DocumentHolder.textHorAxis":"横軸","DE.Views.DocumentHolder.textHorAxisSec":"二次横軸","DE.Views.DocumentHolder.textHorizontalMajor":"主要な水平線","DE.Views.DocumentHolder.textHorizontalMinor":"二次的な水平線","DE.Views.DocumentHolder.textIndents":"リストのインデントの調整","DE.Views.DocumentHolder.textInnerBottom":"内部(下)","DE.Views.DocumentHolder.textInnerTop":"内部(上)","DE.Views.DocumentHolder.textJoinList":"前のリストに結合","DE.Views.DocumentHolder.textLeft":"セルの左シフト","DE.Views.DocumentHolder.textLeftData":"左","DE.Views.DocumentHolder.textLeftOverlay":"左のオーバーレイ","DE.Views.DocumentHolder.textLeftPos":"左","DE.Views.DocumentHolder.textLegendPos":"凡例","DE.Views.DocumentHolder.textLinear":"線形","DE.Views.DocumentHolder.textLinearForecast":"線形予測","DE.Views.DocumentHolder.textLines":"行","DE.Views.DocumentHolder.textMovingAverage":"移動平均 (2)","DE.Views.DocumentHolder.textNest":"ネスト表","DE.Views.DocumentHolder.textNextPage":"次のページ","DE.Views.DocumentHolder.textNone":"なし","DE.Views.DocumentHolder.textNoOverlay":"オーバーレイなし","DE.Views.DocumentHolder.textNumberingValue":"ナンバリング値","DE.Views.DocumentHolder.textOuterTop":"外側上部","DE.Views.DocumentHolder.textOverlay":"オーバーレイ","DE.Views.DocumentHolder.textPaste":"貼り付け","DE.Views.DocumentHolder.textPrevPage":"前のページ","DE.Views.DocumentHolder.textRedo":"やり直す","DE.Views.DocumentHolder.textRefreshField":"フィールドの更新","DE.Views.DocumentHolder.textReject":"変更を拒否する","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.textResetCrop":"トリミングをリセット","DE.Views.DocumentHolder.textRight":"右","DE.Views.DocumentHolder.textRightOverlay":"右オーバーレイ","DE.Views.DocumentHolder.textRotate":"回転させる","DE.Views.DocumentHolder.textRotate270":"反時計回りに90度回転","DE.Views.DocumentHolder.textRotate90":"時計回りに90度回転","DE.Views.DocumentHolder.textRow":"行全体を削除","DE.Views.DocumentHolder.textSaveAsPicture":"画像として保存する","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.textShapesMerge":"図形を結合","DE.Views.DocumentHolder.textShowDataTable":"データ表の表示","DE.Views.DocumentHolder.textShowLegendKeys":"凡例キーの表示","DE.Views.DocumentHolder.textShowUpDown":"上昇/下降バーを表示","DE.Views.DocumentHolder.textStandardDeviation":"標準偏差","DE.Views.DocumentHolder.textStandardError":"標準誤差","DE.Views.DocumentHolder.textStartNewList":"新しいリストを開始する","DE.Views.DocumentHolder.textStartNumberingFrom":"計数値の設定","DE.Views.DocumentHolder.textTitleCellsRemove":"セルを削除する","DE.Views.DocumentHolder.textTOC":"目次","DE.Views.DocumentHolder.textTOCSettings":"目次設定","DE.Views.DocumentHolder.textTop":"上","DE.Views.DocumentHolder.textTrendline":"トレンドライン","DE.Views.DocumentHolder.textUndo":"元に戻す","DE.Views.DocumentHolder.textUpdateAll":"テーブル全体の更新","DE.Views.DocumentHolder.textUpdatePages":"ページ番号のみの更新","DE.Views.DocumentHolder.textUpdateTOC":"目次を更新する","DE.Views.DocumentHolder.textUpDownBars":"上下スクロールバー","DE.Views.DocumentHolder.textVertAxis":"縦軸","DE.Views.DocumentHolder.textVertAxisSec":"二次縦軸","DE.Views.DocumentHolder.textVerticalMajor":"主要の縦軸","DE.Views.DocumentHolder.textVerticalMinor":"二次的な縦軸","DE.Views.DocumentHolder.textWrap":"折り返しの種類と配置","DE.Views.DocumentHolder.tipIsLocked":"今、この要素が他のユーザーによって編集されています。","DE.Views.DocumentHolder.toDictionaryText":"辞書に追加","DE.Views.DocumentHolder.txtAddBottom":"下罫線の追加","DE.Views.DocumentHolder.txtAddFractionBar":"分数罫の追加","DE.Views.DocumentHolder.txtAddHor":"水平線の追加","DE.Views.DocumentHolder.txtAddLB":"左下線の追加","DE.Views.DocumentHolder.txtAddLeft":"左罫線の追加","DE.Views.DocumentHolder.txtAddLT":"左上線の追加","DE.Views.DocumentHolder.txtAddRight":"右罫線の追加","DE.Views.DocumentHolder.txtAddTop":"上罫線の追加","DE.Views.DocumentHolder.txtAddVer":"縦線の追加","DE.Views.DocumentHolder.txtAlignToChar":"文字の整列","DE.Views.DocumentHolder.txtBehind":"テキストの背後に","DE.Views.DocumentHolder.txtBorderProps":"罫線の​​プロパティ","DE.Views.DocumentHolder.txtBottom":"下","DE.Views.DocumentHolder.txtColumnAlign":"列の配置","DE.Views.DocumentHolder.txtDecreaseArg":"引数のサイズの縮小","DE.Views.DocumentHolder.txtDeleteArg":"引数の削除","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.txtDestEmbed":"送信先のテーマを使用してワークブックを埋め込む","DE.Views.DocumentHolder.txtDestLink":"目的地のテーマとリンクデータを使用する","DE.Views.DocumentHolder.txtDistribHor":"左右に整列","DE.Views.DocumentHolder.txtDistribVert":"上下に整列","DE.Views.DocumentHolder.txtEmpty":"(空白)","DE.Views.DocumentHolder.txtFractionLinear":"分数(横)に変更","DE.Views.DocumentHolder.txtFractionSkewed":"分数(斜め)に変更","DE.Views.DocumentHolder.txtFractionStacked":"分数(縦)に変更\t","DE.Views.DocumentHolder.txtGroup":"グループ","DE.Views.DocumentHolder.txtGroupCharOver":"テキストの上の文字","DE.Views.DocumentHolder.txtGroupCharUnder":"テキストの下の文字","DE.Views.DocumentHolder.txtHideBottom":"下罫線を表示しない","DE.Views.DocumentHolder.txtHideBottomLimit":"下極限を表示しない","DE.Views.DocumentHolder.txtHideCloseBracket":"右括弧を表示しない","DE.Views.DocumentHolder.txtHideDegree":"次数を表示しない","DE.Views.DocumentHolder.txtHideHor":"横線を表示しない","DE.Views.DocumentHolder.txtHideLB":"左(下)の線を表示しない","DE.Views.DocumentHolder.txtHideLeft":"左罫線を表示しない","DE.Views.DocumentHolder.txtHideLT":"左(上)の線を表示しない","DE.Views.DocumentHolder.txtHideOpenBracket":"左括弧を表示しない","DE.Views.DocumentHolder.txtHidePlaceholder":"プレースホルダを表示しない","DE.Views.DocumentHolder.txtHideRight":"右罫線を枠線表示しない","DE.Views.DocumentHolder.txtHideTop":"上罫線を表示しない","DE.Views.DocumentHolder.txtHideTopLimit":"上極限を表示しない","DE.Views.DocumentHolder.txtHideVer":"縦線を表示しない","DE.Views.DocumentHolder.txtIncreaseArg":"引数のサイズの拡大","DE.Views.DocumentHolder.txtInFront":"テキストの前に","DE.Views.DocumentHolder.txtInline":"テキストに沿って","DE.Views.DocumentHolder.txtInsertArgAfter":"の後に引数を挿入","DE.Views.DocumentHolder.txtInsertArgBefore":"の前に引数を挿入","DE.Views.DocumentHolder.txtInsertBreak":"任意指定の改行を挿入","DE.Views.DocumentHolder.txtInsertCaption":"キャプションの挿入","DE.Views.DocumentHolder.txtInsertEqAfter":"の後に数式を挿入","DE.Views.DocumentHolder.txtInsertEqBefore":"の前に数式を挿入","DE.Views.DocumentHolder.txtInsImage":"画像をファイルから挿入する","DE.Views.DocumentHolder.txtInsImageUrl":"画像をURLから挿入する","DE.Views.DocumentHolder.txtKeepTextOnly":"テキスト保存のみ","DE.Views.DocumentHolder.txtLimitChange":"制限位置の変更","DE.Views.DocumentHolder.txtLimitOver":"テキストの上に制限する","DE.Views.DocumentHolder.txtLimitUnder":"テキストの下に制限する","DE.Views.DocumentHolder.txtMatchBrackets":"括弧を引数の高さに合わせる","DE.Views.DocumentHolder.txtMatrixAlign":"行列の配置","DE.Views.DocumentHolder.txtOverbar":"テキストの上のバー","DE.Views.DocumentHolder.txtOverwriteCells":"セルを上書きする","DE.Views.DocumentHolder.txtPastePicture":"画像","DE.Views.DocumentHolder.txtPasteSourceFormat":"元の書式付けを保存する","DE.Views.DocumentHolder.txtPercentage":"パーセンテージ","DE.Views.DocumentHolder.txtPressLink":"{0}キーを押しながらクリックしてリンク先を表示","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":"上付き文字の削除","DE.Views.DocumentHolder.txtScriptsAfter":"テキストの後のスクリプト","DE.Views.DocumentHolder.txtScriptsBefore":"テキストの前のスクリプト","DE.Views.DocumentHolder.txtShowBottomLimit":"下限を表示する","DE.Views.DocumentHolder.txtShowCloseBracket":"右大括弧を表示","DE.Views.DocumentHolder.txtShowDegree":"次数を表示","DE.Views.DocumentHolder.txtShowOpenBracket":"左大括弧の表示","DE.Views.DocumentHolder.txtShowPlaceholder":"プレースホルダーの表示","DE.Views.DocumentHolder.txtShowTopLimit":"上限を表示する","DE.Views.DocumentHolder.txtSourceEmbed":"元の書式を保持&ワークブックを埋め込む","DE.Views.DocumentHolder.txtSourceLink":"ソース形式とリンクデータを維持する","DE.Views.DocumentHolder.txtSquare":"四角","DE.Views.DocumentHolder.txtStretchBrackets":"括弧の拡大","DE.Views.DocumentHolder.txtThrough":"内部","DE.Views.DocumentHolder.txtTight":"外周","DE.Views.DocumentHolder.txtTop":"トップ","DE.Views.DocumentHolder.txtTopAndBottom":"上と下","DE.Views.DocumentHolder.txtUnderbar":"テキストの下のバー","DE.Views.DocumentHolder.txtUngroup":"グループ化解除","DE.Views.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、端末やデータに損害を与える可能性があります。コンピュータを保護するため、信頼できるソースからのリンクのみをクリックしてください。この場所は安全でない可能性があります:

{0}

続行しますか?","DE.Views.DocumentHolder.unicodeText":"Unicode","DE.Views.DocumentHolder.updateStyleText":"%1スタイルの更新","DE.Views.DocumentHolder.vertAlignText":"垂直方向の配置","DE.Views.DropcapSettingsAdvanced.strBorders":"罫線と塗りつぶし","DE.Views.DropcapSettingsAdvanced.strDropcap":"ドロップキャップ","DE.Views.DropcapSettingsAdvanced.strMargins":"余白","DE.Views.DropcapSettingsAdvanced.textAlign":"配置","DE.Views.DropcapSettingsAdvanced.textAtLeast":"最小","DE.Views.DropcapSettingsAdvanced.textAuto":"自動","DE.Views.DropcapSettingsAdvanced.textBackColor":"背景色","DE.Views.DropcapSettingsAdvanced.textBorderColor":"線の色","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"図表をクリックするか、ボタンで枠を選択します。","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"罫線のサイズ","DE.Views.DropcapSettingsAdvanced.textBottom":"下","DE.Views.DropcapSettingsAdvanced.textCenter":"中央揃え","DE.Views.DropcapSettingsAdvanced.textColumn":"列","DE.Views.DropcapSettingsAdvanced.textDistance":"文字列との間隔","DE.Views.DropcapSettingsAdvanced.textExact":"固定値","DE.Views.DropcapSettingsAdvanced.textFlow":"フローフレーム","DE.Views.DropcapSettingsAdvanced.textFont":"フォント","DE.Views.DropcapSettingsAdvanced.textFrame":"フレーム","DE.Views.DropcapSettingsAdvanced.textHeight":"高さ","DE.Views.DropcapSettingsAdvanced.textHorizontal":"水平","DE.Views.DropcapSettingsAdvanced.textInline":"インラインフレーム","DE.Views.DropcapSettingsAdvanced.textInMargin":"余白","DE.Views.DropcapSettingsAdvanced.textInText":"テキスト","DE.Views.DropcapSettingsAdvanced.textLeft":"左","DE.Views.DropcapSettingsAdvanced.textMargin":"余白","DE.Views.DropcapSettingsAdvanced.textMove":"文字列と一緒に移動する","DE.Views.DropcapSettingsAdvanced.textNone":"なし","DE.Views.DropcapSettingsAdvanced.textPage":"ページ","DE.Views.DropcapSettingsAdvanced.textParagraph":"段落","DE.Views.DropcapSettingsAdvanced.textParameters":"パラメーター","DE.Views.DropcapSettingsAdvanced.textPosition":"位置","DE.Views.DropcapSettingsAdvanced.textRelative":"基準","DE.Views.DropcapSettingsAdvanced.textRight":"右","DE.Views.DropcapSettingsAdvanced.textRowHeight":"行の高さ","DE.Views.DropcapSettingsAdvanced.textTitle":"ドロップキャップの詳細設定","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"フレーム - 詳細設定","DE.Views.DropcapSettingsAdvanced.textTop":"トップ","DE.Views.DropcapSettingsAdvanced.textVertical":"垂直","DE.Views.DropcapSettingsAdvanced.textWidth":"幅","DE.Views.DropcapSettingsAdvanced.tipFontName":"フォント","DE.Views.EditListItemDialog.textDisplayName":"表示名","DE.Views.EditListItemDialog.textNameError":"表示名は空白にできません。","DE.Views.EditListItemDialog.textValue":"値","DE.Views.EditListItemDialog.textValueError":"同じ値の項目がすでに存在します。","DE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","DE.Views.FileMenu.btnBackCaption":"ファイルの場所を開く","DE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","DE.Views.FileMenu.btnCloseMenuCaption":"戻る","DE.Views.FileMenu.btnCreateNewCaption":"新規作成","DE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","DE.Views.FileMenu.btnExitCaption":"終了","DE.Views.FileMenu.btnFileOpenCaption":"開く","DE.Views.FileMenu.btnHelpCaption":"ヘルプ","DE.Views.FileMenu.btnHistoryCaption":"バージョン履歴","DE.Views.FileMenu.btnInfoCaption":"詳細情報","DE.Views.FileMenu.btnPrintCaption":"印刷","DE.Views.FileMenu.btnProtectCaption":"保護する","DE.Views.FileMenu.btnRecentFilesCaption":"最近開いた","DE.Views.FileMenu.btnRenameCaption":"名前を変更する","DE.Views.FileMenu.btnReturnCaption":"文書に戻る","DE.Views.FileMenu.btnRightsCaption":"アクセス許可","DE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","DE.Views.FileMenu.btnSaveCaption":"保存","DE.Views.FileMenu.btnSaveCopyAsCaption":"コピーを別名で保存する","DE.Views.FileMenu.btnSettingsCaption":"詳細設定","DE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","DE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","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.txtAddProperty":"プロパティの追加","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.txtCommon":"共通","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成済み","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文書の情報","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"ドキュメントのプロパティ","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Web表示用に最適化","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"読み込み中...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"所有者","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"ページ","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"ページのサイズ","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"段落","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDFメーカー","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"タグ付きPDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDFのバージョン","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"場所","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"プロパティ","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"このタイトルのプロパティはすでに存在します","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.txtTags":"タグ","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロード済み","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"単語","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス許可","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス許可の変更","DE.Views.FileMenuPanels.DocumentRights.txtRights":"権利を有する者","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"警告","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"パスワード付きで","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"文書を保護する","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"署名付きで","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有効な署名が追加されています。
文書は編集から保護されています。","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"
見えないデジタル署名を追加することで、文書の整合性を確保します。","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"ドキュメントを編集","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"編集すると、文書から署名が削除されます。
続行しますか?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"このドキュメントはパスワードで保護されています","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"このドキュメントをパスワードで暗号化する","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"この文書には署名が必要です。","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有効な署名がドキュメントに追加されました。 ドキュメントは編集されないように保護されています。","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。","DE.Views.FileMenuPanels.ProtectDoc.txtView":"署名の表示","DE.Views.FileMenuPanels.Settings.okButtonText":"適用する","DE.Views.FileMenuPanels.Settings.strChinese":"中国語","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同編集のモード","DE.Views.FileMenuPanels.Settings.strDocContent":"ドキュメントの内容","DE.Views.FileMenuPanels.Settings.strFast":"高速","DE.Views.FileMenuPanels.Settings.strFontRender":"フォントヒンティング","DE.Views.FileMenuPanels.Settings.strFontSizeType":"フォントサイズのリストで最初に表示","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"大文字がある言葉を無視する","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"数字のある単語は無視する","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"キーボードショートカット","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"マクロの設定","DE.Views.FileMenuPanels.Settings.strNumeral":"数字形式","DE.Views.FileMenuPanels.Settings.strPasteButton":"貼り付けるときに[貼り付けオプション]ボタンを表示する","DE.Views.FileMenuPanels.Settings.strRTLSupport":"RTLインターフェース","DE.Views.FileMenuPanels.Settings.strShowChanges":"リアルタイム共同編集の変更表示モード","DE.Views.FileMenuPanels.Settings.strShowComments":"テキストにコメントを表示する","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"他のユーザーの変更点を表示する","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"解決済みコメントを表示する","DE.Views.FileMenuPanels.Settings.strStrict":"厳格","DE.Views.FileMenuPanels.Settings.strTabStyle":"タブのスタイル","DE.Views.FileMenuPanels.Settings.strTheme":"インターフェイスのテーマ","DE.Views.FileMenuPanels.Settings.strUnit":"測定単位","DE.Views.FileMenuPanels.Settings.strWestern":"西洋","DE.Views.FileMenuPanels.Settings.strZoom":"デフォルトのズーム値","DE.Views.FileMenuPanels.Settings.text10Minutes":"10分毎","DE.Views.FileMenuPanels.Settings.text30Minutes":"30分毎","DE.Views.FileMenuPanels.Settings.text5Minutes":"5分毎","DE.Views.FileMenuPanels.Settings.text60Minutes":"1時間毎","DE.Views.FileMenuPanels.Settings.textAlignGuides":"配置ガイド","DE.Views.FileMenuPanels.Settings.textAutoRecover":"自動回復情報を保存する","DE.Views.FileMenuPanels.Settings.textAutoSave":"自動保存","DE.Views.FileMenuPanels.Settings.textDisabled":"無効","DE.Views.FileMenuPanels.Settings.textFill":"塗りつぶし","DE.Views.FileMenuPanels.Settings.textForceSave":"中間バージョンの保存","DE.Views.FileMenuPanels.Settings.textLine":"線","DE.Views.FileMenuPanels.Settings.textMinute":"1分毎","DE.Views.FileMenuPanels.Settings.textOldVersions":"DOCXとして保存する場合は、MS Wordの古いバージョンと互換性のあるファイルにしてください","DE.Views.FileMenuPanels.Settings.textSmartSelection":"スマートな段落選択を使用する","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"詳細設定","DE.Views.FileMenuPanels.Settings.txtAll":"全て表示","DE.Views.FileMenuPanels.Settings.txtAppearance":"外観","DE.Views.FileMenuPanels.Settings.txtArabic":"アラビア語","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.txtCollaboration":"共同編集","DE.Views.FileMenuPanels.Settings.txtContext":"コンテキスト","DE.Views.FileMenuPanels.Settings.txtCustomize":"カスタマイズ","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","DE.Views.FileMenuPanels.Settings.txtDarkMode":"ドキュメントをダークモードに変更","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"編集と保存","DE.Views.FileMenuPanels.Settings.txtFastTip":"リアルタイムの共同編集 すべての変更は自動的に保存されます","DE.Views.FileMenuPanels.Settings.txtFitPage":"ページに合わせる","DE.Views.FileMenuPanels.Settings.txtFitWidth":"幅に合わせる","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"漢字","DE.Views.FileMenuPanels.Settings.txtHindi":"ヒンディー語","DE.Views.FileMenuPanels.Settings.txtInch":"インチ","DE.Views.FileMenuPanels.Settings.txtLast":"最後の表示","DE.Views.FileMenuPanels.Settings.txtLastUsed":"最後に使用した項目","DE.Views.FileMenuPanels.Settings.txtMac":"OS Xとして","DE.Views.FileMenuPanels.Settings.txtNative":"ネイティブ","DE.Views.FileMenuPanels.Settings.txtNone":"表示なし","DE.Views.FileMenuPanels.Settings.txtProofing":"校正","DE.Views.FileMenuPanels.Settings.txtPt":"ポイント","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"クイックプリントボタンをエディタヘッダーに表示","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","DE.Views.FileMenuPanels.Settings.txtRunMacros":"全てを有効にする","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"全てのマクロを有効にして、通知しない","DE.Views.FileMenuPanels.Settings.txtScreenReader":"スクリーンリーダーのサポートをオンにする","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"変更履歴を表示する","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"スペルチェック","DE.Views.FileMenuPanels.Settings.txtStopMacros":"全てを無効にする","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"全てのマクロを無効にして、通知しない","DE.Views.FileMenuPanels.Settings.txtStrictTip":"「保存」ボタンを使用して、あなたや他人が行った変更を同期させることができます","DE.Views.FileMenuPanels.Settings.txtTabBack":"ツールバーの色をタブの背景に使う","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーを使用します","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"通知を表示する","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"全てのマクロを無効にして、通知する","DE.Views.FileMenuPanels.Settings.txtWin":"Windowsとして","DE.Views.FileMenuPanels.Settings.txtWorkspace":"ワークスペース","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","DE.Views.FormSettings.textAddRole":"受取人を追加","DE.Views.FormSettings.textAlways":"常時","DE.Views.FormSettings.textAnyone":"誰でも","DE.Views.FormSettings.textAspect":"縦横比の固定","DE.Views.FormSettings.textAtLeast":"最小","DE.Views.FormSettings.textAuto":"オート","DE.Views.FormSettings.textAutofit":"自動調整","DE.Views.FormSettings.textBackgroundColor":"背景色","DE.Views.FormSettings.textCheckbox":"チェックボックス","DE.Views.FormSettings.textCheckDefault":"チェックボックスは既定でチェックされている","DE.Views.FormSettings.textColor":"線の色","DE.Views.FormSettings.textComb":"文字の組み合わせ","DE.Views.FormSettings.textCombobox":"コンボボックス","DE.Views.FormSettings.textComplex":"複合フィールド","DE.Views.FormSettings.textConnected":"フィールド接続済み","DE.Views.FormSettings.textCreditCard":"クレジットカード番号(例:4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"「日付&時間」フィールド","DE.Views.FormSettings.textDateFormat":"日付の表示形式","DE.Views.FormSettings.textDefValue":"既定値","DE.Views.FormSettings.textDelete":"削除する","DE.Views.FormSettings.textDigits":"数値","DE.Views.FormSettings.textDisconnect":"切断する","DE.Views.FormSettings.textDropDown":"ドロップダウン","DE.Views.FormSettings.textExact":"固定値","DE.Views.FormSettings.textField":"テキストフィールド","DE.Views.FormSettings.textFillRoles":"このフィールドは、誰が記入する必要がありますか?","DE.Views.FormSettings.textFixed":"固定サイズのフィールド","DE.Views.FormSettings.textFormat":"フォーマット","DE.Views.FormSettings.textFormatSymbols":"使用可能なシンボル","DE.Views.FormSettings.textFromFile":"ファイルから","DE.Views.FormSettings.textFromStorage":"ストレージから","DE.Views.FormSettings.textFromUrl":"URLから","DE.Views.FormSettings.textGroupKey":"グループキー","DE.Views.FormSettings.textImage":"画像","DE.Views.FormSettings.textKey":"キー","DE.Views.FormSettings.textLabel":"ラベル","DE.Views.FormSettings.textLang":"言語","DE.Views.FormSettings.textLetters":"文字","DE.Views.FormSettings.textLock":"ロックする","DE.Views.FormSettings.textMask":"任意のマスク","DE.Views.FormSettings.textMaxChars":"文字の制限","DE.Views.FormSettings.textMulti":"複数行のフィールド","DE.Views.FormSettings.textNever":"一度もない","DE.Views.FormSettings.textNoBorder":"枠線なし","DE.Views.FormSettings.textNone":"なし","DE.Views.FormSettings.textPhone1":"電話番号(例:(123) 456-7890)","DE.Views.FormSettings.textPhone2":"電話番号(例:+447911123456)","DE.Views.FormSettings.textPlaceholder":"プレースホルダ","DE.Views.FormSettings.textRadiobox":"ラジオボタン","DE.Views.FormSettings.textRadioChoice":"ラジオボタンの選択","DE.Views.FormSettings.textRadioDefault":"ボタンが既定でチェックされている","DE.Views.FormSettings.textReg":"正規表現","DE.Views.FormSettings.textRequired":"必須","DE.Views.FormSettings.textScale":"スケーリングのタイミング","DE.Views.FormSettings.textSelectImage":"画像を選択する","DE.Views.FormSettings.textSignature":"署名","DE.Views.FormSettings.textTag":"タグ","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.textUKPassport":"英国パスポート番号(例:925665416)","DE.Views.FormSettings.textUnlock":"ロックを解除する","DE.Views.FormSettings.textUSSSN":"アメリカのSSN(例:123-45-6789)","DE.Views.FormSettings.textValue":"値のオプション","DE.Views.FormSettings.textWidth":"セルの幅","DE.Views.FormSettings.textZipCodeUS":"アメリカの郵便番号(例:92663、または 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"チェックボックス","DE.Views.FormsTab.capBtnComboBox":"コンボボックス","DE.Views.FormsTab.capBtnComplex":"複合フィールド","DE.Views.FormsTab.capBtnDownloadForm":"pdfとしてダウンロードする","DE.Views.FormsTab.capBtnDropDown":"ドロップダウン","DE.Views.FormsTab.capBtnEmail":"メールアドレス","DE.Views.FormsTab.capBtnFinal":"最終版としてマークする","DE.Views.FormsTab.capBtnImage":"画像","DE.Views.FormsTab.capBtnManager":"受信者管理","DE.Views.FormsTab.capBtnNext":"次のフィールド","DE.Views.FormsTab.capBtnPhone":"電話番号","DE.Views.FormsTab.capBtnPrev":"前のフィールド","DE.Views.FormsTab.capBtnRadioBox":"ラジオボタン","DE.Views.FormsTab.capBtnSaveForm":"pdfとして保存","DE.Views.FormsTab.capBtnSaveFormDesktop":"名前を付けて保存","DE.Views.FormsTab.capBtnSignature":"署名","DE.Views.FormsTab.capBtnSubmit":"記入&提出","DE.Views.FormsTab.capBtnText":"テキストフィールド","DE.Views.FormsTab.capBtnView":"プレビュー","DE.Views.FormsTab.capCreditCard":"クレジットカード","DE.Views.FormsTab.capDateTime":"日付と時間","DE.Views.FormsTab.capZipCode":"郵便番号","DE.Views.FormsTab.helpTextFillStatus":"このフォームは役割ベースの入力が可能です。ステータスボタンをクリックして入力段階を確認してください。","DE.Views.FormsTab.textAddRole":"受取人を追加","DE.Views.FormsTab.textAnyone":"誰でも","DE.Views.FormsTab.textClear":"フィールドをクリアする","DE.Views.FormsTab.textClearFields":"すべてのフィールドをクリアする","DE.Views.FormsTab.textCreateForm":"フィールドを追加して、記入可能なPDF文書を作成する","DE.Views.FormsTab.textFilled":"記入済み","DE.Views.FormsTab.textFillFor":"次のフィールドを挿入する:","DE.Views.FormsTab.textGotIt":"OK","DE.Views.FormsTab.textHighlight":"ハイライト設定","DE.Views.FormsTab.textNoHighlight":"ハイライト表示なし","DE.Views.FormsTab.textRequired":"フォームを送信するには、すべての必須項目を入力してください。","DE.Views.FormsTab.textSubmited":"フォームの送信成功","DE.Views.FormsTab.textSubmitOk":"PDFフォームが「完成」セクションに保存されました。","DE.Views.FormsTab.tipCheckBox":"チェックボックスを挿入する","DE.Views.FormsTab.tipComboBox":"コンボボックスを挿入","DE.Views.FormsTab.tipComplexField":"複合フィールドを挿入する","DE.Views.FormsTab.tipCreateField":"フィールドを作成するには、ツールバーで希望のフィールドタイプを選択し、それをクリックします。ドキュメントにフィールドが表示されます。","DE.Views.FormsTab.tipCreditCard":"クレジットカード番号の入力","DE.Views.FormsTab.tipDateTime":"日付と時間の入力","DE.Views.FormsTab.tipDownloadForm":"記入可能なPDF文書としてファイルをダウンロードする","DE.Views.FormsTab.tipDropDown":"ドロップダウンリストを挿入","DE.Views.FormsTab.tipEmailField":"メールアドレスを挿入する","DE.Views.FormsTab.tipFieldSettings":"右サイドバーで選択したフィールドを設定できます。このアイコンをクリックすると、フィールド設定が開きます。","DE.Views.FormsTab.tipFieldsLink":"フィールドパラメータについて","DE.Views.FormsTab.tipFinalForm":"最終版としてマークする","DE.Views.FormsTab.tipFirstPage":"最初のページへ","DE.Views.FormsTab.tipFixedText":"固定テキストフィールドの挿入","DE.Views.FormsTab.tipFormGroupKey":"ラジオボタンをグループ化することで、入力プロセスを高速化します。同じ名前の選択肢は同期されます。ユーザーはグループから1つのラジオボタンにのみチェックを入れることができます。","DE.Views.FormsTab.tipFormKey":"フィールドまたはフィールドのグループにキーを割り当てることができます。ユーザーがデータを入力すると、同じキーを持つすべてのフィールドにコピーされます。","DE.Views.FormsTab.tipHelpRoles":"受信者管理機能を使用して、フィールドを目的に応じてグループ化し、担当チームメンバーを割り当ててください。","DE.Views.FormsTab.tipImageField":"画像の挿入","DE.Views.FormsTab.tipInlineText":"インラインテキストフィールドの挿入","DE.Views.FormsTab.tipLastPage":"最後のページへ","DE.Views.FormsTab.tipManager":"受信者管理","DE.Views.FormsTab.tipNextForm":"次のフィールドに移動する","DE.Views.FormsTab.tipNextPage":"次のページへ","DE.Views.FormsTab.tipPhoneField":"電話番号を挿入する","DE.Views.FormsTab.tipPrevForm":"前のフィールドに移動する","DE.Views.FormsTab.tipPrevPage":"前のページへ","DE.Views.FormsTab.tipRadioBox":"ラジオボタンの挿入\t","DE.Views.FormsTab.tipRolesLink":"受信者について詳しく","DE.Views.FormsTab.tipSaveFile":"「フォームとして保存」をクリックすると、記入可能な形式でフォームが保存されます。","DE.Views.FormsTab.tipSaveForm":"ファイルをPDFの記入式ドキュメントとして保存","DE.Views.FormsTab.tipSignField":"署名を挿入する","DE.Views.FormsTab.tipSubmit":"フォームを送信","DE.Views.FormsTab.tipTextField":"テキストフィールドを挿入","DE.Views.FormsTab.tipViewForm":"プレビュー","DE.Views.FormsTab.tipZipCode":"郵便番号の挿入","DE.Views.FormsTab.txtFixedDesc":"固定テキストフィールドの挿入","DE.Views.FormsTab.txtFixedText":"固定","DE.Views.FormsTab.txtInlineDesc":"インラインテキストフィールドの挿入","DE.Views.FormsTab.txtInlineText":"インライン","DE.Views.FormsTab.txtSignedForm":"この文書は署名されているため、編集することができません。","DE.Views.FormsTab.txtUntitled":"無題","DE.Views.HeaderFooterSettings.textBottomCenter":"中央下","DE.Views.HeaderFooterSettings.textBottomLeft":"左下","DE.Views.HeaderFooterSettings.textBottomPage":"ページの下部","DE.Views.HeaderFooterSettings.textBottomRight":"右下","DE.Views.HeaderFooterSettings.textDiffFirst":"先頭ページのみ別指定\t","DE.Views.HeaderFooterSettings.textDiffOdd":"奇数/偶数ページ別指定","DE.Views.HeaderFooterSettings.textFrom":"から開始","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"下からのフッター位置","DE.Views.HeaderFooterSettings.textHeaderFromTop":"上からのヘッダー位置","DE.Views.HeaderFooterSettings.textInsertCurrent":"現在の位置に挿入","DE.Views.HeaderFooterSettings.textNumFormat":"数値の書式","DE.Views.HeaderFooterSettings.textOptions":"オプション","DE.Views.HeaderFooterSettings.textPageNum":"ページ番号の挿入","DE.Views.HeaderFooterSettings.textPageNumbering":"ページ番号","DE.Views.HeaderFooterSettings.textPosition":"位置","DE.Views.HeaderFooterSettings.textPrev":"前のセクションから継続","DE.Views.HeaderFooterSettings.textSameAs":"前と同じ​​ヘッダー/フッター","DE.Views.HeaderFooterSettings.textTopCenter":"上中央","DE.Views.HeaderFooterSettings.textTopLeft":"左上","DE.Views.HeaderFooterSettings.textTopPage":"ページの上部","DE.Views.HeaderFooterSettings.textTopRight":"右上","DE.Views.HeaderFooterSettings.txtMoreTypes":"その他の種類","DE.Views.HeaderFooterTab.capBtnDateTime":"日付&時刻","DE.Views.HeaderFooterTab.capBtnInsField":"フィールド","DE.Views.HeaderFooterTab.capBtnInsImage":"画像","DE.Views.HeaderFooterTab.capCurrentPos":"現在の場所へ","DE.Views.HeaderFooterTab.capFooterBottom":"下からのフッター位置","DE.Views.HeaderFooterTab.capFormatNums":"ページ番号","DE.Views.HeaderFooterTab.capHeaderTop":"上からのヘッダー位置","DE.Views.HeaderFooterTab.capNumOfPages":"ページ数","DE.Views.HeaderFooterTab.mniImageFromFile":"ファイルからの画像","DE.Views.HeaderFooterTab.mniImageFromStorage":"ストレージからの画像","DE.Views.HeaderFooterTab.mniImageFromUrl":"URLからの画像","DE.Views.HeaderFooterTab.tipCloseTab":"タブを閉じる","DE.Views.HeaderFooterTab.tipDateTime":"現在の日付と時刻を挿入","DE.Views.HeaderFooterTab.tipHeaderFooter":"ヘッダーまたはフッターの編集","DE.Views.HeaderFooterTab.tipInsertImage":"画像を挿入","DE.Views.HeaderFooterTab.tipInsField":"フィールドの挿入","DE.Views.HeaderFooterTab.tipNumOfPages":"ページ数","DE.Views.HeaderFooterTab.tipPageNumbering":"ページ番号","DE.Views.HeaderFooterTab.txtCloseTab":"閉じる","DE.Views.HeaderFooterTab.txtDiffFirst":"先頭ページのみ別指定\t","DE.Views.HeaderFooterTab.txtDiffOddEven":"奇数/偶数ページ別指定","DE.Views.HeaderFooterTab.txtEditFooter":"フッターの編集","DE.Views.HeaderFooterTab.txtEditHeader":"ヘッダーの編集","DE.Views.HeaderFooterTab.txtHeaderFooter":"ヘッダー/フッター","DE.Views.HeaderFooterTab.txtPageNumbering":"ページ番号","DE.Views.HeaderFooterTab.txtRemoveFooter":"フッターの削除","DE.Views.HeaderFooterTab.txtRemoveHeader":"ヘッダーの削除","DE.Views.HeaderFooterTab.txtSameAs":"前に結合する","DE.Views.HyperlinkSettingsDialog.textDefault":"選択されたテキストフラグメント","DE.Views.HyperlinkSettingsDialog.textDisplay":"表示する","DE.Views.HyperlinkSettingsDialog.textExternal":"外部リンク","DE.Views.HyperlinkSettingsDialog.textInternal":"文書内の場所","DE.Views.HyperlinkSettingsDialog.textSelectFile":"ファイル選択","DE.Views.HyperlinkSettingsDialog.textTitle":"リンク設定","DE.Views.HyperlinkSettingsDialog.textTooltip":"ヒントのテキスト:","DE.Views.HyperlinkSettingsDialog.textUrl":"リンク先","DE.Views.HyperlinkSettingsDialog.txtBeginning":"文書の先頭","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.HyperlinkSettingsDialog.txtUrlPlaceholder":"ウェブアドレスを入力するか、ファイルを選択してください","DE.Views.HyphenationDialog.textAuto":"文書に自動的にハイフンを入れる","DE.Views.HyphenationDialog.textCaps":"CAPSでハイフンする","DE.Views.HyphenationDialog.textLimit":"連続するハイフンを制限する:","DE.Views.HyphenationDialog.textNoLimit":"制限なし","DE.Views.HyphenationDialog.textTitle":"ハイフン","DE.Views.HyphenationDialog.textZone":"自動ハイフンの領域","DE.Views.ImageSettings.strTransparency":"不透明度","DE.Views.ImageSettings.textAdvanced":"詳細設定を表示","DE.Views.ImageSettings.textCrop":"トリミング","DE.Views.ImageSettings.textCropFill":"塗りつぶし","DE.Views.ImageSettings.textCropFit":"収める","DE.Views.ImageSettings.textCropToShape":"図形に合わせてトリミング","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":"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.textRecentlyUsed":"最近使った項目","DE.Views.ImageSettings.textResetCrop":"トリミングをリセット","DE.Views.ImageSettings.textRotate90":"90度回転","DE.Views.ImageSettings.textRotation":"回転","DE.Views.ImageSettings.textSize":"サイズ","DE.Views.ImageSettings.textWidth":"幅","DE.Views.ImageSettings.textWrap":"折り返しの種類と配置","DE.Views.ImageSettings.txtBehind":"テキストの背後に","DE.Views.ImageSettings.txtInFront":"テキストの前に","DE.Views.ImageSettings.txtInline":"テキストに沿って","DE.Views.ImageSettings.txtSquare":"四角","DE.Views.ImageSettings.txtThrough":"内部","DE.Views.ImageSettings.txtTight":"外周","DE.Views.ImageSettings.txtTopAndBottom":"上と下","DE.Views.ImageSettingsAdvanced.strMargins":"テキストの埋め込み文字","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"固定","DE.Views.ImageSettingsAdvanced.textAlignment":"配置","DE.Views.ImageSettingsAdvanced.textAlt":"代替テキスト","DE.Views.ImageSettingsAdvanced.textAltDescription":"説明","DE.Views.ImageSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","DE.Views.ImageSettingsAdvanced.textAltTitle":"タイトル","DE.Views.ImageSettingsAdvanced.textAngle":"角度","DE.Views.ImageSettingsAdvanced.textArrows":"矢印","DE.Views.ImageSettingsAdvanced.textAspectRatio":"縦横比の固定","DE.Views.ImageSettingsAdvanced.textAuto":"自動","DE.Views.ImageSettingsAdvanced.textAutofit":"自動調整","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"軸との交点","DE.Views.ImageSettingsAdvanced.textAxisPos":"軸の位置","DE.Views.ImageSettingsAdvanced.textAxisTitle":"タイトル","DE.Views.ImageSettingsAdvanced.textBase":"ベース","DE.Views.ImageSettingsAdvanced.textBeginSize":"開始サイズ","DE.Views.ImageSettingsAdvanced.textBeginStyle":"開始スタイル","DE.Views.ImageSettingsAdvanced.textBelow":"基準","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"目盛りの間","DE.Views.ImageSettingsAdvanced.textBevel":"斜角","DE.Views.ImageSettingsAdvanced.textBillions":"十億","DE.Views.ImageSettingsAdvanced.textBottom":"下","DE.Views.ImageSettingsAdvanced.textBottomMargin":"下余白","DE.Views.ImageSettingsAdvanced.textBtnWrap":"テキストの折り返し\t","DE.Views.ImageSettingsAdvanced.textCapType":"線の先端","DE.Views.ImageSettingsAdvanced.textCategoryName":"カテゴリ名","DE.Views.ImageSettingsAdvanced.textCenter":"中央揃え","DE.Views.ImageSettingsAdvanced.textCharacter":"文字","DE.Views.ImageSettingsAdvanced.textChartTitle":"チャートのタイトル","DE.Views.ImageSettingsAdvanced.textColumn":"列","DE.Views.ImageSettingsAdvanced.textCross":"十字","DE.Views.ImageSettingsAdvanced.textCustom":"カスタム","DE.Views.ImageSettingsAdvanced.textDataLabels":"データラベル","DE.Views.ImageSettingsAdvanced.textDistance":"文字列との間隔","DE.Views.ImageSettingsAdvanced.textEndSize":"終了サイズ","DE.Views.ImageSettingsAdvanced.textEndStyle":"終了スタイル","DE.Views.ImageSettingsAdvanced.textFit":"幅に合わせる","DE.Views.ImageSettingsAdvanced.textFixed":"固定","DE.Views.ImageSettingsAdvanced.textFlat":"フラット","DE.Views.ImageSettingsAdvanced.textFlipped":"反転","DE.Views.ImageSettingsAdvanced.textFormat":"ラベルの書式","DE.Views.ImageSettingsAdvanced.textGridLines":"グリッド線","DE.Views.ImageSettingsAdvanced.textHeight":"高さ","DE.Views.ImageSettingsAdvanced.textHideAxis":"軸を非表示","DE.Views.ImageSettingsAdvanced.textHigh":"高い","DE.Views.ImageSettingsAdvanced.textHorAxis":"横軸","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"二次横軸","DE.Views.ImageSettingsAdvanced.textHorizontal":"水平","DE.Views.ImageSettingsAdvanced.textHorizontally":"水平に","DE.Views.ImageSettingsAdvanced.textHundredMil":"100 000 000","DE.Views.ImageSettingsAdvanced.textHundreds":"百","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100 000","DE.Views.ImageSettingsAdvanced.textIn":"中","DE.Views.ImageSettingsAdvanced.textInnerBottom":"内部(下)","DE.Views.ImageSettingsAdvanced.textInnerTop":"内部(上)","DE.Views.ImageSettingsAdvanced.textJoinType":"結合の種類","DE.Views.ImageSettingsAdvanced.textKeepRatio":"一定の比率","DE.Views.ImageSettingsAdvanced.textLabelDist":"軸ラベルの距離","DE.Views.ImageSettingsAdvanced.textLabelInterval":"ラベルの間の間隔","DE.Views.ImageSettingsAdvanced.textLabelOptions":"ラベルのオプション","DE.Views.ImageSettingsAdvanced.textLabelPos":"ラベルの位置","DE.Views.ImageSettingsAdvanced.textLayout":"レイアウト","DE.Views.ImageSettingsAdvanced.textLeft":"左","DE.Views.ImageSettingsAdvanced.textLeftMargin":"左余白","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"左のオーバーレイ","DE.Views.ImageSettingsAdvanced.textLegendBottom":"下","DE.Views.ImageSettingsAdvanced.textLegendLeft":"左","DE.Views.ImageSettingsAdvanced.textLegendPos":"凡例","DE.Views.ImageSettingsAdvanced.textLegendRight":"右","DE.Views.ImageSettingsAdvanced.textLegendTop":"上","DE.Views.ImageSettingsAdvanced.textLine":"線","DE.Views.ImageSettingsAdvanced.textLines":"行","DE.Views.ImageSettingsAdvanced.textLineStyle":"線のスタイル","DE.Views.ImageSettingsAdvanced.textLogScale":"対数目盛","DE.Views.ImageSettingsAdvanced.textLow":"低","DE.Views.ImageSettingsAdvanced.textMajor":"メジャー","DE.Views.ImageSettingsAdvanced.textMajorMinor":"メジャーまたはマイナー","DE.Views.ImageSettingsAdvanced.textMajorType":"目盛の種類","DE.Views.ImageSettingsAdvanced.textManual":"マニュアル","DE.Views.ImageSettingsAdvanced.textMargin":"余白","DE.Views.ImageSettingsAdvanced.textMarkers":"マーカー","DE.Views.ImageSettingsAdvanced.textMarksInterval":"マークの間の間隔","DE.Views.ImageSettingsAdvanced.textMaxValue":"最大値","DE.Views.ImageSettingsAdvanced.textMillions":"百万","DE.Views.ImageSettingsAdvanced.textMinor":"マイナー","DE.Views.ImageSettingsAdvanced.textMinorType":"マイナー種類","DE.Views.ImageSettingsAdvanced.textMinValue":"最小値","DE.Views.ImageSettingsAdvanced.textMiter":"角","DE.Views.ImageSettingsAdvanced.textMove":"文字列と一緒に移動する","DE.Views.ImageSettingsAdvanced.textNextToAxis":"軸の隣","DE.Views.ImageSettingsAdvanced.textNone":"なし","DE.Views.ImageSettingsAdvanced.textNoOverlay":"オーバーレイなし","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"目盛","DE.Views.ImageSettingsAdvanced.textOptions":"オプション","DE.Views.ImageSettingsAdvanced.textOriginalSize":"実際のサイズ","DE.Views.ImageSettingsAdvanced.textOut":"外","DE.Views.ImageSettingsAdvanced.textOuterTop":"外側上部","DE.Views.ImageSettingsAdvanced.textOverlap":"オーバーラップを許可する","DE.Views.ImageSettingsAdvanced.textOverlay":"オーバーレイ","DE.Views.ImageSettingsAdvanced.textPage":"ページ","DE.Views.ImageSettingsAdvanced.textParagraph":"段落","DE.Views.ImageSettingsAdvanced.textPosition":"位置","DE.Views.ImageSettingsAdvanced.textPositionPc":"相対位置","DE.Views.ImageSettingsAdvanced.textRelative":"基準","DE.Views.ImageSettingsAdvanced.textRelativeWH":"相対的","DE.Views.ImageSettingsAdvanced.textResizeFit":"テキストに合わせて図形を調整","DE.Views.ImageSettingsAdvanced.textReverse":"軸を反転する","DE.Views.ImageSettingsAdvanced.textRight":"右","DE.Views.ImageSettingsAdvanced.textRightMargin":"右余白","DE.Views.ImageSettingsAdvanced.textRightOf":"基準","DE.Views.ImageSettingsAdvanced.textRightOverlay":"右オーバーレイ","DE.Views.ImageSettingsAdvanced.textRotated":"回転済み","DE.Views.ImageSettingsAdvanced.textRotation":"回転","DE.Views.ImageSettingsAdvanced.textRound":"円い","DE.Views.ImageSettingsAdvanced.textSeparator":"日付のラベルの区切り記号","DE.Views.ImageSettingsAdvanced.textSeriesName":"系列の名前","DE.Views.ImageSettingsAdvanced.textShape":"図形の設定","DE.Views.ImageSettingsAdvanced.textSize":"サイズ","DE.Views.ImageSettingsAdvanced.textSmooth":"スムーズ","DE.Views.ImageSettingsAdvanced.textSquare":"四角","DE.Views.ImageSettingsAdvanced.textStraight":"直線","DE.Views.ImageSettingsAdvanced.textTenMillions":"10 000 000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10 000","DE.Views.ImageSettingsAdvanced.textTextBox":"テキストボックス","DE.Views.ImageSettingsAdvanced.textThousands":"千","DE.Views.ImageSettingsAdvanced.textTickOptions":"ティックのオプション","DE.Views.ImageSettingsAdvanced.textTitle":"画像 - 詳細設定","DE.Views.ImageSettingsAdvanced.textTitleChart":"チャートー詳細設定","DE.Views.ImageSettingsAdvanced.textTitleShape":"図形 - 詳細設定","DE.Views.ImageSettingsAdvanced.textTop":"トップ","DE.Views.ImageSettingsAdvanced.textTopMargin":"上余白","DE.Views.ImageSettingsAdvanced.textTrillions":"兆","DE.Views.ImageSettingsAdvanced.textUnits":"表示単位","DE.Views.ImageSettingsAdvanced.textValue":"値","DE.Views.ImageSettingsAdvanced.textVertAxis":"縦軸","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"二次縦軸","DE.Views.ImageSettingsAdvanced.textVertical":"垂直","DE.Views.ImageSettingsAdvanced.textVertically":"縦に","DE.Views.ImageSettingsAdvanced.textWeightArrows":"太さ&矢印","DE.Views.ImageSettingsAdvanced.textWidth":"幅","DE.Views.ImageSettingsAdvanced.textWrap":"折り返しの種類と配置","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"テキストの背後に","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"テキストの前に","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"テキストに沿って","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"四角","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"内部","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"外周","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"上と下","DE.Views.LeftMenu.ariaLeftMenu":"左メニュー","DE.Views.LeftMenu.tipAbout":"詳細情報","DE.Views.LeftMenu.tipChat":"チャット","DE.Views.LeftMenu.tipComments":"コメント","DE.Views.LeftMenu.tipNavigation":"ナビゲーション","DE.Views.LeftMenu.tipOutline":"見出し","DE.Views.LeftMenu.tipPageThumbnails":"ページサムネイル","DE.Views.LeftMenu.tipPlugins":"プラグイン","DE.Views.LeftMenu.tipSearch":"検索","DE.Views.LeftMenu.tipSupport":"フィードバック&サポート","DE.Views.LeftMenu.tipTitles":"タイトル","DE.Views.LeftMenu.txtDeveloper":"開発者モード","DE.Views.LeftMenu.txtEditor":"ドキュメントエディタ","DE.Views.LeftMenu.txtLimit":"制限されたアクセス","DE.Views.LeftMenu.txtTrial":"試用モード","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":"このポイント以降","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.capBtnAddText":"テキスト追加","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.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.tipAddText":"見出しを目次に入れる","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.Links.txtDontShowTof":"目次に表示しない","DE.Views.Links.txtLevel":"レベル","DE.Views.ListIndentsDialog.textSpace":"スペース","DE.Views.ListIndentsDialog.textTab":"タブ文字","DE.Views.ListIndentsDialog.textTitle":"リストのインデントの調整","DE.Views.ListIndentsDialog.txtFollowBullet":"行頭文字後のシンボル","DE.Views.ListIndentsDialog.txtFollowNumber":"数字後のシンボル","DE.Views.ListIndentsDialog.txtIndent":"インデント","DE.Views.ListIndentsDialog.txtNone":"なし","DE.Views.ListIndentsDialog.txtPosBullet":"行頭文字の配置","DE.Views.ListIndentsDialog.txtPosNumber":"番号の配置","DE.Views.ListSettingsDialog.textAuto":"自動","DE.Views.ListSettingsDialog.textBold":"太字","DE.Views.ListSettingsDialog.textCenter":"中央揃え","DE.Views.ListSettingsDialog.textHide":"設定を非表示にする","DE.Views.ListSettingsDialog.textItalic":"斜体","DE.Views.ListSettingsDialog.textLeft":"左","DE.Views.ListSettingsDialog.textLevel":"レベル","DE.Views.ListSettingsDialog.textMore":"その他の設定を表示する","DE.Views.ListSettingsDialog.textPreview":"プレビュー","DE.Views.ListSettingsDialog.textRight":"右","DE.Views.ListSettingsDialog.textSelectLevel":"レベルの選択","DE.Views.ListSettingsDialog.textSpace":"スペース","DE.Views.ListSettingsDialog.textTab":"タブ文字","DE.Views.ListSettingsDialog.txtAlign":"配置","DE.Views.ListSettingsDialog.txtAlignAt":"位置","DE.Views.ListSettingsDialog.txtBullet":"箇条書き","DE.Views.ListSettingsDialog.txtColor":"色","DE.Views.ListSettingsDialog.txtFollow":"数字後のシンボル","DE.Views.ListSettingsDialog.txtFontName":"フォント","DE.Views.ListSettingsDialog.txtInclcudeLevel":"次のレベルの番号を含める:","DE.Views.ListSettingsDialog.txtIndent":"インデント","DE.Views.ListSettingsDialog.txtLikeText":"テキストのように","DE.Views.ListSettingsDialog.txtMoreTypes":"その他の種類","DE.Views.ListSettingsDialog.txtNewBullet":"新しい行頭文字","DE.Views.ListSettingsDialog.txtNone":"なし","DE.Views.ListSettingsDialog.txtNumFormatString":"数値の書式","DE.Views.ListSettingsDialog.txtRestart":"リストの作成を再開する","DE.Views.ListSettingsDialog.txtSize":"サイズ","DE.Views.ListSettingsDialog.txtStart":"開始:","DE.Views.ListSettingsDialog.txtSymbol":"記号","DE.Views.ListSettingsDialog.txtTabStop":"タブ位置の追加:","DE.Views.ListSettingsDialog.txtTitle":"リストの設定","DE.Views.ListSettingsDialog.txtType":"タイプ","DE.Views.ListTypesAdvanced.labelSelect":"リスト種類の選択","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"送信","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"テーマ","DE.Views.MailMergeEmailDlg.textAttachDocx":"DOCXとして添付する","DE.Views.MailMergeEmailDlg.textAttachPdf":"PDFとして添付する","DE.Views.MailMergeEmailDlg.textFileName":"ファイル名","DE.Views.MailMergeEmailDlg.textFormat":"メール形式","DE.Views.MailMergeEmailDlg.textFrom":"差出人","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"メッセージ","DE.Views.MailMergeEmailDlg.textSubject":"件名","DE.Views.MailMergeEmailDlg.textTitle":"メールに送信する","DE.Views.MailMergeEmailDlg.textTo":"宛先","DE.Views.MailMergeEmailDlg.textWarning":"警告!","DE.Views.MailMergeEmailDlg.textWarningMsg":"「送信」ボタンをクリックするとメール送信を中止することはできません。","DE.Views.MailMergeSettings.downloadMergeTitle":"結合中","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"結合に失敗しました。","DE.Views.MailMergeSettings.notcriticalErrorTitle":"警告","DE.Views.MailMergeSettings.textAddRecipients":"初めに数名の受信者をリストに追加する","DE.Views.MailMergeSettings.textAll":"全ての記録","DE.Views.MailMergeSettings.textCurrent":"現在の履歴","DE.Views.MailMergeSettings.textDataSource":"データソース","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"ダウンロード","DE.Views.MailMergeSettings.textEditData":"アドレス帳の編集","DE.Views.MailMergeSettings.textEmail":"メール","DE.Views.MailMergeSettings.textFrom":"から","DE.Views.MailMergeSettings.textGoToMail":"メールに移動","DE.Views.MailMergeSettings.textHighlight":"差し込みフィールドをハイライト","DE.Views.MailMergeSettings.textInsertField":"差し込みフィールドの挿入","DE.Views.MailMergeSettings.textMaxRecepients":"受信者の最大人数は100人です。","DE.Views.MailMergeSettings.textMerge":"結合","DE.Views.MailMergeSettings.textMergeFields":"差し込みフィールド","DE.Views.MailMergeSettings.textMergeTo":"に結合","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"保存","DE.Views.MailMergeSettings.textPreview":"プレビューの結果","DE.Views.MailMergeSettings.textReadMore":"続きを読む","DE.Views.MailMergeSettings.textSendMsg":"すべてのメールの準備ができました。 しばらくするとメッセージが送信されます。
配信速度はメールサーバにより変動します。
ドキュメントの作業を続けることも、閉じることもできます。操作終了後、登録したメールアドレスに通知が届きます。","DE.Views.MailMergeSettings.textTo":"へ","DE.Views.MailMergeSettings.txtFirst":"最初の記録へ","DE.Views.MailMergeSettings.txtFromToError":"「から」値は「まで」値より小さくする必要があります。","DE.Views.MailMergeSettings.txtLast":"最後の記録へ","DE.Views.MailMergeSettings.txtNext":"次の記録へ","DE.Views.MailMergeSettings.txtPrev":"以前の記録へ","DE.Views.MailMergeSettings.txtUntitled":"無題","DE.Views.MailMergeSettings.warnProcessMailMerge":"マージの開始に失敗しました","DE.Views.Navigation.strNavigate":"見出し","DE.Views.Navigation.txtClosePanel":"見出しを閉じる","DE.Views.Navigation.txtCollapse":"すべてを折りたたむ","DE.Views.Navigation.txtDemote":"下げる","DE.Views.Navigation.txtEmpty":"ドキュメントに見出しがありません。
目次に表示されるように、テキストに見出しスタイルを適用ください。","DE.Views.Navigation.txtEmptyItem":"空白の見出し","DE.Views.Navigation.txtEmptyViewer":"ドキュメントに見出しがありません。","DE.Views.Navigation.txtExpand":"すべてを拡張する","DE.Views.Navigation.txtExpandToLevel":"レベルまで拡張する","DE.Views.Navigation.txtFontSize":"フォントのサイズ","DE.Views.Navigation.txtHeadingAfter":"後の新しい見出し","DE.Views.Navigation.txtHeadingBefore":"前の新しい見出し","DE.Views.Navigation.txtLarge":"大","DE.Views.Navigation.txtMedium":"中","DE.Views.Navigation.txtNewHeading":"新しい小見出し","DE.Views.Navigation.txtPromote":"促進","DE.Views.Navigation.txtSelect":"コンテンツの選択","DE.Views.Navigation.txtSettings":"見出しの設定","DE.Views.Navigation.txtSmall":"小","DE.Views.Navigation.txtWrapHeadings":"長い見出しを折り返す","DE.Views.NoteSettingsDialog.textApply":"適用する","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":"形式","DE.Views.NoteSettingsDialog.textInsert":"挿入","DE.Views.NoteSettingsDialog.textLocation":"位置","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":"下","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":"余白","DE.Views.PageMarginsDialog.textTop":"トップ","DE.Views.PageMarginsDialog.txtMarginsH":"指定されたページの高さ対して、上下の余白が大きすぎます。","DE.Views.PageMarginsDialog.txtMarginsW":"ページ幅に対して左右の余白が広すぎます。","DE.Views.PageNumberingDlg.textFrom":"開始:","DE.Views.PageNumberingDlg.textMoreTypes":"その他の種類","DE.Views.PageNumberingDlg.textNumberFormat":"数値の書式","DE.Views.PageNumberingDlg.textPrev":"前のセクションから続ける","DE.Views.PageSizeDialog.textHeight":"高さ","DE.Views.PageSizeDialog.textPreset":"プリセット","DE.Views.PageSizeDialog.textTitle":"ページのサイズ","DE.Views.PageSizeDialog.textWidth":"幅","DE.Views.PageSizeDialog.txtCustom":"カスタム","DE.Views.PageThumbnails.textClosePanel":"ページサムネイルを閉じる","DE.Views.PageThumbnails.textHighlightVisiblePart":"表示されているページをハイライト","DE.Views.PageThumbnails.textPageThumbnails":"ページサムネイル","DE.Views.PageThumbnails.textThumbnailsSettings":"サムネイルの設定","DE.Views.PageThumbnails.textThumbnailsSize":"サムネイルサイズ","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.strSpacingAfter":"後に","DE.Views.ParagraphSettings.strSpacingBefore":"前","DE.Views.ParagraphSettings.textAdvanced":"詳細設定を表示","DE.Views.ParagraphSettings.textAt":"行間","DE.Views.ParagraphSettings.textAtLeast":"最小","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":"指定されたタブは、このフィールドに表示されます。","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"全ての英大文字","DE.Views.ParagraphSettingsAdvanced.strBorders":"罫線と塗りつぶし","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"前に改ページ","DE.Views.ParagraphSettingsAdvanced.strDirection":"方向","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"二重取り消し線","DE.Views.ParagraphSettingsAdvanced.strIndent":"インデント","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","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":"埋め込み文字","DE.Views.ParagraphSettingsAdvanced.strOrphan":"改ページ時 1 行残して段落を区切らない","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"フォント","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"インデント&行間隔","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"改行&改ページ","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"位置","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型英大文字","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"同じスタイルの場合は、段落間に間隔を追加しません。","DE.Views.ParagraphSettingsAdvanced.strSpacing":"間隔","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.textAll":"すべて","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"最小","DE.Views.ParagraphSettingsAdvanced.textAuto":"倍数","DE.Views.ParagraphSettingsAdvanced.textBackColor":"背景色","DE.Views.ParagraphSettingsAdvanced.textBodyText":"基本テキスト","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"線の色","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"図表をクリックするか、ボタンで枠を選択し、選択したスタイルを適用します。","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"罫線のサイズ","DE.Views.ParagraphSettingsAdvanced.textBottom":"下","DE.Views.ParagraphSettingsAdvanced.textCentered":"中央揃え済み","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"文字間隔","DE.Views.ParagraphSettingsAdvanced.textContext":"コンテキスト合字","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"コンテキストおよび随意合字","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"コンテキスト、履歴および随意合字","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"コンテキストおよび履歴合字","DE.Views.ParagraphSettingsAdvanced.textDefault":"デフォルトのタブ","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"左から右へ","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"右から左へ","DE.Views.ParagraphSettingsAdvanced.textDiscret":"随意合字","DE.Views.ParagraphSettingsAdvanced.textEffects":"エフェクト","DE.Views.ParagraphSettingsAdvanced.textExact":"固定値","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"最初の行","DE.Views.ParagraphSettingsAdvanced.textHanging":"ぶら下げ","DE.Views.ParagraphSettingsAdvanced.textHistorical":"歴史的合字","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"歴史的合字と随意合字","DE.Views.ParagraphSettingsAdvanced.textJustified":"両端揃え","DE.Views.ParagraphSettingsAdvanced.textLeader":"埋め草文字","DE.Views.ParagraphSettingsAdvanced.textLeft":"左","DE.Views.ParagraphSettingsAdvanced.textLevel":"レベル","DE.Views.ParagraphSettingsAdvanced.textLigatures":"合字","DE.Views.ParagraphSettingsAdvanced.textNone":"なし","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(なし)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"OpenTypeフォント特性","DE.Views.ParagraphSettingsAdvanced.textPosition":"位置","DE.Views.ParagraphSettingsAdvanced.textRemove":"削除","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"全てを削除","DE.Views.ParagraphSettingsAdvanced.textRight":"右","DE.Views.ParagraphSettingsAdvanced.textSet":"指定","DE.Views.ParagraphSettingsAdvanced.textSpacing":"間隔","DE.Views.ParagraphSettingsAdvanced.textStandard":"標準合字のみ","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"標準合字およびコンテキスト合字","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"標準、コンテキストおよび随意合字","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"標準、コンテキストおよび履歴合字","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"標準および随意合字","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"標準、履歴および随意合字","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"標準および履歴合字","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"中央揃え","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"タブの位置","DE.Views.ParagraphSettingsAdvanced.textTabRight":"右","DE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 詳細設定","DE.Views.ParagraphSettingsAdvanced.textTop":"トップ","DE.Views.ParagraphSettingsAdvanced.tipAll":"外枠とすべての内枠の線を設定","DE.Views.ParagraphSettingsAdvanced.tipBottom":"下罫線のみを設定","DE.Views.ParagraphSettingsAdvanced.tipInner":"水平方向の内側の線のみを設定","DE.Views.ParagraphSettingsAdvanced.tipLeft":"左縁だけを設定","DE.Views.ParagraphSettingsAdvanced.tipNone":"罫線の設定なし","DE.Views.ParagraphSettingsAdvanced.tipOuter":"外枠の罫線だけを設定","DE.Views.ParagraphSettingsAdvanced.tipRight":"右罫線だけを設定","DE.Views.ParagraphSettingsAdvanced.tipTop":"上罫線だけを設定","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"自動","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"枠線なし","DE.Views.PrintWithPreview.textMarginsLast":"最後に適用した設定","DE.Views.PrintWithPreview.textMarginsModerate":"中","DE.Views.PrintWithPreview.textMarginsNarrow":"狭い","DE.Views.PrintWithPreview.textMarginsNormal":"標準","DE.Views.PrintWithPreview.textMarginsWide":"広い","DE.Views.PrintWithPreview.txtAllPages":"全ページ","DE.Views.PrintWithPreview.txtAuto":"自動","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"白黒印刷","DE.Views.PrintWithPreview.txtBothSides":"両面印刷","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"長辺を綴じる","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"短辺を綴じる","DE.Views.PrintWithPreview.txtBottom":"下","DE.Views.PrintWithPreview.txtColorPrinting":"カラー印刷","DE.Views.PrintWithPreview.txtCopies":"コピー","DE.Views.PrintWithPreview.txtCurrentPage":"現在のページ","DE.Views.PrintWithPreview.txtCustom":"ユーザー設定","DE.Views.PrintWithPreview.txtCustomPages":"カスタム印刷","DE.Views.PrintWithPreview.txtLandscape":"横","DE.Views.PrintWithPreview.txtLeft":"左","DE.Views.PrintWithPreview.txtMargins":"余白","DE.Views.PrintWithPreview.txtOf":"{0}から","DE.Views.PrintWithPreview.txtOneSide":"片面印刷","DE.Views.PrintWithPreview.txtOneSideDesc":"ページの片面のみを印刷する","DE.Views.PrintWithPreview.txtPage":"ページ","DE.Views.PrintWithPreview.txtPageNumInvalid":"ページ番号が正しくありません。","DE.Views.PrintWithPreview.txtPageOrientation":"印刷の向き","DE.Views.PrintWithPreview.txtPages":"ページ","DE.Views.PrintWithPreview.txtPageSize":"ページのサイズ","DE.Views.PrintWithPreview.txtPortrait":"縦","DE.Views.PrintWithPreview.txtPrint":"印刷","DE.Views.PrintWithPreview.txtPrinter":"プリンター","DE.Views.PrintWithPreview.txtPrinterNotSelected":"プリンターが選択されていない","DE.Views.PrintWithPreview.txtPrintersNotFound":"プリンターが見つかりません","DE.Views.PrintWithPreview.txtPrintPdf":"PDFに印刷","DE.Views.PrintWithPreview.txtPrintRange":"印刷範囲\t","DE.Views.PrintWithPreview.txtPrintSides":"両面印刷","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"システムダイアログで印刷する","DE.Views.PrintWithPreview.txtRight":"右","DE.Views.PrintWithPreview.txtSelection":"選択","DE.Views.PrintWithPreview.txtTop":"上","DE.Views.PrintWithPreview.txtWaitingForPrinters":"プリンターを待っています","DE.Views.ProtectDialog.textComments":"コメント","DE.Views.ProtectDialog.textForms":"フォームの入力","DE.Views.ProtectDialog.textReview":"変更履歴","DE.Views.ProtectDialog.textView":"変更不可 (閲覧のみ)","DE.Views.ProtectDialog.txtAllow":"ユーザーに許可する編集の種類を指定する","DE.Views.ProtectDialog.txtIncorrectPwd":"先に入力したパスワードと一致しません。","DE.Views.ProtectDialog.txtLimit":"パスワードは15文字まで","DE.Views.ProtectDialog.txtOptional":"任意","DE.Views.ProtectDialog.txtPassword":"パスワード","DE.Views.ProtectDialog.txtProtect":"保護する","DE.Views.ProtectDialog.txtRepeat":"パスワードを再入力","DE.Views.ProtectDialog.txtTitle":"保護する","DE.Views.ProtectDialog.txtWarning":"ご注意:パスワードを紛失したり、忘れたりした場合は、復旧できません。安全な場所に保管してください。","DE.Views.RightMenu.ariaRightMenu":"右メニュー","DE.Views.RightMenu.txtChartSettings":"グラフの設定","DE.Views.RightMenu.txtFormSettings":"フォーム設定","DE.Views.RightMenu.txtHeaderFooterSettings":"ヘッダーとフッターの設定","DE.Views.RightMenu.txtImageSettings":"画像の設定","DE.Views.RightMenu.txtMailMergeSettings":"差し込み印刷の設定","DE.Views.RightMenu.txtParagraphSettings":"段落の設定","DE.Views.RightMenu.txtShapeSettings":"図形の設定","DE.Views.RightMenu.txtSignatureSettings":"署名の設定","DE.Views.RightMenu.txtTableSettings":"表の設定","DE.Views.RightMenu.txtTextArtSettings":"テキストアートの設定","DE.Views.RoleDeleteDlg.textLabel":"この受信者を削除するには、関連するフィールドを別の受信者に移動する必要があります。","DE.Views.RoleDeleteDlg.textSelect":"フィールドマージ用の受信者を選択","DE.Views.RoleDeleteDlg.textTitle":"受信者を削除する","DE.Views.RoleEditDlg.errNameExists":"同じ名前の受信者は既に存在します。","DE.Views.RoleEditDlg.textEmptyError":"受取人名は空欄にできません。","DE.Views.RoleEditDlg.textName":"受信者名","DE.Views.RoleEditDlg.textNameEx":"例:応募者、顧客、営業担当者","DE.Views.RoleEditDlg.textNoHighlight":"ハイライト表示なし","DE.Views.RoleEditDlg.txtTitleEdit":"受信者を編集する","DE.Views.RoleEditDlg.txtTitleNew":"新しい受信者を作成する","DE.Views.RolesManagerDlg.textAnyone":"誰でも","DE.Views.RolesManagerDlg.textDelete":"削除","DE.Views.RolesManagerDlg.textDeleteLast":"「{0}」受信者を削除してもよろしいですか?
一度削除すると、デフォルトの受信者が作成されます。","DE.Views.RolesManagerDlg.textDescription":"受信者を追加し、各受信者が文書を受け取り署名する順序を設定する","DE.Views.RolesManagerDlg.textDown":"受信者を下に移動する","DE.Views.RolesManagerDlg.textEdit":"編集","DE.Views.RolesManagerDlg.textEmpty":"受信者はまだ作成されていません。
少なくとも1人の受信者を作成すれば、この欄に表示されます。","DE.Views.RolesManagerDlg.textNew":"新しい","DE.Views.RolesManagerDlg.textUp":"受信者を上に移動する","DE.Views.RolesManagerDlg.txtTitle":"受信者管理","DE.Views.RolesManagerDlg.warnCantDelete":"この受信者は関連フィールドがあるため削除できません。","DE.Views.RolesManagerDlg.warnDelete":"「{0}」受信者を削除してもよろしいですか?","DE.Views.SaveFormDlg.saveButtonText":"保存","DE.Views.SaveFormDlg.textAnyone":"誰でも","DE.Views.SaveFormDlg.textDescription":"PDFに保存する際、入力フィールドを持つ受信者のみが入力対象リストに追加されます","DE.Views.SaveFormDlg.textEmpty":"フィールドに関連付けられた受信者はいません。","DE.Views.SaveFormDlg.textFill":"リストの記入","DE.Views.SaveFormDlg.txtTitle":"フォームとして保存する","DE.Views.ShapeSettings.strBackground":"背景色","DE.Views.ShapeSettings.strChange":"オートシェイプの変更","DE.Views.ShapeSettings.strColor":"色","DE.Views.ShapeSettings.strFill":"塗りつぶし","DE.Views.ShapeSettings.strForeground":"前景色","DE.Views.ShapeSettings.strPattern":"パターン","DE.Views.ShapeSettings.strShadow":"影を表示する","DE.Views.ShapeSettings.strSize":"サイズ","DE.Views.ShapeSettings.strStroke":"線","DE.Views.ShapeSettings.strTransparency":"不透明度","DE.Views.ShapeSettings.strType":"タイプ","DE.Views.ShapeSettings.textAdjustShadow":"影の調整","DE.Views.ShapeSettings.textAdvanced":"詳細設定を表示","DE.Views.ShapeSettings.textAngle":"角度","DE.Views.ShapeSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","DE.Views.ShapeSettings.textColor":"色で塗りつぶし","DE.Views.ShapeSettings.textDirection":"方向","DE.Views.ShapeSettings.textEditPoints":"頂点の編集","DE.Views.ShapeSettings.textEditShape":"図形の編集","DE.Views.ShapeSettings.textEmptyPattern":"パターンなし","DE.Views.ShapeSettings.textEyedropper":"スポイト","DE.Views.ShapeSettings.textFlip":"反転する","DE.Views.ShapeSettings.textFromFile":"ファイルから","DE.Views.ShapeSettings.textFromStorage":"ストレージから","DE.Views.ShapeSettings.textFromUrl":"URLから","DE.Views.ShapeSettings.textGradient":"グラデーションポイント","DE.Views.ShapeSettings.textGradientFill":"塗りつぶし (グラデーション)","DE.Views.ShapeSettings.textHint270":"反時計回りに90度回転","DE.Views.ShapeSettings.textHint90":"時計回りに90度回転","DE.Views.ShapeSettings.textHintFlipH":"左右に反転","DE.Views.ShapeSettings.textHintFlipV":"上下に反転","DE.Views.ShapeSettings.textImageTexture":"図またはテクスチャ","DE.Views.ShapeSettings.textLinear":"線形","DE.Views.ShapeSettings.textMoreColors":"その他の色","DE.Views.ShapeSettings.textNoFill":"塗りつぶしなし","DE.Views.ShapeSettings.textNoShadow":"影なし","DE.Views.ShapeSettings.textPatternFill":"パターン","DE.Views.ShapeSettings.textPosition":"位置","DE.Views.ShapeSettings.textRadial":"ラジアル","DE.Views.ShapeSettings.textRecentlyUsed":"最近使った項目","DE.Views.ShapeSettings.textRotate90":"90度回転","DE.Views.ShapeSettings.textRotation":"回転","DE.Views.ShapeSettings.textSelectImage":"画像の選択","DE.Views.ShapeSettings.textSelectTexture":"選択する","DE.Views.ShapeSettings.textShadow":"影","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":"テキストの背後に","DE.Views.ShapeSettings.txtBrownPaper":"クラフト紙","DE.Views.ShapeSettings.txtCanvas":"キャンバス","DE.Views.ShapeSettings.txtCarton":"カートン","DE.Views.ShapeSettings.txtDarkFabric":"ダークファブリック","DE.Views.ShapeSettings.txtGrain":"粒子","DE.Views.ShapeSettings.txtGranite":"花崗岩","DE.Views.ShapeSettings.txtGreyPaper":"グレー紙","DE.Views.ShapeSettings.txtInFront":"テキストの前に","DE.Views.ShapeSettings.txtInline":"テキストに沿って","DE.Views.ShapeSettings.txtKnit":"ニット","DE.Views.ShapeSettings.txtLeather":"レザー","DE.Views.ShapeSettings.txtNoBorders":"線なし","DE.Views.ShapeSettings.txtOffsetBottom":"オフセット:下","DE.Views.ShapeSettings.txtOffsetBottomLeft":"オフセット:左下","DE.Views.ShapeSettings.txtOffsetBottomRight":"オフセット:右下","DE.Views.ShapeSettings.txtOffsetCenter":"オフセット:中央","DE.Views.ShapeSettings.txtOffsetLeft":"オフセット:左","DE.Views.ShapeSettings.txtOffsetRight":"オフセット:右","DE.Views.ShapeSettings.txtOffsetTop":"オフセット:上","DE.Views.ShapeSettings.txtOffsetTopLeft":"オフセット:左上","DE.Views.ShapeSettings.txtOffsetTopRight":"オフセット:右上","DE.Views.ShapeSettings.txtPapyrus":"パピルス","DE.Views.ShapeSettings.txtSquare":"四角","DE.Views.ShapeSettings.txtThrough":"内部","DE.Views.ShapeSettings.txtTight":"外周","DE.Views.ShapeSettings.txtTopAndBottom":"上と下","DE.Views.ShapeSettings.txtWood":"木","DE.Views.SignatureSettings.notcriticalErrorTitle":"警告","DE.Views.SignatureSettings.strDelete":"署名の削除","DE.Views.SignatureSettings.strDetails":"署名の詳細","DE.Views.SignatureSettings.strInvalid":"無効な署名","DE.Views.SignatureSettings.strRequested":"要求された署名","DE.Views.SignatureSettings.strSetup":"署名の設定","DE.Views.SignatureSettings.strSign":"署名する","DE.Views.SignatureSettings.strSignature":"署名","DE.Views.SignatureSettings.strSigner":"署名者","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.txtSignedForm":"この文書は署名されているため、編集することができません。","DE.Views.SignatureSettings.txtSignedInvalid":"文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。","DE.Views.Statusbar.goToPageText":"ページに移動","DE.Views.Statusbar.pageIndexText":"{0}/{1} ページ","DE.Views.Statusbar.tipFitPage":"ページに合わせる","DE.Views.Statusbar.tipFitWidth":"幅に合わせる","DE.Views.Statusbar.tipHandTool":"「手のひら」ツール","DE.Views.Statusbar.tipMultiplePages":"複数ページ","DE.Views.Statusbar.tipSelectTool":"選択ツール","DE.Views.Statusbar.tipSetLang":"テキストの言語を設定","DE.Views.Statusbar.tipZoomFactor":"ズーム","DE.Views.Statusbar.tipZoomIn":"ズームイン","DE.Views.Statusbar.tipZoomOut":"ズームアウト","DE.Views.Statusbar.txtPageNumInvalid":"ページ番号が正しくありません。","DE.Views.Statusbar.txtPages":"ページ","DE.Views.Statusbar.txtParagraphs":"段落","DE.Views.Statusbar.txtSpaces":"スペースを含む記号","DE.Views.Statusbar.txtSymbols":"記号","DE.Views.Statusbar.txtWordCount":"文字数","DE.Views.Statusbar.txtWords":"単語","DE.Views.StyleTitleDialog.textHeader":"新しいスタイルの作成","DE.Views.StyleTitleDialog.textNextStyle":"次の段落スタイル","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":"方程式\t","DE.Views.TableOfContentsSettings.textFigure":"図形","DE.Views.TableOfContentsSettings.textLeader":"埋め草文字","DE.Views.TableOfContentsSettings.textLevel":"レベル","DE.Views.TableOfContentsSettings.textLevels":"レベル","DE.Views.TableOfContentsSettings.textNone":"なし","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":"列の削除","DE.Views.TableSettings.deleteRowText":"行の削除","DE.Views.TableSettings.deleteTableText":"表の削除","DE.Views.TableSettings.insertColumnLeftText":"左に列を挿入","DE.Views.TableSettings.insertColumnRightText":"右に列を挿入","DE.Views.TableSettings.insertRowAboveText":"上に行を挿入","DE.Views.TableSettings.insertRowBelowText":"下に行を挿入","DE.Views.TableSettings.mergeCellsText":"セルの結合","DE.Views.TableSettings.selectCellText":"セルの選択","DE.Views.TableSettings.selectColumnText":"列の選択","DE.Views.TableSettings.selectRowText":"行の選択","DE.Views.TableSettings.selectTableText":"テーブルの選択","DE.Views.TableSettings.splitCellsText":"セルを分割...","DE.Views.TableSettings.splitCellTitleText":"セルを分割","DE.Views.TableSettings.strRepeatRow":"各ページの上部に見出し行として繰り返す","DE.Views.TableSettings.textAddFormula":"式を追加","DE.Views.TableSettings.textAdvanced":"詳細設定を表示","DE.Views.TableSettings.textAutofit":"コンテンツに合わせて自動的にサイズ調整","DE.Views.TableSettings.textBackColor":"背景色","DE.Views.TableSettings.textBanded":"縞模様","DE.Views.TableSettings.textBorderColor":"色","DE.Views.TableSettings.textBorders":"罫線のスタイル","DE.Views.TableSettings.textCellSize":"行と列のサイズ","DE.Views.TableSettings.textColumns":"列","DE.Views.TableSettings.textConvert":"表を文字に変換する","DE.Views.TableSettings.textDistributeCols":"列の幅を揃える","DE.Views.TableSettings.textDistributeRows":"行の高さを揃える","DE.Views.TableSettings.textEdit":"行/列","DE.Views.TableSettings.textEmptyTemplate":"テンプレートなし","DE.Views.TableSettings.textFirst":"最初の","DE.Views.TableSettings.textHeader":"ヘッダー","DE.Views.TableSettings.textHeight":"高さ","DE.Views.TableSettings.textLast":"最後","DE.Views.TableSettings.textRows":"行","DE.Views.TableSettings.textSelectBorders":"選択したスタイルを適用する罫線を選択してください。 ","DE.Views.TableSettings.textTemplate":"テンプレートから選択する","DE.Views.TableSettings.textTotal":"合計","DE.Views.TableSettings.textWidth":"幅","DE.Views.TableSettings.tipAll":"外枠とすべての内枠の線を設定","DE.Views.TableSettings.tipBottom":"外部の罫線(下)だけを設定","DE.Views.TableSettings.tipInner":"内側の線のみを設定","DE.Views.TableSettings.tipInnerHor":"水平方向の内側の線のみを設定","DE.Views.TableSettings.tipInnerVert":"縦方向の内線のみを設定","DE.Views.TableSettings.tipLeft":"外部の罫線(左)だけを設定","DE.Views.TableSettings.tipNone":"罫線の設定なし","DE.Views.TableSettings.tipOuter":"外枠の罫線だけを設定","DE.Views.TableSettings.tipRight":"外部の罫線(右)だけを設定","DE.Views.TableSettings.tipTop":"外部の罫線(上)だけを設定","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"境界&線付き表","DE.Views.TableSettings.txtGroupTable_Custom":"カスタム","DE.Views.TableSettings.txtGroupTable_Grid":"グリッド テーブル","DE.Views.TableSettings.txtGroupTable_List":"リストの表","DE.Views.TableSettings.txtGroupTable_Plain":"標準の表","DE.Views.TableSettings.txtNoBorders":"枠線なし","DE.Views.TableSettings.txtTable_Accent":"アクセント","DE.Views.TableSettings.txtTable_Bordered":"境界付き","DE.Views.TableSettings.txtTable_BorderedAndLined":"境界&線付き","DE.Views.TableSettings.txtTable_Colorful":"カラフル","DE.Views.TableSettings.txtTable_Dark":"暗い","DE.Views.TableSettings.txtTable_GridTable":"グリッドテーブル","DE.Views.TableSettings.txtTable_Light":"明るい","DE.Views.TableSettings.txtTable_Lined":"線付き","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.textAltTitle":"タイトル","DE.Views.TableSettingsAdvanced.textAnchorText":"テキスト","DE.Views.TableSettingsAdvanced.textAutofit":"自動的にセルのサイズを変更する","DE.Views.TableSettingsAdvanced.textBackColor":"セルの背景","DE.Views.TableSettingsAdvanced.textBelow":"基準","DE.Views.TableSettingsAdvanced.textBorderColor":"線の色","DE.Views.TableSettingsAdvanced.textBorderDesc":"図表をクリックするか、ボタンで枠を選択し、選択したスタイルを適用します。","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"罫線と背景","DE.Views.TableSettingsAdvanced.textBorderWidth":"罫線のサイズ","DE.Views.TableSettingsAdvanced.textBottom":"下","DE.Views.TableSettingsAdvanced.textCellOptions":"セルのオプション","DE.Views.TableSettingsAdvanced.textCellProps":"セル","DE.Views.TableSettingsAdvanced.textCellSize":"セルのサイズ","DE.Views.TableSettingsAdvanced.textCenter":"中央揃え","DE.Views.TableSettingsAdvanced.textCenterTooltip":"中央揃え","DE.Views.TableSettingsAdvanced.textCheckMargins":"既定の余白を使用","DE.Views.TableSettingsAdvanced.textDefaultMargins":"デフォルトのセルの余白","DE.Views.TableSettingsAdvanced.textDistance":"文字列との間隔","DE.Views.TableSettingsAdvanced.textHorizontal":"水平","DE.Views.TableSettingsAdvanced.textIndLeft":"左端からのインデント","DE.Views.TableSettingsAdvanced.textLeft":"左","DE.Views.TableSettingsAdvanced.textLeftTooltip":"左","DE.Views.TableSettingsAdvanced.textMargin":"余白","DE.Views.TableSettingsAdvanced.textMargins":"セル内の余白","DE.Views.TableSettingsAdvanced.textMeasure":"測定","DE.Views.TableSettingsAdvanced.textMove":"文字列と一緒に移動する","DE.Views.TableSettingsAdvanced.textOnlyCells":"選択されたセルだけに適応","DE.Views.TableSettingsAdvanced.textOptions":"オプション","DE.Views.TableSettingsAdvanced.textOverlap":"オーバーラップを許可する","DE.Views.TableSettingsAdvanced.textPage":"ページ","DE.Views.TableSettingsAdvanced.textPosition":"位置","DE.Views.TableSettingsAdvanced.textPrefWidth":"希望する幅","DE.Views.TableSettingsAdvanced.textPreview":"プレビュー","DE.Views.TableSettingsAdvanced.textRelative":"基準","DE.Views.TableSettingsAdvanced.textRight":"右","DE.Views.TableSettingsAdvanced.textRightOf":"基準","DE.Views.TableSettingsAdvanced.textRightTooltip":"右","DE.Views.TableSettingsAdvanced.textTable":"テーブル","DE.Views.TableSettingsAdvanced.textTableBackColor":"テーブルの背景","DE.Views.TableSettingsAdvanced.textTablePosition":"テーブルの位置","DE.Views.TableSettingsAdvanced.textTableSize":"テーブルのサイズ","DE.Views.TableSettingsAdvanced.textTitle":"テーブル - 詳細設定","DE.Views.TableSettingsAdvanced.textTop":"トップ","DE.Views.TableSettingsAdvanced.textVertical":"垂直","DE.Views.TableSettingsAdvanced.textWidth":"幅","DE.Views.TableSettingsAdvanced.textWidthSpaces":"幅&スペース","DE.Views.TableSettingsAdvanced.textWrap":"テキストの折り返し\t","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"インラインテーブル","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"フローテーブル","DE.Views.TableSettingsAdvanced.textWrappingStyle":"折り返しの種類と配置","DE.Views.TableSettingsAdvanced.textWrapText":"テキストの折り返し","DE.Views.TableSettingsAdvanced.tipAll":"外枠とすべての内枠の線を設定","DE.Views.TableSettingsAdvanced.tipCellAll":"内部セルだけに罫線を設定","DE.Views.TableSettingsAdvanced.tipCellInner":"内部のセルだけのために縦線と横線を設定","DE.Views.TableSettingsAdvanced.tipCellOuter":"内側のセルにのみ外枠罫線を設定","DE.Views.TableSettingsAdvanced.tipInner":"内側の線のみを設定","DE.Views.TableSettingsAdvanced.tipNone":"罫線の設定なし","DE.Views.TableSettingsAdvanced.tipOuter":"外枠の罫線だけを設定","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"内部セルの罫線と外部の罫線を設定","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"内側のセルに外枠と縦線・横線を設定","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"テーブルの外枠の罫線と内部セルの外枠罫線を設定","DE.Views.TableSettingsAdvanced.txtCm":"センチ","DE.Views.TableSettingsAdvanced.txtInch":"インチ","DE.Views.TableSettingsAdvanced.txtNoBorders":"枠線なし","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.strTransparency":"不透明度","DE.Views.TextArtSettings.strType":"タイプ","DE.Views.TextArtSettings.textAngle":"角度","DE.Views.TextArtSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","DE.Views.TextArtSettings.textColor":"色で塗りつぶし","DE.Views.TextArtSettings.textDirection":"方向","DE.Views.TextArtSettings.textGradient":"グラデーションポイント","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":"線なし","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.capBtnHand":"手のひら","DE.Views.Toolbar.capBtnHyphenation":"ハイフン","DE.Views.Toolbar.capBtnInsChart":"グラフ","DE.Views.Toolbar.capBtnInsControls":"コンテンツコントロール","DE.Views.Toolbar.capBtnInsDropcap":"ドロップキャップ","DE.Views.Toolbar.capBtnInsEquation":"方程式\t","DE.Views.Toolbar.capBtnInsHeader":"ヘッダー/フッター","DE.Views.Toolbar.capBtnInsPagebreak":"区切り","DE.Views.Toolbar.capBtnInsShape":"図形","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"記号","DE.Views.Toolbar.capBtnInsTable":"表","DE.Views.Toolbar.capBtnInsTextart":"テキストアート","DE.Views.Toolbar.capBtnInsTextbox":"テキストボックス","DE.Views.Toolbar.capBtnInsTextFromFile":"ファイルからのテキスト","DE.Views.Toolbar.capBtnLineNumbers":"行番号","DE.Views.Toolbar.capBtnMargins":"余白","DE.Views.Toolbar.capBtnPageColor":"ページ色","DE.Views.Toolbar.capBtnPageOrient":"印刷の向き","DE.Views.Toolbar.capBtnPageSize":"サイズ","DE.Views.Toolbar.capBtnSelect":"選択","DE.Views.Toolbar.capBtnWatermark":"透かし","DE.Views.Toolbar.capColorScheme":"色","DE.Views.Toolbar.capImgAlign":"整列","DE.Views.Toolbar.capImgBackward":"背面ヘ移動","DE.Views.Toolbar.capImgForward":"前面ヘ移動","DE.Views.Toolbar.capImgGroup":"グループ","DE.Views.Toolbar.capImgWrapping":"折り返し","DE.Views.Toolbar.capShapesMerge":"図形を結合","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.mniInsertSSE":"スプレッドシートを挿入する","DE.Views.Toolbar.mniLowerCase":"小文字","DE.Views.Toolbar.mniRemoveFooter":"フッターの削除","DE.Views.Toolbar.mniRemoveHeader":"ヘッダーの削除","DE.Views.Toolbar.mniSentenceCase":"センテンスケース","DE.Views.Toolbar.mniTextFromLocalFile":"ローカルファイルからのテキスト","DE.Views.Toolbar.mniTextFromStorage":"ストレージに保存されているファイルのテキスト","DE.Views.Toolbar.mniTextFromURL":"URLのファイルからのテキスト","DE.Views.Toolbar.mniTextToTable":"文字を表に変換する","DE.Views.Toolbar.mniToggleCase":"大文字と小文字を入れ替える","DE.Views.Toolbar.mniUpperCase":"大文字","DE.Views.Toolbar.strMenuNoFill":"塗りつぶしなし","DE.Views.Toolbar.textAddSpaceAfter":"段落の後にスペースを追加","DE.Views.Toolbar.textAddSpaceBefore":"段落の前にスペースを追加","DE.Views.Toolbar.textAllBorders":"すべての枠線","DE.Views.Toolbar.textAlpha":"ギリシャ小文字アルファ","DE.Views.Toolbar.textAuto":"自動","DE.Views.Toolbar.textAutoColor":"自動","DE.Views.Toolbar.textBetta":"ギリシャ小文字ベータ","DE.Views.Toolbar.textBlackHeart":"ブラック・ハート・スーツ","DE.Views.Toolbar.textBold":"太字","DE.Views.Toolbar.textBordersColor":"罫線の色","DE.Views.Toolbar.textBordersStyle":"罫線のスタイル","DE.Views.Toolbar.textBottom":"下:","DE.Views.Toolbar.textBottomBorders":"下の罫線","DE.Views.Toolbar.textBullet":"箇条書き","DE.Views.Toolbar.textChangeLevel":"リストラベルの変更","DE.Views.Toolbar.textCheckboxControl":"チェックボックス","DE.Views.Toolbar.textColumnsCustom":"カスタム列","DE.Views.Toolbar.textColumnsLeft":"左","DE.Views.Toolbar.textColumnsOne":"1","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.textCopyright":"著作権マーク","DE.Views.Toolbar.textCustomHyphen":"ハイフン設定","DE.Views.Toolbar.textCustomLineNumbers":"行番号オプション","DE.Views.Toolbar.textDateControl":"日付","DE.Views.Toolbar.textDegree":"度記号","DE.Views.Toolbar.textDelta":"ギリシャ小文字デルタ","DE.Views.Toolbar.textDirLtr":"左から右へ","DE.Views.Toolbar.textDirRtl":"右から左へ","DE.Views.Toolbar.textDivision":"除算記号","DE.Views.Toolbar.textDollar":"ドル記号","DE.Views.Toolbar.textDropdownControl":"ドロップダウンリスト","DE.Views.Toolbar.textEditMode":"PDFの編集","DE.Views.Toolbar.textEditWatermark":"カスタム設定の透かし","DE.Views.Toolbar.textEuro":"ユーロ記号","DE.Views.Toolbar.textEvenPage":"偶数ページから開始","DE.Views.Toolbar.textGreaterEqual":"以上","DE.Views.Toolbar.textIndAfter":"次の項目後にインデント:","DE.Views.Toolbar.textIndBefore":"次の項目前にインデント:","DE.Views.Toolbar.textIndLeft":"左字下げ","DE.Views.Toolbar.textIndRight":"右字下げ","DE.Views.Toolbar.textInfinity":"無限","DE.Views.Toolbar.textInMargin":"余白","DE.Views.Toolbar.textInsColumnBreak":"段区切りの挿入","DE.Views.Toolbar.textInsertPageCount":"ページ数を挿入","DE.Views.Toolbar.textInsertPageNumber":"ページ番号の挿入","DE.Views.Toolbar.textInsideBorders":"内部の罫線","DE.Views.Toolbar.textInsideHorBorders":"内側の水平方向の罫線","DE.Views.Toolbar.textInsideVertBorders":"内側の垂直方向の罫線","DE.Views.Toolbar.textInsPageBreak":"改ページの挿入","DE.Views.Toolbar.textInsSectionBreak":"セクション区切りの挿入","DE.Views.Toolbar.textInText":"テキスト","DE.Views.Toolbar.textItalic":"イタリック","DE.Views.Toolbar.textLandscape":"横向き","DE.Views.Toolbar.textLeft":"左:","DE.Views.Toolbar.textLeftBorders":"左の罫線","DE.Views.Toolbar.textLessEqual":"以下","DE.Views.Toolbar.textLetterPi":"ギリシャの小文字ピー","DE.Views.Toolbar.textLineSpaceOptions":"行間オプション","DE.Views.Toolbar.textListSettings":"リストの設定","DE.Views.Toolbar.textMarginsLast":"最後に適用した設定","DE.Views.Toolbar.textMarginsModerate":"標準","DE.Views.Toolbar.textMarginsNarrow":"狭い","DE.Views.Toolbar.textMarginsNormal":"標準","DE.Views.Toolbar.textMarginsWide":"広い","DE.Views.Toolbar.textMoreSymbols":"その他の記号","DE.Views.Toolbar.textNewColor":"その他の色","DE.Views.Toolbar.textNextPage":"次のページ","DE.Views.Toolbar.textNoBorders":"罫線なし","DE.Views.Toolbar.textNoHighlight":"ハイライト表示なし","DE.Views.Toolbar.textNone":"なし","DE.Views.Toolbar.textNotEqualTo":"同等ではない","DE.Views.Toolbar.textOddPage":"奇数ページから開始","DE.Views.Toolbar.textOneHalf":"普通分数の1/2","DE.Views.Toolbar.textOneQuarter":"普通分数の1/4","DE.Views.Toolbar.textOutBorders":"外部の罫線","DE.Views.Toolbar.textPageMarginsCustom":"ユーザー設定の余白","DE.Views.Toolbar.textPageSizeCustom":"ユーザー設定のページ サイズ","DE.Views.Toolbar.textPictureControl":"画像","DE.Views.Toolbar.textPlainControl":"プレーンテキスト","DE.Views.Toolbar.textPlusMinus":"プラスマイナス記号","DE.Views.Toolbar.textPortrait":"縦向き","DE.Views.Toolbar.textRegistered":"登録商標マーク","DE.Views.Toolbar.textRemoveControl":"コンテンツコントロールを削除する","DE.Views.Toolbar.textRemSpaceAfter":"段落の後のスペースを削除","DE.Views.Toolbar.textRemSpaceBefore":"段落の前のスペースを削除","DE.Views.Toolbar.textRemWatermark":"透かしの削除","DE.Views.Toolbar.textRestartEachPage":"各ページに振り直し","DE.Views.Toolbar.textRestartEachSection":"各セクションに振り直し","DE.Views.Toolbar.textRichControl":"リッチテキスト","DE.Views.Toolbar.textRight":"右:","DE.Views.Toolbar.textRightBorders":"右の罫線","DE.Views.Toolbar.textSection":"節記号","DE.Views.Toolbar.textShapesCombine":"結合","DE.Views.Toolbar.textShapesFragment":"断片","DE.Views.Toolbar.textShapesIntersect":"交差","DE.Views.Toolbar.textShapesSubstract":"減算","DE.Views.Toolbar.textShapesUnion":"連合","DE.Views.Toolbar.textSmile":"白い笑顔","DE.Views.Toolbar.textSpaceAfter":"後にスペースを空ける","DE.Views.Toolbar.textSpaceBefore":"前にスペースを空ける","DE.Views.Toolbar.textSquareRoot":"平方根","DE.Views.Toolbar.textStrikeout":"取り消し線","DE.Views.Toolbar.textStyleMenuDelete":"スタイルの削除","DE.Views.Toolbar.textStyleMenuDeleteAll":"カスタム設定のスタイルを全て削除","DE.Views.Toolbar.textStyleMenuNew":"選択からの新しいスタイル","DE.Views.Toolbar.textStyleMenuRestore":"デフォルトへの復元","DE.Views.Toolbar.textStyleMenuRestoreAll":"全てのデフォルトスタイルの復元","DE.Views.Toolbar.textStyleMenuUpdate":"選択範囲からの更新","DE.Views.Toolbar.textSubscript":"下付き文字","DE.Views.Toolbar.textSuperscript":"上付き文字","DE.Views.Toolbar.textSuppressForCurrentParagraph":"現在の段落には番号を振らない","DE.Views.Toolbar.textTabCollaboration":"共同編集","DE.Views.Toolbar.textTabDraw":"描画","DE.Views.Toolbar.textTabFile":"ファイル","DE.Views.Toolbar.textTabHeaderFooter":"ヘッダー/フッター","DE.Views.Toolbar.textTabHome":"ホーム","DE.Views.Toolbar.textTabInsert":"挿入","DE.Views.Toolbar.textTabLayout":"レイアウト","DE.Views.Toolbar.textTabLinks":"参考資料","DE.Views.Toolbar.textTabProtect":"保護","DE.Views.Toolbar.textTabReview":"レビュー","DE.Views.Toolbar.textTabView":"表示","DE.Views.Toolbar.textTilde":"チルダ","DE.Views.Toolbar.textTitleError":"エラー","DE.Views.Toolbar.textToCurrent":"現在の場所へ","DE.Views.Toolbar.textTop":"トップ:","DE.Views.Toolbar.textTopBorders":"上の罫線","DE.Views.Toolbar.textTradeMark":"商標マーク","DE.Views.Toolbar.textUnderline":"アンダーライン","DE.Views.Toolbar.textYen":"円記号","DE.Views.Toolbar.tipAlignCenter":"中央揃え","DE.Views.Toolbar.tipAlignJust":"両端揃え","DE.Views.Toolbar.tipAlignLeft":"左揃え","DE.Views.Toolbar.tipAlignRight":"右揃え","DE.Views.Toolbar.tipBack":"戻る","DE.Views.Toolbar.tipBlankPage":"空白ページの挿入","DE.Views.Toolbar.tipBorders":"罫線","DE.Views.Toolbar.tipChangeCase":"大文字小文字を変更","DE.Views.Toolbar.tipChangeChart":"グラフの種類の変更","DE.Views.Toolbar.tipClearStyle":"スタイルのクリア","DE.Views.Toolbar.tipColorSchemas":"配色の変更","DE.Views.Toolbar.tipColumns":"列の挿入","DE.Views.Toolbar.tipControls":"コンテンツコントロールの挿入","DE.Views.Toolbar.tipCopy":"コピー","DE.Views.Toolbar.tipCopyStyle":"スタイルのコピー","DE.Views.Toolbar.tipCut":"切り取り","DE.Views.Toolbar.tipDecFont":"フォントサイズの縮小","DE.Views.Toolbar.tipDecPrLeft":"インデントを減らす","DE.Views.Toolbar.tipDownload":"ファイルをダウンロード","DE.Views.Toolbar.tipDropCap":"ドロップキャップの挿入","DE.Views.Toolbar.tipEditMode":"現在のファイルを編集する。
ページがリロードされます。","DE.Views.Toolbar.tipFontColor":"フォントの色","DE.Views.Toolbar.tipFontName":"フォント","DE.Views.Toolbar.tipFontSize":"フォントのサイズ","DE.Views.Toolbar.tipHandTool":"「手のひら」ツール","DE.Views.Toolbar.tipHighlightColor":"ハイライトの色","DE.Views.Toolbar.tipHyphenation":"ハイフン設定の変更","DE.Views.Toolbar.tipImgAlign":"オブジェクトを配置する","DE.Views.Toolbar.tipImgGroup":"オブジェクトをグループ化する","DE.Views.Toolbar.tipImgWrapping":"テキストの折り返し","DE.Views.Toolbar.tipIncFont":"フォントサイズの拡大","DE.Views.Toolbar.tipIncPrLeft":"インデントを増やす","DE.Views.Toolbar.tipInsertChart":"グラフを挿入","DE.Views.Toolbar.tipInsertEquation":"方程式を挿入","DE.Views.Toolbar.tipInsertHorizontalText":"横書きテキストボックスの挿入","DE.Views.Toolbar.tipInsertNum":"ページ番号の挿入","DE.Views.Toolbar.tipInsertShape":"図形を挿入","DE.Views.Toolbar.tipInsertSmartArt":"SmartArtの挿入","DE.Views.Toolbar.tipInsertSymbol":"記号を挿入","DE.Views.Toolbar.tipInsertTable":"表の挿入","DE.Views.Toolbar.tipInsertText":"テキストボックスの挿入","DE.Views.Toolbar.tipInsertTextArt":"テキストアートの挿入","DE.Views.Toolbar.tipInsertVerticalText":"縦書きテキストボックスの挿入","DE.Views.Toolbar.tipLineNumbers":"行番号を表示する","DE.Views.Toolbar.tipLineSpace":"段落の行間","DE.Views.Toolbar.tipMailRecepients":"差し込み印刷","DE.Views.Toolbar.tipMarkers":"箇条書き","DE.Views.Toolbar.tipMarkersArrow":"箇条書き(矢印)","DE.Views.Toolbar.tipMarkersCheckmark":"箇条書き(チェックマーク)","DE.Views.Toolbar.tipMarkersDash":"「ダッシュ」記号","DE.Views.Toolbar.tipMarkersFRhombus":"箇条書き(ひし形)","DE.Views.Toolbar.tipMarkersFRound":"箇条書き(丸)","DE.Views.Toolbar.tipMarkersFSquare":"箇条書き(四角)","DE.Views.Toolbar.tipMarkersHRound":"箇条書き(円)","DE.Views.Toolbar.tipMarkersStar":"箇条書き(星)","DE.Views.Toolbar.tipMultiLevelArticl":"複数レベルの番号付き記事","DE.Views.Toolbar.tipMultiLevelChapter":"複数レベルの番号付き文章","DE.Views.Toolbar.tipMultiLevelHeadings":"複数レベルの番号付き見出し","DE.Views.Toolbar.tipMultiLevelHeadVarious":"複数レベルの番号付き各種見出し","DE.Views.Toolbar.tipMultiLevelNumbered":"段落番号付き箇条書き","DE.Views.Toolbar.tipMultilevels":"複数レベルのリスト","DE.Views.Toolbar.tipMultiLevelSymbols":"記号付き箇条書き","DE.Views.Toolbar.tipMultiLevelVarious":"段落番号付き様々な箇条書き","DE.Views.Toolbar.tipNumbers":"ナンバリング","DE.Views.Toolbar.tipPageBreak":"ページの挿入またはセクション区切り","DE.Views.Toolbar.tipPageColor":"ページ色の変更","DE.Views.Toolbar.tipPageMargins":"余白","DE.Views.Toolbar.tipPageOrient":"印刷の向き","DE.Views.Toolbar.tipPageSize":"ページのサイズ","DE.Views.Toolbar.tipParagraphStyle":"段落のスタイル","DE.Views.Toolbar.tipPaste":"貼り付け","DE.Views.Toolbar.tipPrColor":"段落の背景色","DE.Views.Toolbar.tipPrint":"印刷","DE.Views.Toolbar.tipPrintQuick":"クイックプリント","DE.Views.Toolbar.tipRedo":"やり直し","DE.Views.Toolbar.tipReplace":"置き換え","DE.Views.Toolbar.tipSave":"保存","DE.Views.Toolbar.tipSaveCoauth":"変更内容を保存して、他のユーザーが確認できるようにします。","DE.Views.Toolbar.tipSelectAll":"すべて選択","DE.Views.Toolbar.tipSelectTool":"選択ツール","DE.Views.Toolbar.tipSendBackward":"背面ヘ移動","DE.Views.Toolbar.tipSendForward":"前面ヘ移動","DE.Views.Toolbar.tipShapesMerge":"図形を結合","DE.Views.Toolbar.tipShowHiddenChars":"非表示文字","DE.Views.Toolbar.tipSynchronize":"このドキュメントは他のユーザーによって変更されました。クリックして変更を保存し、更新を再読み込みしてください。","DE.Views.Toolbar.tipTextDir":"テキスト方向","DE.Views.Toolbar.tipTextFromFile":"ファイルからのテキスト","DE.Views.Toolbar.tipUndo":"元に戻す","DE.Views.Toolbar.tipWatermark":"透かしを編集する","DE.Views.Toolbar.txtAutoText":"自動","DE.Views.Toolbar.txtDistribHor":"左右に整列","DE.Views.Toolbar.txtDistribVert":"上下に整列","DE.Views.Toolbar.txtGroupBulletDoc":"文書の行頭文字","DE.Views.Toolbar.txtGroupBulletLib":"行頭文字ライブラリ","DE.Views.Toolbar.txtGroupMultiDoc":"作業中の文書のリスト","DE.Views.Toolbar.txtGroupMultiLib":"リスト ライブラリ","DE.Views.Toolbar.txtGroupNumDoc":"文書の番号付け形式","DE.Views.Toolbar.txtGroupNumLib":"番号ライブラリ","DE.Views.Toolbar.txtGroupRecent":"最近使った項目","DE.Views.Toolbar.txtMarginAlign":"余白に合わせて​​配置","DE.Views.Toolbar.txtObjectsAlign":"選択したオブジェクトを整列する","DE.Views.Toolbar.txtPageAlign":"ページに揃え","DE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","DE.Views.ViewTab.textDarkDocument":"ダークドキュメント","DE.Views.ViewTab.textFill":"塗りつぶし","DE.Views.ViewTab.textFitToPage":"ページに合わせる","DE.Views.ViewTab.textFitToWidth":"幅に合わせる","DE.Views.ViewTab.textInterfaceTheme":"インターフェイスのテーマ","DE.Views.ViewTab.textLeftMenu":"左パネル","DE.Views.ViewTab.textLine":"線","DE.Views.ViewTab.textMacros":"マクロ","DE.Views.ViewTab.textMultiplePages":"複数ページ","DE.Views.ViewTab.textNavigation":"ナビゲーション","DE.Views.ViewTab.textOutline":"見出し","DE.Views.ViewTab.textPauseMacro":"記録を一時停止する","DE.Views.ViewTab.textRecMacro":"マクロを記録する","DE.Views.ViewTab.textResumeMacro":"記録を再開する","DE.Views.ViewTab.textRightMenu":"右パネル","DE.Views.ViewTab.textRulers":"ルーラー","DE.Views.ViewTab.textStatusBar":"ステータスバー","DE.Views.ViewTab.textStopMacro":"記録を停止する","DE.Views.ViewTab.textTabStyle":"タブのスタイル","DE.Views.ViewTab.textZoom":"ズーム","DE.Views.ViewTab.textZoom100":"100%に拡大する","DE.Views.ViewTab.tipDarkDocument":"ダークドキュメント","DE.Views.ViewTab.tipFitToPage":"ページに合わせる","DE.Views.ViewTab.tipFitToWidth":"幅に合わせる","DE.Views.ViewTab.tipHeadings":"見出し","DE.Views.ViewTab.tipInterfaceTheme":"インターフェースのテーマ","DE.Views.ViewTab.tipMacros":"マクロ","DE.Views.ViewTab.tipMultiplePages":"複数ページ","DE.Views.ViewTab.tipPauseMacro":"記録を一時停止する","DE.Views.ViewTab.tipRecMacro":"マクロを記録する","DE.Views.ViewTab.tipResumeMacro":"記録を再開する","DE.Views.ViewTab.tipStopMacro":"記録を停止する","DE.Views.ViewTab.tipZoom100":"100%に拡大する","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 +{"Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.ExternalDiagramEditor.textAnonymous":"匿名者","Common.Controllers.ExternalDiagramEditor.textClose":"閉じる","Common.Controllers.ExternalDiagramEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalDiagramEditor.warningTitle":"警告","Common.Controllers.ExternalLinks.textAddExternalData":"外部ソースへのリンクが追加されました。このようなリンクは、「データ」タブで更新することができます。","Common.Controllers.ExternalLinks.textDontUpdate":"アップデートしない","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"エラー:アップデートに失敗しました","Common.Controllers.ExternalLinks.warnUpdateExternalData":"このワークブックには、安全でない可能性のある1つまたは複数の外部ソースへのリンクが含まれています。
リンクを信頼する場合は、最新のデータを取得するためにそれらを更新してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"このドキュメントには、安全でない可能性のある外部ソースへのリンクが1つ以上含まれています。
リンクを信頼できる場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"このプレゼンテーションには、安全でない可能性のある外部ソースへのリンクが含まれています。
リンクを信頼する場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalMergeEditor.textAnonymous":"匿名者","Common.Controllers.ExternalMergeEditor.textClose":"閉じる","Common.Controllers.ExternalMergeEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalMergeEditor.warningTitle":"警告","Common.Controllers.ExternalOleEditor.textAnonymous":"匿名","Common.Controllers.ExternalOleEditor.textClose":"閉じる","Common.Controllers.ExternalOleEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalOleEditor.warningTitle":"警告","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"履歴の読み込みに失敗しました。","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"文書を比較するために、文書内のすべての変更履歴が承認されたと見なされます。続行しますか?","Common.Controllers.ReviewChanges.textAtLeast":"最小","Common.Controllers.ReviewChanges.textAuto":"自動","Common.Controllers.ReviewChanges.textBaseline":"ベースライン","Common.Controllers.ReviewChanges.textBold":"太字","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.textDeleted":"削除済み:","Common.Controllers.ReviewChanges.textDStrikeout":"二重取り消し線","Common.Controllers.ReviewChanges.textEquation":"方程式\t","Common.Controllers.ReviewChanges.textExact":"固定値","Common.Controllers.ReviewChanges.textFirstLine":"最初の行","Common.Controllers.ReviewChanges.textFontSize":"フォントのサイズ","Common.Controllers.ReviewChanges.textFormatted":"書式設定済み","Common.Controllers.ReviewChanges.textHighlight":"ハイライトの色","Common.Controllers.ReviewChanges.textImage":"画像","Common.Controllers.ReviewChanges.textIndentLeft":"左インデント","Common.Controllers.ReviewChanges.textIndentRight":"右インデント","Common.Controllers.ReviewChanges.textInserted":"挿入済み:","Common.Controllers.ReviewChanges.textItalic":"イタリック","Common.Controllers.ReviewChanges.textJustify":"両端揃え","Common.Controllers.ReviewChanges.textKeepLines":"段落を分割しない","Common.Controllers.ReviewChanges.textKeepNext":"次の段落と分離しない","Common.Controllers.ReviewChanges.textLeft":"左揃え","Common.Controllers.ReviewChanges.textLineSpacing":"行間:","Common.Controllers.ReviewChanges.textMultiple":"倍数","Common.Controllers.ReviewChanges.textNoBreakBefore":"前にページ区切りなし","Common.Controllers.ReviewChanges.textNoContextual":"同じスタイルの段落の間に間隔を追加する","Common.Controllers.ReviewChanges.textNoKeepLines":"段落を分割する","Common.Controllers.ReviewChanges.textNoKeepNext":"次の段落と分離する","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":"段落が挿入されました","Common.Controllers.ReviewChanges.textParaMoveFromDown":"下に移動済み:","Common.Controllers.ReviewChanges.textParaMoveFromUp":"上に移動済み:","Common.Controllers.ReviewChanges.textParaMoveTo":"移動済み:","Common.Controllers.ReviewChanges.textPosition":"位置","Common.Controllers.ReviewChanges.textRight":"右揃え","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":"取り消し線","Common.Controllers.ReviewChanges.textSubScript":"下付き文字","Common.Controllers.ReviewChanges.textSuperScript":"上付き文字","Common.Controllers.ReviewChanges.textTableChanged":"テーブル設定が変更されました","Common.Controllers.ReviewChanges.textTableRowsAdd":"テーブルに行が追加されました","Common.Controllers.ReviewChanges.textTableRowsDel":"テーブルの行が削除されました","Common.Controllers.ReviewChanges.textTabs":"タブの変更","Common.Controllers.ReviewChanges.textTitleComparison":"比較設定","Common.Controllers.ReviewChanges.textUnderline":"アンダーライン","Common.Controllers.ReviewChanges.textUrl":"ドキュメントのURLを貼り付け","Common.Controllers.ReviewChanges.textWidow":"ウインドウ制御","Common.Controllers.ReviewChanges.textWord":"単語レベル","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"テーブルの一番下に新しい行を追加する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"選択したテキスト部分に見出し1のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"選択したテキスト部分に見出し2のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"選択されたテキスト部分に見出し3のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"選択したテキスト断片から順不同の箇条書きリストを作成するか、新しいリストを開始する。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"キーボードの矢印キーを使って、選択したオブジェクトを大きく下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"キーボードの矢印キーを使って、選択したオブジェクトを大きく左に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"キーボードの矢印キーを使って、選択したオブジェクトを大きく右に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"キーボードの矢印キーを使って、選択したオブジェクトを大きく上に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBold":"選択したテキストのフォントを通常より濃く、太くする。","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"段落の配置を中央揃えと左揃えの間で切り替える。","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"フォームで次のコンボボックスオプションを選択する。","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"フォームの前のコンボボックスオプションを選択する。","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"現在の文書ウィンドウを閉じる。","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"メニューやモーダルウィンドウを閉じる。コメントや変更履歴のポップアップやバルーンをリセットする。表の描画や消去モードをリセットする。テキストのドラッグ&ドロップをリセットする。マーカー選択モードをリセットする。書式のコピー/貼り付けモードをリセットする。図形の選択を解除する。図形追加モードをリセットする。ヘッダー/フッターから出る。フォーム入力を終了する。","Common.Controllers.Shortcuts.txtDescriptionCopy":"選択したテキストの断片をコンピューターのクリップボードメモリに送る。コピーしたテキストは後で、同じドキュメント内の別の場所や別のドキュメント、あるいは他のプログラムに貼り付けることができる。","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"現在編集中のテキストの選択された部分から書式をコピーします。コピーした書式は、同じドキュメント内の別のテキスト部分に後から適用することができます。","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"現在の文書内で、カーソルの右側に著作権記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionCut":"選択したテキスト部分を削除し、コンピューターのクリップボードメモリに送信する。コピーされたテキストは、後で同じ文書内の別の場所、別の文書、または他のプログラムに挿入することができます。","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"選択したテキスト部分のフォントサイズを1ポイント小さくする。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"カーソルの左側にある1文字を削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"カーソルの左側にある単語/選択部分/グラフィカルオブジェクトを1つ削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"カーソルの右側の文字を1文字削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"カーソルの右側にある単語/選択範囲/グラフィカルオブジェクトを1つ削除する。","Common.Controllers.Shortcuts.txtDescriptionEditChart":"チャートタイトルが選択された時、タイトルが空欄ならカーソルを行頭へ移動させる。そうでない場合はテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"直前に取り消した操作を繰り返す。","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"ドキュメント内のすべてのテキスト、表、画像を選択する。","Common.Controllers.Shortcuts.txtDescriptionEditShape":"図形が選択された時、内容が含まれていない場合は内容を作成し、カーソルを行の先頭に移動させる。内容が空の場合はカーソルをその内容に移動させ、そうでない場合は内容全体を選択する。","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"直近の操作を元に戻す。","Common.Controllers.Shortcuts.txtDescriptionEmDash":"現在の文書内で、カーソルの右側に長横線(エンダッシュ)を挿入する。","Common.Controllers.Shortcuts.txtDescriptionEnDash":"現在の文書内で、カーソルの右側に半角ダッシュを挿入する。","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"現在の段落を終了し、新しい段落を始める。","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"セル内で新しい段落を始める。","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"方程式の引数に新しいプレースホルダーを追加する。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"演算子の整列レベルを左に変更する(強制改行のある方程式の2行目の場合)。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"強制改行のある方程式の2行目に対して、演算子の位置揃えレベルを右に変更する。","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"現在のカーソル位置にユーロ記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"現在のカーソル位置に省略記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"選択したテキスト部分のフォントサイズを1ポイント大きくする。","Common.Controllers.Shortcuts.txtDescriptionIndent":"段落を左から徐々にインデントする。","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"列の区切りを追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"脚注を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"現在のカーソル位置に数式を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"脚注を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"ウェブアドレスに移動できるリンクを挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"新しい段落を始めずに改行を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"複数行フォームに改行を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"現在のカーソル位置に改ページを挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"現在のカーソル位置に現在のページ番号を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"カーソルが段落の先頭にない場合、段落にタブ文字を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"テーブル内に改行を挿入する。","Common.Controllers.Shortcuts.txtDescriptionItalic":"選択したテキストのフォントを斜体にし、わずかに傾ける。","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"段落の揃え方を両端揃えから左揃えに変更する。","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"段落を左揃えにする。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"指定されたキーを押しながらキーボードの矢印キーを使用して、選択したオブジェクトを一度に1ピクセルずつ下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"指定されたキーを押しながらキーボードの矢印キーを使用して、選択したオブジェクトを一度に1ピクセルずつ左に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"指定されたキーを押しながらキーボードの矢印を使用して、選択されたオブジェクトを一度に1ピクセルずつ右に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"指定されたキーを押しながらキーボードの矢印を使用して、選択したオブジェクトを一度に1ピクセルずつ上に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"選択した段落のインデントを増やす。","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"選択した段落のインデントを減らす。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"現在選択されているオブジェクトの次のオブジェクトにフォーカスを移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"現在選択されているオブジェクトの直前のオブジェクトにフォーカスを移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"カーソルを1行下に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"カーソルを現在編集中の文書の末尾に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"カーソルを現在編集中の行の末尾に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"カーソルを1語右に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"カーソルを1文字左に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"カーソルがヘッダー/フッター内にある場合、下部のヘッダーに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"カーソルがヘッダー/フッター内にある場合、下部のヘッダー/フッターに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"表の行内で次のセルに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"次のフォームに進む。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"現在編集中の文書の次のページに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"表の次の行に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"テーブル行内の前のセルに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"前のフォームに進む。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"現在編集中の文書で前のページに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"テーブル内で前の行に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"カーソルを1文字右に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"カーソルを現在編集中の文書の先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"カーソルを現在編集中の行の先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"カーソルを現在編集中のページの直後のページの先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"カーソルを現在編集中のページの直前のページの先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"カーソルを単語の先頭か、左の単語に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"カーソルを1行上に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"カーソルがヘッダー/フッター内にある場合、上部のヘッダーに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"カーソルがヘッダー/フッターにある場合、ヘッダー/フッターの上部に移動する。","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"デスクトップエディターでは次のファイルタブに、オンラインエディターでは次のブラウザタブに切り替える。","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"モーダルダイアログ内で、次のコントロールにフォーカスを移すためにコントロール間を移動する。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"文字間にハイフンを作成し、新しい行の先頭に使用できないようにする。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"改行の始まりとして使用できないような文字間にスペースを作成する。","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"オンラインエディタでチャットパネルを開き、メッセージを送る。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"コメントのテキストを追加できるデータ入力フィールドを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"コメントパネルを開いて、自分のコメントを追加したり、他のユーザーのコメントに返信したりできる。","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"選択した要素のコンテキストメニューを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"既存のファイルを選択できる標準のダイアログボックスを開く。このダイアログボックスでファイルを選択し「開く」をクリックすると、そのファイルはデスクトップエディターの新しいタブまたはウィンドウで開かれる。","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"「ファイル」パネルを開いて、現在の文書を保存、ダウンロード、印刷する;ドキュメントの情報を表示する;新規ドキュメントを作成するか既存のドキュメントを開く;ドキュメントエディターのヘルプセンターや詳細設定にアクセスする。","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"検索と置換メニュー(パネル)を開き、置換フィールドを使用して、見つかった文字列を一つ以上置き換える。","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"現在編集中のドキュメント内で文字・単語・フレーズを検索するには、検索ダイアログウィンドウを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"ドキュメントエディタのヘルプメニューを開く。","Common.Controllers.Shortcuts.txtDescriptionPaste":"クリップボードメモリから以前にコピーしたテキスト断片を、現在のカーソル位置に挿入する。テキストは、同じ文書、別の文書、または他のプログラムから以前にコピーされたものである可能性があります。","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"現在編集中の文書に、以前にコピーしたフォーマットを適用する。","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"クリップボードメモリから以前にコピーしたテキスト断片を、元の書式を保持せずに現在のカーソル位置に挿入する。テキストは、同じ文書、別の文書、または他のプログラムから以前にコピーされたものである可能性があります。","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"デスクトップエディターでは前のファイルタブに、オンラインエディターでは前のブラウザタブに切り替える。","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"モーダルダイアログ内で、前のコントロールにフォーカスを移すためにコントロール間を移動する。","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"利用可能なプリンターでドキュメントを印刷するか、ファイルとして保存する。","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"現在のカーソル位置に登録商標記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"選択したUnicodeコードを記号に置き換える。","Common.Controllers.Shortcuts.txtDescriptionResetChar":"選択したテキスト断片の書式を解除する。","Common.Controllers.Shortcuts.txtDescriptionRightPara":"段落の配置を右揃えと左揃えの間で切り替える。","Common.Controllers.Shortcuts.txtDescriptionSave":"ドキュメントエディターで現在編集中のドキュメントへの変更をすべて保存する。アクティブなファイルは、現在のファイル名、保存場所、ファイル形式で保存される。","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"「名前を付けて保存」パネルを開き、現在編集中の文書をサポートされている形式のいずれかで、コンピューターのハードディスクドライブに保存する。","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"ドキュメントを約1ページ分スクロールして下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"ドキュメントを約1ページ分上にスクロールする。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"カーソル位置の左側にある文字を一つ選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"カーソル位置から単語の先頭までテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"カーソルを1行下に移動し、前のカーソル位置と現在のカーソル位置の間にあるすべての記号を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"カーソルを1行上に移動し、前のカーソル位置と現在のカーソル位置の間にあるすべての記号を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"カーソルの位置から画面の下端までのページ部分を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"カーソルの位置から画面の上部まで、ページの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"カーソル位置の右側にある文字を一つ選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"カーソル位置から単語の終わりまでテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"カーソル位置から次のページの先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"カーソル位置から前のページの先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"カーソル位置から文書の末尾までのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"カーソル位置から現在の行の終わりまでのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"カーソル位置から文書の先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"カーソル位置から現在の行の先頭までのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionShowAll":"非表示文字の表示をオンまたはオフにする。","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"現在のカーソル位置にソフトハイフン記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"コピーしたテキストの元の書式を維持する。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"元の書式なしでテキストを貼り付ける。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"コピーした表を、既存の表の選択したセルにネストされた表として貼り付ける。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"既存のテーブルの内容を、コピーしたデータで置き換える。","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"スクリーンリーダー向けにアプリケーション内で実行されたアクションの送信を有効/無効にする。","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"リストのレベル/インデントを上げる(段落の先頭にカーソルを置いた状態で)。","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"リスト/インデントレベルを下げる(段落の先頭にカーソルを置いた状態で)。","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"選択したテキストの断片を、文字を貫通する線で取り消し線付きにする。","Common.Controllers.Shortcuts.txtDescriptionSubscript":"選択したテキスト断片を小さくし、化学式のようにテキスト行の下部に配置する。","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"選択したテキストの断片を小さくし、テキスト行の上部に配置する(例えば分数のように)。","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"現在のカーソル位置に商標記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionUnderline":"選択したテキストの断片を、文字の下に線を引き下線を引く。","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"段落の左側のインデントを段階的に削除する。","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"フィールドを更新する(例:目次)。","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"リンクをクリックする(カーソルをリンクの上に置いて)。","Common.Controllers.Shortcuts.txtDescriptionZoom100":"現在のドキュメントの「ズーム」パラメータをデフォルトの100%にリセットする。","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"現在編集中のドキュメントを拡大表示する。","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"現在編集中のドキュメントを縮小表示する。","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"コピー","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"切り取り","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"インデント","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"斜体","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"貼り付け","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"保存","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"取り消し線","Common.Controllers.Shortcuts.txtLabelSubscript":"下付き文字","Common.Controllers.Shortcuts.txtLabelSuperscript":"上付き文字","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"下線","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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.textRadar":"レーダーチャート","Common.define.chartData.textRadarFilled":"塗りつぶしレーダー","Common.define.chartData.textRadarMarker":"マーカー付きレーダー","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.define.smartArt.textAccentedPicture":"アクセント付きの図","Common.define.smartArt.textAccentProcess":"アクセント・プロセス","Common.define.smartArt.textAlternatingFlow":"波型ステップ","Common.define.smartArt.textAlternatingHexagons":"左右交替積み上げ六角形","Common.define.smartArt.textAlternatingPictureBlocks":"左右交替積み上げ画像ブロック","Common.define.smartArt.textAlternatingPictureCircles":"円形付き画像ジグザグ表示","Common.define.smartArt.textArchitectureLayout":"アーキテクチャ レイアウト","Common.define.smartArt.textArrowRibbon":"リボン状の矢印","Common.define.smartArt.textAscendingPictureAccentProcess":"アクセント画像付き上昇ステップ","Common.define.smartArt.textBalance":"バランス","Common.define.smartArt.textBasicBendingProcess":"基本蛇行ステップ","Common.define.smartArt.textBasicBlockList":"カード型リスト","Common.define.smartArt.textBasicChevronProcess":"プロセス","Common.define.smartArt.textBasicCycle":"基本の循環","Common.define.smartArt.textBasicMatrix":"基本マトリックス","Common.define.smartArt.textBasicPie":"円グラフ","Common.define.smartArt.textBasicProcess":"基本ステップ","Common.define.smartArt.textBasicPyramid":"基本ピラミッド","Common.define.smartArt.textBasicRadial":"基本放射","Common.define.smartArt.textBasicTarget":"ターゲット","Common.define.smartArt.textBasicTimeline":"タイムライン","Common.define.smartArt.textBasicVenn":"基本ベン図","Common.define.smartArt.textBendingPictureAccentList":"画像付きカード型リスト","Common.define.smartArt.textBendingPictureBlocks":"自動配置の画像ブロック","Common.define.smartArt.textBendingPictureCaption":"自動配置の表題付き画像","Common.define.smartArt.textBendingPictureCaptionList":"自動配置の表題付き画像レイアウト","Common.define.smartArt.textBendingPictureSemiTranparentText":"自動配置の半透明テキスト付き画像","Common.define.smartArt.textBlockCycle":"ボックス循環","Common.define.smartArt.textBubblePictureList":"バブル状画像リスト","Common.define.smartArt.textCaptionedPictures":"表題付き画像","Common.define.smartArt.textChevronAccentProcess":"アクセントステップ","Common.define.smartArt.textChevronList":"プロセス リスト","Common.define.smartArt.textCircleAccentTimeline":"円形組み合わせタイムライン","Common.define.smartArt.textCircleArrowProcess":"円形矢印プロセス","Common.define.smartArt.textCirclePictureHierarchy":"円形画像を使用した階層","Common.define.smartArt.textCircleProcess":"円形プロセス","Common.define.smartArt.textCircleRelationship":"円の関連付け","Common.define.smartArt.textCircularBendingProcess":"円形蛇行ステップ","Common.define.smartArt.textCircularPictureCallout":"円形画像を使った吹き出し","Common.define.smartArt.textClosedChevronProcess":"開始点強調型プロセス","Common.define.smartArt.textContinuousArrowProcess":"大きな矢印のプロセス","Common.define.smartArt.textContinuousBlockProcess":"矢印と長方形のプロセス","Common.define.smartArt.textContinuousCycle":"連続性強調循環","Common.define.smartArt.textContinuousPictureList":"矢印付き画像リスト","Common.define.smartArt.textConvergingArrows":"内向き矢印","Common.define.smartArt.textConvergingRadial":"集中","Common.define.smartArt.textConvergingText":"内向きテキスト","Common.define.smartArt.textCounterbalanceArrows":"対立とバランスの矢印","Common.define.smartArt.textCycle":"循環","Common.define.smartArt.textCycleMatrix":"循環マトリックス","Common.define.smartArt.textDescendingBlockList":"ブロックの降順リスト","Common.define.smartArt.textDescendingProcess":"降順プロセス","Common.define.smartArt.textDetailedProcess":"詳述プロセス","Common.define.smartArt.textDivergingArrows":"左右逆方向矢印","Common.define.smartArt.textDivergingRadial":"矢印付き放射","Common.define.smartArt.textEquation":"数式","Common.define.smartArt.textFramedTextPicture":"フレームに表示されるテキスト画像","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"歯車","Common.define.smartArt.textGridMatrix":"グリッド マトリックス","Common.define.smartArt.textGroupedList":"グループ リスト","Common.define.smartArt.textHalfCircleOrganizationChart":"アーチ型線で飾られた組織図","Common.define.smartArt.textHexagonCluster":"蜂の巣状の六角形","Common.define.smartArt.textHexagonRadial":"六角形放射","Common.define.smartArt.textHierarchy":"階層","Common.define.smartArt.textHierarchyList":"階層リスト","Common.define.smartArt.textHorizontalBulletList":"横方向箇条書きリスト","Common.define.smartArt.textHorizontalHierarchy":"横方向階層","Common.define.smartArt.textHorizontalLabeledHierarchy":"ラベル付き横方向階層","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"複数レベル対応の横方向階層","Common.define.smartArt.textHorizontalOrganizationChart":"水平方向の組織図","Common.define.smartArt.textHorizontalPictureList":"横方向画像リスト","Common.define.smartArt.textIncreasingArrowProcess":"上昇矢印のプロセス","Common.define.smartArt.textIncreasingCircleProcess":"上昇円プロセス","Common.define.smartArt.textInterconnectedBlockProcess":"相互接続された長方形のプロセス","Common.define.smartArt.textInterconnectedRings":"互いにつながったリング","Common.define.smartArt.textInvertedPyramid":"反転ピラミッド","Common.define.smartArt.textLabeledHierarchy":"ラベル付き階層","Common.define.smartArt.textLinearVenn":"横方向ベン図","Common.define.smartArt.textLinedList":"線区切りリスト","Common.define.smartArt.textList":"リスト","Common.define.smartArt.textMatrix":"マトリックス","Common.define.smartArt.textMultidirectionalCycle":"双方向循環","Common.define.smartArt.textNameAndTitleOrganizationChart":"氏名/役職名付き組織図","Common.define.smartArt.textNestedTarget":"包含","Common.define.smartArt.textNondirectionalCycle":"矢印無し循環","Common.define.smartArt.textOpposingArrows":"上下逆方向矢印","Common.define.smartArt.textOpposingIdeas":"対立する案","Common.define.smartArt.textOrganizationChart":"組織図","Common.define.smartArt.textOther":"その他","Common.define.smartArt.textPhasedProcess":"フェーズ プロセス","Common.define.smartArt.textPicture":"画像","Common.define.smartArt.textPictureAccentBlocks":"画像アクセントのブロック","Common.define.smartArt.textPictureAccentList":"画像アクセントのリスト","Common.define.smartArt.textPictureAccentProcess":"画像アクセントのプロセス","Common.define.smartArt.textPictureCaptionList":"画像キャプションのリスト","Common.define.smartArt.textPictureFrame":"フォトフレーム","Common.define.smartArt.textPictureGrid":"画像グリッド","Common.define.smartArt.textPictureLineup":"画像ラインアップ","Common.define.smartArt.textPictureOrganizationChart":"画像付き組織図","Common.define.smartArt.textPictureStrips":"画像付きラベル","Common.define.smartArt.textPieProcess":"円グラフのプロセス","Common.define.smartArt.textPlusAndMinus":"プラスとマイナス","Common.define.smartArt.textProcess":"プロセス","Common.define.smartArt.textProcessArrows":"矢印型ステップ","Common.define.smartArt.textProcessList":"プロセスのリスト","Common.define.smartArt.textPyramid":"ピラミッド","Common.define.smartArt.textPyramidList":"ピラミッドのリスト","Common.define.smartArt.textRadialCluster":"放射ブロック","Common.define.smartArt.textRadialCycle":"中心付き循環","Common.define.smartArt.textRadialList":"放射リスト","Common.define.smartArt.textRadialPictureList":"放射画像リスト","Common.define.smartArt.textRadialVenn":"放射型ベン図","Common.define.smartArt.textRandomToResultProcess":"複数案をまとめるステップ","Common.define.smartArt.textRelationship":"関係","Common.define.smartArt.textRepeatingBendingProcess":"改行型蛇行ステップ","Common.define.smartArt.textReverseList":"逆順リスト","Common.define.smartArt.textSegmentedCycle":"円型循環","Common.define.smartArt.textSegmentedProcess":"分割ステップ","Common.define.smartArt.textSegmentedPyramid":"分割ピラミッド","Common.define.smartArt.textSnapshotPictureList":"スナップショット画像リスト","Common.define.smartArt.textSpiralPicture":"渦巻き画像","Common.define.smartArt.textSquareAccentList":"箇条書き記号アクセントのリスト","Common.define.smartArt.textStackedList":"積み上げリスト","Common.define.smartArt.textStackedVenn":"包含型ベン図","Common.define.smartArt.textStaggeredProcess":"段違いステップ","Common.define.smartArt.textStepDownProcess":"ステップ ダウンのプロセス","Common.define.smartArt.textStepUpProcess":"ステップアップのプロセス","Common.define.smartArt.textSubStepProcess":"サブステップのプロセス","Common.define.smartArt.textTabbedArc":"円弧状タブ","Common.define.smartArt.textTableHierarchy":"積み木型の階層","Common.define.smartArt.textTableList":"表型リスト","Common.define.smartArt.textTabList":"タブ付きリスト","Common.define.smartArt.textTargetList":"ターゲットのリスト","Common.define.smartArt.textTextCycle":"テキスト循環","Common.define.smartArt.textThemePictureAccent":"テーマ画像アクセント","Common.define.smartArt.textThemePictureAlternatingAccent":"テーマ画像交互のアクセント","Common.define.smartArt.textThemePictureGrid":"テーマ画像グリッド","Common.define.smartArt.textTitledMatrix":"タイトル付きマトリックス","Common.define.smartArt.textTitledPictureAccentList":"画像付き横方向リスト","Common.define.smartArt.textTitledPictureBlocks":"タイトル付き画像ブロック","Common.define.smartArt.textTitlePictureLineup":"タイトル付き画像ラインアップ","Common.define.smartArt.textTrapezoidList":"台形リスト","Common.define.smartArt.textUpwardArrow":"上向き矢印","Common.define.smartArt.textVaryingWidthList":"可変幅リスト","Common.define.smartArt.textVerticalAccentList":"縦方向アクセントのリスト","Common.define.smartArt.textVerticalArrowList":"縦方向矢印リスト","Common.define.smartArt.textVerticalBendingProcess":"縦型蛇行ステップ","Common.define.smartArt.textVerticalBlockList":"縦方向ボックス リスト","Common.define.smartArt.textVerticalBoxList":"縦方向リスト","Common.define.smartArt.textVerticalBracketList":"縦方向ブラケット リスト","Common.define.smartArt.textVerticalBulletList":"縦方向箇条書きリスト","Common.define.smartArt.textVerticalChevronList":"縦方向プロセス","Common.define.smartArt.textVerticalCircleList":"縦方向円リスト","Common.define.smartArt.textVerticalCurvedList":"縦方向カーブのリスト","Common.define.smartArt.textVerticalEquation":"縦型の数式","Common.define.smartArt.textVerticalPictureAccentList":"縦方向円形画像リスト","Common.define.smartArt.textVerticalPictureList":"縦方向画像リスト","Common.define.smartArt.textVerticalProcess":"縦方向ステップ","Common.Translation.textMoreButton":"もっと","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"このファイルは他のアプリで編集されているので、編集できません。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"閲覧するために開く","Common.UI.ButtonColored.textAutoColor":"自動​","Common.UI.ButtonColored.textEyedropper":"スポイト","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":"金","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":"木","Common.UI.Calendar.textShortTuesday":"火","Common.UI.Calendar.textShortWednesday":"水","Common.UI.Calendar.textYears":"年","Common.UI.ComboBorderSize.txtNoBorders":"枠線なし","Common.UI.ComboBorderSizeEditable.txtNoBorders":"枠線なし","Common.UI.ComboDataView.emptyComboText":"スタイルなし","Common.UI.ExtendedColorDialog.addButtonText":"追加","Common.UI.ExtendedColorDialog.textCurrent":"現在","Common.UI.ExtendedColorDialog.textHexErr":"入力された値が正しくありません。
000000〜FFFFFFの数値を入力してください。","Common.UI.ExtendedColorDialog.textNew":"新しい","Common.UI.ExtendedColorDialog.textRGBErr":"入力された値が正しくありません。
0〜255の数値を入力してください。","Common.UI.HSBColorPicker.textNoColor":"色なし","Common.UI.InputField.txtEmpty":"このフィールドは必須です","Common.UI.InputFieldBtnCalendar.textDate":"日付の選択","Common.UI.InputFieldBtnPassword.textHintHidePwd":"パスワードを表示しない","Common.UI.InputFieldBtnPassword.textHintHold":"長押しでパスワード表示","Common.UI.InputFieldBtnPassword.textHintShowPwd":"パスワードを表示する","Common.UI.SearchBar.textFind":"検索する","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果のハイライト","Common.UI.SearchDialog.textMatchCase":"大文字と小文字の区別","Common.UI.SearchDialog.textReplaceDef":"代替テキストを挿入する","Common.UI.SearchDialog.textSearchStart":"テキストをここに挿入してください。","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索","Common.UI.SearchDialog.textWholeWords":"単語全体のみ","Common.UI.SearchDialog.txtBtnHideReplace":"置換を表示しない","Common.UI.SearchDialog.txtBtnReplace":"置換する","Common.UI.SearchDialog.txtBtnReplaceAll":"全てを置き換える","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"このドキュメントは他のユーザーによって変更されました。クリックして変更を保存し、更新を再読み込みしてください。","Common.UI.ThemeColorPalette.textRecentColors":"最近使用した色","Common.UI.ThemeColorPalette.textStandartColors":"標準の色","Common.UI.ThemeColorPalette.textThemeColors":"テーマの色","Common.UI.ThemeColorPalette.textTransparent":"透明","Common.UI.Themes.txtThemeClassicLight":"明るい(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"暗い","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"明るい","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Themes.txtThemeWhite":"白色","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":"警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"アクセント","Common.Utils.ThemeColor.txtAqua":"水色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黒色","Common.Utils.ThemeColor.txtBlue":"青色","Common.Utils.ThemeColor.txtBrightGreen":"明るい緑","Common.Utils.ThemeColor.txtBrown":"茶色","Common.Utils.ThemeColor.txtDarkBlue":"濃い青色","Common.Utils.ThemeColor.txtDarker":"より濃い","Common.Utils.ThemeColor.txtDarkGray":"濃い灰色","Common.Utils.ThemeColor.txtDarkGreen":"濃い緑色","Common.Utils.ThemeColor.txtDarkPurple":"濃い紫色","Common.Utils.ThemeColor.txtDarkRed":"濃い赤色","Common.Utils.ThemeColor.txtDarkTeal":"濃い青緑色","Common.Utils.ThemeColor.txtDarkYellow":"濃い黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"緑色","Common.Utils.ThemeColor.txtIndigo":"インディゴ","Common.Utils.ThemeColor.txtLavender":"ラベンダー","Common.Utils.ThemeColor.txtLightBlue":"明るい青色","Common.Utils.ThemeColor.txtLighter":"より明るい","Common.Utils.ThemeColor.txtLightGray":"明るい灰色","Common.Utils.ThemeColor.txtLightGreen":"明るい緑色","Common.Utils.ThemeColor.txtLightOrange":"明るいオレンジ色","Common.Utils.ThemeColor.txtLightYellow":"明るい黄色","Common.Utils.ThemeColor.txtOrange":"オレンジ色","Common.Utils.ThemeColor.txtPink":"ピンク色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"赤色","Common.Utils.ThemeColor.txtRose":"ローズ色","Common.Utils.ThemeColor.txtSkyBlue":"スカイブルー色","Common.Utils.ThemeColor.txtTeal":"青緑色","Common.Utils.ThemeColor.txttext":"テキスト","Common.Utils.ThemeColor.txtTurquosie":"ターコイズ色","Common.Utils.ThemeColor.txtViolet":"バイオレット色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"アドレス:","Common.Views.About.txtLicensee":"ライセンシー","Common.Views.About.txtLicensor":"ライセンサー\t","Common.Views.About.txtMail":"Email:","Common.Views.About.txtPoweredBy":"によって提供されています","Common.Views.About.txtTel":"電話番号:","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.textDoubleSpaces":"スペース2回でピリオドを入力する","Common.Views.AutoCorrectDialog.textFLCells":"テーブルセルの最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textFLDont":"次の項目の後は大文字にしない:","Common.Views.AutoCorrectDialog.textFLSentence":"文章の最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textForLangFL":"言語の例外:","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":"入力時に置き換える\n\t","Common.Views.AutoCorrectDialog.textReplaceType":"入力時にテキストを置き換える","Common.Views.AutoCorrectDialog.textReset":"リセット","Common.Views.AutoCorrectDialog.textResetAll":"デフォルト設定にリセットする","Common.Views.AutoCorrectDialog.textRestore":"復元する","Common.Views.AutoCorrectDialog.textTitle":"オートコレクト","Common.Views.AutoCorrectDialog.textWarnAddFL":"例外は、大文字または小文字の文字のみを含む必要があります。","Common.Views.AutoCorrectDialog.textWarnAddRec":"認識される関数には、大文字または小文字のAからZまでの文字のみを含める必要があります。","Common.Views.AutoCorrectDialog.textWarnResetFL":"追加した例外は削除され、削除した例外は元に戻ります。続行しますか?","Common.Views.AutoCorrectDialog.textWarnResetRec":"追加した式はすべて削除され、削除された式が復元されます。 このまま続けますか?","Common.Views.AutoCorrectDialog.warnReplace":"%1のオートコレクトのエントリはすでに存在します。 取り替えますか?","Common.Views.AutoCorrectDialog.warnReset":"追加したオートコレクトはすべて削除され、変更されたものは元の値に復元されます。 このまま続けますか?","Common.Views.AutoCorrectDialog.warnRestore":"%1のオートコレクトエントリは元の値にリセットされます。 続けますか?","Common.Views.Chat.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"ここにメッセージを挿入する","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.mniFilterComments":"コメントの表示","Common.Views.Comments.mniFilterGroups":"グループでフィルター","Common.Views.Comments.mniPositionAsc":"上から","Common.Views.Comments.mniPositionDesc":"下から","Common.Views.Comments.textAdd":"追加","Common.Views.Comments.textAddComment":"コメントの追加","Common.Views.Comments.textAddCommentToDoc":"ドキュメントにコメントを追加","Common.Views.Comments.textAddReply":"返信を追加","Common.Views.Comments.textAll":"すべて","Common.Views.Comments.textAnonym":"ゲスト","Common.Views.Comments.textCancel":"キャンセル","Common.Views.Comments.textClose":"閉じる","Common.Views.Comments.textClosePanel":"コメントを閉じる","Common.Views.Comments.textComment":"コメント","Common.Views.Comments.textComments":"コメント","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"ここにコメントを挿入してください。","Common.Views.Comments.textHintAddComment":"コメントを追加","Common.Views.Comments.textOpen":"開く","Common.Views.Comments.textOpenAgain":"もう一度開く","Common.Views.Comments.textReply":"返信する","Common.Views.Comments.textResolve":"解決する","Common.Views.Comments.textResolved":"解決済み","Common.Views.Comments.textSort":"コメントを並べ替える","Common.Views.Comments.textSortFilter":"コメントの並べ替えとフィルター","Common.Views.Comments.textSortFilterMore":"並び替え、フィルター、その他","Common.Views.Comments.textSortMore":"並び替えなど","Common.Views.Comments.textViewResolved":"コメントを再開する権限がありません","Common.Views.Comments.txtEmpty":"ドキュメントにはコメントがありません。","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"エディターツールバーのボタンやコンテキストメニューの操作によるコピー、カット、ペーストの動作は、このエディタータブ内でのみ実行されます。

エディタータブ以外のアプリケーションとの間でコピーまたは貼り付けを行うには、次のキーボードの組み合わせを使用して下さい:","Common.Views.CopyWarningDialog.textTitle":"コピー,切り取り,貼り付け","Common.Views.CopyWarningDialog.textToCopy":"コピーのため","Common.Views.CopyWarningDialog.textToCut":"切り取りのため","Common.Views.CopyWarningDialog.textToPaste":"貼り付のため","Common.Views.CustomizeQuickAccessDialog.textDownload":"ダウンロード","Common.Views.CustomizeQuickAccessDialog.textMsg":"クイックアクセスツールバーに表示されるコマンドをチェックしてください","Common.Views.CustomizeQuickAccessDialog.textPrint":"印刷","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"クイックプリント","Common.Views.CustomizeQuickAccessDialog.textRedo":"やり直し","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"クイックアクセスのカスタマイズ","Common.Views.CustomizeQuickAccessDialog.textUndo":"元に戻す","Common.Views.DocumentAccessDialog.textLoading":"読み込み中...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.DocumentPropertyDialog.errorDate":"カレンダーから値を選択して日付として保存できます。
値を手動で入力した場合は、テキストとして保存されます。","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"いいえ","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"はい","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"プロパティはタイトルが必要です","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"タイトル","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"「はい」または「いいえ」","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"日付","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"タイプ","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"数","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"有効な数値を入力してください","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"テキスト","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"プロパティには値が必要です","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"値","Common.Views.DocumentPropertyDialog.txtTitle":"新しいドキュメントのプロパティ","Common.Views.Draw.hintEraser":"消しゴム","Common.Views.Draw.hintSelect":"選択","Common.Views.Draw.txtEraser":"消しゴム","Common.Views.Draw.txtHighlighter":"蛍光ペン","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"ペン","Common.Views.Draw.txtSelect":"選択","Common.Views.Draw.txtSize":"サイズ","Common.Views.ExternalDiagramEditor.textTitle":"チャートのエディタ","Common.Views.ExternalEditor.textClose":"閉じる","Common.Views.ExternalEditor.textSave":"保存&終了","Common.Views.ExternalLinksDlg.closeButtonText":"閉じる","Common.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","Common.Views.ExternalLinksDlg.textChange":"変更元","Common.Views.ExternalLinksDlg.textDelete":"リンクの解除","Common.Views.ExternalLinksDlg.textDeleteAll":"すべてのリンクを解除","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"オープンソース","Common.Views.ExternalLinksDlg.textSource":"ソース","Common.Views.ExternalLinksDlg.textStatus":"ステータス","Common.Views.ExternalLinksDlg.textUnknown":"不明","Common.Views.ExternalLinksDlg.textUpdate":"値の更新","Common.Views.ExternalLinksDlg.textUpdateAll":"すべて更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部リンク","Common.Views.ExternalMergeEditor.textTitle":"差し込み印刷の宛先","Common.Views.ExternalOleEditor.textTitle":"スプレッドシートエディター","Common.Views.FormatSettingsDialog.textCategory":"カテゴリー","Common.Views.FormatSettingsDialog.textDecimal":"小数点","Common.Views.FormatSettingsDialog.textFormat":"フォーマット","Common.Views.FormatSettingsDialog.textLinked":"ソースにリンクした","Common.Views.FormatSettingsDialog.textLocale":"ロケール設定","Common.Views.FormatSettingsDialog.textSeparator":"1000 の区切り文字を使用する","Common.Views.FormatSettingsDialog.textSymbols":"記号","Common.Views.FormatSettingsDialog.textTitle":"数値の書式","Common.Views.FormatSettingsDialog.txtAccounting":"会計","Common.Views.FormatSettingsDialog.txtAs10":"10分の5(5/10)として","Common.Views.FormatSettingsDialog.txtAs100":"100分の50(50/100)として","Common.Views.FormatSettingsDialog.txtAs16":"16分の8(8/16)として","Common.Views.FormatSettingsDialog.txtAs2":"2分の1(1/2)として","Common.Views.FormatSettingsDialog.txtAs4":"8分の2(2/4)として","Common.Views.FormatSettingsDialog.txtAs8":"8分の4(4/8)として","Common.Views.FormatSettingsDialog.txtCurrency":"通貨","Common.Views.FormatSettingsDialog.txtCustom":"カスタム","Common.Views.FormatSettingsDialog.txtCustomWarning":"カスタム番号の形式を慎重に入力してください。 Spreadsheet Editorは、xlsxファイルに影響を与える可能性のあるエラーについてカスタム形式をチェックしません。","Common.Views.FormatSettingsDialog.txtDate":"日付","Common.Views.FormatSettingsDialog.txtFraction":"分数","Common.Views.FormatSettingsDialog.txtGeneral":"標準","Common.Views.FormatSettingsDialog.txtNone":"なし","Common.Views.FormatSettingsDialog.txtNumber":"数字","Common.Views.FormatSettingsDialog.txtPercentage":"パーセンテージ","Common.Views.FormatSettingsDialog.txtSample":"例:","Common.Views.FormatSettingsDialog.txtScientific":"学術的","Common.Views.FormatSettingsDialog.txtText":"テキスト","Common.Views.FormatSettingsDialog.txtTime":"時間","Common.Views.FormatSettingsDialog.txtUpto1":"最大1桁(1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"最大2桁(12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"最大3桁(131/135)","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りとしてマークする","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textBack":"ファイルの場所を開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textDocEditDesc":"あらゆる変更をする","Common.Views.Header.textDocViewDesc":"ファイルを閲覧するが、変更は行わない","Common.Views.Header.textDocViewFormDesc":"フォームに入力するとどのように表示されるかを確認する","Common.Views.Header.textDownload":"ダウンロード","Common.Views.Header.textEdit":"編集","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideStatusBar":"ステータスバーを表示しない","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textReview":"レビュー","Common.Views.Header.textReviewDesc":"変更点を提案する","Common.Views.Header.textShare":"共有","Common.Views.Header.textStartFill":"共有&収集","Common.Views.Header.textView":"閲覧","Common.Views.Header.textViewForm":"プレビュー","Common.Views.Header.textZoom":"ズーム","Common.Views.Header.tipAccessRights":"文書のアクセス許可のの管理","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDocEdit":"編集","Common.Views.Header.tipDocView":"閲覧","Common.Views.Header.tipDocViewForm":"フォームのプレビュー","Common.Views.Header.tipDownload":"ファイルをダウンロード","Common.Views.Header.tipFillStatus":"記入状況","Common.Views.Header.tipGoEdit":"現在のファイルを編集する","Common.Views.Header.tipPrint":"ファイルを印刷する","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直し","Common.Views.Header.tipReview":"レビュー","Common.Views.Header.tipSave":"保存する","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUsers":"ユーザーを表示する","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.textHighlightDeleted":"削除されたところをハイライトする","Common.Views.History.textMore":"もっと見る","Common.Views.History.textRestore":"復元する","Common.Views.History.textShow":"拡張する","Common.Views.History.textShowAll":"変更の詳細を表示する","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"バージョン履歴","Common.Views.ImageFromUrlDialog.textUrl":"画像URLの貼り付け","Common.Views.ImageFromUrlDialog.txtEmpty":"この項目は必須です","Common.Views.ImageFromUrlDialog.txtNotUrl":"リンクの入力内容は「http://www.example.com」形式のURLである必要があります。","Common.Views.InsertTableDialog.textInvalidRowsCols":"有効な行と列の数を指定する必要があります。","Common.Views.InsertTableDialog.txtColumns":"列数","Common.Views.InsertTableDialog.txtMaxText":"このフィールドの最大値は{0}です。","Common.Views.InsertTableDialog.txtMinText":"このフィールドの最小値は{0}です。","Common.Views.InsertTableDialog.txtRows":"行数","Common.Views.InsertTableDialog.txtTitle":"テーブルのサイズ","Common.Views.InsertTableDialog.txtTitleSplit":"セルを分割","Common.Views.LanguageDialog.labelSelect":"ドキュメントの言語の選択","Common.Views.MacrosAiDialog.textAreaPlaceholder":"クエリのプロンプトを入力してください","Common.Views.MacrosAiDialog.textCreate":"作成","Common.Views.MacrosDialog.textAutostart":"自動起動","Common.Views.MacrosDialog.textConvertFromVBA":"VBAから変換する","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"マクロをVBAから変換する","Common.Views.MacrosDialog.textCopy":"コピー","Common.Views.MacrosDialog.textCreateFromDesc":"説明から作成する","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"マクロを説明から作成する","Common.Views.MacrosDialog.textCustomFunction":"カスタム関数","Common.Views.MacrosDialog.textCustomFunctions":"カスタム関数","Common.Views.MacrosDialog.textDebug":"デバッグ","Common.Views.MacrosDialog.textDelete":"削除","Common.Views.MacrosDialog.textFunctions":"関数","Common.Views.MacrosDialog.textLoading":"読み込み中...","Common.Views.MacrosDialog.textMacro":"マクロ","Common.Views.MacrosDialog.textMacros":"マクロ","Common.Views.MacrosDialog.textMakeAutostart":"自動起動に設定する","Common.Views.MacrosDialog.textRename":"名前を変更","Common.Views.MacrosDialog.textRun":"実行","Common.Views.MacrosDialog.textSave":"保存","Common.Views.MacrosDialog.textTitle":"マクロ","Common.Views.MacrosDialog.textUnMakeAutostart":"自動起動を解除","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"カスタム関数を追加","Common.Views.MacrosDialog.tipFunctionCopy":"カスタム関数のコピー","Common.Views.MacrosDialog.tipFunctionDelete":"カスタム関数の削除","Common.Views.MacrosDialog.tipFunctionRename":"カスタム関数名の変更","Common.Views.MacrosDialog.tipMacrosAdd":"マクロを追加","Common.Views.MacrosDialog.tipMacrosCopy":"マクロのコピー","Common.Views.MacrosDialog.tipMacrosDebug":"マクロのデバッグ","Common.Views.MacrosDialog.tipMacrosRename":"マクロ名の変更","Common.Views.MacrosDialog.tipMacrosRun":"マクロの実行","Common.Views.MacrosDialog.tipRedo":"やり直す","Common.Views.MacrosDialog.tipUndo":"元に戻す","Common.Views.OpenDialog.closeButtonText":"ファイルを閉じる","Common.Views.OpenDialog.txtEncoding":"文字コード","Common.Views.OpenDialog.txtIncorrectPwd":"パスワードが正しくありません。","Common.Views.OpenDialog.txtOpenFile":"ファイルを開くためにパスワードを入力してください。","Common.Views.OpenDialog.txtPassword":"パスワード","Common.Views.OpenDialog.txtPreview":"プレビュー","Common.Views.OpenDialog.txtProtected":"一度パスワードを入力してファイルを開くと、そのファイルの既存のパスワードがリセットされます。","Common.Views.OpenDialog.txtTitle":"%1オプションの選択","Common.Views.OpenDialog.txtTitleProtected":"保護されたファイル","Common.Views.PasswordDialog.txtDescription":"この文書を保護するためのパスワードを設定してください。","Common.Views.PasswordDialog.txtIncorrectPwd":"先に入力したパスワードと一致しません。","Common.Views.PasswordDialog.txtPassword":"パスワード","Common.Views.PasswordDialog.txtRepeat":"パスワードを再入力","Common.Views.PasswordDialog.txtTitle":"パスワードの設定","Common.Views.PasswordDialog.txtWarning":"警告: パスワードを忘れると元に戻せません。安全な場所に記録してください。","Common.Views.PdfSignDialog.textBefore":"Before signing this document, verify that the content you are signing is correct","Common.Views.PdfSignDialog.textClear":"Clear","Common.Views.PdfSignDialog.textFromFile":"From File","Common.Views.PdfSignDialog.textFromStorage":"From Storage","Common.Views.PdfSignDialog.textFromUrl":"From URL","Common.Views.PdfSignDialog.textLooksAs":"Signature looks as","Common.Views.PdfSignDialog.textSelect":"Select Image","Common.Views.PdfSignDialog.tipRedo":"Redo","Common.Views.PdfSignDialog.tipUndo":"Undo","Common.Views.PdfSignDialog.txtDraw":"Draw","Common.Views.PdfSignDialog.txtRemBack":"Remove white background","Common.Views.PdfSignDialog.txtTitle":"Signature","Common.Views.PdfSignDialog.txtType":"Type","Common.Views.PdfSignDialog.txtUpload":"Upload","Common.Views.PdfSignDialog.txtUploadDesc":"You can upload images in JPEG, JPG, GIF and PNG formats with a max size of 30 Mb","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除する","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"開始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.Plugins.tipMore":"もっと","Common.Views.Protection.hintAddPwd":"パスワードを使用して暗号化する","Common.Views.Protection.hintDelPwd":"パスワードを削除する","Common.Views.Protection.hintPwd":"パスワードを変更か削除する","Common.Views.Protection.hintSignature":"デジタル署名かデジタル署名行を追加","Common.Views.Protection.txtAddPwd":"パスワードを追加","Common.Views.Protection.txtChangePwd":"パスワードを変更する","Common.Views.Protection.txtDeletePwd":"パスワードを削除する","Common.Views.Protection.txtEncrypt":"暗号化する","Common.Views.Protection.txtInvisibleSignature":"デジタル署名を追加","Common.Views.Protection.txtSignature":"署名","Common.Views.Protection.txtSignatureLine":"署名欄の追加","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","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.mniMMFromFile":"ファイルから","Common.Views.ReviewChanges.mniMMFromStorage":"ストレージから","Common.Views.ReviewChanges.mniMMFromUrl":"URLから","Common.Views.ReviewChanges.mniSettings":"比較設定","Common.Views.ReviewChanges.strFast":"高速","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.tipCombine":"現在のドキュメントを別のドキュメントと結合する","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.tipMailRecepients":"差し込み印刷","Common.Views.ReviewChanges.tipRejectCurrent":"現在の変更を拒否する","Common.Views.ReviewChanges.tipReview":"変更履歴","Common.Views.ReviewChanges.tipReviewView":"変更内容を表示するモードを選択してください","Common.Views.ReviewChanges.tipSetDocLang":"文書の言語を設定","Common.Views.ReviewChanges.tipSetSpelling":"スペルチェック","Common.Views.ReviewChanges.tipSharing":"文書のアクセス許可のの管理","Common.Views.ReviewChanges.txtAccept":"承諾","Common.Views.ReviewChanges.txtAcceptAll":"すべての変更を承諾する","Common.Views.ReviewChanges.txtAcceptChanges":"変更を承諾する","Common.Views.ReviewChanges.txtAcceptCurrent":"現在の変更を承諾する","Common.Views.ReviewChanges.txtChat":"チャット","Common.Views.ReviewChanges.txtClose":"閉じる","Common.Views.ReviewChanges.txtCoAuthMode":"共同編集のモード","Common.Views.ReviewChanges.txtCombine":"結合","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.txtMailMerge":"差し込み印刷","Common.Views.ReviewChanges.txtMarkup":"全ての変更点{0}","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":"前回の","Common.Views.ReviewChanges.txtPreview":"プレビュー","Common.Views.ReviewChanges.txtReject":"拒否する","Common.Views.ReviewChanges.txtRejectAll":"すべての変更を拒否する","Common.Views.ReviewChanges.txtRejectChanges":"変更を拒否","Common.Views.ReviewChanges.txtRejectCurrent":"現在の変更を拒否する","Common.Views.ReviewChanges.txtSharing":"共有","Common.Views.ReviewChanges.txtSpelling":"スペルチェック","Common.Views.ReviewChanges.txtTurnon":"変更履歴","Common.Views.ReviewChanges.txtView":"表示モード","Common.Views.ReviewChangesDialog.textTitle":"変更の確認","Common.Views.ReviewChangesDialog.txtAccept":"承諾","Common.Views.ReviewChangesDialog.txtAcceptAll":"すべての変更を承諾する","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"現在の変更を承諾する","Common.Views.ReviewChangesDialog.txtNext":"次の変更箇所へ","Common.Views.ReviewChangesDialog.txtPrev":"以前の変更箇所へ","Common.Views.ReviewChangesDialog.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.textComment":"コメント","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"ここにコメントを入力してください。","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.ReviewPopover.textViewResolved":"コメントを再開する権限がありません","Common.Views.ReviewPopover.txtAccept":"同意する","Common.Views.ReviewPopover.txtDeleteTip":"削除する","Common.Views.ReviewPopover.txtEditTip":"編集","Common.Views.ReviewPopover.txtReject":"拒否する","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字の区別","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索する","Common.Views.SearchPanel.textFindAndReplace":"検索して置換する","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textNoMatches":"一致する結果がありません","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"置換する","Common.Views.SearchPanel.textReplaceAll":"全てを置換する","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.ShapeShadowDialog.txtAngle":"角度","Common.Views.ShapeShadowDialog.txtDistance":"距離","Common.Views.ShapeShadowDialog.txtSize":"サイズ","Common.Views.ShapeShadowDialog.txtTitle":"影の調整","Common.Views.ShapeShadowDialog.txtTransparency":"透過性","Common.Views.ShortcutsDialog.txtDescription":"説明","Common.Views.ShortcutsDialog.txtEmpty":"該当する項目が見つかりませんでした。検索条件を調整してください。","Common.Views.ShortcutsDialog.txtRestoreAll":"すべてをデフォルトに戻す","Common.Views.ShortcutsDialog.txtRestoreContinue":"続行してよろしいですか。","Common.Views.ShortcutsDialog.txtRestoreDescription":"すべてのショートカット設定がデフォルトに戻されます。","Common.Views.ShortcutsDialog.txtRestoreToDefault":"デフォルトに戻す","Common.Views.ShortcutsDialog.txtSearch":"検索","Common.Views.ShortcutsDialog.txtTitle":"キーボードショートカット","Common.Views.ShortcutsEditDialog.txtAction":"アクション","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"このショートカットは編集できません","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"必要なショートカットを入力する","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"「%1」アクションが使用するショートカット","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"「%1」アクションが使用するショートカットは変更できません","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"「%1」アクションが使用するショートカット","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"「%1」アクションが使用するショートカットであり、変更することはできません。","Common.Views.ShortcutsEditDialog.txtNewShortcut":"新規ショートカット","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"続行してよろしいですか。","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"「%1」アクションのすべてのショートカットはデフォルトに復元されます。","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"デフォルトに戻す","Common.Views.ShortcutsEditDialog.txtTitle":"ショートカットを編集","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"必要なショートカットを入力する","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":"画像を選択する","Common.Views.SignDialog.textSignature":"署名は次のようになります:","Common.Views.SignDialog.textTitle":"文書に署名する","Common.Views.SignDialog.textUseImage":"または「画像を選択」をクリックして、画像を署名として使用します","Common.Views.SignDialog.textValid":"%1から%2まで有効","Common.Views.SignDialog.tipFontName":"フォント名","Common.Views.SignDialog.tipFontSize":"フォントのサイズ","Common.Views.SignSettingsDialog.textAllowComment":"署名ダイアログで署名者がコメントを追加できるようにする","Common.Views.SignSettingsDialog.textDefInstruction":"このドキュメントに署名する前に、署名するコンテンツが正しいことを確認してください。","Common.Views.SignSettingsDialog.textInfoEmail":"署名候補者のメールアドレス","Common.Views.SignSettingsDialog.textInfoName":"署名候補者","Common.Views.SignSettingsDialog.textInfoTitle":"署名候補者の役職","Common.Views.SignSettingsDialog.textInstructions":"署名者への説明","Common.Views.SignSettingsDialog.textShowDate":"署名欄に署名日を表示する","Common.Views.SignSettingsDialog.textTitle":"署名の設定","Common.Views.SignSettingsDialog.txtEmpty":"この項目は必須です","Common.Views.SymbolTableDialog.textCharacter":"文字","Common.Views.SymbolTableDialog.textCode":"UnicodeHEX値","Common.Views.SymbolTableDialog.textCopyright":"著作権マーク","Common.Views.SymbolTableDialog.textDCQuote":"二重引用符(右)を終了する","Common.Views.SymbolTableDialog.textDOQuote":"二重の引用符(左)","Common.Views.SymbolTableDialog.textEllipsis":"水平の省略記号","Common.Views.SymbolTableDialog.textEmDash":"全角ダッシュ","Common.Views.SymbolTableDialog.textEmSpace":"全角スペース","Common.Views.SymbolTableDialog.textEnDash":"半角ダッシュ","Common.Views.SymbolTableDialog.textEnSpace":"半角スペース","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":"ラベルは空白にできません","DE.Controllers.DocProtection.txtIsProtectedComment":"文書は保護されています。この文書には、コメントのみを挿入することができます。","DE.Controllers.DocProtection.txtIsProtectedForms":"文書は保護されています。この文書では、フォームにのみ記入することができます。","DE.Controllers.DocProtection.txtIsProtectedTrack":"文書は保護されています。あなたはこの文書を編集することができますが、すべての変更は追跡されます。","DE.Controllers.DocProtection.txtIsProtectedView":"文書は保護されています。この文書は閲覧のみ可能です。","DE.Controllers.DocProtection.txtWasProtectedComment":"この文書は他のユーザーによって保護されています。\nこの文書には、コメントのみ挿入できます。","DE.Controllers.DocProtection.txtWasProtectedForms":"この文書は、他のユーザーによって保護されています。\nこの文書では、フォームへの入力のみが可能です。","DE.Controllers.DocProtection.txtWasProtectedTrack":"この文書は他のユーザーによって保護されています。\nこの文書を編集することはできますが、すべての変更は追跡されます。","DE.Controllers.DocProtection.txtWasProtectedView":"この文書は他のユーザーによって保護されています。\nこの文書は閲覧のみ可能です。","DE.Controllers.DocProtection.txtWasUnprotected":"ドキュメントは保護されていません。","DE.Controllers.HeaderFooterTab.textFieldExample":"コード書き方の例:TIME \\@ \"dddd, MMMM d, yyyy\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"フィールドのコード","DE.Controllers.HeaderFooterTab.textFieldTitle":"フィールド","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"ページ番号","DE.Controllers.LeftMenu.leavePageText":"この文書で保存されていない変更はすべて失われます。
「キャンセル」をクリックし、「保存」をクリックすると、変更が保存されます。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","DE.Controllers.LeftMenu.newDocumentTitle":"無名のドキュメント","DE.Controllers.LeftMenu.notcriticalErrorTitle":"警告","DE.Controllers.LeftMenu.requestEditRightsText":"編集の権限を要求中...","DE.Controllers.LeftMenu.textLoadHistory":"バリエーションの履歴の読み込み中...","DE.Controllers.LeftMenu.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","DE.Controllers.LeftMenu.textReplaceSkipped":"置換が行われました。スキップされた発生回数は{0}です。","DE.Controllers.LeftMenu.textReplaceSuccess":"検索が完了しました。{0}つが置換されました。","DE.Controllers.LeftMenu.textSelectPath":"ファイルのコピーを保存するために新しいタイトルを入力してください","DE.Controllers.LeftMenu.txtCompatible":"ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。","DE.Controllers.LeftMenu.txtUntitled":"無題","DE.Controllers.LeftMenu.warnDownloadAs":"この形式で保存を続けると、テキスト以外のすべての機能が失われます。
本当に続行してもよろしいですか?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"あなたの{0}は編集可能な形式に変換されます。これには時間がかかる場合があります。変換後のドキュメントは、テキストを編集できるように最適化されるため、特に元のファイルに多くのグラフィックが含まれている場合、元の {0} と全く同じようには見えないかもしれません。","DE.Controllers.LeftMenu.warnDownloadAsRTF":"この形式で保存を続けると、一部の書式が失われる可能性があります。
本当に続行しますか?","DE.Controllers.LeftMenu.warnReplaceString":"{0} は、置換フィールドに有効な特殊文字ではありません。","DE.Controllers.Main.applyChangesTextText":"変更の読み込み中...","DE.Controllers.Main.applyChangesTitleText":"変更の読み込み中","DE.Controllers.Main.confirmMaxChangesSize":"アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。","DE.Controllers.Main.convertationTimeoutText":"変換タイムアウトを超過しました。","DE.Controllers.Main.criticalErrorExtText":"OKボタンを押すとドキュメントリストに戻ることができます。","DE.Controllers.Main.criticalErrorExtTextClose":"[OK]を押してエディターを閉じます。","DE.Controllers.Main.criticalErrorTitle":"エラー","DE.Controllers.Main.downloadErrorText":"ダウンロード失敗","DE.Controllers.Main.downloadMergeText":"ダウンロード中...","DE.Controllers.Main.downloadMergeTitle":"ダウンロード中","DE.Controllers.Main.downloadTextText":"ドキュメントのダウンロード中...","DE.Controllers.Main.downloadTitleText":"ドキュメントのダウンロード中","DE.Controllers.Main.errorAccessDeny":"権限のない操作を実行しようとしています。
ドキュメントサーバーの管理者にご連絡ください。","DE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません","DE.Controllers.Main.errorCannotPasteImg":"この画像をクリップボードから貼り付けることはできませんが、お使いのデバイスに保存して、 \nそこから挿入するか、テキストを含まない画像をコピーしてドキュメントに貼り付けることができます。","DE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。現在、文書を編集することができません。","DE.Controllers.Main.errorComboSeries":"組み合わせチャートを作成するには、最低2つのデータを選択します。","DE.Controllers.Main.errorCompare":"共同編集中は、ドキュメントの比較機能は使用できません。","DE.Controllers.Main.errorConnectToServer":"ドキュメントを保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
「OK」ボタンをクリックすると、ドキュメントのダウンロードを促すメッセージが表示されます。","DE.Controllers.Main.errorCopyDisabled":"セキュリティ上の理由により、この文書の内容はコピーできません。","DE.Controllers.Main.errorDatabaseConnection":"外部エラーです。
データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。","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.errorEditProtectedRange":"この選択は保護されているため、編集することはできません。","DE.Controllers.Main.errorEmailClient":"メールクライアントが見つかりませんでした。","DE.Controllers.Main.errorEmptyTOC":"スタイルギャラリーからの見出しスタイルを選択したテキストに適用して、目次の作成を開始します","DE.Controllers.Main.errorFilePassProtect":"文書がパスワードで保護されているため開くことができません","DE.Controllers.Main.errorFileSizeExceed":"ファイルサイズがサーバーで設定された制限を超過しています。
Documentサーバー管理者に詳細をお問い合わせください。","DE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存するか、後で再試行してください。","DE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","DE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","DE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","DE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","DE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","DE.Controllers.Main.errorKeyEncrypt":"不明なキーの記述子","DE.Controllers.Main.errorKeyExpire":"キー記述子は有効期限が切れました","DE.Controllers.Main.errorLoadingFont":"フォントが読み込まれていません。
ドキュメントサーバーの管理者に連絡してください。","DE.Controllers.Main.errorMailMergeLoadFile":"ドキュメントの読み込みに失敗しました。別のファイルを選択してください。","DE.Controllers.Main.errorMailMergeSaveFile":"結合に失敗しました。","DE.Controllers.Main.errorNoTOC":"更新する目次がありません。「参考資料」タブから挿入できます。","DE.Controllers.Main.errorPasswordIsNotCorrect":"入力されたパスワードが正しくありません。
CAPS LOCKキーがオフになっていることを確認し、大文字を正しく使用するようにしてください。","DE.Controllers.Main.errorSaveWatermark":"このファイルには、別のドメインにリンクされた透かし画像が含まれています。
PDFで見えるようにするには、文書と同じドメインからリンクされるように透かし画像を更新するか、コンピュータからアップロードしてください。","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.errorTextFormWrongFormat":"入力された値がフィールドのフォーマットと一致しません。","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.leavePageText":"この文書の保存されていない変更があります。保存するために「このページにとどまる」をクリックし、その後「保存」をクリックしてください。「このページを離れる」をクリックすると、未保存の変更がすべて破棄されます。","DE.Controllers.Main.leavePageTextOnClose":"この文書で保存されていない変更はすべて失われます。
「キャンセル」をクリックし、「保存」をクリックすると、変更が保存されます。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","DE.Controllers.Main.loadFontsTextText":"データを読み込んでいます…","DE.Controllers.Main.loadFontsTitleText":"データを読み込んでいます","DE.Controllers.Main.loadFontTextText":"データを読み込んでいます…","DE.Controllers.Main.loadFontTitleText":"データを読み込んでいます","DE.Controllers.Main.loadImagesTextText":"画像の読み込み中...","DE.Controllers.Main.loadImagesTitleText":"画像の読み込み中","DE.Controllers.Main.loadImageTextText":"画像の読み込み中...","DE.Controllers.Main.loadImageTitleText":"画像の読み込み中","DE.Controllers.Main.loadingDocumentTextText":"ドキュメントを読み込んでいます…","DE.Controllers.Main.loadingDocumentTitleText":"ドキュメントを読み込んでいます","DE.Controllers.Main.mailMergeLoadFileText":"データソースを読み込んでいます...","DE.Controllers.Main.mailMergeLoadFileTitle":"データソースを読み込んでいます","DE.Controllers.Main.notcriticalErrorTitle":"警告","DE.Controllers.Main.openErrorText":"ファイルを読み込み中にエラーが発生しました。","DE.Controllers.Main.openTextText":"ドキュメントを開いています...","DE.Controllers.Main.openTitleText":"ドキュメントを開いています","DE.Controllers.Main.printTextText":"ドキュメント印刷中...","DE.Controllers.Main.printTitleText":"ドキュメント印刷中","DE.Controllers.Main.reloadButtonText":"ページを再読み込み","DE.Controllers.Main.requestEditFailedMessageText":"この文書は他のユーザによって編集されています。後でもう一度お試しください。","DE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","DE.Controllers.Main.saveErrorText":"ファイルを保存中にエラーが発生しました。","DE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","DE.Controllers.Main.saveTextText":"文書を保存中...","DE.Controllers.Main.saveTitleText":"文書を保存中","DE.Controllers.Main.savingText":"提出中","DE.Controllers.Main.scriptLoadError":"インターネット接続が遅いため、一部のコンポーネントをロードできませんでした。ページを再読み込みしてください。","DE.Controllers.Main.sendMergeText":"マージを送信中...","DE.Controllers.Main.sendMergeTitle":"マージを送信中","DE.Controllers.Main.splitDividerErrorText":"行数は%1の除数になければなりません。","DE.Controllers.Main.splitMaxColsErrorText":"列の数は%1より小さくなければなりません。","DE.Controllers.Main.splitMaxRowsErrorText":"行数は%1より小さくなければなりません。","DE.Controllers.Main.textAnonymous":"匿名者","DE.Controllers.Main.textAnyone":"誰でも","DE.Controllers.Main.textApplyAll":"全ての数式に適用する","DE.Controllers.Main.textBuyNow":"ウェブサイトにアクセス","DE.Controllers.Main.textChangesSaved":"全ての変更点が保存されました","DE.Controllers.Main.textClose":"閉じる","DE.Controllers.Main.textCloseTip":"クリックでヒントを閉じる","DE.Controllers.Main.textConnectionLost":"接続中です。接続設定をご確認ください。","DE.Controllers.Main.textContactUs":"営業部に連絡する","DE.Controllers.Main.textContinue":"続ける","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":"ライセンス制限に達しました。","DE.Controllers.Main.textPaidFeature":"有料機能","DE.Controllers.Main.textReconnect":"接続が回復しました","DE.Controllers.Main.textRemember":"すべてのファイルに自分の選択を記憶させる","DE.Controllers.Main.textRememberMacros":"すべてのマクロに、この選択を記憶する","DE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","DE.Controllers.Main.textRenameLabel":"コラボレーションに使用する名前を入力して下さい。","DE.Controllers.Main.textRequestMacros":"マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?","DE.Controllers.Main.textShape":"図形","DE.Controllers.Main.textSignature":"署名","DE.Controllers.Main.textStrict":"厳格モード","DE.Controllers.Main.textText":"テキスト","DE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","DE.Controllers.Main.textTryUndoRedo":"高速共同編集モードでは、元に戻す/やり直し機能は無効になります。
「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。","DE.Controllers.Main.textTryUndoRedoWarn":"高速共同編集モードでは、元に戻す/やり直し機能が無効になります。","DE.Controllers.Main.textUndo":"元に戻す","DE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","DE.Controllers.Main.textUpdating":"アップデート中","DE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","DE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","DE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","DE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","DE.Controllers.Main.titleReadOnly":"閲覧専用モード","DE.Controllers.Main.titleServerVersion":"編集者が更新されました","DE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","DE.Controllers.Main.txtAbove":"上","DE.Controllers.Main.txtArt":"ここにテキストを入力","DE.Controllers.Main.txtBasicShapes":"基本図形","DE.Controllers.Main.txtBelow":"下","DE.Controllers.Main.txtBookmarkError":"エラー!ブックマークが定義されていません。","DE.Controllers.Main.txtButtons":"ボタン","DE.Controllers.Main.txtCallouts":"吹き出し","DE.Controllers.Main.txtCharts":"グラフ","DE.Controllers.Main.txtChoose":"アイテムを選択してください","DE.Controllers.Main.txtClickToLoad":"クリックして画像を読み込む","DE.Controllers.Main.txtCurrentDocument":"現在の文書","DE.Controllers.Main.txtDiagramTitle":"チャートのタイトル","DE.Controllers.Main.txtEditingMode":"編集モードを設定します...","DE.Controllers.Main.txtEndOfFormula":"予期しない数式の終了","DE.Controllers.Main.txtEnterDate":"日付を入力してください","DE.Controllers.Main.txtErrorLoadHistory":"履歴の読み込みに失敗しました。","DE.Controllers.Main.txtEvenPage":"偶数ページ","DE.Controllers.Main.txtFiguredArrows":"図形矢印","DE.Controllers.Main.txtFirstPage":"最初のページ","DE.Controllers.Main.txtFooter":"フッター","DE.Controllers.Main.txtFormulaNotInTable":"テーブルにない数式","DE.Controllers.Main.txtHeader":"ヘッダー","DE.Controllers.Main.txtHyperlink":"リンク","DE.Controllers.Main.txtIndTooLarge":"インデックスが大きすぎます","DE.Controllers.Main.txtLines":"線","DE.Controllers.Main.txtMainDocOnly":"エラー!メイン文書のみ。","DE.Controllers.Main.txtMath":"数学","DE.Controllers.Main.txtMissArg":"引数がありません","DE.Controllers.Main.txtMissOperator":"演算子がありません ","DE.Controllers.Main.txtNeedSynchronize":"更新があります","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.txtSameAsPrev":"前と同じ","DE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","DE.Controllers.Main.txtScheme_Aspect":"アスペクト","DE.Controllers.Main.txtScheme_Blue":"青色","DE.Controllers.Main.txtScheme_Blue_Green":"ブルーグリーン","DE.Controllers.Main.txtScheme_Blue_II":"青色II","DE.Controllers.Main.txtScheme_Blue_Warm":"ブルーウォーム","DE.Controllers.Main.txtScheme_Grayscale":"グレースケール","DE.Controllers.Main.txtScheme_Green":"緑色","DE.Controllers.Main.txtScheme_Green_Yellow":"黄緑色","DE.Controllers.Main.txtScheme_Marquee":"マーキー","DE.Controllers.Main.txtScheme_Median":"中位数","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"オレンジ色","DE.Controllers.Main.txtScheme_Orange_Red":"オレンジ赤色","DE.Controllers.Main.txtScheme_Paper":"紙","DE.Controllers.Main.txtScheme_Red":"赤色","DE.Controllers.Main.txtScheme_Red_Orange":"オレンジ赤色","DE.Controllers.Main.txtScheme_Red_Violet":"赤紫色","DE.Controllers.Main.txtScheme_Slipstream":"スリップストリーム","DE.Controllers.Main.txtScheme_Violet":"バイオレット色","DE.Controllers.Main.txtScheme_Violet_II":"バイオレット II","DE.Controllers.Main.txtScheme_Yellow":"黄色","DE.Controllers.Main.txtScheme_Yellow_Orange":"オレンジ黄色","DE.Controllers.Main.txtSection":"-セクション","DE.Controllers.Main.txtSeries":"系列","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_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":"角","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":"半フレーム","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":"爆発 1","DE.Controllers.Main.txtShape_irregularSeal2":"爆発 2","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_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":"1つの角を丸めた四角形","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":"1つの角を切り取った四角形","DE.Controllers.Main.txtShape_snip2DiagRect":"対角する2つの角を切り取った四角形","DE.Controllers.Main.txtShape_snip2SameRect":"片側の2つの角を切り取った四角形","DE.Controllers.Main.txtShape_snipRoundRect":"1つの角を切り取り1つの角を丸めた四角形","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_Book_Title":"書名","DE.Controllers.Main.txtStyle_Caption":"キャプション","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"デフォルトの段落フォント","DE.Controllers.Main.txtStyle_Emphasis":"強調斜体","DE.Controllers.Main.txtStyle_endnote_reference":"尾注参考","DE.Controllers.Main.txtStyle_endnote_text":"文末脚注","DE.Controllers.Main.txtStyle_footnote_reference":"脚注参考","DE.Controllers.Main.txtStyle_footnote_text":"脚注","DE.Controllers.Main.txtStyle_Heading_1":"見出し1","DE.Controllers.Main.txtStyle_Heading_2":"見出し2","DE.Controllers.Main.txtStyle_Heading_3":"見出し3","DE.Controllers.Main.txtStyle_Heading_4":"見出し4","DE.Controllers.Main.txtStyle_Heading_5":"見出し5","DE.Controllers.Main.txtStyle_Heading_6":"見出し6","DE.Controllers.Main.txtStyle_Heading_7":"見出し7","DE.Controllers.Main.txtStyle_Heading_8":"見出し8","DE.Controllers.Main.txtStyle_Heading_9":"見出し9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"強調斜体 2","DE.Controllers.Main.txtStyle_Intense_Quote":"引用文 2","DE.Controllers.Main.txtStyle_Intense_Reference":"参照 2","DE.Controllers.Main.txtStyle_List_Paragraph":"リスト段落","DE.Controllers.Main.txtStyle_No_List":"リストなし","DE.Controllers.Main.txtStyle_No_Spacing":"行間詰め","DE.Controllers.Main.txtStyle_Normal":"標準","DE.Controllers.Main.txtStyle_Quote":"引用文 1","DE.Controllers.Main.txtStyle_Strong":"強調太字","DE.Controllers.Main.txtStyle_Subtitle":"副題","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"斜体","DE.Controllers.Main.txtStyle_Subtle_Reference":"参照 1","DE.Controllers.Main.txtStyle_Title":"表題","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":"こちらに数式を入力してください","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.updateChartText":"チャートのデータが更新中です…","DE.Controllers.Main.uploadDocExtMessage":"不明な文書形式","DE.Controllers.Main.uploadDocFileCountMessage":"アップロードされた文書がありません。","DE.Controllers.Main.uploadDocSizeMessage":"文書の最大サイズ制限を超えました","DE.Controllers.Main.uploadImageExtMessage":"不明な画像形式","DE.Controllers.Main.uploadImageFileCountMessage":"画像のアップロードはありません。","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":"お使いのブラウザの現在のZoomの設定は完全にはサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。","DE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","DE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","DE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページをリロードしてください。","DE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","DE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください。","DE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","DE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","DE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","DE.Controllers.Main.warnStartFilling":"フォームへの入力中です。
現在、ファイルの編集はご利用いただけません。","DE.Controllers.Navigation.txtBeginning":"文書の先頭","DE.Controllers.Navigation.txtGotoBeginning":"文書の先頭に移動する","DE.Controllers.Print.textMarginsLast":"最後に適用した設定","DE.Controllers.Print.txtCustom":"ユーザー設定","DE.Controllers.Print.txtPrintRangeInvalid":"無効な印刷範囲","DE.Controllers.Search.notcriticalErrorTitle":" 警告","DE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。他の検索設定を選択してください。","DE.Controllers.Search.textReplaceSkipped":"置換が行われました。スキップされた発生回数は{0}です。","DE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました。","DE.Controllers.Search.warnReplaceString":"{0}は、「置換」ボックスで有効な特殊文字ではありません。","DE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","DE.Controllers.Statusbar.textHasChanges":"新しい変更点を追記しました","DE.Controllers.Statusbar.textSetTrackChanges":"変更履歴モードで編集中です","DE.Controllers.Statusbar.textTrackChanges":"ドキュメントが変更履歴モードが有効な状態で開かれています","DE.Controllers.Statusbar.tipReview":"変更履歴","DE.Controllers.Statusbar.zoomText":"ズーム{0}%","DE.Controllers.Toolbar.confirmAddFontName":"保存しようとしているフォントを現在のデバイスで使用することができません。
システムフォントを使って、テキストのスタイルが表示されます。利用可能になったとき、保存されたフォントが適用されます。
続行しますか。","DE.Controllers.Toolbar.dataUrl":"データのURLを貼り付け","DE.Controllers.Toolbar.errorAccessDeny":"権限のない操作を実行しようとしています。
ドキュメントサーバーの管理者にご連絡ください。","DE.Controllers.Toolbar.fileUrl":"ファイルのURLを貼り付ける","DE.Controllers.Toolbar.helpChartElements":"数回クリックするだけでグラフ要素の表示/非表示を簡単に切り替えられる。","DE.Controllers.Toolbar.helpChartElementsHeader":"グラフ要素表示","DE.Controllers.Toolbar.helpCommentFilter":"左パネルで、開いているコメントと解決済みコメントを切り替えて、表示の管理ができます。","DE.Controllers.Toolbar.helpCommentFilterHeader":"コメントのフィルター","DE.Controllers.Toolbar.notcriticalErrorTitle":"警告","DE.Controllers.Toolbar.textAccent":"ダイアクリティカル・マーク","DE.Controllers.Toolbar.textBracket":"括弧","DE.Controllers.Toolbar.textConvertFormDownload":"記入可能なPDF形式のファイルをダウンロードしてください。","DE.Controllers.Toolbar.textConvertFormSave":"記入可能なPDFフォームとしてファイルを保存すると、記入できるようになります。","DE.Controllers.Toolbar.textDownloadPdf":"PDFのダウンロード","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":"大型演算子","DE.Controllers.Toolbar.textLimitAndLog":"極限と対数","DE.Controllers.Toolbar.textMatrix":"行列","DE.Controllers.Toolbar.textOperator":"演算子","DE.Controllers.Toolbar.textRadical":"ラジカル","DE.Controllers.Toolbar.textRecentlyUsed":"最近使った項目","DE.Controllers.Toolbar.textSavePdf":"pdfとして保存","DE.Controllers.Toolbar.textScript":"スクリプト","DE.Controllers.Toolbar.textSymbols":"記号","DE.Controllers.Toolbar.textTabForms":"フォーム","DE.Controllers.Toolbar.textWarning":"警告","DE.Controllers.Toolbar.txtAccent_Accent":"アキュート","DE.Controllers.Toolbar.txtAccent_ArrowD":"左右双方向矢印 (上)","DE.Controllers.Toolbar.txtAccent_ArrowL":"左に矢印 (上)","DE.Controllers.Toolbar.txtAccent_ArrowR":"右向き矢印 (上)","DE.Controllers.Toolbar.txtAccent_Bar":"バー","DE.Controllers.Toolbar.txtAccent_BarBot":"アンダーバー","DE.Controllers.Toolbar.txtAccent_BarTop":"オーバーライン","DE.Controllers.Toolbar.txtAccent_BorderBox":"四角囲み数式 (プレースホルダ付き)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"四角囲み数式 (例)","DE.Controllers.Toolbar.txtAccent_Check":"チェック","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"下括弧","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"上括弧","DE.Controllers.Toolbar.txtAccent_Custom_1":"ベクトルA","DE.Controllers.Toolbar.txtAccent_Custom_2":"オーバーライン付き ABC","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XORと上線","DE.Controllers.Toolbar.txtAccent_DDDot":"トリプルドット","DE.Controllers.Toolbar.txtAccent_DDot":"複付点","DE.Controllers.Toolbar.txtAccent_Dot":"点","DE.Controllers.Toolbar.txtAccent_DoubleBar":"二重オーバーライン","DE.Controllers.Toolbar.txtAccent_Grave":"グレイヴ","DE.Controllers.Toolbar.txtAccent_GroupBot":"グループ化文字(下)","DE.Controllers.Toolbar.txtAccent_GroupTop":"グループ化文字(上)","DE.Controllers.Toolbar.txtAccent_HarpoonL":"左半矢印(上)","DE.Controllers.Toolbar.txtAccent_HarpoonR":"右向き半矢印 (上)","DE.Controllers.Toolbar.txtAccent_Hat":"ハット","DE.Controllers.Toolbar.txtAccent_Smile":"ブレーヴェ","DE.Controllers.Toolbar.txtAccent_Tilde":"チルダ","DE.Controllers.Toolbar.txtBracket_Angle":"山かっこ","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"山かっこと縦棒","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"山かっこと縦棒 2 本","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"終わり山かっこ","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"始め山かっこ","DE.Controllers.Toolbar.txtBracket_Curve":"中かっこ","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"中かっこと縦棒","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"右中かっこ","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"左中かっこ","DE.Controllers.Toolbar.txtBracket_Custom_1":"場合分け(条件2つ)","DE.Controllers.Toolbar.txtBracket_Custom_2":"場合分け (条件 3 つ)","DE.Controllers.Toolbar.txtBracket_Custom_3":"縦並びオブジェクト","DE.Controllers.Toolbar.txtBracket_Custom_4":"縦並びオブジェクト (かっこ付き)","DE.Controllers.Toolbar.txtBracket_Custom_5":"場合分けの例","DE.Controllers.Toolbar.txtBracket_Custom_6":"二項係数","DE.Controllers.Toolbar.txtBracket_Custom_7":"二項係数 (山かっこ付き)","DE.Controllers.Toolbar.txtBracket_Line":"縦棒","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"縦棒 (右のみ)","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"縦棒 (左のみ)","DE.Controllers.Toolbar.txtBracket_LineDouble":"二重縦棒","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"二重縦棒 (右のみ)","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"二重縦棒 (左のみ)","DE.Controllers.Toolbar.txtBracket_LowLim":"終わりかっこ","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"床関数 (右記号)","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"床関数 (左記号)","DE.Controllers.Toolbar.txtBracket_Round":"括弧","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"括弧と区切り線","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"右かっこ","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"左かっこ","DE.Controllers.Toolbar.txtBracket_Square":"大かっこ","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"右の角括弧の間のプレースホルダー","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"反転した角括弧","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"右角かっこ","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"左角かっこ","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"左の角括弧の間のプレースホルダー","DE.Controllers.Toolbar.txtBracket_SquareDouble":"二重の角括弧","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"右ダブル角型かっこ","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"左ダブル角型かっこ","DE.Controllers.Toolbar.txtBracket_UppLim":"天井大かっこ","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"天井関数 (右記号)","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"単一括弧","DE.Controllers.Toolbar.txtDownload":"ダウンロード","DE.Controllers.Toolbar.txtFractionDiagonal":"分数 (斜め)","DE.Controllers.Toolbar.txtFractionDifferential_1":"微分","DE.Controllers.Toolbar.txtFractionDifferential_2":"大文字デルタ y/大文字デルタ x","DE.Controllers.Toolbar.txtFractionDifferential_3":"部分的なxに対する部分的なy","DE.Controllers.Toolbar.txtFractionDifferential_4":"デルタ y/デルタ x","DE.Controllers.Toolbar.txtFractionHorizontal":"分数 (横)","DE.Controllers.Toolbar.txtFractionPi_2":"Pi/2","DE.Controllers.Toolbar.txtFractionSmall":"分数 (小)","DE.Controllers.Toolbar.txtFractionVertical":"分数 (縦)","DE.Controllers.Toolbar.txtFunction_1_Cos":"逆余弦関数","DE.Controllers.Toolbar.txtFunction_1_Cosh":"双曲線逆余弦関数","DE.Controllers.Toolbar.txtFunction_1_Cot":"逆余接関数","DE.Controllers.Toolbar.txtFunction_1_Coth":"双曲線逆共接関数","DE.Controllers.Toolbar.txtFunction_1_Csc":"逆余割関数","DE.Controllers.Toolbar.txtFunction_1_Csch":"双曲線逆余割関数","DE.Controllers.Toolbar.txtFunction_1_Sec":"逆正割関数","DE.Controllers.Toolbar.txtFunction_1_Sech":"双曲線逆正割関数","DE.Controllers.Toolbar.txtFunction_1_Sin":"逆正弦関数","DE.Controllers.Toolbar.txtFunction_1_Sinh":"双曲線逆正弦関数","DE.Controllers.Toolbar.txtFunction_1_Tan":"逆正接関数","DE.Controllers.Toolbar.txtFunction_1_Tanh":"双曲線逆正接関数","DE.Controllers.Toolbar.txtFunction_Cos":"余弦関数","DE.Controllers.Toolbar.txtFunction_Cosh":"双曲線余弦関数","DE.Controllers.Toolbar.txtFunction_Cot":"余接関数","DE.Controllers.Toolbar.txtFunction_Coth":"双曲線余接関数","DE.Controllers.Toolbar.txtFunction_Csc":"余割関数\t","DE.Controllers.Toolbar.txtFunction_Csch":"双曲線余割関数","DE.Controllers.Toolbar.txtFunction_Custom_1":"Sin θ","DE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"正接数式","DE.Controllers.Toolbar.txtFunction_Sec":"正割関数","DE.Controllers.Toolbar.txtFunction_Sech":"双曲線正割","DE.Controllers.Toolbar.txtFunction_Sin":"正弦関数","DE.Controllers.Toolbar.txtFunction_Sinh":"双曲線正弦","DE.Controllers.Toolbar.txtFunction_Tan":"正接関数","DE.Controllers.Toolbar.txtFunction_Tanh":"双曲線正接関数","DE.Controllers.Toolbar.txtIntegral":"積分","DE.Controllers.Toolbar.txtIntegral_dtheta":"微分シータ","DE.Controllers.Toolbar.txtIntegral_dx":"微分x","DE.Controllers.Toolbar.txtIntegral_dy":"微分y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralDouble":"二重積分","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"二重積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"二重積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralOriented":"周回積分","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"線積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"面積分","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"面積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"面積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"線積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"体積積分","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"体積積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"体積積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralSubSup":"積分 (上下端値あり)","DE.Controllers.Toolbar.txtIntegralTriple":"三重積分","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"三重積分 (上下端値を上下に配置)","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"三重積分 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"論理積","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"論理積 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"論理積 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"論理積 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"論理積 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"余積","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"下端付き余積","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"極限付き余積","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"下端下付き双対積","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"上下付き極限付き双対積","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"n から k を選ぶ場合の k の総和","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"総和 (i = 0 から n まで)","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"添え字 2 個を使う総和の例","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"積の例","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"和集合の例","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"論理和","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"論理和 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"論理和 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"論理和 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"論理和 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"共通集合","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"積集合 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"積集合 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"積集合 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"積集合 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Prod":"乗積","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"積 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"積 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"積 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"積 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Sum":"合計","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"総和 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"総和 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"総和 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"総和 (上付き/下付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Union":"和集合","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"和集合 (下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"和集合 (上下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"和集合 (下付き文字の下端値あり)","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"和集合 (下付き/上付き文字の上下端値あり)","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"極限の例","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"最大値の例","DE.Controllers.Toolbar.txtLimitLog_Lim":"極限","DE.Controllers.Toolbar.txtLimitLog_Ln":"自然対数","DE.Controllers.Toolbar.txtLimitLog_Log":"対数","DE.Controllers.Toolbar.txtLimitLog_LogBase":"対数","DE.Controllers.Toolbar.txtLimitLog_Max":"最大","DE.Controllers.Toolbar.txtLimitLog_Min":"最小","DE.Controllers.Toolbar.txtMarginsH":"指定されたページの高さ対して、上下の余白が大きすぎます。","DE.Controllers.Toolbar.txtMarginsW":"ページ幅に対して左右の余白が広すぎます。","DE.Controllers.Toolbar.txtMatrix_1_2":"1x2空行列","DE.Controllers.Toolbar.txtMatrix_1_3":"1x3空行列","DE.Controllers.Toolbar.txtMatrix_2_1":"2x1 空行列","DE.Controllers.Toolbar.txtMatrix_2_2":"2x2 空行列","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"空の 2x2 行列 (二重縦棒付き)","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"空の 2x2 行列式","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"空の 2x2 行列 (かっこ付き)","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"空の 2x2 行列 (大かっこ付き)","DE.Controllers.Toolbar.txtMatrix_2_3":"2x3 空行列","DE.Controllers.Toolbar.txtMatrix_3_1":"3x1 空行列","DE.Controllers.Toolbar.txtMatrix_3_2":"3x2 空行列","DE.Controllers.Toolbar.txtMatrix_3_3":"3x3 空行列","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"基準線点","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"ミッドラインドット","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"斜めドット","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"縦向きドット","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"疎行列 (かっこ付き)","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"疎行列 (大かっこ付き)","DE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 単位行列 (0 あり)","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"空白の対角セルを持つ 2x2 の単位行列","DE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 単位行列 (0 あり)","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3 単位行列 (対角線上以外のセルは空白)","DE.Controllers.Toolbar.txtNeedDownload":"PDFビューアは、新しい変更を別々のファイルコピーに保存することしかできません。共同編集をサポートしていないため、新しいファイルバージョンを共有しない限り、他のユーザーはあなたの変更を見ることができません。","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"左右双方向矢印 (下)","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"左右双方向矢印 (上)","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"左に矢印 (下)","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"左に矢印 (上)","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"右向き矢印 (下)","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"右向き矢印 (上)","DE.Controllers.Toolbar.txtOperator_ColonEquals":"コロンイコール","DE.Controllers.Toolbar.txtOperator_Custom_1":"導出","DE.Controllers.Toolbar.txtOperator_Custom_2":"デルタ収量","DE.Controllers.Toolbar.txtOperator_Definition":"定義上等しい","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"デルタ付き等号","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"左右双方向矢印 (下)","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"左右双方向矢印 (上)","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"左に矢印 (下)","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"左に矢印 (上)","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"右向き矢印 (下)","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"右向き矢印 (上)","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"イコールイコール","DE.Controllers.Toolbar.txtOperator_MinusEquals":"マイナスイコール","DE.Controllers.Toolbar.txtOperator_PlusEquals":"プラスイコール","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"によって測定","DE.Controllers.Toolbar.txtRadicalCustom_1":"二次方程式の解の公式の右辺","DE.Controllers.Toolbar.txtRadicalCustom_2":"a の 2 乗と b の 2 乗の和の平方根","DE.Controllers.Toolbar.txtRadicalRoot_2":"次数付き平方根","DE.Controllers.Toolbar.txtRadicalRoot_3":"立方根","DE.Controllers.Toolbar.txtRadicalRoot_n":"度付きラジカル","DE.Controllers.Toolbar.txtRadicalSqrt":"平方根","DE.Controllers.Toolbar.txtSaveCopy":"コピーを保存","DE.Controllers.Toolbar.txtScriptCustom_1":"x 下付き文字 y の 2 乗","DE.Controllers.Toolbar.txtScriptCustom_2":"e のマイナス i ω t 乗","DE.Controllers.Toolbar.txtScriptCustom_3":"x の 2 乗","DE.Controllers.Toolbar.txtScriptCustom_4":"Y 左上付き文字 n 左下付き文字 1","DE.Controllers.Toolbar.txtScriptSub":"下付き文字","DE.Controllers.Toolbar.txtScriptSubSup":"下付き文字 - 上付き文字","DE.Controllers.Toolbar.txtScriptSubSupLeft":"左下付き文字 - 上付き文字","DE.Controllers.Toolbar.txtScriptSup":"上付き文字","DE.Controllers.Toolbar.txtSymbol_about":"約","DE.Controllers.Toolbar.txtSymbol_additional":"補数","DE.Controllers.Toolbar.txtSymbol_aleph":"アレフ","DE.Controllers.Toolbar.txtSymbol_alpha":"アルファ","DE.Controllers.Toolbar.txtSymbol_approx":"にほぼ等しい","DE.Controllers.Toolbar.txtSymbol_ast":"アスタリスク","DE.Controllers.Toolbar.txtSymbol_beta":"ベータ","DE.Controllers.Toolbar.txtSymbol_beth":"ベート","DE.Controllers.Toolbar.txtSymbol_bullet":"箇条書きの演算子","DE.Controllers.Toolbar.txtSymbol_cap":"共通集合","DE.Controllers.Toolbar.txtSymbol_cbrt":"立方根","DE.Controllers.Toolbar.txtSymbol_cdots":"水平中央の省略記号","DE.Controllers.Toolbar.txtSymbol_celsius":"摂氏","DE.Controllers.Toolbar.txtSymbol_chi":"カイ","DE.Controllers.Toolbar.txtSymbol_cong":"にほぼ等しい","DE.Controllers.Toolbar.txtSymbol_cup":"和集合","DE.Controllers.Toolbar.txtSymbol_ddots":"下右斜めの省略記号","DE.Controllers.Toolbar.txtSymbol_degree":"度","DE.Controllers.Toolbar.txtSymbol_delta":"デルタ","DE.Controllers.Toolbar.txtSymbol_div":"除算記号","DE.Controllers.Toolbar.txtSymbol_downarrow":"下矢印","DE.Controllers.Toolbar.txtSymbol_emptyset":"空集合","DE.Controllers.Toolbar.txtSymbol_epsilon":"イプシロン","DE.Controllers.Toolbar.txtSymbol_equals":"イコール","DE.Controllers.Toolbar.txtSymbol_equiv":"と同一","DE.Controllers.Toolbar.txtSymbol_eta":"エータ","DE.Controllers.Toolbar.txtSymbol_exists":"存在します\t","DE.Controllers.Toolbar.txtSymbol_factorial":"階乗","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"華氏","DE.Controllers.Toolbar.txtSymbol_forall":"全てに","DE.Controllers.Toolbar.txtSymbol_gamma":"ガンマ","DE.Controllers.Toolbar.txtSymbol_geq":"次の値より大きいか等しい","DE.Controllers.Toolbar.txtSymbol_gg":"次の値よりはるかに大きい","DE.Controllers.Toolbar.txtSymbol_greater":"次の値より大きい","DE.Controllers.Toolbar.txtSymbol_in":"属する","DE.Controllers.Toolbar.txtSymbol_inc":"増分","DE.Controllers.Toolbar.txtSymbol_infinity":"無限","DE.Controllers.Toolbar.txtSymbol_iota":"イオタ","DE.Controllers.Toolbar.txtSymbol_kappa":"カッパ","DE.Controllers.Toolbar.txtSymbol_lambda":"ラムダ","DE.Controllers.Toolbar.txtSymbol_leftarrow":"左矢印","DE.Controllers.Toolbar.txtSymbol_leftrightarrow":"左右矢印","DE.Controllers.Toolbar.txtSymbol_leq":"次の値より小さいか等しい","DE.Controllers.Toolbar.txtSymbol_less":"次の値より小さい","DE.Controllers.Toolbar.txtSymbol_ll":"次の値よりはるかに小さい","DE.Controllers.Toolbar.txtSymbol_minus":"マイナス","DE.Controllers.Toolbar.txtSymbol_mp":"マイナスプラス\t","DE.Controllers.Toolbar.txtSymbol_mu":"ミュー","DE.Controllers.Toolbar.txtSymbol_nabla":"ナブラ","DE.Controllers.Toolbar.txtSymbol_neq":"と等しくない","DE.Controllers.Toolbar.txtSymbol_ni":"含む","DE.Controllers.Toolbar.txtSymbol_not":"否定記号","DE.Controllers.Toolbar.txtSymbol_notexists":"存在しません","DE.Controllers.Toolbar.txtSymbol_nu":"ニュー","DE.Controllers.Toolbar.txtSymbol_o":"オミクロン","DE.Controllers.Toolbar.txtSymbol_omega":"オメガ","DE.Controllers.Toolbar.txtSymbol_partial":"偏微分","DE.Controllers.Toolbar.txtSymbol_percent":"パーセンテージ","DE.Controllers.Toolbar.txtSymbol_phi":"ファイ","DE.Controllers.Toolbar.txtSymbol_pi":"パイ","DE.Controllers.Toolbar.txtSymbol_plus":"プラス","DE.Controllers.Toolbar.txtSymbol_pm":"プラス マイナス","DE.Controllers.Toolbar.txtSymbol_propto":"に比例","DE.Controllers.Toolbar.txtSymbol_psi":"プサイ","DE.Controllers.Toolbar.txtSymbol_qdrt":"四乗根","DE.Controllers.Toolbar.txtSymbol_qed":"証明終了","DE.Controllers.Toolbar.txtSymbol_rddots":"斜め(右上)の省略記号","DE.Controllers.Toolbar.txtSymbol_rho":"ロー","DE.Controllers.Toolbar.txtSymbol_rightarrow":"右矢印","DE.Controllers.Toolbar.txtSymbol_sigma":"シグマ","DE.Controllers.Toolbar.txtSymbol_sqrt":"根号","DE.Controllers.Toolbar.txtSymbol_tau":"タウ","DE.Controllers.Toolbar.txtSymbol_therefore":"従って","DE.Controllers.Toolbar.txtSymbol_theta":"シータ","DE.Controllers.Toolbar.txtSymbol_times":"乗算記号","DE.Controllers.Toolbar.txtSymbol_uparrow":"上矢印","DE.Controllers.Toolbar.txtSymbol_upsilon":"ウプシロン","DE.Controllers.Toolbar.txtSymbol_varepsilon":"イプシロン (別形)","DE.Controllers.Toolbar.txtSymbol_varphi":"ファイ (別形)","DE.Controllers.Toolbar.txtSymbol_varpi":"パイ","DE.Controllers.Toolbar.txtSymbol_varrho":"ロー (別形)","DE.Controllers.Toolbar.txtSymbol_varsigma":"シグマ (別形)","DE.Controllers.Toolbar.txtSymbol_vartheta":"シータ (別形)","DE.Controllers.Toolbar.txtSymbol_vdots":"垂直線の省略記号","DE.Controllers.Toolbar.txtSymbol_xsi":"グザイ","DE.Controllers.Toolbar.txtSymbol_zeta":"ゼータ","DE.Controllers.Toolbar.txtUntitled":"無題","DE.Controllers.Viewport.textFitPage":"ページに合わせる","DE.Controllers.Viewport.textFitWidth":"幅を合わせる","DE.Controllers.Viewport.txtDarkMode":"ダークモード","DE.Views.BookmarksDialog.textAdd":"追加","DE.Views.BookmarksDialog.textAddAndGetLink":"リンクの追加&取得","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.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":"方程式\t","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.textLabelError":"ラベルは空白にできません","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.CellsRemoveDialog.textCol":"列全体を削除","DE.Views.CellsRemoveDialog.textLeft":"セルの左シフト","DE.Views.CellsRemoveDialog.textRow":"行全体を削除","DE.Views.CellsRemoveDialog.textTitle":"セルを削除する","DE.Views.ChartSettings.text3dDepth":"深さ(ベースに対する割合)","DE.Views.ChartSettings.text3dHeight":"高さ(ベースに対する割合)","DE.Views.ChartSettings.text3dRotation":"3D回転","DE.Views.ChartSettings.textAdvanced":"詳細設定を表示","DE.Views.ChartSettings.textAutoscale":"自動スケーリング","DE.Views.ChartSettings.textChartType":"グラフの種類の変更","DE.Views.ChartSettings.textData":"データ","DE.Views.ChartSettings.textDefault":"デフォルト回転","DE.Views.ChartSettings.textDown":"下","DE.Views.ChartSettings.textEditData":"データの編集","DE.Views.ChartSettings.textEditLinks":"リンクの編集","DE.Views.ChartSettings.textHeight":"高さ","DE.Views.ChartSettings.textKeepRatio":"比例の一定","DE.Views.ChartSettings.textLeft":"左","DE.Views.ChartSettings.textLinkedData":"リンク済みのデータ","DE.Views.ChartSettings.textNarrow":"狭角","DE.Views.ChartSettings.textOriginalSize":"実際のサイズ","DE.Views.ChartSettings.textPerspective":"分析観点","DE.Views.ChartSettings.textRight":"右","DE.Views.ChartSettings.textRightAngle":"軸の直交","DE.Views.ChartSettings.textSelectData":"データの選択","DE.Views.ChartSettings.textSize":"サイズ","DE.Views.ChartSettings.textStyle":"スタイル","DE.Views.ChartSettings.textUndock":"パネルからドッキング解除","DE.Views.ChartSettings.textUp":"上","DE.Views.ChartSettings.textUpdateData":"データの更新","DE.Views.ChartSettings.textWiden":"広角","DE.Views.ChartSettings.textWidth":"幅","DE.Views.ChartSettings.textWrap":"折り返しの種類と配置","DE.Views.ChartSettings.textX":"X 回転","DE.Views.ChartSettings.textY":"Y 回転","DE.Views.ChartSettings.txtBehind":"テキストの背後に","DE.Views.ChartSettings.txtInFront":"テキストの前に","DE.Views.ChartSettings.txtInline":"テキストに沿って","DE.Views.ChartSettings.txtSquare":"四角","DE.Views.ChartSettings.txtThrough":"内部","DE.Views.ChartSettings.txtTight":"外周","DE.Views.ChartSettings.txtTitle":"チャート","DE.Views.ChartSettings.txtTopAndBottom":"上と下","DE.Views.ChartSettingsDlg.textLeftOverlay":"左のオーバーレイ","DE.Views.CompareSettingsDialog.textChar":"文字レベル","DE.Views.CompareSettingsDialog.textShow":"での変更点を表示","DE.Views.CompareSettingsDialog.textTitle":"比較設定","DE.Views.CompareSettingsDialog.textWord":"単語レベル","DE.Views.ControlSettingsDialog.strGeneral":"一般","DE.Views.ControlSettingsDialog.textAdd":"追加","DE.Views.ControlSettingsDialog.textAppearance":"外観","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.ControlSettingsDialog.txtRemContent":"コンテンツが編集されたときにコンテンツ・コントロールを削除する","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":"方程式\t","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.textEqualWidth":"段の幅をすべて同じにする","DE.Views.CustomColumnsDialog.textSeparator":"列の区切り線","DE.Views.CustomColumnsDialog.textTitle":"列","DE.Views.CustomColumnsDialog.textTitleSpacing":"間隔","DE.Views.CustomColumnsDialog.textWidth":"幅","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.DocProtection.hintProtectDoc":"文書を保護する","DE.Views.DocProtection.txtDocProtectedComment":"文書は保護されています。
この文書には、コメントしか挿入できません。","DE.Views.DocProtection.txtDocProtectedForms":"文書は保護されています。
この文書では、フォームにのみ記入することができます。","DE.Views.DocProtection.txtDocProtectedTrack":"文書は保護されています。
この文書を編集することは可能ですが、すべての変更は追跡されます。","DE.Views.DocProtection.txtDocProtectedView":"ドキュメントが保護されています。
このドキュメントは閲覧のみ可能です。","DE.Views.DocProtection.txtDocUnlockDescription":"パスワードを入力すると、文書の保護が解除されます","DE.Views.DocProtection.txtProtectDoc":"文書を保護する","DE.Views.DocProtection.txtUnlockTitle":"文書保護の解除","DE.Views.DocumentHolder.aboveText":"上","DE.Views.DocumentHolder.addCommentText":"コメントの追加","DE.Views.DocumentHolder.advancedDropCapText":"ドロップキャップの設定","DE.Views.DocumentHolder.advancedEquationText":"数式設定","DE.Views.DocumentHolder.advancedFrameText":"フレームの詳細設定","DE.Views.DocumentHolder.advancedParagraphText":"段落の詳細設定","DE.Views.DocumentHolder.advancedTableText":"テーブルの詳細設定","DE.Views.DocumentHolder.advancedText":"詳細設定","DE.Views.DocumentHolder.AlignBottom":"下","DE.Views.DocumentHolder.AlignCenter":"中央揃え","DE.Views.DocumentHolder.AlignJust":"両端揃え","DE.Views.DocumentHolder.AlignLeft":"左","DE.Views.DocumentHolder.alignmentText":"配置","DE.Views.DocumentHolder.AlignMiddle":"中央","DE.Views.DocumentHolder.AlignRight":"右","DE.Views.DocumentHolder.AlignText":"テキストの揃え","DE.Views.DocumentHolder.AlignTop":"トップ","DE.Views.DocumentHolder.allLinearText":"すべて - 線形","DE.Views.DocumentHolder.allProfText":"すべて - プロフェッショナル","DE.Views.DocumentHolder.belowText":"下","DE.Views.DocumentHolder.breakBeforeText":"前に改ページ","DE.Views.DocumentHolder.btnChart":"タイトル、凡例、目盛線、データ ラベルなどのグラフ要素を追加、削除、または変更します","DE.Views.DocumentHolder.bulletsText":"箇条書きと段落番号","DE.Views.DocumentHolder.cellAlignText":"セルの縦方向の配置","DE.Views.DocumentHolder.cellText":"セル","DE.Views.DocumentHolder.centerText":"中央揃え","DE.Views.DocumentHolder.chartText":"チャートの詳細設定","DE.Views.DocumentHolder.columnText":"列","DE.Views.DocumentHolder.currLinearText":"現在 - 線形","DE.Views.DocumentHolder.currProfText":"現在 - プロフェッショナル","DE.Views.DocumentHolder.deleteColumnText":"列の削除","DE.Views.DocumentHolder.deleteRowText":"行の削除","DE.Views.DocumentHolder.deleteTableText":"表の削除","DE.Views.DocumentHolder.deleteText":"削除する","DE.Views.DocumentHolder.DepthAxis":"Z軸","DE.Views.DocumentHolder.direct270Text":"上にテキストを回転","DE.Views.DocumentHolder.direct90Text":"下にテキストを回転","DE.Views.DocumentHolder.directHText":"水平","DE.Views.DocumentHolder.directionText":"文字の方向","DE.Views.DocumentHolder.editChartText":"データの編集","DE.Views.DocumentHolder.editFooterText":"フッターの編集","DE.Views.DocumentHolder.editHeaderText":"ヘッダーの編集","DE.Views.DocumentHolder.editHyperlinkText":"ハイパーリンクを編集","DE.Views.DocumentHolder.eqToDisplayText":"ディスプレイに変更","DE.Views.DocumentHolder.eqToInlineText":"内臓に切り替える","DE.Views.DocumentHolder.guestText":"ゲスト","DE.Views.DocumentHolder.hideEqToolbar":"方程式ツールバーを非表示にする","DE.Views.DocumentHolder.hyperlinkText":"リンク","DE.Views.DocumentHolder.ignoreAllSpellText":"全てを無視する","DE.Views.DocumentHolder.ignoreSpellText":"無視する","DE.Views.DocumentHolder.imageText":"画像の詳細設定","DE.Views.DocumentHolder.insertColumnLeftText":"左の列","DE.Views.DocumentHolder.insertColumnRightText":"1 列右","DE.Views.DocumentHolder.insertColumnText":"列の挿入","DE.Views.DocumentHolder.insertRowAboveText":"行 (上)","DE.Views.DocumentHolder.insertRowBelowText":"行(下)","DE.Views.DocumentHolder.insertRowText":"行の挿入","DE.Views.DocumentHolder.insertText":"挿入","DE.Views.DocumentHolder.keepLinesText":"段落を分割しない","DE.Views.DocumentHolder.langText":"言語の選択","DE.Views.DocumentHolder.latexText":"LaTeX","DE.Views.DocumentHolder.leftText":"左","DE.Views.DocumentHolder.loadSpellText":"バリエーションの読み込み中...","DE.Views.DocumentHolder.mergeCellsText":"セルの結合","DE.Views.DocumentHolder.mniImageFromFile":"ファイルから画像","DE.Views.DocumentHolder.mniImageFromStorage":"ストレージから画像","DE.Views.DocumentHolder.mniImageFromUrl":"URLから画像","DE.Views.DocumentHolder.moreText":"その他のバリエーション...","DE.Views.DocumentHolder.noSpellVariantsText":"バリエーションなし","DE.Views.DocumentHolder.notcriticalErrorTitle":"警告","DE.Views.DocumentHolder.originalSizeText":"実際のサイズ","DE.Views.DocumentHolder.paragraphText":"段落","DE.Views.DocumentHolder.removeHyperlinkText":"リンクを削除する","DE.Views.DocumentHolder.rightText":"右","DE.Views.DocumentHolder.rowText":"行","DE.Views.DocumentHolder.saveStyleText":"新しいスタイルの作成","DE.Views.DocumentHolder.selectCellText":"セルの選択","DE.Views.DocumentHolder.selectColumnText":"列の選択","DE.Views.DocumentHolder.selectRowText":"行の選択","DE.Views.DocumentHolder.selectTableText":"テーブルの選択","DE.Views.DocumentHolder.selectText":"選択する","DE.Views.DocumentHolder.shapeText":"図形の詳細設定","DE.Views.DocumentHolder.showEqToolbar":"方程式ツールバーの表示","DE.Views.DocumentHolder.spellcheckText":"スペルチェック","DE.Views.DocumentHolder.splitCellsText":"セルを分割...","DE.Views.DocumentHolder.splitCellTitleText":"セルを分割","DE.Views.DocumentHolder.strDelete":"署名の削除","DE.Views.DocumentHolder.strDetails":"署名の詳細","DE.Views.DocumentHolder.strSetup":"署名の設定","DE.Views.DocumentHolder.strSign":"署名する","DE.Views.DocumentHolder.styleText":"スタイルとしての書式設定","DE.Views.DocumentHolder.tableText":"テーブル","DE.Views.DocumentHolder.textAccept":"変更を承諾する","DE.Views.DocumentHolder.textAlign":"整列","DE.Views.DocumentHolder.textArrange":"順序","DE.Views.DocumentHolder.textArrangeBack":"最背面ヘ移動","DE.Views.DocumentHolder.textArrangeBackward":"背面ヘ移動","DE.Views.DocumentHolder.textArrangeForward":"前面ヘ移動","DE.Views.DocumentHolder.textArrangeFront":"最前面ヘ移動","DE.Views.DocumentHolder.textAxes":"座標軸","DE.Views.DocumentHolder.textAxisTitles":"軸のタイトル","DE.Views.DocumentHolder.textBottom":"下","DE.Views.DocumentHolder.textCells":"セル","DE.Views.DocumentHolder.textCenter":"中央揃え","DE.Views.DocumentHolder.textChartTitle":"グラフのタイトル","DE.Views.DocumentHolder.textClearField":"フィールドのクリア","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.textDataLabels":"データラベル","DE.Views.DocumentHolder.textDataTable":"データ表","DE.Views.DocumentHolder.textDistributeCols":"列の幅を揃える","DE.Views.DocumentHolder.textDistributeRows":"行の高さを揃える","DE.Views.DocumentHolder.textEditControls":"コンテンツコントロール設定","DE.Views.DocumentHolder.textEditField":"フィールドの編集","DE.Views.DocumentHolder.textEditObject":"オブジェクトを編集","DE.Views.DocumentHolder.textEditPoints":"頂点の編集","DE.Views.DocumentHolder.textEditWrapBoundary":"折り返し点の編集","DE.Views.DocumentHolder.textErrorBars":"誤差範囲","DE.Views.DocumentHolder.textExponential":"指数","DE.Views.DocumentHolder.textFieldCodes":"フィールドコードの切り替え","DE.Views.DocumentHolder.textFit":"幅に合わせる","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.textGridLines":"グリッド線","DE.Views.DocumentHolder.textHorAxis":"横軸","DE.Views.DocumentHolder.textHorAxisSec":"二次横軸","DE.Views.DocumentHolder.textHorizontalMajor":"主要な水平線","DE.Views.DocumentHolder.textHorizontalMinor":"二次的な水平線","DE.Views.DocumentHolder.textIndents":"リストのインデントの調整","DE.Views.DocumentHolder.textInnerBottom":"内部(下)","DE.Views.DocumentHolder.textInnerTop":"内部(上)","DE.Views.DocumentHolder.textJoinList":"前のリストに結合","DE.Views.DocumentHolder.textLeft":"セルの左シフト","DE.Views.DocumentHolder.textLeftData":"左","DE.Views.DocumentHolder.textLeftOverlay":"左のオーバーレイ","DE.Views.DocumentHolder.textLeftPos":"左","DE.Views.DocumentHolder.textLegendPos":"凡例","DE.Views.DocumentHolder.textLinear":"線形","DE.Views.DocumentHolder.textLinearForecast":"線形予測","DE.Views.DocumentHolder.textLines":"行","DE.Views.DocumentHolder.textMovingAverage":"移動平均 (2)","DE.Views.DocumentHolder.textNest":"ネスト表","DE.Views.DocumentHolder.textNextPage":"次のページ","DE.Views.DocumentHolder.textNone":"なし","DE.Views.DocumentHolder.textNoOverlay":"オーバーレイなし","DE.Views.DocumentHolder.textNumberingValue":"ナンバリング値","DE.Views.DocumentHolder.textOuterTop":"外側上部","DE.Views.DocumentHolder.textOverlay":"オーバーレイ","DE.Views.DocumentHolder.textPaste":"貼り付け","DE.Views.DocumentHolder.textPrevPage":"前のページ","DE.Views.DocumentHolder.textRedo":"やり直す","DE.Views.DocumentHolder.textRefreshField":"フィールドの更新","DE.Views.DocumentHolder.textReject":"変更を拒否する","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.textStretchControl":"Resize to cell","DE.Views.DocumentHolder.textRemPicture":"画像を削除する","DE.Views.DocumentHolder.textRemRadioBox":"ラジオボタンの削除","DE.Views.DocumentHolder.textReplace":"画像を置き換える","DE.Views.DocumentHolder.textResetCrop":"トリミングをリセット","DE.Views.DocumentHolder.textRight":"右","DE.Views.DocumentHolder.textRightOverlay":"右オーバーレイ","DE.Views.DocumentHolder.textRotate":"回転させる","DE.Views.DocumentHolder.textRotate270":"反時計回りに90度回転","DE.Views.DocumentHolder.textRotate90":"時計回りに90度回転","DE.Views.DocumentHolder.textRow":"行全体を削除","DE.Views.DocumentHolder.textSaveAsPicture":"画像として保存する","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.textShapesMerge":"図形を結合","DE.Views.DocumentHolder.textShowDataTable":"データ表の表示","DE.Views.DocumentHolder.textShowLegendKeys":"凡例キーの表示","DE.Views.DocumentHolder.textShowUpDown":"上昇/下降バーを表示","DE.Views.DocumentHolder.textStandardDeviation":"標準偏差","DE.Views.DocumentHolder.textStandardError":"標準誤差","DE.Views.DocumentHolder.textStartNewList":"新しいリストを開始する","DE.Views.DocumentHolder.textStartNumberingFrom":"計数値の設定","DE.Views.DocumentHolder.textTitleCellsRemove":"セルを削除する","DE.Views.DocumentHolder.textTOC":"目次","DE.Views.DocumentHolder.textTOCSettings":"目次設定","DE.Views.DocumentHolder.textTop":"上","DE.Views.DocumentHolder.textTrendline":"トレンドライン","DE.Views.DocumentHolder.textUndo":"元に戻す","DE.Views.DocumentHolder.textUpdateAll":"テーブル全体の更新","DE.Views.DocumentHolder.textUpdatePages":"ページ番号のみの更新","DE.Views.DocumentHolder.textUpdateTOC":"目次を更新する","DE.Views.DocumentHolder.textUpDownBars":"上下スクロールバー","DE.Views.DocumentHolder.textVertAxis":"縦軸","DE.Views.DocumentHolder.textVertAxisSec":"二次縦軸","DE.Views.DocumentHolder.textVerticalMajor":"主要の縦軸","DE.Views.DocumentHolder.textVerticalMinor":"二次的な縦軸","DE.Views.DocumentHolder.textWrap":"折り返しの種類と配置","DE.Views.DocumentHolder.tipIsLocked":"今、この要素が他のユーザーによって編集されています。","DE.Views.DocumentHolder.toDictionaryText":"辞書に追加","DE.Views.DocumentHolder.txtAddBottom":"下罫線の追加","DE.Views.DocumentHolder.txtAddFractionBar":"分数罫の追加","DE.Views.DocumentHolder.txtAddHor":"水平線の追加","DE.Views.DocumentHolder.txtAddLB":"左下線の追加","DE.Views.DocumentHolder.txtAddLeft":"左罫線の追加","DE.Views.DocumentHolder.txtAddLT":"左上線の追加","DE.Views.DocumentHolder.txtAddRight":"右罫線の追加","DE.Views.DocumentHolder.txtAddTop":"上罫線の追加","DE.Views.DocumentHolder.txtAddVer":"縦線の追加","DE.Views.DocumentHolder.txtAlignToChar":"文字の整列","DE.Views.DocumentHolder.txtBehind":"テキストの背後に","DE.Views.DocumentHolder.txtBorderProps":"罫線の​​プロパティ","DE.Views.DocumentHolder.txtBottom":"下","DE.Views.DocumentHolder.txtColumnAlign":"列の配置","DE.Views.DocumentHolder.txtDecreaseArg":"引数のサイズの縮小","DE.Views.DocumentHolder.txtDeleteArg":"引数の削除","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.txtDestEmbed":"送信先のテーマを使用してワークブックを埋め込む","DE.Views.DocumentHolder.txtDestLink":"目的地のテーマとリンクデータを使用する","DE.Views.DocumentHolder.txtDistribHor":"左右に整列","DE.Views.DocumentHolder.txtDistribVert":"上下に整列","DE.Views.DocumentHolder.txtEmpty":"(空白)","DE.Views.DocumentHolder.txtFractionLinear":"分数(横)に変更","DE.Views.DocumentHolder.txtFractionSkewed":"分数(斜め)に変更","DE.Views.DocumentHolder.txtFractionStacked":"分数(縦)に変更\t","DE.Views.DocumentHolder.txtGroup":"グループ","DE.Views.DocumentHolder.txtGroupCharOver":"テキストの上の文字","DE.Views.DocumentHolder.txtGroupCharUnder":"テキストの下の文字","DE.Views.DocumentHolder.txtHideBottom":"下罫線を表示しない","DE.Views.DocumentHolder.txtHideBottomLimit":"下極限を表示しない","DE.Views.DocumentHolder.txtHideCloseBracket":"右括弧を表示しない","DE.Views.DocumentHolder.txtHideDegree":"次数を表示しない","DE.Views.DocumentHolder.txtHideHor":"横線を表示しない","DE.Views.DocumentHolder.txtHideLB":"左(下)の線を表示しない","DE.Views.DocumentHolder.txtHideLeft":"左罫線を表示しない","DE.Views.DocumentHolder.txtHideLT":"左(上)の線を表示しない","DE.Views.DocumentHolder.txtHideOpenBracket":"左括弧を表示しない","DE.Views.DocumentHolder.txtHidePlaceholder":"プレースホルダを表示しない","DE.Views.DocumentHolder.txtHideRight":"右罫線を枠線表示しない","DE.Views.DocumentHolder.txtHideTop":"上罫線を表示しない","DE.Views.DocumentHolder.txtHideTopLimit":"上極限を表示しない","DE.Views.DocumentHolder.txtHideVer":"縦線を表示しない","DE.Views.DocumentHolder.txtIncreaseArg":"引数のサイズの拡大","DE.Views.DocumentHolder.txtInFront":"テキストの前に","DE.Views.DocumentHolder.txtInline":"テキストに沿って","DE.Views.DocumentHolder.txtInsertArgAfter":"の後に引数を挿入","DE.Views.DocumentHolder.txtInsertArgBefore":"の前に引数を挿入","DE.Views.DocumentHolder.txtInsertBreak":"任意指定の改行を挿入","DE.Views.DocumentHolder.txtInsertCaption":"キャプションの挿入","DE.Views.DocumentHolder.txtInsertEqAfter":"の後に数式を挿入","DE.Views.DocumentHolder.txtInsertEqBefore":"の前に数式を挿入","DE.Views.DocumentHolder.txtInsImage":"画像をファイルから挿入する","DE.Views.DocumentHolder.txtInsImageUrl":"画像をURLから挿入する","DE.Views.DocumentHolder.txtKeepTextOnly":"テキスト保存のみ","DE.Views.DocumentHolder.txtLimitChange":"制限位置の変更","DE.Views.DocumentHolder.txtLimitOver":"テキストの上に制限する","DE.Views.DocumentHolder.txtLimitUnder":"テキストの下に制限する","DE.Views.DocumentHolder.txtMatchBrackets":"括弧を引数の高さに合わせる","DE.Views.DocumentHolder.txtMatrixAlign":"行列の配置","DE.Views.DocumentHolder.txtOverbar":"テキストの上のバー","DE.Views.DocumentHolder.txtOverwriteCells":"セルを上書きする","DE.Views.DocumentHolder.txtPastePicture":"画像","DE.Views.DocumentHolder.txtPasteSourceFormat":"元の書式付けを保存する","DE.Views.DocumentHolder.txtPercentage":"パーセンテージ","DE.Views.DocumentHolder.txtPressLink":"{0}キーを押しながらクリックしてリンク先を表示","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":"上付き文字の削除","DE.Views.DocumentHolder.txtScriptsAfter":"テキストの後のスクリプト","DE.Views.DocumentHolder.txtScriptsBefore":"テキストの前のスクリプト","DE.Views.DocumentHolder.txtShowBottomLimit":"下限を表示する","DE.Views.DocumentHolder.txtShowCloseBracket":"右大括弧を表示","DE.Views.DocumentHolder.txtShowDegree":"次数を表示","DE.Views.DocumentHolder.txtShowOpenBracket":"左大括弧の表示","DE.Views.DocumentHolder.txtShowPlaceholder":"プレースホルダーの表示","DE.Views.DocumentHolder.txtShowTopLimit":"上限を表示する","DE.Views.DocumentHolder.txtSourceEmbed":"元の書式を保持&ワークブックを埋め込む","DE.Views.DocumentHolder.txtSourceLink":"ソース形式とリンクデータを維持する","DE.Views.DocumentHolder.txtSquare":"四角","DE.Views.DocumentHolder.txtStretchBrackets":"括弧の拡大","DE.Views.DocumentHolder.txtThrough":"内部","DE.Views.DocumentHolder.txtTight":"外周","DE.Views.DocumentHolder.txtTop":"トップ","DE.Views.DocumentHolder.txtTopAndBottom":"上と下","DE.Views.DocumentHolder.txtUnderbar":"テキストの下のバー","DE.Views.DocumentHolder.txtUngroup":"グループ化解除","DE.Views.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、端末やデータに損害を与える可能性があります。コンピュータを保護するため、信頼できるソースからのリンクのみをクリックしてください。この場所は安全でない可能性があります:

{0}

続行しますか?","DE.Views.DocumentHolder.unicodeText":"Unicode","DE.Views.DocumentHolder.updateStyleText":"%1スタイルの更新","DE.Views.DocumentHolder.vertAlignText":"垂直方向の配置","DE.Views.DropcapSettingsAdvanced.strBorders":"罫線と塗りつぶし","DE.Views.DropcapSettingsAdvanced.strDropcap":"ドロップキャップ","DE.Views.DropcapSettingsAdvanced.strMargins":"余白","DE.Views.DropcapSettingsAdvanced.textAlign":"配置","DE.Views.DropcapSettingsAdvanced.textAtLeast":"最小","DE.Views.DropcapSettingsAdvanced.textAuto":"自動","DE.Views.DropcapSettingsAdvanced.textBackColor":"背景色","DE.Views.DropcapSettingsAdvanced.textBorderColor":"線の色","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"図表をクリックするか、ボタンで枠を選択します。","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"罫線のサイズ","DE.Views.DropcapSettingsAdvanced.textBottom":"下","DE.Views.DropcapSettingsAdvanced.textCenter":"中央揃え","DE.Views.DropcapSettingsAdvanced.textColumn":"列","DE.Views.DropcapSettingsAdvanced.textDistance":"文字列との間隔","DE.Views.DropcapSettingsAdvanced.textExact":"固定値","DE.Views.DropcapSettingsAdvanced.textFlow":"フローフレーム","DE.Views.DropcapSettingsAdvanced.textFont":"フォント","DE.Views.DropcapSettingsAdvanced.textFrame":"フレーム","DE.Views.DropcapSettingsAdvanced.textHeight":"高さ","DE.Views.DropcapSettingsAdvanced.textHorizontal":"水平","DE.Views.DropcapSettingsAdvanced.textInline":"インラインフレーム","DE.Views.DropcapSettingsAdvanced.textInMargin":"余白","DE.Views.DropcapSettingsAdvanced.textInText":"テキスト","DE.Views.DropcapSettingsAdvanced.textLeft":"左","DE.Views.DropcapSettingsAdvanced.textMargin":"余白","DE.Views.DropcapSettingsAdvanced.textMove":"文字列と一緒に移動する","DE.Views.DropcapSettingsAdvanced.textNone":"なし","DE.Views.DropcapSettingsAdvanced.textPage":"ページ","DE.Views.DropcapSettingsAdvanced.textParagraph":"段落","DE.Views.DropcapSettingsAdvanced.textParameters":"パラメーター","DE.Views.DropcapSettingsAdvanced.textPosition":"位置","DE.Views.DropcapSettingsAdvanced.textRelative":"基準","DE.Views.DropcapSettingsAdvanced.textRight":"右","DE.Views.DropcapSettingsAdvanced.textRowHeight":"行の高さ","DE.Views.DropcapSettingsAdvanced.textTitle":"ドロップキャップの詳細設定","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"フレーム - 詳細設定","DE.Views.DropcapSettingsAdvanced.textTop":"トップ","DE.Views.DropcapSettingsAdvanced.textVertical":"垂直","DE.Views.DropcapSettingsAdvanced.textWidth":"幅","DE.Views.DropcapSettingsAdvanced.tipFontName":"フォント","DE.Views.EditListItemDialog.textDisplayName":"表示名","DE.Views.EditListItemDialog.textNameError":"表示名は空白にできません。","DE.Views.EditListItemDialog.textValue":"値","DE.Views.EditListItemDialog.textValueError":"同じ値の項目がすでに存在します。","DE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","DE.Views.FileMenu.btnBackCaption":"ファイルの場所を開く","DE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","DE.Views.FileMenu.btnCloseMenuCaption":"戻る","DE.Views.FileMenu.btnCreateNewCaption":"新規作成","DE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","DE.Views.FileMenu.btnExitCaption":"終了","DE.Views.FileMenu.btnFileOpenCaption":"開く","DE.Views.FileMenu.btnHelpCaption":"ヘルプ","DE.Views.FileMenu.btnHistoryCaption":"バージョン履歴","DE.Views.FileMenu.btnInfoCaption":"詳細情報","DE.Views.FileMenu.btnPrintCaption":"印刷","DE.Views.FileMenu.btnProtectCaption":"保護する","DE.Views.FileMenu.btnRecentFilesCaption":"最近開いた","DE.Views.FileMenu.btnRenameCaption":"名前を変更する","DE.Views.FileMenu.btnReturnCaption":"文書に戻る","DE.Views.FileMenu.btnRightsCaption":"アクセス許可","DE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","DE.Views.FileMenu.btnSaveCaption":"保存","DE.Views.FileMenu.btnSaveCopyAsCaption":"コピーを別名で保存する","DE.Views.FileMenu.btnSettingsCaption":"詳細設定","DE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","DE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","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.txtAddProperty":"プロパティの追加","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.txtCommon":"共通","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成済み","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文書の情報","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"ドキュメントのプロパティ","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Web表示用に最適化","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"読み込み中...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"所有者","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"ページ","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"ページのサイズ","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"段落","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDFメーカー","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"タグ付きPDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDFのバージョン","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"場所","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"プロパティ","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"このタイトルのプロパティはすでに存在します","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.txtTags":"タグ","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロード済み","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"単語","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス許可","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス許可の変更","DE.Views.FileMenuPanels.DocumentRights.txtRights":"権利を有する者","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"警告","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"パスワード付きで","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"文書を保護する","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"署名付きで","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有効な署名が追加されています。
文書は編集から保護されています。","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"
見えないデジタル署名を追加することで、文書の整合性を確保します。","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"ドキュメントを編集","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"編集すると、文書から署名が削除されます。
続行しますか?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"このドキュメントはパスワードで保護されています","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"このドキュメントをパスワードで暗号化する","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"この文書には署名が必要です。","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有効な署名がドキュメントに追加されました。 ドキュメントは編集されないように保護されています。","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。","DE.Views.FileMenuPanels.ProtectDoc.txtView":"署名の表示","DE.Views.FileMenuPanels.Settings.okButtonText":"適用する","DE.Views.FileMenuPanels.Settings.strChinese":"中国語","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同編集のモード","DE.Views.FileMenuPanels.Settings.strDocContent":"ドキュメントの内容","DE.Views.FileMenuPanels.Settings.strFast":"高速","DE.Views.FileMenuPanels.Settings.strFontRender":"フォントヒンティング","DE.Views.FileMenuPanels.Settings.strFontSizeType":"フォントサイズのリストで最初に表示","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"大文字がある言葉を無視する","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"数字のある単語は無視する","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"キーボードショートカット","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"マクロの設定","DE.Views.FileMenuPanels.Settings.strNumeral":"数字形式","DE.Views.FileMenuPanels.Settings.strPasteButton":"貼り付けるときに[貼り付けオプション]ボタンを表示する","DE.Views.FileMenuPanels.Settings.strRTLSupport":"RTLインターフェース","DE.Views.FileMenuPanels.Settings.strShowChanges":"リアルタイム共同編集の変更表示モード","DE.Views.FileMenuPanels.Settings.strShowComments":"テキストにコメントを表示する","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"他のユーザーの変更点を表示する","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"解決済みコメントを表示する","DE.Views.FileMenuPanels.Settings.strStrict":"厳格","DE.Views.FileMenuPanels.Settings.strTabStyle":"タブのスタイル","DE.Views.FileMenuPanels.Settings.strTheme":"インターフェイスのテーマ","DE.Views.FileMenuPanels.Settings.strUnit":"測定単位","DE.Views.FileMenuPanels.Settings.strWestern":"西洋","DE.Views.FileMenuPanels.Settings.strZoom":"デフォルトのズーム値","DE.Views.FileMenuPanels.Settings.text10Minutes":"10分毎","DE.Views.FileMenuPanels.Settings.text30Minutes":"30分毎","DE.Views.FileMenuPanels.Settings.text5Minutes":"5分毎","DE.Views.FileMenuPanels.Settings.text60Minutes":"1時間毎","DE.Views.FileMenuPanels.Settings.textAlignGuides":"配置ガイド","DE.Views.FileMenuPanels.Settings.textAutoRecover":"自動回復情報を保存する","DE.Views.FileMenuPanels.Settings.textAutoSave":"自動保存","DE.Views.FileMenuPanels.Settings.textDisabled":"無効","DE.Views.FileMenuPanels.Settings.textFill":"塗りつぶし","DE.Views.FileMenuPanels.Settings.textForceSave":"中間バージョンの保存","DE.Views.FileMenuPanels.Settings.textLine":"線","DE.Views.FileMenuPanels.Settings.textMinute":"1分毎","DE.Views.FileMenuPanels.Settings.textOldVersions":"DOCXとして保存する場合は、MS Wordの古いバージョンと互換性のあるファイルにしてください","DE.Views.FileMenuPanels.Settings.textSmartSelection":"スマートな段落選択を使用する","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"詳細設定","DE.Views.FileMenuPanels.Settings.txtAll":"全て表示","DE.Views.FileMenuPanels.Settings.txtAppearance":"外観","DE.Views.FileMenuPanels.Settings.txtArabic":"アラビア語","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.txtCollaboration":"共同編集","DE.Views.FileMenuPanels.Settings.txtContext":"コンテキスト","DE.Views.FileMenuPanels.Settings.txtCustomize":"カスタマイズ","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","DE.Views.FileMenuPanels.Settings.txtDarkMode":"ドキュメントをダークモードに変更","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"編集と保存","DE.Views.FileMenuPanels.Settings.txtFastTip":"リアルタイムの共同編集 すべての変更は自動的に保存されます","DE.Views.FileMenuPanels.Settings.txtFitPage":"ページに合わせる","DE.Views.FileMenuPanels.Settings.txtFitWidth":"幅に合わせる","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"漢字","DE.Views.FileMenuPanels.Settings.txtHindi":"ヒンディー語","DE.Views.FileMenuPanels.Settings.txtInch":"インチ","DE.Views.FileMenuPanels.Settings.txtLast":"最後の表示","DE.Views.FileMenuPanels.Settings.txtLastUsed":"最後に使用した項目","DE.Views.FileMenuPanels.Settings.txtMac":"OS Xとして","DE.Views.FileMenuPanels.Settings.txtNative":"ネイティブ","DE.Views.FileMenuPanels.Settings.txtNone":"表示なし","DE.Views.FileMenuPanels.Settings.txtProofing":"校正","DE.Views.FileMenuPanels.Settings.txtPt":"ポイント","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"クイックプリントボタンをエディタヘッダーに表示","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","DE.Views.FileMenuPanels.Settings.txtRunMacros":"全てを有効にする","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"全てのマクロを有効にして、通知しない","DE.Views.FileMenuPanels.Settings.txtScreenReader":"スクリーンリーダーのサポートをオンにする","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"変更履歴を表示する","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"スペルチェック","DE.Views.FileMenuPanels.Settings.txtStopMacros":"全てを無効にする","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"全てのマクロを無効にして、通知しない","DE.Views.FileMenuPanels.Settings.txtStrictTip":"「保存」ボタンを使用して、あなたや他人が行った変更を同期させることができます","DE.Views.FileMenuPanels.Settings.txtTabBack":"ツールバーの色をタブの背景に使う","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーを使用します","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"通知を表示する","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"全てのマクロを無効にして、通知する","DE.Views.FileMenuPanels.Settings.txtWin":"Windowsとして","DE.Views.FileMenuPanels.Settings.txtWorkspace":"ワークスペース","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","DE.Views.FormSettings.textAddRole":"受取人を追加","DE.Views.FormSettings.textAlways":"常時","DE.Views.FormSettings.textAnyone":"誰でも","DE.Views.FormSettings.textAspect":"縦横比の固定","DE.Views.FormSettings.textAtLeast":"最小","DE.Views.FormSettings.textAuto":"オート","DE.Views.FormSettings.textAutofit":"自動調整","DE.Views.FormSettings.textBackgroundColor":"背景色","DE.Views.FormSettings.textCheckbox":"チェックボックス","DE.Views.FormSettings.textCheckDefault":"チェックボックスは既定でチェックされている","DE.Views.FormSettings.textColor":"線の色","DE.Views.FormSettings.textComb":"文字の組み合わせ","DE.Views.FormSettings.textCombobox":"コンボボックス","DE.Views.FormSettings.textComplex":"複合フィールド","DE.Views.FormSettings.textConnected":"フィールド接続済み","DE.Views.FormSettings.textCreditCard":"クレジットカード番号(例:4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"「日付&時間」フィールド","DE.Views.FormSettings.textDateFormat":"日付の表示形式","DE.Views.FormSettings.textDefValue":"既定値","DE.Views.FormSettings.textDelete":"削除する","DE.Views.FormSettings.textDigits":"数値","DE.Views.FormSettings.textDisconnect":"切断する","DE.Views.FormSettings.textDropDown":"ドロップダウン","DE.Views.FormSettings.textExact":"固定値","DE.Views.FormSettings.textField":"テキストフィールド","DE.Views.FormSettings.textFillRoles":"このフィールドは、誰が記入する必要がありますか?","DE.Views.FormSettings.textFixed":"固定サイズのフィールド","DE.Views.FormSettings.textFormat":"フォーマット","DE.Views.FormSettings.textFormatSymbols":"使用可能なシンボル","DE.Views.FormSettings.textFromFile":"ファイルから","DE.Views.FormSettings.textFromStorage":"ストレージから","DE.Views.FormSettings.textFromUrl":"URLから","DE.Views.FormSettings.textGroupKey":"グループキー","DE.Views.FormSettings.textImage":"画像","DE.Views.FormSettings.textKey":"キー","DE.Views.FormSettings.textLabel":"ラベル","DE.Views.FormSettings.textLang":"言語","DE.Views.FormSettings.textLetters":"文字","DE.Views.FormSettings.textLock":"ロックする","DE.Views.FormSettings.textMask":"任意のマスク","DE.Views.FormSettings.textMaxChars":"文字の制限","DE.Views.FormSettings.textMulti":"複数行のフィールド","DE.Views.FormSettings.textNever":"一度もない","DE.Views.FormSettings.textNoBorder":"枠線なし","DE.Views.FormSettings.textNone":"なし","DE.Views.FormSettings.textPhone1":"電話番号(例:(123) 456-7890)","DE.Views.FormSettings.textPhone2":"電話番号(例:+447911123456)","DE.Views.FormSettings.textPlaceholder":"プレースホルダ","DE.Views.FormSettings.textRadiobox":"ラジオボタン","DE.Views.FormSettings.textRadioChoice":"ラジオボタンの選択","DE.Views.FormSettings.textRadioDefault":"ボタンが既定でチェックされている","DE.Views.FormSettings.textReg":"正規表現","DE.Views.FormSettings.textRequired":"必須","DE.Views.FormSettings.textScale":"スケーリングのタイミング","DE.Views.FormSettings.textSelectImage":"画像を選択する","DE.Views.FormSettings.textSignature":"署名","DE.Views.FormSettings.textTag":"タグ","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.textUKPassport":"英国パスポート番号(例:925665416)","DE.Views.FormSettings.textUnlock":"ロックを解除する","DE.Views.FormSettings.textUSSSN":"アメリカのSSN(例:123-45-6789)","DE.Views.FormSettings.textValue":"値のオプション","DE.Views.FormSettings.textWidth":"セルの幅","DE.Views.FormSettings.textZipCodeUS":"アメリカの郵便番号(例:92663、または 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"チェックボックス","DE.Views.FormsTab.capBtnComboBox":"コンボボックス","DE.Views.FormsTab.capBtnComplex":"複合フィールド","DE.Views.FormsTab.capBtnDownloadForm":"pdfとしてダウンロードする","DE.Views.FormsTab.capBtnDropDown":"ドロップダウン","DE.Views.FormsTab.capBtnEmail":"メールアドレス","DE.Views.FormsTab.capBtnFinal":"最終版としてマークする","DE.Views.FormsTab.capBtnImage":"画像","DE.Views.FormsTab.capBtnManager":"受信者管理","DE.Views.FormsTab.capBtnNext":"次のフィールド","DE.Views.FormsTab.capBtnPhone":"電話番号","DE.Views.FormsTab.capBtnPrev":"前のフィールド","DE.Views.FormsTab.capBtnRadioBox":"ラジオボタン","DE.Views.FormsTab.capBtnSaveForm":"pdfとして保存","DE.Views.FormsTab.capBtnSaveFormDesktop":"名前を付けて保存","DE.Views.FormsTab.capBtnSignature":"署名","DE.Views.FormsTab.capBtnSubmit":"記入&提出","DE.Views.FormsTab.capBtnText":"テキストフィールド","DE.Views.FormsTab.capBtnView":"プレビュー","DE.Views.FormsTab.capCreditCard":"クレジットカード","DE.Views.FormsTab.capDateTime":"日付と時間","DE.Views.FormsTab.capZipCode":"郵便番号","DE.Views.FormsTab.helpTextFillStatus":"このフォームは役割ベースの入力が可能です。ステータスボタンをクリックして入力段階を確認してください。","DE.Views.FormsTab.textAddRole":"受取人を追加","DE.Views.FormsTab.textAnyone":"誰でも","DE.Views.FormsTab.textClear":"フィールドをクリアする","DE.Views.FormsTab.textClearFields":"すべてのフィールドをクリアする","DE.Views.FormsTab.textCreateForm":"フィールドを追加して、記入可能なPDF文書を作成する","DE.Views.FormsTab.textFilled":"記入済み","DE.Views.FormsTab.textFillFor":"次のフィールドを挿入する:","DE.Views.FormsTab.textGotIt":"OK","DE.Views.FormsTab.textHighlight":"ハイライト設定","DE.Views.FormsTab.textNoHighlight":"ハイライト表示なし","DE.Views.FormsTab.textRequired":"フォームを送信するには、すべての必須項目を入力してください。","DE.Views.FormsTab.textSubmited":"フォームの送信成功","DE.Views.FormsTab.textSubmitOk":"PDFフォームが「完成」セクションに保存されました。","DE.Views.FormsTab.tipCheckBox":"チェックボックスを挿入する","DE.Views.FormsTab.tipComboBox":"コンボボックスを挿入","DE.Views.FormsTab.tipComplexField":"複合フィールドを挿入する","DE.Views.FormsTab.tipCreateField":"フィールドを作成するには、ツールバーで希望のフィールドタイプを選択し、それをクリックします。ドキュメントにフィールドが表示されます。","DE.Views.FormsTab.tipCreditCard":"クレジットカード番号の入力","DE.Views.FormsTab.tipDateTime":"日付と時間の入力","DE.Views.FormsTab.tipDownloadForm":"記入可能なPDF文書としてファイルをダウンロードする","DE.Views.FormsTab.tipDropDown":"ドロップダウンリストを挿入","DE.Views.FormsTab.tipEmailField":"メールアドレスを挿入する","DE.Views.FormsTab.tipFieldSettings":"右サイドバーで選択したフィールドを設定できます。このアイコンをクリックすると、フィールド設定が開きます。","DE.Views.FormsTab.tipFieldsLink":"フィールドパラメータについて","DE.Views.FormsTab.tipFinalForm":"最終版としてマークする","DE.Views.FormsTab.tipFirstPage":"最初のページへ","DE.Views.FormsTab.tipFixedText":"固定テキストフィールドの挿入","DE.Views.FormsTab.tipFormGroupKey":"ラジオボタンをグループ化することで、入力プロセスを高速化します。同じ名前の選択肢は同期されます。ユーザーはグループから1つのラジオボタンにのみチェックを入れることができます。","DE.Views.FormsTab.tipFormKey":"フィールドまたはフィールドのグループにキーを割り当てることができます。ユーザーがデータを入力すると、同じキーを持つすべてのフィールドにコピーされます。","DE.Views.FormsTab.tipHelpRoles":"受信者管理機能を使用して、フィールドを目的に応じてグループ化し、担当チームメンバーを割り当ててください。","DE.Views.FormsTab.tipImageField":"画像の挿入","DE.Views.FormsTab.tipInlineText":"インラインテキストフィールドの挿入","DE.Views.FormsTab.tipLastPage":"最後のページへ","DE.Views.FormsTab.tipManager":"受信者管理","DE.Views.FormsTab.tipNextForm":"次のフィールドに移動する","DE.Views.FormsTab.tipNextPage":"次のページへ","DE.Views.FormsTab.tipPhoneField":"電話番号を挿入する","DE.Views.FormsTab.tipPrevForm":"前のフィールドに移動する","DE.Views.FormsTab.tipPrevPage":"前のページへ","DE.Views.FormsTab.tipRadioBox":"ラジオボタンの挿入\t","DE.Views.FormsTab.tipRolesLink":"受信者について詳しく","DE.Views.FormsTab.tipSaveFile":"「フォームとして保存」をクリックすると、記入可能な形式でフォームが保存されます。","DE.Views.FormsTab.tipSaveForm":"ファイルをPDFの記入式ドキュメントとして保存","DE.Views.FormsTab.tipSignField":"署名を挿入する","DE.Views.FormsTab.tipSubmit":"フォームを送信","DE.Views.FormsTab.tipTextField":"テキストフィールドを挿入","DE.Views.FormsTab.tipViewForm":"プレビュー","DE.Views.FormsTab.tipZipCode":"郵便番号の挿入","DE.Views.FormsTab.txtFixedDesc":"固定テキストフィールドの挿入","DE.Views.FormsTab.txtFixedText":"固定","DE.Views.FormsTab.txtInlineDesc":"インラインテキストフィールドの挿入","DE.Views.FormsTab.txtInlineText":"インライン","DE.Views.FormsTab.txtSignedForm":"この文書は署名されているため、編集することができません。","DE.Views.FormsTab.txtUntitled":"無題","DE.Views.HeaderFooterSettings.textBottomCenter":"中央下","DE.Views.HeaderFooterSettings.textBottomLeft":"左下","DE.Views.HeaderFooterSettings.textBottomPage":"ページの下部","DE.Views.HeaderFooterSettings.textBottomRight":"右下","DE.Views.HeaderFooterSettings.textDiffFirst":"先頭ページのみ別指定\t","DE.Views.HeaderFooterSettings.textDiffOdd":"奇数/偶数ページ別指定","DE.Views.HeaderFooterSettings.textFrom":"から開始","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"下からのフッター位置","DE.Views.HeaderFooterSettings.textHeaderFromTop":"上からのヘッダー位置","DE.Views.HeaderFooterSettings.textInsertCurrent":"現在の位置に挿入","DE.Views.HeaderFooterSettings.textNumFormat":"数値の書式","DE.Views.HeaderFooterSettings.textOptions":"オプション","DE.Views.HeaderFooterSettings.textPageNum":"ページ番号の挿入","DE.Views.HeaderFooterSettings.textPageNumbering":"ページ番号","DE.Views.HeaderFooterSettings.textPosition":"位置","DE.Views.HeaderFooterSettings.textPrev":"前のセクションから継続","DE.Views.HeaderFooterSettings.textSameAs":"前と同じ​​ヘッダー/フッター","DE.Views.HeaderFooterSettings.textTopCenter":"上中央","DE.Views.HeaderFooterSettings.textTopLeft":"左上","DE.Views.HeaderFooterSettings.textTopPage":"ページの上部","DE.Views.HeaderFooterSettings.textTopRight":"右上","DE.Views.HeaderFooterSettings.txtMoreTypes":"その他の種類","DE.Views.HeaderFooterTab.capBtnDateTime":"日付&時刻","DE.Views.HeaderFooterTab.capBtnInsField":"フィールド","DE.Views.HeaderFooterTab.capBtnInsImage":"画像","DE.Views.HeaderFooterTab.capCurrentPos":"現在の場所へ","DE.Views.HeaderFooterTab.capFooterBottom":"下からのフッター位置","DE.Views.HeaderFooterTab.capFormatNums":"ページ番号","DE.Views.HeaderFooterTab.capHeaderTop":"上からのヘッダー位置","DE.Views.HeaderFooterTab.capNumOfPages":"ページ数","DE.Views.HeaderFooterTab.mniImageFromFile":"ファイルからの画像","DE.Views.HeaderFooterTab.mniImageFromStorage":"ストレージからの画像","DE.Views.HeaderFooterTab.mniImageFromUrl":"URLからの画像","DE.Views.HeaderFooterTab.tipCloseTab":"タブを閉じる","DE.Views.HeaderFooterTab.tipDateTime":"現在の日付と時刻を挿入","DE.Views.HeaderFooterTab.tipHeaderFooter":"ヘッダーまたはフッターの編集","DE.Views.HeaderFooterTab.tipInsertImage":"画像を挿入","DE.Views.HeaderFooterTab.tipInsField":"フィールドの挿入","DE.Views.HeaderFooterTab.tipNumOfPages":"ページ数","DE.Views.HeaderFooterTab.tipPageNumbering":"ページ番号","DE.Views.HeaderFooterTab.txtCloseTab":"閉じる","DE.Views.HeaderFooterTab.txtDiffFirst":"先頭ページのみ別指定\t","DE.Views.HeaderFooterTab.txtDiffOddEven":"奇数/偶数ページ別指定","DE.Views.HeaderFooterTab.txtEditFooter":"フッターの編集","DE.Views.HeaderFooterTab.txtEditHeader":"ヘッダーの編集","DE.Views.HeaderFooterTab.txtHeaderFooter":"ヘッダー/フッター","DE.Views.HeaderFooterTab.txtPageNumbering":"ページ番号","DE.Views.HeaderFooterTab.txtRemoveFooter":"フッターの削除","DE.Views.HeaderFooterTab.txtRemoveHeader":"ヘッダーの削除","DE.Views.HeaderFooterTab.txtSameAs":"前に結合する","DE.Views.HyperlinkSettingsDialog.textDefault":"選択されたテキストフラグメント","DE.Views.HyperlinkSettingsDialog.textDisplay":"表示する","DE.Views.HyperlinkSettingsDialog.textExternal":"外部リンク","DE.Views.HyperlinkSettingsDialog.textInternal":"文書内の場所","DE.Views.HyperlinkSettingsDialog.textSelectFile":"ファイル選択","DE.Views.HyperlinkSettingsDialog.textTitle":"リンク設定","DE.Views.HyperlinkSettingsDialog.textTooltip":"ヒントのテキスト:","DE.Views.HyperlinkSettingsDialog.textUrl":"リンク先","DE.Views.HyperlinkSettingsDialog.txtBeginning":"文書の先頭","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.HyperlinkSettingsDialog.txtUrlPlaceholder":"ウェブアドレスを入力するか、ファイルを選択してください","DE.Views.HyphenationDialog.textAuto":"文書に自動的にハイフンを入れる","DE.Views.HyphenationDialog.textCaps":"CAPSでハイフンする","DE.Views.HyphenationDialog.textLimit":"連続するハイフンを制限する:","DE.Views.HyphenationDialog.textNoLimit":"制限なし","DE.Views.HyphenationDialog.textTitle":"ハイフン","DE.Views.HyphenationDialog.textZone":"自動ハイフンの領域","DE.Views.ImageSettings.strTransparency":"不透明度","DE.Views.ImageSettings.textAdvanced":"詳細設定を表示","DE.Views.ImageSettings.textCrop":"トリミング","DE.Views.ImageSettings.textCropFill":"塗りつぶし","DE.Views.ImageSettings.textCropFit":"収める","DE.Views.ImageSettings.textCropToShape":"図形に合わせてトリミング","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":"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.textRecentlyUsed":"最近使った項目","DE.Views.ImageSettings.textResetCrop":"トリミングをリセット","DE.Views.ImageSettings.textRotate90":"90度回転","DE.Views.ImageSettings.textRotation":"回転","DE.Views.ImageSettings.textSize":"サイズ","DE.Views.ImageSettings.textWidth":"幅","DE.Views.ImageSettings.textWrap":"折り返しの種類と配置","DE.Views.ImageSettings.txtBehind":"テキストの背後に","DE.Views.ImageSettings.txtInFront":"テキストの前に","DE.Views.ImageSettings.txtInline":"テキストに沿って","DE.Views.ImageSettings.txtSquare":"四角","DE.Views.ImageSettings.txtThrough":"内部","DE.Views.ImageSettings.txtTight":"外周","DE.Views.ImageSettings.txtTopAndBottom":"上と下","DE.Views.ImageSettingsAdvanced.strMargins":"テキストの埋め込み文字","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"固定","DE.Views.ImageSettingsAdvanced.textAlignment":"配置","DE.Views.ImageSettingsAdvanced.textAlt":"代替テキスト","DE.Views.ImageSettingsAdvanced.textAltDescription":"説明","DE.Views.ImageSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","DE.Views.ImageSettingsAdvanced.textAltTitle":"タイトル","DE.Views.ImageSettingsAdvanced.textAngle":"角度","DE.Views.ImageSettingsAdvanced.textArrows":"矢印","DE.Views.ImageSettingsAdvanced.textAspectRatio":"縦横比の固定","DE.Views.ImageSettingsAdvanced.textAuto":"自動","DE.Views.ImageSettingsAdvanced.textAutofit":"自動調整","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"軸との交点","DE.Views.ImageSettingsAdvanced.textAxisPos":"軸の位置","DE.Views.ImageSettingsAdvanced.textAxisTitle":"タイトル","DE.Views.ImageSettingsAdvanced.textBase":"ベース","DE.Views.ImageSettingsAdvanced.textBeginSize":"開始サイズ","DE.Views.ImageSettingsAdvanced.textBeginStyle":"開始スタイル","DE.Views.ImageSettingsAdvanced.textBelow":"基準","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"目盛りの間","DE.Views.ImageSettingsAdvanced.textBevel":"斜角","DE.Views.ImageSettingsAdvanced.textBillions":"十億","DE.Views.ImageSettingsAdvanced.textBottom":"下","DE.Views.ImageSettingsAdvanced.textBottomMargin":"下余白","DE.Views.ImageSettingsAdvanced.textBtnWrap":"テキストの折り返し\t","DE.Views.ImageSettingsAdvanced.textCapType":"線の先端","DE.Views.ImageSettingsAdvanced.textCategoryName":"カテゴリ名","DE.Views.ImageSettingsAdvanced.textCenter":"中央揃え","DE.Views.ImageSettingsAdvanced.textCharacter":"文字","DE.Views.ImageSettingsAdvanced.textChartTitle":"チャートのタイトル","DE.Views.ImageSettingsAdvanced.textColumn":"列","DE.Views.ImageSettingsAdvanced.textCross":"十字","DE.Views.ImageSettingsAdvanced.textCustom":"カスタム","DE.Views.ImageSettingsAdvanced.textDataLabels":"データラベル","DE.Views.ImageSettingsAdvanced.textDistance":"文字列との間隔","DE.Views.ImageSettingsAdvanced.textEndSize":"終了サイズ","DE.Views.ImageSettingsAdvanced.textEndStyle":"終了スタイル","DE.Views.ImageSettingsAdvanced.textFit":"幅に合わせる","DE.Views.ImageSettingsAdvanced.textFixed":"固定","DE.Views.ImageSettingsAdvanced.textFlat":"フラット","DE.Views.ImageSettingsAdvanced.textFlipped":"反転","DE.Views.ImageSettingsAdvanced.textFormat":"ラベルの書式","DE.Views.ImageSettingsAdvanced.textGridLines":"グリッド線","DE.Views.ImageSettingsAdvanced.textHeight":"高さ","DE.Views.ImageSettingsAdvanced.textHideAxis":"軸を非表示","DE.Views.ImageSettingsAdvanced.textHigh":"高い","DE.Views.ImageSettingsAdvanced.textHorAxis":"横軸","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"二次横軸","DE.Views.ImageSettingsAdvanced.textHorizontal":"水平","DE.Views.ImageSettingsAdvanced.textHorizontally":"水平に","DE.Views.ImageSettingsAdvanced.textHundredMil":"100 000 000","DE.Views.ImageSettingsAdvanced.textHundreds":"百","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100 000","DE.Views.ImageSettingsAdvanced.textIn":"中","DE.Views.ImageSettingsAdvanced.textInnerBottom":"内部(下)","DE.Views.ImageSettingsAdvanced.textInnerTop":"内部(上)","DE.Views.ImageSettingsAdvanced.textJoinType":"結合の種類","DE.Views.ImageSettingsAdvanced.textKeepRatio":"一定の比率","DE.Views.ImageSettingsAdvanced.textLabelDist":"軸ラベルの距離","DE.Views.ImageSettingsAdvanced.textLabelInterval":"ラベルの間の間隔","DE.Views.ImageSettingsAdvanced.textLabelOptions":"ラベルのオプション","DE.Views.ImageSettingsAdvanced.textLabelPos":"ラベルの位置","DE.Views.ImageSettingsAdvanced.textLayout":"レイアウト","DE.Views.ImageSettingsAdvanced.textLeft":"左","DE.Views.ImageSettingsAdvanced.textLeftMargin":"左余白","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"左のオーバーレイ","DE.Views.ImageSettingsAdvanced.textLegendBottom":"下","DE.Views.ImageSettingsAdvanced.textLegendLeft":"左","DE.Views.ImageSettingsAdvanced.textLegendPos":"凡例","DE.Views.ImageSettingsAdvanced.textLegendRight":"右","DE.Views.ImageSettingsAdvanced.textLegendTop":"上","DE.Views.ImageSettingsAdvanced.textLine":"線","DE.Views.ImageSettingsAdvanced.textLines":"行","DE.Views.ImageSettingsAdvanced.textLineStyle":"線のスタイル","DE.Views.ImageSettingsAdvanced.textLogScale":"対数目盛","DE.Views.ImageSettingsAdvanced.textLow":"低","DE.Views.ImageSettingsAdvanced.textMajor":"メジャー","DE.Views.ImageSettingsAdvanced.textMajorMinor":"メジャーまたはマイナー","DE.Views.ImageSettingsAdvanced.textMajorType":"目盛の種類","DE.Views.ImageSettingsAdvanced.textManual":"マニュアル","DE.Views.ImageSettingsAdvanced.textMargin":"余白","DE.Views.ImageSettingsAdvanced.textMarkers":"マーカー","DE.Views.ImageSettingsAdvanced.textMarksInterval":"マークの間の間隔","DE.Views.ImageSettingsAdvanced.textMaxValue":"最大値","DE.Views.ImageSettingsAdvanced.textMillions":"百万","DE.Views.ImageSettingsAdvanced.textMinor":"マイナー","DE.Views.ImageSettingsAdvanced.textMinorType":"マイナー種類","DE.Views.ImageSettingsAdvanced.textMinValue":"最小値","DE.Views.ImageSettingsAdvanced.textMiter":"角","DE.Views.ImageSettingsAdvanced.textMove":"文字列と一緒に移動する","DE.Views.ImageSettingsAdvanced.textNextToAxis":"軸の隣","DE.Views.ImageSettingsAdvanced.textNone":"なし","DE.Views.ImageSettingsAdvanced.textNoOverlay":"オーバーレイなし","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"目盛","DE.Views.ImageSettingsAdvanced.textOptions":"オプション","DE.Views.ImageSettingsAdvanced.textOriginalSize":"実際のサイズ","DE.Views.ImageSettingsAdvanced.textOut":"外","DE.Views.ImageSettingsAdvanced.textOuterTop":"外側上部","DE.Views.ImageSettingsAdvanced.textOverlap":"オーバーラップを許可する","DE.Views.ImageSettingsAdvanced.textOverlay":"オーバーレイ","DE.Views.ImageSettingsAdvanced.textPage":"ページ","DE.Views.ImageSettingsAdvanced.textParagraph":"段落","DE.Views.ImageSettingsAdvanced.textPosition":"位置","DE.Views.ImageSettingsAdvanced.textPositionPc":"相対位置","DE.Views.ImageSettingsAdvanced.textRelative":"基準","DE.Views.ImageSettingsAdvanced.textRelativeWH":"相対的","DE.Views.ImageSettingsAdvanced.textResizeFit":"テキストに合わせて図形を調整","DE.Views.ImageSettingsAdvanced.textReverse":"軸を反転する","DE.Views.ImageSettingsAdvanced.textRight":"右","DE.Views.ImageSettingsAdvanced.textRightMargin":"右余白","DE.Views.ImageSettingsAdvanced.textRightOf":"基準","DE.Views.ImageSettingsAdvanced.textRightOverlay":"右オーバーレイ","DE.Views.ImageSettingsAdvanced.textRotated":"回転済み","DE.Views.ImageSettingsAdvanced.textRotation":"回転","DE.Views.ImageSettingsAdvanced.textRound":"円い","DE.Views.ImageSettingsAdvanced.textSeparator":"日付のラベルの区切り記号","DE.Views.ImageSettingsAdvanced.textSeriesName":"系列の名前","DE.Views.ImageSettingsAdvanced.textShape":"図形の設定","DE.Views.ImageSettingsAdvanced.textSize":"サイズ","DE.Views.ImageSettingsAdvanced.textSmooth":"スムーズ","DE.Views.ImageSettingsAdvanced.textSquare":"四角","DE.Views.ImageSettingsAdvanced.textStraight":"直線","DE.Views.ImageSettingsAdvanced.textTenMillions":"10 000 000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10 000","DE.Views.ImageSettingsAdvanced.textTextBox":"テキストボックス","DE.Views.ImageSettingsAdvanced.textThousands":"千","DE.Views.ImageSettingsAdvanced.textTickOptions":"ティックのオプション","DE.Views.ImageSettingsAdvanced.textTitle":"画像 - 詳細設定","DE.Views.ImageSettingsAdvanced.textTitleChart":"チャートー詳細設定","DE.Views.ImageSettingsAdvanced.textTitleShape":"図形 - 詳細設定","DE.Views.ImageSettingsAdvanced.textTop":"トップ","DE.Views.ImageSettingsAdvanced.textTopMargin":"上余白","DE.Views.ImageSettingsAdvanced.textTrillions":"兆","DE.Views.ImageSettingsAdvanced.textUnits":"表示単位","DE.Views.ImageSettingsAdvanced.textValue":"値","DE.Views.ImageSettingsAdvanced.textVertAxis":"縦軸","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"二次縦軸","DE.Views.ImageSettingsAdvanced.textVertical":"垂直","DE.Views.ImageSettingsAdvanced.textVertically":"縦に","DE.Views.ImageSettingsAdvanced.textWeightArrows":"太さ&矢印","DE.Views.ImageSettingsAdvanced.textWidth":"幅","DE.Views.ImageSettingsAdvanced.textWrap":"折り返しの種類と配置","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"テキストの背後に","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"テキストの前に","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"テキストに沿って","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"四角","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"内部","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"外周","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"上と下","DE.Views.LeftMenu.ariaLeftMenu":"左メニュー","DE.Views.LeftMenu.tipAbout":"詳細情報","DE.Views.LeftMenu.tipChat":"チャット","DE.Views.LeftMenu.tipComments":"コメント","DE.Views.LeftMenu.tipNavigation":"ナビゲーション","DE.Views.LeftMenu.tipOutline":"見出し","DE.Views.LeftMenu.tipPageThumbnails":"ページサムネイル","DE.Views.LeftMenu.tipPlugins":"プラグイン","DE.Views.LeftMenu.tipSearch":"検索","DE.Views.LeftMenu.tipSupport":"フィードバック&サポート","DE.Views.LeftMenu.tipTitles":"タイトル","DE.Views.LeftMenu.txtDeveloper":"開発者モード","DE.Views.LeftMenu.txtEditor":"ドキュメントエディタ","DE.Views.LeftMenu.txtLimit":"制限されたアクセス","DE.Views.LeftMenu.txtTrial":"試用モード","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":"このポイント以降","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.capBtnAddText":"テキスト追加","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.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.tipAddText":"見出しを目次に入れる","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.Links.txtDontShowTof":"目次に表示しない","DE.Views.Links.txtLevel":"レベル","DE.Views.ListIndentsDialog.textSpace":"スペース","DE.Views.ListIndentsDialog.textTab":"タブ文字","DE.Views.ListIndentsDialog.textTitle":"リストのインデントの調整","DE.Views.ListIndentsDialog.txtFollowBullet":"行頭文字後のシンボル","DE.Views.ListIndentsDialog.txtFollowNumber":"数字後のシンボル","DE.Views.ListIndentsDialog.txtIndent":"インデント","DE.Views.ListIndentsDialog.txtNone":"なし","DE.Views.ListIndentsDialog.txtPosBullet":"行頭文字の配置","DE.Views.ListIndentsDialog.txtPosNumber":"番号の配置","DE.Views.ListSettingsDialog.textAuto":"自動","DE.Views.ListSettingsDialog.textBold":"太字","DE.Views.ListSettingsDialog.textCenter":"中央揃え","DE.Views.ListSettingsDialog.textHide":"設定を非表示にする","DE.Views.ListSettingsDialog.textItalic":"斜体","DE.Views.ListSettingsDialog.textLeft":"左","DE.Views.ListSettingsDialog.textLevel":"レベル","DE.Views.ListSettingsDialog.textMore":"その他の設定を表示する","DE.Views.ListSettingsDialog.textPreview":"プレビュー","DE.Views.ListSettingsDialog.textRight":"右","DE.Views.ListSettingsDialog.textSelectLevel":"レベルの選択","DE.Views.ListSettingsDialog.textSpace":"スペース","DE.Views.ListSettingsDialog.textTab":"タブ文字","DE.Views.ListSettingsDialog.txtAlign":"配置","DE.Views.ListSettingsDialog.txtAlignAt":"位置","DE.Views.ListSettingsDialog.txtBullet":"箇条書き","DE.Views.ListSettingsDialog.txtColor":"色","DE.Views.ListSettingsDialog.txtFollow":"数字後のシンボル","DE.Views.ListSettingsDialog.txtFontName":"フォント","DE.Views.ListSettingsDialog.txtInclcudeLevel":"次のレベルの番号を含める:","DE.Views.ListSettingsDialog.txtIndent":"インデント","DE.Views.ListSettingsDialog.txtLikeText":"テキストのように","DE.Views.ListSettingsDialog.txtMoreTypes":"その他の種類","DE.Views.ListSettingsDialog.txtNewBullet":"新しい行頭文字","DE.Views.ListSettingsDialog.txtNone":"なし","DE.Views.ListSettingsDialog.txtNumFormatString":"数値の書式","DE.Views.ListSettingsDialog.txtRestart":"リストの作成を再開する","DE.Views.ListSettingsDialog.txtSize":"サイズ","DE.Views.ListSettingsDialog.txtStart":"開始:","DE.Views.ListSettingsDialog.txtSymbol":"記号","DE.Views.ListSettingsDialog.txtTabStop":"タブ位置の追加:","DE.Views.ListSettingsDialog.txtTitle":"リストの設定","DE.Views.ListSettingsDialog.txtType":"タイプ","DE.Views.ListTypesAdvanced.labelSelect":"リスト種類の選択","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"送信","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"テーマ","DE.Views.MailMergeEmailDlg.textAttachDocx":"DOCXとして添付する","DE.Views.MailMergeEmailDlg.textAttachPdf":"PDFとして添付する","DE.Views.MailMergeEmailDlg.textFileName":"ファイル名","DE.Views.MailMergeEmailDlg.textFormat":"メール形式","DE.Views.MailMergeEmailDlg.textFrom":"差出人","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"メッセージ","DE.Views.MailMergeEmailDlg.textSubject":"件名","DE.Views.MailMergeEmailDlg.textTitle":"メールに送信する","DE.Views.MailMergeEmailDlg.textTo":"宛先","DE.Views.MailMergeEmailDlg.textWarning":"警告!","DE.Views.MailMergeEmailDlg.textWarningMsg":"「送信」ボタンをクリックするとメール送信を中止することはできません。","DE.Views.MailMergeSettings.downloadMergeTitle":"結合中","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"結合に失敗しました。","DE.Views.MailMergeSettings.notcriticalErrorTitle":"警告","DE.Views.MailMergeSettings.textAddRecipients":"初めに数名の受信者をリストに追加する","DE.Views.MailMergeSettings.textAll":"全ての記録","DE.Views.MailMergeSettings.textCurrent":"現在の履歴","DE.Views.MailMergeSettings.textDataSource":"データソース","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"ダウンロード","DE.Views.MailMergeSettings.textEditData":"アドレス帳の編集","DE.Views.MailMergeSettings.textEmail":"メール","DE.Views.MailMergeSettings.textFrom":"から","DE.Views.MailMergeSettings.textGoToMail":"メールに移動","DE.Views.MailMergeSettings.textHighlight":"差し込みフィールドをハイライト","DE.Views.MailMergeSettings.textInsertField":"差し込みフィールドの挿入","DE.Views.MailMergeSettings.textMaxRecepients":"受信者の最大人数は100人です。","DE.Views.MailMergeSettings.textMerge":"結合","DE.Views.MailMergeSettings.textMergeFields":"差し込みフィールド","DE.Views.MailMergeSettings.textMergeTo":"に結合","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"保存","DE.Views.MailMergeSettings.textPreview":"プレビューの結果","DE.Views.MailMergeSettings.textReadMore":"続きを読む","DE.Views.MailMergeSettings.textSendMsg":"すべてのメールの準備ができました。 しばらくするとメッセージが送信されます。
配信速度はメールサーバにより変動します。
ドキュメントの作業を続けることも、閉じることもできます。操作終了後、登録したメールアドレスに通知が届きます。","DE.Views.MailMergeSettings.textTo":"へ","DE.Views.MailMergeSettings.txtFirst":"最初の記録へ","DE.Views.MailMergeSettings.txtFromToError":"「から」値は「まで」値より小さくする必要があります。","DE.Views.MailMergeSettings.txtLast":"最後の記録へ","DE.Views.MailMergeSettings.txtNext":"次の記録へ","DE.Views.MailMergeSettings.txtPrev":"以前の記録へ","DE.Views.MailMergeSettings.txtUntitled":"無題","DE.Views.MailMergeSettings.warnProcessMailMerge":"マージの開始に失敗しました","DE.Views.Navigation.strNavigate":"見出し","DE.Views.Navigation.txtClosePanel":"見出しを閉じる","DE.Views.Navigation.txtCollapse":"すべてを折りたたむ","DE.Views.Navigation.txtDemote":"下げる","DE.Views.Navigation.txtEmpty":"ドキュメントに見出しがありません。
目次に表示されるように、テキストに見出しスタイルを適用ください。","DE.Views.Navigation.txtEmptyItem":"空白の見出し","DE.Views.Navigation.txtEmptyViewer":"ドキュメントに見出しがありません。","DE.Views.Navigation.txtExpand":"すべてを拡張する","DE.Views.Navigation.txtExpandToLevel":"レベルまで拡張する","DE.Views.Navigation.txtFontSize":"フォントのサイズ","DE.Views.Navigation.txtHeadingAfter":"後の新しい見出し","DE.Views.Navigation.txtHeadingBefore":"前の新しい見出し","DE.Views.Navigation.txtLarge":"大","DE.Views.Navigation.txtMedium":"中","DE.Views.Navigation.txtNewHeading":"新しい小見出し","DE.Views.Navigation.txtPromote":"促進","DE.Views.Navigation.txtSelect":"コンテンツの選択","DE.Views.Navigation.txtSettings":"見出しの設定","DE.Views.Navigation.txtSmall":"小","DE.Views.Navigation.txtWrapHeadings":"長い見出しを折り返す","DE.Views.NoteSettingsDialog.textApply":"適用する","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":"形式","DE.Views.NoteSettingsDialog.textInsert":"挿入","DE.Views.NoteSettingsDialog.textLocation":"位置","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":"下","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":"余白","DE.Views.PageMarginsDialog.textTop":"トップ","DE.Views.PageMarginsDialog.txtMarginsH":"指定されたページの高さ対して、上下の余白が大きすぎます。","DE.Views.PageMarginsDialog.txtMarginsW":"ページ幅に対して左右の余白が広すぎます。","DE.Views.PageNumberingDlg.textFrom":"開始:","DE.Views.PageNumberingDlg.textMoreTypes":"その他の種類","DE.Views.PageNumberingDlg.textNumberFormat":"数値の書式","DE.Views.PageNumberingDlg.textPrev":"前のセクションから続ける","DE.Views.PageSizeDialog.textHeight":"高さ","DE.Views.PageSizeDialog.textPreset":"プリセット","DE.Views.PageSizeDialog.textTitle":"ページのサイズ","DE.Views.PageSizeDialog.textWidth":"幅","DE.Views.PageSizeDialog.txtCustom":"カスタム","DE.Views.PageThumbnails.textClosePanel":"ページサムネイルを閉じる","DE.Views.PageThumbnails.textHighlightVisiblePart":"表示されているページをハイライト","DE.Views.PageThumbnails.textPageThumbnails":"ページサムネイル","DE.Views.PageThumbnails.textThumbnailsSettings":"サムネイルの設定","DE.Views.PageThumbnails.textThumbnailsSize":"サムネイルサイズ","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.strSpacingAfter":"後に","DE.Views.ParagraphSettings.strSpacingBefore":"前","DE.Views.ParagraphSettings.textAdvanced":"詳細設定を表示","DE.Views.ParagraphSettings.textAt":"行間","DE.Views.ParagraphSettings.textAtLeast":"最小","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":"指定されたタブは、このフィールドに表示されます。","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"全ての英大文字","DE.Views.ParagraphSettingsAdvanced.strBorders":"罫線と塗りつぶし","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"前に改ページ","DE.Views.ParagraphSettingsAdvanced.strDirection":"方向","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"二重取り消し線","DE.Views.ParagraphSettingsAdvanced.strIndent":"インデント","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","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":"埋め込み文字","DE.Views.ParagraphSettingsAdvanced.strOrphan":"改ページ時 1 行残して段落を区切らない","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"フォント","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"インデント&行間隔","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"改行&改ページ","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"位置","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型英大文字","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"同じスタイルの場合は、段落間に間隔を追加しません。","DE.Views.ParagraphSettingsAdvanced.strSpacing":"間隔","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.textAll":"すべて","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"最小","DE.Views.ParagraphSettingsAdvanced.textAuto":"倍数","DE.Views.ParagraphSettingsAdvanced.textBackColor":"背景色","DE.Views.ParagraphSettingsAdvanced.textBodyText":"基本テキスト","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"線の色","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"図表をクリックするか、ボタンで枠を選択し、選択したスタイルを適用します。","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"罫線のサイズ","DE.Views.ParagraphSettingsAdvanced.textBottom":"下","DE.Views.ParagraphSettingsAdvanced.textCentered":"中央揃え済み","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"文字間隔","DE.Views.ParagraphSettingsAdvanced.textContext":"コンテキスト合字","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"コンテキストおよび随意合字","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"コンテキスト、履歴および随意合字","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"コンテキストおよび履歴合字","DE.Views.ParagraphSettingsAdvanced.textDefault":"デフォルトのタブ","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"左から右へ","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"右から左へ","DE.Views.ParagraphSettingsAdvanced.textDiscret":"随意合字","DE.Views.ParagraphSettingsAdvanced.textEffects":"エフェクト","DE.Views.ParagraphSettingsAdvanced.textExact":"固定値","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"最初の行","DE.Views.ParagraphSettingsAdvanced.textHanging":"ぶら下げ","DE.Views.ParagraphSettingsAdvanced.textHistorical":"歴史的合字","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"歴史的合字と随意合字","DE.Views.ParagraphSettingsAdvanced.textJustified":"両端揃え","DE.Views.ParagraphSettingsAdvanced.textLeader":"埋め草文字","DE.Views.ParagraphSettingsAdvanced.textLeft":"左","DE.Views.ParagraphSettingsAdvanced.textLevel":"レベル","DE.Views.ParagraphSettingsAdvanced.textLigatures":"合字","DE.Views.ParagraphSettingsAdvanced.textNone":"なし","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(なし)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"OpenTypeフォント特性","DE.Views.ParagraphSettingsAdvanced.textPosition":"位置","DE.Views.ParagraphSettingsAdvanced.textRemove":"削除","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"全てを削除","DE.Views.ParagraphSettingsAdvanced.textRight":"右","DE.Views.ParagraphSettingsAdvanced.textSet":"指定","DE.Views.ParagraphSettingsAdvanced.textSpacing":"間隔","DE.Views.ParagraphSettingsAdvanced.textStandard":"標準合字のみ","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"標準合字およびコンテキスト合字","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"標準、コンテキストおよび随意合字","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"標準、コンテキストおよび履歴合字","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"標準および随意合字","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"標準、履歴および随意合字","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"標準および履歴合字","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"中央揃え","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"タブの位置","DE.Views.ParagraphSettingsAdvanced.textTabRight":"右","DE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 詳細設定","DE.Views.ParagraphSettingsAdvanced.textTop":"トップ","DE.Views.ParagraphSettingsAdvanced.tipAll":"外枠とすべての内枠の線を設定","DE.Views.ParagraphSettingsAdvanced.tipBottom":"下罫線のみを設定","DE.Views.ParagraphSettingsAdvanced.tipInner":"水平方向の内側の線のみを設定","DE.Views.ParagraphSettingsAdvanced.tipLeft":"左縁だけを設定","DE.Views.ParagraphSettingsAdvanced.tipNone":"罫線の設定なし","DE.Views.ParagraphSettingsAdvanced.tipOuter":"外枠の罫線だけを設定","DE.Views.ParagraphSettingsAdvanced.tipRight":"右罫線だけを設定","DE.Views.ParagraphSettingsAdvanced.tipTop":"上罫線だけを設定","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"自動","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"枠線なし","DE.Views.PrintWithPreview.textMarginsLast":"最後に適用した設定","DE.Views.PrintWithPreview.textMarginsModerate":"中","DE.Views.PrintWithPreview.textMarginsNarrow":"狭い","DE.Views.PrintWithPreview.textMarginsNormal":"標準","DE.Views.PrintWithPreview.textMarginsWide":"広い","DE.Views.PrintWithPreview.txtAllPages":"全ページ","DE.Views.PrintWithPreview.txtAuto":"自動","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"白黒印刷","DE.Views.PrintWithPreview.txtBothSides":"両面印刷","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"長辺を綴じる","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"短辺を綴じる","DE.Views.PrintWithPreview.txtBottom":"下","DE.Views.PrintWithPreview.txtColorPrinting":"カラー印刷","DE.Views.PrintWithPreview.txtCopies":"コピー","DE.Views.PrintWithPreview.txtCurrentPage":"現在のページ","DE.Views.PrintWithPreview.txtCustom":"ユーザー設定","DE.Views.PrintWithPreview.txtCustomPages":"カスタム印刷","DE.Views.PrintWithPreview.txtLandscape":"横","DE.Views.PrintWithPreview.txtLeft":"左","DE.Views.PrintWithPreview.txtMargins":"余白","DE.Views.PrintWithPreview.txtOf":"{0}から","DE.Views.PrintWithPreview.txtOneSide":"片面印刷","DE.Views.PrintWithPreview.txtOneSideDesc":"ページの片面のみを印刷する","DE.Views.PrintWithPreview.txtPage":"ページ","DE.Views.PrintWithPreview.txtPageNumInvalid":"ページ番号が正しくありません。","DE.Views.PrintWithPreview.txtPageOrientation":"印刷の向き","DE.Views.PrintWithPreview.txtPages":"ページ","DE.Views.PrintWithPreview.txtPageSize":"ページのサイズ","DE.Views.PrintWithPreview.txtPortrait":"縦","DE.Views.PrintWithPreview.txtPrint":"印刷","DE.Views.PrintWithPreview.txtPrinter":"プリンター","DE.Views.PrintWithPreview.txtPrinterNotSelected":"プリンターが選択されていない","DE.Views.PrintWithPreview.txtPrintersNotFound":"プリンターが見つかりません","DE.Views.PrintWithPreview.txtPrintPdf":"PDFに印刷","DE.Views.PrintWithPreview.txtPrintRange":"印刷範囲\t","DE.Views.PrintWithPreview.txtPrintSides":"両面印刷","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"システムダイアログで印刷する","DE.Views.PrintWithPreview.txtRight":"右","DE.Views.PrintWithPreview.txtSelection":"選択","DE.Views.PrintWithPreview.txtTop":"上","DE.Views.PrintWithPreview.txtWaitingForPrinters":"プリンターを待っています","DE.Views.ProtectDialog.textComments":"コメント","DE.Views.ProtectDialog.textForms":"フォームの入力","DE.Views.ProtectDialog.textReview":"変更履歴","DE.Views.ProtectDialog.textView":"変更不可 (閲覧のみ)","DE.Views.ProtectDialog.txtAllow":"ユーザーに許可する編集の種類を指定する","DE.Views.ProtectDialog.txtIncorrectPwd":"先に入力したパスワードと一致しません。","DE.Views.ProtectDialog.txtLimit":"パスワードは15文字まで","DE.Views.ProtectDialog.txtOptional":"任意","DE.Views.ProtectDialog.txtPassword":"パスワード","DE.Views.ProtectDialog.txtProtect":"保護する","DE.Views.ProtectDialog.txtRepeat":"パスワードを再入力","DE.Views.ProtectDialog.txtTitle":"保護する","DE.Views.ProtectDialog.txtWarning":"ご注意:パスワードを紛失したり、忘れたりした場合は、復旧できません。安全な場所に保管してください。","DE.Views.RightMenu.ariaRightMenu":"右メニュー","DE.Views.RightMenu.txtChartSettings":"グラフの設定","DE.Views.RightMenu.txtFormSettings":"フォーム設定","DE.Views.RightMenu.txtHeaderFooterSettings":"ヘッダーとフッターの設定","DE.Views.RightMenu.txtImageSettings":"画像の設定","DE.Views.RightMenu.txtMailMergeSettings":"差し込み印刷の設定","DE.Views.RightMenu.txtParagraphSettings":"段落の設定","DE.Views.RightMenu.txtShapeSettings":"図形の設定","DE.Views.RightMenu.txtSignatureSettings":"署名の設定","DE.Views.RightMenu.txtTableSettings":"表の設定","DE.Views.RightMenu.txtTextArtSettings":"テキストアートの設定","DE.Views.RoleDeleteDlg.textLabel":"この受信者を削除するには、関連するフィールドを別の受信者に移動する必要があります。","DE.Views.RoleDeleteDlg.textSelect":"フィールドマージ用の受信者を選択","DE.Views.RoleDeleteDlg.textTitle":"受信者を削除する","DE.Views.RoleEditDlg.errNameExists":"同じ名前の受信者は既に存在します。","DE.Views.RoleEditDlg.textEmptyError":"受取人名は空欄にできません。","DE.Views.RoleEditDlg.textName":"受信者名","DE.Views.RoleEditDlg.textNameEx":"例:応募者、顧客、営業担当者","DE.Views.RoleEditDlg.textNoHighlight":"ハイライト表示なし","DE.Views.RoleEditDlg.txtTitleEdit":"受信者を編集する","DE.Views.RoleEditDlg.txtTitleNew":"新しい受信者を作成する","DE.Views.RolesManagerDlg.textAnyone":"誰でも","DE.Views.RolesManagerDlg.textDelete":"削除","DE.Views.RolesManagerDlg.textDeleteLast":"「{0}」受信者を削除してもよろしいですか?
一度削除すると、デフォルトの受信者が作成されます。","DE.Views.RolesManagerDlg.textDescription":"受信者を追加し、各受信者が文書を受け取り署名する順序を設定する","DE.Views.RolesManagerDlg.textDown":"受信者を下に移動する","DE.Views.RolesManagerDlg.textEdit":"編集","DE.Views.RolesManagerDlg.textEmpty":"受信者はまだ作成されていません。
少なくとも1人の受信者を作成すれば、この欄に表示されます。","DE.Views.RolesManagerDlg.textNew":"新しい","DE.Views.RolesManagerDlg.textUp":"受信者を上に移動する","DE.Views.RolesManagerDlg.txtTitle":"受信者管理","DE.Views.RolesManagerDlg.warnCantDelete":"この受信者は関連フィールドがあるため削除できません。","DE.Views.RolesManagerDlg.warnDelete":"「{0}」受信者を削除してもよろしいですか?","DE.Views.SaveFormDlg.saveButtonText":"保存","DE.Views.SaveFormDlg.textAnyone":"誰でも","DE.Views.SaveFormDlg.textDescription":"PDFに保存する際、入力フィールドを持つ受信者のみが入力対象リストに追加されます","DE.Views.SaveFormDlg.textEmpty":"フィールドに関連付けられた受信者はいません。","DE.Views.SaveFormDlg.textFill":"リストの記入","DE.Views.SaveFormDlg.txtTitle":"フォームとして保存する","DE.Views.ShapeSettings.strBackground":"背景色","DE.Views.ShapeSettings.strChange":"オートシェイプの変更","DE.Views.ShapeSettings.strColor":"色","DE.Views.ShapeSettings.strFill":"塗りつぶし","DE.Views.ShapeSettings.strForeground":"前景色","DE.Views.ShapeSettings.strPattern":"パターン","DE.Views.ShapeSettings.strShadow":"影を表示する","DE.Views.ShapeSettings.strSize":"サイズ","DE.Views.ShapeSettings.strStroke":"線","DE.Views.ShapeSettings.strTransparency":"不透明度","DE.Views.ShapeSettings.strType":"タイプ","DE.Views.ShapeSettings.textAdjustShadow":"影の調整","DE.Views.ShapeSettings.textAdvanced":"詳細設定を表示","DE.Views.ShapeSettings.textAngle":"角度","DE.Views.ShapeSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","DE.Views.ShapeSettings.textColor":"色で塗りつぶし","DE.Views.ShapeSettings.textDirection":"方向","DE.Views.ShapeSettings.textEditPoints":"頂点の編集","DE.Views.ShapeSettings.textEditShape":"図形の編集","DE.Views.ShapeSettings.textEmptyPattern":"パターンなし","DE.Views.ShapeSettings.textEyedropper":"スポイト","DE.Views.ShapeSettings.textFlip":"反転する","DE.Views.ShapeSettings.textFromFile":"ファイルから","DE.Views.ShapeSettings.textFromStorage":"ストレージから","DE.Views.ShapeSettings.textFromUrl":"URLから","DE.Views.ShapeSettings.textGradient":"グラデーションポイント","DE.Views.ShapeSettings.textGradientFill":"塗りつぶし (グラデーション)","DE.Views.ShapeSettings.textHint270":"反時計回りに90度回転","DE.Views.ShapeSettings.textHint90":"時計回りに90度回転","DE.Views.ShapeSettings.textHintFlipH":"左右に反転","DE.Views.ShapeSettings.textHintFlipV":"上下に反転","DE.Views.ShapeSettings.textImageTexture":"図またはテクスチャ","DE.Views.ShapeSettings.textLinear":"線形","DE.Views.ShapeSettings.textMoreColors":"その他の色","DE.Views.ShapeSettings.textNoFill":"塗りつぶしなし","DE.Views.ShapeSettings.textNoShadow":"影なし","DE.Views.ShapeSettings.textPatternFill":"パターン","DE.Views.ShapeSettings.textPosition":"位置","DE.Views.ShapeSettings.textRadial":"ラジアル","DE.Views.ShapeSettings.textRecentlyUsed":"最近使った項目","DE.Views.ShapeSettings.textRotate90":"90度回転","DE.Views.ShapeSettings.textRotation":"回転","DE.Views.ShapeSettings.textSelectImage":"画像の選択","DE.Views.ShapeSettings.textSelectTexture":"選択する","DE.Views.ShapeSettings.textShadow":"影","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":"テキストの背後に","DE.Views.ShapeSettings.txtBrownPaper":"クラフト紙","DE.Views.ShapeSettings.txtCanvas":"キャンバス","DE.Views.ShapeSettings.txtCarton":"カートン","DE.Views.ShapeSettings.txtDarkFabric":"ダークファブリック","DE.Views.ShapeSettings.txtGrain":"粒子","DE.Views.ShapeSettings.txtGranite":"花崗岩","DE.Views.ShapeSettings.txtGreyPaper":"グレー紙","DE.Views.ShapeSettings.txtInFront":"テキストの前に","DE.Views.ShapeSettings.txtInline":"テキストに沿って","DE.Views.ShapeSettings.txtKnit":"ニット","DE.Views.ShapeSettings.txtLeather":"レザー","DE.Views.ShapeSettings.txtNoBorders":"線なし","DE.Views.ShapeSettings.txtOffsetBottom":"オフセット:下","DE.Views.ShapeSettings.txtOffsetBottomLeft":"オフセット:左下","DE.Views.ShapeSettings.txtOffsetBottomRight":"オフセット:右下","DE.Views.ShapeSettings.txtOffsetCenter":"オフセット:中央","DE.Views.ShapeSettings.txtOffsetLeft":"オフセット:左","DE.Views.ShapeSettings.txtOffsetRight":"オフセット:右","DE.Views.ShapeSettings.txtOffsetTop":"オフセット:上","DE.Views.ShapeSettings.txtOffsetTopLeft":"オフセット:左上","DE.Views.ShapeSettings.txtOffsetTopRight":"オフセット:右上","DE.Views.ShapeSettings.txtPapyrus":"パピルス","DE.Views.ShapeSettings.txtSquare":"四角","DE.Views.ShapeSettings.txtThrough":"内部","DE.Views.ShapeSettings.txtTight":"外周","DE.Views.ShapeSettings.txtTopAndBottom":"上と下","DE.Views.ShapeSettings.txtWood":"木","DE.Views.SignatureSettings.notcriticalErrorTitle":"警告","DE.Views.SignatureSettings.strDelete":"署名の削除","DE.Views.SignatureSettings.strDetails":"署名の詳細","DE.Views.SignatureSettings.strInvalid":"無効な署名","DE.Views.SignatureSettings.strRequested":"要求された署名","DE.Views.SignatureSettings.strSetup":"署名の設定","DE.Views.SignatureSettings.strSign":"署名する","DE.Views.SignatureSettings.strSignature":"署名","DE.Views.SignatureSettings.strSigner":"署名者","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.txtSignedForm":"この文書は署名されているため、編集することができません。","DE.Views.SignatureSettings.txtSignedInvalid":"文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。","DE.Views.Statusbar.goToPageText":"ページに移動","DE.Views.Statusbar.pageIndexText":"{0}/{1} ページ","DE.Views.Statusbar.tipFitPage":"ページに合わせる","DE.Views.Statusbar.tipFitWidth":"幅に合わせる","DE.Views.Statusbar.tipHandTool":"「手のひら」ツール","DE.Views.Statusbar.tipMultiplePages":"複数ページ","DE.Views.Statusbar.tipSelectTool":"選択ツール","DE.Views.Statusbar.tipSetLang":"テキストの言語を設定","DE.Views.Statusbar.tipZoomFactor":"ズーム","DE.Views.Statusbar.tipZoomIn":"ズームイン","DE.Views.Statusbar.tipZoomOut":"ズームアウト","DE.Views.Statusbar.txtPageNumInvalid":"ページ番号が正しくありません。","DE.Views.Statusbar.txtPages":"ページ","DE.Views.Statusbar.txtParagraphs":"段落","DE.Views.Statusbar.txtSpaces":"スペースを含む記号","DE.Views.Statusbar.txtSymbols":"記号","DE.Views.Statusbar.txtWordCount":"文字数","DE.Views.Statusbar.txtWords":"単語","DE.Views.StyleTitleDialog.textHeader":"新しいスタイルの作成","DE.Views.StyleTitleDialog.textNextStyle":"次の段落スタイル","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":"方程式\t","DE.Views.TableOfContentsSettings.textFigure":"図形","DE.Views.TableOfContentsSettings.textLeader":"埋め草文字","DE.Views.TableOfContentsSettings.textLevel":"レベル","DE.Views.TableOfContentsSettings.textLevels":"レベル","DE.Views.TableOfContentsSettings.textNone":"なし","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":"列の削除","DE.Views.TableSettings.deleteRowText":"行の削除","DE.Views.TableSettings.deleteTableText":"表の削除","DE.Views.TableSettings.insertColumnLeftText":"左に列を挿入","DE.Views.TableSettings.insertColumnRightText":"右に列を挿入","DE.Views.TableSettings.insertRowAboveText":"上に行を挿入","DE.Views.TableSettings.insertRowBelowText":"下に行を挿入","DE.Views.TableSettings.mergeCellsText":"セルの結合","DE.Views.TableSettings.selectCellText":"セルの選択","DE.Views.TableSettings.selectColumnText":"列の選択","DE.Views.TableSettings.selectRowText":"行の選択","DE.Views.TableSettings.selectTableText":"テーブルの選択","DE.Views.TableSettings.splitCellsText":"セルを分割...","DE.Views.TableSettings.splitCellTitleText":"セルを分割","DE.Views.TableSettings.strRepeatRow":"各ページの上部に見出し行として繰り返す","DE.Views.TableSettings.textAddFormula":"式を追加","DE.Views.TableSettings.textAdvanced":"詳細設定を表示","DE.Views.TableSettings.textAutofit":"コンテンツに合わせて自動的にサイズ調整","DE.Views.TableSettings.textBackColor":"背景色","DE.Views.TableSettings.textBanded":"縞模様","DE.Views.TableSettings.textBorderColor":"色","DE.Views.TableSettings.textBorders":"罫線のスタイル","DE.Views.TableSettings.textCellSize":"行と列のサイズ","DE.Views.TableSettings.textColumns":"列","DE.Views.TableSettings.textConvert":"表を文字に変換する","DE.Views.TableSettings.textDistributeCols":"列の幅を揃える","DE.Views.TableSettings.textDistributeRows":"行の高さを揃える","DE.Views.TableSettings.textEdit":"行/列","DE.Views.TableSettings.textEmptyTemplate":"テンプレートなし","DE.Views.TableSettings.textFirst":"最初の","DE.Views.TableSettings.textHeader":"ヘッダー","DE.Views.TableSettings.textHeight":"高さ","DE.Views.TableSettings.textLast":"最後","DE.Views.TableSettings.textRows":"行","DE.Views.TableSettings.textSelectBorders":"選択したスタイルを適用する罫線を選択してください。 ","DE.Views.TableSettings.textTemplate":"テンプレートから選択する","DE.Views.TableSettings.textTotal":"合計","DE.Views.TableSettings.textWidth":"幅","DE.Views.TableSettings.tipAll":"外枠とすべての内枠の線を設定","DE.Views.TableSettings.tipBottom":"外部の罫線(下)だけを設定","DE.Views.TableSettings.tipInner":"内側の線のみを設定","DE.Views.TableSettings.tipInnerHor":"水平方向の内側の線のみを設定","DE.Views.TableSettings.tipInnerVert":"縦方向の内線のみを設定","DE.Views.TableSettings.tipLeft":"外部の罫線(左)だけを設定","DE.Views.TableSettings.tipNone":"罫線の設定なし","DE.Views.TableSettings.tipOuter":"外枠の罫線だけを設定","DE.Views.TableSettings.tipRight":"外部の罫線(右)だけを設定","DE.Views.TableSettings.tipTop":"外部の罫線(上)だけを設定","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"境界&線付き表","DE.Views.TableSettings.txtGroupTable_Custom":"カスタム","DE.Views.TableSettings.txtGroupTable_Grid":"グリッド テーブル","DE.Views.TableSettings.txtGroupTable_List":"リストの表","DE.Views.TableSettings.txtGroupTable_Plain":"標準の表","DE.Views.TableSettings.txtNoBorders":"枠線なし","DE.Views.TableSettings.txtTable_Accent":"アクセント","DE.Views.TableSettings.txtTable_Bordered":"境界付き","DE.Views.TableSettings.txtTable_BorderedAndLined":"境界&線付き","DE.Views.TableSettings.txtTable_Colorful":"カラフル","DE.Views.TableSettings.txtTable_Dark":"暗い","DE.Views.TableSettings.txtTable_GridTable":"グリッドテーブル","DE.Views.TableSettings.txtTable_Light":"明るい","DE.Views.TableSettings.txtTable_Lined":"線付き","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.textAltTitle":"タイトル","DE.Views.TableSettingsAdvanced.textAnchorText":"テキスト","DE.Views.TableSettingsAdvanced.textAutofit":"自動的にセルのサイズを変更する","DE.Views.TableSettingsAdvanced.textBackColor":"セルの背景","DE.Views.TableSettingsAdvanced.textBelow":"基準","DE.Views.TableSettingsAdvanced.textBorderColor":"線の色","DE.Views.TableSettingsAdvanced.textBorderDesc":"図表をクリックするか、ボタンで枠を選択し、選択したスタイルを適用します。","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"罫線と背景","DE.Views.TableSettingsAdvanced.textBorderWidth":"罫線のサイズ","DE.Views.TableSettingsAdvanced.textBottom":"下","DE.Views.TableSettingsAdvanced.textCellOptions":"セルのオプション","DE.Views.TableSettingsAdvanced.textCellProps":"セル","DE.Views.TableSettingsAdvanced.textCellSize":"セルのサイズ","DE.Views.TableSettingsAdvanced.textCenter":"中央揃え","DE.Views.TableSettingsAdvanced.textCenterTooltip":"中央揃え","DE.Views.TableSettingsAdvanced.textCheckMargins":"既定の余白を使用","DE.Views.TableSettingsAdvanced.textDefaultMargins":"デフォルトのセルの余白","DE.Views.TableSettingsAdvanced.textDistance":"文字列との間隔","DE.Views.TableSettingsAdvanced.textHorizontal":"水平","DE.Views.TableSettingsAdvanced.textIndLeft":"左端からのインデント","DE.Views.TableSettingsAdvanced.textLeft":"左","DE.Views.TableSettingsAdvanced.textLeftTooltip":"左","DE.Views.TableSettingsAdvanced.textMargin":"余白","DE.Views.TableSettingsAdvanced.textMargins":"セル内の余白","DE.Views.TableSettingsAdvanced.textMeasure":"測定","DE.Views.TableSettingsAdvanced.textMove":"文字列と一緒に移動する","DE.Views.TableSettingsAdvanced.textOnlyCells":"選択されたセルだけに適応","DE.Views.TableSettingsAdvanced.textOptions":"オプション","DE.Views.TableSettingsAdvanced.textOverlap":"オーバーラップを許可する","DE.Views.TableSettingsAdvanced.textPage":"ページ","DE.Views.TableSettingsAdvanced.textPosition":"位置","DE.Views.TableSettingsAdvanced.textPrefWidth":"希望する幅","DE.Views.TableSettingsAdvanced.textPreview":"プレビュー","DE.Views.TableSettingsAdvanced.textRelative":"基準","DE.Views.TableSettingsAdvanced.textRight":"右","DE.Views.TableSettingsAdvanced.textRightOf":"基準","DE.Views.TableSettingsAdvanced.textRightTooltip":"右","DE.Views.TableSettingsAdvanced.textTable":"テーブル","DE.Views.TableSettingsAdvanced.textTableBackColor":"テーブルの背景","DE.Views.TableSettingsAdvanced.textTablePosition":"テーブルの位置","DE.Views.TableSettingsAdvanced.textTableSize":"テーブルのサイズ","DE.Views.TableSettingsAdvanced.textTitle":"テーブル - 詳細設定","DE.Views.TableSettingsAdvanced.textTop":"トップ","DE.Views.TableSettingsAdvanced.textVertical":"垂直","DE.Views.TableSettingsAdvanced.textWidth":"幅","DE.Views.TableSettingsAdvanced.textWidthSpaces":"幅&スペース","DE.Views.TableSettingsAdvanced.textWrap":"テキストの折り返し\t","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"インラインテーブル","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"フローテーブル","DE.Views.TableSettingsAdvanced.textWrappingStyle":"折り返しの種類と配置","DE.Views.TableSettingsAdvanced.textWrapText":"テキストの折り返し","DE.Views.TableSettingsAdvanced.tipAll":"外枠とすべての内枠の線を設定","DE.Views.TableSettingsAdvanced.tipCellAll":"内部セルだけに罫線を設定","DE.Views.TableSettingsAdvanced.tipCellInner":"内部のセルだけのために縦線と横線を設定","DE.Views.TableSettingsAdvanced.tipCellOuter":"内側のセルにのみ外枠罫線を設定","DE.Views.TableSettingsAdvanced.tipInner":"内側の線のみを設定","DE.Views.TableSettingsAdvanced.tipNone":"罫線の設定なし","DE.Views.TableSettingsAdvanced.tipOuter":"外枠の罫線だけを設定","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"内部セルの罫線と外部の罫線を設定","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"内側のセルに外枠と縦線・横線を設定","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"テーブルの外枠の罫線と内部セルの外枠罫線を設定","DE.Views.TableSettingsAdvanced.txtCm":"センチ","DE.Views.TableSettingsAdvanced.txtInch":"インチ","DE.Views.TableSettingsAdvanced.txtNoBorders":"枠線なし","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.strTransparency":"不透明度","DE.Views.TextArtSettings.strType":"タイプ","DE.Views.TextArtSettings.textAngle":"角度","DE.Views.TextArtSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","DE.Views.TextArtSettings.textColor":"色で塗りつぶし","DE.Views.TextArtSettings.textDirection":"方向","DE.Views.TextArtSettings.textGradient":"グラデーションポイント","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":"線なし","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.capBtnHand":"手のひら","DE.Views.Toolbar.capBtnHyphenation":"ハイフン","DE.Views.Toolbar.capBtnInsChart":"グラフ","DE.Views.Toolbar.capBtnInsControls":"コンテンツコントロール","DE.Views.Toolbar.capBtnInsDropcap":"ドロップキャップ","DE.Views.Toolbar.capBtnInsEquation":"方程式\t","DE.Views.Toolbar.capBtnInsHeader":"ヘッダー/フッター","DE.Views.Toolbar.capBtnInsPagebreak":"区切り","DE.Views.Toolbar.capBtnInsShape":"図形","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"記号","DE.Views.Toolbar.capBtnInsTable":"表","DE.Views.Toolbar.capBtnInsTextart":"テキストアート","DE.Views.Toolbar.capBtnInsTextbox":"テキストボックス","DE.Views.Toolbar.capBtnInsTextFromFile":"ファイルからのテキスト","DE.Views.Toolbar.capBtnLineNumbers":"行番号","DE.Views.Toolbar.capBtnMargins":"余白","DE.Views.Toolbar.capBtnPageColor":"ページ色","DE.Views.Toolbar.capBtnPageOrient":"印刷の向き","DE.Views.Toolbar.capBtnPageSize":"サイズ","DE.Views.Toolbar.capBtnSelect":"選択","DE.Views.Toolbar.capBtnWatermark":"透かし","DE.Views.Toolbar.capColorScheme":"色","DE.Views.Toolbar.capImgAlign":"整列","DE.Views.Toolbar.capImgBackward":"背面ヘ移動","DE.Views.Toolbar.capImgForward":"前面ヘ移動","DE.Views.Toolbar.capImgGroup":"グループ","DE.Views.Toolbar.capImgWrapping":"折り返し","DE.Views.Toolbar.capShapesMerge":"図形を結合","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.mniInsertSSE":"スプレッドシートを挿入する","DE.Views.Toolbar.mniLowerCase":"小文字","DE.Views.Toolbar.mniRemoveFooter":"フッターの削除","DE.Views.Toolbar.mniRemoveHeader":"ヘッダーの削除","DE.Views.Toolbar.mniSentenceCase":"センテンスケース","DE.Views.Toolbar.mniTextFromLocalFile":"ローカルファイルからのテキスト","DE.Views.Toolbar.mniTextFromStorage":"ストレージに保存されているファイルのテキスト","DE.Views.Toolbar.mniTextFromURL":"URLのファイルからのテキスト","DE.Views.Toolbar.mniTextToTable":"文字を表に変換する","DE.Views.Toolbar.mniToggleCase":"大文字と小文字を入れ替える","DE.Views.Toolbar.mniUpperCase":"大文字","DE.Views.Toolbar.strMenuNoFill":"塗りつぶしなし","DE.Views.Toolbar.textAddSpaceAfter":"段落の後にスペースを追加","DE.Views.Toolbar.textAddSpaceBefore":"段落の前にスペースを追加","DE.Views.Toolbar.textAllBorders":"すべての枠線","DE.Views.Toolbar.textAlpha":"ギリシャ小文字アルファ","DE.Views.Toolbar.textAuto":"自動","DE.Views.Toolbar.textAutoColor":"自動","DE.Views.Toolbar.textBetta":"ギリシャ小文字ベータ","DE.Views.Toolbar.textBlackHeart":"ブラック・ハート・スーツ","DE.Views.Toolbar.textBold":"太字","DE.Views.Toolbar.textBordersColor":"罫線の色","DE.Views.Toolbar.textBordersStyle":"罫線のスタイル","DE.Views.Toolbar.textBottom":"下:","DE.Views.Toolbar.textBottomBorders":"下の罫線","DE.Views.Toolbar.textBullet":"箇条書き","DE.Views.Toolbar.textChangeLevel":"リストラベルの変更","DE.Views.Toolbar.textCheckboxControl":"チェックボックス","DE.Views.Toolbar.textColumnsCustom":"カスタム列","DE.Views.Toolbar.textColumnsLeft":"左","DE.Views.Toolbar.textColumnsOne":"1","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.textCopyright":"著作権マーク","DE.Views.Toolbar.textCustomHyphen":"ハイフン設定","DE.Views.Toolbar.textCustomLineNumbers":"行番号オプション","DE.Views.Toolbar.textDateControl":"日付","DE.Views.Toolbar.textDegree":"度記号","DE.Views.Toolbar.textDelta":"ギリシャ小文字デルタ","DE.Views.Toolbar.textDirLtr":"左から右へ","DE.Views.Toolbar.textDirRtl":"右から左へ","DE.Views.Toolbar.textDivision":"除算記号","DE.Views.Toolbar.textDollar":"ドル記号","DE.Views.Toolbar.textDropdownControl":"ドロップダウンリスト","DE.Views.Toolbar.textEditMode":"PDFの編集","DE.Views.Toolbar.textEditWatermark":"カスタム設定の透かし","DE.Views.Toolbar.textEuro":"ユーロ記号","DE.Views.Toolbar.textEvenPage":"偶数ページから開始","DE.Views.Toolbar.textGreaterEqual":"以上","DE.Views.Toolbar.textIndAfter":"次の項目後にインデント:","DE.Views.Toolbar.textIndBefore":"次の項目前にインデント:","DE.Views.Toolbar.textIndLeft":"左字下げ","DE.Views.Toolbar.textIndRight":"右字下げ","DE.Views.Toolbar.textInfinity":"無限","DE.Views.Toolbar.textInMargin":"余白","DE.Views.Toolbar.textInsColumnBreak":"段区切りの挿入","DE.Views.Toolbar.textInsertPageCount":"ページ数を挿入","DE.Views.Toolbar.textInsertPageNumber":"ページ番号の挿入","DE.Views.Toolbar.textInsideBorders":"内部の罫線","DE.Views.Toolbar.textInsideHorBorders":"内側の水平方向の罫線","DE.Views.Toolbar.textInsideVertBorders":"内側の垂直方向の罫線","DE.Views.Toolbar.textInsPageBreak":"改ページの挿入","DE.Views.Toolbar.textInsSectionBreak":"セクション区切りの挿入","DE.Views.Toolbar.textInText":"テキスト","DE.Views.Toolbar.textItalic":"イタリック","DE.Views.Toolbar.textLandscape":"横向き","DE.Views.Toolbar.textLeft":"左:","DE.Views.Toolbar.textLeftBorders":"左の罫線","DE.Views.Toolbar.textLessEqual":"以下","DE.Views.Toolbar.textLetterPi":"ギリシャの小文字ピー","DE.Views.Toolbar.textLineSpaceOptions":"行間オプション","DE.Views.Toolbar.textListSettings":"リストの設定","DE.Views.Toolbar.textMarginsLast":"最後に適用した設定","DE.Views.Toolbar.textMarginsModerate":"標準","DE.Views.Toolbar.textMarginsNarrow":"狭い","DE.Views.Toolbar.textMarginsNormal":"標準","DE.Views.Toolbar.textMarginsWide":"広い","DE.Views.Toolbar.textMoreSymbols":"その他の記号","DE.Views.Toolbar.textNewColor":"その他の色","DE.Views.Toolbar.textNextPage":"次のページ","DE.Views.Toolbar.textNoBorders":"罫線なし","DE.Views.Toolbar.textNoHighlight":"ハイライト表示なし","DE.Views.Toolbar.textNone":"なし","DE.Views.Toolbar.textNotEqualTo":"同等ではない","DE.Views.Toolbar.textOddPage":"奇数ページから開始","DE.Views.Toolbar.textOneHalf":"普通分数の1/2","DE.Views.Toolbar.textOneQuarter":"普通分数の1/4","DE.Views.Toolbar.textOutBorders":"外部の罫線","DE.Views.Toolbar.textPageMarginsCustom":"ユーザー設定の余白","DE.Views.Toolbar.textPageSizeCustom":"ユーザー設定のページ サイズ","DE.Views.Toolbar.textPictureControl":"画像","DE.Views.Toolbar.textPlainControl":"プレーンテキスト","DE.Views.Toolbar.textPlusMinus":"プラスマイナス記号","DE.Views.Toolbar.textPortrait":"縦向き","DE.Views.Toolbar.textRegistered":"登録商標マーク","DE.Views.Toolbar.textRemoveControl":"コンテンツコントロールを削除する","DE.Views.Toolbar.textRemSpaceAfter":"段落の後のスペースを削除","DE.Views.Toolbar.textRemSpaceBefore":"段落の前のスペースを削除","DE.Views.Toolbar.textRemWatermark":"透かしの削除","DE.Views.Toolbar.textRestartEachPage":"各ページに振り直し","DE.Views.Toolbar.textRestartEachSection":"各セクションに振り直し","DE.Views.Toolbar.textRichControl":"リッチテキスト","DE.Views.Toolbar.textRight":"右:","DE.Views.Toolbar.textRightBorders":"右の罫線","DE.Views.Toolbar.textSection":"節記号","DE.Views.Toolbar.textShapesCombine":"結合","DE.Views.Toolbar.textShapesFragment":"断片","DE.Views.Toolbar.textShapesIntersect":"交差","DE.Views.Toolbar.textShapesSubstract":"減算","DE.Views.Toolbar.textShapesUnion":"連合","DE.Views.Toolbar.textSmile":"白い笑顔","DE.Views.Toolbar.textSpaceAfter":"後にスペースを空ける","DE.Views.Toolbar.textSpaceBefore":"前にスペースを空ける","DE.Views.Toolbar.textSquareRoot":"平方根","DE.Views.Toolbar.textStrikeout":"取り消し線","DE.Views.Toolbar.textStyleMenuDelete":"スタイルの削除","DE.Views.Toolbar.textStyleMenuDeleteAll":"カスタム設定のスタイルを全て削除","DE.Views.Toolbar.textStyleMenuNew":"選択からの新しいスタイル","DE.Views.Toolbar.textStyleMenuRestore":"デフォルトへの復元","DE.Views.Toolbar.textStyleMenuRestoreAll":"全てのデフォルトスタイルの復元","DE.Views.Toolbar.textStyleMenuUpdate":"選択範囲からの更新","DE.Views.Toolbar.textSubscript":"下付き文字","DE.Views.Toolbar.textSuperscript":"上付き文字","DE.Views.Toolbar.textSuppressForCurrentParagraph":"現在の段落には番号を振らない","DE.Views.Toolbar.textTabCollaboration":"共同編集","DE.Views.Toolbar.textTabDraw":"描画","DE.Views.Toolbar.textTabFile":"ファイル","DE.Views.Toolbar.textTabHeaderFooter":"ヘッダー/フッター","DE.Views.Toolbar.textTabHome":"ホーム","DE.Views.Toolbar.textTabInsert":"挿入","DE.Views.Toolbar.textTabLayout":"レイアウト","DE.Views.Toolbar.textTabLinks":"参考資料","DE.Views.Toolbar.textTabProtect":"保護","DE.Views.Toolbar.textTabReview":"レビュー","DE.Views.Toolbar.textTabView":"表示","DE.Views.Toolbar.textTilde":"チルダ","DE.Views.Toolbar.textTitleError":"エラー","DE.Views.Toolbar.textToCurrent":"現在の場所へ","DE.Views.Toolbar.textTop":"トップ:","DE.Views.Toolbar.textTopBorders":"上の罫線","DE.Views.Toolbar.textTradeMark":"商標マーク","DE.Views.Toolbar.textUnderline":"アンダーライン","DE.Views.Toolbar.textYen":"円記号","DE.Views.Toolbar.tipAlignCenter":"中央揃え","DE.Views.Toolbar.tipAlignJust":"両端揃え","DE.Views.Toolbar.tipAlignLeft":"左揃え","DE.Views.Toolbar.tipAlignRight":"右揃え","DE.Views.Toolbar.tipBack":"戻る","DE.Views.Toolbar.tipBlankPage":"空白ページの挿入","DE.Views.Toolbar.tipBorders":"罫線","DE.Views.Toolbar.tipChangeCase":"大文字小文字を変更","DE.Views.Toolbar.tipChangeChart":"グラフの種類の変更","DE.Views.Toolbar.tipClearStyle":"スタイルのクリア","DE.Views.Toolbar.tipColorSchemas":"配色の変更","DE.Views.Toolbar.tipColumns":"列の挿入","DE.Views.Toolbar.tipControls":"コンテンツコントロールの挿入","DE.Views.Toolbar.tipCopy":"コピー","DE.Views.Toolbar.tipCopyStyle":"スタイルのコピー","DE.Views.Toolbar.tipCut":"切り取り","DE.Views.Toolbar.tipDecFont":"フォントサイズの縮小","DE.Views.Toolbar.tipDecPrLeft":"インデントを減らす","DE.Views.Toolbar.tipDownload":"ファイルをダウンロード","DE.Views.Toolbar.tipDropCap":"ドロップキャップの挿入","DE.Views.Toolbar.tipEditMode":"現在のファイルを編集する。
ページがリロードされます。","DE.Views.Toolbar.tipFontColor":"フォントの色","DE.Views.Toolbar.tipFontName":"フォント","DE.Views.Toolbar.tipFontSize":"フォントのサイズ","DE.Views.Toolbar.tipHandTool":"「手のひら」ツール","DE.Views.Toolbar.tipHighlightColor":"ハイライトの色","DE.Views.Toolbar.tipHyphenation":"ハイフン設定の変更","DE.Views.Toolbar.tipImgAlign":"オブジェクトを配置する","DE.Views.Toolbar.tipImgGroup":"オブジェクトをグループ化する","DE.Views.Toolbar.tipImgWrapping":"テキストの折り返し","DE.Views.Toolbar.tipIncFont":"フォントサイズの拡大","DE.Views.Toolbar.tipIncPrLeft":"インデントを増やす","DE.Views.Toolbar.tipInsertChart":"グラフを挿入","DE.Views.Toolbar.tipInsertEquation":"方程式を挿入","DE.Views.Toolbar.tipInsertHorizontalText":"横書きテキストボックスの挿入","DE.Views.Toolbar.tipInsertNum":"ページ番号の挿入","DE.Views.Toolbar.tipInsertShape":"図形を挿入","DE.Views.Toolbar.tipInsertSmartArt":"SmartArtの挿入","DE.Views.Toolbar.tipInsertSymbol":"記号を挿入","DE.Views.Toolbar.tipInsertTable":"表の挿入","DE.Views.Toolbar.tipInsertText":"テキストボックスの挿入","DE.Views.Toolbar.tipInsertTextArt":"テキストアートの挿入","DE.Views.Toolbar.tipInsertVerticalText":"縦書きテキストボックスの挿入","DE.Views.Toolbar.tipLineNumbers":"行番号を表示する","DE.Views.Toolbar.tipLineSpace":"段落の行間","DE.Views.Toolbar.tipMailRecepients":"差し込み印刷","DE.Views.Toolbar.tipMarkers":"箇条書き","DE.Views.Toolbar.tipMarkersArrow":"箇条書き(矢印)","DE.Views.Toolbar.tipMarkersCheckmark":"箇条書き(チェックマーク)","DE.Views.Toolbar.tipMarkersDash":"「ダッシュ」記号","DE.Views.Toolbar.tipMarkersFRhombus":"箇条書き(ひし形)","DE.Views.Toolbar.tipMarkersFRound":"箇条書き(丸)","DE.Views.Toolbar.tipMarkersFSquare":"箇条書き(四角)","DE.Views.Toolbar.tipMarkersHRound":"箇条書き(円)","DE.Views.Toolbar.tipMarkersStar":"箇条書き(星)","DE.Views.Toolbar.tipMultiLevelArticl":"複数レベルの番号付き記事","DE.Views.Toolbar.tipMultiLevelChapter":"複数レベルの番号付き文章","DE.Views.Toolbar.tipMultiLevelHeadings":"複数レベルの番号付き見出し","DE.Views.Toolbar.tipMultiLevelHeadVarious":"複数レベルの番号付き各種見出し","DE.Views.Toolbar.tipMultiLevelNumbered":"段落番号付き箇条書き","DE.Views.Toolbar.tipMultilevels":"複数レベルのリスト","DE.Views.Toolbar.tipMultiLevelSymbols":"記号付き箇条書き","DE.Views.Toolbar.tipMultiLevelVarious":"段落番号付き様々な箇条書き","DE.Views.Toolbar.tipNumbers":"ナンバリング","DE.Views.Toolbar.tipPageBreak":"ページの挿入またはセクション区切り","DE.Views.Toolbar.tipPageColor":"ページ色の変更","DE.Views.Toolbar.tipPageMargins":"余白","DE.Views.Toolbar.tipPageOrient":"印刷の向き","DE.Views.Toolbar.tipPageSize":"ページのサイズ","DE.Views.Toolbar.tipParagraphStyle":"段落のスタイル","DE.Views.Toolbar.tipPaste":"貼り付け","DE.Views.Toolbar.tipPrColor":"段落の背景色","DE.Views.Toolbar.tipPrint":"印刷","DE.Views.Toolbar.tipPrintQuick":"クイックプリント","DE.Views.Toolbar.tipRedo":"やり直し","DE.Views.Toolbar.tipReplace":"置き換え","DE.Views.Toolbar.tipSave":"保存","DE.Views.Toolbar.tipSaveCoauth":"変更内容を保存して、他のユーザーが確認できるようにします。","DE.Views.Toolbar.tipSelectAll":"すべて選択","DE.Views.Toolbar.tipSelectTool":"選択ツール","DE.Views.Toolbar.tipSendBackward":"背面ヘ移動","DE.Views.Toolbar.tipSendForward":"前面ヘ移動","DE.Views.Toolbar.tipShapesMerge":"図形を結合","DE.Views.Toolbar.tipShowHiddenChars":"非表示文字","DE.Views.Toolbar.tipSynchronize":"このドキュメントは他のユーザーによって変更されました。クリックして変更を保存し、更新を再読み込みしてください。","DE.Views.Toolbar.tipTextDir":"テキスト方向","DE.Views.Toolbar.tipTextFromFile":"ファイルからのテキスト","DE.Views.Toolbar.tipUndo":"元に戻す","DE.Views.Toolbar.tipWatermark":"透かしを編集する","DE.Views.Toolbar.txtAutoText":"自動","DE.Views.Toolbar.txtDistribHor":"左右に整列","DE.Views.Toolbar.txtDistribVert":"上下に整列","DE.Views.Toolbar.txtGroupBulletDoc":"文書の行頭文字","DE.Views.Toolbar.txtGroupBulletLib":"行頭文字ライブラリ","DE.Views.Toolbar.txtGroupMultiDoc":"作業中の文書のリスト","DE.Views.Toolbar.txtGroupMultiLib":"リスト ライブラリ","DE.Views.Toolbar.txtGroupNumDoc":"文書の番号付け形式","DE.Views.Toolbar.txtGroupNumLib":"番号ライブラリ","DE.Views.Toolbar.txtGroupRecent":"最近使った項目","DE.Views.Toolbar.txtMarginAlign":"余白に合わせて​​配置","DE.Views.Toolbar.txtObjectsAlign":"選択したオブジェクトを整列する","DE.Views.Toolbar.txtPageAlign":"ページに揃え","DE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","DE.Views.ViewTab.textDarkDocument":"ダークドキュメント","DE.Views.ViewTab.textFill":"塗りつぶし","DE.Views.ViewTab.textFitToPage":"ページに合わせる","DE.Views.ViewTab.textFitToWidth":"幅に合わせる","DE.Views.ViewTab.textInterfaceTheme":"インターフェイスのテーマ","DE.Views.ViewTab.textLeftMenu":"左パネル","DE.Views.ViewTab.textLine":"線","DE.Views.ViewTab.textMacros":"マクロ","DE.Views.ViewTab.textMultiplePages":"複数ページ","DE.Views.ViewTab.textNavigation":"ナビゲーション","DE.Views.ViewTab.textOutline":"見出し","DE.Views.ViewTab.textPauseMacro":"記録を一時停止する","DE.Views.ViewTab.textRecMacro":"マクロを記録する","DE.Views.ViewTab.textResumeMacro":"記録を再開する","DE.Views.ViewTab.textRightMenu":"右パネル","DE.Views.ViewTab.textRulers":"ルーラー","DE.Views.ViewTab.textStatusBar":"ステータスバー","DE.Views.ViewTab.textStopMacro":"記録を停止する","DE.Views.ViewTab.textTabStyle":"タブのスタイル","DE.Views.ViewTab.textZoom":"ズーム","DE.Views.ViewTab.textZoom100":"100%に拡大する","DE.Views.ViewTab.tipDarkDocument":"ダークドキュメント","DE.Views.ViewTab.tipFitToPage":"ページに合わせる","DE.Views.ViewTab.tipFitToWidth":"幅に合わせる","DE.Views.ViewTab.tipHeadings":"見出し","DE.Views.ViewTab.tipInterfaceTheme":"インターフェースのテーマ","DE.Views.ViewTab.tipMacros":"マクロ","DE.Views.ViewTab.tipMultiplePages":"複数ページ","DE.Views.ViewTab.tipPauseMacro":"記録を一時停止する","DE.Views.ViewTab.tipRecMacro":"マクロを記録する","DE.Views.ViewTab.tipResumeMacro":"記録を再開する","DE.Views.ViewTab.tipStopMacro":"記録を停止する","DE.Views.ViewTab.tipZoom100":"100%に拡大する","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/public/web-apps/apps/documenteditor/main/locale/ko.json b/public/web-apps/apps/documenteditor/main/locale/ko.json index 0a4f4af1c..0d9d67bf6 100644 --- a/public/web-apps/apps/documenteditor/main/locale/ko.json +++ b/public/web-apps/apps/documenteditor/main/locale/ko.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"경고","Common.Controllers.Desktop.hintBtnHome":"메인 창 표시","Common.Controllers.Desktop.itemCreateFromTemplate":"템플릿에서 만들기","Common.Controllers.ExternalDiagramEditor.textAnonymous":"익명","Common.Controllers.ExternalDiagramEditor.textClose":"닫기","Common.Controllers.ExternalDiagramEditor.warningText":"다른 사용자가 편집 중이므로 개체를 사용할 수 없습니다.","Common.Controllers.ExternalDiagramEditor.warningTitle":"경고","Common.Controllers.ExternalLinks.textAddExternalData":"외부 소스로의 링크가 추가되었습니다. 데이터 탭에서 이러한 링크를 업데이트할 수 있습니다.","Common.Controllers.ExternalLinks.textDontUpdate":"업데이트하지 않음","Common.Controllers.ExternalLinks.textUpdate":"업데이트","Common.Controllers.ExternalLinks.txtErrorExternalLink":"오류: 업데이트에 실패했습니다.","Common.Controllers.ExternalLinks.warnUpdateExternalData":"이 통합 문서에는 하나 이상의 안전하지 않을 수 있는 외부 소스로의 링크가 포함되어 있습니다.
만약 이 링크를 신뢰한다면 최신 데이터를 얻기 위해 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"이 문서에는 안전하지 않을 수 있는 하나 이상의 외부 원본에 대한 연결이 포함되어 있습니다.
링크를 신뢰하는 경우 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"이 프레젠테이션에는 안전하지 않을 수 있는 하나 이상의 외부 원본에 대한 연결이 포함되어 있습니다.
링크를 신뢰하는 경우 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.ExternalMergeEditor.textAnonymous":"익명","Common.Controllers.ExternalMergeEditor.textClose":"닫기","Common.Controllers.ExternalMergeEditor.warningText":"다른 사용자가 편집 중이므로 개체를 사용할 수 없습니다.","Common.Controllers.ExternalMergeEditor.warningTitle":"경고","Common.Controllers.ExternalOleEditor.textAnonymous":"익명사용자","Common.Controllers.ExternalOleEditor.textClose":"닫기","Common.Controllers.ExternalOleEditor.warningText":"다른 사용자가 편집 중이므로 개체를 사용할 수 없습니다.","Common.Controllers.ExternalOleEditor.warningTitle":"경고","Common.Controllers.History.notcriticalErrorTitle":"경고","Common.Controllers.History.txtErrorLoadHistory":"기록 불러오기에 실패했습니다","Common.Controllers.Plugins.helpMoveMacros":"매크로 작업을 시작하려면 보기 탭으로 전환하세요.","Common.Controllers.Plugins.helpMoveMacrosHeader":"이동된 매크로 버튼","Common.Controllers.Plugins.helpUseMacros":"매크로 버튼은 여기에 있습니다","Common.Controllers.Plugins.helpUseMacrosHeader":"매크로 접근 권한이 업데이트되었습니다","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"플러그인이 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 이곳에서 사용할 수 있습니다.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}이(가) 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 여기에서 사용할 수 있습니다.","Common.Controllers.Plugins.textRunInstalledPlugins":"설치된 플러그인 실행","Common.Controllers.Plugins.textRunPlugin":"플러그인 실행","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"문서를 비교하기 위해 추적된 모든 변경 내역이 수락된 것으로 간주됩니다. 계속하시겠습니까?","Common.Controllers.ReviewChanges.textAtLeast":"적어도","Common.Controllers.ReviewChanges.textAuto":"auto","Common.Controllers.ReviewChanges.textBaseline":"Baseline","Common.Controllers.ReviewChanges.textBold":"Bold","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.textDeleted":" 삭제됨 : ","Common.Controllers.ReviewChanges.textDStrikeout":"이중 취소선","Common.Controllers.ReviewChanges.textEquation":"수식","Common.Controllers.ReviewChanges.textExact":"정확히","Common.Controllers.ReviewChanges.textFirstLine":"첫 번째 줄","Common.Controllers.ReviewChanges.textFontSize":"글자 크기","Common.Controllers.ReviewChanges.textFormatted":"서식 지정 됨","Common.Controllers.ReviewChanges.textHighlight":"색상 강조 표시","Common.Controllers.ReviewChanges.textImage":"이미지","Common.Controllers.ReviewChanges.textIndentLeft":"왼쪽 들여쓰기","Common.Controllers.ReviewChanges.textIndentRight":"오른쪽 들여쓰기","Common.Controllers.ReviewChanges.textInserted":" 삽입 됨 : ","Common.Controllers.ReviewChanges.textItalic":"기울임꼴","Common.Controllers.ReviewChanges.textJustify":"양쪽 맞춤","Common.Controllers.ReviewChanges.textKeepLines":"현재 단락을 나누지 않음","Common.Controllers.ReviewChanges.textKeepNext":"현재 단락과 다음 단락을 항상 같은 페이지에 배치","Common.Controllers.ReviewChanges.textLeft":"왼쪽 맞춤","Common.Controllers.ReviewChanges.textLineSpacing":"줄 간격 :","Common.Controllers.ReviewChanges.textMultiple":"배수","Common.Controllers.ReviewChanges.textNoBreakBefore":"이전에 페이지 나누기 없음","Common.Controllers.ReviewChanges.textNoContextual":"같은 스타일의 단락 사이 간격 추가","Common.Controllers.ReviewChanges.textNoKeepLines":"현재 단락을 나누지 마십시오","Common.Controllers.ReviewChanges.textNoKeepNext":"현재 단락과 다음 단락을 항상 같은 페이지에 배치하지 마십시오","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":"단락이 삽입됨","Common.Controllers.ReviewChanges.textParaMoveFromDown":"아래로 이동됨","Common.Controllers.ReviewChanges.textParaMoveFromUp":"위로 이동됨","Common.Controllers.ReviewChanges.textParaMoveTo":"이동:","Common.Controllers.ReviewChanges.textPosition":"위치","Common.Controllers.ReviewChanges.textRight":"오른쪽 정렬","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":"취소선","Common.Controllers.ReviewChanges.textSubScript":"아래 첨자","Common.Controllers.ReviewChanges.textSuperScript":"위 첨자","Common.Controllers.ReviewChanges.textTableChanged":"표 설정이 변경됨","Common.Controllers.ReviewChanges.textTableRowsAdd":"표 행 삽입됨","Common.Controllers.ReviewChanges.textTableRowsDel":"표 행 삭제됨","Common.Controllers.ReviewChanges.textTabs":"탭 변경","Common.Controllers.ReviewChanges.textTitleComparison":"비교 설정","Common.Controllers.ReviewChanges.textUnderline":"밑줄","Common.Controllers.ReviewChanges.textUrl":"문서의 URL 링크 붙여 넣기","Common.Controllers.ReviewChanges.textWidow":"개별 제어","Common.Controllers.ReviewChanges.textWord":"단어 수준","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"표의 맨 아래에 새로운 행 추가.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"선택한 텍스트 조각에 제목 1의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"선택한 텍스트 조각에 제목 2의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"선택한 텍스트 조각에 제목 3의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"선택한 텍스트 조각에서 순서 없는 글머리 기호 목록을 만들거나 새 목록을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"키보드 화살표를 사용하여 선택한 객체를 크게 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"키보드 화살표를 사용하여 선택한 객체를 왼쪽으로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"키보드 화살표를 사용하여 선택한 객체를 오른쪽으로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"키보드 화살표를 사용하여 선택한 객체를 한 단계 위로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBold":"선택한 텍스트 조각의 글꼴을 기본보다 더 어둡고 굵게 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"문단을 중앙 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"양식에서 다음 콤보 상자 옵션을 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"양식에서 이전 콤보 상자 옵션을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"현재 문서 창을 닫습니다.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"메뉴 또는 모달 창을 닫습니다. 댓글 및 검토 변경 사항이 있는 팝업 및 풍선을 재설정합니다. 표 그리기 및 지우기 모드를 재설정합니다. 텍스트 드래그 앤 드롭을 재설정합니다. 마커 선택 모드를 재설정합니다. 서식 복사 모드를 재설정합니다. 도형 선택을 해제합니다. 도형 추가 모드를 재설정합니다. 머리글/바닥글을 종료합니다. 양식 작성을 종료합니다.","Common.Controllers.Shortcuts.txtDescriptionCopy":"선택한 텍스트 조각을 컴퓨터 클립보드 메모리로 보냅니다. 복사한 텍스트는 나중에 같은 문서의 다른 위치, 다른 문서 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"현재 편집 중인 텍스트의 선택한 부분에서 서식을 복사합니다. 복사한 서식은 나중에 같은 문서의 다른 텍스트 부분에 적용할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"현재 문서 내와 커서 오른쪽에 저작권 기호를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionCut":"선택한 텍스트 조각을 삭제하고 컴퓨터 클립보드 메모리로 보냅니다. 복사한 텍스트는 나중에 같은 문서의 다른 위치, 다른 문서 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 줄입니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"커서 왼쪽에 있는 문자 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"커서 왼쪽에 있는 단어/선택 항목/그래픽 개체 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"커서 오른쪽에 있는 문자 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"커서 오른쪽에 있는 단어/선택 영역/그래픽 개체 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"차트 제목이 선택되어 있을 때 제목이 비어 있으면 커서를 줄의 시작 부분으로 옮기고, 그렇지 않으면 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"마지막으로 취소한 작업을 반복합니다.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"표와 이미지가 있는 모든 문서 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"도형을 선택한 상태에서 내용이 없으면 내용을 만들고 커서를 줄의 시작 부분으로 이동합니다. 내용이 비어 있으면 커서를 해당 내용으로 이동하고, 비어 있으면 전체 내용을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"가장 최근에 수행한 작업을 되돌립니다.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"현재 문서 안에 Em대시를 커서 오른쪽에 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"현재 문서 안에 대시를 넣고 커서 오른쪽에 넣으세요.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"현재 문단을 끝내고 새로운 문단을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"셀 내에서 새로운 문단을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"방정식 인수에 새로운 입력 칸 추가.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"연산자의 정렬 수준을 왼쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"연산자의 정렬 수준을 오른쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"현재 커서 위치에 유로 기호(€)를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"현재 커서 위치에 줄임표를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 늘립니다.","Common.Controllers.Shortcuts.txtDescriptionIndent":"왼쪽에서 한 단락을 점진적으로 들여쓰기하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"열 나누기 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"주석을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"현재 커서 위치에 수식을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"각주 넣기.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"웹 주소로 이동할 수 있는 하이퍼링크를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"새 단락을 시작하지 않고 줄 나누기 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"여러 줄 양식에 줄 바꿈 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"현재 커서 위치에 페이지 나누기를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"현재 커서 위치에 현재 쪽 번호 넣기.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"문단에 탭문자 더하기(커서가 문단의 시작에 있지 않다면)","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"테이블 안에 테이블 구분을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionItalic":"선택한 텍스트 조각을 기울임꼴로 표시하고 약간 비스듬하게 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"문단을 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"문단 왼쪽 정렬","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 아래로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 왼쪽으로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 오른쪽으로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 위로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"선택한 단락의 들여쓰기를 늘리세요.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"선택한 문단의 들여쓰기를 줄입니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"현재 선택된 개체 다음 개체로 포커스를 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"현재 선택된 개체 이전 개체로 포커스를 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"커서를 한 줄 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"현재 편집 중인 문서의 맨 마지막에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"현재 편집 중인 줄의 끝에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"커서를 오른쪽으로 한 단어 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"커서를 왼쪽으로 한 글자 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"아래쪽 머리글로 이동합니다(커서가 머리글/바닥글에 있을 경우).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"(커서가 머리글/바닥글에 있을 경우) 아래쪽 머리글/바닥글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"테이블 행의 다음 셀로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"다음 입력란으로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"현재 편집된 문서의 다음 페이지로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"테이블의 다음 행으로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"테이블 행의 이전 셀로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"이전 입력란으로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"현재 편집된 문서의 이전 페이지로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"테이블의 이전 행으로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"커서를 오른쪽으로 한 글자 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"현재 편집 중인 문서의 맨 처음에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"현재 편집 중인 줄의 시작 부분에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"현재 편집 중인 페이지 바로 다음 페이지의 맨 처음에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"현재 편집 중인 페이지의 바로 앞 페이지에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"커서를 단어의 시작 위치로 이동하거나 왼쪽으로 한 단어 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"커서를 한 줄 위로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"(커서가 머리글/바닥글에 있을 경우) 위쪽 머리글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"(커서가 머리글/바닥글에 있을 경우) 위쪽 머리글/바닥글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"데스크톱 편집기에서는 다음 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"모달 대화 상자에서 다음 컨트롤로 포커스를 이동하며 탐색합니다.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"문자 사이에 하이픈을 만듭니다. 하이픈은 새 줄을 시작하는 데 사용할 수 없습니다.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"새 줄을 시작하는 데 사용할 수 없는 문자 사이에 공백을 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"온라인 편집기에서 채팅 패널을 열고 메시지를 보내세요.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"댓글 텍스트를 추가할 수 있는 데이터 입력 필드를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"댓글 패널을 열어서 본인의 댓글을 추가하거나 다른 사용자의 댓글에 답변하세요.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"선택한 요소의 상황에 맞는 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"기존 파일을 선택할 수 있는 표준 대화 상자를 엽니다. 이 대화 상자에서 파일을 선택하고 [열기]를 클릭하면 데스크톱 편집기의 새 탭이나 창에서 파일이 열립니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"파일 패널을 열면 현재 문서를 저장, 다운로드, 인쇄하고, 해당 정보를 보고, 새 문서를 만들거나 기존 문서를 열고, 문서 편집기 도움말 센터나 고급 설정에 액세스할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"찾기 및 바꾸기 메뉴(패널)를 열고 바꾸기 필드를 사용하여 찾은 문자의 하나 이상의 발생을 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"찾기 대화 상자 창을 열어 현재 편집 중인 문서에서 문자/단어/구를 검색하세요.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"문서 편집기 도움말 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionPaste":"현재 커서 위치에 클립보드의 복사한 텍스트 조각을 삽입합니다. 텍스트는 같은 문서, 다른 문서 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"현재 편집 중인 문서의 텍스트에 직전에 복사된 포맷 적용하기","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"현재 커서 위치에 클립보드의 복사한 텍스트 조각을 원본 서식 없이 삽입합니다. 텍스트는 같은 문서, 다른 문서 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"데스크톱 편집기에서는 이전 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"대화 상자에서 이전 컨트롤에 포커스를 두기 위해 컨트롤 사이를 탐색합니다.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"사용 가능한 프린터 중 하나로 문서를 인쇄하거나 파일로 저장하세요.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"현재 커서 위치에 등록 상표 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"선택한 유니코드 코드를 기호로 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"선택한 텍스트 조각의 서식을 지웁니다.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"문단을 오른쪽 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionSave":"문서 편집기를 사용하여 현재 편집 중인 문서의 모든 변경 사항을 저장합니다. 활성 파일은 현재 파일 이름, 위치 및 파일 형식으로 저장됩니다.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"현재 편집 중인 문서를 지원되는 형식 중 하나로 컴퓨터의 하드 디스크 드라이브에 저장하려면 '다른 이름으로 다운로드...' 패널을 엽니다.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"문서를 보이는 페이지 한 페이지 아래로 스크롤합니다.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"문서를 보이는 페이지 하나 위로 스크롤합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"커서 위치의 왼쪽에 있는 문자 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"커서가 있는 곳부터 단어의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"커서를 한 줄 아래로 이동하며 이전 위치와 현재 위치 사이의 모든 문자를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"커서를 한 줄 위로 이동하며 이전 위치와 현재 위치 사이의 모든 문자를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"커서 위치에서 화면 하단까지 페이지 부분을 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"커서 위치에서 화면 상단까지 페이지 부분을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"커서 위치 오른쪽에 있는 문자 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"커서가 있는 곳부터 단어 끝까지의 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"커서가 있는 곳부터 다음 페이지의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"커서가 있는 곳부터 이전 페이지의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"커서가 있는 곳부터 문서 끝까지의 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"커서가 있는 곳부터 현재 줄의 끝까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"커서부터 문서의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"커서부터 현재 줄의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"인쇄할 수 없는 문자를 표시하거나 숨깁니다.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"현재 커서 위치에 선택적 하이픈을 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"복사한 텍스트의 원본 서식 유지","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"원래 서식 없이 텍스트를 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"복사한 표를 중첩 표로 기존 표의 선택한 셀에 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"기존 테이블의 내용을 복사한 데이터로 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"애플리케이션에서 수행된 작업의 화면 판독기 전송을 활성화/비활성화합니다.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"목록/들여쓰기 레벨을 높이세요(단락 시작 커서를 사용).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"목록/들여쓰기 수준을 낮춥니다(커서를 문단의 시작 부분에 두었을 때).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"선택한 텍스트 조각에 취소선을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"선택한 텍스트 조각을 작게 만들어 텍스트 줄 하단에 배치합니다(예: 화학식처럼).","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"선택한 텍스트 조각을 작게 만들어 텍스트 줄 상단에 배치합니다(예: 분수처럼).","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"현재 커서 위치에 상표 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"선택한 텍스트 조각에 밑줄을 긋습니다.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"문단의 들여쓰기를 왼쪽에서부터 점진적으로 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"필드(예: 목차)를 업데이트합니다.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"링크를 방문합니다(링크에 커서를 놓은 상태).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"현재 문서의 '확대/축소' 매개변수를 기본값인 100%로 재설정합니다.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"현재 편집 중인 문서를 확대합니다.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"현재 편집 중인 문서를 축소합니다.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"복사","Common.Controllers.Shortcuts.txtLabelCopyFormat":"복사 형식","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"자르기","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"기울림꼴","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage이동","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"저장","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"취소선","Common.Controllers.Shortcuts.txtLabelSubscript":"아래 첨자","Common.Controllers.Shortcuts.txtLabelSuperscript":"위 첨자","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"밑줄","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"방문링크","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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.textRadar":"레이더","Common.define.chartData.textRadarFilled":"채워진 레이더","Common.define.chartData.textRadarMarker":"마커가 있는 레이더","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.define.smartArt.textAccentedPicture":"강조된 이미지","Common.define.smartArt.textAccentProcess":"강조 프로세스","Common.define.smartArt.textAlternatingFlow":"대체 흐름","Common.define.smartArt.textAlternatingHexagons":"번갈아 가는 육각형","Common.define.smartArt.textAlternatingPictureBlocks":"그림 블록 대체","Common.define.smartArt.textAlternatingPictureCircles":"사진 원 대체","Common.define.smartArt.textArchitectureLayout":"구조 배치","Common.define.smartArt.textArrowRibbon":"화살표 리본","Common.define.smartArt.textAscendingPictureAccentProcess":"오름차순 그림 강조 프로세스","Common.define.smartArt.textBalance":"균형","Common.define.smartArt.textBasicBendingProcess":"기본 구부림 프로세스","Common.define.smartArt.textBasicBlockList":"기본 차단 목록","Common.define.smartArt.textBasicChevronProcess":"기본 쉐브론 프로세스","Common.define.smartArt.textBasicCycle":"기본 주기","Common.define.smartArt.textBasicMatrix":"기본 행렬","Common.define.smartArt.textBasicPie":"기본 파이","Common.define.smartArt.textBasicProcess":"기본 프로세스","Common.define.smartArt.textBasicPyramid":"기본 피라미드","Common.define.smartArt.textBasicRadial":"기본 원형","Common.define.smartArt.textBasicTarget":"기본 대상","Common.define.smartArt.textBasicTimeline":"기본 타임라인","Common.define.smartArt.textBasicVenn":"기본 벤 다이어그램","Common.define.smartArt.textBendingPictureAccentList":"이미지가있는 카드 유형 목록","Common.define.smartArt.textBendingPictureBlocks":"자동 배치 그림 블록","Common.define.smartArt.textBendingPictureCaption":"캡션이 있는 그림 목록","Common.define.smartArt.textBendingPictureCaptionList":"캡션이 있는 그림 목록","Common.define.smartArt.textBendingPictureSemiTranparentText":"반투명 텍스트가 있는 그림 유형 목록","Common.define.smartArt.textBlockCycle":"블록 주기","Common.define.smartArt.textBubblePictureList":"거품 이미지 목록","Common.define.smartArt.textCaptionedPictures":"캡션이 있는 사진","Common.define.smartArt.textChevronAccentProcess":"쉐브론 액센트 프로세스","Common.define.smartArt.textChevronList":"쉐브론 목록","Common.define.smartArt.textCircleAccentTimeline":"원형 강조 타임라인","Common.define.smartArt.textCircleArrowProcess":"원형 화살표 프로세스","Common.define.smartArt.textCirclePictureHierarchy":"원형 이미지 계층 구조","Common.define.smartArt.textCircleProcess":"원형 프로세스","Common.define.smartArt.textCircleRelationship":"원형 관계","Common.define.smartArt.textCircularBendingProcess":"원형 절곡 공정","Common.define.smartArt.textCircularPictureCallout":"원형 이미지 주석","Common.define.smartArt.textClosedChevronProcess":"닫힌 형태의 쉐브론 프로세스","Common.define.smartArt.textContinuousArrowProcess":"연속된 화살표 프로세스","Common.define.smartArt.textContinuousBlockProcess":"연속된 블록 프로세스","Common.define.smartArt.textContinuousCycle":"연속적인 주기","Common.define.smartArt.textContinuousPictureList":"연속된 그림 목록","Common.define.smartArt.textConvergingArrows":"수렴하는 화살표","Common.define.smartArt.textConvergingRadial":"한 지점으로 모이는 방사형","Common.define.smartArt.textConvergingText":"한 지점으로 모이는 텍스트","Common.define.smartArt.textCounterbalanceArrows":"평형 화살","Common.define.smartArt.textCycle":"주기","Common.define.smartArt.textCycleMatrix":"주기 행렬","Common.define.smartArt.textDescendingBlockList":"내림차순으로 정렬한 목록","Common.define.smartArt.textDescendingProcess":"내림차순 프로세스","Common.define.smartArt.textDetailedProcess":"상세한 프로세스","Common.define.smartArt.textDivergingArrows":"분기 화살표","Common.define.smartArt.textDivergingRadial":"분기하는 방사형","Common.define.smartArt.textEquation":"방정식","Common.define.smartArt.textFramedTextPicture":"테두리가 있는 텍스트 이미지","Common.define.smartArt.textFunnel":"깔때기","Common.define.smartArt.textGear":"대비","Common.define.smartArt.textGridMatrix":"격자 행렬","Common.define.smartArt.textGroupedList":"그룹화 된 목록","Common.define.smartArt.textHalfCircleOrganizationChart":"반원 형태 조직도","Common.define.smartArt.textHexagonCluster":"육각형 클러스터","Common.define.smartArt.textHexagonRadial":"육각형 방사형","Common.define.smartArt.textHierarchy":"계층","Common.define.smartArt.textHierarchyList":"계층 목록","Common.define.smartArt.textHorizontalBulletList":"가로 방향 불릿 목록","Common.define.smartArt.textHorizontalHierarchy":"수평적 계층","Common.define.smartArt.textHorizontalLabeledHierarchy":"가로로 라벨링된 계층 구조","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"가로로 다중 수준 계층","Common.define.smartArt.textHorizontalOrganizationChart":"가로 방향 조직도","Common.define.smartArt.textHorizontalPictureList":"가로로 나열된 그림 목록","Common.define.smartArt.textIncreasingArrowProcess":"증가 화살표 프로세스","Common.define.smartArt.textIncreasingCircleProcess":"증가하는 원 프로세스","Common.define.smartArt.textInterconnectedBlockProcess":"상호 연결된 블록 프로세스","Common.define.smartArt.textInterconnectedRings":"상호 연결된 링","Common.define.smartArt.textInvertedPyramid":"역 피라미드","Common.define.smartArt.textLabeledHierarchy":"레이블이 있는 계층 구조","Common.define.smartArt.textLinearVenn":"선형 벤 다이어그램","Common.define.smartArt.textLinedList":"선으로 구분된 목록","Common.define.smartArt.textList":"목록","Common.define.smartArt.textMatrix":"행렬","Common.define.smartArt.textMultidirectionalCycle":"다방향 사이클","Common.define.smartArt.textNameAndTitleOrganizationChart":"이름 및 직위 조직도","Common.define.smartArt.textNestedTarget":"중첩 대상","Common.define.smartArt.textNondirectionalCycle":"비방향 사이클","Common.define.smartArt.textOpposingArrows":"반대 화살표","Common.define.smartArt.textOpposingIdeas":"상반된 개념","Common.define.smartArt.textOrganizationChart":"조직도","Common.define.smartArt.textOther":"기타","Common.define.smartArt.textPhasedProcess":"단계별 프로세스","Common.define.smartArt.textPicture":"그림","Common.define.smartArt.textPictureAccentBlocks":"그림 강조 블럭","Common.define.smartArt.textPictureAccentList":"그림 강조 목록","Common.define.smartArt.textPictureAccentProcess":"그림 강조 프로세스","Common.define.smartArt.textPictureCaptionList":"그림 캡션 목록","Common.define.smartArt.textPictureFrame":"사진 프레임","Common.define.smartArt.textPictureGrid":"그림 격자","Common.define.smartArt.textPictureLineup":"사진 라인업","Common.define.smartArt.textPictureOrganizationChart":"그림 조직도","Common.define.smartArt.textPictureStrips":"그림 스트립","Common.define.smartArt.textPieProcess":"파이 프로세스","Common.define.smartArt.textPlusAndMinus":"플러스와 마이너스","Common.define.smartArt.textProcess":"프로세스","Common.define.smartArt.textProcessArrows":"프로세스 화살표","Common.define.smartArt.textProcessList":"프로세스 목록","Common.define.smartArt.textPyramid":"피라미드","Common.define.smartArt.textPyramidList":"피라미드 목록","Common.define.smartArt.textRadialCluster":"방사형 클러스터","Common.define.smartArt.textRadialCycle":"방사형주기","Common.define.smartArt.textRadialList":"방사형 목록","Common.define.smartArt.textRadialPictureList":"방사형 그림 목록","Common.define.smartArt.textRadialVenn":"원형 벤 다이어그램","Common.define.smartArt.textRandomToResultProcess":"무작위 랜덤 프로세스","Common.define.smartArt.textRelationship":"관계","Common.define.smartArt.textRepeatingBendingProcess":"반복되는 접힘 과정","Common.define.smartArt.textReverseList":"역방향 목록","Common.define.smartArt.textSegmentedCycle":"분할된 주기","Common.define.smartArt.textSegmentedProcess":"세분화된 프로세스","Common.define.smartArt.textSegmentedPyramid":"분할된 피라미드","Common.define.smartArt.textSnapshotPictureList":"스냅샷 사진 목록","Common.define.smartArt.textSpiralPicture":"나선형 그림","Common.define.smartArt.textSquareAccentList":"사각형 강조 목록","Common.define.smartArt.textStackedList":"스택 오브젝트","Common.define.smartArt.textStackedVenn":"쌓인 벤 다이어그램","Common.define.smartArt.textStaggeredProcess":"단계별 프로세스","Common.define.smartArt.textStepDownProcess":"단계적 프로세스","Common.define.smartArt.textStepUpProcess":"단계별 프로세스","Common.define.smartArt.textSubStepProcess":"하위 단계 프로세스","Common.define.smartArt.textTabbedArc":"원호형 탭","Common.define.smartArt.textTableHierarchy":"테이블 계층","Common.define.smartArt.textTableList":"테이블 목록","Common.define.smartArt.textTabList":"탭 목록","Common.define.smartArt.textTargetList":"대상 목록","Common.define.smartArt.textTextCycle":"텍스트 사이클","Common.define.smartArt.textThemePictureAccent":"테마 이미지 강조","Common.define.smartArt.textThemePictureAlternatingAccent":"테마 이미지 교체 강조","Common.define.smartArt.textThemePictureGrid":"테마 이미지 격자","Common.define.smartArt.textTitledMatrix":"제목 행렬","Common.define.smartArt.textTitledPictureAccentList":"제목이 있는 이미지 강조 목록","Common.define.smartArt.textTitledPictureBlocks":"제목이 있는 그림 블록","Common.define.smartArt.textTitlePictureLineup":"타이틀 이미지 라인업","Common.define.smartArt.textTrapezoidList":"사다리꼴 목록","Common.define.smartArt.textUpwardArrow":"위쪽 화살표","Common.define.smartArt.textVaryingWidthList":"너비가 다른 목록","Common.define.smartArt.textVerticalAccentList":"수직 강조 목록","Common.define.smartArt.textVerticalArrowList":"수직 화살표 목록","Common.define.smartArt.textVerticalBendingProcess":"수직 절곡 프로세스","Common.define.smartArt.textVerticalBlockList":"수직 블록 목록","Common.define.smartArt.textVerticalBoxList":"수직 상자 목록","Common.define.smartArt.textVerticalBracketList":"수직 괄호 목록","Common.define.smartArt.textVerticalBulletList":"수직 글머리 기호 목록","Common.define.smartArt.textVerticalChevronList":"수직 쉐브론 목록","Common.define.smartArt.textVerticalCircleList":"수직 원 목록","Common.define.smartArt.textVerticalCurvedList":"수직 곡선 목록","Common.define.smartArt.textVerticalEquation":"수직 방정식","Common.define.smartArt.textVerticalPictureAccentList":"수직 방향 그림 강조 목록","Common.define.smartArt.textVerticalPictureList":"수직 이미지 목록","Common.define.smartArt.textVerticalProcess":"수직 프로세스","Common.Translation.textMoreButton":"더","Common.Translation.tipFileLocked":"문서가 편집 잠금 상태입니다. \n변경한 후 로컬 복사본으로 저장할 수 있습니다.","Common.Translation.tipFileReadOnly":"파일이 읽기 전용입니다. 변경 사항을 유지하려면 파일을 새 이름으로 저장하거나 다른 위치에 저장하세요.","Common.Translation.warnFileLocked":"파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.","Common.Translation.warnFileLockedBtnEdit":"복사본 만들기","Common.Translation.warnFileLockedBtnView":"미리보기","Common.UI.ButtonColored.textAutoColor":"자동","Common.UI.ButtonColored.textEyedropper":"스포이드","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":"금","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":"목","Common.UI.Calendar.textShortTuesday":"화","Common.UI.Calendar.textShortWednesday":"우리","Common.UI.Calendar.textYears":"년","Common.UI.ComboBorderSize.txtNoBorders":"테두리 없음","Common.UI.ComboBorderSizeEditable.txtNoBorders":"테두리 없음","Common.UI.ComboDataView.emptyComboText":"스타일 없음","Common.UI.ExtendedColorDialog.addButtonText":"Add","Common.UI.ExtendedColorDialog.textCurrent":"현재","Common.UI.ExtendedColorDialog.textHexErr":"입력 한 값이 잘못되었습니다.
000000에서 FFFFFF 사이의 값을 입력하십시오.","Common.UI.ExtendedColorDialog.textNew":"신규","Common.UI.ExtendedColorDialog.textRGBErr":"입력 한 값이 잘못되었습니다.
0에서 255 사이의 숫자 값을 입력하십시오.","Common.UI.HSBColorPicker.textNoColor":"색상 없음","Common.UI.InputField.txtEmpty":"이 필드는 필수 입력 항목입니다","Common.UI.InputFieldBtnCalendar.textDate":"날짜선택","Common.UI.InputFieldBtnPassword.textHintHidePwd":"비밀번호 숨기기","Common.UI.InputFieldBtnPassword.textHintHold":"길게 눌러 비밀번호 보기","Common.UI.InputFieldBtnPassword.textHintShowPwd":"비밀번호 표시","Common.UI.SearchBar.textFind":"찾기","Common.UI.SearchBar.tipCloseSearch":"검색 닫기","Common.UI.SearchBar.tipNextResult":"다음결과","Common.UI.SearchBar.tipOpenAdvancedSettings":"고급 설정 열기","Common.UI.SearchBar.tipPreviousResult":"이전 결과","Common.UI.SearchDialog.textHighlight":"결과 강조 표시","Common.UI.SearchDialog.textMatchCase":"대소문자 구분","Common.UI.SearchDialog.textReplaceDef":"대체 텍스트 입력","Common.UI.SearchDialog.textSearchStart":"여기에 텍스트를 입력하십시오","Common.UI.SearchDialog.textTitle":"찾기 및 바꾸기","Common.UI.SearchDialog.textTitle2":"찾기","Common.UI.SearchDialog.textWholeWords":"전체 단어만","Common.UI.SearchDialog.txtBtnHideReplace":"바꾸기 숨기기","Common.UI.SearchDialog.txtBtnReplace":"바꾸기","Common.UI.SearchDialog.txtBtnReplaceAll":"모두 바꾸기","Common.UI.SynchronizeTip.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.SynchronizeTip.textGotIt":"확인","Common.UI.SynchronizeTip.textNew":"새로 만들기","Common.UI.SynchronizeTip.textSynchronize":"다른 사용자가 문서를 변경했습니다.
클릭하여 변경 사항을 저장하고 업데이트를 다시로드하십시오.","Common.UI.ThemeColorPalette.textRecentColors":"최근 색상","Common.UI.ThemeColorPalette.textStandartColors":"표준 색상","Common.UI.ThemeColorPalette.textThemeColors":"테마 색","Common.UI.ThemeColorPalette.textTransparent":"투명한","Common.UI.Themes.txtThemeClassicLight":"전통적인 밝은 색상","Common.UI.Themes.txtThemeContrastDark":"어두운 대비","Common.UI.Themes.txtThemeDark":"어두운","Common.UI.Themes.txtThemeGray":"회색","Common.UI.Themes.txtThemeLight":"밝은","Common.UI.Themes.txtThemeModernDark":"모던 다크","Common.UI.Themes.txtThemeModernLight":"모던 라이트","Common.UI.Themes.txtThemeSystem":"시스템과 동일","Common.UI.Themes.txtThemeWhite":"흰색","Common.UI.Window.cancelButtonText":"취소","Common.UI.Window.closeButtonText":"닫기","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"확인","Common.UI.Window.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.Window.textError":"오류","Common.UI.Window.textInformation":"정보","Common.UI.Window.textWarning":"경고","Common.UI.Window.yesButtonText":"예","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt 키","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl 키","Common.Utils.String.textShift":"Shift 키","Common.Utils.ThemeColor.txtaccent":"강조","Common.Utils.ThemeColor.txtAqua":"아쿠아","Common.Utils.ThemeColor.txtbackground":"배경","Common.Utils.ThemeColor.txtBlack":"검정","Common.Utils.ThemeColor.txtBlue":"파랑","Common.Utils.ThemeColor.txtBrightGreen":"밝은 녹색","Common.Utils.ThemeColor.txtBrown":"갈색","Common.Utils.ThemeColor.txtDarkBlue":"어두운 파랑색","Common.Utils.ThemeColor.txtDarker":"더 어둡게","Common.Utils.ThemeColor.txtDarkGray":"어두운 회색","Common.Utils.ThemeColor.txtDarkGreen":"어두운 초록색","Common.Utils.ThemeColor.txtDarkPurple":"진한 보라색","Common.Utils.ThemeColor.txtDarkRed":"어두운 빨간색","Common.Utils.ThemeColor.txtDarkTeal":"어두운 암청색","Common.Utils.ThemeColor.txtDarkYellow":"어두운 노란색","Common.Utils.ThemeColor.txtGold":"금색","Common.Utils.ThemeColor.txtGray":"회색","Common.Utils.ThemeColor.txtGreen":"녹색","Common.Utils.ThemeColor.txtIndigo":"남색","Common.Utils.ThemeColor.txtLavender":"라벤더","Common.Utils.ThemeColor.txtLightBlue":"밝은 파랑","Common.Utils.ThemeColor.txtLighter":"더 밝은","Common.Utils.ThemeColor.txtLightGray":"밝은 회색","Common.Utils.ThemeColor.txtLightGreen":"밝은 초록","Common.Utils.ThemeColor.txtLightOrange":"밝은 주황","Common.Utils.ThemeColor.txtLightYellow":"밝은 노랑","Common.Utils.ThemeColor.txtOrange":"주황","Common.Utils.ThemeColor.txtPink":"분홍","Common.Utils.ThemeColor.txtPurple":"보라","Common.Utils.ThemeColor.txtRed":"빨강","Common.Utils.ThemeColor.txtRose":"장미","Common.Utils.ThemeColor.txtSkyBlue":"하늘색","Common.Utils.ThemeColor.txtTeal":"암청색","Common.Utils.ThemeColor.txttext":"본문","Common.Utils.ThemeColor.txtTurquosie":"터키옥색","Common.Utils.ThemeColor.txtViolet":"바이올렛","Common.Utils.ThemeColor.txtWhite":"힌색","Common.Utils.ThemeColor.txtYellow":"노랑","Common.Views.About.txtAddress":"주소 :","Common.Views.About.txtLicensee":"라이선스","Common.Views.About.txtLicensor":"라이센서","Common.Views.About.txtMail":"이메일 :","Common.Views.About.txtPoweredBy":"기술 지원","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.textDoubleSpaces":"더블 스페이스로 마침표 추가","Common.Views.AutoCorrectDialog.textFLCells":"표 셀의 첫 글자를 대문자로","Common.Views.AutoCorrectDialog.textFLDont":"뒤이어 대문자를 쓰지 마세요","Common.Views.AutoCorrectDialog.textFLSentence":"영어 문장의 첫 글자를 대문자로","Common.Views.AutoCorrectDialog.textForLangFL":"언어에 대한 예외:","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.textWarnAddFL":"예외에는 문자, 대문자 또는 소문자만 포함되어야 합니다.","Common.Views.AutoCorrectDialog.textWarnAddRec":"인식되는 함수는 대소 A ~ Z까지의 문자만을 포함해야합니다.","Common.Views.AutoCorrectDialog.textWarnResetFL":"추가한 예외가 제거되고 제거된 예외가 복원됩니다. 계속하시겠습니까?","Common.Views.AutoCorrectDialog.textWarnResetRec":"추가한 모든 표현식이 삭제되고 삭제된 표현식이 복원됩니다. 계속하시겠습니까?","Common.Views.AutoCorrectDialog.warnReplace":"%1에 대한 자동 고침 항목이 이미 있습니다. 교체하시겠습니까?","Common.Views.AutoCorrectDialog.warnReset":"추가한 모든 자동 고침이 삭제되고 변경된 자동 수정이 원래 값으로 복원됩니다. 계속하시겠습니까?","Common.Views.AutoCorrectDialog.warnRestore":"%1의 자동 고침 항목이 원래 값으로 재설정됩니다. 계속하시겠습니까?","Common.Views.Chat.textChat":"채팅","Common.Views.Chat.textClosePanel":"채팅 닫기","Common.Views.Chat.textEnterMessage":"메시지를 입력하세요","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.mniFilterComments":"댓글 표시","Common.Views.Comments.mniFilterGroups":"그룹별 필터링","Common.Views.Comments.mniPositionAsc":"위에서부터","Common.Views.Comments.mniPositionDesc":"아래로부터","Common.Views.Comments.textAdd":"추가","Common.Views.Comments.textAddComment":"코멘트 추가","Common.Views.Comments.textAddCommentToDoc":"문서에 댓글 추가","Common.Views.Comments.textAddReply":"답장 추가","Common.Views.Comments.textAll":"모두","Common.Views.Comments.textAnonym":"게스트","Common.Views.Comments.textCancel":"취소","Common.Views.Comments.textClose":"닫기","Common.Views.Comments.textClosePanel":"코멘트 닫기","Common.Views.Comments.textComment":"코멘트","Common.Views.Comments.textComments":"코멘트","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"여기에 의견을 입력하십시오","Common.Views.Comments.textHintAddComment":"코멘트 추가","Common.Views.Comments.textOpen":"열기","Common.Views.Comments.textOpenAgain":"다시 열기","Common.Views.Comments.textReply":"댓글","Common.Views.Comments.textResolve":"해결","Common.Views.Comments.textResolved":"해결됨","Common.Views.Comments.textSort":"코멘트 분류","Common.Views.Comments.textSortFilter":"코멘트","Common.Views.Comments.textSortFilterMore":"정렬, 필터 및 기타 옵션","Common.Views.Comments.textSortMore":"정렬 및 기타 옵션","Common.Views.Comments.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.Comments.txtEmpty":"문서에 코멘트가 없습니다","Common.Views.CopyWarningDialog.textDontShow":"이 메시지를 다시 표시하지 않음","Common.Views.CopyWarningDialog.textMsg":"편집기 툴바 버튼과 상황메뉴를 사용한 복사, 잘라내기, 붙이기는 이 편집기 탭 안에서만 수행됩니다.

편집기 탭 외부와 복사 붙여넣기를 하기위해 다음과 같은 키보드 조합을 사용하세요: ","Common.Views.CopyWarningDialog.textTitle":"작업 복사, 잘라 내기 및 붙여 넣기","Common.Views.CopyWarningDialog.textToCopy":"복사","Common.Views.CopyWarningDialog.textToCut":"잘라내기","Common.Views.CopyWarningDialog.textToPaste":"붙여넣기","Common.Views.CustomizeQuickAccessDialog.textDownload":"다운로드","Common.Views.CustomizeQuickAccessDialog.textMsg":"빠른 실행 도구 모음에 표시할 명령을 선택하세요","Common.Views.CustomizeQuickAccessDialog.textPrint":"인쇄","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"빠른 인쇄","Common.Views.CustomizeQuickAccessDialog.textRedo":"다시 실행","Common.Views.CustomizeQuickAccessDialog.textSave":"저장","Common.Views.CustomizeQuickAccessDialog.textTitle":"빠른 실행 도구 모음 사용자 지정","Common.Views.CustomizeQuickAccessDialog.textUndo":"실행 취소","Common.Views.DocumentAccessDialog.textLoading":"로드 중 ...","Common.Views.DocumentAccessDialog.textTitle":"공유 설정","Common.Views.DocumentPropertyDialog.errorDate":"캘린더에서 값을 선택하면 날짜 형식으로 저장됩니다.
직접 입력하면 텍스트로 저장됩니다.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"아니요","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"예","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"속성에는 제목이 있어야 합니다","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"제목","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"예\" 또는 \"아니요\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"날짜","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"유형","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"숫자","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"유효한 숫자를 입력하세요","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"텍스트","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"속성에는 값이 있어야 합니다","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"값","Common.Views.DocumentPropertyDialog.txtTitle":"새 문서 속성","Common.Views.Draw.hintEraser":"지우개","Common.Views.Draw.hintSelect":"선택","Common.Views.Draw.txtEraser":"지우개","Common.Views.Draw.txtHighlighter":"하이라이터","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"펜","Common.Views.Draw.txtSelect":"선택","Common.Views.Draw.txtSize":"크기","Common.Views.ExternalDiagramEditor.textTitle":"차트 편집기","Common.Views.ExternalEditor.textClose":"닫기","Common.Views.ExternalEditor.textSave":"저장 및 종료","Common.Views.ExternalLinksDlg.closeButtonText":"닫기","Common.Views.ExternalLinksDlg.textAutoUpdate":"연결된 원본에서 데이터 자동 업데이트","Common.Views.ExternalLinksDlg.textChange":"소스 변경","Common.Views.ExternalLinksDlg.textDelete":"링크 해제","Common.Views.ExternalLinksDlg.textDeleteAll":"모든 링크 해제","Common.Views.ExternalLinksDlg.textOk":"확인","Common.Views.ExternalLinksDlg.textOpen":"오픈 소스","Common.Views.ExternalLinksDlg.textSource":"출처","Common.Views.ExternalLinksDlg.textStatus":"상태","Common.Views.ExternalLinksDlg.textUnknown":"알 수 없음","Common.Views.ExternalLinksDlg.textUpdate":"값 업데이트","Common.Views.ExternalLinksDlg.textUpdateAll":"모두 업데이트","Common.Views.ExternalLinksDlg.textUpdating":"업데이트 중…","Common.Views.ExternalLinksDlg.txtTitle":"외부 링크","Common.Views.ExternalMergeEditor.textTitle":"편지 병합받는 사람","Common.Views.ExternalOleEditor.textTitle":"스프레드시트 편집기","Common.Views.FormatSettingsDialog.textCategory":"범주","Common.Views.FormatSettingsDialog.textDecimal":"소수","Common.Views.FormatSettingsDialog.textFormat":"서식","Common.Views.FormatSettingsDialog.textLinked":"원본에 연결","Common.Views.FormatSettingsDialog.textLocale":"지역 설정","Common.Views.FormatSettingsDialog.textSeparator":"천 단위 구분 기호 사용","Common.Views.FormatSettingsDialog.textSymbols":"기호","Common.Views.FormatSettingsDialog.textTitle":"숫자 서식","Common.Views.FormatSettingsDialog.txtAccounting":"회계","Common.Views.FormatSettingsDialog.txtAs10":"10분의 1 단위로 (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"백분위로 (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"16분의 1 단위로 (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"2분할","Common.Views.FormatSettingsDialog.txtAs4":"4분할","Common.Views.FormatSettingsDialog.txtAs8":"8분할","Common.Views.FormatSettingsDialog.txtCurrency":"통화","Common.Views.FormatSettingsDialog.txtCustom":"사용자 지정","Common.Views.FormatSettingsDialog.txtCustomWarning":"사용자 숫자 서식을 주의해서 입력하세요. 스프레드시트 편집기는 xlsx 파일에 영향을 줄 수 있는 사용자 서식 오류를 확인하지 않습니다.","Common.Views.FormatSettingsDialog.txtDate":"날짜","Common.Views.FormatSettingsDialog.txtFraction":"분수","Common.Views.FormatSettingsDialog.txtGeneral":"일반","Common.Views.FormatSettingsDialog.txtNone":"없음","Common.Views.FormatSettingsDialog.txtNumber":"숫자","Common.Views.FormatSettingsDialog.txtPercentage":"백분율","Common.Views.FormatSettingsDialog.txtSample":"샘플 :","Common.Views.FormatSettingsDialog.txtScientific":"지수","Common.Views.FormatSettingsDialog.txtText":"텍스트","Common.Views.FormatSettingsDialog.txtTime":"시간","Common.Views.FormatSettingsDialog.txtUpto1":"한 자리까지 (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"두 자리까지 (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"세 자리까지 (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"빠른 실행 도구 모음","Common.Views.Header.labelCoUsersDescr":"파일을 편집 중인 사용자:","Common.Views.Header.textAddFavorite":"즐겨찾기에 추가","Common.Views.Header.textAdvSettings":"고급 설정","Common.Views.Header.textBack":"파일 위치 열기","Common.Views.Header.textClose":"파일 닫기","Common.Views.Header.textCompactView":"보기 컴팩트 도구 모음","Common.Views.Header.textDocEditDesc":"변경 사항을 적용하세요","Common.Views.Header.textDocViewDesc":"파일을 보기만 가능하며 편집할 수 없습니다","Common.Views.Header.textDocViewFormDesc":"양식을 작성할 때 어떻게 보일지 미리보기","Common.Views.Header.textDownload":"다운로드","Common.Views.Header.textEdit":"편집 중","Common.Views.Header.textHideLines":"눈금자 숨기기","Common.Views.Header.textHideStatusBar":"상태 표시 줄 숨기기","Common.Views.Header.textPrint":"인쇄","Common.Views.Header.textReadOnly":"읽기 전용","Common.Views.Header.textRemoveFavorite":"즐겨찾기 제거","Common.Views.Header.textReview":"검토 중","Common.Views.Header.textReviewDesc":"변경 제안","Common.Views.Header.textShare":"공유","Common.Views.Header.textStartFill":"공유 및 수집","Common.Views.Header.textView":"보기 모드","Common.Views.Header.textViewForm":"양식 보기","Common.Views.Header.textZoom":"확대/축소","Common.Views.Header.tipAccessRights":"문서 액세스 권한 관리","Common.Views.Header.tipCustomizeQuickAccessToolbar":"빠른 실행 도구 모음 사용자 지정","Common.Views.Header.tipDocEdit":"편집","Common.Views.Header.tipDocView":"보기 모드","Common.Views.Header.tipDocViewForm":"양식 보기","Common.Views.Header.tipDownload":"파일을 다운로드","Common.Views.Header.tipFillStatus":"작성 상태","Common.Views.Header.tipGoEdit":"현재 파일 편집","Common.Views.Header.tipPrint":"파일 출력","Common.Views.Header.tipPrintQuick":"빠른 인쇄","Common.Views.Header.tipRedo":"다시 실행","Common.Views.Header.tipReview":"검토 중","Common.Views.Header.tipSave":"저장","Common.Views.Header.tipSearch":"검색","Common.Views.Header.tipUndo":"실행 취소","Common.Views.Header.tipUsers":"사용자 보기","Common.Views.Header.tipViewSettings":"보기 설정","Common.Views.Header.tipViewUsers":"사용자보기 및 문서 액세스 권한 관리","Common.Views.Header.txtAccessRights":"액세스 권한 변경","Common.Views.Header.txtRename":"이름 바꾸기","Common.Views.History.textCloseHistory":"기록 닫기","Common.Views.History.textHide":"Collapse","Common.Views.History.textHideAll":"자세한 변경 사항 숨기기","Common.Views.History.textHighlightDeleted":"결과 강조 삭제","Common.Views.History.textMore":"더 보기","Common.Views.History.textRestore":"복원","Common.Views.History.textShow":"확장","Common.Views.History.textShowAll":"자세한 변경 사항 표시","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"버전 기록","Common.Views.ImageFromUrlDialog.textUrl":"이미지 URL 붙여 넣기 :","Common.Views.ImageFromUrlDialog.txtEmpty":"이 입력란은 필수 항목입니다.","Common.Views.ImageFromUrlDialog.txtNotUrl":"이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.","Common.Views.InsertTableDialog.textInvalidRowsCols":"유효한 행 및 열 수를 지정해야합니다.","Common.Views.InsertTableDialog.txtColumns":"열 수","Common.Views.InsertTableDialog.txtMaxText":"이 필드의 최대 값은 {0}입니다.","Common.Views.InsertTableDialog.txtMinText":"이 필드의 최소값은 {0}입니다.","Common.Views.InsertTableDialog.txtRows":"행 수","Common.Views.InsertTableDialog.txtTitle":"표 크기","Common.Views.InsertTableDialog.txtTitleSplit":"셀 분할","Common.Views.LanguageDialog.labelSelect":"문서 언어 선택","Common.Views.MacrosAiDialog.textAreaPlaceholder":"쿼리에 사용할 프롬프트를 입력하세요","Common.Views.MacrosAiDialog.textCreate":"만들기","Common.Views.MacrosDialog.textAutostart":"자동 시작","Common.Views.MacrosDialog.textConvertFromVBA":"VBA에서 변환","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"VBA 매크로 변환","Common.Views.MacrosDialog.textCopy":"복사","Common.Views.MacrosDialog.textCreateFromDesc":"설명으로부터 만들기","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"설명을 기반으로 매크로 만들기","Common.Views.MacrosDialog.textCustomFunction":"사용자 정의 함수","Common.Views.MacrosDialog.textCustomFunctions":"사용자 정의 함수","Common.Views.MacrosDialog.textDebug":"디버그","Common.Views.MacrosDialog.textDelete":"삭제","Common.Views.MacrosDialog.textFunctions":"함수","Common.Views.MacrosDialog.textLoading":"불러오는 중...","Common.Views.MacrosDialog.textMacro":"매크로","Common.Views.MacrosDialog.textMacros":"매크로","Common.Views.MacrosDialog.textMakeAutostart":"자동 시작 설정","Common.Views.MacrosDialog.textRename":"이름 바꾸기","Common.Views.MacrosDialog.textRun":"실행","Common.Views.MacrosDialog.textSave":"저장","Common.Views.MacrosDialog.textTitle":"매크로","Common.Views.MacrosDialog.textUnMakeAutostart":"자동 시작 해제","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"사용자 정의 함수 추가","Common.Views.MacrosDialog.tipFunctionCopy":"사용자 정의 함수 복사","Common.Views.MacrosDialog.tipFunctionDelete":"사용자 정의 함수 삭제","Common.Views.MacrosDialog.tipFunctionRename":"사용자 정의 함수 이름 바꾸기","Common.Views.MacrosDialog.tipMacrosAdd":"매크로 추가","Common.Views.MacrosDialog.tipMacrosCopy":"매크로 복사","Common.Views.MacrosDialog.tipMacrosDebug":"매크로 디버그","Common.Views.MacrosDialog.tipMacrosRename":"매크로 이름 바꾸기","Common.Views.MacrosDialog.tipMacrosRun":"매크로 실행","Common.Views.MacrosDialog.tipRedo":"다시 실행","Common.Views.MacrosDialog.tipUndo":"실행 취소","Common.Views.OpenDialog.closeButtonText":"파일 닫기","Common.Views.OpenDialog.txtEncoding":"인코딩","Common.Views.OpenDialog.txtIncorrectPwd":"비밀번호가 맞지 않음","Common.Views.OpenDialog.txtOpenFile":"파일을 열려면 암호를 입력하십시오.","Common.Views.OpenDialog.txtPassword":"암호","Common.Views.OpenDialog.txtPreview":"미리보기","Common.Views.OpenDialog.txtProtected":"암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.","Common.Views.OpenDialog.txtTitle":"%1 옵션 선택","Common.Views.OpenDialog.txtTitleProtected":"보호된 파일","Common.Views.PasswordDialog.txtDescription":"문서 보호용 비밀번호를 세팅하세요","Common.Views.PasswordDialog.txtIncorrectPwd":"확인 비밀번호가 같지 않음","Common.Views.PasswordDialog.txtPassword":"암호","Common.Views.PasswordDialog.txtRepeat":"비밀번호 반복","Common.Views.PasswordDialog.txtTitle":"비밀번호 설정","Common.Views.PasswordDialog.txtWarning":"주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.","Common.Views.PluginDlg.textDock":"플러그인 고정","Common.Views.PluginDlg.textLoading":"불러오는 중","Common.Views.PluginPanel.textClosePanel":"플러그인 닫기","Common.Views.PluginPanel.textHidePanel":"플러그인 축소","Common.Views.PluginPanel.textLoading":"불러오는 중","Common.Views.PluginPanel.textUndock":"플러그인 고정 해제","Common.Views.Plugins.groupCaption":"플러그인","Common.Views.Plugins.strPlugins":"플러그인","Common.Views.Plugins.textBackgroundPlugins":"백그라운드 플러그인","Common.Views.Plugins.textClosePanel":"플러그 인 닫기","Common.Views.Plugins.textLoading":"불러오는 중","Common.Views.Plugins.textSettings":"설정","Common.Views.Plugins.textStart":"시작","Common.Views.Plugins.textStop":"정지","Common.Views.Plugins.textTheListOfBackgroundPlugins":"백그라운드 플러그인 목록","Common.Views.Plugins.tipMore":"더 보기","Common.Views.Protection.hintAddPwd":"비밀번호로 암호화","Common.Views.Protection.hintDelPwd":"비밀번호 삭제","Common.Views.Protection.hintPwd":"비밀번호 변경 또는 삭제","Common.Views.Protection.hintSignature":"디지털 서명 또는 서명 라인을 추가 ","Common.Views.Protection.txtAddPwd":"비밀번호 추가","Common.Views.Protection.txtChangePwd":"비밀번호 변경","Common.Views.Protection.txtDeletePwd":"비밀번호 삭제","Common.Views.Protection.txtEncrypt":"암호화","Common.Views.Protection.txtInvisibleSignature":"디지털 서명을 추가","Common.Views.Protection.txtSignature":"서명","Common.Views.Protection.txtSignatureLine":"서명란 추가","Common.Views.RecentFiles.txtOpenRecent":"최근 열기","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.mniMMFromFile":"파일에서","Common.Views.ReviewChanges.mniMMFromStorage":"저장소에서","Common.Views.ReviewChanges.mniMMFromUrl":"URL에서","Common.Views.ReviewChanges.mniSettings":"비교 설정","Common.Views.ReviewChanges.strFast":"빠르게","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.tipCombine":"현재 문서를 다른 문서와 결합","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.tipMailRecepients":"메일 머지","Common.Views.ReviewChanges.tipRejectCurrent":"현재 변경 거부","Common.Views.ReviewChanges.tipReview":"변경 내용 추적","Common.Views.ReviewChanges.tipReviewView":"변경사항이 표시될 모드 선택","Common.Views.ReviewChanges.tipSetDocLang":"문서 언어 설정","Common.Views.ReviewChanges.tipSetSpelling":"맞춤법 검사","Common.Views.ReviewChanges.tipSharing":"문서 액세스 권한 관리","Common.Views.ReviewChanges.txtAccept":"수락","Common.Views.ReviewChanges.txtAcceptAll":"모든 변경 적용","Common.Views.ReviewChanges.txtAcceptChanges":"변경 접수","Common.Views.ReviewChanges.txtAcceptCurrent":"현재 변경 적용","Common.Views.ReviewChanges.txtChat":"채팅","Common.Views.ReviewChanges.txtClose":"닫기","Common.Views.ReviewChanges.txtCoAuthMode":"공동 편집 모드","Common.Views.ReviewChanges.txtCombine":"결합","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.txtMailMerge":"메일 머지","Common.Views.ReviewChanges.txtMarkup":"모든 변경{0}","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":"이전","Common.Views.ReviewChanges.txtPreview":"미리보기","Common.Views.ReviewChanges.txtReject":"거부","Common.Views.ReviewChanges.txtRejectAll":"모든 변경 사항 거부","Common.Views.ReviewChanges.txtRejectChanges":"변경 거부","Common.Views.ReviewChanges.txtRejectCurrent":"현재 변경 거부","Common.Views.ReviewChanges.txtSharing":"공유","Common.Views.ReviewChanges.txtSpelling":"맞춤법 검사","Common.Views.ReviewChanges.txtTurnon":"변경 내용 추적","Common.Views.ReviewChanges.txtView":"디스플레이 모드","Common.Views.ReviewChangesDialog.textTitle":"변경사항 검토","Common.Views.ReviewChangesDialog.txtAccept":"수락","Common.Views.ReviewChangesDialog.txtAcceptAll":"모든 변경 내용 적용","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"현재 변경 내용 적용","Common.Views.ReviewChangesDialog.txtNext":"다음 변경 사항","Common.Views.ReviewChangesDialog.txtPrev":"이전 변경으로","Common.Views.ReviewChangesDialog.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.textComment":"코멘트","Common.Views.ReviewPopover.textEdit":"확인","Common.Views.ReviewPopover.textEnterComment":"여기에 의견을 입력하십시오","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.ReviewPopover.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.ReviewPopover.txtAccept":"동의","Common.Views.ReviewPopover.txtDeleteTip":"삭제","Common.Views.ReviewPopover.txtEditTip":"편집","Common.Views.ReviewPopover.txtReject":"거부","Common.Views.SaveAsDlg.textLoading":"로드 중","Common.Views.SaveAsDlg.textTitle":"저장 폴더","Common.Views.SearchPanel.textCaseSensitive":"대소문자 구분","Common.Views.SearchPanel.textCloseSearch":"검색 닫기","Common.Views.SearchPanel.textContentChanged":"문서가 변경되었습니다.","Common.Views.SearchPanel.textFind":"찾기","Common.Views.SearchPanel.textFindAndReplace":"찾기 및 바꾸기","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} 항목이 성공적으로 대체되었습니다.","Common.Views.SearchPanel.textMatchUsingRegExp":"정규 표현식을 사용하여 일치하는 것을 찾기","Common.Views.SearchPanel.textNoMatches":"일치 하는 항목 없음","Common.Views.SearchPanel.textNoSearchResults":"검색결과 없음","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} 항목이 대체되었습니다. 남은 {2} 항목은 다른 사용자에 의해 잠겨 있습니다.","Common.Views.SearchPanel.textReplace":"바꾸기","Common.Views.SearchPanel.textReplaceAll":"모두 바꾸기","Common.Views.SearchPanel.textReplaceWith":"다음으로 교체","Common.Views.SearchPanel.textSearchAgain":"정확한 결과를 위해 {0}이 새로운 검색 {1}을 수행함.","Common.Views.SearchPanel.textSearchHasStopped":"검색이 중지되었습니다","Common.Views.SearchPanel.textSearchResults":"검색결과: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"검색 결과","Common.Views.SearchPanel.textTooManyResults":"표시할 결과가 너무 많습니다.","Common.Views.SearchPanel.textWholeWords":"전체 단어만","Common.Views.SearchPanel.tipNextResult":"다음결과","Common.Views.SearchPanel.tipPreviousResult":"이전 결과","Common.Views.SelectFileDlg.textLoading":"로드 중","Common.Views.SelectFileDlg.textTitle":"데이터 소스 선택","Common.Views.ShapeShadowDialog.txtAngle":"각도","Common.Views.ShapeShadowDialog.txtDistance":"간격","Common.Views.ShapeShadowDialog.txtSize":"크기","Common.Views.ShapeShadowDialog.txtTitle":"그림자 조정","Common.Views.ShapeShadowDialog.txtTransparency":"투명도","Common.Views.ShortcutsDialog.txtDescription":"설명","Common.Views.ShortcutsDialog.txtEmpty":"일치하는 결과가 없습니다. 검색 조건을 조정하세요.","Common.Views.ShortcutsDialog.txtRestoreAll":"모든 것을 기본값으로 복원","Common.Views.ShortcutsDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsDialog.txtRestoreDescription":"모든 단축키 설정이 초기상태로 복구될 것입니다.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"기본값으로 복원","Common.Views.ShortcutsDialog.txtSearch":"검색 ","Common.Views.ShortcutsDialog.txtTitle":"키보드 단축키","Common.Views.ShortcutsEditDialog.txtAction":"동작","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"이 바로가기는 편집할 수 없습니다","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"원하는 단축키를 입력하세요","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"%1 동작에 사용된 단축키","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"%1 동작에 사용된 단축키이고 변경될 수 없음","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"%1 동작에 사용된 단축키","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"%1 동작에 사용된 단축키이고 변경할 수 없음","Common.Views.ShortcutsEditDialog.txtNewShortcut":"새로운 단축키","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"\"%1\" 동작에 대한 단축키가 초기상태로 복구될 것입니다.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"기본값으로 복원","Common.Views.ShortcutsEditDialog.txtTitle":"단축키 편집","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"원하는 단축키를 입력하세요","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":"이미지 선택","Common.Views.SignDialog.textSignature":"서명은 처럼 보임","Common.Views.SignDialog.textTitle":"서명문서","Common.Views.SignDialog.textUseImage":"또는 서명으로 그림을 사용하려면 '이미지 선택'을 클릭","Common.Views.SignDialog.textValid":"%1에서 %2까지 유효","Common.Views.SignDialog.tipFontName":"폰트명","Common.Views.SignDialog.tipFontSize":"글꼴 크기","Common.Views.SignSettingsDialog.textAllowComment":"서명 대화창에 서명자의 코멘트 추가 허용","Common.Views.SignSettingsDialog.textDefInstruction":"이 문서에 서명하기 전에, 서명하는 내용이 정확한지 확인하세요.","Common.Views.SignSettingsDialog.textInfoEmail":"이메일","Common.Views.SignSettingsDialog.textInfoName":"이름","Common.Views.SignSettingsDialog.textInfoTitle":"서명자 타이틀","Common.Views.SignSettingsDialog.textInstructions":"서명자용 지침","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":"라벨은 비워 둘 수 없습니다.","DE.Controllers.DocProtection.txtIsProtectedComment":"문서가 보호되어 있습니다. 이 문서에는 주석만 삽입할 수 있습니다.","DE.Controllers.DocProtection.txtIsProtectedForms":"문서가 보호되어 있습니다. 이 문서에서는 양식만 작성할 수 있습니다.","DE.Controllers.DocProtection.txtIsProtectedTrack":"문서가 보호되어 있습니다. 이 문서를 편집할 수 있지만 모든 변경 사항이 추적됩니다.","DE.Controllers.DocProtection.txtIsProtectedView":"문서가 보호되어 있습니다. 이 문서를 보기만 가능합니다.","DE.Controllers.DocProtection.txtWasProtectedComment":"문서가 다른 사용자에 의해 보호되었습니다.\n이 문서에는 주석만 삽입할 수 있습니다.","DE.Controllers.DocProtection.txtWasProtectedForms":"문서가 다른 사용자에 의해 보호되었습니다.\n이 문서에서는 양식만 작성할 수 있습니다.","DE.Controllers.DocProtection.txtWasProtectedTrack":"문서가 다른 사용자에 의해 보호되었습니다.\n이 문서를 편집할 수 있지만 모든 변경사항이 추적됩니다.","DE.Controllers.DocProtection.txtWasProtectedView":"문서가 다른 사용자에 의해 보호되었습니다.\n이 문서는 보기만 가능합니다.","DE.Controllers.DocProtection.txtWasUnprotected":"문서가 보호 해제되었습니다.","DE.Controllers.HeaderFooterTab.textFieldExample":"코드 작성 예시: TIME @ \"dddd, MMMM d, yyyy\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"필드 코드","DE.Controllers.HeaderFooterTab.textFieldTitle":"필드","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"페이지 번호붙이기","DE.Controllers.LeftMenu.leavePageText":"이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.","DE.Controllers.LeftMenu.newDocumentTitle":"이름이 없는 문서","DE.Controllers.LeftMenu.notcriticalErrorTitle":"경고","DE.Controllers.LeftMenu.requestEditRightsText":"편집 권한 요청 중 ...","DE.Controllers.LeftMenu.textLoadHistory":"버전 기록 로드 중...","DE.Controllers.LeftMenu.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","DE.Controllers.LeftMenu.textReplaceSkipped":"대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.","DE.Controllers.LeftMenu.textReplaceSuccess":"검색이 완료되었습니다. 발생 횟수가 대체되었습니다 : {0}","DE.Controllers.LeftMenu.textSelectPath":"복사본을 저장할 새 이름을 입력하세요","DE.Controllers.LeftMenu.txtCompatible":"문서가 새 형식으로 저장됩니다. 모든 편집기 기능을 사용할 수 있지만 문서 레이아웃에 영향을 줄 수 있습니다.
이전 버전의 MS Word와 호환되도록 설정하려면 고급 설정에서 \"호환성\" 옵션을 사용하세요.","DE.Controllers.LeftMenu.txtUntitled":"제목없음","DE.Controllers.LeftMenu.warnDownloadAs":"이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다.
계속 하시겠습니까?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"{0}이(가) 편집이 형식으로 변환됩니다. 변환에는 시간이 소요될 수 있습니다. 결과는 텍스트를 편집할 수 있도록 최적화할 수 있으며, 특히 원본 파일에 그래픽이 많이 포함된 경우 원본이 {0}정확하게 일치하지 않을 수 있습니다.","DE.Controllers.LeftMenu.warnDownloadAsRTF":"이 형식으로 계속 저장하면 일부 형식이 손실될 수 있습니다.
계속하시겠습니까?","DE.Controllers.LeftMenu.warnReplaceString":"{0}은 대체 필드에 유효한 특수 문자가 아닙니다.","DE.Controllers.Main.applyChangesTextText":"변경 로드 중 ...","DE.Controllers.Main.applyChangesTitleText":"변경 내용 로드 중","DE.Controllers.Main.confirmMaxChangesSize":"작업의 크기가 서버에 설정된 제한을 초과합니다.
마지막 작업을 취소하려면 '실행 취소'를 누르고 작업을 로컬로 유지하려면 '계속'을 누르세요 (파일을 다운로드하거나 내용을 복사하여 데이터 손실이 없도록 하십시오).","DE.Controllers.Main.convertationTimeoutText":"전환 시간 초과를 초과했습니다.","DE.Controllers.Main.criticalErrorExtText":"문서 목록으로 돌아가려면 \"OK\"를 누르십시오.","DE.Controllers.Main.criticalErrorExtTextClose":"편집기를 닫으려면 \"확인\"을 누르세요.","DE.Controllers.Main.criticalErrorTitle":"오류","DE.Controllers.Main.downloadErrorText":"다운로드하지 못했습니다.","DE.Controllers.Main.downloadMergeText":"다운로드 중 ...","DE.Controllers.Main.downloadMergeTitle":"다운로드 중","DE.Controllers.Main.downloadTextText":"문서 다운로드 중 ...","DE.Controllers.Main.downloadTitleText":"문서 다운로드 중","DE.Controllers.Main.errorAccessDeny":"권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.","DE.Controllers.Main.errorBadImageUrl":"이미지 URL이 잘못되었습니다.","DE.Controllers.Main.errorCannotPasteImg":"이 이미지를 클립보드에서 붙여넣을 수는 없지만 기기에 저장하고,\n거기에서 삽입하거나 텍스트가 없는 이미지를 복사하여 문서에 붙여넣을 수 있습니다.","DE.Controllers.Main.errorCoAuthoringDisconnect":"서버 연결이 끊어졌습니다. 지금 문서를 편집 할 수 없습니다.","DE.Controllers.Main.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","DE.Controllers.Main.errorCompare":"공동 편집 시 \"문서 비교\" 기능을 사용할 수 없습니다.","DE.Controllers.Main.errorConnectToServer":"문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하세요.
\"확인\" 버튼을 클릭하면 문서를 다운로드하라는 메시지가 표시됩니다.","DE.Controllers.Main.errorCopyDisabled":"보안상의 이유로 이 문서의 내용은 복사할 수 없습니다.","DE.Controllers.Main.errorDatabaseConnection":"외부 오류.
데이터베이스 연결 오류입니다. 오류가 계속 발생하면 지원부에 문의하십시오.","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.errorEditProtectedRange":"이 선택 영역은 보호되어 있어 편집할 수 없습니다.","DE.Controllers.Main.errorEmailClient":"이메일 클라이언트를 찾을 수 없습니다.","DE.Controllers.Main.errorEmptyTOC":"선택한 텍스트에 스타일 갤러리에서 제목 스타일을 적용하여 목차를 만들기 시작하세요.","DE.Controllers.Main.errorFilePassProtect":"문서가 암호로 보호되어 있습니다.","DE.Controllers.Main.errorFileSizeExceed":"이 파일은 이 호스트의 크기 제한을 초과합니다.
자세한 내용은 파일 서비스 호스트의 관리자에게 문의하십시오.","DE.Controllers.Main.errorForceSave":"파일 저장중 문제 발생됨. 컴퓨터 하드 드라이브에 파일을 저장하려면 '로 다운로드' 옵션을 사용 또는 나중에 다시 시도하세요.","DE.Controllers.Main.errorInconsistentExt":"파일을 여는 중 오류가 발생했습니다.
파일 내용이 파일 확장명과 일치하지 않습니다.","DE.Controllers.Main.errorInconsistentExtDocx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 텍스트 문서(예: docx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","DE.Controllers.Main.errorInconsistentExtPdf":"파일을 여는 동안 오류가 발생했습니다.
파일 내용은 다음 형식 중 하나에 해당합니다:pdf/djvu/xps/oxps 그러나 파일의 확장자가 일치하지 않습니다:%1.","DE.Controllers.Main.errorInconsistentExtPptx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 프리젠테이션(예: pptx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","DE.Controllers.Main.errorInconsistentExtXlsx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용은 스프레드시트(예: xlsx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","DE.Controllers.Main.errorKeyEncrypt":"알 수없는 키 설명자","DE.Controllers.Main.errorKeyExpire":"키 설명자가 만료되었습니다","DE.Controllers.Main.errorLoadingFont":"글꼴 불러오기에 실패하였습니다.
문서 시스템 관리자에게 문의하세요.","DE.Controllers.Main.errorMailMergeLoadFile":"문서 읽기에 실패했습니다. 다른 파일을 선택하십시오.","DE.Controllers.Main.errorMailMergeSaveFile":"병합하지 못했습니다.","DE.Controllers.Main.errorNoTOC":"업데이트할 목차가 없습니다. 참조 탭에서 삽입할 수 있습니다.","DE.Controllers.Main.errorPasswordIsNotCorrect":"잘못된 비밀번호.
캡 잠금 버튼이 꺼져 있는지 확인하고 올바른 대문자를 사용해야 합니다.","DE.Controllers.Main.errorSaveWatermark":"이 파일에는 다른 도메인에 연결된 워터마크 이미지가 포함되어 있습니다.
PDF에서 이미지를 표시하려면 문서와 동일한 도메인에서 링크되도록 업데이트하거나 컴퓨터에서 직접 업로드하세요.","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.errorTextFormWrongFormat":"입력한 값이 필드 형식과 일치하지 않습니다.","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.leavePageTextOnClose":"이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.","DE.Controllers.Main.loadFontsTextText":"데이터 로드 중 ...","DE.Controllers.Main.loadFontsTitleText":"데이터 로드 중","DE.Controllers.Main.loadFontTextText":"데이터 로드 중 ...","DE.Controllers.Main.loadFontTitleText":"데이터 로드 중","DE.Controllers.Main.loadImagesTextText":"이미지 로드 중 ...","DE.Controllers.Main.loadImagesTitleText":"이미지 로드 중","DE.Controllers.Main.loadImageTextText":"이미지 로드 중 ...","DE.Controllers.Main.loadImageTitleText":"이미지 로드 중","DE.Controllers.Main.loadingDocumentTextText":"문서 로드 중 ...","DE.Controllers.Main.loadingDocumentTitleText":"문서 로드 중","DE.Controllers.Main.mailMergeLoadFileText":"데이터 소스 로드 중 ...","DE.Controllers.Main.mailMergeLoadFileTitle":"데이터 소스 로드 중","DE.Controllers.Main.notcriticalErrorTitle":"경고","DE.Controllers.Main.openErrorText":"파일을 여는 동안 오류가 발생했습니다.","DE.Controllers.Main.openTextText":"문서 열기 중 ...","DE.Controllers.Main.openTitleText":"문서 열기","DE.Controllers.Main.printTextText":"문서 인쇄 중 ...","DE.Controllers.Main.printTitleText":"문서 인쇄 중","DE.Controllers.Main.reloadButtonText":"페이지 새로 고침","DE.Controllers.Main.requestEditFailedMessageText":"누군가이 문서를 지금 편집하고 있습니다. 나중에 다시 시도하십시오.","DE.Controllers.Main.requestEditFailedTitleText":"액세스가 거부되었습니다","DE.Controllers.Main.saveErrorText":"파일을 저장하는 동안 오류가 발생했습니다.","DE.Controllers.Main.saveErrorTextDesktop":"이 파일을 저장하거나 생성할 수 없습니다.
가능한 이유는 다음과 같습니다.
1. 파일이 읽기 전용입니다.
2. 다른 사용자가 파일을 편집 중입니다.
3. 디스크가 가득 찼거나 손상되었습니다.","DE.Controllers.Main.saveTextText":"문서 저장 중 ...","DE.Controllers.Main.saveTitleText":"문서 저장 중","DE.Controllers.Main.savingText":"저장 중","DE.Controllers.Main.scriptLoadError":"연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.","DE.Controllers.Main.sendMergeText":"병합 결과 보내는 중","DE.Controllers.Main.sendMergeTitle":"병합 결과 보내기","DE.Controllers.Main.splitDividerErrorText":"행 수는 %1 의 제수 여야합니다.","DE.Controllers.Main.splitMaxColsErrorText":"열 수가 %1 보다 작아야합니다.","DE.Controllers.Main.splitMaxRowsErrorText":"행 수가 %1 보다 적어야합니다.","DE.Controllers.Main.textAnonymous":"익명","DE.Controllers.Main.textAnyone":"누구나","DE.Controllers.Main.textApplyAll":"모든 방정식에 적용","DE.Controllers.Main.textBuyNow":"웹 사이트 방문","DE.Controllers.Main.textChangesSaved":"모든 변경 사항이 저장되었습니다","DE.Controllers.Main.textClose":"닫기","DE.Controllers.Main.textCloseTip":"도움말을 닫으려면 클릭하십시오","DE.Controllers.Main.textConnectionLost":"연결을 시도 중입니다. 연결 설정을 확인해 주세요.","DE.Controllers.Main.textContactUs":"영업 담당자에게 문의","DE.Controllers.Main.textContinue":"계속","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.textPaidFeature":"유료기능","DE.Controllers.Main.textReconnect":"연결이 복원되었습니다","DE.Controllers.Main.textRemember":"모든 파일에 대한 선택 사항을 기억하기","DE.Controllers.Main.textRememberMacros":"모든 매크로에 대한 내 선택 기억","DE.Controllers.Main.textRenameError":"사용자 이름은 비워둘 수 없습니다.","DE.Controllers.Main.textRenameLabel":"협업에 사용할 이름을 입력합니다","DE.Controllers.Main.textRequestMacros":"매크로에서 URL로 요청합니다. %1에게 요청을 허용하시겠습니까?","DE.Controllers.Main.textShape":"도형","DE.Controllers.Main.textSignature":"서명","DE.Controllers.Main.textStrict":"엄격 모드","DE.Controllers.Main.textText":"본문","DE.Controllers.Main.textTryQuickPrint":"빠른 인쇄를 선택했습니다. 전체 문서가 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.
계속하시겠습니까?","DE.Controllers.Main.textTryUndoRedo":"빠른 공동-편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"엄격 모드\" 버튼을 클릭하면 엄격한 공동-편집 모드로 전환되어 다른 사용자의 방해 없이 파일을 편집 할 수 있고 저장 후에 만 ​​변경 사항을 보냅니다. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ","DE.Controllers.Main.textTryUndoRedoWarn":"빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.","DE.Controllers.Main.textUndo":"실행 취소","DE.Controllers.Main.textUpdateVersion":"현재 문서를 편집할 수 없습니다.
파일을 업데이트 중입니다. 잠시만 기다려 주세요...","DE.Controllers.Main.textUpdating":"업데이트 중","DE.Controllers.Main.tipLicenseExceeded":"라이선스에서 허용된 최대 동시 연결 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","DE.Controllers.Main.tipLicenseUsersExceeded":"문서가 라이선스에 따라 편집할 수 있는 최대 인원에 도달하여 읽기 전용 모드로 열렸습니다.

편집을 원한다면 나중에 다시 시도하던지 관리자에게 연락하세요.","DE.Controllers.Main.titleLicenseExp":"라이선스 만료","DE.Controllers.Main.titleLicenseNotActive":"라이선스가 활성화되지 않음","DE.Controllers.Main.titleReadOnly":"읽기 전용 모드","DE.Controllers.Main.titleServerVersion":"편집기가 업데이트됨","DE.Controllers.Main.titleUpdateVersion":"버전이 변경되었습니다.","DE.Controllers.Main.txtAbove":"위","DE.Controllers.Main.txtArt":"여기에 텍스트를 입력하세요","DE.Controllers.Main.txtBasicShapes":"기본 도형","DE.Controllers.Main.txtBelow":"아래","DE.Controllers.Main.txtBookmarkError":"오류! 즐겨찾기가 정의되지 않음","DE.Controllers.Main.txtButtons":"버튼","DE.Controllers.Main.txtCallouts":"설명선","DE.Controllers.Main.txtCharts":"차트","DE.Controllers.Main.txtChoose":"아이템 선택","DE.Controllers.Main.txtClickToLoad":"이미지를 불러오려면 클릭하세요","DE.Controllers.Main.txtCurrentDocument":"현재 문서","DE.Controllers.Main.txtDiagramTitle":"차트 제목","DE.Controllers.Main.txtEditingMode":"편집 모드 설정 ...","DE.Controllers.Main.txtEndOfFormula":"수식의 예기치 않은 종료","DE.Controllers.Main.txtEnterDate":"미주 날짜","DE.Controllers.Main.txtErrorLoadHistory":"기록로드 실패","DE.Controllers.Main.txtEvenPage":"짝수 페이지","DE.Controllers.Main.txtFiguredArrows":"블록 화살표","DE.Controllers.Main.txtFirstPage":"첫 페이지","DE.Controllers.Main.txtFooter":"꼬리말","DE.Controllers.Main.txtFormulaNotInTable":"표에 없는 수식","DE.Controllers.Main.txtHeader":"머리글","DE.Controllers.Main.txtHyperlink":"하이퍼 링크","DE.Controllers.Main.txtIndTooLarge":"색인이 너무 큽니다","DE.Controllers.Main.txtLines":"선","DE.Controllers.Main.txtMainDocOnly":"오류! 주요 문서만 해당됨.","DE.Controllers.Main.txtMath":"수학","DE.Controllers.Main.txtMissArg":"인수가 없습니다","DE.Controllers.Main.txtMissOperator":"연산자가 없습니다","DE.Controllers.Main.txtNeedSynchronize":"업데이트가 있음","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.txtSameAsPrev":"이전과 동일","DE.Controllers.Main.txtSaveCopyAsComplete":"파일 복사본이 성공적으로 저장되었습니다","DE.Controllers.Main.txtScheme_Aspect":"종횡비","DE.Controllers.Main.txtScheme_Blue":"파랑","DE.Controllers.Main.txtScheme_Blue_Green":"청록","DE.Controllers.Main.txtScheme_Blue_II":"파랑 II","DE.Controllers.Main.txtScheme_Blue_Warm":"따뜻한 파랑","DE.Controllers.Main.txtScheme_Grayscale":"그레이스케일","DE.Controllers.Main.txtScheme_Green":"초록","DE.Controllers.Main.txtScheme_Green_Yellow":"연두","DE.Controllers.Main.txtScheme_Marquee":"선택 윤곽선","DE.Controllers.Main.txtScheme_Median":"중앙값","DE.Controllers.Main.txtScheme_Office":"오피스","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"주황","DE.Controllers.Main.txtScheme_Orange_Red":"주홍색","DE.Controllers.Main.txtScheme_Paper":"용지","DE.Controllers.Main.txtScheme_Red":"빨강","DE.Controllers.Main.txtScheme_Red_Orange":"적주황","DE.Controllers.Main.txtScheme_Red_Violet":"자홍색","DE.Controllers.Main.txtScheme_Slipstream":"슬립스트림","DE.Controllers.Main.txtScheme_Violet":"보라","DE.Controllers.Main.txtScheme_Violet_II":"보라 II","DE.Controllers.Main.txtScheme_Yellow":"노랑","DE.Controllers.Main.txtScheme_Yellow_Orange":"황주황","DE.Controllers.Main.txtSection":"섹션","DE.Controllers.Main.txtSeries":"Series","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_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_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_Book_Title":"표제","DE.Controllers.Main.txtStyle_Caption":"참조","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"기본 문단 글꼴","DE.Controllers.Main.txtStyle_Emphasis":"강조","DE.Controllers.Main.txtStyle_endnote_reference":"미주 참조","DE.Controllers.Main.txtStyle_endnote_text":"미주 텍스트","DE.Controllers.Main.txtStyle_footnote_reference":"각주 참조","DE.Controllers.Main.txtStyle_footnote_text":"각주 텍스트","DE.Controllers.Main.txtStyle_Heading_1":"제목 1","DE.Controllers.Main.txtStyle_Heading_2":"제목 2","DE.Controllers.Main.txtStyle_Heading_3":"제목 3","DE.Controllers.Main.txtStyle_Heading_4":"제목 4","DE.Controllers.Main.txtStyle_Heading_5":"제목 5","DE.Controllers.Main.txtStyle_Heading_6":"제목 6","DE.Controllers.Main.txtStyle_Heading_7":"제목 7","DE.Controllers.Main.txtStyle_Heading_8":"제목 8","DE.Controllers.Main.txtStyle_Heading_9":"제목 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"강한 강조","DE.Controllers.Main.txtStyle_Intense_Quote":"강한 인용","DE.Controllers.Main.txtStyle_Intense_Reference":"강한 강조","DE.Controllers.Main.txtStyle_List_Paragraph":"단락 목록","DE.Controllers.Main.txtStyle_No_List":"목록 없음","DE.Controllers.Main.txtStyle_No_Spacing":"간격 없음","DE.Controllers.Main.txtStyle_Normal":"일반","DE.Controllers.Main.txtStyle_Quote":"인용","DE.Controllers.Main.txtStyle_Strong":"굵은 텍스트","DE.Controllers.Main.txtStyle_Subtitle":"부제","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"약한 강조","DE.Controllers.Main.txtStyle_Subtle_Reference":"약한 참조","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.updateChartText":"차트 데이터 업데이트 중…","DE.Controllers.Main.uploadDocExtMessage":"알 수 없는 파일 형식입니다.","DE.Controllers.Main.uploadDocFileCountMessage":"업로드 된 문서가 없습니다.","DE.Controllers.Main.uploadDocSizeMessage":"최대 문서 크기 제한을 초과했습니다.","DE.Controllers.Main.uploadImageExtMessage":"알 수없는 이미지 형식입니다.","DE.Controllers.Main.uploadImageFileCountMessage":"이미지가 업로드되지 않았습니다.","DE.Controllers.Main.uploadImageSizeMessage":"이미지 크기 제한을 초과했습니다.","DE.Controllers.Main.uploadImageTextText":"이미지 업로드 중 ...","DE.Controllers.Main.uploadImageTitleText":"이미지 업로드 중","DE.Controllers.Main.waitText":"잠시만 기다려주세요...","DE.Controllers.Main.warnBrowserIE9":"응용 프로그램의 기능이 IE9에서 부족합니다. IE10 이상을 사용하십시오.","DE.Controllers.Main.warnBrowserZoom":"브라우저의 현재 확대/축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대/축소로 재설정하십시오.","DE.Controllers.Main.warnLicenseAnonymous":"익명 사용자에 대한 접근이 거부되었습니다.
이 문서는 보기 전용으로 열립니다.","DE.Controllers.Main.warnLicenseBefore":"라이선스가 활성화되지 않았습니다.
관리자에게 문의하세요.","DE.Controllers.Main.warnLicenseExp":"귀하의 라이선스가 만료되었습니다.
라이선스를 업데이트하고 페이지를 새로고침하십시오.","DE.Controllers.Main.warnLicenseLimitedNoAccess":"라이선스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.","DE.Controllers.Main.warnLicenseLimitedRenewed":"라이선스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오","DE.Controllers.Main.warnNoLicense":"%1 편집기에 동시 연결 한도에 도달했습니다. 이 문서는 보기로만 열릴 것입니다.
개별 업그레이드 조건에 대한 안내는 %1 영업팀에 문의하십시오.","DE.Controllers.Main.warnNoLicenseUsers":"%1 편집기의 사용자 한도에 도달했습니다.
개별 업그레이드 조건에 대한 안내는 %1 영업팀에 문의하십시오.","DE.Controllers.Main.warnProcessRightsChange":"파일 편집 권한이 거부되었습니다.","DE.Controllers.Main.warnStartFilling":"양식 작성이 진행 중입니다.
현재 파일 편집은 사용할 수 없습니다.","DE.Controllers.Navigation.txtBeginning":"문서의 시작","DE.Controllers.Navigation.txtGotoBeginning":"문서의 처음으로 이동","DE.Controllers.Print.textMarginsLast":"마지막 사용자 정의","DE.Controllers.Print.txtCustom":"사용자 정의","DE.Controllers.Print.txtPrintRangeInvalid":"잘못된 인쇄 범위","DE.Controllers.Search.notcriticalErrorTitle":"경고","DE.Controllers.Search.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","DE.Controllers.Search.textReplaceSkipped":"대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.","DE.Controllers.Search.textReplaceSuccess":"검색이 완료되었습니다. {0}번의 항목이 대체되었습니다.","DE.Controllers.Search.warnReplaceString":"{0}은 상자로 대체하기에 유효한 특수 문자가 아닙니다.","DE.Controllers.Statusbar.textDisconnect":"연결이 끊어졌습니다
연결 시도 중입니다. 연결 설정을 확인해 주세요.","DE.Controllers.Statusbar.textHasChanges":"새로운 변경 내역이 조회되었습니다","DE.Controllers.Statusbar.textSetTrackChanges":"변경 내용 추적 모드 사용중","DE.Controllers.Statusbar.textTrackChanges":"변경 내용 추적 기능이 활성화된 상태에서 문서가 열립니다.","DE.Controllers.Statusbar.tipReview":"변경 내용 추적","DE.Controllers.Statusbar.zoomText":"확대/축소 {0} %","DE.Controllers.Toolbar.confirmAddFontName":"저장하려는 글꼴을 현재 장치에서 사용할 수 없습니다.
시스템 글꼴 중 하나를 사용하여 텍스트 스타일을 표시하고 저장된 글꼴을 사용할 때 사용할 수 있습니다.
계속 하시겠습니까? ","DE.Controllers.Toolbar.dataUrl":"데이터 URL 붙여넣기","DE.Controllers.Toolbar.errorAccessDeny":"권한이 없는 작업을 시도하고 있습니다.
문서 서버 관리자에게 문의하세요.","DE.Controllers.Toolbar.fileUrl":"파일 URL 붙여넣기","DE.Controllers.Toolbar.helpChartElements":"몇 번의 클릭만으로 차트 요소의 표시 여부를 쉽게 전환할 수 있습니다.","DE.Controllers.Toolbar.helpChartElementsHeader":"차트 요소 표시","DE.Controllers.Toolbar.helpCommentFilter":"왼쪽 패널에서 열린 댓글과 해결된 댓글을 전환하여 보기 상태를 관리합니다.","DE.Controllers.Toolbar.helpCommentFilterHeader":"댓글 필터","DE.Controllers.Toolbar.notcriticalErrorTitle":"경고","DE.Controllers.Toolbar.textAccent":"Accents","DE.Controllers.Toolbar.textBracket":"대괄호","DE.Controllers.Toolbar.textConvertFormDownload":"파일을 작성 가능한 PDF 양식으로 다운로드하여 입력할 수 있습니다.","DE.Controllers.Toolbar.textConvertFormSave":"파일을 작성 가능한 PDF 양식으로 저장하여 입력할 수 있습니다.","DE.Controllers.Toolbar.textDownloadPdf":"PDF 다운로드","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":"대형 연산자","DE.Controllers.Toolbar.textLimitAndLog":"한계 및 로그 수","DE.Controllers.Toolbar.textMatrix":"행렬","DE.Controllers.Toolbar.textOperator":"연산자","DE.Controllers.Toolbar.textRadical":"근호","DE.Controllers.Toolbar.textRecentlyUsed":"최근 사용된","DE.Controllers.Toolbar.textSavePdf":"PDF로 저장","DE.Controllers.Toolbar.textScript":"스크립트","DE.Controllers.Toolbar.textSymbols":"기호","DE.Controllers.Toolbar.textTabForms":"폼","DE.Controllers.Toolbar.textWarning":"경고","DE.Controllers.Toolbar.txtAccent_Accent":"Acute","DE.Controllers.Toolbar.txtAccent_ArrowD":"오른쪽 위 왼쪽 화살표","DE.Controllers.Toolbar.txtAccent_ArrowL":"왼쪽 위 화살표","DE.Controllers.Toolbar.txtAccent_ArrowR":"오른쪽 위 화살표 위","DE.Controllers.Toolbar.txtAccent_Bar":"Bar","DE.Controllers.Toolbar.txtAccent_BarBot":"밑줄","DE.Controllers.Toolbar.txtAccent_BarTop":"오버바","DE.Controllers.Toolbar.txtAccent_BorderBox":"상자가있는 수식 (자리 표시 자 포함)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"상자화 된 수식 (예)","DE.Controllers.Toolbar.txtAccent_Check":"확인","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"아래쪽 중괄호","DE.Controllers.Toolbar.txtAccent_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","DE.Controllers.Toolbar.txtAccent_DDDot":"트리플 도트","DE.Controllers.Toolbar.txtAccent_DDot":"Double Dot","DE.Controllers.Toolbar.txtAccent_Dot":"Dot","DE.Controllers.Toolbar.txtAccent_DoubleBar":"Double Overbar","DE.Controllers.Toolbar.txtAccent_Grave":"무덤","DE.Controllers.Toolbar.txtAccent_GroupBot":"아래의 문자 그룹화","DE.Controllers.Toolbar.txtAccent_GroupTop":"위의 그룹화 문자","DE.Controllers.Toolbar.txtAccent_HarpoonL":"Leftwards Harpoon Above","DE.Controllers.Toolbar.txtAccent_HarpoonR":"Rightwards Harpoon Above","DE.Controllers.Toolbar.txtAccent_Hat":"모자","DE.Controllers.Toolbar.txtAccent_Smile":"Breve","DE.Controllers.Toolbar.txtAccent_Tilde":"물결표","DE.Controllers.Toolbar.txtBracket_Angle":"대괄호","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"구분 기호가있는 대괄호","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"구분 기호가 있는 대괄호","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_Curve":"대괄호","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"구분 기호가있는 대괄호","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_Custom_1":"사례 (두 조건)","DE.Controllers.Toolbar.txtBracket_Custom_2":"사례 (세 조건)","DE.Controllers.Toolbar.txtBracket_Custom_3":"Stack Object","DE.Controllers.Toolbar.txtBracket_Custom_4":"Stack Object","DE.Controllers.Toolbar.txtBracket_Custom_5":"사례 사례","DE.Controllers.Toolbar.txtBracket_Custom_6":"이항 계수","DE.Controllers.Toolbar.txtBracket_Custom_7":"이항 계수 (괄호 포함)","DE.Controllers.Toolbar.txtBracket_Line":"대괄호","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_LineDouble":"대괄호","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_LowLim":"대괄호","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_Round":"대괄호","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"구분 기호가있는 대괄호","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_Square":"대괄호","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"대괄호","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"대괄호","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"대괄호","DE.Controllers.Toolbar.txtBracket_SquareDouble":"대괄호","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_UppLim":"대괄호","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"단일 대괄호","DE.Controllers.Toolbar.txtDownload":"다운로드","DE.Controllers.Toolbar.txtFractionDiagonal":"Skewed Fraction","DE.Controllers.Toolbar.txtFractionDifferential_1":"미분","DE.Controllers.Toolbar.txtFractionDifferential_2":"대문자 델타 y/대문자 델타 x","DE.Controllers.Toolbar.txtFractionDifferential_3":"Differential","DE.Controllers.Toolbar.txtFractionDifferential_4":"미분","DE.Controllers.Toolbar.txtFractionHorizontal":"선형 분수","DE.Controllers.Toolbar.txtFractionPi_2":"파이 오버 2","DE.Controllers.Toolbar.txtFractionSmall":"Small Fraction","DE.Controllers.Toolbar.txtFractionVertical":"Stacked Fraction","DE.Controllers.Toolbar.txtFunction_1_Cos":"역 코사인 함수","DE.Controllers.Toolbar.txtFunction_1_Cosh":"쌍곡선 역 코사인 함수","DE.Controllers.Toolbar.txtFunction_1_Cot":"역 코탄젠트 함수","DE.Controllers.Toolbar.txtFunction_1_Coth":"쌍곡선 역 코탄젠트 함수","DE.Controllers.Toolbar.txtFunction_1_Csc":"Inverse Cosecant Function","DE.Controllers.Toolbar.txtFunction_1_Csch":"쌍곡선 반전 Cosecant 함수","DE.Controllers.Toolbar.txtFunction_1_Sec":"역 분개 함수","DE.Controllers.Toolbar.txtFunction_1_Sech":"쌍곡선 역 보조 함수","DE.Controllers.Toolbar.txtFunction_1_Sin":"역 사인 함수","DE.Controllers.Toolbar.txtFunction_1_Sinh":"쌍곡선 역 사인 함수","DE.Controllers.Toolbar.txtFunction_1_Tan":"역 탄젠트 함수","DE.Controllers.Toolbar.txtFunction_1_Tanh":"쌍곡선 역 탄젠트 함수","DE.Controllers.Toolbar.txtFunction_Cos":"코사인 함수","DE.Controllers.Toolbar.txtFunction_Cosh":"쌍곡선 코사인 함수","DE.Controllers.Toolbar.txtFunction_Cot":"Cotangent Function","DE.Controllers.Toolbar.txtFunction_Coth":"쌍곡선 코탄 센트 함수","DE.Controllers.Toolbar.txtFunction_Csc":"Cosecant 함수","DE.Controllers.Toolbar.txtFunction_Csch":"쌍곡선 보조 함수","DE.Controllers.Toolbar.txtFunction_Custom_1":"Sine theta","DE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"탄젠트 공식","DE.Controllers.Toolbar.txtFunction_Sec":"Secant 함수","DE.Controllers.Toolbar.txtFunction_Sech":"쌍곡선 시컨트 함수","DE.Controllers.Toolbar.txtFunction_Sin":"사인 함수","DE.Controllers.Toolbar.txtFunction_Sinh":"쌍곡선 사인 함수","DE.Controllers.Toolbar.txtFunction_Tan":"탄젠트 함수","DE.Controllers.Toolbar.txtFunction_Tanh":"쌍곡선 탄젠트 함수","DE.Controllers.Toolbar.txtIntegral":"Integral","DE.Controllers.Toolbar.txtIntegral_dtheta":"Differential theta","DE.Controllers.Toolbar.txtIntegral_dx":"Differential x","DE.Controllers.Toolbar.txtIntegral_dy":"Differential y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"미분","DE.Controllers.Toolbar.txtIntegralDouble":"Double Integral","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"이중 적분","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"이중 적분","DE.Controllers.Toolbar.txtIntegralOriented":"Contour Integral","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"선적분(상하단값을 상하에 배치)","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"표면 적분","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"표면 적분","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"표면 적분","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"선적분(상하단값 있음)","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"볼륨 정수","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"볼륨 정수","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"볼륨 정수","DE.Controllers.Toolbar.txtIntegralSubSup":"적분","DE.Controllers.Toolbar.txtIntegralTriple":"삼중적분","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"삼중적분","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"Triple Integral","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"Co-Product","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"하한값","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"한계값","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"아래 첨자 하한값","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"아래 첨자/위 첨자 극한","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"합계","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"합계","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"합계","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Product","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"조합","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Prod":"제품","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Product","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Product","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Product","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Product","DE.Controllers.Toolbar.txtLargeOperator_Sum":"합계","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"합계","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"합계","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"합계","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"합계","DE.Controllers.Toolbar.txtLargeOperator_Union":"Union","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"조합","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"조합","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"조합","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"조합","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"제한 예제","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"최대 예제","DE.Controllers.Toolbar.txtLimitLog_Lim":"제한","DE.Controllers.Toolbar.txtLimitLog_Ln":"자연 로그","DE.Controllers.Toolbar.txtLimitLog_Log":"로그","DE.Controllers.Toolbar.txtLimitLog_LogBase":"로그","DE.Controllers.Toolbar.txtLimitLog_Max":"최대","DE.Controllers.Toolbar.txtLimitLog_Min":"Minimum","DE.Controllers.Toolbar.txtMarginsH":"주어진 페이지 높이에 대해 위쪽 및 아래쪽 여백이 너무 높습니다.","DE.Controllers.Toolbar.txtMarginsW":"왼쪽 및 오른쪽 여백이 주어진 페이지 폭에 비해 너무 넓습니다.","DE.Controllers.Toolbar.txtMatrix_1_2":"1x2 빈 행렬","DE.Controllers.Toolbar.txtMatrix_1_3":"1x3 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_1":"2x1 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2":"2x2 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"괄호가있는 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"대괄호가있는 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"괄호가있는 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"괄호가있는 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_3":"2x3 빈 행렬","DE.Controllers.Toolbar.txtMatrix_3_1":"3x1 빈 행렬","DE.Controllers.Toolbar.txtMatrix_3_2":"3x2 빈 행렬","DE.Controllers.Toolbar.txtMatrix_3_3":"3x3 빈 행렬","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"기준점","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"중간선 점","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"대각선 점","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"수직 점","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"희소 행렬","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"괄호 안의 희소 행렬","DE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 단위 행렬 (0 있음)","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"빈 대각선 셀이 있는 2x2 단위 행렬","DE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 단위 행렬 (0 있음)","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3 단위 행렬","DE.Controllers.Toolbar.txtNeedDownload":"PDF 뷰어는 변경 사항을 별도의 파일 복사본으로만 저장할 수 있습니다. 공동 편집은 지원되지 않으며, 다른 사용자는 새 파일 버전을 공유하지 않으면 변경 내용을 볼 수 없습니다.","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"아래 오른쪽 화살표","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"오른쪽 위 왼쪽 화살표","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"왼쪽 아래쪽 화살표","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"왼쪽 위 화살표","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"오른쪽 아래 화살표","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"오른쪽 위 화살표 위","DE.Controllers.Toolbar.txtOperator_ColonEquals":"콜론 균등","DE.Controllers.Toolbar.txtOperator_Custom_1":"수익률","DE.Controllers.Toolbar.txtOperator_Custom_2":"Delta Yields","DE.Controllers.Toolbar.txtOperator_Definition":"정의에 따라 같음","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta Equal To","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"아래 오른쪽 화살표","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"오른쪽 위 왼쪽 화살표","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"왼쪽 아래쪽 화살표","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"왼쪽 위 화살표 위","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"오른쪽 아래 화살표","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"오른쪽 위 화살표 위","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"Equal Equal","DE.Controllers.Toolbar.txtOperator_MinusEquals":"Minus Equal","DE.Controllers.Toolbar.txtOperator_PlusEquals":"덧셈 등호","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"측정 기준","DE.Controllers.Toolbar.txtRadicalCustom_1":"Radical","DE.Controllers.Toolbar.txtRadicalCustom_2":"Radical","DE.Controllers.Toolbar.txtRadicalRoot_2":"학위가있는 제곱근","DE.Controllers.Toolbar.txtRadicalRoot_3":"Cubic Root","DE.Controllers.Toolbar.txtRadicalRoot_n":"학위가 있는 급진파","DE.Controllers.Toolbar.txtRadicalSqrt":"Square Root","DE.Controllers.Toolbar.txtSaveCopy":"복사본 저장","DE.Controllers.Toolbar.txtScriptCustom_1":"스크립트","DE.Controllers.Toolbar.txtScriptCustom_2":"스크립트","DE.Controllers.Toolbar.txtScriptCustom_3":"스크립트","DE.Controllers.Toolbar.txtScriptCustom_4":"스크립트","DE.Controllers.Toolbar.txtScriptSub":"아래 첨자","DE.Controllers.Toolbar.txtScriptSubSup":"아래 첨자 - 위 첨자","DE.Controllers.Toolbar.txtScriptSubSupLeft":"왼쪽 아래 첨자-위 첨자","DE.Controllers.Toolbar.txtScriptSup":"위 첨자","DE.Controllers.Toolbar.txtSymbol_about":"대략","DE.Controllers.Toolbar.txtSymbol_additional":"Complement","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Alpha","DE.Controllers.Toolbar.txtSymbol_approx":"거의 동일","DE.Controllers.Toolbar.txtSymbol_ast":"별표 연산자","DE.Controllers.Toolbar.txtSymbol_beta":"베타","DE.Controllers.Toolbar.txtSymbol_beth":"Bet","DE.Controllers.Toolbar.txtSymbol_bullet":"글 머리 기호 연산자","DE.Controllers.Toolbar.txtSymbol_cap":"교차점","DE.Controllers.Toolbar.txtSymbol_cbrt":"큐브 루트","DE.Controllers.Toolbar.txtSymbol_cdots":"중간 말줄임표","DE.Controllers.Toolbar.txtSymbol_celsius":"섭씨도","DE.Controllers.Toolbar.txtSymbol_chi":"Chi","DE.Controllers.Toolbar.txtSymbol_cong":"대략 같음","DE.Controllers.Toolbar.txtSymbol_cup":"Union","DE.Controllers.Toolbar.txtSymbol_ddots":"오른쪽 아래 대각선 줄임표","DE.Controllers.Toolbar.txtSymbol_degree":"도","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"나누기 기호","DE.Controllers.Toolbar.txtSymbol_downarrow":"화살표: 아래쪽","DE.Controllers.Toolbar.txtSymbol_emptyset":"빈 세트","DE.Controllers.Toolbar.txtSymbol_epsilon":"Epsilon","DE.Controllers.Toolbar.txtSymbol_equals":"Equal","DE.Controllers.Toolbar.txtSymbol_equiv":"동일함","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"존재함","DE.Controllers.Toolbar.txtSymbol_factorial":"Factorial","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"화씨","DE.Controllers.Toolbar.txtSymbol_forall":"모두에게","DE.Controllers.Toolbar.txtSymbol_gamma":"감마","DE.Controllers.Toolbar.txtSymbol_geq":"크거나 같음","DE.Controllers.Toolbar.txtSymbol_gg":"훨씬 더 큼","DE.Controllers.Toolbar.txtSymbol_greater":"보다 큼","DE.Controllers.Toolbar.txtSymbol_in":"요소","DE.Controllers.Toolbar.txtSymbol_inc":"증가","DE.Controllers.Toolbar.txtSymbol_infinity":"무한대","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_leftrightarrow":"왼쪽 / 오른쪽 화살표","DE.Controllers.Toolbar.txtSymbol_leq":"보다 작거나 같음","DE.Controllers.Toolbar.txtSymbol_less":"보다 작음","DE.Controllers.Toolbar.txtSymbol_ll":"훨씬 적습니다","DE.Controllers.Toolbar.txtSymbol_minus":"Minus","DE.Controllers.Toolbar.txtSymbol_mp":"마이너스 플러스","DE.Controllers.Toolbar.txtSymbol_mu":"Mu","DE.Controllers.Toolbar.txtSymbol_nabla":"나블라","DE.Controllers.Toolbar.txtSymbol_neq":"같지 않음","DE.Controllers.Toolbar.txtSymbol_ni":"회원으로 포함","DE.Controllers.Toolbar.txtSymbol_not":"부호 없음","DE.Controllers.Toolbar.txtSymbol_notexists":"존재하지 않습니다","DE.Controllers.Toolbar.txtSymbol_nu":"Nu","DE.Controllers.Toolbar.txtSymbol_o":"오미크론","DE.Controllers.Toolbar.txtSymbol_omega":"오메가","DE.Controllers.Toolbar.txtSymbol_partial":"부분 미분","DE.Controllers.Toolbar.txtSymbol_percent":"백분율","DE.Controllers.Toolbar.txtSymbol_phi":"Phi","DE.Controllers.Toolbar.txtSymbol_pi":"파이","DE.Controllers.Toolbar.txtSymbol_plus":"덧셈","DE.Controllers.Toolbar.txtSymbol_pm":"플러스 마이너스","DE.Controllers.Toolbar.txtSymbol_propto":"비례","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"네 번째 루트","DE.Controllers.Toolbar.txtSymbol_qed":"증명 종료","DE.Controllers.Toolbar.txtSymbol_rddots":"오른쪽 위 대각선 줄임표","DE.Controllers.Toolbar.txtSymbol_rho":"Rho","DE.Controllers.Toolbar.txtSymbol_rightarrow":"화살표: 오른쪽","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"\b근호","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_upsilon":"Upsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Epsilon Variant","DE.Controllers.Toolbar.txtSymbol_varphi":"Phi Variant","DE.Controllers.Toolbar.txtSymbol_varpi":"파이 변형","DE.Controllers.Toolbar.txtSymbol_varrho":"Rho Variant","DE.Controllers.Toolbar.txtSymbol_varsigma":"Sigma Variant","DE.Controllers.Toolbar.txtSymbol_vartheta":"Theta Variant","DE.Controllers.Toolbar.txtSymbol_vdots":"세로 줄임표","DE.Controllers.Toolbar.txtSymbol_xsi":"Xi","DE.Controllers.Toolbar.txtSymbol_zeta":"제타","DE.Controllers.Toolbar.txtUntitled":"제목 없음","DE.Controllers.Viewport.textFitPage":"페이지에 맞춤","DE.Controllers.Viewport.textFitWidth":"너비에 맞춤","DE.Controllers.Viewport.txtDarkMode":"다크 모드","DE.Views.BookmarksDialog.textAdd":"추가","DE.Views.BookmarksDialog.textAddAndGetLink":"추가 및 링크 받기","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.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.textLabelError":"레이블은 비워 둘 수 없습니다.","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.CellsRemoveDialog.textCol":"전체 열 삭제","DE.Views.CellsRemoveDialog.textLeft":"셀을 왼쪽으로 이동","DE.Views.CellsRemoveDialog.textRow":"전체 행 삭제","DE.Views.CellsRemoveDialog.textTitle":"셀 삭제","DE.Views.ChartSettings.text3dDepth":"깊이 (기준에 대한 비율)","DE.Views.ChartSettings.text3dHeight":"높이(%)","DE.Views.ChartSettings.text3dRotation":"3D 회전","DE.Views.ChartSettings.textAdvanced":"고급 설정 표시","DE.Views.ChartSettings.textAutoscale":"자동 크기 조정","DE.Views.ChartSettings.textChartType":"차트 유형 변경","DE.Views.ChartSettings.textData":"데이터","DE.Views.ChartSettings.textDefault":"기본 로테이션","DE.Views.ChartSettings.textDown":"아래로","DE.Views.ChartSettings.textEditData":"데이터 편집","DE.Views.ChartSettings.textEditLinks":"연결 편집","DE.Views.ChartSettings.textHeight":"높이","DE.Views.ChartSettings.textKeepRatio":"비율 고정","DE.Views.ChartSettings.textLeft":"왼쪽","DE.Views.ChartSettings.textLinkedData":"연결된 데이터","DE.Views.ChartSettings.textNarrow":"좁은 시야각","DE.Views.ChartSettings.textOriginalSize":"실제 크기","DE.Views.ChartSettings.textPerspective":"관점","DE.Views.ChartSettings.textRight":"오른쪽","DE.Views.ChartSettings.textRightAngle":"직각 축","DE.Views.ChartSettings.textSelectData":"데이터 선택","DE.Views.ChartSettings.textSize":"크기","DE.Views.ChartSettings.textStyle":"스타일","DE.Views.ChartSettings.textUndock":"패널에서 도킹 해제","DE.Views.ChartSettings.textUp":"최대","DE.Views.ChartSettings.textUpdateData":"데이터 업데이트","DE.Views.ChartSettings.textWiden":"광각","DE.Views.ChartSettings.textWidth":"너비","DE.Views.ChartSettings.textWrap":"배치 스타일","DE.Views.ChartSettings.textX":"X 회전","DE.Views.ChartSettings.textY":"Y 회전","DE.Views.ChartSettings.txtBehind":"텍스트 뒤","DE.Views.ChartSettings.txtInFront":"텍스트 앞에","DE.Views.ChartSettings.txtInline":"텍스트에 맞춰","DE.Views.ChartSettings.txtSquare":"Square","DE.Views.ChartSettings.txtThrough":"통해","DE.Views.ChartSettings.txtTight":"빽빽하게","DE.Views.ChartSettings.txtTitle":"차트","DE.Views.ChartSettings.txtTopAndBottom":"상단 및 하단","DE.Views.ChartSettingsDlg.textLeftOverlay":"왼쪽 오버레이","DE.Views.CompareSettingsDialog.textChar":"문자 레벨","DE.Views.CompareSettingsDialog.textShow":"변경 사항 표시","DE.Views.CompareSettingsDialog.textTitle":"비교 설정","DE.Views.CompareSettingsDialog.textWord":"단어 수준","DE.Views.ControlSettingsDialog.strGeneral":"일반","DE.Views.ControlSettingsDialog.textAdd":"추가","DE.Views.ControlSettingsDialog.textAppearance":"표시","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.ControlSettingsDialog.txtRemContent":"콘텐츠 편집 시 콘텐츠 제어 제거","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.textEqualWidth":"동일한 열 너비","DE.Views.CustomColumnsDialog.textSeparator":"열 구분선","DE.Views.CustomColumnsDialog.textTitle":"열","DE.Views.CustomColumnsDialog.textTitleSpacing":"간격","DE.Views.CustomColumnsDialog.textWidth":"넓이","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.DocProtection.hintProtectDoc":"문서 보호","DE.Views.DocProtection.txtDocProtectedComment":"문서가 보호되어 있습니다.
이 문서에는 주석만 삽입할 수 있습니다.","DE.Views.DocProtection.txtDocProtectedForms":"문서가 보호되어 있습니다.
이 문서에서는 양식만 작성할 수 있습니다.","DE.Views.DocProtection.txtDocProtectedTrack":"문서가 보호되어 있습니다.
이 문서를 편집할 수 있지만 모든 변경 사항이 추적됩니다.","DE.Views.DocProtection.txtDocProtectedView":"문서가 보호되어 있습니다.
이 문서를 보기만 가능합니다.","DE.Views.DocProtection.txtDocUnlockDescription":"문서 보호를 해제하려면 비밀번호를 입력하세요","DE.Views.DocProtection.txtProtectDoc":"문서 보호","DE.Views.DocProtection.txtUnlockTitle":"문서 보호 해제","DE.Views.DocumentHolder.aboveText":"위","DE.Views.DocumentHolder.addCommentText":"주석 추가","DE.Views.DocumentHolder.advancedDropCapText":"첫 글자 크게 설정","DE.Views.DocumentHolder.advancedEquationText":"수식 설정","DE.Views.DocumentHolder.advancedFrameText":"틀 고급 설정","DE.Views.DocumentHolder.advancedParagraphText":"문단 고급 설정","DE.Views.DocumentHolder.advancedTableText":"표 고급 설정","DE.Views.DocumentHolder.advancedText":"고급 설정","DE.Views.DocumentHolder.AlignBottom":"아래쪽","DE.Views.DocumentHolder.AlignCenter":"가운데","DE.Views.DocumentHolder.AlignJust":"양쪽 맞춤","DE.Views.DocumentHolder.AlignLeft":"왼쪽","DE.Views.DocumentHolder.alignmentText":"정렬","DE.Views.DocumentHolder.AlignMiddle":"가운데","DE.Views.DocumentHolder.AlignRight":"오른쪽","DE.Views.DocumentHolder.AlignText":"정렬","DE.Views.DocumentHolder.AlignTop":"맨 위","DE.Views.DocumentHolder.allLinearText":"모두 - 선형","DE.Views.DocumentHolder.allProfText":"전체 - 프로페셔널","DE.Views.DocumentHolder.belowText":"Below","DE.Views.DocumentHolder.breakBeforeText":"현재 단락 앞에서 페이지 나누기","DE.Views.DocumentHolder.btnChart":"차트 제목, 범례, 눈금선, 데이터 레이블 등 차트 요소 추가, 제거 또는 변경","DE.Views.DocumentHolder.bulletsText":"글 머리 기호 및 번호 매기기","DE.Views.DocumentHolder.cellAlignText":"셀 수직 정렬","DE.Views.DocumentHolder.cellText":"셀","DE.Views.DocumentHolder.centerText":"Center","DE.Views.DocumentHolder.chartText":"차트 고급 설정","DE.Views.DocumentHolder.columnText":"열","DE.Views.DocumentHolder.currLinearText":"현재 - 선형","DE.Views.DocumentHolder.currProfText":"현재 - 전문가","DE.Views.DocumentHolder.deleteColumnText":"열 삭제","DE.Views.DocumentHolder.deleteRowText":"행 삭제","DE.Views.DocumentHolder.deleteTableText":"테이블 삭제","DE.Views.DocumentHolder.deleteText":"삭제","DE.Views.DocumentHolder.DepthAxis":"Z 축","DE.Views.DocumentHolder.direct270Text":"텍스트 회전","DE.Views.DocumentHolder.direct90Text":"텍스트 아래로 회전","DE.Views.DocumentHolder.directHText":"수평","DE.Views.DocumentHolder.directionText":"텍스트 방향","DE.Views.DocumentHolder.editChartText":"데이터 편집","DE.Views.DocumentHolder.editFooterText":"바닥글 편집","DE.Views.DocumentHolder.editHeaderText":"머리글 편집","DE.Views.DocumentHolder.editHyperlinkText":"하이퍼 링크 편집","DE.Views.DocumentHolder.eqToDisplayText":"디스플레이로 변경","DE.Views.DocumentHolder.eqToInlineText":"인라인으로 변경","DE.Views.DocumentHolder.guestText":"게스트","DE.Views.DocumentHolder.hideEqToolbar":"수식 도구 모음 숨기기","DE.Views.DocumentHolder.hyperlinkText":"하이퍼 링크","DE.Views.DocumentHolder.ignoreAllSpellText":"모두 무시","DE.Views.DocumentHolder.ignoreSpellText":"무시","DE.Views.DocumentHolder.imageText":"이미지 고급 설정","DE.Views.DocumentHolder.insertColumnLeftText":"왼쪽 열","DE.Views.DocumentHolder.insertColumnRightText":"오른쪽 열","DE.Views.DocumentHolder.insertColumnText":"열 삽입","DE.Views.DocumentHolder.insertRowAboveText":"행 위","DE.Views.DocumentHolder.insertRowBelowText":"행 아래","DE.Views.DocumentHolder.insertRowText":"행 삽입","DE.Views.DocumentHolder.insertText":"삽입","DE.Views.DocumentHolder.keepLinesText":"현재 단락을 나누지 않음","DE.Views.DocumentHolder.langText":"언어 선택","DE.Views.DocumentHolder.latexText":"라텍","DE.Views.DocumentHolder.leftText":"왼쪽","DE.Views.DocumentHolder.loadSpellText":"로드 변형 ...","DE.Views.DocumentHolder.mergeCellsText":"셀 병합","DE.Views.DocumentHolder.mniImageFromFile":"파일에서 이미지 삽입","DE.Views.DocumentHolder.mniImageFromStorage":"저장소에서 이미지 삽입","DE.Views.DocumentHolder.mniImageFromUrl":"URL에서 이미지 삽입","DE.Views.DocumentHolder.moreText":"추가 변형 ...","DE.Views.DocumentHolder.noSpellVariantsText":"변형 없음","DE.Views.DocumentHolder.notcriticalErrorTitle":"경고","DE.Views.DocumentHolder.originalSizeText":"실제 크기","DE.Views.DocumentHolder.paragraphText":"단락","DE.Views.DocumentHolder.removeHyperlinkText":"하이퍼 링크 제거","DE.Views.DocumentHolder.rightText":"오른쪽","DE.Views.DocumentHolder.rowText":"행","DE.Views.DocumentHolder.saveStyleText":"새 스타일 만들기","DE.Views.DocumentHolder.selectCellText":"셀 선택","DE.Views.DocumentHolder.selectColumnText":"열 선택","DE.Views.DocumentHolder.selectRowText":"행 선택","DE.Views.DocumentHolder.selectTableText":"표 선택","DE.Views.DocumentHolder.selectText":"선택","DE.Views.DocumentHolder.shapeText":"도형 고급 설정","DE.Views.DocumentHolder.showEqToolbar":"수식 도구 모음 표시","DE.Views.DocumentHolder.spellcheckText":"맞춤법 검사","DE.Views.DocumentHolder.splitCellsText":"셀 분할 ...","DE.Views.DocumentHolder.splitCellTitleText":"셀 분할","DE.Views.DocumentHolder.strDelete":"서명 제거","DE.Views.DocumentHolder.strDetails":"서명 상세","DE.Views.DocumentHolder.strSetup":"서명 셋업","DE.Views.DocumentHolder.strSign":"서명","DE.Views.DocumentHolder.styleText":"스타일로 서식 지정","DE.Views.DocumentHolder.tableText":"테이블","DE.Views.DocumentHolder.textAccept":"변경 수락","DE.Views.DocumentHolder.textAlign":"정렬","DE.Views.DocumentHolder.textArrange":"순서","DE.Views.DocumentHolder.textArrangeBack":"맨 뒤로 보내기","DE.Views.DocumentHolder.textArrangeBackward":"뒤로 보내기","DE.Views.DocumentHolder.textArrangeForward":"앞으로 보내기","DE.Views.DocumentHolder.textArrangeFront":"맨 앞으로 보내기","DE.Views.DocumentHolder.textAxes":"축","DE.Views.DocumentHolder.textAxisTitles":"축 제목","DE.Views.DocumentHolder.textBottom":"하단","DE.Views.DocumentHolder.textCells":"셀","DE.Views.DocumentHolder.textCenter":"가운데","DE.Views.DocumentHolder.textChartTitle":"차트 제목","DE.Views.DocumentHolder.textClearField":"필드 지우기","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.textDataLabels":"데이터 레이블","DE.Views.DocumentHolder.textDataTable":"데이터 표","DE.Views.DocumentHolder.textDistributeCols":"열 너비 균등 분배","DE.Views.DocumentHolder.textDistributeRows":"행 배포","DE.Views.DocumentHolder.textEditControls":"콘텐츠 제어 설정","DE.Views.DocumentHolder.textEditField":"필드 편집","DE.Views.DocumentHolder.textEditObject":"개체 편집","DE.Views.DocumentHolder.textEditPoints":"꼭지점 수정","DE.Views.DocumentHolder.textEditWrapBoundary":"둘러싸기 경계 편집","DE.Views.DocumentHolder.textErrorBars":"오류 막대","DE.Views.DocumentHolder.textExponential":"지수","DE.Views.DocumentHolder.textFieldCodes":"필드 코드 전환","DE.Views.DocumentHolder.textFit":"너비에 맞춤","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.textGridLines":"눈금선","DE.Views.DocumentHolder.textHorAxis":"가로 축","DE.Views.DocumentHolder.textHorAxisSec":"수평 보조축","DE.Views.DocumentHolder.textHorizontalMajor":"가로 주 눈금","DE.Views.DocumentHolder.textHorizontalMinor":"가로 부 눈금","DE.Views.DocumentHolder.textIndents":"목록 들여쓰기 조정","DE.Views.DocumentHolder.textInnerBottom":"안쪽 아래","DE.Views.DocumentHolder.textInnerTop":"안쪽 위","DE.Views.DocumentHolder.textJoinList":"이전 목록에 추가","DE.Views.DocumentHolder.textLeft":"셀을 왼쪽으로 이동","DE.Views.DocumentHolder.textLeftData":"왼쪽","DE.Views.DocumentHolder.textLeftOverlay":"왼쪽 오버레이","DE.Views.DocumentHolder.textLeftPos":"왼쪽","DE.Views.DocumentHolder.textLegendPos":"범례","DE.Views.DocumentHolder.textLinear":"선형","DE.Views.DocumentHolder.textLinearForecast":"선형 예측","DE.Views.DocumentHolder.textLines":"선","DE.Views.DocumentHolder.textMovingAverage":"이동 평균(2)","DE.Views.DocumentHolder.textNest":"네스트 테이블","DE.Views.DocumentHolder.textNextPage":"다음 페이지","DE.Views.DocumentHolder.textNone":"없음","DE.Views.DocumentHolder.textNoOverlay":"오버레이 없음","DE.Views.DocumentHolder.textNumberingValue":"번호","DE.Views.DocumentHolder.textOuterTop":"바깥쪽 위","DE.Views.DocumentHolder.textOverlay":"오버레이","DE.Views.DocumentHolder.textPaste":"붙여 넣기","DE.Views.DocumentHolder.textPrevPage":"이전 페이지","DE.Views.DocumentHolder.textRedo":"다시 실행","DE.Views.DocumentHolder.textRefreshField":"필드 새로고침","DE.Views.DocumentHolder.textReject":"변경 거부","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.textResetCrop":"자르기 초기화","DE.Views.DocumentHolder.textRight":"오른쪽","DE.Views.DocumentHolder.textRightOverlay":"오른쪽 오버레이","DE.Views.DocumentHolder.textRotate":"회전","DE.Views.DocumentHolder.textRotate270":"왼쪽으로 90도 회전","DE.Views.DocumentHolder.textRotate90":"오른쪽으로 90도 회전","DE.Views.DocumentHolder.textRow":"전체 행 삭제","DE.Views.DocumentHolder.textSaveAsPicture":"그림으로 저장","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.textShapesMerge":"도형 병합","DE.Views.DocumentHolder.textShowDataTable":"데이터 표 표시","DE.Views.DocumentHolder.textShowLegendKeys":"범례 기호 표시","DE.Views.DocumentHolder.textShowUpDown":"상승/하락 막대 표시","DE.Views.DocumentHolder.textStandardDeviation":"표준편차","DE.Views.DocumentHolder.textStandardError":"표준오차","DE.Views.DocumentHolder.textStartNewList":"새 목록 시작","DE.Views.DocumentHolder.textStartNumberingFrom":"숫자 값 설정","DE.Views.DocumentHolder.textTitleCellsRemove":"셀 삭제","DE.Views.DocumentHolder.textTOC":"목차","DE.Views.DocumentHolder.textTOCSettings":"목차 설정","DE.Views.DocumentHolder.textTop":"위쪽","DE.Views.DocumentHolder.textTrendline":"추세선","DE.Views.DocumentHolder.textUndo":"실행 취소","DE.Views.DocumentHolder.textUpdateAll":"전체 테이블을 업데이트","DE.Views.DocumentHolder.textUpdatePages":"페이지 번호만 업데이트","DE.Views.DocumentHolder.textUpdateTOC":"목차 새로고침","DE.Views.DocumentHolder.textUpDownBars":"위/아래 막대","DE.Views.DocumentHolder.textVertAxis":"세로 축","DE.Views.DocumentHolder.textVertAxisSec":"수직 보조축","DE.Views.DocumentHolder.textVerticalMajor":"세로 주 눈금","DE.Views.DocumentHolder.textVerticalMinor":"세로 부 눈금","DE.Views.DocumentHolder.textWrap":"배치 스타일","DE.Views.DocumentHolder.tipIsLocked":"이 요소는 현재 다른 사용자가 편집 중입니다.","DE.Views.DocumentHolder.toDictionaryText":"사용자 정의 사전에 추가","DE.Views.DocumentHolder.txtAddBottom":"아래쪽 테두리 추가","DE.Views.DocumentHolder.txtAddFractionBar":"분수 막대 추가","DE.Views.DocumentHolder.txtAddHor":"가로선 추가","DE.Views.DocumentHolder.txtAddLB":"왼쪽 하단 추가","DE.Views.DocumentHolder.txtAddLeft":"왼쪽 테두리 추가","DE.Views.DocumentHolder.txtAddLT":"왼쪽 상단 줄 추가","DE.Views.DocumentHolder.txtAddRight":"오른쪽 테두리 추가","DE.Views.DocumentHolder.txtAddTop":"상단 테두리 추가","DE.Views.DocumentHolder.txtAddVer":"세로선 추가","DE.Views.DocumentHolder.txtAlignToChar":"문자에 정렬","DE.Views.DocumentHolder.txtBehind":"텍스트 뒤","DE.Views.DocumentHolder.txtBorderProps":"테두리 속성","DE.Views.DocumentHolder.txtBottom":"하단","DE.Views.DocumentHolder.txtColumnAlign":"열 정렬","DE.Views.DocumentHolder.txtDecreaseArg":"인수 크기 감소","DE.Views.DocumentHolder.txtDeleteArg":"인수 삭제","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.txtDestEmbed":"대상 테마 사용 & 통합 문서 삽입","DE.Views.DocumentHolder.txtDestLink":"대상 테마 사용 & 데이터 연결","DE.Views.DocumentHolder.txtDistribHor":"수평 분포","DE.Views.DocumentHolder.txtDistribVert":"수직 분포","DE.Views.DocumentHolder.txtEmpty":"(없음)","DE.Views.DocumentHolder.txtFractionLinear":"선형 분수로 변경","DE.Views.DocumentHolder.txtFractionSkewed":"기울어 진 분수로 변경","DE.Views.DocumentHolder.txtFractionStacked":"누적 분율로 변경","DE.Views.DocumentHolder.txtGroup":"그룹","DE.Views.DocumentHolder.txtGroupCharOver":"텍스트를 덮는 문자","DE.Views.DocumentHolder.txtGroupCharUnder":"문자 아래의 문자","DE.Views.DocumentHolder.txtHideBottom":"아래쪽 경계선 숨기기","DE.Views.DocumentHolder.txtHideBottomLimit":"하단 제한 숨기기","DE.Views.DocumentHolder.txtHideCloseBracket":"닫는 대괄호 숨기기","DE.Views.DocumentHolder.txtHideDegree":"학위 숨기기","DE.Views.DocumentHolder.txtHideHor":"가로선 숨기기","DE.Views.DocumentHolder.txtHideLB":"왼쪽 하단 줄 숨기기","DE.Views.DocumentHolder.txtHideLeft":"왼쪽 테두리 숨기기","DE.Views.DocumentHolder.txtHideLT":"왼쪽 상단 줄 숨기기","DE.Views.DocumentHolder.txtHideOpenBracket":"여는 대괄호 숨기기","DE.Views.DocumentHolder.txtHidePlaceholder":"자리 표시 자 숨기기","DE.Views.DocumentHolder.txtHideRight":"오른쪽 테두리 숨기기","DE.Views.DocumentHolder.txtHideTop":"위쪽 테두리 숨기기","DE.Views.DocumentHolder.txtHideTopLimit":"상한 숨기기","DE.Views.DocumentHolder.txtHideVer":"수직선 숨기기","DE.Views.DocumentHolder.txtIncreaseArg":"인수 크기 늘리기","DE.Views.DocumentHolder.txtInFront":"텍스트 앞에","DE.Views.DocumentHolder.txtInline":"텍스트에 맞춰","DE.Views.DocumentHolder.txtInsertArgAfter":"뒤에 인수를 삽입하십시오.","DE.Views.DocumentHolder.txtInsertArgBefore":"앞에 인수를 삽입하십시오","DE.Views.DocumentHolder.txtInsertBreak":"나누기 삽입","DE.Views.DocumentHolder.txtInsertCaption":"캡션 삽입","DE.Views.DocumentHolder.txtInsertEqAfter":"뒤에 수식을 삽입하십시오.","DE.Views.DocumentHolder.txtInsertEqBefore":"이전에 수식 삽입","DE.Views.DocumentHolder.txtInsImage":"파일에서 이미지 삽입","DE.Views.DocumentHolder.txtInsImageUrl":"URL에서 이미지 삽입","DE.Views.DocumentHolder.txtKeepTextOnly":"텍스트만 유지","DE.Views.DocumentHolder.txtLimitChange":"제한 위치 변경","DE.Views.DocumentHolder.txtLimitOver":"텍스트 제한","DE.Views.DocumentHolder.txtLimitUnder":"텍스트 아래에서 제한","DE.Views.DocumentHolder.txtMatchBrackets":"대괄호를 인수 높이에 대응","DE.Views.DocumentHolder.txtMatrixAlign":"매트릭스 정렬","DE.Views.DocumentHolder.txtOverbar":"텍스트 위에 가로 막기","DE.Views.DocumentHolder.txtOverwriteCells":"셀에 덮어쓰기","DE.Views.DocumentHolder.txtPastePicture":"그림","DE.Views.DocumentHolder.txtPasteSourceFormat":"소스 포맷을 유지하세요","DE.Views.DocumentHolder.txtPercentage":"백분율","DE.Views.DocumentHolder.txtPressLink":"{0} 키를 누르고 링크를 클릭합니다.","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":"위 첨자 제거","DE.Views.DocumentHolder.txtScriptsAfter":"텍스트 뒤의 스크립트","DE.Views.DocumentHolder.txtScriptsBefore":"텍스트 앞의 스크립트","DE.Views.DocumentHolder.txtShowBottomLimit":"하단 제한 표시","DE.Views.DocumentHolder.txtShowCloseBracket":"닫는 괄호 표시","DE.Views.DocumentHolder.txtShowDegree":"학위 표시","DE.Views.DocumentHolder.txtShowOpenBracket":"여는 대괄호 표시","DE.Views.DocumentHolder.txtShowPlaceholder":"Show placeholder","DE.Views.DocumentHolder.txtShowTopLimit":"상한 표시","DE.Views.DocumentHolder.txtSourceEmbed":"원본 서식 유지 & 통합 문서 삽입","DE.Views.DocumentHolder.txtSourceLink":"원본 서식 유지 & 데이터 연결","DE.Views.DocumentHolder.txtSquare":"Square","DE.Views.DocumentHolder.txtStretchBrackets":"스트레치 괄호","DE.Views.DocumentHolder.txtThrough":"통해","DE.Views.DocumentHolder.txtTight":"빽빽하게","DE.Views.DocumentHolder.txtTop":"맨 위","DE.Views.DocumentHolder.txtTopAndBottom":"상단 및 하단","DE.Views.DocumentHolder.txtUnderbar":"텍스트 아래에 바","DE.Views.DocumentHolder.txtUngroup":"그룹 해제","DE.Views.DocumentHolder.txtWarnUrl":"이 링크는 장치와 데이터에 손상을 줄 수 있습니다.
계속하시겠습니까?","DE.Views.DocumentHolder.unicodeText":"유니코드","DE.Views.DocumentHolder.updateStyleText":"%1 스타일 업데이트","DE.Views.DocumentHolder.vertAlignText":"세로 맞춤","DE.Views.DropcapSettingsAdvanced.strBorders":"테두리 및 채우기","DE.Views.DropcapSettingsAdvanced.strDropcap":"드롭 캡","DE.Views.DropcapSettingsAdvanced.strMargins":"여백","DE.Views.DropcapSettingsAdvanced.textAlign":"정렬","DE.Views.DropcapSettingsAdvanced.textAtLeast":"적어도","DE.Views.DropcapSettingsAdvanced.textAuto":"Auto","DE.Views.DropcapSettingsAdvanced.textBackColor":"배경색","DE.Views.DropcapSettingsAdvanced.textBorderColor":"테두리 색상","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"다이어그램을 클릭하거나 단추를 사용하여 테두리를 선택하십시오","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"테두리 굵기","DE.Views.DropcapSettingsAdvanced.textBottom":"하단","DE.Views.DropcapSettingsAdvanced.textCenter":"Center","DE.Views.DropcapSettingsAdvanced.textColumn":"열","DE.Views.DropcapSettingsAdvanced.textDistance":"텍스트 간격","DE.Views.DropcapSettingsAdvanced.textExact":"정확히","DE.Views.DropcapSettingsAdvanced.textFlow":"흐름 프레임","DE.Views.DropcapSettingsAdvanced.textFont":"글꼴","DE.Views.DropcapSettingsAdvanced.textFrame":"프레임","DE.Views.DropcapSettingsAdvanced.textHeight":"높이","DE.Views.DropcapSettingsAdvanced.textHorizontal":"수평","DE.Views.DropcapSettingsAdvanced.textInline":"인라인 프레임","DE.Views.DropcapSettingsAdvanced.textInMargin":"여백 있음","DE.Views.DropcapSettingsAdvanced.textInText":"텍스트에서","DE.Views.DropcapSettingsAdvanced.textLeft":"왼쪽","DE.Views.DropcapSettingsAdvanced.textMargin":"여백","DE.Views.DropcapSettingsAdvanced.textMove":"텍스트와 함께 이동","DE.Views.DropcapSettingsAdvanced.textNone":"없음","DE.Views.DropcapSettingsAdvanced.textPage":"페이지","DE.Views.DropcapSettingsAdvanced.textParagraph":"단락","DE.Views.DropcapSettingsAdvanced.textParameters":"매개 변수","DE.Views.DropcapSettingsAdvanced.textPosition":"위치","DE.Views.DropcapSettingsAdvanced.textRelative":"기준","DE.Views.DropcapSettingsAdvanced.textRight":"오른쪽","DE.Views.DropcapSettingsAdvanced.textRowHeight":"행의 높이","DE.Views.DropcapSettingsAdvanced.textTitle":"첫 글자 크게 - 고급 설정","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"틀 - 고급 설정","DE.Views.DropcapSettingsAdvanced.textTop":"위","DE.Views.DropcapSettingsAdvanced.textVertical":"세로","DE.Views.DropcapSettingsAdvanced.textWidth":"너비","DE.Views.DropcapSettingsAdvanced.tipFontName":"글꼴","DE.Views.EditListItemDialog.textDisplayName":"표시 이름","DE.Views.EditListItemDialog.textNameError":"표시 이름은 비워둘 수 없습니다.","DE.Views.EditListItemDialog.textValue":"값","DE.Views.EditListItemDialog.textValueError":"동일한 값을 가진 항목이 이미 존재합니다.","DE.Views.FileMenu.ariaFileMenu":"파일 메뉴","DE.Views.FileMenu.btnBackCaption":"파일 위치 열기","DE.Views.FileMenu.btnCloseEditor":"파일 닫기","DE.Views.FileMenu.btnCloseMenuCaption":"뒤로","DE.Views.FileMenu.btnCreateNewCaption":"새로 만들기","DE.Views.FileMenu.btnDownloadCaption":"다운로드 방법","DE.Views.FileMenu.btnExitCaption":"닫기","DE.Views.FileMenu.btnFileOpenCaption":"열기","DE.Views.FileMenu.btnHelpCaption":"도움말","DE.Views.FileMenu.btnHistoryCaption":"버전 기록","DE.Views.FileMenu.btnInfoCaption":"문서 정보","DE.Views.FileMenu.btnPrintCaption":"인쇄","DE.Views.FileMenu.btnProtectCaption":"보호","DE.Views.FileMenu.btnRecentFilesCaption":"최근 열기","DE.Views.FileMenu.btnRenameCaption":"Rename","DE.Views.FileMenu.btnReturnCaption":"문서로 돌아 가기","DE.Views.FileMenu.btnRightsCaption":"액세스 권한","DE.Views.FileMenu.btnSaveAsCaption":"다른 이름으로 저장","DE.Views.FileMenu.btnSaveCaption":"저장","DE.Views.FileMenu.btnSaveCopyAsCaption":"다른 이름으로 저장","DE.Views.FileMenu.btnSettingsCaption":"고급 설정","DE.Views.FileMenu.btnSuggestCaption":"기능 제안","DE.Views.FileMenu.btnSwitchToMobileCaption":"모바일 보기로 전환","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.txtAddProperty":"속성 추가","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.txtCommon":"일반","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"생성된 날짜","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"문서 정보","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"문서 속성","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"패스트 웹 뷰","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"로드 중 ...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"최종 편집자","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"최종 편집","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"아니오","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"소유자","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"페이지","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"페이지 크기","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"단락","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF 제작자","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"태그된 PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF 버전","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"위치","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"속성","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"동일한 제목의 속성이 이미 존재합니다","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.txtTags":"태그","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"문서 제목","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"업로드 되었습니다","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"단어","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"예","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"접근 권한","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"액세스 권한 변경","DE.Views.FileMenuPanels.DocumentRights.txtRights":"권한이 있는 사람","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"경고","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"비밀번호로","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"문서 보호","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"서명으로","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"유효한 서명이 문서에 추가되었습니다.
문서는 편집이 제한되어 있습니다.","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"눈에 보이지 않는 디지털 서명을 추가하여
문서의 무결성을 보장하세요.","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"문서 편집","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"편집하면 문서의 서명이 삭제됩니다.
계속하시겠습니까?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"이 문서는 비밀번호로 보호된 적이 있습니다","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"이 문서를 비밀번호로 암호화하세요","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"이 문서는 서명되어야 합니다.","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"문서에 유효한 서명이 추가되었습니다. 문서가 보호되어 편집할 수 없습니다.","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"문서의 일부 디지털 서명이 유효하지 않거나 확인할 수 없습니다. 문서가 보호되어 편집할 수 없습니다.","DE.Views.FileMenuPanels.ProtectDoc.txtView":"서명 보기","DE.Views.FileMenuPanels.Settings.okButtonText":"적용","DE.Views.FileMenuPanels.Settings.strChinese":"중국어","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"공동 편집 모드","DE.Views.FileMenuPanels.Settings.strDocContent":"문서 내용","DE.Views.FileMenuPanels.Settings.strFast":"Fast","DE.Views.FileMenuPanels.Settings.strFontRender":"글꼴 힌트","DE.Views.FileMenuPanels.Settings.strFontSizeType":"글꼴 크기 목록에서 첫 번째 항목 사용","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"대문자 무시","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"숫자가 있는 단어 무시","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"키보드 단축키","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"매크로 설정","DE.Views.FileMenuPanels.Settings.strNumeral":"숫자 형식","DE.Views.FileMenuPanels.Settings.strPasteButton":"내용을 붙여넣을 때 \"붙여넣기 옵션\" 표시","DE.Views.FileMenuPanels.Settings.strRTLSupport":"오른쪽에서 왼쪽 인터페이스","DE.Views.FileMenuPanels.Settings.strShowChanges":"실시간 협업 변경 사항","DE.Views.FileMenuPanels.Settings.strShowComments":"텍스트로 코멘트 표시","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"다른 사용자의 변경사항 표시","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"해결된 코멘트 표시","DE.Views.FileMenuPanels.Settings.strStrict":"Strict","DE.Views.FileMenuPanels.Settings.strTabStyle":"탭 스타일","DE.Views.FileMenuPanels.Settings.strTheme":"인터페이스 테마","DE.Views.FileMenuPanels.Settings.strUnit":"측정 단위","DE.Views.FileMenuPanels.Settings.strWestern":"서양식","DE.Views.FileMenuPanels.Settings.strZoom":"기본 확대/축소 값","DE.Views.FileMenuPanels.Settings.text10Minutes":"매 10 분마다","DE.Views.FileMenuPanels.Settings.text30Minutes":"매 30 분마다","DE.Views.FileMenuPanels.Settings.text5Minutes":"매 5 분마다","DE.Views.FileMenuPanels.Settings.text60Minutes":"매시간","DE.Views.FileMenuPanels.Settings.textAlignGuides":"가이드에 정렬","DE.Views.FileMenuPanels.Settings.textAutoRecover":"자동 복구","DE.Views.FileMenuPanels.Settings.textAutoSave":"자동 저장","DE.Views.FileMenuPanels.Settings.textDisabled":"비활성화","DE.Views.FileMenuPanels.Settings.textFill":"채우기","DE.Views.FileMenuPanels.Settings.textForceSave":"모든 기록 버전을 서버에 저장","DE.Views.FileMenuPanels.Settings.textLine":"선","DE.Views.FileMenuPanels.Settings.textMinute":"매 분","DE.Views.FileMenuPanels.Settings.textOldVersions":"DOCX, DOTX로 파일을 저장할 때 이전 버전의 MS Word와 호환되도록 설정","DE.Views.FileMenuPanels.Settings.textSmartSelection":"스마트 문단 선택 활용","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"고급 설정","DE.Views.FileMenuPanels.Settings.txtAll":"모두 보기","DE.Views.FileMenuPanels.Settings.txtAppearance":"모양","DE.Views.FileMenuPanels.Settings.txtArabic":"아랍어","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.txtCollaboration":"협업","DE.Views.FileMenuPanels.Settings.txtContext":"컨텍스트","DE.Views.FileMenuPanels.Settings.txtCustomize":"사용자 정의","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"빠른 실행 도구 모음 사용자 지정","DE.Views.FileMenuPanels.Settings.txtDarkMode":"문서 다크 모드 켜기","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"편집 및 저장","DE.Views.FileMenuPanels.Settings.txtFastTip":"실시간 공동 편집. 모든 변경사항은 자동으로 저장됩니다.","DE.Views.FileMenuPanels.Settings.txtFitPage":"페이지에 맞춤","DE.Views.FileMenuPanels.Settings.txtFitWidth":"너비에 맞춤","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"상형 문자","DE.Views.FileMenuPanels.Settings.txtHindi":"힌디어","DE.Views.FileMenuPanels.Settings.txtInch":"인치","DE.Views.FileMenuPanels.Settings.txtLast":"마지막 보기","DE.Views.FileMenuPanels.Settings.txtLastUsed":"마지막으로 사용됨","DE.Views.FileMenuPanels.Settings.txtMac":"as OS X","DE.Views.FileMenuPanels.Settings.txtNative":"기본","DE.Views.FileMenuPanels.Settings.txtNone":"보기 없음","DE.Views.FileMenuPanels.Settings.txtProofing":"보정","DE.Views.FileMenuPanels.Settings.txtPt":"Point","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"편집기 상단에 빠른 인쇄 버튼 표시","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"문서는 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.","DE.Views.FileMenuPanels.Settings.txtRunMacros":"모두 활성화","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"알림 없이 모든 매크로 활성화","DE.Views.FileMenuPanels.Settings.txtScreenReader":"화면 읽기 지원 활성화","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"트랙 변경 사항 표시","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"맞춤법 검사","DE.Views.FileMenuPanels.Settings.txtStopMacros":"모두 비활성화","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"모든 매크로 비활성화하라는 메시지","DE.Views.FileMenuPanels.Settings.txtStrictTip":"변경 사항을 동기화하기 위해 '저장' 버튼을 사용하세요","DE.Views.FileMenuPanels.Settings.txtTabBack":"도구 모음 색상을 탭 배경으로 사용","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Alt 키를 사용하세요.","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Option 키를 사용하세요.","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"알림 표시","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"모든 매크로를 비활성화하라는 메시지","DE.Views.FileMenuPanels.Settings.txtWin":"Windows로","DE.Views.FileMenuPanels.Settings.txtWorkspace":"워크스페이스","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"로 다운로드","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"다른 이름으로 저장","DE.Views.FormSettings.textAddRole":"받는 사람 추가","DE.Views.FormSettings.textAlways":"항상","DE.Views.FormSettings.textAnyone":"누구나","DE.Views.FormSettings.textAspect":"가로 세로 비율 잠금","DE.Views.FormSettings.textAtLeast":"적어도","DE.Views.FormSettings.textAuto":"자동","DE.Views.FormSettings.textAutofit":"자동조정","DE.Views.FormSettings.textBackgroundColor":"배경색","DE.Views.FormSettings.textCheckbox":"체크박스","DE.Views.FormSettings.textCheckDefault":"체크박스는 기본적으로 선택되어 있습니다.","DE.Views.FormSettings.textColor":"테두리 색상","DE.Views.FormSettings.textComb":"문자 조합","DE.Views.FormSettings.textCombobox":"콤보박스","DE.Views.FormSettings.textComplex":"복합 필드","DE.Views.FormSettings.textConnected":"연결된 필드","DE.Views.FormSettings.textCreditCard":"신용카드 번호(예: 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"날짜 및 시간 필드","DE.Views.FormSettings.textDateFormat":"날짜 형식","DE.Views.FormSettings.textDefValue":"기본 값","DE.Views.FormSettings.textDelete":"삭제","DE.Views.FormSettings.textDigits":"숫자","DE.Views.FormSettings.textDisconnect":"연결해제","DE.Views.FormSettings.textDropDown":"드롭다운","DE.Views.FormSettings.textExact":"정확히","DE.Views.FormSettings.textField":"텍스트 필드","DE.Views.FormSettings.textFillRoles":"이 필드는 입력 대상은?","DE.Views.FormSettings.textFixed":"필드 크기 고정","DE.Views.FormSettings.textFormat":"서식","DE.Views.FormSettings.textFormatSymbols":"허용 기호","DE.Views.FormSettings.textFromFile":"파일로부터","DE.Views.FormSettings.textFromStorage":"스토리지로부터","DE.Views.FormSettings.textFromUrl":"URL로부터","DE.Views.FormSettings.textGroupKey":"그룹 키","DE.Views.FormSettings.textImage":"이미지","DE.Views.FormSettings.textKey":"키","DE.Views.FormSettings.textLabel":"라벨","DE.Views.FormSettings.textLang":"언어","DE.Views.FormSettings.textLetters":"편지","DE.Views.FormSettings.textLock":"잠금","DE.Views.FormSettings.textMask":"임의의 패턴","DE.Views.FormSettings.textMaxChars":"문자 제한","DE.Views.FormSettings.textMulti":"다중 필드","DE.Views.FormSettings.textNever":"절대","DE.Views.FormSettings.textNoBorder":"테두리 없음","DE.Views.FormSettings.textNone":"없음","DE.Views.FormSettings.textPhone1":"전화번호(예: (123) 456-7890)","DE.Views.FormSettings.textPhone2":"전화번호(예: +447911123456)","DE.Views.FormSettings.textPlaceholder":"대체표시","DE.Views.FormSettings.textRadiobox":"라디오 버튼","DE.Views.FormSettings.textRadioChoice":"라디오 버튼 선택","DE.Views.FormSettings.textRadioDefault":"기본적으로 버튼이 선택되어 있습니다.","DE.Views.FormSettings.textReg":"정규식","DE.Views.FormSettings.textRequired":"필수","DE.Views.FormSettings.textScale":"확대/축소 시기","DE.Views.FormSettings.textSelectImage":"이미지 선택","DE.Views.FormSettings.textSignature":"서명","DE.Views.FormSettings.textTag":"꼬리표","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.textUKPassport":"영국 여권 번호(예: 925665416)","DE.Views.FormSettings.textUnlock":"잠금해제","DE.Views.FormSettings.textUSSSN":"미국 SSN(예: 123-45-6789)","DE.Views.FormSettings.textValue":"값 옵션","DE.Views.FormSettings.textWidth":"셀 너비","DE.Views.FormSettings.textZipCodeUS":"미국 우편번호(예: 92663 또는 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"체크박스","DE.Views.FormsTab.capBtnComboBox":"콤보박스","DE.Views.FormsTab.capBtnComplex":"복합 필드","DE.Views.FormsTab.capBtnDownloadForm":"pdf으로 다운로드","DE.Views.FormsTab.capBtnDropDown":"드롭다운","DE.Views.FormsTab.capBtnEmail":"이메일 주소","DE.Views.FormsTab.capBtnFinal":"최종본으로 표시","DE.Views.FormsTab.capBtnImage":"이미지","DE.Views.FormsTab.capBtnManager":"역할 관리","DE.Views.FormsTab.capBtnNext":"다음 필드","DE.Views.FormsTab.capBtnPhone":"전화 번호","DE.Views.FormsTab.capBtnPrev":"이전 필드","DE.Views.FormsTab.capBtnRadioBox":"라디오 버튼","DE.Views.FormsTab.capBtnSaveForm":"템플릿으로 저장","DE.Views.FormsTab.capBtnSaveFormDesktop":"다른 이름으로 저장...","DE.Views.FormsTab.capBtnSignature":"서명 필드","DE.Views.FormsTab.capBtnSubmit":"전송","DE.Views.FormsTab.capBtnText":"텍스트 필드","DE.Views.FormsTab.capBtnView":"양식 보기","DE.Views.FormsTab.capCreditCard":"신용 카드","DE.Views.FormsTab.capDateTime":"날짜 및 시간","DE.Views.FormsTab.capZipCode":"우편 번호","DE.Views.FormsTab.helpTextFillStatus":"이 양식은 역할 기반 작성이 가능합니다. 상태 버튼을 클릭하여 작성 단계를 확인하세요.","DE.Views.FormsTab.textAddRole":"수신자 추가","DE.Views.FormsTab.textAnyone":"누구나","DE.Views.FormsTab.textClear":"필드 지우기","DE.Views.FormsTab.textClearFields":"모든 필드 지우기","DE.Views.FormsTab.textCreateForm":"필드를 추가하여 작성 가능한 PDF 문서 작성","DE.Views.FormsTab.textFilled":"작성됨","DE.Views.FormsTab.textFillFor":"필드 삽입","DE.Views.FormsTab.textGotIt":"확인","DE.Views.FormsTab.textHighlight":"강조 설정","DE.Views.FormsTab.textNoHighlight":"강조 표시되지 않음","DE.Views.FormsTab.textRequired":"양식을 보내려면 모든 필수 필드를 채우십시오.","DE.Views.FormsTab.textSubmited":"폼 전송 성공","DE.Views.FormsTab.textSubmitOk":"PDF 양식이 다음과 같이 처리되었습니다.","DE.Views.FormsTab.tipCheckBox":"체크박스 삽입","DE.Views.FormsTab.tipComboBox":"콤보박스 삽입","DE.Views.FormsTab.tipComplexField":"복잡한 필드 삽입","DE.Views.FormsTab.tipCreateField":"필드를 만들려면 도구 모음에서 원하는 필드 유형을 선택하고 클릭하세요. 필드가 문서에 삽입됩니다.","DE.Views.FormsTab.tipCreditCard":"신용카드 번호 삽입","DE.Views.FormsTab.tipDateTime":"날짜 및 시간 삽입","DE.Views.FormsTab.tipDownloadForm":"파일을 편집 가능한 PDF 문서로 다운로드하세요","DE.Views.FormsTab.tipDropDown":"드롭다운 목록 삽입","DE.Views.FormsTab.tipEmailField":"이메일 주소 삽입","DE.Views.FormsTab.tipFieldSettings":"선택한 필드는 오른쪽 사이드바에서 설정할 수 있습니다. 이 아이콘을 클릭하여 필드 설정을 여세요.","DE.Views.FormsTab.tipFieldsLink":"필드 매개변수에 대해 자세히 알아보기","DE.Views.FormsTab.tipFinalForm":"최종본으로 표시","DE.Views.FormsTab.tipFirstPage":"첫 페이지로 이동","DE.Views.FormsTab.tipFixedText":"고정 텍스트 필드 삽입","DE.Views.FormsTab.tipFormGroupKey":"라디오 버튼을 그룹으로 묶어 빠르게 작성할 수 있습니다. 동일한 이름의 선택지는 동기화되며, 사용자는 그룹에서 하나의 항목만 선택할 수 있습니다.","DE.Views.FormsTab.tipFormKey":"필드 또는 필드 그룹에 키를 지정할 수 있습니다. 사용자가 데이터를 입력하면 같은 키를 가진 모든 필드에 자동으로 복사됩니다.","DE.Views.FormsTab.tipHelpRoles":"역할 관리 기능을 사용해 필드를 목적별로 그룹화하고 책임자에게 할당하세요.","DE.Views.FormsTab.tipImageField":"이미지 삽입","DE.Views.FormsTab.tipInlineText":"인라인 텍스트 필드 삽입","DE.Views.FormsTab.tipLastPage":"마지막 페이지로 이동","DE.Views.FormsTab.tipManager":"역할 관리","DE.Views.FormsTab.tipNextForm":"다음 필드로 이동","DE.Views.FormsTab.tipNextPage":"다음 페이지로 이동","DE.Views.FormsTab.tipPhoneField":"전화번호 삽입","DE.Views.FormsTab.tipPrevForm":"이전 필드로 이동","DE.Views.FormsTab.tipPrevPage":"이전 페이지로 이동","DE.Views.FormsTab.tipRadioBox":"라디오버튼 삽입","DE.Views.FormsTab.tipRolesLink":"역할에 대해 자세히 알아보기","DE.Views.FormsTab.tipSaveFile":"\"PDF로 저장\"을 클릭하면 양식을 작성 가능한 형식으로 저장할 수 있습니다.","DE.Views.FormsTab.tipSaveForm":"채우기 형식 문서로 저장","DE.Views.FormsTab.tipSignField":"서명 필드 삽입","DE.Views.FormsTab.tipSubmit":"전송폼","DE.Views.FormsTab.tipTextField":"텍스트 필드 삽입","DE.Views.FormsTab.tipViewForm":"양식 보기","DE.Views.FormsTab.tipZipCode":"우편번호 삽입","DE.Views.FormsTab.txtFixedDesc":"고정 텍스트 필드 삽입","DE.Views.FormsTab.txtFixedText":"고정","DE.Views.FormsTab.txtInlineDesc":"인라인 텍스트 필드 삽입","DE.Views.FormsTab.txtInlineText":"인라인","DE.Views.FormsTab.txtSignedForm":"이 문서는 서명되어 편집할 수 없습니다.","DE.Views.FormsTab.txtUntitled":"제목없음","DE.Views.HeaderFooterSettings.textBottomCenter":"하단 중앙","DE.Views.HeaderFooterSettings.textBottomLeft":"왼쪽 하단","DE.Views.HeaderFooterSettings.textBottomPage":"페이지 끝","DE.Views.HeaderFooterSettings.textBottomRight":"오른쪽 하단","DE.Views.HeaderFooterSettings.textDiffFirst":"첫 페이지를 다르게 지정","DE.Views.HeaderFooterSettings.textDiffOdd":"다른 홀수 및 짝수 페이지","DE.Views.HeaderFooterSettings.textFrom":"시작 시간","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"하단에서 바닥글","DE.Views.HeaderFooterSettings.textHeaderFromTop":"머리글을 맨 위부터","DE.Views.HeaderFooterSettings.textInsertCurrent":"현재 위치로 삽입","DE.Views.HeaderFooterSettings.textNumFormat":"숫자 형식","DE.Views.HeaderFooterSettings.textOptions":"옵션","DE.Views.HeaderFooterSettings.textPageNum":"페이지 번호 삽입","DE.Views.HeaderFooterSettings.textPageNumbering":"페이지 넘버링","DE.Views.HeaderFooterSettings.textPosition":"위치","DE.Views.HeaderFooterSettings.textPrev":"이전 섹션에서 계속하기","DE.Views.HeaderFooterSettings.textSameAs":"이전 링크","DE.Views.HeaderFooterSettings.textTopCenter":"상단 중앙","DE.Views.HeaderFooterSettings.textTopLeft":"왼쪽 상단","DE.Views.HeaderFooterSettings.textTopPage":"페이지 시작","DE.Views.HeaderFooterSettings.textTopRight":"오른쪽 상단","DE.Views.HeaderFooterSettings.txtMoreTypes":"유형 더 보기","DE.Views.HeaderFooterTab.capBtnDateTime":"날짜 및 시간","DE.Views.HeaderFooterTab.capBtnInsField":"필드","DE.Views.HeaderFooterTab.capBtnInsImage":"그림","DE.Views.HeaderFooterTab.capCurrentPos":"현재 위치로","DE.Views.HeaderFooterTab.capFooterBottom":"하단에서 바닥글","DE.Views.HeaderFooterTab.capFormatNums":"페이지 번호붙이기","DE.Views.HeaderFooterTab.capHeaderTop":"머리글을 맨 위에","DE.Views.HeaderFooterTab.capNumOfPages":"페이지 수","DE.Views.HeaderFooterTab.mniImageFromFile":"파일에서 이미지 삽입","DE.Views.HeaderFooterTab.mniImageFromStorage":"저장소 이미지","DE.Views.HeaderFooterTab.mniImageFromUrl":"URL 그림","DE.Views.HeaderFooterTab.tipCloseTab":"닫기 탭","DE.Views.HeaderFooterTab.tipDateTime":"현재 날짜 시간 삽입","DE.Views.HeaderFooterTab.tipHeaderFooter":"머리글 또는 바닥글 편집","DE.Views.HeaderFooterTab.tipInsertImage":"이미지 삽입","DE.Views.HeaderFooterTab.tipInsField":"필드 삽입","DE.Views.HeaderFooterTab.tipNumOfPages":"페이지 수","DE.Views.HeaderFooterTab.tipPageNumbering":"페이지 번호붙이기","DE.Views.HeaderFooterTab.txtCloseTab":"닫기","DE.Views.HeaderFooterTab.txtDiffFirst":"첫 페이지를 다르게","DE.Views.HeaderFooterTab.txtDiffOddEven":"홀수 및 짝수 페이지 다르게","DE.Views.HeaderFooterTab.txtEditFooter":"바닥글 편집","DE.Views.HeaderFooterTab.txtEditHeader":"머리글 편집","DE.Views.HeaderFooterTab.txtHeaderFooter":"머리말 및 꼬리말","DE.Views.HeaderFooterTab.txtPageNumbering":"페이지 번호","DE.Views.HeaderFooterTab.txtRemoveFooter":"바닥글 삭제","DE.Views.HeaderFooterTab.txtRemoveHeader":"머리말 제거","DE.Views.HeaderFooterTab.txtSameAs":"이전 링크","DE.Views.HyperlinkSettingsDialog.textDefault":"선택한 텍스트 조각","DE.Views.HyperlinkSettingsDialog.textDisplay":"표시","DE.Views.HyperlinkSettingsDialog.textExternal":"외부 링크","DE.Views.HyperlinkSettingsDialog.textInternal":"문서의 현재 위치","DE.Views.HyperlinkSettingsDialog.textSelectFile":"파일 선택","DE.Views.HyperlinkSettingsDialog.textTitle":"하이퍼링크 설정","DE.Views.HyperlinkSettingsDialog.textTooltip":"스크린팁 텍스트","DE.Views.HyperlinkSettingsDialog.textUrl":"링크 대상","DE.Views.HyperlinkSettingsDialog.txtBeginning":"문서의 시작","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.HyperlinkSettingsDialog.txtUrlPlaceholder":"웹 주소를 입력하거나 파일을 선택하세요","DE.Views.HyphenationDialog.textAuto":"문서를 자동으로 하이픈으로 바꿉니다","DE.Views.HyphenationDialog.textCaps":"대문자로 단어에 하이픈 넣기","DE.Views.HyphenationDialog.textLimit":"연속 하이픈을 다음으로 제한하세요.","DE.Views.HyphenationDialog.textNoLimit":"제한 없음","DE.Views.HyphenationDialog.textTitle":"하이픈","DE.Views.HyphenationDialog.textZone":"붙임표 존","DE.Views.ImageSettings.strTransparency":"불투명도","DE.Views.ImageSettings.textAdvanced":"고급 설정 표시","DE.Views.ImageSettings.textCrop":"자르기","DE.Views.ImageSettings.textCropFill":"채우기","DE.Views.ImageSettings.textCropFit":"맞춤","DE.Views.ImageSettings.textCropToShape":"도형에 맞게 자르기","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":"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.textRecentlyUsed":"최근 사용된","DE.Views.ImageSettings.textResetCrop":"자르기 초기화","DE.Views.ImageSettings.textRotate90":"90도 회전","DE.Views.ImageSettings.textRotation":"회전","DE.Views.ImageSettings.textSize":"크기","DE.Views.ImageSettings.textWidth":"너비","DE.Views.ImageSettings.textWrap":"배치 스타일","DE.Views.ImageSettings.txtBehind":"텍스트 뒤","DE.Views.ImageSettings.txtInFront":"텍스트 앞에","DE.Views.ImageSettings.txtInline":"텍스트에 맞춰","DE.Views.ImageSettings.txtSquare":"Square","DE.Views.ImageSettings.txtThrough":"통해","DE.Views.ImageSettings.txtTight":"빽빽하게","DE.Views.ImageSettings.txtTopAndBottom":"상단 및 하단","DE.Views.ImageSettingsAdvanced.strMargins":"텍스트 채우기","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"지정 값","DE.Views.ImageSettingsAdvanced.textAlignment":"정렬","DE.Views.ImageSettingsAdvanced.textAlt":"대체 텍스트","DE.Views.ImageSettingsAdvanced.textAltDescription":"설명","DE.Views.ImageSettingsAdvanced.textAltTip":"시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.","DE.Views.ImageSettingsAdvanced.textAltTitle":"제목","DE.Views.ImageSettingsAdvanced.textAngle":"각도","DE.Views.ImageSettingsAdvanced.textArrows":"화살표","DE.Views.ImageSettingsAdvanced.textAspectRatio":"가로 세로 비율 고정","DE.Views.ImageSettingsAdvanced.textAuto":"자동","DE.Views.ImageSettingsAdvanced.textAutofit":"자동조정","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"교차축","DE.Views.ImageSettingsAdvanced.textAxisPos":"축 위치","DE.Views.ImageSettingsAdvanced.textAxisTitle":"제목","DE.Views.ImageSettingsAdvanced.textBase":"기준","DE.Views.ImageSettingsAdvanced.textBeginSize":"크기 시작","DE.Views.ImageSettingsAdvanced.textBeginStyle":"스타일 시작","DE.Views.ImageSettingsAdvanced.textBelow":"below","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"눈금 사이","DE.Views.ImageSettingsAdvanced.textBevel":"Bevel","DE.Views.ImageSettingsAdvanced.textBillions":"10 억","DE.Views.ImageSettingsAdvanced.textBottom":"하단","DE.Views.ImageSettingsAdvanced.textBottomMargin":"아래 여백","DE.Views.ImageSettingsAdvanced.textBtnWrap":"텍스트 줄 바꿈","DE.Views.ImageSettingsAdvanced.textCapType":"모자 유형","DE.Views.ImageSettingsAdvanced.textCategoryName":"카테고리 이름","DE.Views.ImageSettingsAdvanced.textCenter":"Center","DE.Views.ImageSettingsAdvanced.textCharacter":"문자","DE.Views.ImageSettingsAdvanced.textChartTitle":"차트 제목","DE.Views.ImageSettingsAdvanced.textColumn":"열","DE.Views.ImageSettingsAdvanced.textCross":"교차","DE.Views.ImageSettingsAdvanced.textCustom":"사용자 지정","DE.Views.ImageSettingsAdvanced.textDataLabels":"데이터 레이블","DE.Views.ImageSettingsAdvanced.textDistance":"텍스트로부터의 거리","DE.Views.ImageSettingsAdvanced.textEndSize":"최종 크기","DE.Views.ImageSettingsAdvanced.textEndStyle":"끝 스타일","DE.Views.ImageSettingsAdvanced.textFit":"너비에 맞추기","DE.Views.ImageSettingsAdvanced.textFixed":"고정","DE.Views.ImageSettingsAdvanced.textFlat":"Flat","DE.Views.ImageSettingsAdvanced.textFlipped":"뒤집기","DE.Views.ImageSettingsAdvanced.textFormat":"레이블 서식","DE.Views.ImageSettingsAdvanced.textGridLines":"눈금선","DE.Views.ImageSettingsAdvanced.textHeight":"높이","DE.Views.ImageSettingsAdvanced.textHideAxis":"축 감추기","DE.Views.ImageSettingsAdvanced.textHigh":"위쪽","DE.Views.ImageSettingsAdvanced.textHorAxis":"가로 축","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"수평 보조축","DE.Views.ImageSettingsAdvanced.textHorizontal":"수평","DE.Views.ImageSettingsAdvanced.textHorizontally":"수평","DE.Views.ImageSettingsAdvanced.textHundredMil":"100,000,000","DE.Views.ImageSettingsAdvanced.textHundreds":"백 단위","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100,000","DE.Views.ImageSettingsAdvanced.textIn":"안쪽","DE.Views.ImageSettingsAdvanced.textInnerBottom":"안쪽 위","DE.Views.ImageSettingsAdvanced.textInnerTop":"안쪽 위","DE.Views.ImageSettingsAdvanced.textJoinType":"조인 유형","DE.Views.ImageSettingsAdvanced.textKeepRatio":"상수 비율","DE.Views.ImageSettingsAdvanced.textLabelDist":"축 레이블 간격","DE.Views.ImageSettingsAdvanced.textLabelInterval":"레이블 간격","DE.Views.ImageSettingsAdvanced.textLabelOptions":"레이블 옵션","DE.Views.ImageSettingsAdvanced.textLabelPos":"레이블 위치","DE.Views.ImageSettingsAdvanced.textLayout":"레이아웃","DE.Views.ImageSettingsAdvanced.textLeft":"왼쪽","DE.Views.ImageSettingsAdvanced.textLeftMargin":"왼쪽 여백","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"왼쪽 오버레이","DE.Views.ImageSettingsAdvanced.textLegendBottom":"하단","DE.Views.ImageSettingsAdvanced.textLegendLeft":"왼쪽 겹치기","DE.Views.ImageSettingsAdvanced.textLegendPos":"범례","DE.Views.ImageSettingsAdvanced.textLegendRight":"오른쪽","DE.Views.ImageSettingsAdvanced.textLegendTop":"위","DE.Views.ImageSettingsAdvanced.textLine":"Line","DE.Views.ImageSettingsAdvanced.textLines":"선","DE.Views.ImageSettingsAdvanced.textLineStyle":"선 스타일","DE.Views.ImageSettingsAdvanced.textLogScale":"로그 눈금","DE.Views.ImageSettingsAdvanced.textLow":"아래쪽","DE.Views.ImageSettingsAdvanced.textMajor":"메이저","DE.Views.ImageSettingsAdvanced.textMajorMinor":"매이저 및 마이너","DE.Views.ImageSettingsAdvanced.textMajorType":"주요 유형","DE.Views.ImageSettingsAdvanced.textManual":"수동","DE.Views.ImageSettingsAdvanced.textMargin":"여백","DE.Views.ImageSettingsAdvanced.textMarkers":"표시 기호","DE.Views.ImageSettingsAdvanced.textMarksInterval":"눈금 간격","DE.Views.ImageSettingsAdvanced.textMaxValue":"최대값","DE.Views.ImageSettingsAdvanced.textMillions":"백만 단위","DE.Views.ImageSettingsAdvanced.textMinor":"마이너","DE.Views.ImageSettingsAdvanced.textMinorType":"보조 유형","DE.Views.ImageSettingsAdvanced.textMinValue":"최소값","DE.Views.ImageSettingsAdvanced.textMiter":"연귀","DE.Views.ImageSettingsAdvanced.textMove":"텍스트가있는 객체 이동","DE.Views.ImageSettingsAdvanced.textNextToAxis":"축 옆","DE.Views.ImageSettingsAdvanced.textNone":"없음","DE.Views.ImageSettingsAdvanced.textNoOverlay":"오버레이 없음","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"눈금 표시","DE.Views.ImageSettingsAdvanced.textOptions":"옵션","DE.Views.ImageSettingsAdvanced.textOriginalSize":"실제 크기","DE.Views.ImageSettingsAdvanced.textOut":"바깥쪽","DE.Views.ImageSettingsAdvanced.textOuterTop":"바깥쪽 위","DE.Views.ImageSettingsAdvanced.textOverlap":"중복 허용","DE.Views.ImageSettingsAdvanced.textOverlay":"오버레이","DE.Views.ImageSettingsAdvanced.textPage":"페이지","DE.Views.ImageSettingsAdvanced.textParagraph":"단락","DE.Views.ImageSettingsAdvanced.textPosition":"위치","DE.Views.ImageSettingsAdvanced.textPositionPc":"상대 위치","DE.Views.ImageSettingsAdvanced.textRelative":"기준","DE.Views.ImageSettingsAdvanced.textRelativeWH":"비율","DE.Views.ImageSettingsAdvanced.textResizeFit":"텍스트에 맞게 모양 조정","DE.Views.ImageSettingsAdvanced.textReverse":"값 역순","DE.Views.ImageSettingsAdvanced.textRight":"오른쪽","DE.Views.ImageSettingsAdvanced.textRightMargin":"오른쪽 여백","DE.Views.ImageSettingsAdvanced.textRightOf":"오른쪽 기준점","DE.Views.ImageSettingsAdvanced.textRightOverlay":"오른쪽 오버레이","DE.Views.ImageSettingsAdvanced.textRotated":"회전","DE.Views.ImageSettingsAdvanced.textRotation":"회전","DE.Views.ImageSettingsAdvanced.textRound":"원","DE.Views.ImageSettingsAdvanced.textSeparator":"데이터 레이블 구분 기호","DE.Views.ImageSettingsAdvanced.textSeriesName":"계열 이름","DE.Views.ImageSettingsAdvanced.textShape":"도형 설정","DE.Views.ImageSettingsAdvanced.textSize":"크기","DE.Views.ImageSettingsAdvanced.textSmooth":"부드럽게","DE.Views.ImageSettingsAdvanced.textSquare":"Square","DE.Views.ImageSettingsAdvanced.textStraight":"직선","DE.Views.ImageSettingsAdvanced.textTenMillions":"10,000,000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10,000","DE.Views.ImageSettingsAdvanced.textTextBox":"텍스트 상자","DE.Views.ImageSettingsAdvanced.textThousands":"천 단위","DE.Views.ImageSettingsAdvanced.textTickOptions":"눈금 옵션","DE.Views.ImageSettingsAdvanced.textTitle":"이미지 - 고급 설정","DE.Views.ImageSettingsAdvanced.textTitleChart":"차트 - 고급 설정","DE.Views.ImageSettingsAdvanced.textTitleShape":"도형 - 고급 설정","DE.Views.ImageSettingsAdvanced.textTop":"위","DE.Views.ImageSettingsAdvanced.textTopMargin":"상위 여백","DE.Views.ImageSettingsAdvanced.textTrillions":"조 단위","DE.Views.ImageSettingsAdvanced.textUnits":"표시 단위","DE.Views.ImageSettingsAdvanced.textValue":"값","DE.Views.ImageSettingsAdvanced.textVertAxis":"세로 축","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"수직 보조축","DE.Views.ImageSettingsAdvanced.textVertical":"세로","DE.Views.ImageSettingsAdvanced.textVertically":"세로","DE.Views.ImageSettingsAdvanced.textWeightArrows":"가중치 및 화살표","DE.Views.ImageSettingsAdvanced.textWidth":"너비","DE.Views.ImageSettingsAdvanced.textWrap":"배치 스타일","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"텍스트 뒤","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"텍스트 앞에","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"텍스트에 맞춰","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"Square","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"통해","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"빽빽하게","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"상단 및 하단","DE.Views.LeftMenu.ariaLeftMenu":"왼쪽 메뉴","DE.Views.LeftMenu.tipAbout":"정보","DE.Views.LeftMenu.tipChat":"채팅","DE.Views.LeftMenu.tipComments":"코멘트","DE.Views.LeftMenu.tipNavigation":"내비게이션","DE.Views.LeftMenu.tipOutline":"제목","DE.Views.LeftMenu.tipPageThumbnails":"페이지 썸네일","DE.Views.LeftMenu.tipPlugins":"플러그인","DE.Views.LeftMenu.tipSearch":"검색","DE.Views.LeftMenu.tipSupport":"피드백 및 지원","DE.Views.LeftMenu.tipTitles":"제목","DE.Views.LeftMenu.txtDeveloper":"개발자 모드","DE.Views.LeftMenu.txtEditor":"문서 편집기","DE.Views.LeftMenu.txtLimit":"접근제한","DE.Views.LeftMenu.txtTrial":"시험 모드","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":"포인트 앞으로","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.capBtnAddText":"텍스트 추가","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.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.tipAddText":"목차에 제목 포함","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.Links.txtDontShowTof":"목차에 표시하지 않음","DE.Views.Links.txtLevel":"레벨","DE.Views.ListIndentsDialog.textSpace":"공간","DE.Views.ListIndentsDialog.textTab":"탭 문자","DE.Views.ListIndentsDialog.textTitle":"들여쓰기 목록","DE.Views.ListIndentsDialog.txtFollowBullet":"글머리 기호 이후에 이어지는","DE.Views.ListIndentsDialog.txtFollowNumber":"숫자 이후에 이어지는","DE.Views.ListIndentsDialog.txtIndent":"텍스트 들여쓰기","DE.Views.ListIndentsDialog.txtNone":"없음","DE.Views.ListIndentsDialog.txtPosBullet":"글머리 기호 위치","DE.Views.ListIndentsDialog.txtPosNumber":"번호위치","DE.Views.ListSettingsDialog.textAuto":"자동","DE.Views.ListSettingsDialog.textBold":"굵게","DE.Views.ListSettingsDialog.textCenter":"가운데","DE.Views.ListSettingsDialog.textHide":"숨기기 설정","DE.Views.ListSettingsDialog.textItalic":"기울임꼴","DE.Views.ListSettingsDialog.textLeft":"왼쪽","DE.Views.ListSettingsDialog.textLevel":"레벨","DE.Views.ListSettingsDialog.textMore":"더 많은 설정 표시","DE.Views.ListSettingsDialog.textPreview":"미리보기","DE.Views.ListSettingsDialog.textRight":"오른쪽","DE.Views.ListSettingsDialog.textSelectLevel":"레벨 선택","DE.Views.ListSettingsDialog.textSpace":"공간","DE.Views.ListSettingsDialog.textTab":"탭 문자","DE.Views.ListSettingsDialog.txtAlign":"맞춤","DE.Views.ListSettingsDialog.txtAlignAt":"에","DE.Views.ListSettingsDialog.txtBullet":"글머리 기호","DE.Views.ListSettingsDialog.txtColor":"색상","DE.Views.ListSettingsDialog.txtFollow":"숫자 이후에 이어지는","DE.Views.ListSettingsDialog.txtFontName":"글꼴","DE.Views.ListSettingsDialog.txtInclcudeLevel":"레벨 번호를 포함","DE.Views.ListSettingsDialog.txtIndent":"텍스트 들여쓰기","DE.Views.ListSettingsDialog.txtLikeText":"텍스트처럼","DE.Views.ListSettingsDialog.txtMoreTypes":"더 많은 유형","DE.Views.ListSettingsDialog.txtNewBullet":"새로운 글머리 기호","DE.Views.ListSettingsDialog.txtNone":"없음","DE.Views.ListSettingsDialog.txtNumFormatString":"숫자 형식","DE.Views.ListSettingsDialog.txtRestart":"재시작 목록","DE.Views.ListSettingsDialog.txtSize":"크기","DE.Views.ListSettingsDialog.txtStart":"시작 시간","DE.Views.ListSettingsDialog.txtSymbol":"기호","DE.Views.ListSettingsDialog.txtTabStop":"탭 정지 추가","DE.Views.ListSettingsDialog.txtTitle":"목록 설정","DE.Views.ListSettingsDialog.txtType":"유형","DE.Views.ListTypesAdvanced.labelSelect":"목록 유형 선택","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"보내기","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"테마","DE.Views.MailMergeEmailDlg.textAttachDocx":"DOCX로 첨부","DE.Views.MailMergeEmailDlg.textAttachPdf":"PDF로 첨부","DE.Views.MailMergeEmailDlg.textFileName":"파일 이름","DE.Views.MailMergeEmailDlg.textFormat":"메일 형식","DE.Views.MailMergeEmailDlg.textFrom":"보낸 사람","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"메시지","DE.Views.MailMergeEmailDlg.textSubject":"\b제목","DE.Views.MailMergeEmailDlg.textTitle":"이메일로 보내기","DE.Views.MailMergeEmailDlg.textTo":"받는 사람","DE.Views.MailMergeEmailDlg.textWarning":"경고!","DE.Views.MailMergeEmailDlg.textWarningMsg":"일단 '보내기'버튼을 클릭하면 메일 링을 중지 할 수 없습니다.","DE.Views.MailMergeSettings.downloadMergeTitle":"병합","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"병합하지 못했습니다.","DE.Views.MailMergeSettings.notcriticalErrorTitle":"경고","DE.Views.MailMergeSettings.textAddRecipients":"먼저 목록에 수신자를 추가하십시오","DE.Views.MailMergeSettings.textAll":"모든 레코드","DE.Views.MailMergeSettings.textCurrent":"현재 레코드","DE.Views.MailMergeSettings.textDataSource":"데이터 소스","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"다운로드","DE.Views.MailMergeSettings.textEditData":"받는 사람 목록 편집","DE.Views.MailMergeSettings.textEmail":"이메일","DE.Views.MailMergeSettings.textFrom":"보낸 사람","DE.Views.MailMergeSettings.textGoToMail":"메일로 이동","DE.Views.MailMergeSettings.textHighlight":"병합 필드 강조 표시","DE.Views.MailMergeSettings.textInsertField":"병합 필드 삽입","DE.Views.MailMergeSettings.textMaxRecepients":"최대 100 명의 수신자.","DE.Views.MailMergeSettings.textMerge":"병합","DE.Views.MailMergeSettings.textMergeFields":"필드 병합","DE.Views.MailMergeSettings.textMergeTo":"병합","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"저장","DE.Views.MailMergeSettings.textPreview":"결과 미리보기","DE.Views.MailMergeSettings.textReadMore":"자세히 보기","DE.Views.MailMergeSettings.textSendMsg":"모든 메일 메시지가 준비되어 있으며 일정 시간 내에 발송됩니다.
우편 발송 속도는 메일 서비스에 따라 다릅니다.
문서 작업을 계속하거나 닫을 수 있습니다 . 작업이 끝나면 등록 이메일 주소로 알림이 전송됩니다. ","DE.Views.MailMergeSettings.textTo":"받는 사람","DE.Views.MailMergeSettings.txtFirst":"처음 녹화","DE.Views.MailMergeSettings.txtFromToError":"\"시작\"의 값은 \"마지막\"의 값보다 작아야 합니다.","DE.Views.MailMergeSettings.txtLast":"마지막 기록","DE.Views.MailMergeSettings.txtNext":"다음 레코드로","DE.Views.MailMergeSettings.txtPrev":"이전 레코드로","DE.Views.MailMergeSettings.txtUntitled":"제목없음","DE.Views.MailMergeSettings.warnProcessMailMerge":"병합 시작 실패","DE.Views.Navigation.strNavigate":"제목","DE.Views.Navigation.txtClosePanel":"제목 닫기","DE.Views.Navigation.txtCollapse":"모두 접기","DE.Views.Navigation.txtDemote":"강등","DE.Views.Navigation.txtEmpty":"문서에 제목이 없습니다.
텍스트에 제목 스타일을 적용하여 목차에 표시되도록 합니다.","DE.Views.Navigation.txtEmptyItem":"머리말 없음","DE.Views.Navigation.txtEmptyViewer":"문서에 제목이 없습니다. ","DE.Views.Navigation.txtExpand":"모두 확장","DE.Views.Navigation.txtExpandToLevel":"레벨로 확장하기","DE.Views.Navigation.txtFontSize":"글자 크기","DE.Views.Navigation.txtHeadingAfter":"뒤에 신규 머리글 ","DE.Views.Navigation.txtHeadingBefore":"전에 신규 머리글 ","DE.Views.Navigation.txtLarge":"큰","DE.Views.Navigation.txtMedium":"중","DE.Views.Navigation.txtNewHeading":"신규 하위 제목","DE.Views.Navigation.txtPromote":"승급","DE.Views.Navigation.txtSelect":"콘텐트 선택","DE.Views.Navigation.txtSettings":"제목 설정","DE.Views.Navigation.txtSmall":"작은","DE.Views.Navigation.txtWrapHeadings":"긴 제목 줄 바꿈","DE.Views.NoteSettingsDialog.textApply":"적용","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":"서식","DE.Views.NoteSettingsDialog.textInsert":"삽입","DE.Views.NoteSettingsDialog.textLocation":"위치","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":"아래쪽","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":"여백","DE.Views.PageMarginsDialog.textTop":"위쪽","DE.Views.PageMarginsDialog.txtMarginsH":"주어진 페이지 높이에 대해 위쪽 및 아래쪽 여백이 너무 높습니다.","DE.Views.PageMarginsDialog.txtMarginsW":"왼쪽 및 오른쪽 여백이 주어진 페이지 너비에 비해 너무 넓습니다.","DE.Views.PageNumberingDlg.textFrom":"시작","DE.Views.PageNumberingDlg.textMoreTypes":"더 많은 유형","DE.Views.PageNumberingDlg.textNumberFormat":"숫자 형식","DE.Views.PageNumberingDlg.textPrev":"이전 섹션에서 계속하기","DE.Views.PageSizeDialog.textHeight":"높이","DE.Views.PageSizeDialog.textPreset":"미리 설정된","DE.Views.PageSizeDialog.textTitle":"페이지 크기","DE.Views.PageSizeDialog.textWidth":"너비","DE.Views.PageSizeDialog.txtCustom":"사용자 정의","DE.Views.PageThumbnails.textClosePanel":"페이지 썸네일 닫기","DE.Views.PageThumbnails.textHighlightVisiblePart":"페이지에서 보이는 부분 강조 표시","DE.Views.PageThumbnails.textPageThumbnails":"페이지 썸네일","DE.Views.PageThumbnails.textThumbnailsSettings":"썸네일 설정","DE.Views.PageThumbnails.textThumbnailsSize":"썸네일 크기","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.strSpacingAfter":"이후","DE.Views.ParagraphSettings.strSpacingBefore":"단락 앞","DE.Views.ParagraphSettings.textAdvanced":"고급 설정 표시","DE.Views.ParagraphSettings.textAt":"At","DE.Views.ParagraphSettings.textAtLeast":"적어도","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.strDirection":"방향","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"이중 취소선","DE.Views.ParagraphSettingsAdvanced.strIndent":"들여쓰기","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"왼쪽","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":"안쪽 여백","DE.Views.ParagraphSettingsAdvanced.strOrphan":"페이지 분리 방지","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"글꼴","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"들여쓰기 및 간격","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"줄 바꾸고 페이지 나누기","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"게재 위치","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"작은 대문자","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"같은 스타일의 단락 사이에 공백 삽입 안 함","DE.Views.ParagraphSettingsAdvanced.strSpacing":"간격","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.textAll":"모든","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"최소","DE.Views.ParagraphSettingsAdvanced.textAuto":"배수","DE.Views.ParagraphSettingsAdvanced.textBackColor":"배경색","DE.Views.ParagraphSettingsAdvanced.textBodyText":"기본 텍스트","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"테두리 색상","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"다이어그램을 클릭하거나 단추를 사용하여 테두리를 선택하고 선택한 스타일을 적용","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"테두리 굵기","DE.Views.ParagraphSettingsAdvanced.textBottom":"하단","DE.Views.ParagraphSettingsAdvanced.textCentered":"가운데","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"문자 간격","DE.Views.ParagraphSettingsAdvanced.textContext":"상황에 맞는","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"상황별 및 임의적","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"문맥적, 역사적, 그리고 재량적","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"문맥적 및 역사적","DE.Views.ParagraphSettingsAdvanced.textDefault":"기본 탭","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"왼쪽에서 오른쪽으로","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"오른쪽에서 왼쪽으로","DE.Views.ParagraphSettingsAdvanced.textDiscret":"임의의","DE.Views.ParagraphSettingsAdvanced.textEffects":"효과","DE.Views.ParagraphSettingsAdvanced.textExact":"고정","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"첫 번째 줄","DE.Views.ParagraphSettingsAdvanced.textHanging":"둘째 줄 이하","DE.Views.ParagraphSettingsAdvanced.textHistorical":"히스토리","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"역사적 및 재량적","DE.Views.ParagraphSettingsAdvanced.textJustified":"균등분할","DE.Views.ParagraphSettingsAdvanced.textLeader":"탭표시","DE.Views.ParagraphSettingsAdvanced.textLeft":"왼쪽","DE.Views.ParagraphSettingsAdvanced.textLevel":"레벨","DE.Views.ParagraphSettingsAdvanced.textLigatures":"합자기능","DE.Views.ParagraphSettingsAdvanced.textNone":"없음","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(없음)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"오픈타입 기능","DE.Views.ParagraphSettingsAdvanced.textPosition":"위치","DE.Views.ParagraphSettingsAdvanced.textRemove":"제거","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"모두 제거","DE.Views.ParagraphSettingsAdvanced.textRight":"오른쪽","DE.Views.ParagraphSettingsAdvanced.textSet":"지정","DE.Views.ParagraphSettingsAdvanced.textSpacing":"간격","DE.Views.ParagraphSettingsAdvanced.textStandard":"표준 적용","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"표준 및 맥락적","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"표준, 문맥, 재량","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"표준, 문맥, 히스토리","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"표준 및 재량적","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"표준, 히스토리 및 재량사항","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"표준 및 역사적","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"Center","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"왼쪽","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"탭 위치","DE.Views.ParagraphSettingsAdvanced.textTabRight":"오른쪽","DE.Views.ParagraphSettingsAdvanced.textTitle":"문단 - 고급 설정","DE.Views.ParagraphSettingsAdvanced.textTop":"위","DE.Views.ParagraphSettingsAdvanced.tipAll":"바깥쪽 테두리 및 안쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipBottom":"아래쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipInner":"안쪽 가로 테두리","DE.Views.ParagraphSettingsAdvanced.tipLeft":"왼쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipNone":"테두리 없음 설정","DE.Views.ParagraphSettingsAdvanced.tipOuter":"바깥쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipRight":"오른쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipTop":"위쪽 테두리","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"자동","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"테두리 없음","DE.Views.PrintWithPreview.textMarginsLast":"마지막 사용자 정의","DE.Views.PrintWithPreview.textMarginsModerate":"보통","DE.Views.PrintWithPreview.textMarginsNarrow":"좁게","DE.Views.PrintWithPreview.textMarginsNormal":"표준","DE.Views.PrintWithPreview.textMarginsWide":"넓게","DE.Views.PrintWithPreview.txtAllPages":"전체 페이지","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"흑백 인쇄","DE.Views.PrintWithPreview.txtBothSides":"양면에 인쇄","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"긴 변을 중심으로 페이지를 뒤집다","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"짧은 변을 중심으로 페이지를 뒤집다","DE.Views.PrintWithPreview.txtBottom":"하단","DE.Views.PrintWithPreview.txtColorPrinting":"컬러 인쇄","DE.Views.PrintWithPreview.txtCopies":"사본","DE.Views.PrintWithPreview.txtCurrentPage":"현재 페이지","DE.Views.PrintWithPreview.txtCustom":"사용자 정의","DE.Views.PrintWithPreview.txtCustomPages":"맞춤 인쇄","DE.Views.PrintWithPreview.txtLandscape":"가로 모드","DE.Views.PrintWithPreview.txtLeft":"왼쪽","DE.Views.PrintWithPreview.txtMargins":"여백","DE.Views.PrintWithPreview.txtOf":"/ {0}","DE.Views.PrintWithPreview.txtOneSide":"단면 인쇄","DE.Views.PrintWithPreview.txtOneSideDesc":"페이지의 한쪽에만 인쇄","DE.Views.PrintWithPreview.txtPage":"페이지","DE.Views.PrintWithPreview.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","DE.Views.PrintWithPreview.txtPageOrientation":"페이지 방향","DE.Views.PrintWithPreview.txtPages":"페이지","DE.Views.PrintWithPreview.txtPageSize":"페이지 크기","DE.Views.PrintWithPreview.txtPortrait":"세로","DE.Views.PrintWithPreview.txtPrint":"인쇄","DE.Views.PrintWithPreview.txtPrinter":"프린터","DE.Views.PrintWithPreview.txtPrinterNotSelected":"선택된 프린터 없음","DE.Views.PrintWithPreview.txtPrintersNotFound":"프린터를 찾을 수 없습니다","DE.Views.PrintWithPreview.txtPrintPdf":"PDF로 인쇄","DE.Views.PrintWithPreview.txtPrintRange":"인쇄 범위","DE.Views.PrintWithPreview.txtPrintSides":"인쇄면","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"시스템 대화상자를 사용하여 인쇄","DE.Views.PrintWithPreview.txtRight":"오른쪽","DE.Views.PrintWithPreview.txtSelection":"선택","DE.Views.PrintWithPreview.txtTop":"상위","DE.Views.PrintWithPreview.txtWaitingForPrinters":"프린터 대기 중","DE.Views.ProtectDialog.textComments":"코멘트","DE.Views.ProtectDialog.textForms":"양식 작성","DE.Views.ProtectDialog.textReview":"추적된 변경 사항","DE.Views.ProtectDialog.textView":"변경사항 없음(읽기 전용)","DE.Views.ProtectDialog.txtAllow":"문서에서 이 유형의 편집만 허용","DE.Views.ProtectDialog.txtIncorrectPwd":"확인 비밀번호가 같지 않음","DE.Views.ProtectDialog.txtLimit":"비밀번호는 15자로 제한됩니다.","DE.Views.ProtectDialog.txtOptional":"선택","DE.Views.ProtectDialog.txtPassword":"암호","DE.Views.ProtectDialog.txtProtect":"보호","DE.Views.ProtectDialog.txtRepeat":"비밀번호 반복","DE.Views.ProtectDialog.txtTitle":"보호","DE.Views.ProtectDialog.txtWarning":"주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.","DE.Views.RightMenu.ariaRightMenu":"오른쪽 메뉴","DE.Views.RightMenu.txtChartSettings":"차트 설정","DE.Views.RightMenu.txtFormSettings":"폼 설정","DE.Views.RightMenu.txtHeaderFooterSettings":"머리글 및 바닥글 설정","DE.Views.RightMenu.txtImageSettings":"이미지 설정","DE.Views.RightMenu.txtMailMergeSettings":"편지 병합 설정","DE.Views.RightMenu.txtParagraphSettings":"문단 설정","DE.Views.RightMenu.txtShapeSettings":"도형 설정","DE.Views.RightMenu.txtSignatureSettings":"서명 설정","DE.Views.RightMenu.txtTableSettings":"표 설정","DE.Views.RightMenu.txtTextArtSettings":"글자꾸미기 설정","DE.Views.RoleDeleteDlg.textLabel":"이 역할을 삭제하려면, 이와 연결된 필드를 다른 역할로 이동해야 합니다.","DE.Views.RoleDeleteDlg.textSelect":"필드 병합 역할을 선택하세요","DE.Views.RoleDeleteDlg.textTitle":"역할 삭제","DE.Views.RoleEditDlg.errNameExists":"해당 이름을 가진 역할이 이미 존재합니다.","DE.Views.RoleEditDlg.textEmptyError":"역할 이름은 비워둘 수 없습니다.","DE.Views.RoleEditDlg.textName":"역할 이름","DE.Views.RoleEditDlg.textNameEx":"예: 지원자, 고객, 영업 담당자","DE.Views.RoleEditDlg.textNoHighlight":"강조 표시되지 않음","DE.Views.RoleEditDlg.txtTitleEdit":"역할 편집","DE.Views.RoleEditDlg.txtTitleNew":"새 역할 만들기","DE.Views.RolesManagerDlg.textAnyone":"누구나","DE.Views.RolesManagerDlg.textDelete":"삭제","DE.Views.RolesManagerDlg.textDeleteLast":"{0} 수신자를 삭제하시겠습니까?
삭제하면 기본 수신자가 생성됩니다.","DE.Views.RolesManagerDlg.textDescription":"수신자를 추가하고 작성자가 문서를 수신하고 서명하는 순서를 설정","DE.Views.RolesManagerDlg.textDown":"역할을 아래로 이동","DE.Views.RolesManagerDlg.textEdit":"편집","DE.Views.RolesManagerDlg.textEmpty":"역할이 아직 생성되지 않았습니다.
하나 이상의 역할을 생성하면 이 필드에 나타납니다.","DE.Views.RolesManagerDlg.textNew":"신규","DE.Views.RolesManagerDlg.textUp":"역할 위로 이동","DE.Views.RolesManagerDlg.txtTitle":"역할 관리","DE.Views.RolesManagerDlg.warnCantDelete":"이 역할에는 연결된 필드가 있으므로 삭제할 수 없습니다.","DE.Views.RolesManagerDlg.warnDelete":"{0} 수신자를 삭제하시겠습니까?","DE.Views.SaveFormDlg.saveButtonText":"저장","DE.Views.SaveFormDlg.textAnyone":"누구나","DE.Views.SaveFormDlg.textDescription":"양식에 저장할 때 필드가 있는 역할만 채우기 목록에 추가됨","DE.Views.SaveFormDlg.textEmpty":"필드에 연결된 역할이 없습니다.","DE.Views.SaveFormDlg.textFill":"목록 작성","DE.Views.SaveFormDlg.txtTitle":"양식으로 저장","DE.Views.ShapeSettings.strBackground":"배경색","DE.Views.ShapeSettings.strChange":"도형 변경","DE.Views.ShapeSettings.strColor":"색상","DE.Views.ShapeSettings.strFill":"채우기","DE.Views.ShapeSettings.strForeground":"전경색","DE.Views.ShapeSettings.strPattern":"패턴","DE.Views.ShapeSettings.strShadow":"음영 표시","DE.Views.ShapeSettings.strSize":"크기","DE.Views.ShapeSettings.strStroke":"선","DE.Views.ShapeSettings.strTransparency":"투명도","DE.Views.ShapeSettings.strType":"유형","DE.Views.ShapeSettings.textAdjustShadow":"그림자 조정","DE.Views.ShapeSettings.textAdvanced":"고급 설정 표시","DE.Views.ShapeSettings.textAngle":"각도","DE.Views.ShapeSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.","DE.Views.ShapeSettings.textColor":"색상 채우기","DE.Views.ShapeSettings.textDirection":"방향","DE.Views.ShapeSettings.textEditPoints":"꼭지점 수정","DE.Views.ShapeSettings.textEditShape":"도형 편집","DE.Views.ShapeSettings.textEmptyPattern":"패턴 없음","DE.Views.ShapeSettings.textEyedropper":"스포이트","DE.Views.ShapeSettings.textFlip":"대칭","DE.Views.ShapeSettings.textFromFile":"파일로부터","DE.Views.ShapeSettings.textFromStorage":"스토리지로 부터","DE.Views.ShapeSettings.textFromUrl":"URL로부터","DE.Views.ShapeSettings.textGradient":"그라데이션 포인트","DE.Views.ShapeSettings.textGradientFill":"그라데이션 채우기","DE.Views.ShapeSettings.textHint270":"왼쪽으로 90도 회전","DE.Views.ShapeSettings.textHint90":"오른쪽으로 90도 회전","DE.Views.ShapeSettings.textHintFlipH":"좌우대칭","DE.Views.ShapeSettings.textHintFlipV":"상하대칭","DE.Views.ShapeSettings.textImageTexture":"그림 또는 질감","DE.Views.ShapeSettings.textLinear":"선형","DE.Views.ShapeSettings.textMoreColors":"색상 더 보기","DE.Views.ShapeSettings.textNoFill":"채우기 없음","DE.Views.ShapeSettings.textNoShadow":"그림자 없음","DE.Views.ShapeSettings.textPatternFill":"패턴","DE.Views.ShapeSettings.textPosition":"위치","DE.Views.ShapeSettings.textRadial":"방사형","DE.Views.ShapeSettings.textRecentlyUsed":"최근 사용된","DE.Views.ShapeSettings.textRotate90":"90도 회전","DE.Views.ShapeSettings.textRotation":"회전","DE.Views.ShapeSettings.textSelectImage":"그림선택","DE.Views.ShapeSettings.textSelectTexture":"선택","DE.Views.ShapeSettings.textShadow":"그림자","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":"텍스트 뒤","DE.Views.ShapeSettings.txtBrownPaper":"갈색 종이","DE.Views.ShapeSettings.txtCanvas":"Canvas","DE.Views.ShapeSettings.txtCarton":"Carton","DE.Views.ShapeSettings.txtDarkFabric":"어두운 직물","DE.Views.ShapeSettings.txtGrain":"곡물","DE.Views.ShapeSettings.txtGranite":"화강암","DE.Views.ShapeSettings.txtGreyPaper":"회색 용지","DE.Views.ShapeSettings.txtInFront":"텍스트 앞에","DE.Views.ShapeSettings.txtInline":"텍스트에 맞춰","DE.Views.ShapeSettings.txtKnit":"Knit","DE.Views.ShapeSettings.txtLeather":"가죽","DE.Views.ShapeSettings.txtNoBorders":"선 없음","DE.Views.ShapeSettings.txtOffsetBottom":"오프셋: 아래쪽","DE.Views.ShapeSettings.txtOffsetBottomLeft":"오프셋: 아래쪽","DE.Views.ShapeSettings.txtOffsetBottomRight":"오프셋: 왼쪽 아래","DE.Views.ShapeSettings.txtOffsetCenter":"오프셋: 오른쪽 아래","DE.Views.ShapeSettings.txtOffsetLeft":"Offset: Left","DE.Views.ShapeSettings.txtOffsetRight":"오프셋: 오른쪽","DE.Views.ShapeSettings.txtOffsetTop":"오프셋: 위쪽","DE.Views.ShapeSettings.txtOffsetTopLeft":"오프셋: 왼쪽 위","DE.Views.ShapeSettings.txtOffsetTopRight":"오프셋: 오른쪽 위","DE.Views.ShapeSettings.txtPapyrus":"파피루스","DE.Views.ShapeSettings.txtSquare":"Square","DE.Views.ShapeSettings.txtThrough":"통과","DE.Views.ShapeSettings.txtTight":"빽빽하게","DE.Views.ShapeSettings.txtTopAndBottom":"상단 및 하단","DE.Views.ShapeSettings.txtWood":"우드","DE.Views.SignatureSettings.notcriticalErrorTitle":"경고","DE.Views.SignatureSettings.strDelete":"서명 삭제","DE.Views.SignatureSettings.strDetails":"서명 상세","DE.Views.SignatureSettings.strInvalid":"잘못된 서명","DE.Views.SignatureSettings.strRequested":"요청 서명","DE.Views.SignatureSettings.strSetup":"서명 셋업","DE.Views.SignatureSettings.strSign":"서명","DE.Views.SignatureSettings.strSignature":"서명","DE.Views.SignatureSettings.strSigner":"서명자","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.txtSignedForm":"이 문서는 서명되어 편집할 수 없습니다.","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.tipHandTool":"손도구","DE.Views.Statusbar.tipSelectTool":"도구 선택","DE.Views.Statusbar.tipSetLang":"텍스트 언어 설정","DE.Views.Statusbar.tipZoomFactor":"확대/축소","DE.Views.Statusbar.tipZoomIn":"확대","DE.Views.Statusbar.tipZoomOut":"축소","DE.Views.Statusbar.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","DE.Views.Statusbar.txtPages":"페이지","DE.Views.Statusbar.txtParagraphs":"단락","DE.Views.Statusbar.txtSpaces":"공백이 있는 기호","DE.Views.Statusbar.txtSymbols":"기호","DE.Views.Statusbar.txtWordCount":"문자수","DE.Views.Statusbar.txtWords":"단어","DE.Views.StyleTitleDialog.textHeader":"새 스타일 만들기","DE.Views.StyleTitleDialog.textNextStyle":"다음 단락 스타일","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.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":"열 삭제","DE.Views.TableSettings.deleteRowText":"행 삭제","DE.Views.TableSettings.deleteTableText":"테이블 삭제","DE.Views.TableSettings.insertColumnLeftText":"왼쪽에 열 삽입","DE.Views.TableSettings.insertColumnRightText":"오른쪽 열 삽입","DE.Views.TableSettings.insertRowAboveText":"위에 행 삽입","DE.Views.TableSettings.insertRowBelowText":"아래에 행 삽입","DE.Views.TableSettings.mergeCellsText":"셀 병합","DE.Views.TableSettings.selectCellText":"셀 선택","DE.Views.TableSettings.selectColumnText":"열 선택","DE.Views.TableSettings.selectRowText":"행 선택","DE.Views.TableSettings.selectTableText":"표 선택","DE.Views.TableSettings.splitCellsText":"셀 분할 ...","DE.Views.TableSettings.splitCellTitleText":"셀 분할","DE.Views.TableSettings.strRepeatRow":"각 페이지 상단의 헤더 행으로 반복","DE.Views.TableSettings.textAddFormula":"수식추가","DE.Views.TableSettings.textAdvanced":"고급 설정 표시","DE.Views.TableSettings.textAutofit":"내용에 맞게 자동 조정","DE.Views.TableSettings.textBackColor":"배경색","DE.Views.TableSettings.textBanded":"줄무늬","DE.Views.TableSettings.textBorderColor":"색상","DE.Views.TableSettings.textBorders":"테두리 스타일","DE.Views.TableSettings.textCellSize":"행/열 크기","DE.Views.TableSettings.textColumns":"열","DE.Views.TableSettings.textConvert":"표를 문자로 변환","DE.Views.TableSettings.textDistributeCols":"열 너비 균등 분배","DE.Views.TableSettings.textDistributeRows":"행 배포","DE.Views.TableSettings.textEdit":"행 및 열","DE.Views.TableSettings.textEmptyTemplate":"템플릿 없음","DE.Views.TableSettings.textFirst":"처음","DE.Views.TableSettings.textHeader":"머리글","DE.Views.TableSettings.textHeight":"높이","DE.Views.TableSettings.textLast":"마지막","DE.Views.TableSettings.textRows":"행","DE.Views.TableSettings.textSelectBorders":"위에서 선택한 스타일 적용을 변경하려는 테두리 선택","DE.Views.TableSettings.textTemplate":"템플릿에서 선택","DE.Views.TableSettings.textTotal":"요약 행","DE.Views.TableSettings.textWidth":"너비","DE.Views.TableSettings.tipAll":"바깥쪽 테두리 및 안쪽 테두리","DE.Views.TableSettings.tipBottom":"바깥 아래쪽 테두리","DE.Views.TableSettings.tipInner":"내부 라인 만 설정","DE.Views.TableSettings.tipInnerHor":"안쪽 가로 테두리","DE.Views.TableSettings.tipInnerVert":"세로 내부 선만 설정","DE.Views.TableSettings.tipLeft":"바깥 왼쪽 테두리","DE.Views.TableSettings.tipNone":"테두리 없음 설정","DE.Views.TableSettings.tipOuter":"바깥쪽 테두리","DE.Views.TableSettings.tipRight":"바깥 오른쪽 테두리","DE.Views.TableSettings.tipTop":"바깥 위쪽 테두리","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"경계 및 선이 있는 표","DE.Views.TableSettings.txtGroupTable_Custom":"사용자 정의","DE.Views.TableSettings.txtGroupTable_Grid":"격자 테이블","DE.Views.TableSettings.txtGroupTable_List":"표 목록","DE.Views.TableSettings.txtGroupTable_Plain":"일반 테이블","DE.Views.TableSettings.txtNoBorders":"테두리 없음","DE.Views.TableSettings.txtTable_Accent":"강조","DE.Views.TableSettings.txtTable_Bordered":"경계가 있는","DE.Views.TableSettings.txtTable_BorderedAndLined":"경계 및 선포함","DE.Views.TableSettings.txtTable_Colorful":"화려한","DE.Views.TableSettings.txtTable_Dark":"어두운","DE.Views.TableSettings.txtTable_GridTable":"그리드 테이블","DE.Views.TableSettings.txtTable_Light":"밝은","DE.Views.TableSettings.txtTable_Lined":"선으로 채워진","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.textAltTitle":"제목","DE.Views.TableSettingsAdvanced.textAnchorText":"텍스트","DE.Views.TableSettingsAdvanced.textAutofit":"내용에 맞게 자동으로 크기 조정","DE.Views.TableSettingsAdvanced.textBackColor":"셀 배경","DE.Views.TableSettingsAdvanced.textBelow":"아래","DE.Views.TableSettingsAdvanced.textBorderColor":"테두리 색상","DE.Views.TableSettingsAdvanced.textBorderDesc":"다이어그램을 클릭하거나 단추를 사용하여 테두리를 선택하고 선택한 스타일을 적용","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"테두리 및 배경","DE.Views.TableSettingsAdvanced.textBorderWidth":"테두리 굵기","DE.Views.TableSettingsAdvanced.textBottom":"하단","DE.Views.TableSettingsAdvanced.textCellOptions":"셀 옵션","DE.Views.TableSettingsAdvanced.textCellProps":"셀","DE.Views.TableSettingsAdvanced.textCellSize":"셀 크기","DE.Views.TableSettingsAdvanced.textCenter":"Center","DE.Views.TableSettingsAdvanced.textCenterTooltip":"Center","DE.Views.TableSettingsAdvanced.textCheckMargins":"기본 여백 사용","DE.Views.TableSettingsAdvanced.textDefaultMargins":"기본 셀 여백","DE.Views.TableSettingsAdvanced.textDistance":"텍스트로부터의 거리","DE.Views.TableSettingsAdvanced.textHorizontal":"수평","DE.Views.TableSettingsAdvanced.textIndLeft":"왼쪽에서 들여 쓰기","DE.Views.TableSettingsAdvanced.textLeft":"왼쪽","DE.Views.TableSettingsAdvanced.textLeftTooltip":"왼쪽","DE.Views.TableSettingsAdvanced.textMargin":"여백","DE.Views.TableSettingsAdvanced.textMargins":"셀 여백","DE.Views.TableSettingsAdvanced.textMeasure":"측정","DE.Views.TableSettingsAdvanced.textMove":"텍스트가있는 객체 이동","DE.Views.TableSettingsAdvanced.textOnlyCells":"선택한 셀만 해당","DE.Views.TableSettingsAdvanced.textOptions":"옵션","DE.Views.TableSettingsAdvanced.textOverlap":"중복 허용","DE.Views.TableSettingsAdvanced.textPage":"페이지","DE.Views.TableSettingsAdvanced.textPosition":"위치","DE.Views.TableSettingsAdvanced.textPrefWidth":"기본 너비","DE.Views.TableSettingsAdvanced.textPreview":"미리보기","DE.Views.TableSettingsAdvanced.textRelative":"기준","DE.Views.TableSettingsAdvanced.textRight":"오른쪽","DE.Views.TableSettingsAdvanced.textRightOf":"오른쪽 기준점","DE.Views.TableSettingsAdvanced.textRightTooltip":"오른쪽","DE.Views.TableSettingsAdvanced.textTable":"표","DE.Views.TableSettingsAdvanced.textTableBackColor":"표 배경","DE.Views.TableSettingsAdvanced.textTablePosition":"표 위치","DE.Views.TableSettingsAdvanced.textTableSize":"표 크기","DE.Views.TableSettingsAdvanced.textTitle":"표 - 고급 설정","DE.Views.TableSettingsAdvanced.textTop":"위","DE.Views.TableSettingsAdvanced.textVertical":"세로","DE.Views.TableSettingsAdvanced.textWidth":"너비","DE.Views.TableSettingsAdvanced.textWidthSpaces":"너비 및 공백","DE.Views.TableSettingsAdvanced.textWrap":"텍스트 줄 바꿈","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"인라인 테이블","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"흐름표","DE.Views.TableSettingsAdvanced.textWrappingStyle":"배치 스타일","DE.Views.TableSettingsAdvanced.textWrapText":"텍스트 줄 바꾸기","DE.Views.TableSettingsAdvanced.tipAll":"바깥쪽 테두리 및 안쪽 테두리","DE.Views.TableSettingsAdvanced.tipCellAll":"내부 셀만 테두리 설정","DE.Views.TableSettingsAdvanced.tipCellInner":"내부 셀만 수직선과 수평선 설정","DE.Views.TableSettingsAdvanced.tipCellOuter":"내부 셀 전용 외곽선 설정","DE.Views.TableSettingsAdvanced.tipInner":"내부 라인 만 설정","DE.Views.TableSettingsAdvanced.tipNone":"테두리 없음 설정","DE.Views.TableSettingsAdvanced.tipOuter":"바깥쪽 테두리","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"모든 내부 셀에 테두리 및 테두리 설정","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"내부 셀의 외부 테두리 및 수직 및 수평선 설정","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"내부 셀에 대한 테이블 바깥 쪽 테두리 및 바깥 쪽 테두리 설정","DE.Views.TableSettingsAdvanced.txtCm":"센티미터","DE.Views.TableSettingsAdvanced.txtInch":"인치","DE.Views.TableSettingsAdvanced.txtNoBorders":"테두리 없음","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.strTransparency":"투명도","DE.Views.TextArtSettings.strType":"유형","DE.Views.TextArtSettings.textAngle":"각도","DE.Views.TextArtSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.","DE.Views.TextArtSettings.textColor":"색상 채우기","DE.Views.TextArtSettings.textDirection":"방향","DE.Views.TextArtSettings.textGradient":"그라데이션 포인트","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":"선 없음","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.capBtnHand":"손바닥 도구","DE.Views.Toolbar.capBtnHyphenation":"하이픈","DE.Views.Toolbar.capBtnInsChart":"차트","DE.Views.Toolbar.capBtnInsControls":"콘텐츠 제어","DE.Views.Toolbar.capBtnInsDropcap":"드롭 캡","DE.Views.Toolbar.capBtnInsEquation":"수식","DE.Views.Toolbar.capBtnInsHeader":"머리말/꼬리말","DE.Views.Toolbar.capBtnInsPagebreak":"나누기","DE.Views.Toolbar.capBtnInsShape":"도형","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"기호","DE.Views.Toolbar.capBtnInsTable":"테이블","DE.Views.Toolbar.capBtnInsTextart":"텍스트 아트","DE.Views.Toolbar.capBtnInsTextbox":"텍스트 상자","DE.Views.Toolbar.capBtnInsTextFromFile":"파일에서 텍스트 삽입","DE.Views.Toolbar.capBtnLineNumbers":"행번호","DE.Views.Toolbar.capBtnMargins":"여백","DE.Views.Toolbar.capBtnPageColor":"페이지 색상","DE.Views.Toolbar.capBtnPageOrient":"방향","DE.Views.Toolbar.capBtnPageSize":"크기","DE.Views.Toolbar.capBtnSelect":"선택","DE.Views.Toolbar.capBtnWatermark":"워터마크","DE.Views.Toolbar.capColorScheme":"색상","DE.Views.Toolbar.capImgAlign":"정렬","DE.Views.Toolbar.capImgBackward":"뒤로 보내기","DE.Views.Toolbar.capImgForward":"앞으로 보내기","DE.Views.Toolbar.capImgGroup":"그룹","DE.Views.Toolbar.capImgWrapping":"포장","DE.Views.Toolbar.capShapesMerge":"도형 병합","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.mniInsertSSE":"스프레드시트 삽입","DE.Views.Toolbar.mniLowerCase":"소문자","DE.Views.Toolbar.mniRemoveFooter":"바닥글 삭제","DE.Views.Toolbar.mniRemoveHeader":"머리말 제거","DE.Views.Toolbar.mniSentenceCase":"문장의 첫 글자를 대문자로","DE.Views.Toolbar.mniTextFromLocalFile":"로컬 파일에서 텍스트 삽입","DE.Views.Toolbar.mniTextFromStorage":"저장소 파일에서 텍스트 삽입","DE.Views.Toolbar.mniTextFromURL":"URL 파일에서 텍스트 삽입","DE.Views.Toolbar.mniTextToTable":"문자를 테이블로 변환","DE.Views.Toolbar.mniToggleCase":"대/소문자 전환","DE.Views.Toolbar.mniUpperCase":"대문자","DE.Views.Toolbar.strMenuNoFill":"채우기 없음","DE.Views.Toolbar.textAddSpaceAfter":"문단 뒤 간격 추가","DE.Views.Toolbar.textAddSpaceBefore":"문단 앞 간격 추가","DE.Views.Toolbar.textAllBorders":"모든 테두리","DE.Views.Toolbar.textAlpha":"소문자 알파","DE.Views.Toolbar.textAuto":"자동","DE.Views.Toolbar.textAutoColor":"자동","DE.Views.Toolbar.textBetta":"소문자 베타","DE.Views.Toolbar.textBlackHeart":"검은색 하트","DE.Views.Toolbar.textBold":"Bold","DE.Views.Toolbar.textBordersColor":"테두리 색","DE.Views.Toolbar.textBordersStyle":"테두리 스타일","DE.Views.Toolbar.textBottom":"아래쪽 : ","DE.Views.Toolbar.textBottomBorders":"아래쪽 테두리","DE.Views.Toolbar.textBullet":"글머리 기호","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.textCopyright":"저작권 표시","DE.Views.Toolbar.textCustomHyphen":"붙임표 옵션","DE.Views.Toolbar.textCustomLineNumbers":"행 번호 옵션","DE.Views.Toolbar.textDateControl":"날짜","DE.Views.Toolbar.textDegree":"도수 기호","DE.Views.Toolbar.textDelta":"소문자 델타","DE.Views.Toolbar.textDirLtr":"왼쪽에서 오른쪽으로","DE.Views.Toolbar.textDirRtl":"오른쪽에서 왼쪽으로","DE.Views.Toolbar.textDivision":"나누기 기호","DE.Views.Toolbar.textDollar":"달러 기호","DE.Views.Toolbar.textDropdownControl":"드롭 다운 메뉴","DE.Views.Toolbar.textEditMode":"PDF 편집","DE.Views.Toolbar.textEditWatermark":"사용자 정의 워터마크","DE.Views.Toolbar.textEuro":"유로화","DE.Views.Toolbar.textEvenPage":"짝수 페이지","DE.Views.Toolbar.textGreaterEqual":"크거나 같음","DE.Views.Toolbar.textIndAfter":"이후 들여쓰기","DE.Views.Toolbar.textIndBefore":"이전 들여쓰기","DE.Views.Toolbar.textIndLeft":"왼쪽 들여쓰기","DE.Views.Toolbar.textIndRight":"오른쪽 들여쓰기","DE.Views.Toolbar.textInfinity":"무한대","DE.Views.Toolbar.textInMargin":"여백 있음","DE.Views.Toolbar.textInsColumnBreak":"열 나누기 삽입","DE.Views.Toolbar.textInsertPageCount":"페이지 수 삽입","DE.Views.Toolbar.textInsertPageNumber":"페이지 번호 삽입","DE.Views.Toolbar.textInsideBorders":"안쪽 테두리","DE.Views.Toolbar.textInsideHorBorders":"내부 가로 테두리","DE.Views.Toolbar.textInsideVertBorders":"내부 세로 테두리","DE.Views.Toolbar.textInsPageBreak":"페이지 나누기 삽입","DE.Views.Toolbar.textInsSectionBreak":"섹션 나누기 삽입","DE.Views.Toolbar.textInText":"텍스트에서","DE.Views.Toolbar.textItalic":"기울임꼴","DE.Views.Toolbar.textLandscape":"가로","DE.Views.Toolbar.textLeft":"왼쪽 : ","DE.Views.Toolbar.textLeftBorders":"왼쪽 테두리","DE.Views.Toolbar.textLessEqual":"보다 작거나 같음","DE.Views.Toolbar.textLetterPi":"소문자 파이","DE.Views.Toolbar.textLineSpaceOptions":"줄 간격 옵션","DE.Views.Toolbar.textListSettings":"목록 설정","DE.Views.Toolbar.textMarginsLast":"마지막 사용자 정의","DE.Views.Toolbar.textMarginsModerate":"보통","DE.Views.Toolbar.textMarginsNarrow":"좁게","DE.Views.Toolbar.textMarginsNormal":"표준","DE.Views.Toolbar.textMarginsWide":"넓게","DE.Views.Toolbar.textMoreSymbols":"더 많은 기호","DE.Views.Toolbar.textNewColor":"새로운 사용자 정의 색 추가","DE.Views.Toolbar.textNextPage":"다음 페이지","DE.Views.Toolbar.textNoBorders":"테두리 없음","DE.Views.Toolbar.textNoHighlight":"강조 표시되지 않음","DE.Views.Toolbar.textNone":"없음","DE.Views.Toolbar.textNotEqualTo":"같지 않음","DE.Views.Toolbar.textOddPage":"홀수 페이지","DE.Views.Toolbar.textOneHalf":"2분의 1","DE.Views.Toolbar.textOneQuarter":"4분의 1","DE.Views.Toolbar.textOutBorders":"바깥쪽 테두리","DE.Views.Toolbar.textPageMarginsCustom":"사용자 정의 여백","DE.Views.Toolbar.textPageSizeCustom":"사용자 정의 페이지 크기","DE.Views.Toolbar.textPictureControl":"그림","DE.Views.Toolbar.textPlainControl":"일반 텍스트","DE.Views.Toolbar.textPlusMinus":"플러스 마이너스 기호","DE.Views.Toolbar.textPortrait":"세로","DE.Views.Toolbar.textRegistered":"등록된 서명","DE.Views.Toolbar.textRemoveControl":"콘텐츠 제어 삭제","DE.Views.Toolbar.textRemSpaceAfter":"문단 뒤 간격 제거","DE.Views.Toolbar.textRemSpaceBefore":"문단 앞 간격 제거","DE.Views.Toolbar.textRemWatermark":"워터마크 제거","DE.Views.Toolbar.textRestartEachPage":"각 페이지 다시 시작","DE.Views.Toolbar.textRestartEachSection":"각 섹션 다시 시작","DE.Views.Toolbar.textRichControl":"리치 텍스트","DE.Views.Toolbar.textRight":"오른쪽 : ","DE.Views.Toolbar.textRightBorders":"오른쪽 테두리","DE.Views.Toolbar.textSection":"섹션 기호","DE.Views.Toolbar.textShapesCombine":"결합","DE.Views.Toolbar.textShapesFragment":"조각","DE.Views.Toolbar.textShapesIntersect":"교차","DE.Views.Toolbar.textShapesSubstract":"빼기","DE.Views.Toolbar.textShapesUnion":"병합","DE.Views.Toolbar.textSmile":"환한 미소","DE.Views.Toolbar.textSpaceAfter":"단락 뒤 간격","DE.Views.Toolbar.textSpaceBefore":"단락 앞 간격","DE.Views.Toolbar.textSquareRoot":"제곱근","DE.Views.Toolbar.textStrikeout":"취소선","DE.Views.Toolbar.textStyleMenuDelete":"스타일 삭제","DE.Views.Toolbar.textStyleMenuDeleteAll":"모든 사용자 정의 스타일 삭제","DE.Views.Toolbar.textStyleMenuNew":"선택 항목의 새 스타일","DE.Views.Toolbar.textStyleMenuRestore":"기본값으로 복원","DE.Views.Toolbar.textStyleMenuRestoreAll":"모두 기본 스타일로 복원","DE.Views.Toolbar.textStyleMenuUpdate":"선택 항목에서 업데이트","DE.Views.Toolbar.textSubscript":"아래 첨자","DE.Views.Toolbar.textSuperscript":"위 첨자","DE.Views.Toolbar.textSuppressForCurrentParagraph":"이 단락에서 해제","DE.Views.Toolbar.textTabCollaboration":"협업","DE.Views.Toolbar.textTabDraw":"그리기","DE.Views.Toolbar.textTabFile":"파일","DE.Views.Toolbar.textTabHeaderFooter":"머리말 및 꼬리말","DE.Views.Toolbar.textTabHome":"홈","DE.Views.Toolbar.textTabInsert":"삽입","DE.Views.Toolbar.textTabLayout":"레이아웃","DE.Views.Toolbar.textTabLinks":"참조","DE.Views.Toolbar.textTabProtect":"보호","DE.Views.Toolbar.textTabReview":"검토","DE.Views.Toolbar.textTabView":"보기","DE.Views.Toolbar.textTilde":"물결표","DE.Views.Toolbar.textTitleError":"오류","DE.Views.Toolbar.textToCurrent":"현재 위치로","DE.Views.Toolbar.textTop":"\b위쪽 : ","DE.Views.Toolbar.textTopBorders":"위쪽 테두리","DE.Views.Toolbar.textTradeMark":"상표 표시","DE.Views.Toolbar.textUnderline":"밑줄","DE.Views.Toolbar.textYen":"엔화","DE.Views.Toolbar.tipAlignCenter":"가운데 정렬","DE.Views.Toolbar.tipAlignJust":"균등분할","DE.Views.Toolbar.tipAlignLeft":"왼쪽 정렬","DE.Views.Toolbar.tipAlignRight":"오른쪽 정렬","DE.Views.Toolbar.tipBack":"뒤로","DE.Views.Toolbar.tipBlankPage":"빈 페이지 삽입","DE.Views.Toolbar.tipBorders":"테두리","DE.Views.Toolbar.tipChangeCase":"대소문자 변경","DE.Views.Toolbar.tipChangeChart":"차트 유형 변경","DE.Views.Toolbar.tipClearStyle":"스타일 지우기","DE.Views.Toolbar.tipColorSchemas":"색상 구성 변경","DE.Views.Toolbar.tipColumns":"열 삽입","DE.Views.Toolbar.tipControls":"콘텐츠 컨트롤 추가","DE.Views.Toolbar.tipCopy":"복사","DE.Views.Toolbar.tipCopyStyle":"스타일 복사","DE.Views.Toolbar.tipCut":"잘라 내기","DE.Views.Toolbar.tipDecFont":"글꼴 크기 작게","DE.Views.Toolbar.tipDecPrLeft":"들여쓰기 줄이기","DE.Views.Toolbar.tipDownload":"파일 다운로드","DE.Views.Toolbar.tipDropCap":"드롭 캡 삽입","DE.Views.Toolbar.tipEditMode":"현재 파일을 편집합니다.
페이지가 새로 고쳐집니다.","DE.Views.Toolbar.tipFontColor":"글꼴 색","DE.Views.Toolbar.tipFontName":"글꼴","DE.Views.Toolbar.tipFontSize":"글꼴 크기","DE.Views.Toolbar.tipHandTool":"손 도구","DE.Views.Toolbar.tipHighlightColor":"색상 강조 표시","DE.Views.Toolbar.tipHyphenation":"하이픈 연결 변경","DE.Views.Toolbar.tipImgAlign":"오브젝트 정렬","DE.Views.Toolbar.tipImgGroup":"그룹 오브젝트","DE.Views.Toolbar.tipImgWrapping":"텍스트 줄 바꾸기","DE.Views.Toolbar.tipIncFont":"증가 글꼴 크기","DE.Views.Toolbar.tipIncPrLeft":"들여쓰기 늘리기","DE.Views.Toolbar.tipInsertChart":"차트 삽입","DE.Views.Toolbar.tipInsertEquation":"수식 삽입","DE.Views.Toolbar.tipInsertHorizontalText":"가로 텍스트 상자 삽입","DE.Views.Toolbar.tipInsertNum":"페이지 번호 삽입","DE.Views.Toolbar.tipInsertShape":"도형 삽입","DE.Views.Toolbar.tipInsertSmartArt":"SmartArt 삽입","DE.Views.Toolbar.tipInsertSymbol":"기호 삽입","DE.Views.Toolbar.tipInsertTable":"표 삽입","DE.Views.Toolbar.tipInsertText":"텍스트 상자 삽입","DE.Views.Toolbar.tipInsertTextArt":"텍스트 아트 삽입","DE.Views.Toolbar.tipInsertVerticalText":"세로 텍스트 상자 삽입","DE.Views.Toolbar.tipLineNumbers":"행 번호 표시","DE.Views.Toolbar.tipLineSpace":"단락 줄 간격","DE.Views.Toolbar.tipMailRecepients":"편지 병합","DE.Views.Toolbar.tipMarkers":"Bullets","DE.Views.Toolbar.tipMarkersArrow":"화살 글머리 기호","DE.Views.Toolbar.tipMarkersCheckmark":"체크 표시 글머리 기호","DE.Views.Toolbar.tipMarkersDash":"대시 글머리 기호","DE.Views.Toolbar.tipMarkersFRhombus":"채워진 마름모 글머리 기호","DE.Views.Toolbar.tipMarkersFRound":"채워진 원형 글머리 기호","DE.Views.Toolbar.tipMarkersFSquare":"채워진 사각형 글머리 기호","DE.Views.Toolbar.tipMarkersHRound":"빈 원형 글머리 기호","DE.Views.Toolbar.tipMarkersStar":"별 글머리 기호","DE.Views.Toolbar.tipMultiLevelArticl":"다단계 번호가 부여된 항목","DE.Views.Toolbar.tipMultiLevelChapter":"다단계 번호가 부여된 챕터","DE.Views.Toolbar.tipMultiLevelHeadings":"다단계 번호가 부여된 제목","DE.Views.Toolbar.tipMultiLevelHeadVarious":"다단계의 다양한 번호가 매겨진 제목","DE.Views.Toolbar.tipMultiLevelNumbered":"멀티-레벨 번호 글머리 기호","DE.Views.Toolbar.tipMultilevels":"다중 레벨 목록","DE.Views.Toolbar.tipMultiLevelSymbols":"멀티-레벨 기호 글머리 기호","DE.Views.Toolbar.tipMultiLevelVarious":"멀티-레벨 여러 번호 글머리 기호","DE.Views.Toolbar.tipNumbers":"번호 매기기","DE.Views.Toolbar.tipPageBreak":"페이지 또는 섹션 나누기 삽입","DE.Views.Toolbar.tipPageColor":"페이지 색 변경","DE.Views.Toolbar.tipPageMargins":"페이지 여백","DE.Views.Toolbar.tipPageOrient":"페이지 방향","DE.Views.Toolbar.tipPageSize":"페이지 크기","DE.Views.Toolbar.tipParagraphStyle":"단락 스타일","DE.Views.Toolbar.tipPaste":"붙여 넣기","DE.Views.Toolbar.tipPrColor":"단락 배경색","DE.Views.Toolbar.tipPrint":"인쇄","DE.Views.Toolbar.tipPrintQuick":"빠른 인쇄","DE.Views.Toolbar.tipRedo":"다시 실행","DE.Views.Toolbar.tipReplace":"바꾸기","DE.Views.Toolbar.tipSave":"저장","DE.Views.Toolbar.tipSaveCoauth":"다른 사용자가 볼 수 있도록 변경 사항을 저장하십시오.","DE.Views.Toolbar.tipSelectAll":"모두 선택","DE.Views.Toolbar.tipSelectTool":"도구 선택","DE.Views.Toolbar.tipSendBackward":"뒤로 보내기","DE.Views.Toolbar.tipSendForward":"앞으로 보내기","DE.Views.Toolbar.tipShapesMerge":"도형 병합","DE.Views.Toolbar.tipShowHiddenChars":"인쇄되지 않는 문자","DE.Views.Toolbar.tipSynchronize":"다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.","DE.Views.Toolbar.tipTextDir":"텍스트 방향","DE.Views.Toolbar.tipTextFromFile":"파일에서 텍스트 삽입","DE.Views.Toolbar.tipUndo":"실행 취소","DE.Views.Toolbar.tipWatermark":"워터마크 수정","DE.Views.Toolbar.txtAutoText":"자동","DE.Views.Toolbar.txtDistribHor":"수평 분포","DE.Views.Toolbar.txtDistribVert":"수직 분포","DE.Views.Toolbar.txtGroupBulletDoc":"문서 글머리 기호","DE.Views.Toolbar.txtGroupBulletLib":"글머리 기호 라이브러리","DE.Views.Toolbar.txtGroupMultiDoc":"현재 문서의 목록","DE.Views.Toolbar.txtGroupMultiLib":"목록 라이브러리","DE.Views.Toolbar.txtGroupNumDoc":"문서 번호 형식","DE.Views.Toolbar.txtGroupNumLib":"번호부여 라이브러리","DE.Views.Toolbar.txtGroupRecent":"최근 사용된","DE.Views.Toolbar.txtMarginAlign":"여백정렬","DE.Views.Toolbar.txtObjectsAlign":"선택한 개체 정렬","DE.Views.Toolbar.txtPageAlign":"페이지 정렬","DE.Views.ViewTab.textAlwaysShowToolbar":"항상 도구 모음 표시","DE.Views.ViewTab.textDarkDocument":"어두운 문서","DE.Views.ViewTab.textFill":"채우기","DE.Views.ViewTab.textFitToPage":"페이지에 맞춤","DE.Views.ViewTab.textFitToWidth":"너비에 맞춤","DE.Views.ViewTab.textInterfaceTheme":"인터페이스 테마","DE.Views.ViewTab.textLeftMenu":"왼쪽 패널","DE.Views.ViewTab.textLine":"선","DE.Views.ViewTab.textMacros":"매크로","DE.Views.ViewTab.textNavigation":"내비게이션","DE.Views.ViewTab.textOutline":"제목","DE.Views.ViewTab.textPauseMacro":"녹음 일시 정지","DE.Views.ViewTab.textRecMacro":"매크로 기록","DE.Views.ViewTab.textResumeMacro":"녹음 재개","DE.Views.ViewTab.textRightMenu":"오른쪽 패널","DE.Views.ViewTab.textRulers":"자","DE.Views.ViewTab.textStatusBar":"상태 바","DE.Views.ViewTab.textStopMacro":"녹음 중지","DE.Views.ViewTab.textTabStyle":"탭 스타일","DE.Views.ViewTab.textZoom":"확대/축소","DE.Views.ViewTab.tipDarkDocument":"어두운 문서","DE.Views.ViewTab.tipFitToPage":"페이지에 맞춤","DE.Views.ViewTab.tipFitToWidth":"너비에 맞춤","DE.Views.ViewTab.tipHeadings":"제목","DE.Views.ViewTab.tipInterfaceTheme":"인터페이스 테마","DE.Views.ViewTab.tipMacros":"매크로","DE.Views.ViewTab.tipPauseMacro":"녹음 일시 정지","DE.Views.ViewTab.tipRecMacro":"매크로 기록","DE.Views.ViewTab.tipResumeMacro":"녹음 재개","DE.Views.ViewTab.tipStopMacro":"녹음 중지","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 +{"Common.Controllers.Chat.notcriticalErrorTitle":"경고","Common.Controllers.Desktop.hintBtnHome":"메인 창 표시","Common.Controllers.Desktop.itemCreateFromTemplate":"템플릿에서 만들기","Common.Controllers.ExternalDiagramEditor.textAnonymous":"익명","Common.Controllers.ExternalDiagramEditor.textClose":"닫기","Common.Controllers.ExternalDiagramEditor.warningText":"다른 사용자가 편집 중이므로 개체를 사용할 수 없습니다.","Common.Controllers.ExternalDiagramEditor.warningTitle":"경고","Common.Controllers.ExternalLinks.textAddExternalData":"외부 소스로의 링크가 추가되었습니다. 데이터 탭에서 이러한 링크를 업데이트할 수 있습니다.","Common.Controllers.ExternalLinks.textDontUpdate":"업데이트하지 않음","Common.Controllers.ExternalLinks.textUpdate":"업데이트","Common.Controllers.ExternalLinks.txtErrorExternalLink":"오류: 업데이트에 실패했습니다.","Common.Controllers.ExternalLinks.warnUpdateExternalData":"이 통합 문서에는 하나 이상의 안전하지 않을 수 있는 외부 소스로의 링크가 포함되어 있습니다.
만약 이 링크를 신뢰한다면 최신 데이터를 얻기 위해 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"이 문서에는 안전하지 않을 수 있는 하나 이상의 외부 원본에 대한 연결이 포함되어 있습니다.
링크를 신뢰하는 경우 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"이 프레젠테이션에는 안전하지 않을 수 있는 하나 이상의 외부 원본에 대한 연결이 포함되어 있습니다.
링크를 신뢰하는 경우 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.ExternalMergeEditor.textAnonymous":"익명","Common.Controllers.ExternalMergeEditor.textClose":"닫기","Common.Controllers.ExternalMergeEditor.warningText":"다른 사용자가 편집 중이므로 개체를 사용할 수 없습니다.","Common.Controllers.ExternalMergeEditor.warningTitle":"경고","Common.Controllers.ExternalOleEditor.textAnonymous":"익명사용자","Common.Controllers.ExternalOleEditor.textClose":"닫기","Common.Controllers.ExternalOleEditor.warningText":"다른 사용자가 편집 중이므로 개체를 사용할 수 없습니다.","Common.Controllers.ExternalOleEditor.warningTitle":"경고","Common.Controllers.History.notcriticalErrorTitle":"경고","Common.Controllers.History.txtErrorLoadHistory":"기록 불러오기에 실패했습니다","Common.Controllers.Plugins.helpMoveMacros":"매크로 작업을 시작하려면 보기 탭으로 전환하세요.","Common.Controllers.Plugins.helpMoveMacrosHeader":"이동된 매크로 버튼","Common.Controllers.Plugins.helpUseMacros":"매크로 버튼은 여기에 있습니다","Common.Controllers.Plugins.helpUseMacrosHeader":"매크로 접근 권한이 업데이트되었습니다","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"플러그인이 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 이곳에서 사용할 수 있습니다.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}이(가) 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 여기에서 사용할 수 있습니다.","Common.Controllers.Plugins.textRunInstalledPlugins":"설치된 플러그인 실행","Common.Controllers.Plugins.textRunPlugin":"플러그인 실행","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"문서를 비교하기 위해 추적된 모든 변경 내역이 수락된 것으로 간주됩니다. 계속하시겠습니까?","Common.Controllers.ReviewChanges.textAtLeast":"적어도","Common.Controllers.ReviewChanges.textAuto":"auto","Common.Controllers.ReviewChanges.textBaseline":"Baseline","Common.Controllers.ReviewChanges.textBold":"Bold","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.textDeleted":" 삭제됨 : ","Common.Controllers.ReviewChanges.textDStrikeout":"이중 취소선","Common.Controllers.ReviewChanges.textEquation":"수식","Common.Controllers.ReviewChanges.textExact":"정확히","Common.Controllers.ReviewChanges.textFirstLine":"첫 번째 줄","Common.Controllers.ReviewChanges.textFontSize":"글자 크기","Common.Controllers.ReviewChanges.textFormatted":"서식 지정 됨","Common.Controllers.ReviewChanges.textHighlight":"색상 강조 표시","Common.Controllers.ReviewChanges.textImage":"이미지","Common.Controllers.ReviewChanges.textIndentLeft":"왼쪽 들여쓰기","Common.Controllers.ReviewChanges.textIndentRight":"오른쪽 들여쓰기","Common.Controllers.ReviewChanges.textInserted":" 삽입 됨 : ","Common.Controllers.ReviewChanges.textItalic":"기울임꼴","Common.Controllers.ReviewChanges.textJustify":"양쪽 맞춤","Common.Controllers.ReviewChanges.textKeepLines":"현재 단락을 나누지 않음","Common.Controllers.ReviewChanges.textKeepNext":"현재 단락과 다음 단락을 항상 같은 페이지에 배치","Common.Controllers.ReviewChanges.textLeft":"왼쪽 맞춤","Common.Controllers.ReviewChanges.textLineSpacing":"줄 간격 :","Common.Controllers.ReviewChanges.textMultiple":"배수","Common.Controllers.ReviewChanges.textNoBreakBefore":"이전에 페이지 나누기 없음","Common.Controllers.ReviewChanges.textNoContextual":"같은 스타일의 단락 사이 간격 추가","Common.Controllers.ReviewChanges.textNoKeepLines":"현재 단락을 나누지 마십시오","Common.Controllers.ReviewChanges.textNoKeepNext":"현재 단락과 다음 단락을 항상 같은 페이지에 배치하지 마십시오","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":"단락이 삽입됨","Common.Controllers.ReviewChanges.textParaMoveFromDown":"아래로 이동됨","Common.Controllers.ReviewChanges.textParaMoveFromUp":"위로 이동됨","Common.Controllers.ReviewChanges.textParaMoveTo":"이동:","Common.Controllers.ReviewChanges.textPosition":"위치","Common.Controllers.ReviewChanges.textRight":"오른쪽 정렬","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":"취소선","Common.Controllers.ReviewChanges.textSubScript":"아래 첨자","Common.Controllers.ReviewChanges.textSuperScript":"위 첨자","Common.Controllers.ReviewChanges.textTableChanged":"표 설정이 변경됨","Common.Controllers.ReviewChanges.textTableRowsAdd":"표 행 삽입됨","Common.Controllers.ReviewChanges.textTableRowsDel":"표 행 삭제됨","Common.Controllers.ReviewChanges.textTabs":"탭 변경","Common.Controllers.ReviewChanges.textTitleComparison":"비교 설정","Common.Controllers.ReviewChanges.textUnderline":"밑줄","Common.Controllers.ReviewChanges.textUrl":"문서의 URL 링크 붙여 넣기","Common.Controllers.ReviewChanges.textWidow":"개별 제어","Common.Controllers.ReviewChanges.textWord":"단어 수준","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"표의 맨 아래에 새로운 행 추가.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"선택한 텍스트 조각에 제목 1의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"선택한 텍스트 조각에 제목 2의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"선택한 텍스트 조각에 제목 3의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"선택한 텍스트 조각에서 순서 없는 글머리 기호 목록을 만들거나 새 목록을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"키보드 화살표를 사용하여 선택한 객체를 크게 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"키보드 화살표를 사용하여 선택한 객체를 왼쪽으로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"키보드 화살표를 사용하여 선택한 객체를 오른쪽으로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"키보드 화살표를 사용하여 선택한 객체를 한 단계 위로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBold":"선택한 텍스트 조각의 글꼴을 기본보다 더 어둡고 굵게 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"문단을 중앙 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"양식에서 다음 콤보 상자 옵션을 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"양식에서 이전 콤보 상자 옵션을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"현재 문서 창을 닫습니다.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"메뉴 또는 모달 창을 닫습니다. 댓글 및 검토 변경 사항이 있는 팝업 및 풍선을 재설정합니다. 표 그리기 및 지우기 모드를 재설정합니다. 텍스트 드래그 앤 드롭을 재설정합니다. 마커 선택 모드를 재설정합니다. 서식 복사 모드를 재설정합니다. 도형 선택을 해제합니다. 도형 추가 모드를 재설정합니다. 머리글/바닥글을 종료합니다. 양식 작성을 종료합니다.","Common.Controllers.Shortcuts.txtDescriptionCopy":"선택한 텍스트 조각을 컴퓨터 클립보드 메모리로 보냅니다. 복사한 텍스트는 나중에 같은 문서의 다른 위치, 다른 문서 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"현재 편집 중인 텍스트의 선택한 부분에서 서식을 복사합니다. 복사한 서식은 나중에 같은 문서의 다른 텍스트 부분에 적용할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"현재 문서 내와 커서 오른쪽에 저작권 기호를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionCut":"선택한 텍스트 조각을 삭제하고 컴퓨터 클립보드 메모리로 보냅니다. 복사한 텍스트는 나중에 같은 문서의 다른 위치, 다른 문서 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 줄입니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"커서 왼쪽에 있는 문자 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"커서 왼쪽에 있는 단어/선택 항목/그래픽 개체 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"커서 오른쪽에 있는 문자 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"커서 오른쪽에 있는 단어/선택 영역/그래픽 개체 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"차트 제목이 선택되어 있을 때 제목이 비어 있으면 커서를 줄의 시작 부분으로 옮기고, 그렇지 않으면 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"마지막으로 취소한 작업을 반복합니다.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"표와 이미지가 있는 모든 문서 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"도형을 선택한 상태에서 내용이 없으면 내용을 만들고 커서를 줄의 시작 부분으로 이동합니다. 내용이 비어 있으면 커서를 해당 내용으로 이동하고, 비어 있으면 전체 내용을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"가장 최근에 수행한 작업을 되돌립니다.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"현재 문서 안에 Em대시를 커서 오른쪽에 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"현재 문서 안에 대시를 넣고 커서 오른쪽에 넣으세요.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"현재 문단을 끝내고 새로운 문단을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"셀 내에서 새로운 문단을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"방정식 인수에 새로운 입력 칸 추가.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"연산자의 정렬 수준을 왼쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"연산자의 정렬 수준을 오른쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"현재 커서 위치에 유로 기호(€)를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"현재 커서 위치에 줄임표를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 늘립니다.","Common.Controllers.Shortcuts.txtDescriptionIndent":"왼쪽에서 한 단락을 점진적으로 들여쓰기하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"열 나누기 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"주석을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"현재 커서 위치에 수식을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"각주 넣기.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"웹 주소로 이동할 수 있는 하이퍼링크를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"새 단락을 시작하지 않고 줄 나누기 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"여러 줄 양식에 줄 바꿈 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"현재 커서 위치에 페이지 나누기를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"현재 커서 위치에 현재 쪽 번호 넣기.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"문단에 탭문자 더하기(커서가 문단의 시작에 있지 않다면)","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"테이블 안에 테이블 구분을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionItalic":"선택한 텍스트 조각을 기울임꼴로 표시하고 약간 비스듬하게 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"문단을 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"문단 왼쪽 정렬","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 아래로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 왼쪽으로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 오른쪽으로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 위로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"선택한 단락의 들여쓰기를 늘리세요.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"선택한 문단의 들여쓰기를 줄입니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"현재 선택된 개체 다음 개체로 포커스를 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"현재 선택된 개체 이전 개체로 포커스를 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"커서를 한 줄 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"현재 편집 중인 문서의 맨 마지막에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"현재 편집 중인 줄의 끝에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"커서를 오른쪽으로 한 단어 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"커서를 왼쪽으로 한 글자 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"아래쪽 머리글로 이동합니다(커서가 머리글/바닥글에 있을 경우).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"(커서가 머리글/바닥글에 있을 경우) 아래쪽 머리글/바닥글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"테이블 행의 다음 셀로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"다음 입력란으로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"현재 편집된 문서의 다음 페이지로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"테이블의 다음 행으로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"테이블 행의 이전 셀로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"이전 입력란으로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"현재 편집된 문서의 이전 페이지로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"테이블의 이전 행으로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"커서를 오른쪽으로 한 글자 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"현재 편집 중인 문서의 맨 처음에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"현재 편집 중인 줄의 시작 부분에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"현재 편집 중인 페이지 바로 다음 페이지의 맨 처음에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"현재 편집 중인 페이지의 바로 앞 페이지에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"커서를 단어의 시작 위치로 이동하거나 왼쪽으로 한 단어 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"커서를 한 줄 위로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"(커서가 머리글/바닥글에 있을 경우) 위쪽 머리글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"(커서가 머리글/바닥글에 있을 경우) 위쪽 머리글/바닥글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"데스크톱 편집기에서는 다음 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"모달 대화 상자에서 다음 컨트롤로 포커스를 이동하며 탐색합니다.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"문자 사이에 하이픈을 만듭니다. 하이픈은 새 줄을 시작하는 데 사용할 수 없습니다.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"새 줄을 시작하는 데 사용할 수 없는 문자 사이에 공백을 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"온라인 편집기에서 채팅 패널을 열고 메시지를 보내세요.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"댓글 텍스트를 추가할 수 있는 데이터 입력 필드를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"댓글 패널을 열어서 본인의 댓글을 추가하거나 다른 사용자의 댓글에 답변하세요.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"선택한 요소의 상황에 맞는 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"기존 파일을 선택할 수 있는 표준 대화 상자를 엽니다. 이 대화 상자에서 파일을 선택하고 [열기]를 클릭하면 데스크톱 편집기의 새 탭이나 창에서 파일이 열립니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"파일 패널을 열면 현재 문서를 저장, 다운로드, 인쇄하고, 해당 정보를 보고, 새 문서를 만들거나 기존 문서를 열고, 문서 편집기 도움말 센터나 고급 설정에 액세스할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"찾기 및 바꾸기 메뉴(패널)를 열고 바꾸기 필드를 사용하여 찾은 문자의 하나 이상의 발생을 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"찾기 대화 상자 창을 열어 현재 편집 중인 문서에서 문자/단어/구를 검색하세요.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"문서 편집기 도움말 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionPaste":"현재 커서 위치에 클립보드의 복사한 텍스트 조각을 삽입합니다. 텍스트는 같은 문서, 다른 문서 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"현재 편집 중인 문서의 텍스트에 직전에 복사된 포맷 적용하기","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"현재 커서 위치에 클립보드의 복사한 텍스트 조각을 원본 서식 없이 삽입합니다. 텍스트는 같은 문서, 다른 문서 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"데스크톱 편집기에서는 이전 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"대화 상자에서 이전 컨트롤에 포커스를 두기 위해 컨트롤 사이를 탐색합니다.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"사용 가능한 프린터 중 하나로 문서를 인쇄하거나 파일로 저장하세요.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"현재 커서 위치에 등록 상표 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"선택한 유니코드 코드를 기호로 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"선택한 텍스트 조각의 서식을 지웁니다.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"문단을 오른쪽 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionSave":"문서 편집기를 사용하여 현재 편집 중인 문서의 모든 변경 사항을 저장합니다. 활성 파일은 현재 파일 이름, 위치 및 파일 형식으로 저장됩니다.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"현재 편집 중인 문서를 지원되는 형식 중 하나로 컴퓨터의 하드 디스크 드라이브에 저장하려면 '다른 이름으로 다운로드...' 패널을 엽니다.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"문서를 보이는 페이지 한 페이지 아래로 스크롤합니다.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"문서를 보이는 페이지 하나 위로 스크롤합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"커서 위치의 왼쪽에 있는 문자 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"커서가 있는 곳부터 단어의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"커서를 한 줄 아래로 이동하며 이전 위치와 현재 위치 사이의 모든 문자를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"커서를 한 줄 위로 이동하며 이전 위치와 현재 위치 사이의 모든 문자를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"커서 위치에서 화면 하단까지 페이지 부분을 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"커서 위치에서 화면 상단까지 페이지 부분을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"커서 위치 오른쪽에 있는 문자 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"커서가 있는 곳부터 단어 끝까지의 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"커서가 있는 곳부터 다음 페이지의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"커서가 있는 곳부터 이전 페이지의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"커서가 있는 곳부터 문서 끝까지의 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"커서가 있는 곳부터 현재 줄의 끝까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"커서부터 문서의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"커서부터 현재 줄의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"인쇄할 수 없는 문자를 표시하거나 숨깁니다.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"현재 커서 위치에 선택적 하이픈을 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"복사한 텍스트의 원본 서식 유지","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"원래 서식 없이 텍스트를 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"복사한 표를 중첩 표로 기존 표의 선택한 셀에 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"기존 테이블의 내용을 복사한 데이터로 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"애플리케이션에서 수행된 작업의 화면 판독기 전송을 활성화/비활성화합니다.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"목록/들여쓰기 레벨을 높이세요(단락 시작 커서를 사용).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"목록/들여쓰기 수준을 낮춥니다(커서를 문단의 시작 부분에 두었을 때).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"선택한 텍스트 조각에 취소선을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"선택한 텍스트 조각을 작게 만들어 텍스트 줄 하단에 배치합니다(예: 화학식처럼).","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"선택한 텍스트 조각을 작게 만들어 텍스트 줄 상단에 배치합니다(예: 분수처럼).","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"현재 커서 위치에 상표 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"선택한 텍스트 조각에 밑줄을 긋습니다.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"문단의 들여쓰기를 왼쪽에서부터 점진적으로 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"필드(예: 목차)를 업데이트합니다.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"링크를 방문합니다(링크에 커서를 놓은 상태).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"현재 문서의 '확대/축소' 매개변수를 기본값인 100%로 재설정합니다.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"현재 편집 중인 문서를 확대합니다.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"현재 편집 중인 문서를 축소합니다.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"복사","Common.Controllers.Shortcuts.txtLabelCopyFormat":"복사 형식","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"자르기","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"기울림꼴","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage이동","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"저장","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"취소선","Common.Controllers.Shortcuts.txtLabelSubscript":"아래 첨자","Common.Controllers.Shortcuts.txtLabelSuperscript":"위 첨자","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"밑줄","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"방문링크","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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.textRadar":"레이더","Common.define.chartData.textRadarFilled":"채워진 레이더","Common.define.chartData.textRadarMarker":"마커가 있는 레이더","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.define.smartArt.textAccentedPicture":"강조된 이미지","Common.define.smartArt.textAccentProcess":"강조 프로세스","Common.define.smartArt.textAlternatingFlow":"대체 흐름","Common.define.smartArt.textAlternatingHexagons":"번갈아 가는 육각형","Common.define.smartArt.textAlternatingPictureBlocks":"그림 블록 대체","Common.define.smartArt.textAlternatingPictureCircles":"사진 원 대체","Common.define.smartArt.textArchitectureLayout":"구조 배치","Common.define.smartArt.textArrowRibbon":"화살표 리본","Common.define.smartArt.textAscendingPictureAccentProcess":"오름차순 그림 강조 프로세스","Common.define.smartArt.textBalance":"균형","Common.define.smartArt.textBasicBendingProcess":"기본 구부림 프로세스","Common.define.smartArt.textBasicBlockList":"기본 차단 목록","Common.define.smartArt.textBasicChevronProcess":"기본 쉐브론 프로세스","Common.define.smartArt.textBasicCycle":"기본 주기","Common.define.smartArt.textBasicMatrix":"기본 행렬","Common.define.smartArt.textBasicPie":"기본 파이","Common.define.smartArt.textBasicProcess":"기본 프로세스","Common.define.smartArt.textBasicPyramid":"기본 피라미드","Common.define.smartArt.textBasicRadial":"기본 원형","Common.define.smartArt.textBasicTarget":"기본 대상","Common.define.smartArt.textBasicTimeline":"기본 타임라인","Common.define.smartArt.textBasicVenn":"기본 벤 다이어그램","Common.define.smartArt.textBendingPictureAccentList":"이미지가있는 카드 유형 목록","Common.define.smartArt.textBendingPictureBlocks":"자동 배치 그림 블록","Common.define.smartArt.textBendingPictureCaption":"캡션이 있는 그림 목록","Common.define.smartArt.textBendingPictureCaptionList":"캡션이 있는 그림 목록","Common.define.smartArt.textBendingPictureSemiTranparentText":"반투명 텍스트가 있는 그림 유형 목록","Common.define.smartArt.textBlockCycle":"블록 주기","Common.define.smartArt.textBubblePictureList":"거품 이미지 목록","Common.define.smartArt.textCaptionedPictures":"캡션이 있는 사진","Common.define.smartArt.textChevronAccentProcess":"쉐브론 액센트 프로세스","Common.define.smartArt.textChevronList":"쉐브론 목록","Common.define.smartArt.textCircleAccentTimeline":"원형 강조 타임라인","Common.define.smartArt.textCircleArrowProcess":"원형 화살표 프로세스","Common.define.smartArt.textCirclePictureHierarchy":"원형 이미지 계층 구조","Common.define.smartArt.textCircleProcess":"원형 프로세스","Common.define.smartArt.textCircleRelationship":"원형 관계","Common.define.smartArt.textCircularBendingProcess":"원형 절곡 공정","Common.define.smartArt.textCircularPictureCallout":"원형 이미지 주석","Common.define.smartArt.textClosedChevronProcess":"닫힌 형태의 쉐브론 프로세스","Common.define.smartArt.textContinuousArrowProcess":"연속된 화살표 프로세스","Common.define.smartArt.textContinuousBlockProcess":"연속된 블록 프로세스","Common.define.smartArt.textContinuousCycle":"연속적인 주기","Common.define.smartArt.textContinuousPictureList":"연속된 그림 목록","Common.define.smartArt.textConvergingArrows":"수렴하는 화살표","Common.define.smartArt.textConvergingRadial":"한 지점으로 모이는 방사형","Common.define.smartArt.textConvergingText":"한 지점으로 모이는 텍스트","Common.define.smartArt.textCounterbalanceArrows":"평형 화살","Common.define.smartArt.textCycle":"주기","Common.define.smartArt.textCycleMatrix":"주기 행렬","Common.define.smartArt.textDescendingBlockList":"내림차순으로 정렬한 목록","Common.define.smartArt.textDescendingProcess":"내림차순 프로세스","Common.define.smartArt.textDetailedProcess":"상세한 프로세스","Common.define.smartArt.textDivergingArrows":"분기 화살표","Common.define.smartArt.textDivergingRadial":"분기하는 방사형","Common.define.smartArt.textEquation":"방정식","Common.define.smartArt.textFramedTextPicture":"테두리가 있는 텍스트 이미지","Common.define.smartArt.textFunnel":"깔때기","Common.define.smartArt.textGear":"대비","Common.define.smartArt.textGridMatrix":"격자 행렬","Common.define.smartArt.textGroupedList":"그룹화 된 목록","Common.define.smartArt.textHalfCircleOrganizationChart":"반원 형태 조직도","Common.define.smartArt.textHexagonCluster":"육각형 클러스터","Common.define.smartArt.textHexagonRadial":"육각형 방사형","Common.define.smartArt.textHierarchy":"계층","Common.define.smartArt.textHierarchyList":"계층 목록","Common.define.smartArt.textHorizontalBulletList":"가로 방향 불릿 목록","Common.define.smartArt.textHorizontalHierarchy":"수평적 계층","Common.define.smartArt.textHorizontalLabeledHierarchy":"가로로 라벨링된 계층 구조","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"가로로 다중 수준 계층","Common.define.smartArt.textHorizontalOrganizationChart":"가로 방향 조직도","Common.define.smartArt.textHorizontalPictureList":"가로로 나열된 그림 목록","Common.define.smartArt.textIncreasingArrowProcess":"증가 화살표 프로세스","Common.define.smartArt.textIncreasingCircleProcess":"증가하는 원 프로세스","Common.define.smartArt.textInterconnectedBlockProcess":"상호 연결된 블록 프로세스","Common.define.smartArt.textInterconnectedRings":"상호 연결된 링","Common.define.smartArt.textInvertedPyramid":"역 피라미드","Common.define.smartArt.textLabeledHierarchy":"레이블이 있는 계층 구조","Common.define.smartArt.textLinearVenn":"선형 벤 다이어그램","Common.define.smartArt.textLinedList":"선으로 구분된 목록","Common.define.smartArt.textList":"목록","Common.define.smartArt.textMatrix":"행렬","Common.define.smartArt.textMultidirectionalCycle":"다방향 사이클","Common.define.smartArt.textNameAndTitleOrganizationChart":"이름 및 직위 조직도","Common.define.smartArt.textNestedTarget":"중첩 대상","Common.define.smartArt.textNondirectionalCycle":"비방향 사이클","Common.define.smartArt.textOpposingArrows":"반대 화살표","Common.define.smartArt.textOpposingIdeas":"상반된 개념","Common.define.smartArt.textOrganizationChart":"조직도","Common.define.smartArt.textOther":"기타","Common.define.smartArt.textPhasedProcess":"단계별 프로세스","Common.define.smartArt.textPicture":"그림","Common.define.smartArt.textPictureAccentBlocks":"그림 강조 블럭","Common.define.smartArt.textPictureAccentList":"그림 강조 목록","Common.define.smartArt.textPictureAccentProcess":"그림 강조 프로세스","Common.define.smartArt.textPictureCaptionList":"그림 캡션 목록","Common.define.smartArt.textPictureFrame":"사진 프레임","Common.define.smartArt.textPictureGrid":"그림 격자","Common.define.smartArt.textPictureLineup":"사진 라인업","Common.define.smartArt.textPictureOrganizationChart":"그림 조직도","Common.define.smartArt.textPictureStrips":"그림 스트립","Common.define.smartArt.textPieProcess":"파이 프로세스","Common.define.smartArt.textPlusAndMinus":"플러스와 마이너스","Common.define.smartArt.textProcess":"프로세스","Common.define.smartArt.textProcessArrows":"프로세스 화살표","Common.define.smartArt.textProcessList":"프로세스 목록","Common.define.smartArt.textPyramid":"피라미드","Common.define.smartArt.textPyramidList":"피라미드 목록","Common.define.smartArt.textRadialCluster":"방사형 클러스터","Common.define.smartArt.textRadialCycle":"방사형주기","Common.define.smartArt.textRadialList":"방사형 목록","Common.define.smartArt.textRadialPictureList":"방사형 그림 목록","Common.define.smartArt.textRadialVenn":"원형 벤 다이어그램","Common.define.smartArt.textRandomToResultProcess":"무작위 랜덤 프로세스","Common.define.smartArt.textRelationship":"관계","Common.define.smartArt.textRepeatingBendingProcess":"반복되는 접힘 과정","Common.define.smartArt.textReverseList":"역방향 목록","Common.define.smartArt.textSegmentedCycle":"분할된 주기","Common.define.smartArt.textSegmentedProcess":"세분화된 프로세스","Common.define.smartArt.textSegmentedPyramid":"분할된 피라미드","Common.define.smartArt.textSnapshotPictureList":"스냅샷 사진 목록","Common.define.smartArt.textSpiralPicture":"나선형 그림","Common.define.smartArt.textSquareAccentList":"사각형 강조 목록","Common.define.smartArt.textStackedList":"스택 오브젝트","Common.define.smartArt.textStackedVenn":"쌓인 벤 다이어그램","Common.define.smartArt.textStaggeredProcess":"단계별 프로세스","Common.define.smartArt.textStepDownProcess":"단계적 프로세스","Common.define.smartArt.textStepUpProcess":"단계별 프로세스","Common.define.smartArt.textSubStepProcess":"하위 단계 프로세스","Common.define.smartArt.textTabbedArc":"원호형 탭","Common.define.smartArt.textTableHierarchy":"테이블 계층","Common.define.smartArt.textTableList":"테이블 목록","Common.define.smartArt.textTabList":"탭 목록","Common.define.smartArt.textTargetList":"대상 목록","Common.define.smartArt.textTextCycle":"텍스트 사이클","Common.define.smartArt.textThemePictureAccent":"테마 이미지 강조","Common.define.smartArt.textThemePictureAlternatingAccent":"테마 이미지 교체 강조","Common.define.smartArt.textThemePictureGrid":"테마 이미지 격자","Common.define.smartArt.textTitledMatrix":"제목 행렬","Common.define.smartArt.textTitledPictureAccentList":"제목이 있는 이미지 강조 목록","Common.define.smartArt.textTitledPictureBlocks":"제목이 있는 그림 블록","Common.define.smartArt.textTitlePictureLineup":"타이틀 이미지 라인업","Common.define.smartArt.textTrapezoidList":"사다리꼴 목록","Common.define.smartArt.textUpwardArrow":"위쪽 화살표","Common.define.smartArt.textVaryingWidthList":"너비가 다른 목록","Common.define.smartArt.textVerticalAccentList":"수직 강조 목록","Common.define.smartArt.textVerticalArrowList":"수직 화살표 목록","Common.define.smartArt.textVerticalBendingProcess":"수직 절곡 프로세스","Common.define.smartArt.textVerticalBlockList":"수직 블록 목록","Common.define.smartArt.textVerticalBoxList":"수직 상자 목록","Common.define.smartArt.textVerticalBracketList":"수직 괄호 목록","Common.define.smartArt.textVerticalBulletList":"수직 글머리 기호 목록","Common.define.smartArt.textVerticalChevronList":"수직 쉐브론 목록","Common.define.smartArt.textVerticalCircleList":"수직 원 목록","Common.define.smartArt.textVerticalCurvedList":"수직 곡선 목록","Common.define.smartArt.textVerticalEquation":"수직 방정식","Common.define.smartArt.textVerticalPictureAccentList":"수직 방향 그림 강조 목록","Common.define.smartArt.textVerticalPictureList":"수직 이미지 목록","Common.define.smartArt.textVerticalProcess":"수직 프로세스","Common.Translation.textMoreButton":"더","Common.Translation.tipFileLocked":"문서가 편집 잠금 상태입니다. \n변경한 후 로컬 복사본으로 저장할 수 있습니다.","Common.Translation.tipFileReadOnly":"파일이 읽기 전용입니다. 변경 사항을 유지하려면 파일을 새 이름으로 저장하거나 다른 위치에 저장하세요.","Common.Translation.warnFileLocked":"파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.","Common.Translation.warnFileLockedBtnEdit":"복사본 만들기","Common.Translation.warnFileLockedBtnView":"미리보기","Common.UI.ButtonColored.textAutoColor":"자동","Common.UI.ButtonColored.textEyedropper":"스포이드","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":"금","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":"목","Common.UI.Calendar.textShortTuesday":"화","Common.UI.Calendar.textShortWednesday":"우리","Common.UI.Calendar.textYears":"년","Common.UI.ComboBorderSize.txtNoBorders":"테두리 없음","Common.UI.ComboBorderSizeEditable.txtNoBorders":"테두리 없음","Common.UI.ComboDataView.emptyComboText":"스타일 없음","Common.UI.ExtendedColorDialog.addButtonText":"Add","Common.UI.ExtendedColorDialog.textCurrent":"현재","Common.UI.ExtendedColorDialog.textHexErr":"입력 한 값이 잘못되었습니다.
000000에서 FFFFFF 사이의 값을 입력하십시오.","Common.UI.ExtendedColorDialog.textNew":"신규","Common.UI.ExtendedColorDialog.textRGBErr":"입력 한 값이 잘못되었습니다.
0에서 255 사이의 숫자 값을 입력하십시오.","Common.UI.HSBColorPicker.textNoColor":"색상 없음","Common.UI.InputField.txtEmpty":"이 필드는 필수 입력 항목입니다","Common.UI.InputFieldBtnCalendar.textDate":"날짜선택","Common.UI.InputFieldBtnPassword.textHintHidePwd":"비밀번호 숨기기","Common.UI.InputFieldBtnPassword.textHintHold":"길게 눌러 비밀번호 보기","Common.UI.InputFieldBtnPassword.textHintShowPwd":"비밀번호 표시","Common.UI.SearchBar.textFind":"찾기","Common.UI.SearchBar.tipCloseSearch":"검색 닫기","Common.UI.SearchBar.tipNextResult":"다음결과","Common.UI.SearchBar.tipOpenAdvancedSettings":"고급 설정 열기","Common.UI.SearchBar.tipPreviousResult":"이전 결과","Common.UI.SearchDialog.textHighlight":"결과 강조 표시","Common.UI.SearchDialog.textMatchCase":"대소문자 구분","Common.UI.SearchDialog.textReplaceDef":"대체 텍스트 입력","Common.UI.SearchDialog.textSearchStart":"여기에 텍스트를 입력하십시오","Common.UI.SearchDialog.textTitle":"찾기 및 바꾸기","Common.UI.SearchDialog.textTitle2":"찾기","Common.UI.SearchDialog.textWholeWords":"전체 단어만","Common.UI.SearchDialog.txtBtnHideReplace":"바꾸기 숨기기","Common.UI.SearchDialog.txtBtnReplace":"바꾸기","Common.UI.SearchDialog.txtBtnReplaceAll":"모두 바꾸기","Common.UI.SynchronizeTip.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.SynchronizeTip.textGotIt":"확인","Common.UI.SynchronizeTip.textNew":"새로 만들기","Common.UI.SynchronizeTip.textSynchronize":"다른 사용자가 문서를 변경했습니다.
클릭하여 변경 사항을 저장하고 업데이트를 다시로드하십시오.","Common.UI.ThemeColorPalette.textRecentColors":"최근 색상","Common.UI.ThemeColorPalette.textStandartColors":"표준 색상","Common.UI.ThemeColorPalette.textThemeColors":"테마 색","Common.UI.ThemeColorPalette.textTransparent":"투명한","Common.UI.Themes.txtThemeClassicLight":"전통적인 밝은 색상","Common.UI.Themes.txtThemeContrastDark":"어두운 대비","Common.UI.Themes.txtThemeDark":"어두운","Common.UI.Themes.txtThemeGray":"회색","Common.UI.Themes.txtThemeLight":"밝은","Common.UI.Themes.txtThemeModernDark":"모던 다크","Common.UI.Themes.txtThemeModernLight":"모던 라이트","Common.UI.Themes.txtThemeSystem":"시스템과 동일","Common.UI.Themes.txtThemeWhite":"흰색","Common.UI.Window.cancelButtonText":"취소","Common.UI.Window.closeButtonText":"닫기","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"확인","Common.UI.Window.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.Window.textError":"오류","Common.UI.Window.textInformation":"정보","Common.UI.Window.textWarning":"경고","Common.UI.Window.yesButtonText":"예","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt 키","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl 키","Common.Utils.String.textShift":"Shift 키","Common.Utils.ThemeColor.txtaccent":"강조","Common.Utils.ThemeColor.txtAqua":"아쿠아","Common.Utils.ThemeColor.txtbackground":"배경","Common.Utils.ThemeColor.txtBlack":"검정","Common.Utils.ThemeColor.txtBlue":"파랑","Common.Utils.ThemeColor.txtBrightGreen":"밝은 녹색","Common.Utils.ThemeColor.txtBrown":"갈색","Common.Utils.ThemeColor.txtDarkBlue":"어두운 파랑색","Common.Utils.ThemeColor.txtDarker":"더 어둡게","Common.Utils.ThemeColor.txtDarkGray":"어두운 회색","Common.Utils.ThemeColor.txtDarkGreen":"어두운 초록색","Common.Utils.ThemeColor.txtDarkPurple":"진한 보라색","Common.Utils.ThemeColor.txtDarkRed":"어두운 빨간색","Common.Utils.ThemeColor.txtDarkTeal":"어두운 암청색","Common.Utils.ThemeColor.txtDarkYellow":"어두운 노란색","Common.Utils.ThemeColor.txtGold":"금색","Common.Utils.ThemeColor.txtGray":"회색","Common.Utils.ThemeColor.txtGreen":"녹색","Common.Utils.ThemeColor.txtIndigo":"남색","Common.Utils.ThemeColor.txtLavender":"라벤더","Common.Utils.ThemeColor.txtLightBlue":"밝은 파랑","Common.Utils.ThemeColor.txtLighter":"더 밝은","Common.Utils.ThemeColor.txtLightGray":"밝은 회색","Common.Utils.ThemeColor.txtLightGreen":"밝은 초록","Common.Utils.ThemeColor.txtLightOrange":"밝은 주황","Common.Utils.ThemeColor.txtLightYellow":"밝은 노랑","Common.Utils.ThemeColor.txtOrange":"주황","Common.Utils.ThemeColor.txtPink":"분홍","Common.Utils.ThemeColor.txtPurple":"보라","Common.Utils.ThemeColor.txtRed":"빨강","Common.Utils.ThemeColor.txtRose":"장미","Common.Utils.ThemeColor.txtSkyBlue":"하늘색","Common.Utils.ThemeColor.txtTeal":"암청색","Common.Utils.ThemeColor.txttext":"본문","Common.Utils.ThemeColor.txtTurquosie":"터키옥색","Common.Utils.ThemeColor.txtViolet":"바이올렛","Common.Utils.ThemeColor.txtWhite":"힌색","Common.Utils.ThemeColor.txtYellow":"노랑","Common.Views.About.txtAddress":"주소 :","Common.Views.About.txtLicensee":"라이선스","Common.Views.About.txtLicensor":"라이센서","Common.Views.About.txtMail":"이메일 :","Common.Views.About.txtPoweredBy":"기술 지원","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.textDoubleSpaces":"더블 스페이스로 마침표 추가","Common.Views.AutoCorrectDialog.textFLCells":"표 셀의 첫 글자를 대문자로","Common.Views.AutoCorrectDialog.textFLDont":"뒤이어 대문자를 쓰지 마세요","Common.Views.AutoCorrectDialog.textFLSentence":"영어 문장의 첫 글자를 대문자로","Common.Views.AutoCorrectDialog.textForLangFL":"언어에 대한 예외:","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.textWarnAddFL":"예외에는 문자, 대문자 또는 소문자만 포함되어야 합니다.","Common.Views.AutoCorrectDialog.textWarnAddRec":"인식되는 함수는 대소 A ~ Z까지의 문자만을 포함해야합니다.","Common.Views.AutoCorrectDialog.textWarnResetFL":"추가한 예외가 제거되고 제거된 예외가 복원됩니다. 계속하시겠습니까?","Common.Views.AutoCorrectDialog.textWarnResetRec":"추가한 모든 표현식이 삭제되고 삭제된 표현식이 복원됩니다. 계속하시겠습니까?","Common.Views.AutoCorrectDialog.warnReplace":"%1에 대한 자동 고침 항목이 이미 있습니다. 교체하시겠습니까?","Common.Views.AutoCorrectDialog.warnReset":"추가한 모든 자동 고침이 삭제되고 변경된 자동 수정이 원래 값으로 복원됩니다. 계속하시겠습니까?","Common.Views.AutoCorrectDialog.warnRestore":"%1의 자동 고침 항목이 원래 값으로 재설정됩니다. 계속하시겠습니까?","Common.Views.Chat.textChat":"채팅","Common.Views.Chat.textClosePanel":"채팅 닫기","Common.Views.Chat.textEnterMessage":"메시지를 입력하세요","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.mniFilterComments":"댓글 표시","Common.Views.Comments.mniFilterGroups":"그룹별 필터링","Common.Views.Comments.mniPositionAsc":"위에서부터","Common.Views.Comments.mniPositionDesc":"아래로부터","Common.Views.Comments.textAdd":"추가","Common.Views.Comments.textAddComment":"코멘트 추가","Common.Views.Comments.textAddCommentToDoc":"문서에 댓글 추가","Common.Views.Comments.textAddReply":"답장 추가","Common.Views.Comments.textAll":"모두","Common.Views.Comments.textAnonym":"게스트","Common.Views.Comments.textCancel":"취소","Common.Views.Comments.textClose":"닫기","Common.Views.Comments.textClosePanel":"코멘트 닫기","Common.Views.Comments.textComment":"코멘트","Common.Views.Comments.textComments":"코멘트","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"여기에 의견을 입력하십시오","Common.Views.Comments.textHintAddComment":"코멘트 추가","Common.Views.Comments.textOpen":"열기","Common.Views.Comments.textOpenAgain":"다시 열기","Common.Views.Comments.textReply":"댓글","Common.Views.Comments.textResolve":"해결","Common.Views.Comments.textResolved":"해결됨","Common.Views.Comments.textSort":"코멘트 분류","Common.Views.Comments.textSortFilter":"코멘트","Common.Views.Comments.textSortFilterMore":"정렬, 필터 및 기타 옵션","Common.Views.Comments.textSortMore":"정렬 및 기타 옵션","Common.Views.Comments.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.Comments.txtEmpty":"문서에 코멘트가 없습니다","Common.Views.CopyWarningDialog.textDontShow":"이 메시지를 다시 표시하지 않음","Common.Views.CopyWarningDialog.textMsg":"편집기 툴바 버튼과 상황메뉴를 사용한 복사, 잘라내기, 붙이기는 이 편집기 탭 안에서만 수행됩니다.

편집기 탭 외부와 복사 붙여넣기를 하기위해 다음과 같은 키보드 조합을 사용하세요: ","Common.Views.CopyWarningDialog.textTitle":"작업 복사, 잘라 내기 및 붙여 넣기","Common.Views.CopyWarningDialog.textToCopy":"복사","Common.Views.CopyWarningDialog.textToCut":"잘라내기","Common.Views.CopyWarningDialog.textToPaste":"붙여넣기","Common.Views.CustomizeQuickAccessDialog.textDownload":"다운로드","Common.Views.CustomizeQuickAccessDialog.textMsg":"빠른 실행 도구 모음에 표시할 명령을 선택하세요","Common.Views.CustomizeQuickAccessDialog.textPrint":"인쇄","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"빠른 인쇄","Common.Views.CustomizeQuickAccessDialog.textRedo":"다시 실행","Common.Views.CustomizeQuickAccessDialog.textSave":"저장","Common.Views.CustomizeQuickAccessDialog.textTitle":"빠른 실행 도구 모음 사용자 지정","Common.Views.CustomizeQuickAccessDialog.textUndo":"실행 취소","Common.Views.DocumentAccessDialog.textLoading":"로드 중 ...","Common.Views.DocumentAccessDialog.textTitle":"공유 설정","Common.Views.DocumentPropertyDialog.errorDate":"캘린더에서 값을 선택하면 날짜 형식으로 저장됩니다.
직접 입력하면 텍스트로 저장됩니다.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"아니요","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"예","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"속성에는 제목이 있어야 합니다","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"제목","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"예\" 또는 \"아니요\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"날짜","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"유형","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"숫자","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"유효한 숫자를 입력하세요","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"텍스트","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"속성에는 값이 있어야 합니다","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"값","Common.Views.DocumentPropertyDialog.txtTitle":"새 문서 속성","Common.Views.Draw.hintEraser":"지우개","Common.Views.Draw.hintSelect":"선택","Common.Views.Draw.txtEraser":"지우개","Common.Views.Draw.txtHighlighter":"하이라이터","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"펜","Common.Views.Draw.txtSelect":"선택","Common.Views.Draw.txtSize":"크기","Common.Views.ExternalDiagramEditor.textTitle":"차트 편집기","Common.Views.ExternalEditor.textClose":"닫기","Common.Views.ExternalEditor.textSave":"저장 및 종료","Common.Views.ExternalLinksDlg.closeButtonText":"닫기","Common.Views.ExternalLinksDlg.textAutoUpdate":"연결된 원본에서 데이터 자동 업데이트","Common.Views.ExternalLinksDlg.textChange":"소스 변경","Common.Views.ExternalLinksDlg.textDelete":"링크 해제","Common.Views.ExternalLinksDlg.textDeleteAll":"모든 링크 해제","Common.Views.ExternalLinksDlg.textOk":"확인","Common.Views.ExternalLinksDlg.textOpen":"오픈 소스","Common.Views.ExternalLinksDlg.textSource":"출처","Common.Views.ExternalLinksDlg.textStatus":"상태","Common.Views.ExternalLinksDlg.textUnknown":"알 수 없음","Common.Views.ExternalLinksDlg.textUpdate":"값 업데이트","Common.Views.ExternalLinksDlg.textUpdateAll":"모두 업데이트","Common.Views.ExternalLinksDlg.textUpdating":"업데이트 중…","Common.Views.ExternalLinksDlg.txtTitle":"외부 링크","Common.Views.ExternalMergeEditor.textTitle":"편지 병합받는 사람","Common.Views.ExternalOleEditor.textTitle":"스프레드시트 편집기","Common.Views.FormatSettingsDialog.textCategory":"범주","Common.Views.FormatSettingsDialog.textDecimal":"소수","Common.Views.FormatSettingsDialog.textFormat":"서식","Common.Views.FormatSettingsDialog.textLinked":"원본에 연결","Common.Views.FormatSettingsDialog.textLocale":"지역 설정","Common.Views.FormatSettingsDialog.textSeparator":"천 단위 구분 기호 사용","Common.Views.FormatSettingsDialog.textSymbols":"기호","Common.Views.FormatSettingsDialog.textTitle":"숫자 서식","Common.Views.FormatSettingsDialog.txtAccounting":"회계","Common.Views.FormatSettingsDialog.txtAs10":"10분의 1 단위로 (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"백분위로 (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"16분의 1 단위로 (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"2분할","Common.Views.FormatSettingsDialog.txtAs4":"4분할","Common.Views.FormatSettingsDialog.txtAs8":"8분할","Common.Views.FormatSettingsDialog.txtCurrency":"통화","Common.Views.FormatSettingsDialog.txtCustom":"사용자 지정","Common.Views.FormatSettingsDialog.txtCustomWarning":"사용자 숫자 서식을 주의해서 입력하세요. 스프레드시트 편집기는 xlsx 파일에 영향을 줄 수 있는 사용자 서식 오류를 확인하지 않습니다.","Common.Views.FormatSettingsDialog.txtDate":"날짜","Common.Views.FormatSettingsDialog.txtFraction":"분수","Common.Views.FormatSettingsDialog.txtGeneral":"일반","Common.Views.FormatSettingsDialog.txtNone":"없음","Common.Views.FormatSettingsDialog.txtNumber":"숫자","Common.Views.FormatSettingsDialog.txtPercentage":"백분율","Common.Views.FormatSettingsDialog.txtSample":"샘플 :","Common.Views.FormatSettingsDialog.txtScientific":"지수","Common.Views.FormatSettingsDialog.txtText":"텍스트","Common.Views.FormatSettingsDialog.txtTime":"시간","Common.Views.FormatSettingsDialog.txtUpto1":"한 자리까지 (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"두 자리까지 (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"세 자리까지 (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"빠른 실행 도구 모음","Common.Views.Header.labelCoUsersDescr":"파일을 편집 중인 사용자:","Common.Views.Header.textAddFavorite":"즐겨찾기에 추가","Common.Views.Header.textAdvSettings":"고급 설정","Common.Views.Header.textBack":"파일 위치 열기","Common.Views.Header.textClose":"파일 닫기","Common.Views.Header.textCompactView":"보기 컴팩트 도구 모음","Common.Views.Header.textDocEditDesc":"변경 사항을 적용하세요","Common.Views.Header.textDocViewDesc":"파일을 보기만 가능하며 편집할 수 없습니다","Common.Views.Header.textDocViewFormDesc":"양식을 작성할 때 어떻게 보일지 미리보기","Common.Views.Header.textDownload":"다운로드","Common.Views.Header.textEdit":"편집 중","Common.Views.Header.textHideLines":"눈금자 숨기기","Common.Views.Header.textHideStatusBar":"상태 표시 줄 숨기기","Common.Views.Header.textPrint":"인쇄","Common.Views.Header.textReadOnly":"읽기 전용","Common.Views.Header.textRemoveFavorite":"즐겨찾기 제거","Common.Views.Header.textReview":"검토 중","Common.Views.Header.textReviewDesc":"변경 제안","Common.Views.Header.textShare":"공유","Common.Views.Header.textStartFill":"공유 및 수집","Common.Views.Header.textView":"보기 모드","Common.Views.Header.textViewForm":"양식 보기","Common.Views.Header.textZoom":"확대/축소","Common.Views.Header.tipAccessRights":"문서 액세스 권한 관리","Common.Views.Header.tipCustomizeQuickAccessToolbar":"빠른 실행 도구 모음 사용자 지정","Common.Views.Header.tipDocEdit":"편집","Common.Views.Header.tipDocView":"보기 모드","Common.Views.Header.tipDocViewForm":"양식 보기","Common.Views.Header.tipDownload":"파일을 다운로드","Common.Views.Header.tipFillStatus":"작성 상태","Common.Views.Header.tipGoEdit":"현재 파일 편집","Common.Views.Header.tipPrint":"파일 출력","Common.Views.Header.tipPrintQuick":"빠른 인쇄","Common.Views.Header.tipRedo":"다시 실행","Common.Views.Header.tipReview":"검토 중","Common.Views.Header.tipSave":"저장","Common.Views.Header.tipSearch":"검색","Common.Views.Header.tipUndo":"실행 취소","Common.Views.Header.tipUsers":"사용자 보기","Common.Views.Header.tipViewSettings":"보기 설정","Common.Views.Header.tipViewUsers":"사용자보기 및 문서 액세스 권한 관리","Common.Views.Header.txtAccessRights":"액세스 권한 변경","Common.Views.Header.txtRename":"이름 바꾸기","Common.Views.History.textCloseHistory":"기록 닫기","Common.Views.History.textHide":"Collapse","Common.Views.History.textHideAll":"자세한 변경 사항 숨기기","Common.Views.History.textHighlightDeleted":"결과 강조 삭제","Common.Views.History.textMore":"더 보기","Common.Views.History.textRestore":"복원","Common.Views.History.textShow":"확장","Common.Views.History.textShowAll":"자세한 변경 사항 표시","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"버전 기록","Common.Views.ImageFromUrlDialog.textUrl":"이미지 URL 붙여 넣기 :","Common.Views.ImageFromUrlDialog.txtEmpty":"이 입력란은 필수 항목입니다.","Common.Views.ImageFromUrlDialog.txtNotUrl":"이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.","Common.Views.InsertTableDialog.textInvalidRowsCols":"유효한 행 및 열 수를 지정해야합니다.","Common.Views.InsertTableDialog.txtColumns":"열 수","Common.Views.InsertTableDialog.txtMaxText":"이 필드의 최대 값은 {0}입니다.","Common.Views.InsertTableDialog.txtMinText":"이 필드의 최소값은 {0}입니다.","Common.Views.InsertTableDialog.txtRows":"행 수","Common.Views.InsertTableDialog.txtTitle":"표 크기","Common.Views.InsertTableDialog.txtTitleSplit":"셀 분할","Common.Views.LanguageDialog.labelSelect":"문서 언어 선택","Common.Views.MacrosAiDialog.textAreaPlaceholder":"쿼리에 사용할 프롬프트를 입력하세요","Common.Views.MacrosAiDialog.textCreate":"만들기","Common.Views.MacrosDialog.textAutostart":"자동 시작","Common.Views.MacrosDialog.textConvertFromVBA":"VBA에서 변환","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"VBA 매크로 변환","Common.Views.MacrosDialog.textCopy":"복사","Common.Views.MacrosDialog.textCreateFromDesc":"설명으로부터 만들기","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"설명을 기반으로 매크로 만들기","Common.Views.MacrosDialog.textCustomFunction":"사용자 정의 함수","Common.Views.MacrosDialog.textCustomFunctions":"사용자 정의 함수","Common.Views.MacrosDialog.textDebug":"디버그","Common.Views.MacrosDialog.textDelete":"삭제","Common.Views.MacrosDialog.textFunctions":"함수","Common.Views.MacrosDialog.textLoading":"불러오는 중...","Common.Views.MacrosDialog.textMacro":"매크로","Common.Views.MacrosDialog.textMacros":"매크로","Common.Views.MacrosDialog.textMakeAutostart":"자동 시작 설정","Common.Views.MacrosDialog.textRename":"이름 바꾸기","Common.Views.MacrosDialog.textRun":"실행","Common.Views.MacrosDialog.textSave":"저장","Common.Views.MacrosDialog.textTitle":"매크로","Common.Views.MacrosDialog.textUnMakeAutostart":"자동 시작 해제","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"사용자 정의 함수 추가","Common.Views.MacrosDialog.tipFunctionCopy":"사용자 정의 함수 복사","Common.Views.MacrosDialog.tipFunctionDelete":"사용자 정의 함수 삭제","Common.Views.MacrosDialog.tipFunctionRename":"사용자 정의 함수 이름 바꾸기","Common.Views.MacrosDialog.tipMacrosAdd":"매크로 추가","Common.Views.MacrosDialog.tipMacrosCopy":"매크로 복사","Common.Views.MacrosDialog.tipMacrosDebug":"매크로 디버그","Common.Views.MacrosDialog.tipMacrosRename":"매크로 이름 바꾸기","Common.Views.MacrosDialog.tipMacrosRun":"매크로 실행","Common.Views.MacrosDialog.tipRedo":"다시 실행","Common.Views.MacrosDialog.tipUndo":"실행 취소","Common.Views.OpenDialog.closeButtonText":"파일 닫기","Common.Views.OpenDialog.txtEncoding":"인코딩","Common.Views.OpenDialog.txtIncorrectPwd":"비밀번호가 맞지 않음","Common.Views.OpenDialog.txtOpenFile":"파일을 열려면 암호를 입력하십시오.","Common.Views.OpenDialog.txtPassword":"암호","Common.Views.OpenDialog.txtPreview":"미리보기","Common.Views.OpenDialog.txtProtected":"암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.","Common.Views.OpenDialog.txtTitle":"%1 옵션 선택","Common.Views.OpenDialog.txtTitleProtected":"보호된 파일","Common.Views.PasswordDialog.txtDescription":"문서 보호용 비밀번호를 세팅하세요","Common.Views.PasswordDialog.txtIncorrectPwd":"확인 비밀번호가 같지 않음","Common.Views.PasswordDialog.txtPassword":"암호","Common.Views.PasswordDialog.txtRepeat":"비밀번호 반복","Common.Views.PasswordDialog.txtTitle":"비밀번호 설정","Common.Views.PasswordDialog.txtWarning":"주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.","Common.Views.PdfSignDialog.textBefore":"Before signing this document, verify that the content you are signing is correct","Common.Views.PdfSignDialog.textClear":"Clear","Common.Views.PdfSignDialog.textFromFile":"From File","Common.Views.PdfSignDialog.textFromStorage":"From Storage","Common.Views.PdfSignDialog.textFromUrl":"From URL","Common.Views.PdfSignDialog.textLooksAs":"Signature looks as","Common.Views.PdfSignDialog.textSelect":"Select Image","Common.Views.PdfSignDialog.tipRedo":"Redo","Common.Views.PdfSignDialog.tipUndo":"Undo","Common.Views.PdfSignDialog.txtDraw":"Draw","Common.Views.PdfSignDialog.txtRemBack":"Remove white background","Common.Views.PdfSignDialog.txtTitle":"Signature","Common.Views.PdfSignDialog.txtType":"Type","Common.Views.PdfSignDialog.txtUpload":"Upload","Common.Views.PdfSignDialog.txtUploadDesc":"You can upload images in JPEG, JPG, GIF and PNG formats with a max size of 30 Mb","Common.Views.PluginDlg.textDock":"플러그인 고정","Common.Views.PluginDlg.textLoading":"불러오는 중","Common.Views.PluginPanel.textClosePanel":"플러그인 닫기","Common.Views.PluginPanel.textHidePanel":"플러그인 축소","Common.Views.PluginPanel.textLoading":"불러오는 중","Common.Views.PluginPanel.textUndock":"플러그인 고정 해제","Common.Views.Plugins.groupCaption":"플러그인","Common.Views.Plugins.strPlugins":"플러그인","Common.Views.Plugins.textBackgroundPlugins":"백그라운드 플러그인","Common.Views.Plugins.textClosePanel":"플러그 인 닫기","Common.Views.Plugins.textLoading":"불러오는 중","Common.Views.Plugins.textSettings":"설정","Common.Views.Plugins.textStart":"시작","Common.Views.Plugins.textStop":"정지","Common.Views.Plugins.textTheListOfBackgroundPlugins":"백그라운드 플러그인 목록","Common.Views.Plugins.tipMore":"더 보기","Common.Views.Protection.hintAddPwd":"비밀번호로 암호화","Common.Views.Protection.hintDelPwd":"비밀번호 삭제","Common.Views.Protection.hintPwd":"비밀번호 변경 또는 삭제","Common.Views.Protection.hintSignature":"디지털 서명 또는 서명 라인을 추가 ","Common.Views.Protection.txtAddPwd":"비밀번호 추가","Common.Views.Protection.txtChangePwd":"비밀번호 변경","Common.Views.Protection.txtDeletePwd":"비밀번호 삭제","Common.Views.Protection.txtEncrypt":"암호화","Common.Views.Protection.txtInvisibleSignature":"디지털 서명을 추가","Common.Views.Protection.txtSignature":"서명","Common.Views.Protection.txtSignatureLine":"서명란 추가","Common.Views.RecentFiles.txtOpenRecent":"최근 열기","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.mniMMFromFile":"파일에서","Common.Views.ReviewChanges.mniMMFromStorage":"저장소에서","Common.Views.ReviewChanges.mniMMFromUrl":"URL에서","Common.Views.ReviewChanges.mniSettings":"비교 설정","Common.Views.ReviewChanges.strFast":"빠르게","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.tipCombine":"현재 문서를 다른 문서와 결합","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.tipMailRecepients":"메일 머지","Common.Views.ReviewChanges.tipRejectCurrent":"현재 변경 거부","Common.Views.ReviewChanges.tipReview":"변경 내용 추적","Common.Views.ReviewChanges.tipReviewView":"변경사항이 표시될 모드 선택","Common.Views.ReviewChanges.tipSetDocLang":"문서 언어 설정","Common.Views.ReviewChanges.tipSetSpelling":"맞춤법 검사","Common.Views.ReviewChanges.tipSharing":"문서 액세스 권한 관리","Common.Views.ReviewChanges.txtAccept":"수락","Common.Views.ReviewChanges.txtAcceptAll":"모든 변경 적용","Common.Views.ReviewChanges.txtAcceptChanges":"변경 접수","Common.Views.ReviewChanges.txtAcceptCurrent":"현재 변경 적용","Common.Views.ReviewChanges.txtChat":"채팅","Common.Views.ReviewChanges.txtClose":"닫기","Common.Views.ReviewChanges.txtCoAuthMode":"공동 편집 모드","Common.Views.ReviewChanges.txtCombine":"결합","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.txtMailMerge":"메일 머지","Common.Views.ReviewChanges.txtMarkup":"모든 변경{0}","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":"이전","Common.Views.ReviewChanges.txtPreview":"미리보기","Common.Views.ReviewChanges.txtReject":"거부","Common.Views.ReviewChanges.txtRejectAll":"모든 변경 사항 거부","Common.Views.ReviewChanges.txtRejectChanges":"변경 거부","Common.Views.ReviewChanges.txtRejectCurrent":"현재 변경 거부","Common.Views.ReviewChanges.txtSharing":"공유","Common.Views.ReviewChanges.txtSpelling":"맞춤법 검사","Common.Views.ReviewChanges.txtTurnon":"변경 내용 추적","Common.Views.ReviewChanges.txtView":"디스플레이 모드","Common.Views.ReviewChangesDialog.textTitle":"변경사항 검토","Common.Views.ReviewChangesDialog.txtAccept":"수락","Common.Views.ReviewChangesDialog.txtAcceptAll":"모든 변경 내용 적용","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"현재 변경 내용 적용","Common.Views.ReviewChangesDialog.txtNext":"다음 변경 사항","Common.Views.ReviewChangesDialog.txtPrev":"이전 변경으로","Common.Views.ReviewChangesDialog.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.textComment":"코멘트","Common.Views.ReviewPopover.textEdit":"확인","Common.Views.ReviewPopover.textEnterComment":"여기에 의견을 입력하십시오","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.ReviewPopover.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.ReviewPopover.txtAccept":"동의","Common.Views.ReviewPopover.txtDeleteTip":"삭제","Common.Views.ReviewPopover.txtEditTip":"편집","Common.Views.ReviewPopover.txtReject":"거부","Common.Views.SaveAsDlg.textLoading":"로드 중","Common.Views.SaveAsDlg.textTitle":"저장 폴더","Common.Views.SearchPanel.textCaseSensitive":"대소문자 구분","Common.Views.SearchPanel.textCloseSearch":"검색 닫기","Common.Views.SearchPanel.textContentChanged":"문서가 변경되었습니다.","Common.Views.SearchPanel.textFind":"찾기","Common.Views.SearchPanel.textFindAndReplace":"찾기 및 바꾸기","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} 항목이 성공적으로 대체되었습니다.","Common.Views.SearchPanel.textMatchUsingRegExp":"정규 표현식을 사용하여 일치하는 것을 찾기","Common.Views.SearchPanel.textNoMatches":"일치 하는 항목 없음","Common.Views.SearchPanel.textNoSearchResults":"검색결과 없음","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} 항목이 대체되었습니다. 남은 {2} 항목은 다른 사용자에 의해 잠겨 있습니다.","Common.Views.SearchPanel.textReplace":"바꾸기","Common.Views.SearchPanel.textReplaceAll":"모두 바꾸기","Common.Views.SearchPanel.textReplaceWith":"다음으로 교체","Common.Views.SearchPanel.textSearchAgain":"정확한 결과를 위해 {0}이 새로운 검색 {1}을 수행함.","Common.Views.SearchPanel.textSearchHasStopped":"검색이 중지되었습니다","Common.Views.SearchPanel.textSearchResults":"검색결과: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"검색 결과","Common.Views.SearchPanel.textTooManyResults":"표시할 결과가 너무 많습니다.","Common.Views.SearchPanel.textWholeWords":"전체 단어만","Common.Views.SearchPanel.tipNextResult":"다음결과","Common.Views.SearchPanel.tipPreviousResult":"이전 결과","Common.Views.SelectFileDlg.textLoading":"로드 중","Common.Views.SelectFileDlg.textTitle":"데이터 소스 선택","Common.Views.ShapeShadowDialog.txtAngle":"각도","Common.Views.ShapeShadowDialog.txtDistance":"간격","Common.Views.ShapeShadowDialog.txtSize":"크기","Common.Views.ShapeShadowDialog.txtTitle":"그림자 조정","Common.Views.ShapeShadowDialog.txtTransparency":"투명도","Common.Views.ShortcutsDialog.txtDescription":"설명","Common.Views.ShortcutsDialog.txtEmpty":"일치하는 결과가 없습니다. 검색 조건을 조정하세요.","Common.Views.ShortcutsDialog.txtRestoreAll":"모든 것을 기본값으로 복원","Common.Views.ShortcutsDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsDialog.txtRestoreDescription":"모든 단축키 설정이 초기상태로 복구될 것입니다.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"기본값으로 복원","Common.Views.ShortcutsDialog.txtSearch":"검색 ","Common.Views.ShortcutsDialog.txtTitle":"키보드 단축키","Common.Views.ShortcutsEditDialog.txtAction":"동작","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"이 바로가기는 편집할 수 없습니다","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"원하는 단축키를 입력하세요","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"%1 동작에 사용된 단축키","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"%1 동작에 사용된 단축키이고 변경될 수 없음","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"%1 동작에 사용된 단축키","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"%1 동작에 사용된 단축키이고 변경할 수 없음","Common.Views.ShortcutsEditDialog.txtNewShortcut":"새로운 단축키","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"\"%1\" 동작에 대한 단축키가 초기상태로 복구될 것입니다.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"기본값으로 복원","Common.Views.ShortcutsEditDialog.txtTitle":"단축키 편집","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"원하는 단축키를 입력하세요","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":"이미지 선택","Common.Views.SignDialog.textSignature":"서명은 처럼 보임","Common.Views.SignDialog.textTitle":"서명문서","Common.Views.SignDialog.textUseImage":"또는 서명으로 그림을 사용하려면 '이미지 선택'을 클릭","Common.Views.SignDialog.textValid":"%1에서 %2까지 유효","Common.Views.SignDialog.tipFontName":"폰트명","Common.Views.SignDialog.tipFontSize":"글꼴 크기","Common.Views.SignSettingsDialog.textAllowComment":"서명 대화창에 서명자의 코멘트 추가 허용","Common.Views.SignSettingsDialog.textDefInstruction":"이 문서에 서명하기 전에, 서명하는 내용이 정확한지 확인하세요.","Common.Views.SignSettingsDialog.textInfoEmail":"이메일","Common.Views.SignSettingsDialog.textInfoName":"이름","Common.Views.SignSettingsDialog.textInfoTitle":"서명자 타이틀","Common.Views.SignSettingsDialog.textInstructions":"서명자용 지침","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":"라벨은 비워 둘 수 없습니다.","DE.Controllers.DocProtection.txtIsProtectedComment":"문서가 보호되어 있습니다. 이 문서에는 주석만 삽입할 수 있습니다.","DE.Controllers.DocProtection.txtIsProtectedForms":"문서가 보호되어 있습니다. 이 문서에서는 양식만 작성할 수 있습니다.","DE.Controllers.DocProtection.txtIsProtectedTrack":"문서가 보호되어 있습니다. 이 문서를 편집할 수 있지만 모든 변경 사항이 추적됩니다.","DE.Controllers.DocProtection.txtIsProtectedView":"문서가 보호되어 있습니다. 이 문서를 보기만 가능합니다.","DE.Controllers.DocProtection.txtWasProtectedComment":"문서가 다른 사용자에 의해 보호되었습니다.\n이 문서에는 주석만 삽입할 수 있습니다.","DE.Controllers.DocProtection.txtWasProtectedForms":"문서가 다른 사용자에 의해 보호되었습니다.\n이 문서에서는 양식만 작성할 수 있습니다.","DE.Controllers.DocProtection.txtWasProtectedTrack":"문서가 다른 사용자에 의해 보호되었습니다.\n이 문서를 편집할 수 있지만 모든 변경사항이 추적됩니다.","DE.Controllers.DocProtection.txtWasProtectedView":"문서가 다른 사용자에 의해 보호되었습니다.\n이 문서는 보기만 가능합니다.","DE.Controllers.DocProtection.txtWasUnprotected":"문서가 보호 해제되었습니다.","DE.Controllers.HeaderFooterTab.textFieldExample":"코드 작성 예시: TIME @ \"dddd, MMMM d, yyyy\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"필드 코드","DE.Controllers.HeaderFooterTab.textFieldTitle":"필드","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"페이지 번호붙이기","DE.Controllers.LeftMenu.leavePageText":"이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.","DE.Controllers.LeftMenu.newDocumentTitle":"이름이 없는 문서","DE.Controllers.LeftMenu.notcriticalErrorTitle":"경고","DE.Controllers.LeftMenu.requestEditRightsText":"편집 권한 요청 중 ...","DE.Controllers.LeftMenu.textLoadHistory":"버전 기록 로드 중...","DE.Controllers.LeftMenu.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","DE.Controllers.LeftMenu.textReplaceSkipped":"대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.","DE.Controllers.LeftMenu.textReplaceSuccess":"검색이 완료되었습니다. 발생 횟수가 대체되었습니다 : {0}","DE.Controllers.LeftMenu.textSelectPath":"복사본을 저장할 새 이름을 입력하세요","DE.Controllers.LeftMenu.txtCompatible":"문서가 새 형식으로 저장됩니다. 모든 편집기 기능을 사용할 수 있지만 문서 레이아웃에 영향을 줄 수 있습니다.
이전 버전의 MS Word와 호환되도록 설정하려면 고급 설정에서 \"호환성\" 옵션을 사용하세요.","DE.Controllers.LeftMenu.txtUntitled":"제목없음","DE.Controllers.LeftMenu.warnDownloadAs":"이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다.
계속 하시겠습니까?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"{0}이(가) 편집이 형식으로 변환됩니다. 변환에는 시간이 소요될 수 있습니다. 결과는 텍스트를 편집할 수 있도록 최적화할 수 있으며, 특히 원본 파일에 그래픽이 많이 포함된 경우 원본이 {0}정확하게 일치하지 않을 수 있습니다.","DE.Controllers.LeftMenu.warnDownloadAsRTF":"이 형식으로 계속 저장하면 일부 형식이 손실될 수 있습니다.
계속하시겠습니까?","DE.Controllers.LeftMenu.warnReplaceString":"{0}은 대체 필드에 유효한 특수 문자가 아닙니다.","DE.Controllers.Main.applyChangesTextText":"변경 로드 중 ...","DE.Controllers.Main.applyChangesTitleText":"변경 내용 로드 중","DE.Controllers.Main.confirmMaxChangesSize":"작업의 크기가 서버에 설정된 제한을 초과합니다.
마지막 작업을 취소하려면 '실행 취소'를 누르고 작업을 로컬로 유지하려면 '계속'을 누르세요 (파일을 다운로드하거나 내용을 복사하여 데이터 손실이 없도록 하십시오).","DE.Controllers.Main.convertationTimeoutText":"전환 시간 초과를 초과했습니다.","DE.Controllers.Main.criticalErrorExtText":"문서 목록으로 돌아가려면 \"OK\"를 누르십시오.","DE.Controllers.Main.criticalErrorExtTextClose":"편집기를 닫으려면 \"확인\"을 누르세요.","DE.Controllers.Main.criticalErrorTitle":"오류","DE.Controllers.Main.downloadErrorText":"다운로드하지 못했습니다.","DE.Controllers.Main.downloadMergeText":"다운로드 중 ...","DE.Controllers.Main.downloadMergeTitle":"다운로드 중","DE.Controllers.Main.downloadTextText":"문서 다운로드 중 ...","DE.Controllers.Main.downloadTitleText":"문서 다운로드 중","DE.Controllers.Main.errorAccessDeny":"권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.","DE.Controllers.Main.errorBadImageUrl":"이미지 URL이 잘못되었습니다.","DE.Controllers.Main.errorCannotPasteImg":"이 이미지를 클립보드에서 붙여넣을 수는 없지만 기기에 저장하고,\n거기에서 삽입하거나 텍스트가 없는 이미지를 복사하여 문서에 붙여넣을 수 있습니다.","DE.Controllers.Main.errorCoAuthoringDisconnect":"서버 연결이 끊어졌습니다. 지금 문서를 편집 할 수 없습니다.","DE.Controllers.Main.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","DE.Controllers.Main.errorCompare":"공동 편집 시 \"문서 비교\" 기능을 사용할 수 없습니다.","DE.Controllers.Main.errorConnectToServer":"문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하세요.
\"확인\" 버튼을 클릭하면 문서를 다운로드하라는 메시지가 표시됩니다.","DE.Controllers.Main.errorCopyDisabled":"보안상의 이유로 이 문서의 내용은 복사할 수 없습니다.","DE.Controllers.Main.errorDatabaseConnection":"외부 오류.
데이터베이스 연결 오류입니다. 오류가 계속 발생하면 지원부에 문의하십시오.","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.errorEditProtectedRange":"이 선택 영역은 보호되어 있어 편집할 수 없습니다.","DE.Controllers.Main.errorEmailClient":"이메일 클라이언트를 찾을 수 없습니다.","DE.Controllers.Main.errorEmptyTOC":"선택한 텍스트에 스타일 갤러리에서 제목 스타일을 적용하여 목차를 만들기 시작하세요.","DE.Controllers.Main.errorFilePassProtect":"문서가 암호로 보호되어 있습니다.","DE.Controllers.Main.errorFileSizeExceed":"이 파일은 이 호스트의 크기 제한을 초과합니다.
자세한 내용은 파일 서비스 호스트의 관리자에게 문의하십시오.","DE.Controllers.Main.errorForceSave":"파일 저장중 문제 발생됨. 컴퓨터 하드 드라이브에 파일을 저장하려면 '로 다운로드' 옵션을 사용 또는 나중에 다시 시도하세요.","DE.Controllers.Main.errorInconsistentExt":"파일을 여는 중 오류가 발생했습니다.
파일 내용이 파일 확장명과 일치하지 않습니다.","DE.Controllers.Main.errorInconsistentExtDocx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 텍스트 문서(예: docx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","DE.Controllers.Main.errorInconsistentExtPdf":"파일을 여는 동안 오류가 발생했습니다.
파일 내용은 다음 형식 중 하나에 해당합니다:pdf/djvu/xps/oxps 그러나 파일의 확장자가 일치하지 않습니다:%1.","DE.Controllers.Main.errorInconsistentExtPptx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 프리젠테이션(예: pptx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","DE.Controllers.Main.errorInconsistentExtXlsx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용은 스프레드시트(예: xlsx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","DE.Controllers.Main.errorKeyEncrypt":"알 수없는 키 설명자","DE.Controllers.Main.errorKeyExpire":"키 설명자가 만료되었습니다","DE.Controllers.Main.errorLoadingFont":"글꼴 불러오기에 실패하였습니다.
문서 시스템 관리자에게 문의하세요.","DE.Controllers.Main.errorMailMergeLoadFile":"문서 읽기에 실패했습니다. 다른 파일을 선택하십시오.","DE.Controllers.Main.errorMailMergeSaveFile":"병합하지 못했습니다.","DE.Controllers.Main.errorNoTOC":"업데이트할 목차가 없습니다. 참조 탭에서 삽입할 수 있습니다.","DE.Controllers.Main.errorPasswordIsNotCorrect":"잘못된 비밀번호.
캡 잠금 버튼이 꺼져 있는지 확인하고 올바른 대문자를 사용해야 합니다.","DE.Controllers.Main.errorSaveWatermark":"이 파일에는 다른 도메인에 연결된 워터마크 이미지가 포함되어 있습니다.
PDF에서 이미지를 표시하려면 문서와 동일한 도메인에서 링크되도록 업데이트하거나 컴퓨터에서 직접 업로드하세요.","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.errorTextFormWrongFormat":"입력한 값이 필드 형식과 일치하지 않습니다.","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.leavePageTextOnClose":"이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.","DE.Controllers.Main.loadFontsTextText":"데이터 로드 중 ...","DE.Controllers.Main.loadFontsTitleText":"데이터 로드 중","DE.Controllers.Main.loadFontTextText":"데이터 로드 중 ...","DE.Controllers.Main.loadFontTitleText":"데이터 로드 중","DE.Controllers.Main.loadImagesTextText":"이미지 로드 중 ...","DE.Controllers.Main.loadImagesTitleText":"이미지 로드 중","DE.Controllers.Main.loadImageTextText":"이미지 로드 중 ...","DE.Controllers.Main.loadImageTitleText":"이미지 로드 중","DE.Controllers.Main.loadingDocumentTextText":"문서 로드 중 ...","DE.Controllers.Main.loadingDocumentTitleText":"문서 로드 중","DE.Controllers.Main.mailMergeLoadFileText":"데이터 소스 로드 중 ...","DE.Controllers.Main.mailMergeLoadFileTitle":"데이터 소스 로드 중","DE.Controllers.Main.notcriticalErrorTitle":"경고","DE.Controllers.Main.openErrorText":"파일을 여는 동안 오류가 발생했습니다.","DE.Controllers.Main.openTextText":"문서 열기 중 ...","DE.Controllers.Main.openTitleText":"문서 열기","DE.Controllers.Main.printTextText":"문서 인쇄 중 ...","DE.Controllers.Main.printTitleText":"문서 인쇄 중","DE.Controllers.Main.reloadButtonText":"페이지 새로 고침","DE.Controllers.Main.requestEditFailedMessageText":"누군가이 문서를 지금 편집하고 있습니다. 나중에 다시 시도하십시오.","DE.Controllers.Main.requestEditFailedTitleText":"액세스가 거부되었습니다","DE.Controllers.Main.saveErrorText":"파일을 저장하는 동안 오류가 발생했습니다.","DE.Controllers.Main.saveErrorTextDesktop":"이 파일을 저장하거나 생성할 수 없습니다.
가능한 이유는 다음과 같습니다.
1. 파일이 읽기 전용입니다.
2. 다른 사용자가 파일을 편집 중입니다.
3. 디스크가 가득 찼거나 손상되었습니다.","DE.Controllers.Main.saveTextText":"문서 저장 중 ...","DE.Controllers.Main.saveTitleText":"문서 저장 중","DE.Controllers.Main.savingText":"저장 중","DE.Controllers.Main.scriptLoadError":"연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.","DE.Controllers.Main.sendMergeText":"병합 결과 보내는 중","DE.Controllers.Main.sendMergeTitle":"병합 결과 보내기","DE.Controllers.Main.splitDividerErrorText":"행 수는 %1 의 제수 여야합니다.","DE.Controllers.Main.splitMaxColsErrorText":"열 수가 %1 보다 작아야합니다.","DE.Controllers.Main.splitMaxRowsErrorText":"행 수가 %1 보다 적어야합니다.","DE.Controllers.Main.textAnonymous":"익명","DE.Controllers.Main.textAnyone":"누구나","DE.Controllers.Main.textApplyAll":"모든 방정식에 적용","DE.Controllers.Main.textBuyNow":"웹 사이트 방문","DE.Controllers.Main.textChangesSaved":"모든 변경 사항이 저장되었습니다","DE.Controllers.Main.textClose":"닫기","DE.Controllers.Main.textCloseTip":"도움말을 닫으려면 클릭하십시오","DE.Controllers.Main.textConnectionLost":"연결을 시도 중입니다. 연결 설정을 확인해 주세요.","DE.Controllers.Main.textContactUs":"영업 담당자에게 문의","DE.Controllers.Main.textContinue":"계속","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.textPaidFeature":"유료기능","DE.Controllers.Main.textReconnect":"연결이 복원되었습니다","DE.Controllers.Main.textRemember":"모든 파일에 대한 선택 사항을 기억하기","DE.Controllers.Main.textRememberMacros":"모든 매크로에 대한 내 선택 기억","DE.Controllers.Main.textRenameError":"사용자 이름은 비워둘 수 없습니다.","DE.Controllers.Main.textRenameLabel":"협업에 사용할 이름을 입력합니다","DE.Controllers.Main.textRequestMacros":"매크로에서 URL로 요청합니다. %1에게 요청을 허용하시겠습니까?","DE.Controllers.Main.textShape":"도형","DE.Controllers.Main.textSignature":"서명","DE.Controllers.Main.textStrict":"엄격 모드","DE.Controllers.Main.textText":"본문","DE.Controllers.Main.textTryQuickPrint":"빠른 인쇄를 선택했습니다. 전체 문서가 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.
계속하시겠습니까?","DE.Controllers.Main.textTryUndoRedo":"빠른 공동-편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"엄격 모드\" 버튼을 클릭하면 엄격한 공동-편집 모드로 전환되어 다른 사용자의 방해 없이 파일을 편집 할 수 있고 저장 후에 만 ​​변경 사항을 보냅니다. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ","DE.Controllers.Main.textTryUndoRedoWarn":"빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.","DE.Controllers.Main.textUndo":"실행 취소","DE.Controllers.Main.textUpdateVersion":"현재 문서를 편집할 수 없습니다.
파일을 업데이트 중입니다. 잠시만 기다려 주세요...","DE.Controllers.Main.textUpdating":"업데이트 중","DE.Controllers.Main.tipLicenseExceeded":"라이선스에서 허용된 최대 동시 연결 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","DE.Controllers.Main.tipLicenseUsersExceeded":"문서가 라이선스에 따라 편집할 수 있는 최대 인원에 도달하여 읽기 전용 모드로 열렸습니다.

편집을 원한다면 나중에 다시 시도하던지 관리자에게 연락하세요.","DE.Controllers.Main.titleLicenseExp":"라이선스 만료","DE.Controllers.Main.titleLicenseNotActive":"라이선스가 활성화되지 않음","DE.Controllers.Main.titleReadOnly":"읽기 전용 모드","DE.Controllers.Main.titleServerVersion":"편집기가 업데이트됨","DE.Controllers.Main.titleUpdateVersion":"버전이 변경되었습니다.","DE.Controllers.Main.txtAbove":"위","DE.Controllers.Main.txtArt":"여기에 텍스트를 입력하세요","DE.Controllers.Main.txtBasicShapes":"기본 도형","DE.Controllers.Main.txtBelow":"아래","DE.Controllers.Main.txtBookmarkError":"오류! 즐겨찾기가 정의되지 않음","DE.Controllers.Main.txtButtons":"버튼","DE.Controllers.Main.txtCallouts":"설명선","DE.Controllers.Main.txtCharts":"차트","DE.Controllers.Main.txtChoose":"아이템 선택","DE.Controllers.Main.txtClickToLoad":"이미지를 불러오려면 클릭하세요","DE.Controllers.Main.txtCurrentDocument":"현재 문서","DE.Controllers.Main.txtDiagramTitle":"차트 제목","DE.Controllers.Main.txtEditingMode":"편집 모드 설정 ...","DE.Controllers.Main.txtEndOfFormula":"수식의 예기치 않은 종료","DE.Controllers.Main.txtEnterDate":"미주 날짜","DE.Controllers.Main.txtErrorLoadHistory":"기록로드 실패","DE.Controllers.Main.txtEvenPage":"짝수 페이지","DE.Controllers.Main.txtFiguredArrows":"블록 화살표","DE.Controllers.Main.txtFirstPage":"첫 페이지","DE.Controllers.Main.txtFooter":"꼬리말","DE.Controllers.Main.txtFormulaNotInTable":"표에 없는 수식","DE.Controllers.Main.txtHeader":"머리글","DE.Controllers.Main.txtHyperlink":"하이퍼 링크","DE.Controllers.Main.txtIndTooLarge":"색인이 너무 큽니다","DE.Controllers.Main.txtLines":"선","DE.Controllers.Main.txtMainDocOnly":"오류! 주요 문서만 해당됨.","DE.Controllers.Main.txtMath":"수학","DE.Controllers.Main.txtMissArg":"인수가 없습니다","DE.Controllers.Main.txtMissOperator":"연산자가 없습니다","DE.Controllers.Main.txtNeedSynchronize":"업데이트가 있음","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.txtSameAsPrev":"이전과 동일","DE.Controllers.Main.txtSaveCopyAsComplete":"파일 복사본이 성공적으로 저장되었습니다","DE.Controllers.Main.txtScheme_Aspect":"종횡비","DE.Controllers.Main.txtScheme_Blue":"파랑","DE.Controllers.Main.txtScheme_Blue_Green":"청록","DE.Controllers.Main.txtScheme_Blue_II":"파랑 II","DE.Controllers.Main.txtScheme_Blue_Warm":"따뜻한 파랑","DE.Controllers.Main.txtScheme_Grayscale":"그레이스케일","DE.Controllers.Main.txtScheme_Green":"초록","DE.Controllers.Main.txtScheme_Green_Yellow":"연두","DE.Controllers.Main.txtScheme_Marquee":"선택 윤곽선","DE.Controllers.Main.txtScheme_Median":"중앙값","DE.Controllers.Main.txtScheme_Office":"오피스","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"주황","DE.Controllers.Main.txtScheme_Orange_Red":"주홍색","DE.Controllers.Main.txtScheme_Paper":"용지","DE.Controllers.Main.txtScheme_Red":"빨강","DE.Controllers.Main.txtScheme_Red_Orange":"적주황","DE.Controllers.Main.txtScheme_Red_Violet":"자홍색","DE.Controllers.Main.txtScheme_Slipstream":"슬립스트림","DE.Controllers.Main.txtScheme_Violet":"보라","DE.Controllers.Main.txtScheme_Violet_II":"보라 II","DE.Controllers.Main.txtScheme_Yellow":"노랑","DE.Controllers.Main.txtScheme_Yellow_Orange":"황주황","DE.Controllers.Main.txtSection":"섹션","DE.Controllers.Main.txtSeries":"Series","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_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_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_Book_Title":"표제","DE.Controllers.Main.txtStyle_Caption":"참조","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"기본 문단 글꼴","DE.Controllers.Main.txtStyle_Emphasis":"강조","DE.Controllers.Main.txtStyle_endnote_reference":"미주 참조","DE.Controllers.Main.txtStyle_endnote_text":"미주 텍스트","DE.Controllers.Main.txtStyle_footnote_reference":"각주 참조","DE.Controllers.Main.txtStyle_footnote_text":"각주 텍스트","DE.Controllers.Main.txtStyle_Heading_1":"제목 1","DE.Controllers.Main.txtStyle_Heading_2":"제목 2","DE.Controllers.Main.txtStyle_Heading_3":"제목 3","DE.Controllers.Main.txtStyle_Heading_4":"제목 4","DE.Controllers.Main.txtStyle_Heading_5":"제목 5","DE.Controllers.Main.txtStyle_Heading_6":"제목 6","DE.Controllers.Main.txtStyle_Heading_7":"제목 7","DE.Controllers.Main.txtStyle_Heading_8":"제목 8","DE.Controllers.Main.txtStyle_Heading_9":"제목 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"강한 강조","DE.Controllers.Main.txtStyle_Intense_Quote":"강한 인용","DE.Controllers.Main.txtStyle_Intense_Reference":"강한 강조","DE.Controllers.Main.txtStyle_List_Paragraph":"단락 목록","DE.Controllers.Main.txtStyle_No_List":"목록 없음","DE.Controllers.Main.txtStyle_No_Spacing":"간격 없음","DE.Controllers.Main.txtStyle_Normal":"일반","DE.Controllers.Main.txtStyle_Quote":"인용","DE.Controllers.Main.txtStyle_Strong":"굵은 텍스트","DE.Controllers.Main.txtStyle_Subtitle":"부제","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"약한 강조","DE.Controllers.Main.txtStyle_Subtle_Reference":"약한 참조","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.updateChartText":"차트 데이터 업데이트 중…","DE.Controllers.Main.uploadDocExtMessage":"알 수 없는 파일 형식입니다.","DE.Controllers.Main.uploadDocFileCountMessage":"업로드 된 문서가 없습니다.","DE.Controllers.Main.uploadDocSizeMessage":"최대 문서 크기 제한을 초과했습니다.","DE.Controllers.Main.uploadImageExtMessage":"알 수없는 이미지 형식입니다.","DE.Controllers.Main.uploadImageFileCountMessage":"이미지가 업로드되지 않았습니다.","DE.Controllers.Main.uploadImageSizeMessage":"이미지 크기 제한을 초과했습니다.","DE.Controllers.Main.uploadImageTextText":"이미지 업로드 중 ...","DE.Controllers.Main.uploadImageTitleText":"이미지 업로드 중","DE.Controllers.Main.waitText":"잠시만 기다려주세요...","DE.Controllers.Main.warnBrowserIE9":"응용 프로그램의 기능이 IE9에서 부족합니다. IE10 이상을 사용하십시오.","DE.Controllers.Main.warnBrowserZoom":"브라우저의 현재 확대/축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대/축소로 재설정하십시오.","DE.Controllers.Main.warnLicenseAnonymous":"익명 사용자에 대한 접근이 거부되었습니다.
이 문서는 보기 전용으로 열립니다.","DE.Controllers.Main.warnLicenseBefore":"라이선스가 활성화되지 않았습니다.
관리자에게 문의하세요.","DE.Controllers.Main.warnLicenseExp":"귀하의 라이선스가 만료되었습니다.
라이선스를 업데이트하고 페이지를 새로고침하십시오.","DE.Controllers.Main.warnLicenseLimitedNoAccess":"라이선스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.","DE.Controllers.Main.warnLicenseLimitedRenewed":"라이선스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오","DE.Controllers.Main.warnNoLicense":"%1 편집기에 동시 연결 한도에 도달했습니다. 이 문서는 보기로만 열릴 것입니다.
개별 업그레이드 조건에 대한 안내는 %1 영업팀에 문의하십시오.","DE.Controllers.Main.warnNoLicenseUsers":"%1 편집기의 사용자 한도에 도달했습니다.
개별 업그레이드 조건에 대한 안내는 %1 영업팀에 문의하십시오.","DE.Controllers.Main.warnProcessRightsChange":"파일 편집 권한이 거부되었습니다.","DE.Controllers.Main.warnStartFilling":"양식 작성이 진행 중입니다.
현재 파일 편집은 사용할 수 없습니다.","DE.Controllers.Navigation.txtBeginning":"문서의 시작","DE.Controllers.Navigation.txtGotoBeginning":"문서의 처음으로 이동","DE.Controllers.Print.textMarginsLast":"마지막 사용자 정의","DE.Controllers.Print.txtCustom":"사용자 정의","DE.Controllers.Print.txtPrintRangeInvalid":"잘못된 인쇄 범위","DE.Controllers.Search.notcriticalErrorTitle":"경고","DE.Controllers.Search.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","DE.Controllers.Search.textReplaceSkipped":"대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.","DE.Controllers.Search.textReplaceSuccess":"검색이 완료되었습니다. {0}번의 항목이 대체되었습니다.","DE.Controllers.Search.warnReplaceString":"{0}은 상자로 대체하기에 유효한 특수 문자가 아닙니다.","DE.Controllers.Statusbar.textDisconnect":"연결이 끊어졌습니다
연결 시도 중입니다. 연결 설정을 확인해 주세요.","DE.Controllers.Statusbar.textHasChanges":"새로운 변경 내역이 조회되었습니다","DE.Controllers.Statusbar.textSetTrackChanges":"변경 내용 추적 모드 사용중","DE.Controllers.Statusbar.textTrackChanges":"변경 내용 추적 기능이 활성화된 상태에서 문서가 열립니다.","DE.Controllers.Statusbar.tipReview":"변경 내용 추적","DE.Controllers.Statusbar.zoomText":"확대/축소 {0} %","DE.Controllers.Toolbar.confirmAddFontName":"저장하려는 글꼴을 현재 장치에서 사용할 수 없습니다.
시스템 글꼴 중 하나를 사용하여 텍스트 스타일을 표시하고 저장된 글꼴을 사용할 때 사용할 수 있습니다.
계속 하시겠습니까? ","DE.Controllers.Toolbar.dataUrl":"데이터 URL 붙여넣기","DE.Controllers.Toolbar.errorAccessDeny":"권한이 없는 작업을 시도하고 있습니다.
문서 서버 관리자에게 문의하세요.","DE.Controllers.Toolbar.fileUrl":"파일 URL 붙여넣기","DE.Controllers.Toolbar.helpChartElements":"몇 번의 클릭만으로 차트 요소의 표시 여부를 쉽게 전환할 수 있습니다.","DE.Controllers.Toolbar.helpChartElementsHeader":"차트 요소 표시","DE.Controllers.Toolbar.helpCommentFilter":"왼쪽 패널에서 열린 댓글과 해결된 댓글을 전환하여 보기 상태를 관리합니다.","DE.Controllers.Toolbar.helpCommentFilterHeader":"댓글 필터","DE.Controllers.Toolbar.notcriticalErrorTitle":"경고","DE.Controllers.Toolbar.textAccent":"Accents","DE.Controllers.Toolbar.textBracket":"대괄호","DE.Controllers.Toolbar.textConvertFormDownload":"파일을 작성 가능한 PDF 양식으로 다운로드하여 입력할 수 있습니다.","DE.Controllers.Toolbar.textConvertFormSave":"파일을 작성 가능한 PDF 양식으로 저장하여 입력할 수 있습니다.","DE.Controllers.Toolbar.textDownloadPdf":"PDF 다운로드","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":"대형 연산자","DE.Controllers.Toolbar.textLimitAndLog":"한계 및 로그 수","DE.Controllers.Toolbar.textMatrix":"행렬","DE.Controllers.Toolbar.textOperator":"연산자","DE.Controllers.Toolbar.textRadical":"근호","DE.Controllers.Toolbar.textRecentlyUsed":"최근 사용된","DE.Controllers.Toolbar.textSavePdf":"PDF로 저장","DE.Controllers.Toolbar.textScript":"스크립트","DE.Controllers.Toolbar.textSymbols":"기호","DE.Controllers.Toolbar.textTabForms":"폼","DE.Controllers.Toolbar.textWarning":"경고","DE.Controllers.Toolbar.txtAccent_Accent":"Acute","DE.Controllers.Toolbar.txtAccent_ArrowD":"오른쪽 위 왼쪽 화살표","DE.Controllers.Toolbar.txtAccent_ArrowL":"왼쪽 위 화살표","DE.Controllers.Toolbar.txtAccent_ArrowR":"오른쪽 위 화살표 위","DE.Controllers.Toolbar.txtAccent_Bar":"Bar","DE.Controllers.Toolbar.txtAccent_BarBot":"밑줄","DE.Controllers.Toolbar.txtAccent_BarTop":"오버바","DE.Controllers.Toolbar.txtAccent_BorderBox":"상자가있는 수식 (자리 표시 자 포함)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"상자화 된 수식 (예)","DE.Controllers.Toolbar.txtAccent_Check":"확인","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"아래쪽 중괄호","DE.Controllers.Toolbar.txtAccent_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","DE.Controllers.Toolbar.txtAccent_DDDot":"트리플 도트","DE.Controllers.Toolbar.txtAccent_DDot":"Double Dot","DE.Controllers.Toolbar.txtAccent_Dot":"Dot","DE.Controllers.Toolbar.txtAccent_DoubleBar":"Double Overbar","DE.Controllers.Toolbar.txtAccent_Grave":"무덤","DE.Controllers.Toolbar.txtAccent_GroupBot":"아래의 문자 그룹화","DE.Controllers.Toolbar.txtAccent_GroupTop":"위의 그룹화 문자","DE.Controllers.Toolbar.txtAccent_HarpoonL":"Leftwards Harpoon Above","DE.Controllers.Toolbar.txtAccent_HarpoonR":"Rightwards Harpoon Above","DE.Controllers.Toolbar.txtAccent_Hat":"모자","DE.Controllers.Toolbar.txtAccent_Smile":"Breve","DE.Controllers.Toolbar.txtAccent_Tilde":"물결표","DE.Controllers.Toolbar.txtBracket_Angle":"대괄호","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"구분 기호가있는 대괄호","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"구분 기호가 있는 대괄호","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_Curve":"대괄호","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"구분 기호가있는 대괄호","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_Custom_1":"사례 (두 조건)","DE.Controllers.Toolbar.txtBracket_Custom_2":"사례 (세 조건)","DE.Controllers.Toolbar.txtBracket_Custom_3":"Stack Object","DE.Controllers.Toolbar.txtBracket_Custom_4":"Stack Object","DE.Controllers.Toolbar.txtBracket_Custom_5":"사례 사례","DE.Controllers.Toolbar.txtBracket_Custom_6":"이항 계수","DE.Controllers.Toolbar.txtBracket_Custom_7":"이항 계수 (괄호 포함)","DE.Controllers.Toolbar.txtBracket_Line":"대괄호","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_LineDouble":"대괄호","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_LowLim":"대괄호","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_Round":"대괄호","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"구분 기호가있는 대괄호","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"단일 브래킷","DE.Controllers.Toolbar.txtBracket_Square":"대괄호","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"대괄호","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"대괄호","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"대괄호","DE.Controllers.Toolbar.txtBracket_SquareDouble":"대괄호","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_UppLim":"대괄호","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"단일 대괄호","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"단일 대괄호","DE.Controllers.Toolbar.txtDownload":"다운로드","DE.Controllers.Toolbar.txtFractionDiagonal":"Skewed Fraction","DE.Controllers.Toolbar.txtFractionDifferential_1":"미분","DE.Controllers.Toolbar.txtFractionDifferential_2":"대문자 델타 y/대문자 델타 x","DE.Controllers.Toolbar.txtFractionDifferential_3":"Differential","DE.Controllers.Toolbar.txtFractionDifferential_4":"미분","DE.Controllers.Toolbar.txtFractionHorizontal":"선형 분수","DE.Controllers.Toolbar.txtFractionPi_2":"파이 오버 2","DE.Controllers.Toolbar.txtFractionSmall":"Small Fraction","DE.Controllers.Toolbar.txtFractionVertical":"Stacked Fraction","DE.Controllers.Toolbar.txtFunction_1_Cos":"역 코사인 함수","DE.Controllers.Toolbar.txtFunction_1_Cosh":"쌍곡선 역 코사인 함수","DE.Controllers.Toolbar.txtFunction_1_Cot":"역 코탄젠트 함수","DE.Controllers.Toolbar.txtFunction_1_Coth":"쌍곡선 역 코탄젠트 함수","DE.Controllers.Toolbar.txtFunction_1_Csc":"Inverse Cosecant Function","DE.Controllers.Toolbar.txtFunction_1_Csch":"쌍곡선 반전 Cosecant 함수","DE.Controllers.Toolbar.txtFunction_1_Sec":"역 분개 함수","DE.Controllers.Toolbar.txtFunction_1_Sech":"쌍곡선 역 보조 함수","DE.Controllers.Toolbar.txtFunction_1_Sin":"역 사인 함수","DE.Controllers.Toolbar.txtFunction_1_Sinh":"쌍곡선 역 사인 함수","DE.Controllers.Toolbar.txtFunction_1_Tan":"역 탄젠트 함수","DE.Controllers.Toolbar.txtFunction_1_Tanh":"쌍곡선 역 탄젠트 함수","DE.Controllers.Toolbar.txtFunction_Cos":"코사인 함수","DE.Controllers.Toolbar.txtFunction_Cosh":"쌍곡선 코사인 함수","DE.Controllers.Toolbar.txtFunction_Cot":"Cotangent Function","DE.Controllers.Toolbar.txtFunction_Coth":"쌍곡선 코탄 센트 함수","DE.Controllers.Toolbar.txtFunction_Csc":"Cosecant 함수","DE.Controllers.Toolbar.txtFunction_Csch":"쌍곡선 보조 함수","DE.Controllers.Toolbar.txtFunction_Custom_1":"Sine theta","DE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"탄젠트 공식","DE.Controllers.Toolbar.txtFunction_Sec":"Secant 함수","DE.Controllers.Toolbar.txtFunction_Sech":"쌍곡선 시컨트 함수","DE.Controllers.Toolbar.txtFunction_Sin":"사인 함수","DE.Controllers.Toolbar.txtFunction_Sinh":"쌍곡선 사인 함수","DE.Controllers.Toolbar.txtFunction_Tan":"탄젠트 함수","DE.Controllers.Toolbar.txtFunction_Tanh":"쌍곡선 탄젠트 함수","DE.Controllers.Toolbar.txtIntegral":"Integral","DE.Controllers.Toolbar.txtIntegral_dtheta":"Differential theta","DE.Controllers.Toolbar.txtIntegral_dx":"Differential x","DE.Controllers.Toolbar.txtIntegral_dy":"Differential y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"미분","DE.Controllers.Toolbar.txtIntegralDouble":"Double Integral","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"이중 적분","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"이중 적분","DE.Controllers.Toolbar.txtIntegralOriented":"Contour Integral","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"선적분(상하단값을 상하에 배치)","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"표면 적분","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"표면 적분","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"표면 적분","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"선적분(상하단값 있음)","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"볼륨 정수","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"볼륨 정수","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"볼륨 정수","DE.Controllers.Toolbar.txtIntegralSubSup":"적분","DE.Controllers.Toolbar.txtIntegralTriple":"삼중적분","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"삼중적분","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"Triple Integral","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Wedge","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"Co-Product","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"하한값","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"한계값","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"아래 첨자 하한값","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"아래 첨자/위 첨자 극한","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"합계","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"합계","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"합계","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Product","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"조합","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"Vee","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"교차점","DE.Controllers.Toolbar.txtLargeOperator_Prod":"제품","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Product","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Product","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Product","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Product","DE.Controllers.Toolbar.txtLargeOperator_Sum":"합계","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"합계","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"합계","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"합계","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"합계","DE.Controllers.Toolbar.txtLargeOperator_Union":"Union","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"조합","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"조합","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"조합","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"조합","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"제한 예제","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"최대 예제","DE.Controllers.Toolbar.txtLimitLog_Lim":"제한","DE.Controllers.Toolbar.txtLimitLog_Ln":"자연 로그","DE.Controllers.Toolbar.txtLimitLog_Log":"로그","DE.Controllers.Toolbar.txtLimitLog_LogBase":"로그","DE.Controllers.Toolbar.txtLimitLog_Max":"최대","DE.Controllers.Toolbar.txtLimitLog_Min":"Minimum","DE.Controllers.Toolbar.txtMarginsH":"주어진 페이지 높이에 대해 위쪽 및 아래쪽 여백이 너무 높습니다.","DE.Controllers.Toolbar.txtMarginsW":"왼쪽 및 오른쪽 여백이 주어진 페이지 폭에 비해 너무 넓습니다.","DE.Controllers.Toolbar.txtMatrix_1_2":"1x2 빈 행렬","DE.Controllers.Toolbar.txtMatrix_1_3":"1x3 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_1":"2x1 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2":"2x2 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"괄호가있는 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"대괄호가있는 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"괄호가있는 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"괄호가있는 빈 행렬","DE.Controllers.Toolbar.txtMatrix_2_3":"2x3 빈 행렬","DE.Controllers.Toolbar.txtMatrix_3_1":"3x1 빈 행렬","DE.Controllers.Toolbar.txtMatrix_3_2":"3x2 빈 행렬","DE.Controllers.Toolbar.txtMatrix_3_3":"3x3 빈 행렬","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"기준점","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"중간선 점","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"대각선 점","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"수직 점","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"희소 행렬","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"괄호 안의 희소 행렬","DE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 단위 행렬 (0 있음)","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"빈 대각선 셀이 있는 2x2 단위 행렬","DE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 단위 행렬 (0 있음)","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3 단위 행렬","DE.Controllers.Toolbar.txtNeedDownload":"PDF 뷰어는 변경 사항을 별도의 파일 복사본으로만 저장할 수 있습니다. 공동 편집은 지원되지 않으며, 다른 사용자는 새 파일 버전을 공유하지 않으면 변경 내용을 볼 수 없습니다.","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"아래 오른쪽 화살표","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"오른쪽 위 왼쪽 화살표","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"왼쪽 아래쪽 화살표","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"왼쪽 위 화살표","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"오른쪽 아래 화살표","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"오른쪽 위 화살표 위","DE.Controllers.Toolbar.txtOperator_ColonEquals":"콜론 균등","DE.Controllers.Toolbar.txtOperator_Custom_1":"수익률","DE.Controllers.Toolbar.txtOperator_Custom_2":"Delta Yields","DE.Controllers.Toolbar.txtOperator_Definition":"정의에 따라 같음","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta Equal To","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"아래 오른쪽 화살표","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"오른쪽 위 왼쪽 화살표","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"왼쪽 아래쪽 화살표","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"왼쪽 위 화살표 위","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"오른쪽 아래 화살표","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"오른쪽 위 화살표 위","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"Equal Equal","DE.Controllers.Toolbar.txtOperator_MinusEquals":"Minus Equal","DE.Controllers.Toolbar.txtOperator_PlusEquals":"덧셈 등호","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"측정 기준","DE.Controllers.Toolbar.txtRadicalCustom_1":"Radical","DE.Controllers.Toolbar.txtRadicalCustom_2":"Radical","DE.Controllers.Toolbar.txtRadicalRoot_2":"학위가있는 제곱근","DE.Controllers.Toolbar.txtRadicalRoot_3":"Cubic Root","DE.Controllers.Toolbar.txtRadicalRoot_n":"학위가 있는 급진파","DE.Controllers.Toolbar.txtRadicalSqrt":"Square Root","DE.Controllers.Toolbar.txtSaveCopy":"복사본 저장","DE.Controllers.Toolbar.txtScriptCustom_1":"스크립트","DE.Controllers.Toolbar.txtScriptCustom_2":"스크립트","DE.Controllers.Toolbar.txtScriptCustom_3":"스크립트","DE.Controllers.Toolbar.txtScriptCustom_4":"스크립트","DE.Controllers.Toolbar.txtScriptSub":"아래 첨자","DE.Controllers.Toolbar.txtScriptSubSup":"아래 첨자 - 위 첨자","DE.Controllers.Toolbar.txtScriptSubSupLeft":"왼쪽 아래 첨자-위 첨자","DE.Controllers.Toolbar.txtScriptSup":"위 첨자","DE.Controllers.Toolbar.txtSymbol_about":"대략","DE.Controllers.Toolbar.txtSymbol_additional":"Complement","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Alpha","DE.Controllers.Toolbar.txtSymbol_approx":"거의 동일","DE.Controllers.Toolbar.txtSymbol_ast":"별표 연산자","DE.Controllers.Toolbar.txtSymbol_beta":"베타","DE.Controllers.Toolbar.txtSymbol_beth":"Bet","DE.Controllers.Toolbar.txtSymbol_bullet":"글 머리 기호 연산자","DE.Controllers.Toolbar.txtSymbol_cap":"교차점","DE.Controllers.Toolbar.txtSymbol_cbrt":"큐브 루트","DE.Controllers.Toolbar.txtSymbol_cdots":"중간 말줄임표","DE.Controllers.Toolbar.txtSymbol_celsius":"섭씨도","DE.Controllers.Toolbar.txtSymbol_chi":"Chi","DE.Controllers.Toolbar.txtSymbol_cong":"대략 같음","DE.Controllers.Toolbar.txtSymbol_cup":"Union","DE.Controllers.Toolbar.txtSymbol_ddots":"오른쪽 아래 대각선 줄임표","DE.Controllers.Toolbar.txtSymbol_degree":"도","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"나누기 기호","DE.Controllers.Toolbar.txtSymbol_downarrow":"화살표: 아래쪽","DE.Controllers.Toolbar.txtSymbol_emptyset":"빈 세트","DE.Controllers.Toolbar.txtSymbol_epsilon":"Epsilon","DE.Controllers.Toolbar.txtSymbol_equals":"Equal","DE.Controllers.Toolbar.txtSymbol_equiv":"동일함","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"존재함","DE.Controllers.Toolbar.txtSymbol_factorial":"Factorial","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"화씨","DE.Controllers.Toolbar.txtSymbol_forall":"모두에게","DE.Controllers.Toolbar.txtSymbol_gamma":"감마","DE.Controllers.Toolbar.txtSymbol_geq":"크거나 같음","DE.Controllers.Toolbar.txtSymbol_gg":"훨씬 더 큼","DE.Controllers.Toolbar.txtSymbol_greater":"보다 큼","DE.Controllers.Toolbar.txtSymbol_in":"요소","DE.Controllers.Toolbar.txtSymbol_inc":"증가","DE.Controllers.Toolbar.txtSymbol_infinity":"무한대","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_leftrightarrow":"왼쪽 / 오른쪽 화살표","DE.Controllers.Toolbar.txtSymbol_leq":"보다 작거나 같음","DE.Controllers.Toolbar.txtSymbol_less":"보다 작음","DE.Controllers.Toolbar.txtSymbol_ll":"훨씬 적습니다","DE.Controllers.Toolbar.txtSymbol_minus":"Minus","DE.Controllers.Toolbar.txtSymbol_mp":"마이너스 플러스","DE.Controllers.Toolbar.txtSymbol_mu":"Mu","DE.Controllers.Toolbar.txtSymbol_nabla":"나블라","DE.Controllers.Toolbar.txtSymbol_neq":"같지 않음","DE.Controllers.Toolbar.txtSymbol_ni":"회원으로 포함","DE.Controllers.Toolbar.txtSymbol_not":"부호 없음","DE.Controllers.Toolbar.txtSymbol_notexists":"존재하지 않습니다","DE.Controllers.Toolbar.txtSymbol_nu":"Nu","DE.Controllers.Toolbar.txtSymbol_o":"오미크론","DE.Controllers.Toolbar.txtSymbol_omega":"오메가","DE.Controllers.Toolbar.txtSymbol_partial":"부분 미분","DE.Controllers.Toolbar.txtSymbol_percent":"백분율","DE.Controllers.Toolbar.txtSymbol_phi":"Phi","DE.Controllers.Toolbar.txtSymbol_pi":"파이","DE.Controllers.Toolbar.txtSymbol_plus":"덧셈","DE.Controllers.Toolbar.txtSymbol_pm":"플러스 마이너스","DE.Controllers.Toolbar.txtSymbol_propto":"비례","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"네 번째 루트","DE.Controllers.Toolbar.txtSymbol_qed":"증명 종료","DE.Controllers.Toolbar.txtSymbol_rddots":"오른쪽 위 대각선 줄임표","DE.Controllers.Toolbar.txtSymbol_rho":"Rho","DE.Controllers.Toolbar.txtSymbol_rightarrow":"화살표: 오른쪽","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"\b근호","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_upsilon":"Upsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Epsilon Variant","DE.Controllers.Toolbar.txtSymbol_varphi":"Phi Variant","DE.Controllers.Toolbar.txtSymbol_varpi":"파이 변형","DE.Controllers.Toolbar.txtSymbol_varrho":"Rho Variant","DE.Controllers.Toolbar.txtSymbol_varsigma":"Sigma Variant","DE.Controllers.Toolbar.txtSymbol_vartheta":"Theta Variant","DE.Controllers.Toolbar.txtSymbol_vdots":"세로 줄임표","DE.Controllers.Toolbar.txtSymbol_xsi":"Xi","DE.Controllers.Toolbar.txtSymbol_zeta":"제타","DE.Controllers.Toolbar.txtUntitled":"제목 없음","DE.Controllers.Viewport.textFitPage":"페이지에 맞춤","DE.Controllers.Viewport.textFitWidth":"너비에 맞춤","DE.Controllers.Viewport.txtDarkMode":"다크 모드","DE.Views.BookmarksDialog.textAdd":"추가","DE.Views.BookmarksDialog.textAddAndGetLink":"추가 및 링크 받기","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.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.textLabelError":"레이블은 비워 둘 수 없습니다.","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.CellsRemoveDialog.textCol":"전체 열 삭제","DE.Views.CellsRemoveDialog.textLeft":"셀을 왼쪽으로 이동","DE.Views.CellsRemoveDialog.textRow":"전체 행 삭제","DE.Views.CellsRemoveDialog.textTitle":"셀 삭제","DE.Views.ChartSettings.text3dDepth":"깊이 (기준에 대한 비율)","DE.Views.ChartSettings.text3dHeight":"높이(%)","DE.Views.ChartSettings.text3dRotation":"3D 회전","DE.Views.ChartSettings.textAdvanced":"고급 설정 표시","DE.Views.ChartSettings.textAutoscale":"자동 크기 조정","DE.Views.ChartSettings.textChartType":"차트 유형 변경","DE.Views.ChartSettings.textData":"데이터","DE.Views.ChartSettings.textDefault":"기본 로테이션","DE.Views.ChartSettings.textDown":"아래로","DE.Views.ChartSettings.textEditData":"데이터 편집","DE.Views.ChartSettings.textEditLinks":"연결 편집","DE.Views.ChartSettings.textHeight":"높이","DE.Views.ChartSettings.textKeepRatio":"비율 고정","DE.Views.ChartSettings.textLeft":"왼쪽","DE.Views.ChartSettings.textLinkedData":"연결된 데이터","DE.Views.ChartSettings.textNarrow":"좁은 시야각","DE.Views.ChartSettings.textOriginalSize":"실제 크기","DE.Views.ChartSettings.textPerspective":"관점","DE.Views.ChartSettings.textRight":"오른쪽","DE.Views.ChartSettings.textRightAngle":"직각 축","DE.Views.ChartSettings.textSelectData":"데이터 선택","DE.Views.ChartSettings.textSize":"크기","DE.Views.ChartSettings.textStyle":"스타일","DE.Views.ChartSettings.textUndock":"패널에서 도킹 해제","DE.Views.ChartSettings.textUp":"최대","DE.Views.ChartSettings.textUpdateData":"데이터 업데이트","DE.Views.ChartSettings.textWiden":"광각","DE.Views.ChartSettings.textWidth":"너비","DE.Views.ChartSettings.textWrap":"배치 스타일","DE.Views.ChartSettings.textX":"X 회전","DE.Views.ChartSettings.textY":"Y 회전","DE.Views.ChartSettings.txtBehind":"텍스트 뒤","DE.Views.ChartSettings.txtInFront":"텍스트 앞에","DE.Views.ChartSettings.txtInline":"텍스트에 맞춰","DE.Views.ChartSettings.txtSquare":"Square","DE.Views.ChartSettings.txtThrough":"통해","DE.Views.ChartSettings.txtTight":"빽빽하게","DE.Views.ChartSettings.txtTitle":"차트","DE.Views.ChartSettings.txtTopAndBottom":"상단 및 하단","DE.Views.ChartSettingsDlg.textLeftOverlay":"왼쪽 오버레이","DE.Views.CompareSettingsDialog.textChar":"문자 레벨","DE.Views.CompareSettingsDialog.textShow":"변경 사항 표시","DE.Views.CompareSettingsDialog.textTitle":"비교 설정","DE.Views.CompareSettingsDialog.textWord":"단어 수준","DE.Views.ControlSettingsDialog.strGeneral":"일반","DE.Views.ControlSettingsDialog.textAdd":"추가","DE.Views.ControlSettingsDialog.textAppearance":"표시","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.ControlSettingsDialog.txtRemContent":"콘텐츠 편집 시 콘텐츠 제어 제거","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.textEqualWidth":"동일한 열 너비","DE.Views.CustomColumnsDialog.textSeparator":"열 구분선","DE.Views.CustomColumnsDialog.textTitle":"열","DE.Views.CustomColumnsDialog.textTitleSpacing":"간격","DE.Views.CustomColumnsDialog.textWidth":"넓이","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.DocProtection.hintProtectDoc":"문서 보호","DE.Views.DocProtection.txtDocProtectedComment":"문서가 보호되어 있습니다.
이 문서에는 주석만 삽입할 수 있습니다.","DE.Views.DocProtection.txtDocProtectedForms":"문서가 보호되어 있습니다.
이 문서에서는 양식만 작성할 수 있습니다.","DE.Views.DocProtection.txtDocProtectedTrack":"문서가 보호되어 있습니다.
이 문서를 편집할 수 있지만 모든 변경 사항이 추적됩니다.","DE.Views.DocProtection.txtDocProtectedView":"문서가 보호되어 있습니다.
이 문서를 보기만 가능합니다.","DE.Views.DocProtection.txtDocUnlockDescription":"문서 보호를 해제하려면 비밀번호를 입력하세요","DE.Views.DocProtection.txtProtectDoc":"문서 보호","DE.Views.DocProtection.txtUnlockTitle":"문서 보호 해제","DE.Views.DocumentHolder.aboveText":"위","DE.Views.DocumentHolder.addCommentText":"주석 추가","DE.Views.DocumentHolder.advancedDropCapText":"첫 글자 크게 설정","DE.Views.DocumentHolder.advancedEquationText":"수식 설정","DE.Views.DocumentHolder.advancedFrameText":"틀 고급 설정","DE.Views.DocumentHolder.advancedParagraphText":"문단 고급 설정","DE.Views.DocumentHolder.advancedTableText":"표 고급 설정","DE.Views.DocumentHolder.advancedText":"고급 설정","DE.Views.DocumentHolder.AlignBottom":"아래쪽","DE.Views.DocumentHolder.AlignCenter":"가운데","DE.Views.DocumentHolder.AlignJust":"양쪽 맞춤","DE.Views.DocumentHolder.AlignLeft":"왼쪽","DE.Views.DocumentHolder.alignmentText":"정렬","DE.Views.DocumentHolder.AlignMiddle":"가운데","DE.Views.DocumentHolder.AlignRight":"오른쪽","DE.Views.DocumentHolder.AlignText":"정렬","DE.Views.DocumentHolder.AlignTop":"맨 위","DE.Views.DocumentHolder.allLinearText":"모두 - 선형","DE.Views.DocumentHolder.allProfText":"전체 - 프로페셔널","DE.Views.DocumentHolder.belowText":"Below","DE.Views.DocumentHolder.breakBeforeText":"현재 단락 앞에서 페이지 나누기","DE.Views.DocumentHolder.btnChart":"차트 제목, 범례, 눈금선, 데이터 레이블 등 차트 요소 추가, 제거 또는 변경","DE.Views.DocumentHolder.bulletsText":"글 머리 기호 및 번호 매기기","DE.Views.DocumentHolder.cellAlignText":"셀 수직 정렬","DE.Views.DocumentHolder.cellText":"셀","DE.Views.DocumentHolder.centerText":"Center","DE.Views.DocumentHolder.chartText":"차트 고급 설정","DE.Views.DocumentHolder.columnText":"열","DE.Views.DocumentHolder.currLinearText":"현재 - 선형","DE.Views.DocumentHolder.currProfText":"현재 - 전문가","DE.Views.DocumentHolder.deleteColumnText":"열 삭제","DE.Views.DocumentHolder.deleteRowText":"행 삭제","DE.Views.DocumentHolder.deleteTableText":"테이블 삭제","DE.Views.DocumentHolder.deleteText":"삭제","DE.Views.DocumentHolder.DepthAxis":"Z 축","DE.Views.DocumentHolder.direct270Text":"텍스트 회전","DE.Views.DocumentHolder.direct90Text":"텍스트 아래로 회전","DE.Views.DocumentHolder.directHText":"수평","DE.Views.DocumentHolder.directionText":"텍스트 방향","DE.Views.DocumentHolder.editChartText":"데이터 편집","DE.Views.DocumentHolder.editFooterText":"바닥글 편집","DE.Views.DocumentHolder.editHeaderText":"머리글 편집","DE.Views.DocumentHolder.editHyperlinkText":"하이퍼 링크 편집","DE.Views.DocumentHolder.eqToDisplayText":"디스플레이로 변경","DE.Views.DocumentHolder.eqToInlineText":"인라인으로 변경","DE.Views.DocumentHolder.guestText":"게스트","DE.Views.DocumentHolder.hideEqToolbar":"수식 도구 모음 숨기기","DE.Views.DocumentHolder.hyperlinkText":"하이퍼 링크","DE.Views.DocumentHolder.ignoreAllSpellText":"모두 무시","DE.Views.DocumentHolder.ignoreSpellText":"무시","DE.Views.DocumentHolder.imageText":"이미지 고급 설정","DE.Views.DocumentHolder.insertColumnLeftText":"왼쪽 열","DE.Views.DocumentHolder.insertColumnRightText":"오른쪽 열","DE.Views.DocumentHolder.insertColumnText":"열 삽입","DE.Views.DocumentHolder.insertRowAboveText":"행 위","DE.Views.DocumentHolder.insertRowBelowText":"행 아래","DE.Views.DocumentHolder.insertRowText":"행 삽입","DE.Views.DocumentHolder.insertText":"삽입","DE.Views.DocumentHolder.keepLinesText":"현재 단락을 나누지 않음","DE.Views.DocumentHolder.langText":"언어 선택","DE.Views.DocumentHolder.latexText":"라텍","DE.Views.DocumentHolder.leftText":"왼쪽","DE.Views.DocumentHolder.loadSpellText":"로드 변형 ...","DE.Views.DocumentHolder.mergeCellsText":"셀 병합","DE.Views.DocumentHolder.mniImageFromFile":"파일에서 이미지 삽입","DE.Views.DocumentHolder.mniImageFromStorage":"저장소에서 이미지 삽입","DE.Views.DocumentHolder.mniImageFromUrl":"URL에서 이미지 삽입","DE.Views.DocumentHolder.moreText":"추가 변형 ...","DE.Views.DocumentHolder.noSpellVariantsText":"변형 없음","DE.Views.DocumentHolder.notcriticalErrorTitle":"경고","DE.Views.DocumentHolder.originalSizeText":"실제 크기","DE.Views.DocumentHolder.paragraphText":"단락","DE.Views.DocumentHolder.removeHyperlinkText":"하이퍼 링크 제거","DE.Views.DocumentHolder.rightText":"오른쪽","DE.Views.DocumentHolder.rowText":"행","DE.Views.DocumentHolder.saveStyleText":"새 스타일 만들기","DE.Views.DocumentHolder.selectCellText":"셀 선택","DE.Views.DocumentHolder.selectColumnText":"열 선택","DE.Views.DocumentHolder.selectRowText":"행 선택","DE.Views.DocumentHolder.selectTableText":"표 선택","DE.Views.DocumentHolder.selectText":"선택","DE.Views.DocumentHolder.shapeText":"도형 고급 설정","DE.Views.DocumentHolder.showEqToolbar":"수식 도구 모음 표시","DE.Views.DocumentHolder.spellcheckText":"맞춤법 검사","DE.Views.DocumentHolder.splitCellsText":"셀 분할 ...","DE.Views.DocumentHolder.splitCellTitleText":"셀 분할","DE.Views.DocumentHolder.strDelete":"서명 제거","DE.Views.DocumentHolder.strDetails":"서명 상세","DE.Views.DocumentHolder.strSetup":"서명 셋업","DE.Views.DocumentHolder.strSign":"서명","DE.Views.DocumentHolder.styleText":"스타일로 서식 지정","DE.Views.DocumentHolder.tableText":"테이블","DE.Views.DocumentHolder.textAccept":"변경 수락","DE.Views.DocumentHolder.textAlign":"정렬","DE.Views.DocumentHolder.textArrange":"순서","DE.Views.DocumentHolder.textArrangeBack":"맨 뒤로 보내기","DE.Views.DocumentHolder.textArrangeBackward":"뒤로 보내기","DE.Views.DocumentHolder.textArrangeForward":"앞으로 보내기","DE.Views.DocumentHolder.textArrangeFront":"맨 앞으로 보내기","DE.Views.DocumentHolder.textAxes":"축","DE.Views.DocumentHolder.textAxisTitles":"축 제목","DE.Views.DocumentHolder.textBottom":"하단","DE.Views.DocumentHolder.textCells":"셀","DE.Views.DocumentHolder.textCenter":"가운데","DE.Views.DocumentHolder.textChartTitle":"차트 제목","DE.Views.DocumentHolder.textClearField":"필드 지우기","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.textDataLabels":"데이터 레이블","DE.Views.DocumentHolder.textDataTable":"데이터 표","DE.Views.DocumentHolder.textDistributeCols":"열 너비 균등 분배","DE.Views.DocumentHolder.textDistributeRows":"행 배포","DE.Views.DocumentHolder.textEditControls":"콘텐츠 제어 설정","DE.Views.DocumentHolder.textEditField":"필드 편집","DE.Views.DocumentHolder.textEditObject":"개체 편집","DE.Views.DocumentHolder.textEditPoints":"꼭지점 수정","DE.Views.DocumentHolder.textEditWrapBoundary":"둘러싸기 경계 편집","DE.Views.DocumentHolder.textErrorBars":"오류 막대","DE.Views.DocumentHolder.textExponential":"지수","DE.Views.DocumentHolder.textFieldCodes":"필드 코드 전환","DE.Views.DocumentHolder.textFit":"너비에 맞춤","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.textGridLines":"눈금선","DE.Views.DocumentHolder.textHorAxis":"가로 축","DE.Views.DocumentHolder.textHorAxisSec":"수평 보조축","DE.Views.DocumentHolder.textHorizontalMajor":"가로 주 눈금","DE.Views.DocumentHolder.textHorizontalMinor":"가로 부 눈금","DE.Views.DocumentHolder.textIndents":"목록 들여쓰기 조정","DE.Views.DocumentHolder.textInnerBottom":"안쪽 아래","DE.Views.DocumentHolder.textInnerTop":"안쪽 위","DE.Views.DocumentHolder.textJoinList":"이전 목록에 추가","DE.Views.DocumentHolder.textLeft":"셀을 왼쪽으로 이동","DE.Views.DocumentHolder.textLeftData":"왼쪽","DE.Views.DocumentHolder.textLeftOverlay":"왼쪽 오버레이","DE.Views.DocumentHolder.textLeftPos":"왼쪽","DE.Views.DocumentHolder.textLegendPos":"범례","DE.Views.DocumentHolder.textLinear":"선형","DE.Views.DocumentHolder.textLinearForecast":"선형 예측","DE.Views.DocumentHolder.textLines":"선","DE.Views.DocumentHolder.textMovingAverage":"이동 평균(2)","DE.Views.DocumentHolder.textNest":"네스트 테이블","DE.Views.DocumentHolder.textNextPage":"다음 페이지","DE.Views.DocumentHolder.textNone":"없음","DE.Views.DocumentHolder.textNoOverlay":"오버레이 없음","DE.Views.DocumentHolder.textNumberingValue":"번호","DE.Views.DocumentHolder.textOuterTop":"바깥쪽 위","DE.Views.DocumentHolder.textOverlay":"오버레이","DE.Views.DocumentHolder.textPaste":"붙여 넣기","DE.Views.DocumentHolder.textPrevPage":"이전 페이지","DE.Views.DocumentHolder.textRedo":"다시 실행","DE.Views.DocumentHolder.textRefreshField":"필드 새로고침","DE.Views.DocumentHolder.textReject":"변경 거부","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.textStretchControl":"Resize to cell","DE.Views.DocumentHolder.textRemPicture":"이미지 제거","DE.Views.DocumentHolder.textRemRadioBox":"선택 버튼 제거","DE.Views.DocumentHolder.textReplace":"이미지 바꾸기","DE.Views.DocumentHolder.textResetCrop":"자르기 초기화","DE.Views.DocumentHolder.textRight":"오른쪽","DE.Views.DocumentHolder.textRightOverlay":"오른쪽 오버레이","DE.Views.DocumentHolder.textRotate":"회전","DE.Views.DocumentHolder.textRotate270":"왼쪽으로 90도 회전","DE.Views.DocumentHolder.textRotate90":"오른쪽으로 90도 회전","DE.Views.DocumentHolder.textRow":"전체 행 삭제","DE.Views.DocumentHolder.textSaveAsPicture":"그림으로 저장","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.textShapesMerge":"도형 병합","DE.Views.DocumentHolder.textShowDataTable":"데이터 표 표시","DE.Views.DocumentHolder.textShowLegendKeys":"범례 기호 표시","DE.Views.DocumentHolder.textShowUpDown":"상승/하락 막대 표시","DE.Views.DocumentHolder.textStandardDeviation":"표준편차","DE.Views.DocumentHolder.textStandardError":"표준오차","DE.Views.DocumentHolder.textStartNewList":"새 목록 시작","DE.Views.DocumentHolder.textStartNumberingFrom":"숫자 값 설정","DE.Views.DocumentHolder.textTitleCellsRemove":"셀 삭제","DE.Views.DocumentHolder.textTOC":"목차","DE.Views.DocumentHolder.textTOCSettings":"목차 설정","DE.Views.DocumentHolder.textTop":"위쪽","DE.Views.DocumentHolder.textTrendline":"추세선","DE.Views.DocumentHolder.textUndo":"실행 취소","DE.Views.DocumentHolder.textUpdateAll":"전체 테이블을 업데이트","DE.Views.DocumentHolder.textUpdatePages":"페이지 번호만 업데이트","DE.Views.DocumentHolder.textUpdateTOC":"목차 새로고침","DE.Views.DocumentHolder.textUpDownBars":"위/아래 막대","DE.Views.DocumentHolder.textVertAxis":"세로 축","DE.Views.DocumentHolder.textVertAxisSec":"수직 보조축","DE.Views.DocumentHolder.textVerticalMajor":"세로 주 눈금","DE.Views.DocumentHolder.textVerticalMinor":"세로 부 눈금","DE.Views.DocumentHolder.textWrap":"배치 스타일","DE.Views.DocumentHolder.tipIsLocked":"이 요소는 현재 다른 사용자가 편집 중입니다.","DE.Views.DocumentHolder.toDictionaryText":"사용자 정의 사전에 추가","DE.Views.DocumentHolder.txtAddBottom":"아래쪽 테두리 추가","DE.Views.DocumentHolder.txtAddFractionBar":"분수 막대 추가","DE.Views.DocumentHolder.txtAddHor":"가로선 추가","DE.Views.DocumentHolder.txtAddLB":"왼쪽 하단 추가","DE.Views.DocumentHolder.txtAddLeft":"왼쪽 테두리 추가","DE.Views.DocumentHolder.txtAddLT":"왼쪽 상단 줄 추가","DE.Views.DocumentHolder.txtAddRight":"오른쪽 테두리 추가","DE.Views.DocumentHolder.txtAddTop":"상단 테두리 추가","DE.Views.DocumentHolder.txtAddVer":"세로선 추가","DE.Views.DocumentHolder.txtAlignToChar":"문자에 정렬","DE.Views.DocumentHolder.txtBehind":"텍스트 뒤","DE.Views.DocumentHolder.txtBorderProps":"테두리 속성","DE.Views.DocumentHolder.txtBottom":"하단","DE.Views.DocumentHolder.txtColumnAlign":"열 정렬","DE.Views.DocumentHolder.txtDecreaseArg":"인수 크기 감소","DE.Views.DocumentHolder.txtDeleteArg":"인수 삭제","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.txtDestEmbed":"대상 테마 사용 & 통합 문서 삽입","DE.Views.DocumentHolder.txtDestLink":"대상 테마 사용 & 데이터 연결","DE.Views.DocumentHolder.txtDistribHor":"수평 분포","DE.Views.DocumentHolder.txtDistribVert":"수직 분포","DE.Views.DocumentHolder.txtEmpty":"(없음)","DE.Views.DocumentHolder.txtFractionLinear":"선형 분수로 변경","DE.Views.DocumentHolder.txtFractionSkewed":"기울어 진 분수로 변경","DE.Views.DocumentHolder.txtFractionStacked":"누적 분율로 변경","DE.Views.DocumentHolder.txtGroup":"그룹","DE.Views.DocumentHolder.txtGroupCharOver":"텍스트를 덮는 문자","DE.Views.DocumentHolder.txtGroupCharUnder":"문자 아래의 문자","DE.Views.DocumentHolder.txtHideBottom":"아래쪽 경계선 숨기기","DE.Views.DocumentHolder.txtHideBottomLimit":"하단 제한 숨기기","DE.Views.DocumentHolder.txtHideCloseBracket":"닫는 대괄호 숨기기","DE.Views.DocumentHolder.txtHideDegree":"학위 숨기기","DE.Views.DocumentHolder.txtHideHor":"가로선 숨기기","DE.Views.DocumentHolder.txtHideLB":"왼쪽 하단 줄 숨기기","DE.Views.DocumentHolder.txtHideLeft":"왼쪽 테두리 숨기기","DE.Views.DocumentHolder.txtHideLT":"왼쪽 상단 줄 숨기기","DE.Views.DocumentHolder.txtHideOpenBracket":"여는 대괄호 숨기기","DE.Views.DocumentHolder.txtHidePlaceholder":"자리 표시 자 숨기기","DE.Views.DocumentHolder.txtHideRight":"오른쪽 테두리 숨기기","DE.Views.DocumentHolder.txtHideTop":"위쪽 테두리 숨기기","DE.Views.DocumentHolder.txtHideTopLimit":"상한 숨기기","DE.Views.DocumentHolder.txtHideVer":"수직선 숨기기","DE.Views.DocumentHolder.txtIncreaseArg":"인수 크기 늘리기","DE.Views.DocumentHolder.txtInFront":"텍스트 앞에","DE.Views.DocumentHolder.txtInline":"텍스트에 맞춰","DE.Views.DocumentHolder.txtInsertArgAfter":"뒤에 인수를 삽입하십시오.","DE.Views.DocumentHolder.txtInsertArgBefore":"앞에 인수를 삽입하십시오","DE.Views.DocumentHolder.txtInsertBreak":"나누기 삽입","DE.Views.DocumentHolder.txtInsertCaption":"캡션 삽입","DE.Views.DocumentHolder.txtInsertEqAfter":"뒤에 수식을 삽입하십시오.","DE.Views.DocumentHolder.txtInsertEqBefore":"이전에 수식 삽입","DE.Views.DocumentHolder.txtInsImage":"파일에서 이미지 삽입","DE.Views.DocumentHolder.txtInsImageUrl":"URL에서 이미지 삽입","DE.Views.DocumentHolder.txtKeepTextOnly":"텍스트만 유지","DE.Views.DocumentHolder.txtLimitChange":"제한 위치 변경","DE.Views.DocumentHolder.txtLimitOver":"텍스트 제한","DE.Views.DocumentHolder.txtLimitUnder":"텍스트 아래에서 제한","DE.Views.DocumentHolder.txtMatchBrackets":"대괄호를 인수 높이에 대응","DE.Views.DocumentHolder.txtMatrixAlign":"매트릭스 정렬","DE.Views.DocumentHolder.txtOverbar":"텍스트 위에 가로 막기","DE.Views.DocumentHolder.txtOverwriteCells":"셀에 덮어쓰기","DE.Views.DocumentHolder.txtPastePicture":"그림","DE.Views.DocumentHolder.txtPasteSourceFormat":"소스 포맷을 유지하세요","DE.Views.DocumentHolder.txtPercentage":"백분율","DE.Views.DocumentHolder.txtPressLink":"{0} 키를 누르고 링크를 클릭합니다.","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":"위 첨자 제거","DE.Views.DocumentHolder.txtScriptsAfter":"텍스트 뒤의 스크립트","DE.Views.DocumentHolder.txtScriptsBefore":"텍스트 앞의 스크립트","DE.Views.DocumentHolder.txtShowBottomLimit":"하단 제한 표시","DE.Views.DocumentHolder.txtShowCloseBracket":"닫는 괄호 표시","DE.Views.DocumentHolder.txtShowDegree":"학위 표시","DE.Views.DocumentHolder.txtShowOpenBracket":"여는 대괄호 표시","DE.Views.DocumentHolder.txtShowPlaceholder":"Show placeholder","DE.Views.DocumentHolder.txtShowTopLimit":"상한 표시","DE.Views.DocumentHolder.txtSourceEmbed":"원본 서식 유지 & 통합 문서 삽입","DE.Views.DocumentHolder.txtSourceLink":"원본 서식 유지 & 데이터 연결","DE.Views.DocumentHolder.txtSquare":"Square","DE.Views.DocumentHolder.txtStretchBrackets":"스트레치 괄호","DE.Views.DocumentHolder.txtThrough":"통해","DE.Views.DocumentHolder.txtTight":"빽빽하게","DE.Views.DocumentHolder.txtTop":"맨 위","DE.Views.DocumentHolder.txtTopAndBottom":"상단 및 하단","DE.Views.DocumentHolder.txtUnderbar":"텍스트 아래에 바","DE.Views.DocumentHolder.txtUngroup":"그룹 해제","DE.Views.DocumentHolder.txtWarnUrl":"이 링크는 장치와 데이터에 손상을 줄 수 있습니다.
계속하시겠습니까?","DE.Views.DocumentHolder.unicodeText":"유니코드","DE.Views.DocumentHolder.updateStyleText":"%1 스타일 업데이트","DE.Views.DocumentHolder.vertAlignText":"세로 맞춤","DE.Views.DropcapSettingsAdvanced.strBorders":"테두리 및 채우기","DE.Views.DropcapSettingsAdvanced.strDropcap":"드롭 캡","DE.Views.DropcapSettingsAdvanced.strMargins":"여백","DE.Views.DropcapSettingsAdvanced.textAlign":"정렬","DE.Views.DropcapSettingsAdvanced.textAtLeast":"적어도","DE.Views.DropcapSettingsAdvanced.textAuto":"Auto","DE.Views.DropcapSettingsAdvanced.textBackColor":"배경색","DE.Views.DropcapSettingsAdvanced.textBorderColor":"테두리 색상","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"다이어그램을 클릭하거나 단추를 사용하여 테두리를 선택하십시오","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"테두리 굵기","DE.Views.DropcapSettingsAdvanced.textBottom":"하단","DE.Views.DropcapSettingsAdvanced.textCenter":"Center","DE.Views.DropcapSettingsAdvanced.textColumn":"열","DE.Views.DropcapSettingsAdvanced.textDistance":"텍스트 간격","DE.Views.DropcapSettingsAdvanced.textExact":"정확히","DE.Views.DropcapSettingsAdvanced.textFlow":"흐름 프레임","DE.Views.DropcapSettingsAdvanced.textFont":"글꼴","DE.Views.DropcapSettingsAdvanced.textFrame":"프레임","DE.Views.DropcapSettingsAdvanced.textHeight":"높이","DE.Views.DropcapSettingsAdvanced.textHorizontal":"수평","DE.Views.DropcapSettingsAdvanced.textInline":"인라인 프레임","DE.Views.DropcapSettingsAdvanced.textInMargin":"여백 있음","DE.Views.DropcapSettingsAdvanced.textInText":"텍스트에서","DE.Views.DropcapSettingsAdvanced.textLeft":"왼쪽","DE.Views.DropcapSettingsAdvanced.textMargin":"여백","DE.Views.DropcapSettingsAdvanced.textMove":"텍스트와 함께 이동","DE.Views.DropcapSettingsAdvanced.textNone":"없음","DE.Views.DropcapSettingsAdvanced.textPage":"페이지","DE.Views.DropcapSettingsAdvanced.textParagraph":"단락","DE.Views.DropcapSettingsAdvanced.textParameters":"매개 변수","DE.Views.DropcapSettingsAdvanced.textPosition":"위치","DE.Views.DropcapSettingsAdvanced.textRelative":"기준","DE.Views.DropcapSettingsAdvanced.textRight":"오른쪽","DE.Views.DropcapSettingsAdvanced.textRowHeight":"행의 높이","DE.Views.DropcapSettingsAdvanced.textTitle":"첫 글자 크게 - 고급 설정","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"틀 - 고급 설정","DE.Views.DropcapSettingsAdvanced.textTop":"위","DE.Views.DropcapSettingsAdvanced.textVertical":"세로","DE.Views.DropcapSettingsAdvanced.textWidth":"너비","DE.Views.DropcapSettingsAdvanced.tipFontName":"글꼴","DE.Views.EditListItemDialog.textDisplayName":"표시 이름","DE.Views.EditListItemDialog.textNameError":"표시 이름은 비워둘 수 없습니다.","DE.Views.EditListItemDialog.textValue":"값","DE.Views.EditListItemDialog.textValueError":"동일한 값을 가진 항목이 이미 존재합니다.","DE.Views.FileMenu.ariaFileMenu":"파일 메뉴","DE.Views.FileMenu.btnBackCaption":"파일 위치 열기","DE.Views.FileMenu.btnCloseEditor":"파일 닫기","DE.Views.FileMenu.btnCloseMenuCaption":"뒤로","DE.Views.FileMenu.btnCreateNewCaption":"새로 만들기","DE.Views.FileMenu.btnDownloadCaption":"다운로드 방법","DE.Views.FileMenu.btnExitCaption":"닫기","DE.Views.FileMenu.btnFileOpenCaption":"열기","DE.Views.FileMenu.btnHelpCaption":"도움말","DE.Views.FileMenu.btnHistoryCaption":"버전 기록","DE.Views.FileMenu.btnInfoCaption":"문서 정보","DE.Views.FileMenu.btnPrintCaption":"인쇄","DE.Views.FileMenu.btnProtectCaption":"보호","DE.Views.FileMenu.btnRecentFilesCaption":"최근 열기","DE.Views.FileMenu.btnRenameCaption":"Rename","DE.Views.FileMenu.btnReturnCaption":"문서로 돌아 가기","DE.Views.FileMenu.btnRightsCaption":"액세스 권한","DE.Views.FileMenu.btnSaveAsCaption":"다른 이름으로 저장","DE.Views.FileMenu.btnSaveCaption":"저장","DE.Views.FileMenu.btnSaveCopyAsCaption":"다른 이름으로 저장","DE.Views.FileMenu.btnSettingsCaption":"고급 설정","DE.Views.FileMenu.btnSuggestCaption":"기능 제안","DE.Views.FileMenu.btnSwitchToMobileCaption":"모바일 보기로 전환","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.txtAddProperty":"속성 추가","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.txtCommon":"일반","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"생성된 날짜","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"문서 정보","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"문서 속성","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"패스트 웹 뷰","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"로드 중 ...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"최종 편집자","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"최종 편집","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"아니오","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"소유자","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"페이지","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"페이지 크기","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"단락","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF 제작자","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"태그된 PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF 버전","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"위치","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"속성","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"동일한 제목의 속성이 이미 존재합니다","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.txtTags":"태그","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"문서 제목","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"업로드 되었습니다","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"단어","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"예","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"접근 권한","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"액세스 권한 변경","DE.Views.FileMenuPanels.DocumentRights.txtRights":"권한이 있는 사람","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"경고","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"비밀번호로","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"문서 보호","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"서명으로","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"유효한 서명이 문서에 추가되었습니다.
문서는 편집이 제한되어 있습니다.","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"눈에 보이지 않는 디지털 서명을 추가하여
문서의 무결성을 보장하세요.","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"문서 편집","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"편집하면 문서의 서명이 삭제됩니다.
계속하시겠습니까?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"이 문서는 비밀번호로 보호된 적이 있습니다","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"이 문서를 비밀번호로 암호화하세요","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"이 문서는 서명되어야 합니다.","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"문서에 유효한 서명이 추가되었습니다. 문서가 보호되어 편집할 수 없습니다.","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"문서의 일부 디지털 서명이 유효하지 않거나 확인할 수 없습니다. 문서가 보호되어 편집할 수 없습니다.","DE.Views.FileMenuPanels.ProtectDoc.txtView":"서명 보기","DE.Views.FileMenuPanels.Settings.okButtonText":"적용","DE.Views.FileMenuPanels.Settings.strChinese":"중국어","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"공동 편집 모드","DE.Views.FileMenuPanels.Settings.strDocContent":"문서 내용","DE.Views.FileMenuPanels.Settings.strFast":"Fast","DE.Views.FileMenuPanels.Settings.strFontRender":"글꼴 힌트","DE.Views.FileMenuPanels.Settings.strFontSizeType":"글꼴 크기 목록에서 첫 번째 항목 사용","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"대문자 무시","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"숫자가 있는 단어 무시","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"키보드 단축키","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"매크로 설정","DE.Views.FileMenuPanels.Settings.strNumeral":"숫자 형식","DE.Views.FileMenuPanels.Settings.strPasteButton":"내용을 붙여넣을 때 \"붙여넣기 옵션\" 표시","DE.Views.FileMenuPanels.Settings.strRTLSupport":"오른쪽에서 왼쪽 인터페이스","DE.Views.FileMenuPanels.Settings.strShowChanges":"실시간 협업 변경 사항","DE.Views.FileMenuPanels.Settings.strShowComments":"텍스트로 코멘트 표시","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"다른 사용자의 변경사항 표시","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"해결된 코멘트 표시","DE.Views.FileMenuPanels.Settings.strStrict":"Strict","DE.Views.FileMenuPanels.Settings.strTabStyle":"탭 스타일","DE.Views.FileMenuPanels.Settings.strTheme":"인터페이스 테마","DE.Views.FileMenuPanels.Settings.strUnit":"측정 단위","DE.Views.FileMenuPanels.Settings.strWestern":"서양식","DE.Views.FileMenuPanels.Settings.strZoom":"기본 확대/축소 값","DE.Views.FileMenuPanels.Settings.text10Minutes":"매 10 분마다","DE.Views.FileMenuPanels.Settings.text30Minutes":"매 30 분마다","DE.Views.FileMenuPanels.Settings.text5Minutes":"매 5 분마다","DE.Views.FileMenuPanels.Settings.text60Minutes":"매시간","DE.Views.FileMenuPanels.Settings.textAlignGuides":"가이드에 정렬","DE.Views.FileMenuPanels.Settings.textAutoRecover":"자동 복구","DE.Views.FileMenuPanels.Settings.textAutoSave":"자동 저장","DE.Views.FileMenuPanels.Settings.textDisabled":"비활성화","DE.Views.FileMenuPanels.Settings.textFill":"채우기","DE.Views.FileMenuPanels.Settings.textForceSave":"모든 기록 버전을 서버에 저장","DE.Views.FileMenuPanels.Settings.textLine":"선","DE.Views.FileMenuPanels.Settings.textMinute":"매 분","DE.Views.FileMenuPanels.Settings.textOldVersions":"DOCX, DOTX로 파일을 저장할 때 이전 버전의 MS Word와 호환되도록 설정","DE.Views.FileMenuPanels.Settings.textSmartSelection":"스마트 문단 선택 활용","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"고급 설정","DE.Views.FileMenuPanels.Settings.txtAll":"모두 보기","DE.Views.FileMenuPanels.Settings.txtAppearance":"모양","DE.Views.FileMenuPanels.Settings.txtArabic":"아랍어","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.txtCollaboration":"협업","DE.Views.FileMenuPanels.Settings.txtContext":"컨텍스트","DE.Views.FileMenuPanels.Settings.txtCustomize":"사용자 정의","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"빠른 실행 도구 모음 사용자 지정","DE.Views.FileMenuPanels.Settings.txtDarkMode":"문서 다크 모드 켜기","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"편집 및 저장","DE.Views.FileMenuPanels.Settings.txtFastTip":"실시간 공동 편집. 모든 변경사항은 자동으로 저장됩니다.","DE.Views.FileMenuPanels.Settings.txtFitPage":"페이지에 맞춤","DE.Views.FileMenuPanels.Settings.txtFitWidth":"너비에 맞춤","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"상형 문자","DE.Views.FileMenuPanels.Settings.txtHindi":"힌디어","DE.Views.FileMenuPanels.Settings.txtInch":"인치","DE.Views.FileMenuPanels.Settings.txtLast":"마지막 보기","DE.Views.FileMenuPanels.Settings.txtLastUsed":"마지막으로 사용됨","DE.Views.FileMenuPanels.Settings.txtMac":"as OS X","DE.Views.FileMenuPanels.Settings.txtNative":"기본","DE.Views.FileMenuPanels.Settings.txtNone":"보기 없음","DE.Views.FileMenuPanels.Settings.txtProofing":"보정","DE.Views.FileMenuPanels.Settings.txtPt":"Point","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"편집기 상단에 빠른 인쇄 버튼 표시","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"문서는 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.","DE.Views.FileMenuPanels.Settings.txtRunMacros":"모두 활성화","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"알림 없이 모든 매크로 활성화","DE.Views.FileMenuPanels.Settings.txtScreenReader":"화면 읽기 지원 활성화","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"트랙 변경 사항 표시","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"맞춤법 검사","DE.Views.FileMenuPanels.Settings.txtStopMacros":"모두 비활성화","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"모든 매크로 비활성화하라는 메시지","DE.Views.FileMenuPanels.Settings.txtStrictTip":"변경 사항을 동기화하기 위해 '저장' 버튼을 사용하세요","DE.Views.FileMenuPanels.Settings.txtTabBack":"도구 모음 색상을 탭 배경으로 사용","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Alt 키를 사용하세요.","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Option 키를 사용하세요.","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"알림 표시","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"모든 매크로를 비활성화하라는 메시지","DE.Views.FileMenuPanels.Settings.txtWin":"Windows로","DE.Views.FileMenuPanels.Settings.txtWorkspace":"워크스페이스","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"로 다운로드","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"다른 이름으로 저장","DE.Views.FormSettings.textAddRole":"받는 사람 추가","DE.Views.FormSettings.textAlways":"항상","DE.Views.FormSettings.textAnyone":"누구나","DE.Views.FormSettings.textAspect":"가로 세로 비율 잠금","DE.Views.FormSettings.textAtLeast":"적어도","DE.Views.FormSettings.textAuto":"자동","DE.Views.FormSettings.textAutofit":"자동조정","DE.Views.FormSettings.textBackgroundColor":"배경색","DE.Views.FormSettings.textCheckbox":"체크박스","DE.Views.FormSettings.textCheckDefault":"체크박스는 기본적으로 선택되어 있습니다.","DE.Views.FormSettings.textColor":"테두리 색상","DE.Views.FormSettings.textComb":"문자 조합","DE.Views.FormSettings.textCombobox":"콤보박스","DE.Views.FormSettings.textComplex":"복합 필드","DE.Views.FormSettings.textConnected":"연결된 필드","DE.Views.FormSettings.textCreditCard":"신용카드 번호(예: 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"날짜 및 시간 필드","DE.Views.FormSettings.textDateFormat":"날짜 형식","DE.Views.FormSettings.textDefValue":"기본 값","DE.Views.FormSettings.textDelete":"삭제","DE.Views.FormSettings.textDigits":"숫자","DE.Views.FormSettings.textDisconnect":"연결해제","DE.Views.FormSettings.textDropDown":"드롭다운","DE.Views.FormSettings.textExact":"정확히","DE.Views.FormSettings.textField":"텍스트 필드","DE.Views.FormSettings.textFillRoles":"이 필드는 입력 대상은?","DE.Views.FormSettings.textFixed":"필드 크기 고정","DE.Views.FormSettings.textFormat":"서식","DE.Views.FormSettings.textFormatSymbols":"허용 기호","DE.Views.FormSettings.textFromFile":"파일로부터","DE.Views.FormSettings.textFromStorage":"스토리지로부터","DE.Views.FormSettings.textFromUrl":"URL로부터","DE.Views.FormSettings.textGroupKey":"그룹 키","DE.Views.FormSettings.textImage":"이미지","DE.Views.FormSettings.textKey":"키","DE.Views.FormSettings.textLabel":"라벨","DE.Views.FormSettings.textLang":"언어","DE.Views.FormSettings.textLetters":"편지","DE.Views.FormSettings.textLock":"잠금","DE.Views.FormSettings.textMask":"임의의 패턴","DE.Views.FormSettings.textMaxChars":"문자 제한","DE.Views.FormSettings.textMulti":"다중 필드","DE.Views.FormSettings.textNever":"절대","DE.Views.FormSettings.textNoBorder":"테두리 없음","DE.Views.FormSettings.textNone":"없음","DE.Views.FormSettings.textPhone1":"전화번호(예: (123) 456-7890)","DE.Views.FormSettings.textPhone2":"전화번호(예: +447911123456)","DE.Views.FormSettings.textPlaceholder":"대체표시","DE.Views.FormSettings.textRadiobox":"라디오 버튼","DE.Views.FormSettings.textRadioChoice":"라디오 버튼 선택","DE.Views.FormSettings.textRadioDefault":"기본적으로 버튼이 선택되어 있습니다.","DE.Views.FormSettings.textReg":"정규식","DE.Views.FormSettings.textRequired":"필수","DE.Views.FormSettings.textScale":"확대/축소 시기","DE.Views.FormSettings.textSelectImage":"이미지 선택","DE.Views.FormSettings.textSignature":"서명","DE.Views.FormSettings.textTag":"꼬리표","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.textUKPassport":"영국 여권 번호(예: 925665416)","DE.Views.FormSettings.textUnlock":"잠금해제","DE.Views.FormSettings.textUSSSN":"미국 SSN(예: 123-45-6789)","DE.Views.FormSettings.textValue":"값 옵션","DE.Views.FormSettings.textWidth":"셀 너비","DE.Views.FormSettings.textZipCodeUS":"미국 우편번호(예: 92663 또는 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"체크박스","DE.Views.FormsTab.capBtnComboBox":"콤보박스","DE.Views.FormsTab.capBtnComplex":"복합 필드","DE.Views.FormsTab.capBtnDownloadForm":"pdf으로 다운로드","DE.Views.FormsTab.capBtnDropDown":"드롭다운","DE.Views.FormsTab.capBtnEmail":"이메일 주소","DE.Views.FormsTab.capBtnFinal":"최종본으로 표시","DE.Views.FormsTab.capBtnImage":"이미지","DE.Views.FormsTab.capBtnManager":"역할 관리","DE.Views.FormsTab.capBtnNext":"다음 필드","DE.Views.FormsTab.capBtnPhone":"전화 번호","DE.Views.FormsTab.capBtnPrev":"이전 필드","DE.Views.FormsTab.capBtnRadioBox":"라디오 버튼","DE.Views.FormsTab.capBtnSaveForm":"템플릿으로 저장","DE.Views.FormsTab.capBtnSaveFormDesktop":"다른 이름으로 저장...","DE.Views.FormsTab.capBtnSignature":"서명 필드","DE.Views.FormsTab.capBtnSubmit":"전송","DE.Views.FormsTab.capBtnText":"텍스트 필드","DE.Views.FormsTab.capBtnView":"양식 보기","DE.Views.FormsTab.capCreditCard":"신용 카드","DE.Views.FormsTab.capDateTime":"날짜 및 시간","DE.Views.FormsTab.capZipCode":"우편 번호","DE.Views.FormsTab.helpTextFillStatus":"이 양식은 역할 기반 작성이 가능합니다. 상태 버튼을 클릭하여 작성 단계를 확인하세요.","DE.Views.FormsTab.textAddRole":"수신자 추가","DE.Views.FormsTab.textAnyone":"누구나","DE.Views.FormsTab.textClear":"필드 지우기","DE.Views.FormsTab.textClearFields":"모든 필드 지우기","DE.Views.FormsTab.textCreateForm":"필드를 추가하여 작성 가능한 PDF 문서 작성","DE.Views.FormsTab.textFilled":"작성됨","DE.Views.FormsTab.textFillFor":"필드 삽입","DE.Views.FormsTab.textGotIt":"확인","DE.Views.FormsTab.textHighlight":"강조 설정","DE.Views.FormsTab.textNoHighlight":"강조 표시되지 않음","DE.Views.FormsTab.textRequired":"양식을 보내려면 모든 필수 필드를 채우십시오.","DE.Views.FormsTab.textSubmited":"폼 전송 성공","DE.Views.FormsTab.textSubmitOk":"PDF 양식이 다음과 같이 처리되었습니다.","DE.Views.FormsTab.tipCheckBox":"체크박스 삽입","DE.Views.FormsTab.tipComboBox":"콤보박스 삽입","DE.Views.FormsTab.tipComplexField":"복잡한 필드 삽입","DE.Views.FormsTab.tipCreateField":"필드를 만들려면 도구 모음에서 원하는 필드 유형을 선택하고 클릭하세요. 필드가 문서에 삽입됩니다.","DE.Views.FormsTab.tipCreditCard":"신용카드 번호 삽입","DE.Views.FormsTab.tipDateTime":"날짜 및 시간 삽입","DE.Views.FormsTab.tipDownloadForm":"파일을 편집 가능한 PDF 문서로 다운로드하세요","DE.Views.FormsTab.tipDropDown":"드롭다운 목록 삽입","DE.Views.FormsTab.tipEmailField":"이메일 주소 삽입","DE.Views.FormsTab.tipFieldSettings":"선택한 필드는 오른쪽 사이드바에서 설정할 수 있습니다. 이 아이콘을 클릭하여 필드 설정을 여세요.","DE.Views.FormsTab.tipFieldsLink":"필드 매개변수에 대해 자세히 알아보기","DE.Views.FormsTab.tipFinalForm":"최종본으로 표시","DE.Views.FormsTab.tipFirstPage":"첫 페이지로 이동","DE.Views.FormsTab.tipFixedText":"고정 텍스트 필드 삽입","DE.Views.FormsTab.tipFormGroupKey":"라디오 버튼을 그룹으로 묶어 빠르게 작성할 수 있습니다. 동일한 이름의 선택지는 동기화되며, 사용자는 그룹에서 하나의 항목만 선택할 수 있습니다.","DE.Views.FormsTab.tipFormKey":"필드 또는 필드 그룹에 키를 지정할 수 있습니다. 사용자가 데이터를 입력하면 같은 키를 가진 모든 필드에 자동으로 복사됩니다.","DE.Views.FormsTab.tipHelpRoles":"역할 관리 기능을 사용해 필드를 목적별로 그룹화하고 책임자에게 할당하세요.","DE.Views.FormsTab.tipImageField":"이미지 삽입","DE.Views.FormsTab.tipInlineText":"인라인 텍스트 필드 삽입","DE.Views.FormsTab.tipLastPage":"마지막 페이지로 이동","DE.Views.FormsTab.tipManager":"역할 관리","DE.Views.FormsTab.tipNextForm":"다음 필드로 이동","DE.Views.FormsTab.tipNextPage":"다음 페이지로 이동","DE.Views.FormsTab.tipPhoneField":"전화번호 삽입","DE.Views.FormsTab.tipPrevForm":"이전 필드로 이동","DE.Views.FormsTab.tipPrevPage":"이전 페이지로 이동","DE.Views.FormsTab.tipRadioBox":"라디오버튼 삽입","DE.Views.FormsTab.tipRolesLink":"역할에 대해 자세히 알아보기","DE.Views.FormsTab.tipSaveFile":"\"PDF로 저장\"을 클릭하면 양식을 작성 가능한 형식으로 저장할 수 있습니다.","DE.Views.FormsTab.tipSaveForm":"채우기 형식 문서로 저장","DE.Views.FormsTab.tipSignField":"서명 필드 삽입","DE.Views.FormsTab.tipSubmit":"전송폼","DE.Views.FormsTab.tipTextField":"텍스트 필드 삽입","DE.Views.FormsTab.tipViewForm":"양식 보기","DE.Views.FormsTab.tipZipCode":"우편번호 삽입","DE.Views.FormsTab.txtFixedDesc":"고정 텍스트 필드 삽입","DE.Views.FormsTab.txtFixedText":"고정","DE.Views.FormsTab.txtInlineDesc":"인라인 텍스트 필드 삽입","DE.Views.FormsTab.txtInlineText":"인라인","DE.Views.FormsTab.txtSignedForm":"이 문서는 서명되어 편집할 수 없습니다.","DE.Views.FormsTab.txtUntitled":"제목없음","DE.Views.HeaderFooterSettings.textBottomCenter":"하단 중앙","DE.Views.HeaderFooterSettings.textBottomLeft":"왼쪽 하단","DE.Views.HeaderFooterSettings.textBottomPage":"페이지 끝","DE.Views.HeaderFooterSettings.textBottomRight":"오른쪽 하단","DE.Views.HeaderFooterSettings.textDiffFirst":"첫 페이지를 다르게 지정","DE.Views.HeaderFooterSettings.textDiffOdd":"다른 홀수 및 짝수 페이지","DE.Views.HeaderFooterSettings.textFrom":"시작 시간","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"하단에서 바닥글","DE.Views.HeaderFooterSettings.textHeaderFromTop":"머리글을 맨 위부터","DE.Views.HeaderFooterSettings.textInsertCurrent":"현재 위치로 삽입","DE.Views.HeaderFooterSettings.textNumFormat":"숫자 형식","DE.Views.HeaderFooterSettings.textOptions":"옵션","DE.Views.HeaderFooterSettings.textPageNum":"페이지 번호 삽입","DE.Views.HeaderFooterSettings.textPageNumbering":"페이지 넘버링","DE.Views.HeaderFooterSettings.textPosition":"위치","DE.Views.HeaderFooterSettings.textPrev":"이전 섹션에서 계속하기","DE.Views.HeaderFooterSettings.textSameAs":"이전 링크","DE.Views.HeaderFooterSettings.textTopCenter":"상단 중앙","DE.Views.HeaderFooterSettings.textTopLeft":"왼쪽 상단","DE.Views.HeaderFooterSettings.textTopPage":"페이지 시작","DE.Views.HeaderFooterSettings.textTopRight":"오른쪽 상단","DE.Views.HeaderFooterSettings.txtMoreTypes":"유형 더 보기","DE.Views.HeaderFooterTab.capBtnDateTime":"날짜 및 시간","DE.Views.HeaderFooterTab.capBtnInsField":"필드","DE.Views.HeaderFooterTab.capBtnInsImage":"그림","DE.Views.HeaderFooterTab.capCurrentPos":"현재 위치로","DE.Views.HeaderFooterTab.capFooterBottom":"하단에서 바닥글","DE.Views.HeaderFooterTab.capFormatNums":"페이지 번호붙이기","DE.Views.HeaderFooterTab.capHeaderTop":"머리글을 맨 위에","DE.Views.HeaderFooterTab.capNumOfPages":"페이지 수","DE.Views.HeaderFooterTab.mniImageFromFile":"파일에서 이미지 삽입","DE.Views.HeaderFooterTab.mniImageFromStorage":"저장소 이미지","DE.Views.HeaderFooterTab.mniImageFromUrl":"URL 그림","DE.Views.HeaderFooterTab.tipCloseTab":"닫기 탭","DE.Views.HeaderFooterTab.tipDateTime":"현재 날짜 시간 삽입","DE.Views.HeaderFooterTab.tipHeaderFooter":"머리글 또는 바닥글 편집","DE.Views.HeaderFooterTab.tipInsertImage":"이미지 삽입","DE.Views.HeaderFooterTab.tipInsField":"필드 삽입","DE.Views.HeaderFooterTab.tipNumOfPages":"페이지 수","DE.Views.HeaderFooterTab.tipPageNumbering":"페이지 번호붙이기","DE.Views.HeaderFooterTab.txtCloseTab":"닫기","DE.Views.HeaderFooterTab.txtDiffFirst":"첫 페이지를 다르게","DE.Views.HeaderFooterTab.txtDiffOddEven":"홀수 및 짝수 페이지 다르게","DE.Views.HeaderFooterTab.txtEditFooter":"바닥글 편집","DE.Views.HeaderFooterTab.txtEditHeader":"머리글 편집","DE.Views.HeaderFooterTab.txtHeaderFooter":"머리말 및 꼬리말","DE.Views.HeaderFooterTab.txtPageNumbering":"페이지 번호","DE.Views.HeaderFooterTab.txtRemoveFooter":"바닥글 삭제","DE.Views.HeaderFooterTab.txtRemoveHeader":"머리말 제거","DE.Views.HeaderFooterTab.txtSameAs":"이전 링크","DE.Views.HyperlinkSettingsDialog.textDefault":"선택한 텍스트 조각","DE.Views.HyperlinkSettingsDialog.textDisplay":"표시","DE.Views.HyperlinkSettingsDialog.textExternal":"외부 링크","DE.Views.HyperlinkSettingsDialog.textInternal":"문서의 현재 위치","DE.Views.HyperlinkSettingsDialog.textSelectFile":"파일 선택","DE.Views.HyperlinkSettingsDialog.textTitle":"하이퍼링크 설정","DE.Views.HyperlinkSettingsDialog.textTooltip":"스크린팁 텍스트","DE.Views.HyperlinkSettingsDialog.textUrl":"링크 대상","DE.Views.HyperlinkSettingsDialog.txtBeginning":"문서의 시작","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.HyperlinkSettingsDialog.txtUrlPlaceholder":"웹 주소를 입력하거나 파일을 선택하세요","DE.Views.HyphenationDialog.textAuto":"문서를 자동으로 하이픈으로 바꿉니다","DE.Views.HyphenationDialog.textCaps":"대문자로 단어에 하이픈 넣기","DE.Views.HyphenationDialog.textLimit":"연속 하이픈을 다음으로 제한하세요.","DE.Views.HyphenationDialog.textNoLimit":"제한 없음","DE.Views.HyphenationDialog.textTitle":"하이픈","DE.Views.HyphenationDialog.textZone":"붙임표 존","DE.Views.ImageSettings.strTransparency":"불투명도","DE.Views.ImageSettings.textAdvanced":"고급 설정 표시","DE.Views.ImageSettings.textCrop":"자르기","DE.Views.ImageSettings.textCropFill":"채우기","DE.Views.ImageSettings.textCropFit":"맞춤","DE.Views.ImageSettings.textCropToShape":"도형에 맞게 자르기","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":"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.textRecentlyUsed":"최근 사용된","DE.Views.ImageSettings.textResetCrop":"자르기 초기화","DE.Views.ImageSettings.textRotate90":"90도 회전","DE.Views.ImageSettings.textRotation":"회전","DE.Views.ImageSettings.textSize":"크기","DE.Views.ImageSettings.textWidth":"너비","DE.Views.ImageSettings.textWrap":"배치 스타일","DE.Views.ImageSettings.txtBehind":"텍스트 뒤","DE.Views.ImageSettings.txtInFront":"텍스트 앞에","DE.Views.ImageSettings.txtInline":"텍스트에 맞춰","DE.Views.ImageSettings.txtSquare":"Square","DE.Views.ImageSettings.txtThrough":"통해","DE.Views.ImageSettings.txtTight":"빽빽하게","DE.Views.ImageSettings.txtTopAndBottom":"상단 및 하단","DE.Views.ImageSettingsAdvanced.strMargins":"텍스트 채우기","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"지정 값","DE.Views.ImageSettingsAdvanced.textAlignment":"정렬","DE.Views.ImageSettingsAdvanced.textAlt":"대체 텍스트","DE.Views.ImageSettingsAdvanced.textAltDescription":"설명","DE.Views.ImageSettingsAdvanced.textAltTip":"시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.","DE.Views.ImageSettingsAdvanced.textAltTitle":"제목","DE.Views.ImageSettingsAdvanced.textAngle":"각도","DE.Views.ImageSettingsAdvanced.textArrows":"화살표","DE.Views.ImageSettingsAdvanced.textAspectRatio":"가로 세로 비율 고정","DE.Views.ImageSettingsAdvanced.textAuto":"자동","DE.Views.ImageSettingsAdvanced.textAutofit":"자동조정","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"교차축","DE.Views.ImageSettingsAdvanced.textAxisPos":"축 위치","DE.Views.ImageSettingsAdvanced.textAxisTitle":"제목","DE.Views.ImageSettingsAdvanced.textBase":"기준","DE.Views.ImageSettingsAdvanced.textBeginSize":"크기 시작","DE.Views.ImageSettingsAdvanced.textBeginStyle":"스타일 시작","DE.Views.ImageSettingsAdvanced.textBelow":"below","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"눈금 사이","DE.Views.ImageSettingsAdvanced.textBevel":"Bevel","DE.Views.ImageSettingsAdvanced.textBillions":"10 억","DE.Views.ImageSettingsAdvanced.textBottom":"하단","DE.Views.ImageSettingsAdvanced.textBottomMargin":"아래 여백","DE.Views.ImageSettingsAdvanced.textBtnWrap":"텍스트 줄 바꿈","DE.Views.ImageSettingsAdvanced.textCapType":"모자 유형","DE.Views.ImageSettingsAdvanced.textCategoryName":"카테고리 이름","DE.Views.ImageSettingsAdvanced.textCenter":"Center","DE.Views.ImageSettingsAdvanced.textCharacter":"문자","DE.Views.ImageSettingsAdvanced.textChartTitle":"차트 제목","DE.Views.ImageSettingsAdvanced.textColumn":"열","DE.Views.ImageSettingsAdvanced.textCross":"교차","DE.Views.ImageSettingsAdvanced.textCustom":"사용자 지정","DE.Views.ImageSettingsAdvanced.textDataLabels":"데이터 레이블","DE.Views.ImageSettingsAdvanced.textDistance":"텍스트로부터의 거리","DE.Views.ImageSettingsAdvanced.textEndSize":"최종 크기","DE.Views.ImageSettingsAdvanced.textEndStyle":"끝 스타일","DE.Views.ImageSettingsAdvanced.textFit":"너비에 맞추기","DE.Views.ImageSettingsAdvanced.textFixed":"고정","DE.Views.ImageSettingsAdvanced.textFlat":"Flat","DE.Views.ImageSettingsAdvanced.textFlipped":"뒤집기","DE.Views.ImageSettingsAdvanced.textFormat":"레이블 서식","DE.Views.ImageSettingsAdvanced.textGridLines":"눈금선","DE.Views.ImageSettingsAdvanced.textHeight":"높이","DE.Views.ImageSettingsAdvanced.textHideAxis":"축 감추기","DE.Views.ImageSettingsAdvanced.textHigh":"위쪽","DE.Views.ImageSettingsAdvanced.textHorAxis":"가로 축","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"수평 보조축","DE.Views.ImageSettingsAdvanced.textHorizontal":"수평","DE.Views.ImageSettingsAdvanced.textHorizontally":"수평","DE.Views.ImageSettingsAdvanced.textHundredMil":"100,000,000","DE.Views.ImageSettingsAdvanced.textHundreds":"백 단위","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100,000","DE.Views.ImageSettingsAdvanced.textIn":"안쪽","DE.Views.ImageSettingsAdvanced.textInnerBottom":"안쪽 위","DE.Views.ImageSettingsAdvanced.textInnerTop":"안쪽 위","DE.Views.ImageSettingsAdvanced.textJoinType":"조인 유형","DE.Views.ImageSettingsAdvanced.textKeepRatio":"상수 비율","DE.Views.ImageSettingsAdvanced.textLabelDist":"축 레이블 간격","DE.Views.ImageSettingsAdvanced.textLabelInterval":"레이블 간격","DE.Views.ImageSettingsAdvanced.textLabelOptions":"레이블 옵션","DE.Views.ImageSettingsAdvanced.textLabelPos":"레이블 위치","DE.Views.ImageSettingsAdvanced.textLayout":"레이아웃","DE.Views.ImageSettingsAdvanced.textLeft":"왼쪽","DE.Views.ImageSettingsAdvanced.textLeftMargin":"왼쪽 여백","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"왼쪽 오버레이","DE.Views.ImageSettingsAdvanced.textLegendBottom":"하단","DE.Views.ImageSettingsAdvanced.textLegendLeft":"왼쪽 겹치기","DE.Views.ImageSettingsAdvanced.textLegendPos":"범례","DE.Views.ImageSettingsAdvanced.textLegendRight":"오른쪽","DE.Views.ImageSettingsAdvanced.textLegendTop":"위","DE.Views.ImageSettingsAdvanced.textLine":"Line","DE.Views.ImageSettingsAdvanced.textLines":"선","DE.Views.ImageSettingsAdvanced.textLineStyle":"선 스타일","DE.Views.ImageSettingsAdvanced.textLogScale":"로그 눈금","DE.Views.ImageSettingsAdvanced.textLow":"아래쪽","DE.Views.ImageSettingsAdvanced.textMajor":"메이저","DE.Views.ImageSettingsAdvanced.textMajorMinor":"매이저 및 마이너","DE.Views.ImageSettingsAdvanced.textMajorType":"주요 유형","DE.Views.ImageSettingsAdvanced.textManual":"수동","DE.Views.ImageSettingsAdvanced.textMargin":"여백","DE.Views.ImageSettingsAdvanced.textMarkers":"표시 기호","DE.Views.ImageSettingsAdvanced.textMarksInterval":"눈금 간격","DE.Views.ImageSettingsAdvanced.textMaxValue":"최대값","DE.Views.ImageSettingsAdvanced.textMillions":"백만 단위","DE.Views.ImageSettingsAdvanced.textMinor":"마이너","DE.Views.ImageSettingsAdvanced.textMinorType":"보조 유형","DE.Views.ImageSettingsAdvanced.textMinValue":"최소값","DE.Views.ImageSettingsAdvanced.textMiter":"연귀","DE.Views.ImageSettingsAdvanced.textMove":"텍스트가있는 객체 이동","DE.Views.ImageSettingsAdvanced.textNextToAxis":"축 옆","DE.Views.ImageSettingsAdvanced.textNone":"없음","DE.Views.ImageSettingsAdvanced.textNoOverlay":"오버레이 없음","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"눈금 표시","DE.Views.ImageSettingsAdvanced.textOptions":"옵션","DE.Views.ImageSettingsAdvanced.textOriginalSize":"실제 크기","DE.Views.ImageSettingsAdvanced.textOut":"바깥쪽","DE.Views.ImageSettingsAdvanced.textOuterTop":"바깥쪽 위","DE.Views.ImageSettingsAdvanced.textOverlap":"중복 허용","DE.Views.ImageSettingsAdvanced.textOverlay":"오버레이","DE.Views.ImageSettingsAdvanced.textPage":"페이지","DE.Views.ImageSettingsAdvanced.textParagraph":"단락","DE.Views.ImageSettingsAdvanced.textPosition":"위치","DE.Views.ImageSettingsAdvanced.textPositionPc":"상대 위치","DE.Views.ImageSettingsAdvanced.textRelative":"기준","DE.Views.ImageSettingsAdvanced.textRelativeWH":"비율","DE.Views.ImageSettingsAdvanced.textResizeFit":"텍스트에 맞게 모양 조정","DE.Views.ImageSettingsAdvanced.textReverse":"값 역순","DE.Views.ImageSettingsAdvanced.textRight":"오른쪽","DE.Views.ImageSettingsAdvanced.textRightMargin":"오른쪽 여백","DE.Views.ImageSettingsAdvanced.textRightOf":"오른쪽 기준점","DE.Views.ImageSettingsAdvanced.textRightOverlay":"오른쪽 오버레이","DE.Views.ImageSettingsAdvanced.textRotated":"회전","DE.Views.ImageSettingsAdvanced.textRotation":"회전","DE.Views.ImageSettingsAdvanced.textRound":"원","DE.Views.ImageSettingsAdvanced.textSeparator":"데이터 레이블 구분 기호","DE.Views.ImageSettingsAdvanced.textSeriesName":"계열 이름","DE.Views.ImageSettingsAdvanced.textShape":"도형 설정","DE.Views.ImageSettingsAdvanced.textSize":"크기","DE.Views.ImageSettingsAdvanced.textSmooth":"부드럽게","DE.Views.ImageSettingsAdvanced.textSquare":"Square","DE.Views.ImageSettingsAdvanced.textStraight":"직선","DE.Views.ImageSettingsAdvanced.textTenMillions":"10,000,000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10,000","DE.Views.ImageSettingsAdvanced.textTextBox":"텍스트 상자","DE.Views.ImageSettingsAdvanced.textThousands":"천 단위","DE.Views.ImageSettingsAdvanced.textTickOptions":"눈금 옵션","DE.Views.ImageSettingsAdvanced.textTitle":"이미지 - 고급 설정","DE.Views.ImageSettingsAdvanced.textTitleChart":"차트 - 고급 설정","DE.Views.ImageSettingsAdvanced.textTitleShape":"도형 - 고급 설정","DE.Views.ImageSettingsAdvanced.textTop":"위","DE.Views.ImageSettingsAdvanced.textTopMargin":"상위 여백","DE.Views.ImageSettingsAdvanced.textTrillions":"조 단위","DE.Views.ImageSettingsAdvanced.textUnits":"표시 단위","DE.Views.ImageSettingsAdvanced.textValue":"값","DE.Views.ImageSettingsAdvanced.textVertAxis":"세로 축","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"수직 보조축","DE.Views.ImageSettingsAdvanced.textVertical":"세로","DE.Views.ImageSettingsAdvanced.textVertically":"세로","DE.Views.ImageSettingsAdvanced.textWeightArrows":"가중치 및 화살표","DE.Views.ImageSettingsAdvanced.textWidth":"너비","DE.Views.ImageSettingsAdvanced.textWrap":"배치 스타일","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"텍스트 뒤","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"텍스트 앞에","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"텍스트에 맞춰","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"Square","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"통해","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"빽빽하게","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"상단 및 하단","DE.Views.LeftMenu.ariaLeftMenu":"왼쪽 메뉴","DE.Views.LeftMenu.tipAbout":"정보","DE.Views.LeftMenu.tipChat":"채팅","DE.Views.LeftMenu.tipComments":"코멘트","DE.Views.LeftMenu.tipNavigation":"내비게이션","DE.Views.LeftMenu.tipOutline":"제목","DE.Views.LeftMenu.tipPageThumbnails":"페이지 썸네일","DE.Views.LeftMenu.tipPlugins":"플러그인","DE.Views.LeftMenu.tipSearch":"검색","DE.Views.LeftMenu.tipSupport":"피드백 및 지원","DE.Views.LeftMenu.tipTitles":"제목","DE.Views.LeftMenu.txtDeveloper":"개발자 모드","DE.Views.LeftMenu.txtEditor":"문서 편집기","DE.Views.LeftMenu.txtLimit":"접근제한","DE.Views.LeftMenu.txtTrial":"시험 모드","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":"포인트 앞으로","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.capBtnAddText":"텍스트 추가","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.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.tipAddText":"목차에 제목 포함","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.Links.txtDontShowTof":"목차에 표시하지 않음","DE.Views.Links.txtLevel":"레벨","DE.Views.ListIndentsDialog.textSpace":"공간","DE.Views.ListIndentsDialog.textTab":"탭 문자","DE.Views.ListIndentsDialog.textTitle":"들여쓰기 목록","DE.Views.ListIndentsDialog.txtFollowBullet":"글머리 기호 이후에 이어지는","DE.Views.ListIndentsDialog.txtFollowNumber":"숫자 이후에 이어지는","DE.Views.ListIndentsDialog.txtIndent":"텍스트 들여쓰기","DE.Views.ListIndentsDialog.txtNone":"없음","DE.Views.ListIndentsDialog.txtPosBullet":"글머리 기호 위치","DE.Views.ListIndentsDialog.txtPosNumber":"번호위치","DE.Views.ListSettingsDialog.textAuto":"자동","DE.Views.ListSettingsDialog.textBold":"굵게","DE.Views.ListSettingsDialog.textCenter":"가운데","DE.Views.ListSettingsDialog.textHide":"숨기기 설정","DE.Views.ListSettingsDialog.textItalic":"기울임꼴","DE.Views.ListSettingsDialog.textLeft":"왼쪽","DE.Views.ListSettingsDialog.textLevel":"레벨","DE.Views.ListSettingsDialog.textMore":"더 많은 설정 표시","DE.Views.ListSettingsDialog.textPreview":"미리보기","DE.Views.ListSettingsDialog.textRight":"오른쪽","DE.Views.ListSettingsDialog.textSelectLevel":"레벨 선택","DE.Views.ListSettingsDialog.textSpace":"공간","DE.Views.ListSettingsDialog.textTab":"탭 문자","DE.Views.ListSettingsDialog.txtAlign":"맞춤","DE.Views.ListSettingsDialog.txtAlignAt":"에","DE.Views.ListSettingsDialog.txtBullet":"글머리 기호","DE.Views.ListSettingsDialog.txtColor":"색상","DE.Views.ListSettingsDialog.txtFollow":"숫자 이후에 이어지는","DE.Views.ListSettingsDialog.txtFontName":"글꼴","DE.Views.ListSettingsDialog.txtInclcudeLevel":"레벨 번호를 포함","DE.Views.ListSettingsDialog.txtIndent":"텍스트 들여쓰기","DE.Views.ListSettingsDialog.txtLikeText":"텍스트처럼","DE.Views.ListSettingsDialog.txtMoreTypes":"더 많은 유형","DE.Views.ListSettingsDialog.txtNewBullet":"새로운 글머리 기호","DE.Views.ListSettingsDialog.txtNone":"없음","DE.Views.ListSettingsDialog.txtNumFormatString":"숫자 형식","DE.Views.ListSettingsDialog.txtRestart":"재시작 목록","DE.Views.ListSettingsDialog.txtSize":"크기","DE.Views.ListSettingsDialog.txtStart":"시작 시간","DE.Views.ListSettingsDialog.txtSymbol":"기호","DE.Views.ListSettingsDialog.txtTabStop":"탭 정지 추가","DE.Views.ListSettingsDialog.txtTitle":"목록 설정","DE.Views.ListSettingsDialog.txtType":"유형","DE.Views.ListTypesAdvanced.labelSelect":"목록 유형 선택","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"보내기","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"테마","DE.Views.MailMergeEmailDlg.textAttachDocx":"DOCX로 첨부","DE.Views.MailMergeEmailDlg.textAttachPdf":"PDF로 첨부","DE.Views.MailMergeEmailDlg.textFileName":"파일 이름","DE.Views.MailMergeEmailDlg.textFormat":"메일 형식","DE.Views.MailMergeEmailDlg.textFrom":"보낸 사람","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"메시지","DE.Views.MailMergeEmailDlg.textSubject":"\b제목","DE.Views.MailMergeEmailDlg.textTitle":"이메일로 보내기","DE.Views.MailMergeEmailDlg.textTo":"받는 사람","DE.Views.MailMergeEmailDlg.textWarning":"경고!","DE.Views.MailMergeEmailDlg.textWarningMsg":"일단 '보내기'버튼을 클릭하면 메일 링을 중지 할 수 없습니다.","DE.Views.MailMergeSettings.downloadMergeTitle":"병합","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"병합하지 못했습니다.","DE.Views.MailMergeSettings.notcriticalErrorTitle":"경고","DE.Views.MailMergeSettings.textAddRecipients":"먼저 목록에 수신자를 추가하십시오","DE.Views.MailMergeSettings.textAll":"모든 레코드","DE.Views.MailMergeSettings.textCurrent":"현재 레코드","DE.Views.MailMergeSettings.textDataSource":"데이터 소스","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"다운로드","DE.Views.MailMergeSettings.textEditData":"받는 사람 목록 편집","DE.Views.MailMergeSettings.textEmail":"이메일","DE.Views.MailMergeSettings.textFrom":"보낸 사람","DE.Views.MailMergeSettings.textGoToMail":"메일로 이동","DE.Views.MailMergeSettings.textHighlight":"병합 필드 강조 표시","DE.Views.MailMergeSettings.textInsertField":"병합 필드 삽입","DE.Views.MailMergeSettings.textMaxRecepients":"최대 100 명의 수신자.","DE.Views.MailMergeSettings.textMerge":"병합","DE.Views.MailMergeSettings.textMergeFields":"필드 병합","DE.Views.MailMergeSettings.textMergeTo":"병합","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"저장","DE.Views.MailMergeSettings.textPreview":"결과 미리보기","DE.Views.MailMergeSettings.textReadMore":"자세히 보기","DE.Views.MailMergeSettings.textSendMsg":"모든 메일 메시지가 준비되어 있으며 일정 시간 내에 발송됩니다.
우편 발송 속도는 메일 서비스에 따라 다릅니다.
문서 작업을 계속하거나 닫을 수 있습니다 . 작업이 끝나면 등록 이메일 주소로 알림이 전송됩니다. ","DE.Views.MailMergeSettings.textTo":"받는 사람","DE.Views.MailMergeSettings.txtFirst":"처음 녹화","DE.Views.MailMergeSettings.txtFromToError":"\"시작\"의 값은 \"마지막\"의 값보다 작아야 합니다.","DE.Views.MailMergeSettings.txtLast":"마지막 기록","DE.Views.MailMergeSettings.txtNext":"다음 레코드로","DE.Views.MailMergeSettings.txtPrev":"이전 레코드로","DE.Views.MailMergeSettings.txtUntitled":"제목없음","DE.Views.MailMergeSettings.warnProcessMailMerge":"병합 시작 실패","DE.Views.Navigation.strNavigate":"제목","DE.Views.Navigation.txtClosePanel":"제목 닫기","DE.Views.Navigation.txtCollapse":"모두 접기","DE.Views.Navigation.txtDemote":"강등","DE.Views.Navigation.txtEmpty":"문서에 제목이 없습니다.
텍스트에 제목 스타일을 적용하여 목차에 표시되도록 합니다.","DE.Views.Navigation.txtEmptyItem":"머리말 없음","DE.Views.Navigation.txtEmptyViewer":"문서에 제목이 없습니다. ","DE.Views.Navigation.txtExpand":"모두 확장","DE.Views.Navigation.txtExpandToLevel":"레벨로 확장하기","DE.Views.Navigation.txtFontSize":"글자 크기","DE.Views.Navigation.txtHeadingAfter":"뒤에 신규 머리글 ","DE.Views.Navigation.txtHeadingBefore":"전에 신규 머리글 ","DE.Views.Navigation.txtLarge":"큰","DE.Views.Navigation.txtMedium":"중","DE.Views.Navigation.txtNewHeading":"신규 하위 제목","DE.Views.Navigation.txtPromote":"승급","DE.Views.Navigation.txtSelect":"콘텐트 선택","DE.Views.Navigation.txtSettings":"제목 설정","DE.Views.Navigation.txtSmall":"작은","DE.Views.Navigation.txtWrapHeadings":"긴 제목 줄 바꿈","DE.Views.NoteSettingsDialog.textApply":"적용","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":"서식","DE.Views.NoteSettingsDialog.textInsert":"삽입","DE.Views.NoteSettingsDialog.textLocation":"위치","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":"아래쪽","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":"여백","DE.Views.PageMarginsDialog.textTop":"위쪽","DE.Views.PageMarginsDialog.txtMarginsH":"주어진 페이지 높이에 대해 위쪽 및 아래쪽 여백이 너무 높습니다.","DE.Views.PageMarginsDialog.txtMarginsW":"왼쪽 및 오른쪽 여백이 주어진 페이지 너비에 비해 너무 넓습니다.","DE.Views.PageNumberingDlg.textFrom":"시작","DE.Views.PageNumberingDlg.textMoreTypes":"더 많은 유형","DE.Views.PageNumberingDlg.textNumberFormat":"숫자 형식","DE.Views.PageNumberingDlg.textPrev":"이전 섹션에서 계속하기","DE.Views.PageSizeDialog.textHeight":"높이","DE.Views.PageSizeDialog.textPreset":"미리 설정된","DE.Views.PageSizeDialog.textTitle":"페이지 크기","DE.Views.PageSizeDialog.textWidth":"너비","DE.Views.PageSizeDialog.txtCustom":"사용자 정의","DE.Views.PageThumbnails.textClosePanel":"페이지 썸네일 닫기","DE.Views.PageThumbnails.textHighlightVisiblePart":"페이지에서 보이는 부분 강조 표시","DE.Views.PageThumbnails.textPageThumbnails":"페이지 썸네일","DE.Views.PageThumbnails.textThumbnailsSettings":"썸네일 설정","DE.Views.PageThumbnails.textThumbnailsSize":"썸네일 크기","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.strSpacingAfter":"이후","DE.Views.ParagraphSettings.strSpacingBefore":"단락 앞","DE.Views.ParagraphSettings.textAdvanced":"고급 설정 표시","DE.Views.ParagraphSettings.textAt":"At","DE.Views.ParagraphSettings.textAtLeast":"적어도","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.strDirection":"방향","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"이중 취소선","DE.Views.ParagraphSettingsAdvanced.strIndent":"들여쓰기","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"왼쪽","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":"안쪽 여백","DE.Views.ParagraphSettingsAdvanced.strOrphan":"페이지 분리 방지","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"글꼴","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"들여쓰기 및 간격","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"줄 바꾸고 페이지 나누기","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"게재 위치","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"작은 대문자","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"같은 스타일의 단락 사이에 공백 삽입 안 함","DE.Views.ParagraphSettingsAdvanced.strSpacing":"간격","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.textAll":"모든","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"최소","DE.Views.ParagraphSettingsAdvanced.textAuto":"배수","DE.Views.ParagraphSettingsAdvanced.textBackColor":"배경색","DE.Views.ParagraphSettingsAdvanced.textBodyText":"기본 텍스트","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"테두리 색상","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"다이어그램을 클릭하거나 단추를 사용하여 테두리를 선택하고 선택한 스타일을 적용","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"테두리 굵기","DE.Views.ParagraphSettingsAdvanced.textBottom":"하단","DE.Views.ParagraphSettingsAdvanced.textCentered":"가운데","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"문자 간격","DE.Views.ParagraphSettingsAdvanced.textContext":"상황에 맞는","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"상황별 및 임의적","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"문맥적, 역사적, 그리고 재량적","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"문맥적 및 역사적","DE.Views.ParagraphSettingsAdvanced.textDefault":"기본 탭","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"왼쪽에서 오른쪽으로","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"오른쪽에서 왼쪽으로","DE.Views.ParagraphSettingsAdvanced.textDiscret":"임의의","DE.Views.ParagraphSettingsAdvanced.textEffects":"효과","DE.Views.ParagraphSettingsAdvanced.textExact":"고정","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"첫 번째 줄","DE.Views.ParagraphSettingsAdvanced.textHanging":"둘째 줄 이하","DE.Views.ParagraphSettingsAdvanced.textHistorical":"히스토리","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"역사적 및 재량적","DE.Views.ParagraphSettingsAdvanced.textJustified":"균등분할","DE.Views.ParagraphSettingsAdvanced.textLeader":"탭표시","DE.Views.ParagraphSettingsAdvanced.textLeft":"왼쪽","DE.Views.ParagraphSettingsAdvanced.textLevel":"레벨","DE.Views.ParagraphSettingsAdvanced.textLigatures":"합자기능","DE.Views.ParagraphSettingsAdvanced.textNone":"없음","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(없음)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"오픈타입 기능","DE.Views.ParagraphSettingsAdvanced.textPosition":"위치","DE.Views.ParagraphSettingsAdvanced.textRemove":"제거","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"모두 제거","DE.Views.ParagraphSettingsAdvanced.textRight":"오른쪽","DE.Views.ParagraphSettingsAdvanced.textSet":"지정","DE.Views.ParagraphSettingsAdvanced.textSpacing":"간격","DE.Views.ParagraphSettingsAdvanced.textStandard":"표준 적용","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"표준 및 맥락적","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"표준, 문맥, 재량","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"표준, 문맥, 히스토리","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"표준 및 재량적","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"표준, 히스토리 및 재량사항","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"표준 및 역사적","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"Center","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"왼쪽","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"탭 위치","DE.Views.ParagraphSettingsAdvanced.textTabRight":"오른쪽","DE.Views.ParagraphSettingsAdvanced.textTitle":"문단 - 고급 설정","DE.Views.ParagraphSettingsAdvanced.textTop":"위","DE.Views.ParagraphSettingsAdvanced.tipAll":"바깥쪽 테두리 및 안쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipBottom":"아래쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipInner":"안쪽 가로 테두리","DE.Views.ParagraphSettingsAdvanced.tipLeft":"왼쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipNone":"테두리 없음 설정","DE.Views.ParagraphSettingsAdvanced.tipOuter":"바깥쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipRight":"오른쪽 테두리","DE.Views.ParagraphSettingsAdvanced.tipTop":"위쪽 테두리","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"자동","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"테두리 없음","DE.Views.PrintWithPreview.textMarginsLast":"마지막 사용자 정의","DE.Views.PrintWithPreview.textMarginsModerate":"보통","DE.Views.PrintWithPreview.textMarginsNarrow":"좁게","DE.Views.PrintWithPreview.textMarginsNormal":"표준","DE.Views.PrintWithPreview.textMarginsWide":"넓게","DE.Views.PrintWithPreview.txtAllPages":"전체 페이지","DE.Views.PrintWithPreview.txtAuto":"Auto","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"흑백 인쇄","DE.Views.PrintWithPreview.txtBothSides":"양면에 인쇄","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"긴 변을 중심으로 페이지를 뒤집다","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"짧은 변을 중심으로 페이지를 뒤집다","DE.Views.PrintWithPreview.txtBottom":"하단","DE.Views.PrintWithPreview.txtColorPrinting":"컬러 인쇄","DE.Views.PrintWithPreview.txtCopies":"사본","DE.Views.PrintWithPreview.txtCurrentPage":"현재 페이지","DE.Views.PrintWithPreview.txtCustom":"사용자 정의","DE.Views.PrintWithPreview.txtCustomPages":"맞춤 인쇄","DE.Views.PrintWithPreview.txtLandscape":"가로 모드","DE.Views.PrintWithPreview.txtLeft":"왼쪽","DE.Views.PrintWithPreview.txtMargins":"여백","DE.Views.PrintWithPreview.txtOf":"/ {0}","DE.Views.PrintWithPreview.txtOneSide":"단면 인쇄","DE.Views.PrintWithPreview.txtOneSideDesc":"페이지의 한쪽에만 인쇄","DE.Views.PrintWithPreview.txtPage":"페이지","DE.Views.PrintWithPreview.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","DE.Views.PrintWithPreview.txtPageOrientation":"페이지 방향","DE.Views.PrintWithPreview.txtPages":"페이지","DE.Views.PrintWithPreview.txtPageSize":"페이지 크기","DE.Views.PrintWithPreview.txtPortrait":"세로","DE.Views.PrintWithPreview.txtPrint":"인쇄","DE.Views.PrintWithPreview.txtPrinter":"프린터","DE.Views.PrintWithPreview.txtPrinterNotSelected":"선택된 프린터 없음","DE.Views.PrintWithPreview.txtPrintersNotFound":"프린터를 찾을 수 없습니다","DE.Views.PrintWithPreview.txtPrintPdf":"PDF로 인쇄","DE.Views.PrintWithPreview.txtPrintRange":"인쇄 범위","DE.Views.PrintWithPreview.txtPrintSides":"인쇄면","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"시스템 대화상자를 사용하여 인쇄","DE.Views.PrintWithPreview.txtRight":"오른쪽","DE.Views.PrintWithPreview.txtSelection":"선택","DE.Views.PrintWithPreview.txtTop":"상위","DE.Views.PrintWithPreview.txtWaitingForPrinters":"프린터 대기 중","DE.Views.ProtectDialog.textComments":"코멘트","DE.Views.ProtectDialog.textForms":"양식 작성","DE.Views.ProtectDialog.textReview":"추적된 변경 사항","DE.Views.ProtectDialog.textView":"변경사항 없음(읽기 전용)","DE.Views.ProtectDialog.txtAllow":"문서에서 이 유형의 편집만 허용","DE.Views.ProtectDialog.txtIncorrectPwd":"확인 비밀번호가 같지 않음","DE.Views.ProtectDialog.txtLimit":"비밀번호는 15자로 제한됩니다.","DE.Views.ProtectDialog.txtOptional":"선택","DE.Views.ProtectDialog.txtPassword":"암호","DE.Views.ProtectDialog.txtProtect":"보호","DE.Views.ProtectDialog.txtRepeat":"비밀번호 반복","DE.Views.ProtectDialog.txtTitle":"보호","DE.Views.ProtectDialog.txtWarning":"주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.","DE.Views.RightMenu.ariaRightMenu":"오른쪽 메뉴","DE.Views.RightMenu.txtChartSettings":"차트 설정","DE.Views.RightMenu.txtFormSettings":"폼 설정","DE.Views.RightMenu.txtHeaderFooterSettings":"머리글 및 바닥글 설정","DE.Views.RightMenu.txtImageSettings":"이미지 설정","DE.Views.RightMenu.txtMailMergeSettings":"편지 병합 설정","DE.Views.RightMenu.txtParagraphSettings":"문단 설정","DE.Views.RightMenu.txtShapeSettings":"도형 설정","DE.Views.RightMenu.txtSignatureSettings":"서명 설정","DE.Views.RightMenu.txtTableSettings":"표 설정","DE.Views.RightMenu.txtTextArtSettings":"글자꾸미기 설정","DE.Views.RoleDeleteDlg.textLabel":"이 역할을 삭제하려면, 이와 연결된 필드를 다른 역할로 이동해야 합니다.","DE.Views.RoleDeleteDlg.textSelect":"필드 병합 역할을 선택하세요","DE.Views.RoleDeleteDlg.textTitle":"역할 삭제","DE.Views.RoleEditDlg.errNameExists":"해당 이름을 가진 역할이 이미 존재합니다.","DE.Views.RoleEditDlg.textEmptyError":"역할 이름은 비워둘 수 없습니다.","DE.Views.RoleEditDlg.textName":"역할 이름","DE.Views.RoleEditDlg.textNameEx":"예: 지원자, 고객, 영업 담당자","DE.Views.RoleEditDlg.textNoHighlight":"강조 표시되지 않음","DE.Views.RoleEditDlg.txtTitleEdit":"역할 편집","DE.Views.RoleEditDlg.txtTitleNew":"새 역할 만들기","DE.Views.RolesManagerDlg.textAnyone":"누구나","DE.Views.RolesManagerDlg.textDelete":"삭제","DE.Views.RolesManagerDlg.textDeleteLast":"{0} 수신자를 삭제하시겠습니까?
삭제하면 기본 수신자가 생성됩니다.","DE.Views.RolesManagerDlg.textDescription":"수신자를 추가하고 작성자가 문서를 수신하고 서명하는 순서를 설정","DE.Views.RolesManagerDlg.textDown":"역할을 아래로 이동","DE.Views.RolesManagerDlg.textEdit":"편집","DE.Views.RolesManagerDlg.textEmpty":"역할이 아직 생성되지 않았습니다.
하나 이상의 역할을 생성하면 이 필드에 나타납니다.","DE.Views.RolesManagerDlg.textNew":"신규","DE.Views.RolesManagerDlg.textUp":"역할 위로 이동","DE.Views.RolesManagerDlg.txtTitle":"역할 관리","DE.Views.RolesManagerDlg.warnCantDelete":"이 역할에는 연결된 필드가 있으므로 삭제할 수 없습니다.","DE.Views.RolesManagerDlg.warnDelete":"{0} 수신자를 삭제하시겠습니까?","DE.Views.SaveFormDlg.saveButtonText":"저장","DE.Views.SaveFormDlg.textAnyone":"누구나","DE.Views.SaveFormDlg.textDescription":"양식에 저장할 때 필드가 있는 역할만 채우기 목록에 추가됨","DE.Views.SaveFormDlg.textEmpty":"필드에 연결된 역할이 없습니다.","DE.Views.SaveFormDlg.textFill":"목록 작성","DE.Views.SaveFormDlg.txtTitle":"양식으로 저장","DE.Views.ShapeSettings.strBackground":"배경색","DE.Views.ShapeSettings.strChange":"도형 변경","DE.Views.ShapeSettings.strColor":"색상","DE.Views.ShapeSettings.strFill":"채우기","DE.Views.ShapeSettings.strForeground":"전경색","DE.Views.ShapeSettings.strPattern":"패턴","DE.Views.ShapeSettings.strShadow":"음영 표시","DE.Views.ShapeSettings.strSize":"크기","DE.Views.ShapeSettings.strStroke":"선","DE.Views.ShapeSettings.strTransparency":"투명도","DE.Views.ShapeSettings.strType":"유형","DE.Views.ShapeSettings.textAdjustShadow":"그림자 조정","DE.Views.ShapeSettings.textAdvanced":"고급 설정 표시","DE.Views.ShapeSettings.textAngle":"각도","DE.Views.ShapeSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.","DE.Views.ShapeSettings.textColor":"색상 채우기","DE.Views.ShapeSettings.textDirection":"방향","DE.Views.ShapeSettings.textEditPoints":"꼭지점 수정","DE.Views.ShapeSettings.textEditShape":"도형 편집","DE.Views.ShapeSettings.textEmptyPattern":"패턴 없음","DE.Views.ShapeSettings.textEyedropper":"스포이트","DE.Views.ShapeSettings.textFlip":"대칭","DE.Views.ShapeSettings.textFromFile":"파일로부터","DE.Views.ShapeSettings.textFromStorage":"스토리지로 부터","DE.Views.ShapeSettings.textFromUrl":"URL로부터","DE.Views.ShapeSettings.textGradient":"그라데이션 포인트","DE.Views.ShapeSettings.textGradientFill":"그라데이션 채우기","DE.Views.ShapeSettings.textHint270":"왼쪽으로 90도 회전","DE.Views.ShapeSettings.textHint90":"오른쪽으로 90도 회전","DE.Views.ShapeSettings.textHintFlipH":"좌우대칭","DE.Views.ShapeSettings.textHintFlipV":"상하대칭","DE.Views.ShapeSettings.textImageTexture":"그림 또는 질감","DE.Views.ShapeSettings.textLinear":"선형","DE.Views.ShapeSettings.textMoreColors":"색상 더 보기","DE.Views.ShapeSettings.textNoFill":"채우기 없음","DE.Views.ShapeSettings.textNoShadow":"그림자 없음","DE.Views.ShapeSettings.textPatternFill":"패턴","DE.Views.ShapeSettings.textPosition":"위치","DE.Views.ShapeSettings.textRadial":"방사형","DE.Views.ShapeSettings.textRecentlyUsed":"최근 사용된","DE.Views.ShapeSettings.textRotate90":"90도 회전","DE.Views.ShapeSettings.textRotation":"회전","DE.Views.ShapeSettings.textSelectImage":"그림선택","DE.Views.ShapeSettings.textSelectTexture":"선택","DE.Views.ShapeSettings.textShadow":"그림자","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":"텍스트 뒤","DE.Views.ShapeSettings.txtBrownPaper":"갈색 종이","DE.Views.ShapeSettings.txtCanvas":"Canvas","DE.Views.ShapeSettings.txtCarton":"Carton","DE.Views.ShapeSettings.txtDarkFabric":"어두운 직물","DE.Views.ShapeSettings.txtGrain":"곡물","DE.Views.ShapeSettings.txtGranite":"화강암","DE.Views.ShapeSettings.txtGreyPaper":"회색 용지","DE.Views.ShapeSettings.txtInFront":"텍스트 앞에","DE.Views.ShapeSettings.txtInline":"텍스트에 맞춰","DE.Views.ShapeSettings.txtKnit":"Knit","DE.Views.ShapeSettings.txtLeather":"가죽","DE.Views.ShapeSettings.txtNoBorders":"선 없음","DE.Views.ShapeSettings.txtOffsetBottom":"오프셋: 아래쪽","DE.Views.ShapeSettings.txtOffsetBottomLeft":"오프셋: 아래쪽","DE.Views.ShapeSettings.txtOffsetBottomRight":"오프셋: 왼쪽 아래","DE.Views.ShapeSettings.txtOffsetCenter":"오프셋: 오른쪽 아래","DE.Views.ShapeSettings.txtOffsetLeft":"Offset: Left","DE.Views.ShapeSettings.txtOffsetRight":"오프셋: 오른쪽","DE.Views.ShapeSettings.txtOffsetTop":"오프셋: 위쪽","DE.Views.ShapeSettings.txtOffsetTopLeft":"오프셋: 왼쪽 위","DE.Views.ShapeSettings.txtOffsetTopRight":"오프셋: 오른쪽 위","DE.Views.ShapeSettings.txtPapyrus":"파피루스","DE.Views.ShapeSettings.txtSquare":"Square","DE.Views.ShapeSettings.txtThrough":"통과","DE.Views.ShapeSettings.txtTight":"빽빽하게","DE.Views.ShapeSettings.txtTopAndBottom":"상단 및 하단","DE.Views.ShapeSettings.txtWood":"우드","DE.Views.SignatureSettings.notcriticalErrorTitle":"경고","DE.Views.SignatureSettings.strDelete":"서명 삭제","DE.Views.SignatureSettings.strDetails":"서명 상세","DE.Views.SignatureSettings.strInvalid":"잘못된 서명","DE.Views.SignatureSettings.strRequested":"요청 서명","DE.Views.SignatureSettings.strSetup":"서명 셋업","DE.Views.SignatureSettings.strSign":"서명","DE.Views.SignatureSettings.strSignature":"서명","DE.Views.SignatureSettings.strSigner":"서명자","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.txtSignedForm":"이 문서는 서명되어 편집할 수 없습니다.","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.tipHandTool":"손도구","DE.Views.Statusbar.tipMultiplePages":"Multiple pages","DE.Views.Statusbar.tipSelectTool":"도구 선택","DE.Views.Statusbar.tipSetLang":"텍스트 언어 설정","DE.Views.Statusbar.tipZoomFactor":"확대/축소","DE.Views.Statusbar.tipZoomIn":"확대","DE.Views.Statusbar.tipZoomOut":"축소","DE.Views.Statusbar.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","DE.Views.Statusbar.txtPages":"페이지","DE.Views.Statusbar.txtParagraphs":"단락","DE.Views.Statusbar.txtSpaces":"공백이 있는 기호","DE.Views.Statusbar.txtSymbols":"기호","DE.Views.Statusbar.txtWordCount":"문자수","DE.Views.Statusbar.txtWords":"단어","DE.Views.StyleTitleDialog.textHeader":"새 스타일 만들기","DE.Views.StyleTitleDialog.textNextStyle":"다음 단락 스타일","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.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":"열 삭제","DE.Views.TableSettings.deleteRowText":"행 삭제","DE.Views.TableSettings.deleteTableText":"테이블 삭제","DE.Views.TableSettings.insertColumnLeftText":"왼쪽에 열 삽입","DE.Views.TableSettings.insertColumnRightText":"오른쪽 열 삽입","DE.Views.TableSettings.insertRowAboveText":"위에 행 삽입","DE.Views.TableSettings.insertRowBelowText":"아래에 행 삽입","DE.Views.TableSettings.mergeCellsText":"셀 병합","DE.Views.TableSettings.selectCellText":"셀 선택","DE.Views.TableSettings.selectColumnText":"열 선택","DE.Views.TableSettings.selectRowText":"행 선택","DE.Views.TableSettings.selectTableText":"표 선택","DE.Views.TableSettings.splitCellsText":"셀 분할 ...","DE.Views.TableSettings.splitCellTitleText":"셀 분할","DE.Views.TableSettings.strRepeatRow":"각 페이지 상단의 헤더 행으로 반복","DE.Views.TableSettings.textAddFormula":"수식추가","DE.Views.TableSettings.textAdvanced":"고급 설정 표시","DE.Views.TableSettings.textAutofit":"내용에 맞게 자동 조정","DE.Views.TableSettings.textBackColor":"배경색","DE.Views.TableSettings.textBanded":"줄무늬","DE.Views.TableSettings.textBorderColor":"색상","DE.Views.TableSettings.textBorders":"테두리 스타일","DE.Views.TableSettings.textCellSize":"행/열 크기","DE.Views.TableSettings.textColumns":"열","DE.Views.TableSettings.textConvert":"표를 문자로 변환","DE.Views.TableSettings.textDistributeCols":"열 너비 균등 분배","DE.Views.TableSettings.textDistributeRows":"행 배포","DE.Views.TableSettings.textEdit":"행 및 열","DE.Views.TableSettings.textEmptyTemplate":"템플릿 없음","DE.Views.TableSettings.textFirst":"처음","DE.Views.TableSettings.textHeader":"머리글","DE.Views.TableSettings.textHeight":"높이","DE.Views.TableSettings.textLast":"마지막","DE.Views.TableSettings.textRows":"행","DE.Views.TableSettings.textSelectBorders":"위에서 선택한 스타일 적용을 변경하려는 테두리 선택","DE.Views.TableSettings.textTemplate":"템플릿에서 선택","DE.Views.TableSettings.textTotal":"요약 행","DE.Views.TableSettings.textWidth":"너비","DE.Views.TableSettings.tipAll":"바깥쪽 테두리 및 안쪽 테두리","DE.Views.TableSettings.tipBottom":"바깥 아래쪽 테두리","DE.Views.TableSettings.tipInner":"내부 라인 만 설정","DE.Views.TableSettings.tipInnerHor":"안쪽 가로 테두리","DE.Views.TableSettings.tipInnerVert":"세로 내부 선만 설정","DE.Views.TableSettings.tipLeft":"바깥 왼쪽 테두리","DE.Views.TableSettings.tipNone":"테두리 없음 설정","DE.Views.TableSettings.tipOuter":"바깥쪽 테두리","DE.Views.TableSettings.tipRight":"바깥 오른쪽 테두리","DE.Views.TableSettings.tipTop":"바깥 위쪽 테두리","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"경계 및 선이 있는 표","DE.Views.TableSettings.txtGroupTable_Custom":"사용자 정의","DE.Views.TableSettings.txtGroupTable_Grid":"격자 테이블","DE.Views.TableSettings.txtGroupTable_List":"표 목록","DE.Views.TableSettings.txtGroupTable_Plain":"일반 테이블","DE.Views.TableSettings.txtNoBorders":"테두리 없음","DE.Views.TableSettings.txtTable_Accent":"강조","DE.Views.TableSettings.txtTable_Bordered":"경계가 있는","DE.Views.TableSettings.txtTable_BorderedAndLined":"경계 및 선포함","DE.Views.TableSettings.txtTable_Colorful":"화려한","DE.Views.TableSettings.txtTable_Dark":"어두운","DE.Views.TableSettings.txtTable_GridTable":"그리드 테이블","DE.Views.TableSettings.txtTable_Light":"밝은","DE.Views.TableSettings.txtTable_Lined":"선으로 채워진","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.textAltTitle":"제목","DE.Views.TableSettingsAdvanced.textAnchorText":"텍스트","DE.Views.TableSettingsAdvanced.textAutofit":"내용에 맞게 자동으로 크기 조정","DE.Views.TableSettingsAdvanced.textBackColor":"셀 배경","DE.Views.TableSettingsAdvanced.textBelow":"아래","DE.Views.TableSettingsAdvanced.textBorderColor":"테두리 색상","DE.Views.TableSettingsAdvanced.textBorderDesc":"다이어그램을 클릭하거나 단추를 사용하여 테두리를 선택하고 선택한 스타일을 적용","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"테두리 및 배경","DE.Views.TableSettingsAdvanced.textBorderWidth":"테두리 굵기","DE.Views.TableSettingsAdvanced.textBottom":"하단","DE.Views.TableSettingsAdvanced.textCellOptions":"셀 옵션","DE.Views.TableSettingsAdvanced.textCellProps":"셀","DE.Views.TableSettingsAdvanced.textCellSize":"셀 크기","DE.Views.TableSettingsAdvanced.textCenter":"Center","DE.Views.TableSettingsAdvanced.textCenterTooltip":"Center","DE.Views.TableSettingsAdvanced.textCheckMargins":"기본 여백 사용","DE.Views.TableSettingsAdvanced.textDefaultMargins":"기본 셀 여백","DE.Views.TableSettingsAdvanced.textDistance":"텍스트로부터의 거리","DE.Views.TableSettingsAdvanced.textHorizontal":"수평","DE.Views.TableSettingsAdvanced.textIndLeft":"왼쪽에서 들여 쓰기","DE.Views.TableSettingsAdvanced.textLeft":"왼쪽","DE.Views.TableSettingsAdvanced.textLeftTooltip":"왼쪽","DE.Views.TableSettingsAdvanced.textMargin":"여백","DE.Views.TableSettingsAdvanced.textMargins":"셀 여백","DE.Views.TableSettingsAdvanced.textMeasure":"측정","DE.Views.TableSettingsAdvanced.textMove":"텍스트가있는 객체 이동","DE.Views.TableSettingsAdvanced.textOnlyCells":"선택한 셀만 해당","DE.Views.TableSettingsAdvanced.textOptions":"옵션","DE.Views.TableSettingsAdvanced.textOverlap":"중복 허용","DE.Views.TableSettingsAdvanced.textPage":"페이지","DE.Views.TableSettingsAdvanced.textPosition":"위치","DE.Views.TableSettingsAdvanced.textPrefWidth":"기본 너비","DE.Views.TableSettingsAdvanced.textPreview":"미리보기","DE.Views.TableSettingsAdvanced.textRelative":"기준","DE.Views.TableSettingsAdvanced.textRight":"오른쪽","DE.Views.TableSettingsAdvanced.textRightOf":"오른쪽 기준점","DE.Views.TableSettingsAdvanced.textRightTooltip":"오른쪽","DE.Views.TableSettingsAdvanced.textTable":"표","DE.Views.TableSettingsAdvanced.textTableBackColor":"표 배경","DE.Views.TableSettingsAdvanced.textTablePosition":"표 위치","DE.Views.TableSettingsAdvanced.textTableSize":"표 크기","DE.Views.TableSettingsAdvanced.textTitle":"표 - 고급 설정","DE.Views.TableSettingsAdvanced.textTop":"위","DE.Views.TableSettingsAdvanced.textVertical":"세로","DE.Views.TableSettingsAdvanced.textWidth":"너비","DE.Views.TableSettingsAdvanced.textWidthSpaces":"너비 및 공백","DE.Views.TableSettingsAdvanced.textWrap":"텍스트 줄 바꿈","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"인라인 테이블","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"흐름표","DE.Views.TableSettingsAdvanced.textWrappingStyle":"배치 스타일","DE.Views.TableSettingsAdvanced.textWrapText":"텍스트 줄 바꾸기","DE.Views.TableSettingsAdvanced.tipAll":"바깥쪽 테두리 및 안쪽 테두리","DE.Views.TableSettingsAdvanced.tipCellAll":"내부 셀만 테두리 설정","DE.Views.TableSettingsAdvanced.tipCellInner":"내부 셀만 수직선과 수평선 설정","DE.Views.TableSettingsAdvanced.tipCellOuter":"내부 셀 전용 외곽선 설정","DE.Views.TableSettingsAdvanced.tipInner":"내부 라인 만 설정","DE.Views.TableSettingsAdvanced.tipNone":"테두리 없음 설정","DE.Views.TableSettingsAdvanced.tipOuter":"바깥쪽 테두리","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"모든 내부 셀에 테두리 및 테두리 설정","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"내부 셀의 외부 테두리 및 수직 및 수평선 설정","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"내부 셀에 대한 테이블 바깥 쪽 테두리 및 바깥 쪽 테두리 설정","DE.Views.TableSettingsAdvanced.txtCm":"센티미터","DE.Views.TableSettingsAdvanced.txtInch":"인치","DE.Views.TableSettingsAdvanced.txtNoBorders":"테두리 없음","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.strTransparency":"투명도","DE.Views.TextArtSettings.strType":"유형","DE.Views.TextArtSettings.textAngle":"각도","DE.Views.TextArtSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.","DE.Views.TextArtSettings.textColor":"색상 채우기","DE.Views.TextArtSettings.textDirection":"방향","DE.Views.TextArtSettings.textGradient":"그라데이션 포인트","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":"선 없음","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.capBtnHand":"손바닥 도구","DE.Views.Toolbar.capBtnHyphenation":"하이픈","DE.Views.Toolbar.capBtnInsChart":"차트","DE.Views.Toolbar.capBtnInsControls":"콘텐츠 제어","DE.Views.Toolbar.capBtnInsDropcap":"드롭 캡","DE.Views.Toolbar.capBtnInsEquation":"수식","DE.Views.Toolbar.capBtnInsHeader":"머리말/꼬리말","DE.Views.Toolbar.capBtnInsPagebreak":"나누기","DE.Views.Toolbar.capBtnInsShape":"도형","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"기호","DE.Views.Toolbar.capBtnInsTable":"테이블","DE.Views.Toolbar.capBtnInsTextart":"텍스트 아트","DE.Views.Toolbar.capBtnInsTextbox":"텍스트 상자","DE.Views.Toolbar.capBtnInsTextFromFile":"파일에서 텍스트 삽입","DE.Views.Toolbar.capBtnLineNumbers":"행번호","DE.Views.Toolbar.capBtnMargins":"여백","DE.Views.Toolbar.capBtnPageColor":"페이지 색상","DE.Views.Toolbar.capBtnPageOrient":"방향","DE.Views.Toolbar.capBtnPageSize":"크기","DE.Views.Toolbar.capBtnSelect":"선택","DE.Views.Toolbar.capBtnWatermark":"워터마크","DE.Views.Toolbar.capColorScheme":"색상","DE.Views.Toolbar.capImgAlign":"정렬","DE.Views.Toolbar.capImgBackward":"뒤로 보내기","DE.Views.Toolbar.capImgForward":"앞으로 보내기","DE.Views.Toolbar.capImgGroup":"그룹","DE.Views.Toolbar.capImgWrapping":"포장","DE.Views.Toolbar.capShapesMerge":"도형 병합","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.mniInsertSSE":"스프레드시트 삽입","DE.Views.Toolbar.mniLowerCase":"소문자","DE.Views.Toolbar.mniRemoveFooter":"바닥글 삭제","DE.Views.Toolbar.mniRemoveHeader":"머리말 제거","DE.Views.Toolbar.mniSentenceCase":"문장의 첫 글자를 대문자로","DE.Views.Toolbar.mniTextFromLocalFile":"로컬 파일에서 텍스트 삽입","DE.Views.Toolbar.mniTextFromStorage":"저장소 파일에서 텍스트 삽입","DE.Views.Toolbar.mniTextFromURL":"URL 파일에서 텍스트 삽입","DE.Views.Toolbar.mniTextToTable":"문자를 테이블로 변환","DE.Views.Toolbar.mniToggleCase":"대/소문자 전환","DE.Views.Toolbar.mniUpperCase":"대문자","DE.Views.Toolbar.strMenuNoFill":"채우기 없음","DE.Views.Toolbar.textAddSpaceAfter":"문단 뒤 간격 추가","DE.Views.Toolbar.textAddSpaceBefore":"문단 앞 간격 추가","DE.Views.Toolbar.textAllBorders":"모든 테두리","DE.Views.Toolbar.textAlpha":"소문자 알파","DE.Views.Toolbar.textAuto":"자동","DE.Views.Toolbar.textAutoColor":"자동","DE.Views.Toolbar.textBetta":"소문자 베타","DE.Views.Toolbar.textBlackHeart":"검은색 하트","DE.Views.Toolbar.textBold":"Bold","DE.Views.Toolbar.textBordersColor":"테두리 색","DE.Views.Toolbar.textBordersStyle":"테두리 스타일","DE.Views.Toolbar.textBottom":"아래쪽 : ","DE.Views.Toolbar.textBottomBorders":"아래쪽 테두리","DE.Views.Toolbar.textBullet":"글머리 기호","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.textCopyright":"저작권 표시","DE.Views.Toolbar.textCustomHyphen":"붙임표 옵션","DE.Views.Toolbar.textCustomLineNumbers":"행 번호 옵션","DE.Views.Toolbar.textDateControl":"날짜","DE.Views.Toolbar.textDegree":"도수 기호","DE.Views.Toolbar.textDelta":"소문자 델타","DE.Views.Toolbar.textDirLtr":"왼쪽에서 오른쪽으로","DE.Views.Toolbar.textDirRtl":"오른쪽에서 왼쪽으로","DE.Views.Toolbar.textDivision":"나누기 기호","DE.Views.Toolbar.textDollar":"달러 기호","DE.Views.Toolbar.textDropdownControl":"드롭 다운 메뉴","DE.Views.Toolbar.textEditMode":"PDF 편집","DE.Views.Toolbar.textEditWatermark":"사용자 정의 워터마크","DE.Views.Toolbar.textEuro":"유로화","DE.Views.Toolbar.textEvenPage":"짝수 페이지","DE.Views.Toolbar.textGreaterEqual":"크거나 같음","DE.Views.Toolbar.textIndAfter":"이후 들여쓰기","DE.Views.Toolbar.textIndBefore":"이전 들여쓰기","DE.Views.Toolbar.textIndLeft":"왼쪽 들여쓰기","DE.Views.Toolbar.textIndRight":"오른쪽 들여쓰기","DE.Views.Toolbar.textInfinity":"무한대","DE.Views.Toolbar.textInMargin":"여백 있음","DE.Views.Toolbar.textInsColumnBreak":"열 나누기 삽입","DE.Views.Toolbar.textInsertPageCount":"페이지 수 삽입","DE.Views.Toolbar.textInsertPageNumber":"페이지 번호 삽입","DE.Views.Toolbar.textInsideBorders":"안쪽 테두리","DE.Views.Toolbar.textInsideHorBorders":"내부 가로 테두리","DE.Views.Toolbar.textInsideVertBorders":"내부 세로 테두리","DE.Views.Toolbar.textInsPageBreak":"페이지 나누기 삽입","DE.Views.Toolbar.textInsSectionBreak":"섹션 나누기 삽입","DE.Views.Toolbar.textInText":"텍스트에서","DE.Views.Toolbar.textItalic":"기울임꼴","DE.Views.Toolbar.textLandscape":"가로","DE.Views.Toolbar.textLeft":"왼쪽 : ","DE.Views.Toolbar.textLeftBorders":"왼쪽 테두리","DE.Views.Toolbar.textLessEqual":"보다 작거나 같음","DE.Views.Toolbar.textLetterPi":"소문자 파이","DE.Views.Toolbar.textLineSpaceOptions":"줄 간격 옵션","DE.Views.Toolbar.textListSettings":"목록 설정","DE.Views.Toolbar.textMarginsLast":"마지막 사용자 정의","DE.Views.Toolbar.textMarginsModerate":"보통","DE.Views.Toolbar.textMarginsNarrow":"좁게","DE.Views.Toolbar.textMarginsNormal":"표준","DE.Views.Toolbar.textMarginsWide":"넓게","DE.Views.Toolbar.textMoreSymbols":"더 많은 기호","DE.Views.Toolbar.textNewColor":"새로운 사용자 정의 색 추가","DE.Views.Toolbar.textNextPage":"다음 페이지","DE.Views.Toolbar.textNoBorders":"테두리 없음","DE.Views.Toolbar.textNoHighlight":"강조 표시되지 않음","DE.Views.Toolbar.textNone":"없음","DE.Views.Toolbar.textNotEqualTo":"같지 않음","DE.Views.Toolbar.textOddPage":"홀수 페이지","DE.Views.Toolbar.textOneHalf":"2분의 1","DE.Views.Toolbar.textOneQuarter":"4분의 1","DE.Views.Toolbar.textOutBorders":"바깥쪽 테두리","DE.Views.Toolbar.textPageMarginsCustom":"사용자 정의 여백","DE.Views.Toolbar.textPageSizeCustom":"사용자 정의 페이지 크기","DE.Views.Toolbar.textPictureControl":"그림","DE.Views.Toolbar.textPlainControl":"일반 텍스트","DE.Views.Toolbar.textPlusMinus":"플러스 마이너스 기호","DE.Views.Toolbar.textPortrait":"세로","DE.Views.Toolbar.textRegistered":"등록된 서명","DE.Views.Toolbar.textRemoveControl":"콘텐츠 제어 삭제","DE.Views.Toolbar.textRemSpaceAfter":"문단 뒤 간격 제거","DE.Views.Toolbar.textRemSpaceBefore":"문단 앞 간격 제거","DE.Views.Toolbar.textRemWatermark":"워터마크 제거","DE.Views.Toolbar.textRestartEachPage":"각 페이지 다시 시작","DE.Views.Toolbar.textRestartEachSection":"각 섹션 다시 시작","DE.Views.Toolbar.textRichControl":"리치 텍스트","DE.Views.Toolbar.textRight":"오른쪽 : ","DE.Views.Toolbar.textRightBorders":"오른쪽 테두리","DE.Views.Toolbar.textSection":"섹션 기호","DE.Views.Toolbar.textShapesCombine":"결합","DE.Views.Toolbar.textShapesFragment":"조각","DE.Views.Toolbar.textShapesIntersect":"교차","DE.Views.Toolbar.textShapesSubstract":"빼기","DE.Views.Toolbar.textShapesUnion":"병합","DE.Views.Toolbar.textSmile":"환한 미소","DE.Views.Toolbar.textSpaceAfter":"단락 뒤 간격","DE.Views.Toolbar.textSpaceBefore":"단락 앞 간격","DE.Views.Toolbar.textSquareRoot":"제곱근","DE.Views.Toolbar.textStrikeout":"취소선","DE.Views.Toolbar.textStyleMenuDelete":"스타일 삭제","DE.Views.Toolbar.textStyleMenuDeleteAll":"모든 사용자 정의 스타일 삭제","DE.Views.Toolbar.textStyleMenuNew":"선택 항목의 새 스타일","DE.Views.Toolbar.textStyleMenuRestore":"기본값으로 복원","DE.Views.Toolbar.textStyleMenuRestoreAll":"모두 기본 스타일로 복원","DE.Views.Toolbar.textStyleMenuUpdate":"선택 항목에서 업데이트","DE.Views.Toolbar.textSubscript":"아래 첨자","DE.Views.Toolbar.textSuperscript":"위 첨자","DE.Views.Toolbar.textSuppressForCurrentParagraph":"이 단락에서 해제","DE.Views.Toolbar.textTabCollaboration":"협업","DE.Views.Toolbar.textTabDraw":"그리기","DE.Views.Toolbar.textTabFile":"파일","DE.Views.Toolbar.textTabHeaderFooter":"머리말 및 꼬리말","DE.Views.Toolbar.textTabHome":"홈","DE.Views.Toolbar.textTabInsert":"삽입","DE.Views.Toolbar.textTabLayout":"레이아웃","DE.Views.Toolbar.textTabLinks":"참조","DE.Views.Toolbar.textTabProtect":"보호","DE.Views.Toolbar.textTabReview":"검토","DE.Views.Toolbar.textTabView":"보기","DE.Views.Toolbar.textTilde":"물결표","DE.Views.Toolbar.textTitleError":"오류","DE.Views.Toolbar.textToCurrent":"현재 위치로","DE.Views.Toolbar.textTop":"\b위쪽 : ","DE.Views.Toolbar.textTopBorders":"위쪽 테두리","DE.Views.Toolbar.textTradeMark":"상표 표시","DE.Views.Toolbar.textUnderline":"밑줄","DE.Views.Toolbar.textYen":"엔화","DE.Views.Toolbar.tipAlignCenter":"가운데 정렬","DE.Views.Toolbar.tipAlignJust":"균등분할","DE.Views.Toolbar.tipAlignLeft":"왼쪽 정렬","DE.Views.Toolbar.tipAlignRight":"오른쪽 정렬","DE.Views.Toolbar.tipBack":"뒤로","DE.Views.Toolbar.tipBlankPage":"빈 페이지 삽입","DE.Views.Toolbar.tipBorders":"테두리","DE.Views.Toolbar.tipChangeCase":"대소문자 변경","DE.Views.Toolbar.tipChangeChart":"차트 유형 변경","DE.Views.Toolbar.tipClearStyle":"스타일 지우기","DE.Views.Toolbar.tipColorSchemas":"색상 구성 변경","DE.Views.Toolbar.tipColumns":"열 삽입","DE.Views.Toolbar.tipControls":"콘텐츠 컨트롤 추가","DE.Views.Toolbar.tipCopy":"복사","DE.Views.Toolbar.tipCopyStyle":"스타일 복사","DE.Views.Toolbar.tipCut":"잘라 내기","DE.Views.Toolbar.tipDecFont":"글꼴 크기 작게","DE.Views.Toolbar.tipDecPrLeft":"들여쓰기 줄이기","DE.Views.Toolbar.tipDownload":"파일 다운로드","DE.Views.Toolbar.tipDropCap":"드롭 캡 삽입","DE.Views.Toolbar.tipEditMode":"현재 파일을 편집합니다.
페이지가 새로 고쳐집니다.","DE.Views.Toolbar.tipFontColor":"글꼴 색","DE.Views.Toolbar.tipFontName":"글꼴","DE.Views.Toolbar.tipFontSize":"글꼴 크기","DE.Views.Toolbar.tipHandTool":"손 도구","DE.Views.Toolbar.tipHighlightColor":"색상 강조 표시","DE.Views.Toolbar.tipHyphenation":"하이픈 연결 변경","DE.Views.Toolbar.tipImgAlign":"오브젝트 정렬","DE.Views.Toolbar.tipImgGroup":"그룹 오브젝트","DE.Views.Toolbar.tipImgWrapping":"텍스트 줄 바꾸기","DE.Views.Toolbar.tipIncFont":"증가 글꼴 크기","DE.Views.Toolbar.tipIncPrLeft":"들여쓰기 늘리기","DE.Views.Toolbar.tipInsertChart":"차트 삽입","DE.Views.Toolbar.tipInsertEquation":"수식 삽입","DE.Views.Toolbar.tipInsertHorizontalText":"가로 텍스트 상자 삽입","DE.Views.Toolbar.tipInsertNum":"페이지 번호 삽입","DE.Views.Toolbar.tipInsertShape":"도형 삽입","DE.Views.Toolbar.tipInsertSmartArt":"SmartArt 삽입","DE.Views.Toolbar.tipInsertSymbol":"기호 삽입","DE.Views.Toolbar.tipInsertTable":"표 삽입","DE.Views.Toolbar.tipInsertText":"텍스트 상자 삽입","DE.Views.Toolbar.tipInsertTextArt":"텍스트 아트 삽입","DE.Views.Toolbar.tipInsertVerticalText":"세로 텍스트 상자 삽입","DE.Views.Toolbar.tipLineNumbers":"행 번호 표시","DE.Views.Toolbar.tipLineSpace":"단락 줄 간격","DE.Views.Toolbar.tipMailRecepients":"편지 병합","DE.Views.Toolbar.tipMarkers":"Bullets","DE.Views.Toolbar.tipMarkersArrow":"화살 글머리 기호","DE.Views.Toolbar.tipMarkersCheckmark":"체크 표시 글머리 기호","DE.Views.Toolbar.tipMarkersDash":"대시 글머리 기호","DE.Views.Toolbar.tipMarkersFRhombus":"채워진 마름모 글머리 기호","DE.Views.Toolbar.tipMarkersFRound":"채워진 원형 글머리 기호","DE.Views.Toolbar.tipMarkersFSquare":"채워진 사각형 글머리 기호","DE.Views.Toolbar.tipMarkersHRound":"빈 원형 글머리 기호","DE.Views.Toolbar.tipMarkersStar":"별 글머리 기호","DE.Views.Toolbar.tipMultiLevelArticl":"다단계 번호가 부여된 항목","DE.Views.Toolbar.tipMultiLevelChapter":"다단계 번호가 부여된 챕터","DE.Views.Toolbar.tipMultiLevelHeadings":"다단계 번호가 부여된 제목","DE.Views.Toolbar.tipMultiLevelHeadVarious":"다단계의 다양한 번호가 매겨진 제목","DE.Views.Toolbar.tipMultiLevelNumbered":"멀티-레벨 번호 글머리 기호","DE.Views.Toolbar.tipMultilevels":"다중 레벨 목록","DE.Views.Toolbar.tipMultiLevelSymbols":"멀티-레벨 기호 글머리 기호","DE.Views.Toolbar.tipMultiLevelVarious":"멀티-레벨 여러 번호 글머리 기호","DE.Views.Toolbar.tipNumbers":"번호 매기기","DE.Views.Toolbar.tipPageBreak":"페이지 또는 섹션 나누기 삽입","DE.Views.Toolbar.tipPageColor":"페이지 색 변경","DE.Views.Toolbar.tipPageMargins":"페이지 여백","DE.Views.Toolbar.tipPageOrient":"페이지 방향","DE.Views.Toolbar.tipPageSize":"페이지 크기","DE.Views.Toolbar.tipParagraphStyle":"단락 스타일","DE.Views.Toolbar.tipPaste":"붙여 넣기","DE.Views.Toolbar.tipPrColor":"단락 배경색","DE.Views.Toolbar.tipPrint":"인쇄","DE.Views.Toolbar.tipPrintQuick":"빠른 인쇄","DE.Views.Toolbar.tipRedo":"다시 실행","DE.Views.Toolbar.tipReplace":"바꾸기","DE.Views.Toolbar.tipSave":"저장","DE.Views.Toolbar.tipSaveCoauth":"다른 사용자가 볼 수 있도록 변경 사항을 저장하십시오.","DE.Views.Toolbar.tipSelectAll":"모두 선택","DE.Views.Toolbar.tipSelectTool":"도구 선택","DE.Views.Toolbar.tipSendBackward":"뒤로 보내기","DE.Views.Toolbar.tipSendForward":"앞으로 보내기","DE.Views.Toolbar.tipShapesMerge":"도형 병합","DE.Views.Toolbar.tipShowHiddenChars":"인쇄되지 않는 문자","DE.Views.Toolbar.tipSynchronize":"다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.","DE.Views.Toolbar.tipTextDir":"텍스트 방향","DE.Views.Toolbar.tipTextFromFile":"파일에서 텍스트 삽입","DE.Views.Toolbar.tipUndo":"실행 취소","DE.Views.Toolbar.tipWatermark":"워터마크 수정","DE.Views.Toolbar.txtAutoText":"자동","DE.Views.Toolbar.txtDistribHor":"수평 분포","DE.Views.Toolbar.txtDistribVert":"수직 분포","DE.Views.Toolbar.txtGroupBulletDoc":"문서 글머리 기호","DE.Views.Toolbar.txtGroupBulletLib":"글머리 기호 라이브러리","DE.Views.Toolbar.txtGroupMultiDoc":"현재 문서의 목록","DE.Views.Toolbar.txtGroupMultiLib":"목록 라이브러리","DE.Views.Toolbar.txtGroupNumDoc":"문서 번호 형식","DE.Views.Toolbar.txtGroupNumLib":"번호부여 라이브러리","DE.Views.Toolbar.txtGroupRecent":"최근 사용된","DE.Views.Toolbar.txtMarginAlign":"여백정렬","DE.Views.Toolbar.txtObjectsAlign":"선택한 개체 정렬","DE.Views.Toolbar.txtPageAlign":"페이지 정렬","DE.Views.ViewTab.textAlwaysShowToolbar":"항상 도구 모음 표시","DE.Views.ViewTab.textDarkDocument":"어두운 문서","DE.Views.ViewTab.textFill":"채우기","DE.Views.ViewTab.textFitToPage":"페이지에 맞춤","DE.Views.ViewTab.textFitToWidth":"너비에 맞춤","DE.Views.ViewTab.textInterfaceTheme":"인터페이스 테마","DE.Views.ViewTab.textLeftMenu":"왼쪽 패널","DE.Views.ViewTab.textLine":"선","DE.Views.ViewTab.textMacros":"매크로","DE.Views.ViewTab.textMultiplePages":"Multiple Pages","DE.Views.ViewTab.textNavigation":"내비게이션","DE.Views.ViewTab.textOutline":"제목","DE.Views.ViewTab.textPauseMacro":"녹음 일시 정지","DE.Views.ViewTab.textRecMacro":"매크로 기록","DE.Views.ViewTab.textResumeMacro":"녹음 재개","DE.Views.ViewTab.textRightMenu":"오른쪽 패널","DE.Views.ViewTab.textRulers":"자","DE.Views.ViewTab.textStatusBar":"상태 바","DE.Views.ViewTab.textStopMacro":"녹음 중지","DE.Views.ViewTab.textTabStyle":"탭 스타일","DE.Views.ViewTab.textZoom":"확대/축소","DE.Views.ViewTab.textZoom100":"Zoom to 100%","DE.Views.ViewTab.tipDarkDocument":"어두운 문서","DE.Views.ViewTab.tipFitToPage":"페이지에 맞춤","DE.Views.ViewTab.tipFitToWidth":"너비에 맞춤","DE.Views.ViewTab.tipHeadings":"제목","DE.Views.ViewTab.tipInterfaceTheme":"인터페이스 테마","DE.Views.ViewTab.tipMacros":"매크로","DE.Views.ViewTab.tipMultiplePages":"Multiple pages","DE.Views.ViewTab.tipPauseMacro":"녹음 일시 정지","DE.Views.ViewTab.tipRecMacro":"매크로 기록","DE.Views.ViewTab.tipResumeMacro":"녹음 재개","DE.Views.ViewTab.tipStopMacro":"녹음 중지","DE.Views.ViewTab.tipZoom100":"Zoom to 100%","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/public/web-apps/apps/documenteditor/main/locale/pt.json b/public/web-apps/apps/documenteditor/main/locale/pt.json index 5cb8142cc..eaead0b4e 100644 --- a/public/web-apps/apps/documenteditor/main/locale/pt.json +++ b/public/web-apps/apps/documenteditor/main/locale/pt.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"Aviso","Common.Controllers.Desktop.hintBtnHome":"Mostrar janela principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Criar a partir do modelo","Common.Controllers.ExternalDiagramEditor.textAnonymous":"Anônimo","Common.Controllers.ExternalDiagramEditor.textClose":"Fechar","Common.Controllers.ExternalDiagramEditor.warningText":"O objeto está desabilitado por que está sendo editado por outro usuário.","Common.Controllers.ExternalDiagramEditor.warningTitle":"Aviso","Common.Controllers.ExternalLinks.textAddExternalData":"O link para uma fonte externa foi adicionado. Você pode atualizar esses links na guia Dados.","Common.Controllers.ExternalLinks.textDontUpdate":"Não atualize","Common.Controllers.ExternalLinks.textUpdate":"Atualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Erro: falha na atualização","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Esta pasta de trabalho contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta apresentação contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalMergeEditor.textAnonymous":"Anônimo","Common.Controllers.ExternalMergeEditor.textClose":"Fechar","Common.Controllers.ExternalMergeEditor.warningText":"O objeto está desabilitado por que está sendo editado por outro usuário.","Common.Controllers.ExternalMergeEditor.warningTitle":"Aviso","Common.Controllers.ExternalOleEditor.textAnonymous":"Anônimo","Common.Controllers.ExternalOleEditor.textClose":"Fechar","Common.Controllers.ExternalOleEditor.warningText":"O objeto está desabilitado por que está sendo editado por outro usuário.","Common.Controllers.ExternalOleEditor.warningTitle":"Aviso","Common.Controllers.History.notcriticalErrorTitle":"Aviso","Common.Controllers.History.txtErrorLoadHistory":"O carregamento de histórico falhou","Common.Controllers.Plugins.helpMoveMacros":"Para começar a trabalhar com macros, vá para a guia Exibir.","Common.Controllers.Plugins.helpMoveMacrosHeader":"O botão Macros movido","Common.Controllers.Plugins.helpUseMacros":"Localize o botão Macros aqui","Common.Controllers.Plugins.helpUseMacrosHeader":"Acesso atualizado a macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Os plug-ins foram instalados com sucesso. Você pode acessar todos os plugins de fundo aqui.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} foi instalado com sucesso. Você pode acessar todos os plugins de fundo aqui.","Common.Controllers.Plugins.textRunInstalledPlugins":"Execute plug-ins instalados","Common.Controllers.Plugins.textRunPlugin":"Executar plugin","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"Para comparar os documentos, todas as alterações neles serão consideradas aceitas. Deseja continuar?","Common.Controllers.ReviewChanges.textAtLeast":"pelo menos","Common.Controllers.ReviewChanges.textAuto":"auto","Common.Controllers.ReviewChanges.textBaseline":"Linha de base","Common.Controllers.ReviewChanges.textBold":"Negrito","Common.Controllers.ReviewChanges.textBreakBefore":"Quebra de página antes","Common.Controllers.ReviewChanges.textCaps":"Todas maiúsculas","Common.Controllers.ReviewChanges.textCenter":"Alinhar ao centro","Common.Controllers.ReviewChanges.textChar":"Nivel de caracter","Common.Controllers.ReviewChanges.textChart":"Gráfico","Common.Controllers.ReviewChanges.textColor":"Cor da fonte","Common.Controllers.ReviewChanges.textContextual":"Não adicionar intervalo entre parágrafos do mesmo estilo","Common.Controllers.ReviewChanges.textDeleted":"Excluído:","Common.Controllers.ReviewChanges.textDStrikeout":"Tachado duplo","Common.Controllers.ReviewChanges.textEquation":"Equação","Common.Controllers.ReviewChanges.textExact":"exatamente","Common.Controllers.ReviewChanges.textFirstLine":"Primeira linha","Common.Controllers.ReviewChanges.textFontSize":"Tamanho da fonte","Common.Controllers.ReviewChanges.textFormatted":"Formatado","Common.Controllers.ReviewChanges.textHighlight":"Cor de realce","Common.Controllers.ReviewChanges.textImage":"Imagem","Common.Controllers.ReviewChanges.textIndentLeft":"Recuo à esquerda","Common.Controllers.ReviewChanges.textIndentRight":"Recuo à direita","Common.Controllers.ReviewChanges.textInserted":"Inserido:","Common.Controllers.ReviewChanges.textItalic":"Itálico","Common.Controllers.ReviewChanges.textJustify":"Alinhamento justificado","Common.Controllers.ReviewChanges.textKeepLines":"Manter as linhas juntas","Common.Controllers.ReviewChanges.textKeepNext":"Manter com o próximo","Common.Controllers.ReviewChanges.textLeft":"Alinhar à esquerda","Common.Controllers.ReviewChanges.textLineSpacing":"Espaçamento entre linhas:","Common.Controllers.ReviewChanges.textMultiple":"múltiplo","Common.Controllers.ReviewChanges.textNoBreakBefore":"Sem quebra de página antes","Common.Controllers.ReviewChanges.textNoContextual":"Adicionar intervalo entre parágrafos do mesmo estilo","Common.Controllers.ReviewChanges.textNoKeepLines":"Não mantenha linhas juntas","Common.Controllers.ReviewChanges.textNoKeepNext":"Não mantenha com o próximo","Common.Controllers.ReviewChanges.textNot":"Não","Common.Controllers.ReviewChanges.textNoWidow":"Sem controle de linhas órfãs/viúvas","Common.Controllers.ReviewChanges.textNum":"Alterar numeração","Common.Controllers.ReviewChanges.textOff":"{0} não está mais usando o Controle de Alterações.","Common.Controllers.ReviewChanges.textOffGlobal":"{0} Rastreamento de Alterações desabilitado para todos. ","Common.Controllers.ReviewChanges.textOn":"{0} usando controle de alterações. ","Common.Controllers.ReviewChanges.textOnGlobal":"{0} Rastreamento de Alterações habilitado para todos.","Common.Controllers.ReviewChanges.textParaDeleted":"Parágrafo deletado","Common.Controllers.ReviewChanges.textParaFormatted":"Parágrafo formatado","Common.Controllers.ReviewChanges.textParaInserted":"Parágrafo inserido","Common.Controllers.ReviewChanges.textParaMoveFromDown":"Movido para baixo:","Common.Controllers.ReviewChanges.textParaMoveFromUp":"Movido para cima:","Common.Controllers.ReviewChanges.textParaMoveTo":"Movido:","Common.Controllers.ReviewChanges.textPosition":"Posição","Common.Controllers.ReviewChanges.textRight":"Alinhar à direita","Common.Controllers.ReviewChanges.textShape":"Forma","Common.Controllers.ReviewChanges.textShd":"Cor do plano de fundo","Common.Controllers.ReviewChanges.textShow":"Mostrar mudanças em","Common.Controllers.ReviewChanges.textSmallCaps":"Versalete","Common.Controllers.ReviewChanges.textSpacing":"Espaçamento","Common.Controllers.ReviewChanges.textSpacingAfter":"Espaçamento depois","Common.Controllers.ReviewChanges.textSpacingBefore":"Espaçamento antes","Common.Controllers.ReviewChanges.textStrikeout":"Taxado","Common.Controllers.ReviewChanges.textSubScript":"Subscrito","Common.Controllers.ReviewChanges.textSuperScript":"Sobrescrito","Common.Controllers.ReviewChanges.textTableChanged":"Configurações da tabela alteradas","Common.Controllers.ReviewChanges.textTableRowsAdd":"Linhas da tabela incluídas","Common.Controllers.ReviewChanges.textTableRowsDel":"Linhas da tabela excluídas","Common.Controllers.ReviewChanges.textTabs":"Alterar guias","Common.Controllers.ReviewChanges.textTitleComparison":"Configurações de comparação","Common.Controllers.ReviewChanges.textUnderline":"Sublinhado","Common.Controllers.ReviewChanges.textUrl":"Colar um arquivo URL","Common.Controllers.ReviewChanges.textWidow":"Controle de linhas órfãs/viúvas","Common.Controllers.ReviewChanges.textWord":"Nível de palavra","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Adicione uma nova linha na parte inferior da tabela.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Aplique o estilo do título 1 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Aplique o estilo do título 2 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Aplique o estilo do título 3 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Crie uma lista com marcadores não ordenada a partir do fragmento de texto selecionado ou inicie uma nova.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Use a seta do teclado para mover o objeto selecionado um passo grande para baixo.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Use a seta do teclado para mover o objeto selecionado um grande passo para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Use a seta do teclado para mover o objeto selecionado um grande passo para a direita.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Use a seta do teclado para mover o objeto selecionado um passo maior para cima.","Common.Controllers.Shortcuts.txtDescriptionBold":"Deixe a fonte do fragmento de texto selecionado mais escura e pesada que o normal.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Alternar um parágrafo entre centralizado e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Escolha a próxima opção de caixa de combinação no formulário.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Selecione a opção de caixa de combinação anterior no formulário.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Feche a janela do documento atual.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Feche um menu ou janela modal. Redefina pop-ups e balões com comentários e revise alterações. Redefina o modo de desenho e apagamento de tabela. Redefina o recurso de arrastar e soltar texto. Redefina o modo de seleção de marcadores. Redefina o modo de pincel de formatação. Desmarque formas. Redefina o modo de adição de formas. Saia do cabeçalho/rodapé. Saia do preenchimento de formulários.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Envie o fragmento de texto selecionado para a área de transferência do computador. O texto copiado pode ser posteriormente inserido em outro local do mesmo documento, em outro documento ou em algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Copie a formatação do fragmento selecionado do texto editado no momento. A formatação copiada pode ser aplicada posteriormente a outro fragmento de texto no mesmo documento.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Insira um símbolo de direitos autorais no documento atual e à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionCut":"Exclua o fragmento de texto selecionado e envie-o para a área de transferência do computador. O texto copiado pode ser posteriormente inserido em outro local do mesmo documento, em outro documento ou em algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Diminua o tamanho da fonte do fragmento de texto selecionado em 1 ponto.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Exclua um caractere à esquerda do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Exclua uma palavra/seleção/objeto gráfico à esquerda do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Exclua um caractere à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Exclua uma palavra/seleção/objeto gráfico à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Quando o título do gráfico for selecionado, se o título estiver vazio, mova o cursor para o início da linha; caso contrário, selecione o texto.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repita a última ação desfeita.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Selecione todo o texto do documento com tabelas e imagens.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Quando a forma for selecionada, se ela não contiver conteúdo, crie conteúdo e mova o cursor para o início da linha. Se o conteúdo estiver vazio, mova o cursor até ele; caso contrário, selecione todo o conteúdo.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Reverter a última ação executada.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Insira um travessão dentro do documento atual e à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insira um travessão dentro do documento atual e à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Termine o parágrafo atual e comece um novo.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Inicie um novo parágrafo dentro de uma célula.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Adicione um novo espaço reservado ao argumento da equação.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Altere o nível de alinhamento do operador para a esquerda (para a segunda linha da equação com uma quebra forçada).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Altere o nível de alinhamento do operador para a direita (para a segunda linha da equação com uma quebra forçada).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Insira o símbolo do Euro na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Insira o sinal de reticências na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar o tamanho da fonte do fragmento de texto selecionado em 1 ponto.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Recuar um parágrafo incrementalmente a partir da esquerda.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Adicione uma quebra de coluna.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Insira uma nota final.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"Insira uma equação na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Insira uma nota de rodapé.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insira um hiperlink que pode ser usado para acessar um endereço da web.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Adicione uma quebra de linha sem iniciar um novo parágrafo.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Adicione uma quebra de linha no formulário multilinha.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"Inserir uma quebra de página na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Adicione o número da página atual na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Adicione o caractere de tabulação a um parágrafo (se o cursor não estiver no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Insira uma quebra de tabela dentro da tabela.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Deixe a fonte do fragmento de texto selecionado em itálico e levemente inclinada.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Alternar um parágrafo entre justificado e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinhar um parágrafo à esquerda.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para baixo, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para a esquerda, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para a direita, um pixel de cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para cima, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Aumentar o recuo dos parágrafos selecionados.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Diminua o recuo dos parágrafos selecionados.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Mover o foco para o próximo objeto depois do atualmente selecionado.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Move o foco para o objeto anterior ao atualmente selecionado.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Mova o cursor uma linha para baixo.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Coloque o cursor no final do documento atualmente editado.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Coloque o cursor no final da linha atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Mova o cursor uma palavra para a direita.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Mova o cursor um caractere para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Mover para o cabeçalho inferior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Mover para o cabeçalho/rodapé inferior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Vá para a próxima célula em uma linha da tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Passar para o próximo formulário.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Ir para a próxima página no documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Ir para a próxima linha em uma tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Ir para a célula anterior em uma linha da tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Mover para o formulário anterior.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Ir para a página anterior no documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Ir para a linha anterior em uma tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Mova o cursor um caractere para a direita.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Coloque o cursor no início do documento atualmente editado.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Coloque o cursor no início da linha atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Coloque o cursor no início da página seguinte à que está sendo editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Coloque o cursor no início da página que precede a página atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Mova o cursor para o início de uma palavra ou uma palavra para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Mova o cursor uma linha para cima.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Mover para o cabeçalho superior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Mover para o cabeçalho/rodapé superior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Alterne para a próxima guia de arquivo no Desktop Editors ou para a guia do navegador no Online Editors..","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Navegue entre os controles para dar foco ao próximo controle nos diálogos modais.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Crie um hífen entre os caracteres, que não pode ser usado para iniciar uma nova linha.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Crie um espaço entre os caracteres que não possa ser usado para iniciar uma nova linha.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abra o painel de bate-papo nos editores on-line e envie uma mensagem.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abra um campo de entrada de dados onde você pode adicionar o texto do seu comentário.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abra o painel Comentários para adicionar seu próprio comentário ou responder aos comentários de outros usuários.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abra o menu contextual do elemento selecionado.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abra a caixa de diálogo padrão que permite selecionar um arquivo existente. Se você selecionar o arquivo nesta caixa de diálogo e clicar em Abrir, o arquivo será aberto em uma nova aba ou janela do Desktop Editors.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abra o painel Arquivo para salvar, baixar, imprimir o documento atual, visualizar suas informações, criar um novo documento ou abrir um existente, acessar a Central de Ajuda do Editor de Documentos ou configurações avançadas.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abra o menu (painel) Localizar e Substituir com o campo de substituição para substituir uma ou mais ocorrências dos caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abra a janela de diálogo Localizar para começar a procurar um caractere/palavra/frase no documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abra o menu Ajuda do Document Editor.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insira o fragmento de texto copiado anteriormente da memória da área de transferência do computador na posição atual do cursor. O texto pode ter sido copiado anteriormente do mesmo documento, de outro documento ou de algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Aplique a formatação copiada anteriormente ao texto no documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Insira o fragmento de texto copiado anteriormente da memória da área de transferência do computador na posição atual do cursor, sem preservar sua formatação original. O texto pode ter sido copiado anteriormente do mesmo documento, de outro documento ou de algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Alterne para a guia de arquivo anterior no Desktop Editors ou para a guia do navegador no Online Editors.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Navegue entre os controles para dar foco ao controle anterior em diálogos modais.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprima o documento em uma das impressoras disponíveis ou salve-o como um arquivo.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Insira o sinal de marca registrada na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Substitua o código Unicode selecionado por um símbolo.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Limpar formatação do fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Alternar um parágrafo entre alinhado à direita e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionSave":"Salve todas as alterações no documento atualmente editado com o Editor de Documentos. O arquivo ativo será salvo com seu nome, local e formato de arquivo atuais.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Abra o painel Baixar como... para salvar o documento editado no momento no disco rígido do seu computador em um dos formatos suportados.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Role o documento aproximadamente uma página visível para baixo.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Role o documento aproximadamente uma página visível para cima.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Selecione um caractere à esquerda da posição do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Selecione um fragmento de texto do cursor até o início de uma palavra.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mova o cursor uma linha para baixo, selecionando todos os símbolos entre a posição anterior e atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mova o cursor uma linha para cima, selecionando todos os símbolos entre a posição anterior e atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Selecione a parte da página da posição do cursor até a parte inferior da tela.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Selecione a parte da página da posição do cursor até a parte superior da tela.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Selecione um caractere à direita da posição do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Selecione um fragmento de texto do cursor até o final de uma palavra.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Selecione um fragmento de texto do cursor até o início da próxima página.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Selecione um fragmento de texto do cursor até o início da página anterior.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Selecione um fragmento de texto do cursor até o final do documento.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Selecione um fragmento de texto do cursor até o final da linha atual.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Selecione um fragmento de texto do cursor até o início do documento.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Selecione um fragmento de texto do cursor até o início da linha atual.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Mostrar ou ocultar a exibição de caracteres não imprimíveis.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Insira o sinal de hífen suave na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Mantenha a formatação original do texto copiado.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Cole o texto sem a formatação original.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Cole a tabela copiada como uma tabela aninhada na célula selecionada da tabela existente.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Substitua o conteúdo da tabela existente pelos dados copiados.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Habilita/desabilita a transmissão de ações realizadas no aplicativo para leitores de tela.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Aumentar o nível de lista/recuo (com o cursor no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Diminua o nível da lista/recuo (com o cursor no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Faça com que o fragmento de texto selecionado seja riscado com uma linha passando pelas letras.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Reduza o tamanho do fragmento de texto selecionado e coloque-o na parte inferior da linha de texto, por exemplo, como em fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Reduza o tamanho do fragmento de texto selecionado e coloque-o na parte superior da linha de texto, por exemplo, como em frações.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Insira o sinal de marca registrada na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Faça com que o fragmento de texto selecionado seja sublinhado com uma linha abaixo das letras.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Remover um recuo de parágrafo da esquerda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Atualizar campos (por exemplo, Índice).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visite um hiperlink (com o cursor no hiperlink).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Redefina o parâmetro 'Zoom' do documento atual para o padrão 100%.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Ampliar o documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Diminua o zoom do documento editado no momento.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AdicionarNovaLinha","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"AplicarCabeçalho1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"AplicarCabeçalho2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"AplicarCabeçalho3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"Aplicar lista de marcadores","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"GrandeMovimentoObjetoParaBaixo","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"Grande movimento do objeto para a esquerda","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"Grande movimento do objeto para a direita","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"Grande movimento de objeto para cima","Common.Controllers.Shortcuts.txtLabelBold":"Negrito","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copiar","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cortar","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Recuar","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertHyperlink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Itálico","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Colar","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Salvar","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Tachado","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscrito","Common.Controllers.Shortcuts.txtLabelSuperscript":"Sobrescrito","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"Sinal de marca registrada","Common.Controllers.Shortcuts.txtLabelUnderline":"Sublinhado","Common.Controllers.Shortcuts.txtLabelUnIndent":"Desfazer recuo","Common.Controllers.Shortcuts.txtLabelUpdateFields":"Campos de atualização","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"Visite o link","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área empilhada","Common.define.chartData.textAreaStackedPer":"100% Área alinhada","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Colunas agrupadas","Common.define.chartData.textBarNormal3d":"3-D Coluna agrupada","Common.define.chartData.textBarNormal3dPerspective":"Coluna 3-D","Common.define.chartData.textBarStacked":"Coluna alinhada","Common.define.chartData.textBarStacked3d":"Coluna empilhada 3-D","Common.define.chartData.textBarStackedPer":"100% Coluna alinhada","Common.define.chartData.textBarStackedPer3d":"3-D 100% Coluna alinhada","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Coluna","Common.define.chartData.textCombo":"Combo","Common.define.chartData.textComboAreaBar":"Área empilhada - coluna agrupada","Common.define.chartData.textComboBarLine":"Coluna agrupada - linha","Common.define.chartData.textComboBarLineSecondary":"Coluna agrupada - linha no eixo secundário","Common.define.chartData.textComboCustom":"Combinação personalizada","Common.define.chartData.textDoughnut":"Rosquinha","Common.define.chartData.textHBarNormal":"Barras agrupadas","Common.define.chartData.textHBarNormal3d":"3-D Barra agrupada","Common.define.chartData.textHBarStacked":"Barra alinhada","Common.define.chartData.textHBarStacked3d":"Barra empilhada 3-D","Common.define.chartData.textHBarStackedPer":"100% Barra alinhada","Common.define.chartData.textHBarStackedPer3d":"3-D 100% Barra alinhada","Common.define.chartData.textLine":"Linha","Common.define.chartData.textLine3d":"Linha 3-D","Common.define.chartData.textLineMarker":"Linha com marcadores","Common.define.chartData.textLineStacked":"Alinhado","Common.define.chartData.textLineStackedMarker":"Linha empilhada com marcadores","Common.define.chartData.textLineStackedPer":"100% Alinhado","Common.define.chartData.textLineStackedPerMarker":"100% Alinhado com marcadores","Common.define.chartData.textPie":"Gráfico de pizza","Common.define.chartData.textPie3d":"Pizza 3-D","Common.define.chartData.textPoint":"Gráfico de dispersão","Common.define.chartData.textRadar":"Radar","Common.define.chartData.textRadarFilled":"Radar com marcadores","Common.define.chartData.textRadarMarker":"Radar com marcadores","Common.define.chartData.textScatter":"Dispersão","Common.define.chartData.textScatterLine":"Dispersão com linhas retas","Common.define.chartData.textScatterLineMarker":"Dispersão com linhas retas e marcadores","Common.define.chartData.textScatterSmooth":"Dispersão com linhas suaves","Common.define.chartData.textScatterSmoothMarker":"Dispersão com linhas suaves e marcadores","Common.define.chartData.textStock":"Gráfico de ações","Common.define.chartData.textSurface":"Superfície","Common.define.smartArt.textAccentedPicture":"Imagem em destaque","Common.define.smartArt.textAccentProcess":"Processo em destaque","Common.define.smartArt.textAlternatingFlow":"Fluxo alternado","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternados","Common.define.smartArt.textAlternatingPictureBlocks":"Blocos de imagem alternados","Common.define.smartArt.textAlternatingPictureCircles":"Círculos de imagens alternadas","Common.define.smartArt.textArchitectureLayout":"Layout de arquitetura","Common.define.smartArt.textArrowRibbon":"Seta em forma de fita","Common.define.smartArt.textAscendingPictureAccentProcess":"Processo de ênfase da imagem ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Processo curvo básico","Common.define.smartArt.textBasicBlockList":"Lista básica de blocos","Common.define.smartArt.textBasicChevronProcess":"Processo básico em divisas","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Gráfico de pizza básico","Common.define.smartArt.textBasicProcess":"Processo básico","Common.define.smartArt.textBasicPyramid":"Pirâmide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Alvo básico","Common.define.smartArt.textBasicTimeline":"Linha do tempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista de ênfase de imagem de curvatura","Common.define.smartArt.textBendingPictureBlocks":"Blocos de imagem de curvatura","Common.define.smartArt.textBendingPictureCaption":"Legenda de imagem de curvatura","Common.define.smartArt.textBendingPictureCaptionList":"Lista de legendas de imagens de curvatura","Common.define.smartArt.textBendingPictureSemiTranparentText":"Texto semi-transparente de imagem de curvatura","Common.define.smartArt.textBlockCycle":"Ciclo em bloco","Common.define.smartArt.textBubblePictureList":"Lista de imagens em bolha","Common.define.smartArt.textCaptionedPictures":"Imagens legendadas","Common.define.smartArt.textChevronAccentProcess":"Processo de ênfase em divisas","Common.define.smartArt.textChevronList":"Lista de divisas","Common.define.smartArt.textCircleAccentTimeline":"Linha do tempo de ênfase circular","Common.define.smartArt.textCircleArrowProcess":"Processo de seta circular","Common.define.smartArt.textCirclePictureHierarchy":"Hierarquia de imagem circular","Common.define.smartArt.textCircleProcess":"Processo circular","Common.define.smartArt.textCircleRelationship":"Relacionamento circular","Common.define.smartArt.textCircularBendingProcess":"Processo curvo circular","Common.define.smartArt.textCircularPictureCallout":"Texto explicativo de imagem circular","Common.define.smartArt.textClosedChevronProcess":"Processo fechado em divisas","Common.define.smartArt.textContinuousArrowProcess":"Processo de seta contínua","Common.define.smartArt.textContinuousBlockProcess":"Processo de bloco contínuo","Common.define.smartArt.textContinuousCycle":"Ciclo contínuo","Common.define.smartArt.textContinuousPictureList":"Lista de imagem contínua","Common.define.smartArt.textConvergingArrows":"Setas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Setas contrabalançadas ","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista descendente de blocos ","Common.define.smartArt.textDescendingProcess":"Processo descendente","Common.define.smartArt.textDetailedProcess":"Processo detalhado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Equação","Common.define.smartArt.textFramedTextPicture":"Imagem de texto emoldurada","Common.define.smartArt.textFunnel":"Funil","Common.define.smartArt.textGear":"Engrenagem","Common.define.smartArt.textGridMatrix":"Matriz de grade","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organograma de meio círculo","Common.define.smartArt.textHexagonCluster":"Conjunto hexagonal","Common.define.smartArt.textHexagonRadial":"Radial Hexágono","Common.define.smartArt.textHierarchy":"Hierarquia","Common.define.smartArt.textHierarchyList":"Lista de hierarquia","Common.define.smartArt.textHorizontalBulletList":"Lista de marcadores horizontais","Common.define.smartArt.textHorizontalHierarchy":"Hierarquia horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Hierarquia horizontal rotulada","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Hierarquia horizontal multinível","Common.define.smartArt.textHorizontalOrganizationChart":"Organograma horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista de imagens horizontais","Common.define.smartArt.textIncreasingArrowProcess":"Processo de seta crescente","Common.define.smartArt.textIncreasingCircleProcess":"Processo de círculo crescente","Common.define.smartArt.textInterconnectedBlockProcess":"Processo de bloco interconectado","Common.define.smartArt.textInterconnectedRings":"Anéis interconectados","Common.define.smartArt.textInvertedPyramid":"Pirâmide invertida","Common.define.smartArt.textLabeledHierarchy":"Hierarquia rotulada","Common.define.smartArt.textLinearVenn":"Venn Linear","Common.define.smartArt.textLinedList":"Lista alinhada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidirecional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organograma de nome e título","Common.define.smartArt.textNestedTarget":"Alvo aninhado","Common.define.smartArt.textNondirectionalCycle":"Ciclo não direcional","Common.define.smartArt.textOpposingArrows":"Setas opostas","Common.define.smartArt.textOpposingIdeas":"Ideias opostas","Common.define.smartArt.textOrganizationChart":"Organograma","Common.define.smartArt.textOther":"Outro","Common.define.smartArt.textPhasedProcess":"Processo em fases","Common.define.smartArt.textPicture":"Imagem","Common.define.smartArt.textPictureAccentBlocks":"Blocos de destaque de imagem","Common.define.smartArt.textPictureAccentList":"Lista de destaques da imagem","Common.define.smartArt.textPictureAccentProcess":"Processo de destaque da imagem","Common.define.smartArt.textPictureCaptionList":"Lista de legendas de imagens","Common.define.smartArt.textPictureFrame":"Porta-retrato","Common.define.smartArt.textPictureGrid":"Grade de imagens","Common.define.smartArt.textPictureLineup":"Alinhamento de imagens","Common.define.smartArt.textPictureOrganizationChart":"Organograma de imagens","Common.define.smartArt.textPictureStrips":"Tiras de imagem","Common.define.smartArt.textPieProcess":"Processo em pizza","Common.define.smartArt.textPlusAndMinus":"Mais e menos","Common.define.smartArt.textProcess":"Processo","Common.define.smartArt.textProcessArrows":"Setas de processo","Common.define.smartArt.textProcessList":"Lista de processos","Common.define.smartArt.textPyramid":"Pirâmide","Common.define.smartArt.textPyramidList":"Lista de pirâmides","Common.define.smartArt.textRadialCluster":"Aglomerado radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista de imagens radiais","Common.define.smartArt.textRadialVenn":"Venn Radial","Common.define.smartArt.textRandomToResultProcess":"Processo aleatório para resultado","Common.define.smartArt.textRelationship":"Relação","Common.define.smartArt.textRepeatingBendingProcess":"Processo curvo de repetição","Common.define.smartArt.textReverseList":"Lista reversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Processo segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirâmide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de fotos instantâneas","Common.define.smartArt.textSpiralPicture":"Imagem em espiral","Common.define.smartArt.textSquareAccentList":"Lista de destaque quadrada","Common.define.smartArt.textStackedList":"Lista empilhada","Common.define.smartArt.textStackedVenn":"Venn Empilhado","Common.define.smartArt.textStaggeredProcess":"Processo escalonado","Common.define.smartArt.textStepDownProcess":"Processo de redução","Common.define.smartArt.textStepUpProcess":"Processo de intensificação","Common.define.smartArt.textSubStepProcess":"Processo de subetapas","Common.define.smartArt.textTabbedArc":"Arco com abas","Common.define.smartArt.textTableHierarchy":"Hierarquia da tabela","Common.define.smartArt.textTableList":"Lista de tabelas","Common.define.smartArt.textTabList":"Lista de guias","Common.define.smartArt.textTargetList":"Lista de alvos","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Destaque da imagem de tema","Common.define.smartArt.textThemePictureAlternatingAccent":"Destaque alternado da imagem do tema","Common.define.smartArt.textThemePictureGrid":"Grade de imagens do tema","Common.define.smartArt.textTitledMatrix":"Matriz intitulada","Common.define.smartArt.textTitledPictureAccentList":"Lista de destaque de imagem intitulada","Common.define.smartArt.textTitledPictureBlocks":"Blocos de imagens intitulados","Common.define.smartArt.textTitlePictureLineup":"Alinhamento da imagem do título","Common.define.smartArt.textTrapezoidList":"Lista trapezoidal","Common.define.smartArt.textUpwardArrow":"Seta para cima","Common.define.smartArt.textVaryingWidthList":"Lista de largura variável","Common.define.smartArt.textVerticalAccentList":"Lista de acentos verticais","Common.define.smartArt.textVerticalArrowList":"Lista de setas verticais","Common.define.smartArt.textVerticalBendingProcess":"Processo vertical em curva","Common.define.smartArt.textVerticalBlockList":"Lista de bloqueio vertical","Common.define.smartArt.textVerticalBoxList":"Lista de caixa vertical","Common.define.smartArt.textVerticalBracketList":"Lista de colchetes verticais","Common.define.smartArt.textVerticalBulletList":"Lista de marcadores verticais","Common.define.smartArt.textVerticalChevronList":"Lista vertical em divisas","Common.define.smartArt.textVerticalCircleList":"Lista de círculos verticais","Common.define.smartArt.textVerticalCurvedList":"Lista vertical curva","Common.define.smartArt.textVerticalEquation":"Equação vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista de destaque de imagens verticais","Common.define.smartArt.textVerticalPictureList":"Lista de imagens verticais","Common.define.smartArt.textVerticalProcess":"Processo vertical","Common.Translation.textMoreButton":"Mais","Common.Translation.tipFileLocked":"O documento está bloqueado para edição. Você pode fazer alterações e salvá-lo como cópia local mais tarde.","Common.Translation.tipFileReadOnly":"O arquivo é somente leitura. Para manter suas alterações, salve o arquivo com um novo nome ou em um local diferente.","Common.Translation.warnFileLocked":"Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.","Common.Translation.warnFileLockedBtnEdit":"Criar uma cópia","Common.Translation.warnFileLockedBtnView":"Aberto para visualização","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Conta-gotas","Common.UI.ButtonColored.textNewColor":"Mais cores","Common.UI.Calendar.textApril":"Abril","Common.UI.Calendar.textAugust":"Agosto","Common.UI.Calendar.textDecember":"Dezembro","Common.UI.Calendar.textFebruary":"Fevereiro","Common.UI.Calendar.textJanuary":"Janeiro","Common.UI.Calendar.textJuly":"Julho","Common.UI.Calendar.textJune":"Junho","Common.UI.Calendar.textMarch":"Março","Common.UI.Calendar.textMay":"Mai","Common.UI.Calendar.textMonths":"Meses","Common.UI.Calendar.textNovember":"Novembro","Common.UI.Calendar.textOctober":"Outubro","Common.UI.Calendar.textSeptember":"Setembro","Common.UI.Calendar.textShortApril":"Abr","Common.UI.Calendar.textShortAugust":"Ago","Common.UI.Calendar.textShortDecember":"Dez","Common.UI.Calendar.textShortFebruary":"Fev","Common.UI.Calendar.textShortFriday":"Fr","Common.UI.Calendar.textShortJanuary":"Jan","Common.UI.Calendar.textShortJuly":"Jul","Common.UI.Calendar.textShortJune":"Jun","Common.UI.Calendar.textShortMarch":"Mar","Common.UI.Calendar.textShortMay":"Maio","Common.UI.Calendar.textShortMonday":"Me","Common.UI.Calendar.textShortNovember":"Nov","Common.UI.Calendar.textShortOctober":"Out","Common.UI.Calendar.textShortSaturday":"Sáb","Common.UI.Calendar.textShortSeptember":"Set","Common.UI.Calendar.textShortSunday":"Dom","Common.UI.Calendar.textShortThursday":"º","Common.UI.Calendar.textShortTuesday":"Ter","Common.UI.Calendar.textShortWednesday":"Qua","Common.UI.Calendar.textYears":"Anos","Common.UI.ComboBorderSize.txtNoBorders":"Sem bordas","Common.UI.ComboBorderSizeEditable.txtNoBorders":"Sem bordas","Common.UI.ComboDataView.emptyComboText":"Sem estilos","Common.UI.ExtendedColorDialog.addButtonText":"Incluir","Common.UI.ExtendedColorDialog.textCurrent":"Atual","Common.UI.ExtendedColorDialog.textHexErr":"O valor inserido está incorreto.
Insira um valor entre 000000 e FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Novo","Common.UI.ExtendedColorDialog.textRGBErr":"O valor inserido está incorreto.
Insira um valor numérico entre 0 e 255.","Common.UI.HSBColorPicker.textNoColor":"Sem cor","Common.UI.InputField.txtEmpty":"Este campo é obrigatório","Common.UI.InputFieldBtnCalendar.textDate":"Selecione a data","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar palavra-chave","Common.UI.InputFieldBtnPassword.textHintHold":"Pressione e segure para mostrar a senha","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar senha","Common.UI.SearchBar.textFind":"Localizar","Common.UI.SearchBar.tipCloseSearch":"Fechar pesquisa","Common.UI.SearchBar.tipNextResult":"Próximo resultado","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abra as configurações avançadas","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Destacar resultados","Common.UI.SearchDialog.textMatchCase":"Diferenciar maiúsculas de minúsculas","Common.UI.SearchDialog.textReplaceDef":"Inserir o texto de substituição","Common.UI.SearchDialog.textSearchStart":"Insira seu texto aqui","Common.UI.SearchDialog.textTitle":"Localizar e substituir","Common.UI.SearchDialog.textTitle2":"Localizar","Common.UI.SearchDialog.textWholeWords":"Palavras inteiras apenas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar Substituição","Common.UI.SearchDialog.txtBtnReplace":"Substituir","Common.UI.SearchDialog.txtBtnReplaceAll":"Substituir tudo","Common.UI.SynchronizeTip.textDontShow":"Não exibir esta mensagem novamente","Common.UI.SynchronizeTip.textGotIt":"Entendi","Common.UI.SynchronizeTip.textNew":"Novo","Common.UI.SynchronizeTip.textSynchronize":"O documento foi alterado por outro usuário.
Clique para salvar suas alterações e recarregar as atualizações.","Common.UI.ThemeColorPalette.textRecentColors":"Cores recentes","Common.UI.ThemeColorPalette.textStandartColors":"Cores padronizadas","Common.UI.ThemeColorPalette.textThemeColors":"Cores de tema","Common.UI.ThemeColorPalette.textTransparent":"Transparente","Common.UI.Themes.txtThemeClassicLight":"Clássico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste escuro","Common.UI.Themes.txtThemeDark":"Escuro","Common.UI.Themes.txtThemeGray":"Cinza","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Escuro moderno","Common.UI.Themes.txtThemeModernLight":"Claro moderno","Common.UI.Themes.txtThemeSystem":"O mesmo que sistema","Common.UI.Themes.txtThemeWhite":"Branco","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Fechar","Common.UI.Window.noButtonText":"Não","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Confirmação","Common.UI.Window.textDontShow":"Não exibir esta mensagem novamente","Common.UI.Window.textError":"Erro","Common.UI.Window.textInformation":"Informações","Common.UI.Window.textWarning":"Aviso","Common.UI.Window.yesButtonText":"Sim","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"Pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"Acento","Common.Utils.ThemeColor.txtAqua":"Aqua","Common.Utils.ThemeColor.txtbackground":"Plano de fundo","Common.Utils.ThemeColor.txtBlack":"Preto","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde claro","Common.Utils.ThemeColor.txtBrown":"Marrom","Common.Utils.ThemeColor.txtDarkBlue":"Azul escuro","Common.Utils.ThemeColor.txtDarker":"Mais escura","Common.Utils.ThemeColor.txtDarkGray":"Cinza escuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde-escuro","Common.Utils.ThemeColor.txtDarkPurple":"Roxo escuro","Common.Utils.ThemeColor.txtDarkRed":"Vermelho escuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde-azulado escuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarelo escuro","Common.Utils.ThemeColor.txtGold":"Ouro","Common.Utils.ThemeColor.txtGray":"Cinza","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Índigo","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Isqueiro","Common.Utils.ThemeColor.txtLightGray":"Cinza claro","Common.Utils.ThemeColor.txtLightGreen":"Luz verde","Common.Utils.ThemeColor.txtLightOrange":"Laranja claro","Common.Utils.ThemeColor.txtLightYellow":"Luz amarela","Common.Utils.ThemeColor.txtOrange":"Laranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Roxo","Common.Utils.ThemeColor.txtRed":"Vermelho","Common.Utils.ThemeColor.txtRose":"Rosa","Common.Utils.ThemeColor.txtSkyBlue":"Céu azul","Common.Utils.ThemeColor.txtTeal":"Azul-petróleo","Common.Utils.ThemeColor.txttext":"Тexto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Branco","Common.Utils.ThemeColor.txtYellow":"Amarelo","Common.Views.About.txtAddress":"endereço:","Common.Views.About.txtLicensee":"LICENÇA","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"e-mail:","Common.Views.About.txtPoweredBy":"Desenvolvido por","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versão","Common.Views.AutoCorrectDialog.textAdd":"Adicionar","Common.Views.AutoCorrectDialog.textApplyText":"Aplicar enquanto você digita","Common.Views.AutoCorrectDialog.textAutoCorrect":"Autocorreção","Common.Views.AutoCorrectDialog.textAutoFormat":"Auto Formatação conforme você digita","Common.Views.AutoCorrectDialog.textBulleted":"Listas com marcadores automáticas","Common.Views.AutoCorrectDialog.textBy":"Por","Common.Views.AutoCorrectDialog.textDelete":"Excluir","Common.Views.AutoCorrectDialog.textDoubleSpaces":"Adicionar ponto com espaço duplo","Common.Views.AutoCorrectDialog.textFLCells":"Capitalizar a primeira letra das células da tabela","Common.Views.AutoCorrectDialog.textFLDont":"Não colocar a primeira letra em maiúscula após","Common.Views.AutoCorrectDialog.textFLSentence":"Capitalizar a primeira carta de sentenças","Common.Views.AutoCorrectDialog.textForLangFL":"Exceções para o idioma:","Common.Views.AutoCorrectDialog.textHyperlink":"Internet e caminhos de rede com hyperlinks","Common.Views.AutoCorrectDialog.textHyphens":"Hífens (--) com traço (-)","Common.Views.AutoCorrectDialog.textMathCorrect":"Autocorreção matemática","Common.Views.AutoCorrectDialog.textNumbered":"Listas com numeradores automáticos","Common.Views.AutoCorrectDialog.textQuotes":"\"Aspas retas\" com \"aspas inteligentes\"","Common.Views.AutoCorrectDialog.textRecognized":"Funções Reconhecidas","Common.Views.AutoCorrectDialog.textRecognizedDesc":"As seguintes expressões são expressões matemáticas reconhecidas. Eles não ficarão em itálico automaticamente.","Common.Views.AutoCorrectDialog.textReplace":"Substituir","Common.Views.AutoCorrectDialog.textReplaceText":"Substituir ao Digitar","Common.Views.AutoCorrectDialog.textReplaceType":"Substitua o texto enquanto você digita","Common.Views.AutoCorrectDialog.textReset":"Redefinir","Common.Views.AutoCorrectDialog.textResetAll":"Voltar para predefinições","Common.Views.AutoCorrectDialog.textRestore":"Restaurar","Common.Views.AutoCorrectDialog.textTitle":"Autocorreção","Common.Views.AutoCorrectDialog.textWarnAddFL":"As exceções devem conter apenas letras, maiúsculas ou minúsculas.","Common.Views.AutoCorrectDialog.textWarnAddRec":"As funções reconhecidas devem conter apenas as letras de A a Z, maiúsculas ou minúsculas.","Common.Views.AutoCorrectDialog.textWarnResetFL":"Quaisquer exceções que você adicionou serão removidas e as removidas serão restauradas. Deseja continuar?","Common.Views.AutoCorrectDialog.textWarnResetRec":"Qualquer expressão que tenha acrescentado será removida e as expressões removidas serão restauradas. Quer continuar?","Common.Views.AutoCorrectDialog.warnReplace":"A correção automática para %1 já existe. Quer substituir?","Common.Views.AutoCorrectDialog.warnReset":"Qualquer autocorrecção que tenha adicionado será removida e as alterações serão restauradas aos seus valores originais. Quer continuar?","Common.Views.AutoCorrectDialog.warnRestore":"A entrada de autocorreção para %1 será redefinida para seu valor original. Você quer continuar?","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Fechar chat","Common.Views.Chat.textEnterMessage":"Insira sua mensagem aqui","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor Z a A","Common.Views.Comments.mniDateAsc":"Mais antigo","Common.Views.Comments.mniDateDesc":"Novidades","Common.Views.Comments.mniFilterComments":"Mostrar comentários","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"De cima","Common.Views.Comments.mniPositionDesc":"Do fundo","Common.Views.Comments.textAdd":"Incluir","Common.Views.Comments.textAddComment":"Adicionar comentário","Common.Views.Comments.textAddCommentToDoc":"Adicionar comentário ao documento","Common.Views.Comments.textAddReply":"Adicionar resposta","Common.Views.Comments.textAll":"Todos","Common.Views.Comments.textAnonym":"Visitante","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Fechar","Common.Views.Comments.textClosePanel":"Comentários próximos","Common.Views.Comments.textComment":"Comentário","Common.Views.Comments.textComments":"Comentários","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Insira seu comentário aqui","Common.Views.Comments.textHintAddComment":"Adicionar comentário","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir novamente","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resolvido","Common.Views.Comments.textSort":"Ordenar comentários","Common.Views.Comments.textSortFilter":"Classifique e filtre comentários","Common.Views.Comments.textSortFilterMore":"Classificar, filtrar e muito mais","Common.Views.Comments.textSortMore":"Classificar e muito mais","Common.Views.Comments.textViewResolved":"Você não tem permissão para reabrir comentários","Common.Views.Comments.txtEmpty":"Não há comentários no documento.","Common.Views.CopyWarningDialog.textDontShow":"Não exibir esta mensagem novamente","Common.Views.CopyWarningDialog.textMsg":"As ações copiar, cortar e colar usando os botões da barra de ferramentas do editor e as ações de menu de contexto serão realizadas apenas nesta aba do editor.

Para copiar ou colar para ou de aplicativos externos a aba do editor, use as seguintes combinações do teclado:","Common.Views.CopyWarningDialog.textTitle":"Ações de cortar, copiar e colar","Common.Views.CopyWarningDialog.textToCopy":"para Copiar","Common.Views.CopyWarningDialog.textToCut":"para Cortar","Common.Views.CopyWarningDialog.textToPaste":"para Colar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Baixar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Verifique os comandos que serão exibidos na Barra de Ferramentas de Acesso Rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impressão rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Refazer","Common.Views.CustomizeQuickAccessDialog.textSave":"Salvar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalize o acesso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Desfazer","Common.Views.DocumentAccessDialog.textLoading":"Carregando...","Common.Views.DocumentAccessDialog.textTitle":"Configurações de compartilhamento","Common.Views.DocumentPropertyDialog.errorDate":"Você pode escolher um valor do calendário para armazenar o valor como Data.
Se você inserir um valor manualmente, ele será armazenado como Texto.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"Não","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"Sim","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"A propriedade deve ter um título","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"Titulo","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"“Sim” ou ”Não”","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"Data","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"Tipo","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"Número","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"Forneça um número válido","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"Тexto","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"A propriedade deve ter um valor","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"Valor","Common.Views.DocumentPropertyDialog.txtTitle":"Propriedade do novo documento","Common.Views.Draw.hintEraser":"Apagador","Common.Views.Draw.hintSelect":"Selecionar","Common.Views.Draw.txtEraser":"Apagador","Common.Views.Draw.txtHighlighter":"Marcador","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Caneta","Common.Views.Draw.txtSelect":"Selecionar","Common.Views.Draw.txtSize":"Tamanho","Common.Views.ExternalDiagramEditor.textTitle":"Editor de gráfico","Common.Views.ExternalEditor.textClose":"Fechar","Common.Views.ExternalEditor.textSave":"Salvar e Sair","Common.Views.ExternalLinksDlg.closeButtonText":"Fechar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Atualizar automaticamente os dados das fontes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Mudar fonte","Common.Views.ExternalLinksDlg.textDelete":"Quebrar links","Common.Views.ExternalLinksDlg.textDeleteAll":"Quebrar todos os links","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Código aberto","Common.Views.ExternalLinksDlg.textSource":"Fonte","Common.Views.ExternalLinksDlg.textStatus":"Status","Common.Views.ExternalLinksDlg.textUnknown":"Desconhecido","Common.Views.ExternalLinksDlg.textUpdate":"Atualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Atualize tudo","Common.Views.ExternalLinksDlg.textUpdating":"Atualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Links externos","Common.Views.ExternalMergeEditor.textTitle":"Mail Merge destinatários","Common.Views.ExternalOleEditor.textTitle":"Editor de planilhas","Common.Views.FormatSettingsDialog.textCategory":"Categoria","Common.Views.FormatSettingsDialog.textDecimal":"Decimal","Common.Views.FormatSettingsDialog.textFormat":"Formatar","Common.Views.FormatSettingsDialog.textLinked":"Ligado à fonte","Common.Views.FormatSettingsDialog.textLocale":"Localidade","Common.Views.FormatSettingsDialog.textSeparator":"Usar separador 1.000","Common.Views.FormatSettingsDialog.textSymbols":"Símbolos","Common.Views.FormatSettingsDialog.textTitle":"Formato Numérico","Common.Views.FormatSettingsDialog.txtAccounting":"Contabilidade","Common.Views.FormatSettingsDialog.txtAs10":"Em décimos (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"Em centésimos (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"Em décimo sexto (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"Em metades (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"Em quartos (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"Em oitavos (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"Moeda","Common.Views.FormatSettingsDialog.txtCustom":"Personalizar","Common.Views.FormatSettingsDialog.txtCustomWarning":"Insira o formato de número personalizado com cuidado. O Editor de planilhas não verifica os formatos personalizados em busca de erros que possam afetar o arquivo xlsx.","Common.Views.FormatSettingsDialog.txtDate":"Data","Common.Views.FormatSettingsDialog.txtFraction":"Fração","Common.Views.FormatSettingsDialog.txtGeneral":"Geral","Common.Views.FormatSettingsDialog.txtNone":"Nenhum","Common.Views.FormatSettingsDialog.txtNumber":"Número","Common.Views.FormatSettingsDialog.txtPercentage":"Porcentagem","Common.Views.FormatSettingsDialog.txtSample":"Amostra:","Common.Views.FormatSettingsDialog.txtScientific":"Científico","Common.Views.FormatSettingsDialog.txtText":"Тexto","Common.Views.FormatSettingsDialog.txtTime":"Tempo","Common.Views.FormatSettingsDialog.txtUpto1":"Até um dígito (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"Até dois dígitos (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"Até três dígitos (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"Barra de ferramentas de acesso rápido","Common.Views.Header.labelCoUsersDescr":"Usuários que estão editando o arquivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Configurações avançadas","Common.Views.Header.textBack":"Local do arquivo aberto","Common.Views.Header.textClose":"Fechar Arquivo","Common.Views.Header.textCompactView":"Ocultar barra de ferramentas","Common.Views.Header.textDocEditDesc":"Faça quaisquer alterações","Common.Views.Header.textDocViewDesc":"Visualize o arquivo, mas não faça alterações","Common.Views.Header.textDocViewFormDesc":"Veja como ficará o formulário ao preencher","Common.Views.Header.textDownload":"Baixar","Common.Views.Header.textEdit":"Editando","Common.Views.Header.textHideLines":"Ocultar Réguas","Common.Views.Header.textHideStatusBar":"Ocultar barra de status","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Somente leitura","Common.Views.Header.textRemoveFavorite":"Remover dos Favoritos","Common.Views.Header.textReview":"Revisão","Common.Views.Header.textReviewDesc":"Sugerir alterações","Common.Views.Header.textShare":"Compartilhar","Common.Views.Header.textStartFill":"Compartilhar e coletar","Common.Views.Header.textView":"Visualizando","Common.Views.Header.textViewForm":"Pré-visualização","Common.Views.Header.textZoom":"Ampliação","Common.Views.Header.tipAccessRights":"Gerenciar direitos de acesso ao documento","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalize a barra de ferramentas de acesso rápido","Common.Views.Header.tipDocEdit":"Editando","Common.Views.Header.tipDocView":"Visualizando","Common.Views.Header.tipDocViewForm":"Visualizando formulário","Common.Views.Header.tipDownload":"Baixar arquivo","Common.Views.Header.tipFillStatus":"Status de preenchimento","Common.Views.Header.tipGoEdit":"Editar arquivo atual","Common.Views.Header.tipPrint":"Imprimir arquivo","Common.Views.Header.tipPrintQuick":"Impressão rápida","Common.Views.Header.tipRedo":"Refazer","Common.Views.Header.tipReview":"Revisão","Common.Views.Header.tipSave":"Gravar","Common.Views.Header.tipSearch":"Pesquisar","Common.Views.Header.tipUndo":"Desfazer","Common.Views.Header.tipUsers":"Ver usuários","Common.Views.Header.tipViewSettings":"Visualizar configurações","Common.Views.Header.tipViewUsers":"Ver usuários e gerenciar direitos de acesso ao documento","Common.Views.Header.txtAccessRights":"Alterar direitos de acesso","Common.Views.Header.txtRename":"Renomear","Common.Views.History.textCloseHistory":"Fechar histórico","Common.Views.History.textHide":"Minimizar","Common.Views.History.textHideAll":"Ocultar alterações detalhadas ","Common.Views.History.textHighlightDeleted":"Destaque excluído","Common.Views.History.textMore":"Mais","Common.Views.History.textRestore":"Restaurar","Common.Views.History.textShow":"Expandir","Common.Views.History.textShowAll":"Mostrar alterações detalhadas","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"Histórico de versão","Common.Views.ImageFromUrlDialog.textUrl":"Colar uma URL de imagem:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo é obrigatório","Common.Views.ImageFromUrlDialog.txtNotUrl":"Este campo deve ser uma URL no formato \"http://www.example.com\"","Common.Views.InsertTableDialog.textInvalidRowsCols":"Você precisa especificar a contagem de linhas e colunas válida.","Common.Views.InsertTableDialog.txtColumns":"Número de colunas","Common.Views.InsertTableDialog.txtMaxText":"O valor máximo para este campo é {0}.","Common.Views.InsertTableDialog.txtMinText":"O valor mínimo para este campo é {0}.","Common.Views.InsertTableDialog.txtRows":"Número de linhas","Common.Views.InsertTableDialog.txtTitle":"Tamanho da tabela","Common.Views.InsertTableDialog.txtTitleSplit":"Dividir célula","Common.Views.LanguageDialog.labelSelect":"Selecionar idioma do documento","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Insira um prompt para a consulta","Common.Views.MacrosAiDialog.textCreate":"Criar","Common.Views.MacrosDialog.textAutostart":"Início automático","Common.Views.MacrosDialog.textConvertFromVBA":"Converter do VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Converter macros do VBA","Common.Views.MacrosDialog.textCopy":"Copiar","Common.Views.MacrosDialog.textCreateFromDesc":"Criar a partir da descrição","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Criar macros a partir da descrição","Common.Views.MacrosDialog.textCustomFunction":"Função personalizada","Common.Views.MacrosDialog.textCustomFunctions":"Funções personalizadas","Common.Views.MacrosDialog.textDebug":"Depurar","Common.Views.MacrosDialog.textDelete":"Excluir","Common.Views.MacrosDialog.textFunctions":"Funções","Common.Views.MacrosDialog.textLoading":"Carregando...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Faça o início automático","Common.Views.MacrosDialog.textRename":"Renomear","Common.Views.MacrosDialog.textRun":"Executar","Common.Views.MacrosDialog.textSave":"Salvar","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Desfazer inicialização automática","Common.Views.MacrosDialog.tipAI":"IA","Common.Views.MacrosDialog.tipFunctionAdd":"Adicionar função personalizada","Common.Views.MacrosDialog.tipFunctionCopy":"Copiar função personalizada","Common.Views.MacrosDialog.tipFunctionDelete":"Excluir função personalizada","Common.Views.MacrosDialog.tipFunctionRename":"Renomear função personalizada","Common.Views.MacrosDialog.tipMacrosAdd":"Adicionar macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copiar macros","Common.Views.MacrosDialog.tipMacrosDebug":"Macros de depuração","Common.Views.MacrosDialog.tipMacrosRename":"Renomear macros","Common.Views.MacrosDialog.tipMacrosRun":"Executar","Common.Views.MacrosDialog.tipRedo":"Refazer","Common.Views.MacrosDialog.tipUndo":"Desfazer","Common.Views.OpenDialog.closeButtonText":"Fechar Arquivo","Common.Views.OpenDialog.txtEncoding":"Codificação","Common.Views.OpenDialog.txtIncorrectPwd":"Senha incorreta.","Common.Views.OpenDialog.txtOpenFile":"Inserir a Senha para Abrir o Arquivo","Common.Views.OpenDialog.txtPassword":"Senha","Common.Views.OpenDialog.txtPreview":"Visualizar","Common.Views.OpenDialog.txtProtected":"Ao abrir o arquivo com sua senha, a senha atual será redefinida.","Common.Views.OpenDialog.txtTitle":"Escolher opções %1","Common.Views.OpenDialog.txtTitleProtected":"Arquivo protegido","Common.Views.PasswordDialog.txtDescription":"Defina uma senha para proteger o documento","Common.Views.PasswordDialog.txtIncorrectPwd":"A confirmação da senha não é idêntica","Common.Views.PasswordDialog.txtPassword":"Senha","Common.Views.PasswordDialog.txtRepeat":"Repetir a senha","Common.Views.PasswordDialog.txtTitle":"Definir senha","Common.Views.PasswordDialog.txtWarning":"Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.","Common.Views.PluginDlg.textDock":"Plugin de pinos","Common.Views.PluginDlg.textLoading":"Carregamento","Common.Views.PluginPanel.textClosePanel":"Fechar plug-in","Common.Views.PluginPanel.textHidePanel":"Recolher plugin","Common.Views.PluginPanel.textLoading":"Carregando","Common.Views.PluginPanel.textUndock":"Desafixar plugin","Common.Views.Plugins.groupCaption":"Plug-ins","Common.Views.Plugins.strPlugins":"Plug-ins","Common.Views.Plugins.textBackgroundPlugins":"Plug-ins em segundo plano","Common.Views.Plugins.textClosePanel":"Fechar plug-in","Common.Views.Plugins.textLoading":"Carregamento","Common.Views.Plugins.textSettings":"Configurações","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Parar","Common.Views.Plugins.textTheListOfBackgroundPlugins":"A lista de plug-ins de segundo plano","Common.Views.Plugins.tipMore":"Mais","Common.Views.Protection.hintAddPwd":"Criptografar com senha","Common.Views.Protection.hintDelPwd":"Excluir senha","Common.Views.Protection.hintPwd":"Alterar ou excluir senha","Common.Views.Protection.hintSignature":"Inserir assinatura digital ou linha de assinatura","Common.Views.Protection.txtAddPwd":"Inserir a senha","Common.Views.Protection.txtChangePwd":"Alterar senha","Common.Views.Protection.txtDeletePwd":"Excluir senha","Common.Views.Protection.txtEncrypt":"Criptografar","Common.Views.Protection.txtInvisibleSignature":"Inserir assinatura digital","Common.Views.Protection.txtSignature":"Assinatura","Common.Views.Protection.txtSignatureLine":"Adicionar linha de assinatura","Common.Views.RecentFiles.txtOpenRecent":"Abrir recente","Common.Views.RenameDialog.textName":"Nome de arquivo","Common.Views.RenameDialog.txtInvalidName":"Nome de arquivo não pode conter os seguintes caracteres:","Common.Views.ReviewChanges.hintNext":"Para a próxima alteração","Common.Views.ReviewChanges.hintPrev":"Para a alteração anterior","Common.Views.ReviewChanges.mniFromFile":"Documento a partir de arquivo","Common.Views.ReviewChanges.mniFromStorage":"Documento a partir de armazenamento","Common.Views.ReviewChanges.mniFromUrl":"Documento de URL","Common.Views.ReviewChanges.mniMMFromFile":"Do Arquivo","Common.Views.ReviewChanges.mniMMFromStorage":"Do armazenamento","Common.Views.ReviewChanges.mniMMFromUrl":"Da URL","Common.Views.ReviewChanges.mniSettings":"Configurações de comparação","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedição em tempo real. Todas as alterações são salvas automaticamente.","Common.Views.ReviewChanges.strStrict":"Estrito","Common.Views.ReviewChanges.strStrictDesc":"Use o botão 'Salvar' para sincronizar as alterações que você e outros realizaram.","Common.Views.ReviewChanges.textEnable":"Habilitar","Common.Views.ReviewChanges.textWarnTrackChanges":"As mudanças de faixa serão ativadas para todos os usuários com acesso total. Na próxima vez que alguém abrir o documento, as Mudanças de Trilha permanecerão ativadas.","Common.Views.ReviewChanges.textWarnTrackChangesTitle":"Habilitar rastreamento de alterações para todos?","Common.Views.ReviewChanges.tipAcceptCurrent":"Aceitar a alteração atual","Common.Views.ReviewChanges.tipCoAuthMode":"Definir modo de coedição","Common.Views.ReviewChanges.tipCombine":"Combinar o documento atual com outro","Common.Views.ReviewChanges.tipCommentRem":"Excluir comentários","Common.Views.ReviewChanges.tipCommentRemCurrent":"Remover comentários atuais","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentários","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver comentários atuais","Common.Views.ReviewChanges.tipCompare":"Comparar o documento atual com outro","Common.Views.ReviewChanges.tipHistory":"Exibir histórico de versão","Common.Views.ReviewChanges.tipMailRecepients":"Mala direta","Common.Views.ReviewChanges.tipRejectCurrent":"Rejeitar a alteração atual e passar para a próxima","Common.Views.ReviewChanges.tipReview":"Rastrear alterações","Common.Views.ReviewChanges.tipReviewView":"Selecione o modo que você quiser que as alterações sejam exibidas","Common.Views.ReviewChanges.tipSetDocLang":"Definir idioma do documento","Common.Views.ReviewChanges.tipSetSpelling":"Verificação ortográfica","Common.Views.ReviewChanges.tipSharing":"Gerenciar os direitos de acesso ao documento","Common.Views.ReviewChanges.txtAccept":"Aceitar","Common.Views.ReviewChanges.txtAcceptAll":"Aceitar todas as alterações.","Common.Views.ReviewChanges.txtAcceptChanges":"Aceitar as alterações","Common.Views.ReviewChanges.txtAcceptCurrent":"Aceitar alteração atual","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Fechar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedição","Common.Views.ReviewChanges.txtCombine":"Combinar","Common.Views.ReviewChanges.txtCommentRemAll":"Excluir todos os comentários","Common.Views.ReviewChanges.txtCommentRemCurrent":"Excluir comentários atuais","Common.Views.ReviewChanges.txtCommentRemMy":"Excluir meus comentários","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Remover meus comentários atuais","Common.Views.ReviewChanges.txtCommentRemove":"Excluir","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos os comentários","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentários atuais","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver meus comentários","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver meus comentários atuais","Common.Views.ReviewChanges.txtCompare":"Comparar","Common.Views.ReviewChanges.txtDocLang":"Idioma","Common.Views.ReviewChanges.txtEditing":"Editando","Common.Views.ReviewChanges.txtFinal":"Todas as alterações aceitas {0}","Common.Views.ReviewChanges.txtFinalCap":"Final","Common.Views.ReviewChanges.txtHistory":"Histórico de versão","Common.Views.ReviewChanges.txtMailMerge":"Mala direta","Common.Views.ReviewChanges.txtMarkup":"Todas as alterações {0}","Common.Views.ReviewChanges.txtMarkupCap":"Marcação e balões","Common.Views.ReviewChanges.txtMarkupSimple":"Todas as mudanças {0}
Não há balões","Common.Views.ReviewChanges.txtMarkupSimpleCap":"Somente marcação","Common.Views.ReviewChanges.txtNext":"Para a próxima alteração","Common.Views.ReviewChanges.txtOff":"Desligado pra mim","Common.Views.ReviewChanges.txtOffGlobal":"Desligado pra mim e para todos","Common.Views.ReviewChanges.txtOn":"Ligado pra mim","Common.Views.ReviewChanges.txtOnGlobal":"Ligado para mim e para todos","Common.Views.ReviewChanges.txtOriginal":"Todas as alterações rejeitadas {0}","Common.Views.ReviewChanges.txtOriginalCap":"Original","Common.Views.ReviewChanges.txtPrev":"Para a alteração anterior","Common.Views.ReviewChanges.txtPreview":"Pré-visualizar","Common.Views.ReviewChanges.txtReject":"Rejeitar","Common.Views.ReviewChanges.txtRejectAll":"Rejeitar todas as alterações","Common.Views.ReviewChanges.txtRejectChanges":"Rejeitar alterações","Common.Views.ReviewChanges.txtRejectCurrent":"Rejeitar alteração atual","Common.Views.ReviewChanges.txtSharing":"Compartilhar","Common.Views.ReviewChanges.txtSpelling":"Verificação ortográfica","Common.Views.ReviewChanges.txtTurnon":"Rastrear alterações","Common.Views.ReviewChanges.txtView":"Modo de exibição","Common.Views.ReviewChangesDialog.textTitle":"Rever alterações","Common.Views.ReviewChangesDialog.txtAccept":"Aceitar","Common.Views.ReviewChangesDialog.txtAcceptAll":"Aceitar todas as alterações.","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"Aceitar a alteração atual","Common.Views.ReviewChangesDialog.txtNext":"Para a próxima alteração","Common.Views.ReviewChangesDialog.txtPrev":"Para a alteração anterior","Common.Views.ReviewChangesDialog.txtReject":"Rejeitar","Common.Views.ReviewChangesDialog.txtRejectAll":"Rejeitar todas as alterações","Common.Views.ReviewChangesDialog.txtRejectCurrent":"Rejeitar alterações atuais","Common.Views.ReviewPopover.textAdd":"Incluir","Common.Views.ReviewPopover.textAddReply":"Adicionar resposta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Fechar","Common.Views.ReviewPopover.textComment":"Comentário","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Insira seu comentário aqui","Common.Views.ReviewPopover.textFollowMove":"Seguir movimento","Common.Views.ReviewPopover.textMention":"+menção fornecerá acesso ao documento e enviará um e-mail","Common.Views.ReviewPopover.textMentionNotify":"+menção notificará o usuário por e-mail","Common.Views.ReviewPopover.textOpenAgain":"Abrir novamente","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"Não tem permissão para reabrir comentários","Common.Views.ReviewPopover.txtAccept":"Aceitar","Common.Views.ReviewPopover.txtDeleteTip":"Excluir","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.ReviewPopover.txtReject":"Rejeitar","Common.Views.SaveAsDlg.textLoading":"Carregando","Common.Views.SaveAsDlg.textTitle":"Pasta para salvar","Common.Views.SearchPanel.textCaseSensitive":"Maiúsculas e Minúsculas","Common.Views.SearchPanel.textCloseSearch":"Fechar pesquisa","Common.Views.SearchPanel.textContentChanged":"Documento alterado.","Common.Views.SearchPanel.textFind":"Localizar","Common.Views.SearchPanel.textFindAndReplace":"Localizar e substituir","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} itens substituídos com sucesso.","Common.Views.SearchPanel.textMatchUsingRegExp":"Corresponder usando expressões regulares","Common.Views.SearchPanel.textNoMatches":"Nenhuma correspondência","Common.Views.SearchPanel.textNoSearchResults":"Nenhum resultado de pesquisa","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} itens substituídos. Os {2} itens restantes estão bloqueados por outros usuários.","Common.Views.SearchPanel.textReplace":"Substituir","Common.Views.SearchPanel.textReplaceAll":"Substituir tudo","Common.Views.SearchPanel.textReplaceWith":"Substituir com","Common.Views.SearchPanel.textSearchAgain":"{0}Realize uma nova pesquisa{1} para obter resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"A pesquisa parou","Common.Views.SearchPanel.textSearchResults":"Resultados da pesquisa: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados da pesquisa","Common.Views.SearchPanel.textTooManyResults":"Há muitos resultados para mostrar aqui","Common.Views.SearchPanel.textWholeWords":"Palavras inteiras apenas","Common.Views.SearchPanel.tipNextResult":"Próximo resultado","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Carregando","Common.Views.SelectFileDlg.textTitle":"Selecionar fonte de dados","Common.Views.ShapeShadowDialog.txtAngle":"Ângulo","Common.Views.ShapeShadowDialog.txtDistance":"Distância","Common.Views.ShapeShadowDialog.txtSize":"Tamanho","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparência","Common.Views.ShortcutsDialog.txtDescription":"Descrição","Common.Views.ShortcutsDialog.txtEmpty":"Nenhuma correspondência encontrada. Ajuste sua busca.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restaurar tudo para os padrões","Common.Views.ShortcutsDialog.txtRestoreContinue":"Você deseja continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todas as configurações de atalhos serão restauradas para os padrões.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restaurar padrão","Common.Views.ShortcutsDialog.txtSearch":"Pesquisar","Common.Views.ShortcutsDialog.txtTitle":"Atalhos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Ação","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"Este atalho não pode ser editado.","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Digite o atalho desejado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"O atalho usado pelas ações %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"O atalho usado pelas ações %1 e não pode ser alterado","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"O atalho usado pela ação %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"O atalho usado pela ação %1 e não pode ser alterado","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Novo atalho","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Você deseja continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos os atalhos para a ação “%1” serão restaurados ao padrão.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restaurar padrão","Common.Views.ShortcutsEditDialog.txtTitle":"Editar atalho","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Digite o atalho desejado","Common.Views.SignDialog.textBold":"Negrito","Common.Views.SignDialog.textCertificate":"Certificado","Common.Views.SignDialog.textChange":"Alterar","Common.Views.SignDialog.textInputName":"Nome do signatário de entrada","Common.Views.SignDialog.textItalic":"Itálico","Common.Views.SignDialog.textNameError":"Nome de assinante não deve estar vazio.","Common.Views.SignDialog.textPurpose":"Objetivo para assinar o documento","Common.Views.SignDialog.textSelect":"Selecionar","Common.Views.SignDialog.textSelectImage":"Selecionar Imagem","Common.Views.SignDialog.textSignature":"Ver assinatura como","Common.Views.SignDialog.textTitle":"Assinar o Documento","Common.Views.SignDialog.textUseImage":"ou clique 'Selecionar Imagem' para usar uma figura como assinatura","Common.Views.SignDialog.textValid":"Válido de %1 até %2","Common.Views.SignDialog.tipFontName":"Nome da Fonte","Common.Views.SignDialog.tipFontSize":"Tamanho da fonte","Common.Views.SignSettingsDialog.textAllowComment":"Permitir ao signatário inserir comentários no diálogo de assinatura","Common.Views.SignSettingsDialog.textDefInstruction":"Antes de assinar este documento, verifique se o conteúdo que está a assinar está correto.","Common.Views.SignSettingsDialog.textInfoEmail":"E-mail do assinante sugerido","Common.Views.SignSettingsDialog.textInfoName":"Nome","Common.Views.SignSettingsDialog.textInfoTitle":"Título do assinante","Common.Views.SignSettingsDialog.textInstructions":"Instruções para o Assinante","Common.Views.SignSettingsDialog.textShowDate":"Exibir a data da assinatura na linha da assinatura","Common.Views.SignSettingsDialog.textTitle":"Configurações da Assinatura","Common.Views.SignSettingsDialog.txtEmpty":"O campo é obrigatório","Common.Views.SymbolTableDialog.textCharacter":"Caractere","Common.Views.SymbolTableDialog.textCode":"Valor Unicode HEX","Common.Views.SymbolTableDialog.textCopyright":"Assinatura de copyright","Common.Views.SymbolTableDialog.textDCQuote":"Fechamento Duplo Orçamento","Common.Views.SymbolTableDialog.textDOQuote":"Abertura de aspas duplas","Common.Views.SymbolTableDialog.textEllipsis":"Elipse horizontal","Common.Views.SymbolTableDialog.textEmDash":"Travessão","Common.Views.SymbolTableDialog.textEmSpace":"Em Espaço","Common.Views.SymbolTableDialog.textEnDash":"Travessão","Common.Views.SymbolTableDialog.textEnSpace":"Espaço","Common.Views.SymbolTableDialog.textFont":"Fonte","Common.Views.SymbolTableDialog.textNBHyphen":"Hífen sem quebra","Common.Views.SymbolTableDialog.textNBSpace":"Espaço sem interrupção","Common.Views.SymbolTableDialog.textPilcrow":"Sinal de antígrafo","Common.Views.SymbolTableDialog.textQEmSpace":"1/4 Em Espaço","Common.Views.SymbolTableDialog.textRange":"Intervalo","Common.Views.SymbolTableDialog.textRecent":"Símbolos usados recentemente","Common.Views.SymbolTableDialog.textRegistered":"Símbolo de marca registrada","Common.Views.SymbolTableDialog.textSCQuote":"Cotação Única de Fechamento","Common.Views.SymbolTableDialog.textSection":"Sinal de seção","Common.Views.SymbolTableDialog.textShortcut":"Teclas de atalho","Common.Views.SymbolTableDialog.textSHyphen":"Hífen suave","Common.Views.SymbolTableDialog.textSOQuote":"Abertura de aspas simples","Common.Views.SymbolTableDialog.textSpecial":"caracteres especiais","Common.Views.SymbolTableDialog.textSymbols":"Símbolos","Common.Views.SymbolTableDialog.textTitle":"Símbolo","Common.Views.SymbolTableDialog.textTradeMark":"Símbolo de marca registrada","Common.Views.UserNameDialog.textDontShow":"Não perguntar novamente","Common.Views.UserNameDialog.textLabel":"Rótulo:","Common.Views.UserNameDialog.textLabelError":"O rótulo não pode estar vazio.","DE.Controllers.DocProtection.txtIsProtectedComment":"O documento está protegido. Você só pode inserir comentários neste documento.","DE.Controllers.DocProtection.txtIsProtectedForms":"O documento está protegido. Você só pode preencher os formulários deste documento.","DE.Controllers.DocProtection.txtIsProtectedTrack":"O documento está protegido. Você pode editar este documento, mas todas as alterações serão rastreadas.","DE.Controllers.DocProtection.txtIsProtectedView":"O documento está protegido. Você só pode visualizar este documento.","DE.Controllers.DocProtection.txtWasProtectedComment":"O documento foi protegido por outro usuário.\nVocê só pode inserir comentários neste documento.","DE.Controllers.DocProtection.txtWasProtectedForms":"O documento foi protegido por outro usuário.\nVocê só pode preencher os formulários deste documento.","DE.Controllers.DocProtection.txtWasProtectedTrack":"O documento foi protegido por outro usuário.\nVocê pode editar este documento, mas todas as alterações serão rastreadas.","DE.Controllers.DocProtection.txtWasProtectedView":"O documento foi protegido por outro usuário.\nVocê só pode visualizar este documento.","DE.Controllers.DocProtection.txtWasUnprotected":"O documento foi desprotegido.","DE.Controllers.HeaderFooterTab.textFieldExample":"Exemplo de código de gravação: TIME \\@ “dddd, MMMM d, yyyyy”","DE.Controllers.HeaderFooterTab.textFieldLabel":"Códigos de campo","DE.Controllers.HeaderFooterTab.textFieldTitle":"Campo","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"Numeração da página","DE.Controllers.LeftMenu.leavePageText":"Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.","DE.Controllers.LeftMenu.newDocumentTitle":"Documento sem nome","DE.Controllers.LeftMenu.notcriticalErrorTitle":"Aviso","DE.Controllers.LeftMenu.requestEditRightsText":"Solicitando direitos de edição...","DE.Controllers.LeftMenu.textLoadHistory":"Carregando o histórico de versões...","DE.Controllers.LeftMenu.textNoTextFound":"Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.","DE.Controllers.LeftMenu.textReplaceSkipped":"A substituição foi realizada. {0} ocorrências foram ignoradas.","DE.Controllers.LeftMenu.textReplaceSuccess":"A pesquisa foi realizada. Ocorrências substituídas: {0}","DE.Controllers.LeftMenu.textSelectPath":"Digite um novo nome para salvar a cópia do arquivo","DE.Controllers.LeftMenu.txtCompatible":"O documento será salvo em novo formato. Isto permitirá usar todos os recursos de editor, mas pode afetar o layout do documento.
Use a opção de 'Compatibilidade' para configurações avançadas se deseja tornar o arquivo compatível com versões antigas do MS Word.","DE.Controllers.LeftMenu.txtUntitled":"Sem título","DE.Controllers.LeftMenu.warnDownloadAs":"Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"O documento resultante será otimizado para permitir que você edite o texto, portanto, não gráficos exatamente iguais ao original, se o arquivo original contiver muitos gráficos.","DE.Controllers.LeftMenu.warnDownloadAsRTF":"Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?","DE.Controllers.LeftMenu.warnReplaceString":"{0} não é um caractere especial válido para o campo de substituição.","DE.Controllers.Main.applyChangesTextText":"Carregando as alterações...","DE.Controllers.Main.applyChangesTitleText":"Carregando as alterações","DE.Controllers.Main.confirmMaxChangesSize":"O tamanho das ações excede a limitação definida para seu servidor.
Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).","DE.Controllers.Main.convertationTimeoutText":"Tempo limite de conversão excedido.","DE.Controllers.Main.criticalErrorExtText":"Pressione \"OK\" para voltar para a lista de documentos.","DE.Controllers.Main.criticalErrorExtTextClose":"Pressione \"OK\" para fechar o editor.","DE.Controllers.Main.criticalErrorTitle":"Erro","DE.Controllers.Main.downloadErrorText":"Erro ao baixar arquivo.","DE.Controllers.Main.downloadMergeText":"Baixando...","DE.Controllers.Main.downloadMergeTitle":"Baixando","DE.Controllers.Main.downloadTextText":"Baixando documento...","DE.Controllers.Main.downloadTitleText":"Baixando documento","DE.Controllers.Main.errorAccessDeny":"Você está tentando executar uma ação que você não tem direitos.
Contate o administrador do Servidor de Documentos.","DE.Controllers.Main.errorBadImageUrl":"URL de imagem está incorreta","DE.Controllers.Main.errorCannotPasteImg":"Não podemos colar esta imagem da área de transferência, mas você pode salvá-la em seu dispositivo e\ninsira-o a partir daí ou copie a imagem sem texto e cole-a no documento.","DE.Controllers.Main.errorCoAuthoringDisconnect":"Conexão com servidor perdida. O documento não pode ser editado neste momento.","DE.Controllers.Main.errorComboSeries":"Para criar uma tabela de combinação, selecione pelo menos duas séries de dados.","DE.Controllers.Main.errorCompare":"O recurso Comparar documentos não está disponível durante a coedição.","DE.Controllers.Main.errorConnectToServer":"O documento não pode ser gravado. Verifique as configurações de conexão ou entre em contato com o administrador.
Quando você clicar no botão 'OK', você será solicitado ao baixar o documento.","DE.Controllers.Main.errorCopyDisabled":"Por motivos de segurança, o conteúdo deste documento não pode ser copiado.","DE.Controllers.Main.errorDatabaseConnection":"Erro externo.
Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.","DE.Controllers.Main.errorDataEncrypted":"Alterações criptografadas foram recebidas, e não podem ser decifradas.","DE.Controllers.Main.errorDataRange":"Intervalo de dados incorreto.","DE.Controllers.Main.errorDefaultMessage":"Código do erro: %1","DE.Controllers.Main.errorDirectUrl":"Por favor, verifique o link para o documento.
Este link deve ser o link direto para baixar o arquivo.","DE.Controllers.Main.errorEditingDownloadas":"Ocorreu um erro.
Use a opção 'Baixar como' para gravar a cópia de backup em seu computador.","DE.Controllers.Main.errorEditingSaveas":"Ocorreu um erro durante o trabalho com o documento.
Use a opção 'Salvar como ...' para salvar a cópia de backup do arquivo no disco rígido do computador.","DE.Controllers.Main.errorEditProtectedRange":"Você não tem permissão para editar essa seleção porque ela está protegida.","DE.Controllers.Main.errorEmailClient":"Nenhum cliente de e-mail foi encontrado.","DE.Controllers.Main.errorEmptyTOC":"Comece a criar um sumário aplicando um estilo de título da galeria Estilos ao texto selecionado.","DE.Controllers.Main.errorFilePassProtect":"O documento é protegido por senha e não pode ser aberto.","DE.Controllers.Main.errorFileSizeExceed":"O tamanho do arquivo excede o limite de seu servidor.
Por favor, contate seu administrador de Servidor de Documentos para detalhes.","DE.Controllers.Main.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.Controllers.Main.errorInconsistentExt":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo não corresponde à extensão do arquivo.","DE.Controllers.Main.errorInconsistentExtDocx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtPdf":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtPptx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtXlsx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.","DE.Controllers.Main.errorKeyEncrypt":"Descritor de chave desconhecido","DE.Controllers.Main.errorKeyExpire":"Descritor de chave expirado","DE.Controllers.Main.errorLoadingFont":"As fontes não foram carregadas.
Entre em contato com o administrador do Document Server.","DE.Controllers.Main.errorMailMergeLoadFile":"Carregamento falhou. Por favor, selecione um arquivo diferente.","DE.Controllers.Main.errorMailMergeSaveFile":"Merge failed.","DE.Controllers.Main.errorNoTOC":"Não há índice para atualizar. Você pode inserir um na guia Referências.","DE.Controllers.Main.errorPasswordIsNotCorrect":"A senha fornecida não está correta.
Verifique se a tecla CAPS LOCK está desligada e use a capitalização correta.","DE.Controllers.Main.errorSaveWatermark":"Este arquivo contém uma imagem de marca d'água vinculada a outro domínio.
Para torná-la visível no PDF, atualize a imagem da marca d'água para que ela seja vinculada ao mesmo domínio do documento ou carregue-a de seu computador.","DE.Controllers.Main.errorServerVersion":"A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.","DE.Controllers.Main.errorSessionAbsolute":"A sessão de edição de documentos expirou. Por Favor atualize a página.","DE.Controllers.Main.errorSessionIdle":"O documento ficou sem edição por muito tempo. Por favor atualize a página.","DE.Controllers.Main.errorSessionToken":"A conexão com o servidor foi interrompida. Por favor atualize a página.","DE.Controllers.Main.errorSetPassword":"Não foi possível definir a senha.","DE.Controllers.Main.errorStockChart":"Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
preço de abertura, preço máx., preço mín., preço de fechamento.","DE.Controllers.Main.errorSubmit":"Falha no envio.","DE.Controllers.Main.errorTextFormWrongFormat":"O valor inserido não corresponde ao formato do campo.","DE.Controllers.Main.errorToken":"O token de segurança do documento não foi formado corretamente.
Entre em contato com o administrador do Document Server.","DE.Controllers.Main.errorTokenExpire":"O token de segurança do documento expirou.
Entre em contato com o administrador do Document Server.","DE.Controllers.Main.errorUpdateVersion":"A versão do arquivo foi alterada. A página será recarregada.","DE.Controllers.Main.errorUpdateVersionOnDisconnect":"A conexão a internet foi restaurada, e a versão do arquivo foi alterada.
Antes de continuar seu trabalho, baixe o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.","DE.Controllers.Main.errorUserDrop":"O arquivo não pode ser acessado agora.","DE.Controllers.Main.errorUsersExceed":"O número de usuários permitidos pelo plano de preços foi excedido","DE.Controllers.Main.errorViewerDisconnect":"Perda de conexão. Você ainda pode exibir o documento,
mas não pode fazer o download ou imprimir até que a conexão seja restaurada.","DE.Controllers.Main.leavePageText":"Você não salvou as alterações neste documento. Clique em \"Permanecer nesta página\", em seguida, clique em \"Salvar\" para salvá-las. Clique em \"Sair desta página\" para descartar todas as alterações não salvas.","DE.Controllers.Main.leavePageTextOnClose":"Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.","DE.Controllers.Main.loadFontsTextText":"Carregando dados...","DE.Controllers.Main.loadFontsTitleText":"Carregando dados","DE.Controllers.Main.loadFontTextText":"Carregando dados...","DE.Controllers.Main.loadFontTitleText":"Carregando dados","DE.Controllers.Main.loadImagesTextText":"Carregando imagens...","DE.Controllers.Main.loadImagesTitleText":"Carregando imagens","DE.Controllers.Main.loadImageTextText":"Carregando imagem...","DE.Controllers.Main.loadImageTitleText":"Carregando imagem","DE.Controllers.Main.loadingDocumentTextText":"Carregando documento...","DE.Controllers.Main.loadingDocumentTitleText":"Carregando documento","DE.Controllers.Main.mailMergeLoadFileText":"Loading Data Source...","DE.Controllers.Main.mailMergeLoadFileTitle":"Loading Data Source","DE.Controllers.Main.notcriticalErrorTitle":"Aviso","DE.Controllers.Main.openErrorText":"Ocorreu um erro ao abrir o arquivo","DE.Controllers.Main.openTextText":"Abrindo documento...","DE.Controllers.Main.openTitleText":"Abrindo documento","DE.Controllers.Main.printTextText":"Imprimindo documento...","DE.Controllers.Main.printTitleText":"Imprimindo documento","DE.Controllers.Main.reloadButtonText":"Recarregar página","DE.Controllers.Main.requestEditFailedMessageText":"Alguém está editando este documento neste momento. Tente novamente mais tarde.","DE.Controllers.Main.requestEditFailedTitleText":"Acesso negado","DE.Controllers.Main.saveErrorText":"Ocorreu um erro ao gravar o arquivo","DE.Controllers.Main.saveErrorTextDesktop":"Este arquivo não pode ser salvo ou criado.
Possíveis razões são:
1. O arquivo é somente leitura.
2. O arquivo está sendo editado por outros usuários.
3. O disco está cheio ou corrompido.","DE.Controllers.Main.saveTextText":"Salvando documento...","DE.Controllers.Main.saveTitleText":"Salvando documento","DE.Controllers.Main.savingText":"Enviando","DE.Controllers.Main.scriptLoadError":"A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.","DE.Controllers.Main.sendMergeText":"Enviando mesclar...","DE.Controllers.Main.sendMergeTitle":"Enviando mesclar","DE.Controllers.Main.splitDividerErrorText":"O número de linhas deve ser um divisor de %1.","DE.Controllers.Main.splitMaxColsErrorText":"O número de colunas deve ser inferior a %1.","DE.Controllers.Main.splitMaxRowsErrorText":"O número de linhas deve ser inferior a %1.","DE.Controllers.Main.textAnonymous":"Anônimo","DE.Controllers.Main.textAnyone":"Alguém","DE.Controllers.Main.textApplyAll":"Aplicar a todas as equações","DE.Controllers.Main.textBuyNow":"Visitar website","DE.Controllers.Main.textChangesSaved":"Todas as alterações foram salvas","DE.Controllers.Main.textClose":"Fechar","DE.Controllers.Main.textCloseTip":"Clique para fechar a dica","DE.Controllers.Main.textConnectionLost":"Tentando conectar. Verifique as configurações de conexão.","DE.Controllers.Main.textContactUs":"Contate as vendas","DE.Controllers.Main.textContinue":"Continuar","DE.Controllers.Main.textConvertEquation":"Esta equação foi criada com uma versão antiga do editor de equação que não é mais compatível. Para editá-lo, converta a equação para o formato Office Math ML.
Converter agora?","DE.Controllers.Main.textCustomLoader":"Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador.
Por favor, contate o Departamento de Vendas para fazer cotação.","DE.Controllers.Main.textDisconnect":"A conexão está perdida","DE.Controllers.Main.textGuest":"Convidado (a)","DE.Controllers.Main.textHasMacros":"O arquivo contém macros automáticas.
Você quer executar macros?","DE.Controllers.Main.textLearnMore":"Saiba mais","DE.Controllers.Main.textLoadingDocument":"Carregando documento","DE.Controllers.Main.textLongName":"Insira um nome com menos de 128 caracteres.","DE.Controllers.Main.textNoLicenseTitle":"Limite de licença atingido","DE.Controllers.Main.textPaidFeature":"Recurso pago","DE.Controllers.Main.textReconnect":"A conexão é restaurada","DE.Controllers.Main.textRemember":"Lembrar da minha escolha para todos os arquivos. ","DE.Controllers.Main.textRememberMacros":"Lembrar minha escolha para todas as macros","DE.Controllers.Main.textRenameError":"O nome de usuário não pode estar vazio.","DE.Controllers.Main.textRenameLabel":"Insira um nome a ser usado para colaboração","DE.Controllers.Main.textRequestMacros":"Uma macro faz uma solicitação para URL. Deseja permitir a solicitação para %1?","DE.Controllers.Main.textShape":"Forma","DE.Controllers.Main.textSignature":"Assinatura","DE.Controllers.Main.textStrict":"Modo estrito","DE.Controllers.Main.textText":"Тexto","DE.Controllers.Main.textTryQuickPrint":"Você selecionou Impressão rápida: todo o documento será impresso na última impressora selecionada ou padrão.
Deseja continuar?","DE.Controllers.Main.textTryUndoRedo":"As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.
Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",","DE.Controllers.Main.textTryUndoRedoWarn":"As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido","DE.Controllers.Main.textUndo":"Desfazer","DE.Controllers.Main.textUpdateVersion":"O documento não pode ser editado agora.
Tentando atualizar o arquivo, aguarde...","DE.Controllers.Main.textUpdating":"Atualizando","DE.Controllers.Main.tipLicenseExceeded":"O documento está aberto no modo somente leitura, pois o número máximo de conexões simultâneas permitidas pela licença foi atingido.

Tente novamente mais tarde ou entre em contato com o proprietário do documento se precisar de acesso de edição.","DE.Controllers.Main.tipLicenseUsersExceeded":"O documento está aberto no modo somente leitura, pois o número máximo de usuários autorizados a editar documentos por licença foi atingido.

Tente novamente mais tarde ou entre em contato com o proprietário do documento se precisar de acesso de edição.","DE.Controllers.Main.titleLicenseExp":"A licença expirou","DE.Controllers.Main.titleLicenseNotActive":"Licença inativa","DE.Controllers.Main.titleReadOnly":"Modo somente leitura","DE.Controllers.Main.titleServerVersion":"Editor atualizado","DE.Controllers.Main.titleUpdateVersion":"Versão alterada","DE.Controllers.Main.txtAbove":"Acima","DE.Controllers.Main.txtArt":"Your text here","DE.Controllers.Main.txtBasicShapes":"Formas básicas","DE.Controllers.Main.txtBelow":"abaixo","DE.Controllers.Main.txtBookmarkError":"Erro! Bookmark não definido","DE.Controllers.Main.txtButtons":"Botões","DE.Controllers.Main.txtCallouts":"Textos explicativos","DE.Controllers.Main.txtCharts":"Gráficos","DE.Controllers.Main.txtChoose":"Escolha um item","DE.Controllers.Main.txtClickToLoad":"Clique para carregar imagem","DE.Controllers.Main.txtCurrentDocument":"Documento atual","DE.Controllers.Main.txtDiagramTitle":"Título do gráfico","DE.Controllers.Main.txtEditingMode":"Definir modo de edição...","DE.Controllers.Main.txtEndOfFormula":"Fim inesperado da fórmula","DE.Controllers.Main.txtEnterDate":"Insira uma data","DE.Controllers.Main.txtErrorLoadHistory":"O carregamento de histórico falhou","DE.Controllers.Main.txtEvenPage":"Página par","DE.Controllers.Main.txtFiguredArrows":"Setas figuradas","DE.Controllers.Main.txtFirstPage":"Primeira página","DE.Controllers.Main.txtFooter":"Rodapé","DE.Controllers.Main.txtFormulaNotInTable":"A fórmula não está na tabela","DE.Controllers.Main.txtHeader":"Cabeçalho","DE.Controllers.Main.txtHyperlink":"Link","DE.Controllers.Main.txtIndTooLarge":"Índice muito grande","DE.Controllers.Main.txtLines":"Linhas","DE.Controllers.Main.txtMainDocOnly":"Erro! Apenas documento principal.","DE.Controllers.Main.txtMath":"Matemática","DE.Controllers.Main.txtMissArg":"Argumento ausente","DE.Controllers.Main.txtMissOperator":"Operador ausente","DE.Controllers.Main.txtNeedSynchronize":"Você tem atualizações","DE.Controllers.Main.txtNone":"Nenhum","DE.Controllers.Main.txtNoTableOfContents":"Não há cabeçalhos no documento. Aplique um estilo de cabeçalho ao texto para que ele apareça no índice.","DE.Controllers.Main.txtNoTableOfFigures":"Nenhuma entrada de tabela de figuras encontrada.","DE.Controllers.Main.txtNoText":"Erro! Nenhum texto do estilo especificado no documento.","DE.Controllers.Main.txtNotInTable":"Não está na tabela","DE.Controllers.Main.txtNotValidBookmark":"Erro! Não é uma auto-referência de marcador válida.","DE.Controllers.Main.txtOddPage":"Página ímpar","DE.Controllers.Main.txtOnPage":"na página","DE.Controllers.Main.txtRectangles":"Retângulos","DE.Controllers.Main.txtSameAsPrev":"Mesma da anterior","DE.Controllers.Main.txtSaveCopyAsComplete":"A cópia do arquivo foi salva com êxito","DE.Controllers.Main.txtScheme_Aspect":"Aspecto","DE.Controllers.Main.txtScheme_Blue":"Azul","DE.Controllers.Main.txtScheme_Blue_Green":"Verde azulado","DE.Controllers.Main.txtScheme_Blue_II":"Azul II","DE.Controllers.Main.txtScheme_Blue_Warm":"Azul quente","DE.Controllers.Main.txtScheme_Grayscale":"Escala de cinza","DE.Controllers.Main.txtScheme_Green":"Verde","DE.Controllers.Main.txtScheme_Green_Yellow":"Verde amarelo","DE.Controllers.Main.txtScheme_Marquee":"Tenda","DE.Controllers.Main.txtScheme_Median":"Mediana","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"Laranja","DE.Controllers.Main.txtScheme_Orange_Red":"Vermelho laranja","DE.Controllers.Main.txtScheme_Paper":"Papel","DE.Controllers.Main.txtScheme_Red":"Vermelho","DE.Controllers.Main.txtScheme_Red_Orange":"Vermelho laranja","DE.Controllers.Main.txtScheme_Red_Violet":"Violeta vermelho","DE.Controllers.Main.txtScheme_Slipstream":"Turbulência","DE.Controllers.Main.txtScheme_Violet":"Violeta","DE.Controllers.Main.txtScheme_Violet_II":"Violeta II","DE.Controllers.Main.txtScheme_Yellow":"Amarelo","DE.Controllers.Main.txtScheme_Yellow_Orange":"Amarelo alaranjado","DE.Controllers.Main.txtSection":"-Seção","DE.Controllers.Main.txtSeries":"Série","DE.Controllers.Main.txtShape_accentBorderCallout1":"Texto explicativo da linha 1 (Borda e barra de destaque)","DE.Controllers.Main.txtShape_accentBorderCallout2":"Texto explicativo da linha 2 (Borda e barra de destaque)","DE.Controllers.Main.txtShape_accentBorderCallout3":"Texto explicativo da linha 3 (Borda e barra de destaque)","DE.Controllers.Main.txtShape_accentCallout1":"Texto explicativo da linha 1 (Barra de destaque)","DE.Controllers.Main.txtShape_accentCallout2":"Texto explicativo da linha 2 (Barra de destaque)","DE.Controllers.Main.txtShape_accentCallout3":"Texto explicativo da linha 3 (Barra de destaque)","DE.Controllers.Main.txtShape_actionButtonBackPrevious":"Botão voltar ou anterior","DE.Controllers.Main.txtShape_actionButtonBeginning":"Botão inicial","DE.Controllers.Main.txtShape_actionButtonBlank":"Botão em branco","DE.Controllers.Main.txtShape_actionButtonDocument":"Botão documento","DE.Controllers.Main.txtShape_actionButtonEnd":"Botão terminar","DE.Controllers.Main.txtShape_actionButtonForwardNext":"Botão avançar ou próximo","DE.Controllers.Main.txtShape_actionButtonHelp":"Botão de ajuda","DE.Controllers.Main.txtShape_actionButtonHome":"Botão Início","DE.Controllers.Main.txtShape_actionButtonInformation":"Botão de informação","DE.Controllers.Main.txtShape_actionButtonMovie":"Botão de filme","DE.Controllers.Main.txtShape_actionButtonReturn":"Botão de voltar","DE.Controllers.Main.txtShape_actionButtonSound":"Botão de som","DE.Controllers.Main.txtShape_arc":"Arco","DE.Controllers.Main.txtShape_bentArrow":"Seta curvada","DE.Controllers.Main.txtShape_bentConnector5":"Conector angular","DE.Controllers.Main.txtShape_bentConnector5WithArrow":"Conector de seta angular","DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"Conector de seta dupla angular","DE.Controllers.Main.txtShape_bentUpArrow":"Seta para cima curvada","DE.Controllers.Main.txtShape_bevel":"Chanfro","DE.Controllers.Main.txtShape_blockArc":"Arco de bloco","DE.Controllers.Main.txtShape_borderCallout1":"Texto explicativo da linha 1","DE.Controllers.Main.txtShape_borderCallout2":"Texto explicativo da linha 2","DE.Controllers.Main.txtShape_borderCallout3":"Texto explicativo da linha 3","DE.Controllers.Main.txtShape_bracePair":"Chave dupla","DE.Controllers.Main.txtShape_callout1":"Texto explicativo da linha 1 (sem borda)","DE.Controllers.Main.txtShape_callout2":"Texto explicativo da linha 2 (Sem borda)","DE.Controllers.Main.txtShape_callout3":"Texto explicativo da linha 3 (Sem borda)","DE.Controllers.Main.txtShape_can":"Pode","DE.Controllers.Main.txtShape_chevron":"Divisa","DE.Controllers.Main.txtShape_chord":"Acorde","DE.Controllers.Main.txtShape_circularArrow":"Seta circular","DE.Controllers.Main.txtShape_cloud":"Nuvem","DE.Controllers.Main.txtShape_cloudCallout":"Chamar nuvem","DE.Controllers.Main.txtShape_corner":"Canto","DE.Controllers.Main.txtShape_cube":"Cubo","DE.Controllers.Main.txtShape_curvedConnector3":"Conector curvado","DE.Controllers.Main.txtShape_curvedConnector3WithArrow":"Conector de seta curvada","DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"Conector de seta dupla curvado","DE.Controllers.Main.txtShape_curvedDownArrow":"Seta curva para baixo","DE.Controllers.Main.txtShape_curvedLeftArrow":"Seta curvada para a esquerda","DE.Controllers.Main.txtShape_curvedRightArrow":"Seta curva para a direita","DE.Controllers.Main.txtShape_curvedUpArrow":"Seta curva para cima","DE.Controllers.Main.txtShape_decagon":"Decágono","DE.Controllers.Main.txtShape_diagStripe":"Faixa diagonal","DE.Controllers.Main.txtShape_diamond":"Diamante","DE.Controllers.Main.txtShape_dodecagon":"Dodecágono","DE.Controllers.Main.txtShape_donut":"Rosquinha","DE.Controllers.Main.txtShape_doubleWave":"Onda dupla","DE.Controllers.Main.txtShape_downArrow":"Seta para baixo","DE.Controllers.Main.txtShape_downArrowCallout":"Chamada de seta para baixo","DE.Controllers.Main.txtShape_ellipse":"Elipse","DE.Controllers.Main.txtShape_ellipseRibbon":"Fita curvada para baixo","DE.Controllers.Main.txtShape_ellipseRibbon2":"Fita curvada para cima","DE.Controllers.Main.txtShape_flowChartAlternateProcess":"Fluxograma: Processo alternativo","DE.Controllers.Main.txtShape_flowChartCollate":"Fluxograma: Agrupar","DE.Controllers.Main.txtShape_flowChartConnector":"Fluxograma: Conector","DE.Controllers.Main.txtShape_flowChartDecision":"Fluxograma: Decisão","DE.Controllers.Main.txtShape_flowChartDelay":"Fluxograma: Atraso","DE.Controllers.Main.txtShape_flowChartDisplay":"Fluxograma: Exibir","DE.Controllers.Main.txtShape_flowChartDocument":"Fluxograma: Documento","DE.Controllers.Main.txtShape_flowChartExtract":"Fluxograma: Extrair","DE.Controllers.Main.txtShape_flowChartInputOutput":"Fluxograma: Dados","DE.Controllers.Main.txtShape_flowChartInternalStorage":"Fluxograma: Armazenamento interno","DE.Controllers.Main.txtShape_flowChartMagneticDisk":"Fluxograma: Disco magnético","DE.Controllers.Main.txtShape_flowChartMagneticDrum":"Fluxograma: Armazenamento de acesso direto","DE.Controllers.Main.txtShape_flowChartMagneticTape":"Fluxograma: Armazenamento de acesso sequencial","DE.Controllers.Main.txtShape_flowChartManualInput":"Fluxograma: Entrada manual","DE.Controllers.Main.txtShape_flowChartManualOperation":"Fluxograma: Operação manual","DE.Controllers.Main.txtShape_flowChartMerge":"Fluxograma: Mesclar","DE.Controllers.Main.txtShape_flowChartMultidocument":"Fluxograma: Vários Documentos","DE.Controllers.Main.txtShape_flowChartOffpageConnector":"Fluxograma: Conector fora da página","DE.Controllers.Main.txtShape_flowChartOnlineStorage":"Fluxograma: Dados armazenados","DE.Controllers.Main.txtShape_flowChartOr":"Fluxograma: Ou","DE.Controllers.Main.txtShape_flowChartPredefinedProcess":"Fluxograma: Processo predefinido","DE.Controllers.Main.txtShape_flowChartPreparation":"Fluxograma: Preparação","DE.Controllers.Main.txtShape_flowChartProcess":"Fluxograma: Processo","DE.Controllers.Main.txtShape_flowChartPunchedCard":"Fluxograma: Cartão","DE.Controllers.Main.txtShape_flowChartPunchedTape":"Fluxograma: Fita perfurada","DE.Controllers.Main.txtShape_flowChartSort":"Fluxograma: Classificar","DE.Controllers.Main.txtShape_flowChartSummingJunction":"Fluxograma: Junção de soma","DE.Controllers.Main.txtShape_flowChartTerminator":"Fluxograma: Terminação","DE.Controllers.Main.txtShape_foldedCorner":"Canto dobrado","DE.Controllers.Main.txtShape_frame":"Moldura","DE.Controllers.Main.txtShape_halfFrame":"Meia moldura","DE.Controllers.Main.txtShape_heart":"Coração","DE.Controllers.Main.txtShape_heptagon":"Heptágono","DE.Controllers.Main.txtShape_hexagon":"Hexágono","DE.Controllers.Main.txtShape_homePlate":"Pentágono","DE.Controllers.Main.txtShape_horizontalScroll":"Rolagem horizontal","DE.Controllers.Main.txtShape_irregularSeal1":"Explosão 1","DE.Controllers.Main.txtShape_irregularSeal2":"Explosão 2","DE.Controllers.Main.txtShape_leftArrow":"Seta para a esquerda","DE.Controllers.Main.txtShape_leftArrowCallout":"Texto explicativo à esquerda","DE.Controllers.Main.txtShape_leftBrace":"Chave esquerda","DE.Controllers.Main.txtShape_leftBracket":"Colchete esquerdo","DE.Controllers.Main.txtShape_leftRightArrow":"Seta da esquerda para a direita","DE.Controllers.Main.txtShape_leftRightArrowCallout":"Texto explicativo da seta da esquerda para a direita","DE.Controllers.Main.txtShape_leftRightUpArrow":"Seta da esquerda para a direita para cima","DE.Controllers.Main.txtShape_leftUpArrow":"Seta esquerda para cima","DE.Controllers.Main.txtShape_lightningBolt":"Raio","DE.Controllers.Main.txtShape_line":"Linha","DE.Controllers.Main.txtShape_lineWithArrow":"Seta","DE.Controllers.Main.txtShape_lineWithTwoArrows":"Seta dupla","DE.Controllers.Main.txtShape_mathDivide":"Divisão","DE.Controllers.Main.txtShape_mathEqual":"Igual","DE.Controllers.Main.txtShape_mathMinus":"Menos","DE.Controllers.Main.txtShape_mathMultiply":"Multiplicar","DE.Controllers.Main.txtShape_mathNotEqual":"Não é igual","DE.Controllers.Main.txtShape_mathPlus":"Mais","DE.Controllers.Main.txtShape_moon":"Lua","DE.Controllers.Main.txtShape_noSmoking":"Símbolo de \"Não\"","DE.Controllers.Main.txtShape_notchedRightArrow":"Seta cortada à direita","DE.Controllers.Main.txtShape_octagon":"Octágono","DE.Controllers.Main.txtShape_parallelogram":"Paralelograma","DE.Controllers.Main.txtShape_pentagon":"Pentágono","DE.Controllers.Main.txtShape_pie":"Gráfico de pizza","DE.Controllers.Main.txtShape_plaque":"Assinar","DE.Controllers.Main.txtShape_plus":"Mais","DE.Controllers.Main.txtShape_polyline1":"Rabisco","DE.Controllers.Main.txtShape_polyline2":"Forma livre","DE.Controllers.Main.txtShape_quadArrow":"Setas cruzadas","DE.Controllers.Main.txtShape_quadArrowCallout":"Texto explicativo em seta cruzadas","DE.Controllers.Main.txtShape_rect":"Retângulo","DE.Controllers.Main.txtShape_ribbon":"Fita para baixo","DE.Controllers.Main.txtShape_ribbon2":"Fita para cima","DE.Controllers.Main.txtShape_rightArrow":"Seta para direita","DE.Controllers.Main.txtShape_rightArrowCallout":"Texto explicativo da seta à direita","DE.Controllers.Main.txtShape_rightBrace":"Chave à direita","DE.Controllers.Main.txtShape_rightBracket":"Colchete direito","DE.Controllers.Main.txtShape_round1Rect":"Retângulo com único canto arredondado","DE.Controllers.Main.txtShape_round2DiagRect":"Retângulo de canto diagonal arredondado ","DE.Controllers.Main.txtShape_round2SameRect":"Retângulo arredondado do mesmo lado","DE.Controllers.Main.txtShape_roundRect":"Retângulo arredondado","DE.Controllers.Main.txtShape_rtTriangle":"Triângulo retângulo","DE.Controllers.Main.txtShape_smileyFace":"Rosto sorridente","DE.Controllers.Main.txtShape_snip1Rect":"Retângulo de canto único recortado","DE.Controllers.Main.txtShape_snip2DiagRect":"Retângulo de canto diagonal recortado","DE.Controllers.Main.txtShape_snip2SameRect":"Retângulo com canto recortado do mesmo lado","DE.Controllers.Main.txtShape_snipRoundRect":"Retângulo com canto recortado e arredondado","DE.Controllers.Main.txtShape_spline":"Curva","DE.Controllers.Main.txtShape_star10":"Estrela de 10 pontas","DE.Controllers.Main.txtShape_star12":"Estrela de 12 pontas","DE.Controllers.Main.txtShape_star16":"Estrela de 16 pontas","DE.Controllers.Main.txtShape_star24":"Estrela de 24 pontas","DE.Controllers.Main.txtShape_star32":"Estrela de 32 pontos","DE.Controllers.Main.txtShape_star4":"Estrela de 4 pontas","DE.Controllers.Main.txtShape_star5":"Estrela de 5 pontas","DE.Controllers.Main.txtShape_star6":"Estrela de 6 pontas","DE.Controllers.Main.txtShape_star7":"Estrela de 7 pontas","DE.Controllers.Main.txtShape_star8":"Estrela de 8 pontas","DE.Controllers.Main.txtShape_stripedRightArrow":"Seta para a direita listrada","DE.Controllers.Main.txtShape_sun":"Sol","DE.Controllers.Main.txtShape_teardrop":"Lágrima","DE.Controllers.Main.txtShape_textRect":"Caixa de texto","DE.Controllers.Main.txtShape_trapezoid":"Trapézio","DE.Controllers.Main.txtShape_triangle":"Triângulo","DE.Controllers.Main.txtShape_upArrow":"Seta para cima","DE.Controllers.Main.txtShape_upArrowCallout":"Texto explicativo em seta para cima","DE.Controllers.Main.txtShape_upDownArrow":"Seta de cima para baixo","DE.Controllers.Main.txtShape_uturnArrow":"Seta em forma de U","DE.Controllers.Main.txtShape_verticalScroll":"Rolagem vertical","DE.Controllers.Main.txtShape_wave":"Onda","DE.Controllers.Main.txtShape_wedgeEllipseCallout":"Texto explicativo oval","DE.Controllers.Main.txtShape_wedgeRectCallout":"Texto explicativo retangular","DE.Controllers.Main.txtShape_wedgeRoundRectCallout":"Texto explicativo retangular arredondado","DE.Controllers.Main.txtStarsRibbons":"Estrelas e faixas","DE.Controllers.Main.txtStyle_Book_Title":"Título do livro","DE.Controllers.Main.txtStyle_Caption":"Legenda","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"Fonte de parágrafo padrão","DE.Controllers.Main.txtStyle_Emphasis":"Ênfase","DE.Controllers.Main.txtStyle_endnote_reference":"Referência de nota final","DE.Controllers.Main.txtStyle_endnote_text":"Texto de fim de nota","DE.Controllers.Main.txtStyle_footnote_reference":"Referência de nota de rodapé","DE.Controllers.Main.txtStyle_footnote_text":"Texto de notas de rodapé","DE.Controllers.Main.txtStyle_Heading_1":"Cabeçalho 1","DE.Controllers.Main.txtStyle_Heading_2":"Cabeçalho 2","DE.Controllers.Main.txtStyle_Heading_3":"Cabeçalho 3","DE.Controllers.Main.txtStyle_Heading_4":"Cabeçalho 4","DE.Controllers.Main.txtStyle_Heading_5":"Cabeçalho 5","DE.Controllers.Main.txtStyle_Heading_6":"Cabeçalho 6","DE.Controllers.Main.txtStyle_Heading_7":"Cabeçalho 7","DE.Controllers.Main.txtStyle_Heading_8":"Cabeçalho 8","DE.Controllers.Main.txtStyle_Heading_9":"Cabeçalho 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"Ênfase intensa","DE.Controllers.Main.txtStyle_Intense_Quote":"Citação intensa","DE.Controllers.Main.txtStyle_Intense_Reference":"Ênfase intensa","DE.Controllers.Main.txtStyle_List_Paragraph":"Listar parágrafo","DE.Controllers.Main.txtStyle_No_List":"Não há lista","DE.Controllers.Main.txtStyle_No_Spacing":"Sem espaçamento","DE.Controllers.Main.txtStyle_Normal":"Normal","DE.Controllers.Main.txtStyle_Quote":"Citar","DE.Controllers.Main.txtStyle_Strong":"Forte","DE.Controllers.Main.txtStyle_Subtitle":"Legenda","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"Ênfase sutil","DE.Controllers.Main.txtStyle_Subtle_Reference":"Referência sutil","DE.Controllers.Main.txtStyle_Title":"Titulo","DE.Controllers.Main.txtSyntaxError":"Erro de sintaxe","DE.Controllers.Main.txtTableInd":"O índice da tabela não pode ser zero","DE.Controllers.Main.txtTableOfContents":"Tabela de conteúdo","DE.Controllers.Main.txtTableOfFigures":"Tabela de figuras","DE.Controllers.Main.txtTOCHeading":"Rúbrica TOC","DE.Controllers.Main.txtTooLarge":"Número muito extenso para formatar","DE.Controllers.Main.txtTypeEquation":"Digite uma equação aqui.","DE.Controllers.Main.txtUndefBookmark":"Marcador indefinido","DE.Controllers.Main.txtXAxis":"Eixo X","DE.Controllers.Main.txtYAxis":"Eixo Y","DE.Controllers.Main.txtZeroDivide":"Divisão por zero","DE.Controllers.Main.unknownErrorText":"Erro desconhecido.","DE.Controllers.Main.unsupportedBrowserErrorText":"Seu navegador não é suportado.","DE.Controllers.Main.updateChartText":"Atualizando dados do gráfico...","DE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconhecido.","DE.Controllers.Main.uploadDocFileCountMessage":"Nenhum documento carregado.","DE.Controllers.Main.uploadDocSizeMessage":"Tamanho máximo do documento excedido.","DE.Controllers.Main.uploadImageExtMessage":"Formato de imagem desconhecido.","DE.Controllers.Main.uploadImageFileCountMessage":"Sem imagens carregadas.","DE.Controllers.Main.uploadImageSizeMessage":"Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.","DE.Controllers.Main.uploadImageTextText":"Carregando imagem...","DE.Controllers.Main.uploadImageTitleText":"Carregando imagem","DE.Controllers.Main.waitText":"Aguarde...","DE.Controllers.Main.warnBrowserIE9":"O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior","DE.Controllers.Main.warnBrowserZoom":"A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.","DE.Controllers.Main.warnLicenseAnonymous":"Acesso negado para usuários anônimos.
Este documento será aberto apenas para visualização.","DE.Controllers.Main.warnLicenseBefore":"Licença inativa.
Entre em contato com seu administrador.","DE.Controllers.Main.warnLicenseExp":"Sua licença expirou.
Atualize sua licença e refresque a página.","DE.Controllers.Main.warnLicenseLimitedNoAccess":"A licença expirou.
Você não tem acesso à funcionalidade de edição de documentos.
Por favor, contate seu administrador.","DE.Controllers.Main.warnLicenseLimitedRenewed":"A licença precisa ser renovada.
Você tem acesso limitado à funcionalidade de edição de documentos.
Entre em contato com o administrador para obter acesso total.","DE.Controllers.Main.warnNoLicense":"Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.","DE.Controllers.Main.warnNoLicenseUsers":"Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.","DE.Controllers.Main.warnProcessRightsChange":"Foi negado a você o direito de editar o arquivo.","DE.Controllers.Main.warnStartFilling":"O preenchimento do formulário está em andamento.
A edição do arquivo não está disponível no momento.","DE.Controllers.Navigation.txtBeginning":"Início do documento","DE.Controllers.Navigation.txtGotoBeginning":"Ir para o início do documento","DE.Controllers.Print.textMarginsLast":"Últimos personalizados","DE.Controllers.Print.txtCustom":"Personalizado","DE.Controllers.Print.txtPrintRangeInvalid":"Intervalo de impressão inválido","DE.Controllers.Search.notcriticalErrorTitle":"Aviso","DE.Controllers.Search.textNoTextFound":"Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.","DE.Controllers.Search.textReplaceSkipped":"A substituição foi realizada. {0} ocorrências foram ignoradas.","DE.Controllers.Search.textReplaceSuccess":"A pesquisa foi feita. {0} ocorrências foram substituídas","DE.Controllers.Search.warnReplaceString":"{0} não é um caractere especial válido para a caixa Substituir Por.","DE.Controllers.Statusbar.textDisconnect":"A conexão foi perdida
Tentando conectar. Verifique as configurações de conexão.","DE.Controllers.Statusbar.textHasChanges":"New changes have been tracked","DE.Controllers.Statusbar.textSetTrackChanges":"Você está em modo de rastreamento de alterações","DE.Controllers.Statusbar.textTrackChanges":"The document is opened with the Track Changes mode enabled","DE.Controllers.Statusbar.tipReview":"Rastrear alterações","DE.Controllers.Statusbar.zoomText":"Ampliação {0}%","DE.Controllers.Toolbar.confirmAddFontName":"A fonte que você vai salvar não está disponível no dispositivo atual.
O estilo de texto será exibido usando uma das fontes do sistema, a fonte salva será usada quando ela estiver disponível.
Você deseja continuar?","DE.Controllers.Toolbar.dataUrl":"Colar uma URL de dados","DE.Controllers.Toolbar.errorAccessDeny":"Você está tentando executar uma ação para a qual não tem direitos.
Entre em contato com o administrador do Document Server.","DE.Controllers.Toolbar.fileUrl":"Colar um URL de arquivo","DE.Controllers.Toolbar.helpChartElements":"Alterne facilmente a visibilidade dos elementos do gráfico com alguns cliques.","DE.Controllers.Toolbar.helpChartElementsHeader":"Exibição de elementos do gráfico","DE.Controllers.Toolbar.helpCommentFilter":"Gerencie sua visualização alternando entre comentários abertos e resolvidos no painel esquerdo.","DE.Controllers.Toolbar.helpCommentFilterHeader":"Filtros de comentários","DE.Controllers.Toolbar.notcriticalErrorTitle":"Aviso","DE.Controllers.Toolbar.textAccent":"Acentos","DE.Controllers.Toolbar.textBracket":"Parênteses","DE.Controllers.Toolbar.textConvertFormDownload":"Baixe o arquivo como um formulário PDF preenchível para poder preenchê-lo.","DE.Controllers.Toolbar.textConvertFormSave":"Salve o arquivo como um formulário PDF preenchível para poder preenchê-lo.","DE.Controllers.Toolbar.textDownloadPdf":"Baixar PDF","DE.Controllers.Toolbar.textEmptyMMergeUrl":"Você precisa especificar o URL.","DE.Controllers.Toolbar.textFontSizeErr":"O valor inserido está incorreto.
Insira um valor numérico entre 1 e 300","DE.Controllers.Toolbar.textFraction":"Frações","DE.Controllers.Toolbar.textFunction":"Funções","DE.Controllers.Toolbar.textGroup":"Grupo","DE.Controllers.Toolbar.textInsert":"Inserir","DE.Controllers.Toolbar.textIntegral":"Integrais","DE.Controllers.Toolbar.textLargeOperator":"Grandes operadores","DE.Controllers.Toolbar.textLimitAndLog":"Limites e logaritmos","DE.Controllers.Toolbar.textMatrix":"Matrizes","DE.Controllers.Toolbar.textOperator":"Operadores","DE.Controllers.Toolbar.textRadical":"Radicais","DE.Controllers.Toolbar.textRecentlyUsed":"Usado recentemente","DE.Controllers.Toolbar.textSavePdf":"Salvar em PDF","DE.Controllers.Toolbar.textScript":"Scripts","DE.Controllers.Toolbar.textSymbols":"Símbolos","DE.Controllers.Toolbar.textTabForms":"Formulários","DE.Controllers.Toolbar.textWarning":"Aviso","DE.Controllers.Toolbar.txtAccent_Accent":"Agudo","DE.Controllers.Toolbar.txtAccent_ArrowD":"Seta para direita-esquerda acima","DE.Controllers.Toolbar.txtAccent_ArrowL":"Seta adiante para cima","DE.Controllers.Toolbar.txtAccent_ArrowR":"Seta para direita acima","DE.Controllers.Toolbar.txtAccent_Bar":"Barra","DE.Controllers.Toolbar.txtAccent_BarBot":"Barra inferior","DE.Controllers.Toolbar.txtAccent_BarTop":"Barra superior","DE.Controllers.Toolbar.txtAccent_BorderBox":"Fórmula Emoldurada (com Espaço Reservado)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"Fórmula embalada(Exemplo)","DE.Controllers.Toolbar.txtAccent_Check":"Verificar","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"Chave Inferior","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"Chave Superior","DE.Controllers.Toolbar.txtAccent_Custom_1":"Vetor A","DE.Controllers.Toolbar.txtAccent_Custom_2":"Barra superior com ABC","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y com barra superior","DE.Controllers.Toolbar.txtAccent_DDDot":"Ponto triplo","DE.Controllers.Toolbar.txtAccent_DDot":"Ponto duplo","DE.Controllers.Toolbar.txtAccent_Dot":"Ponto","DE.Controllers.Toolbar.txtAccent_DoubleBar":"Barra superior dupla","DE.Controllers.Toolbar.txtAccent_Grave":"Grave","DE.Controllers.Toolbar.txtAccent_GroupBot":"Agrupamento de caracteres abaixo","DE.Controllers.Toolbar.txtAccent_GroupTop":"Agrupamento de caracteres acima","DE.Controllers.Toolbar.txtAccent_HarpoonL":"Arpão adiante para cima","DE.Controllers.Toolbar.txtAccent_HarpoonR":"Arpão para direita acima","DE.Controllers.Toolbar.txtAccent_Hat":"Acento circunflexo","DE.Controllers.Toolbar.txtAccent_Smile":"Breve","DE.Controllers.Toolbar.txtAccent_Tilde":"Til","DE.Controllers.Toolbar.txtBracket_Angle":"Parênteses","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"Parênteses com separadores","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"Parênteses com separadores","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"Colchete de ângulo reto","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"Colchete Simples","DE.Controllers.Toolbar.txtBracket_Curve":"Colchetes","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"Colchetes com separador","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"Colchete direito","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"colchete esquerdo","DE.Controllers.Toolbar.txtBracket_Custom_1":"Casos (Duas Condições)","DE.Controllers.Toolbar.txtBracket_Custom_2":"Casos (Três Condições)","DE.Controllers.Toolbar.txtBracket_Custom_3":"Objeto Empilhado","DE.Controllers.Toolbar.txtBracket_Custom_4":"Objeto empilhado entre parênteses","DE.Controllers.Toolbar.txtBracket_Custom_5":"Exemplo de casos","DE.Controllers.Toolbar.txtBracket_Custom_6":"Coeficiente binominal","DE.Controllers.Toolbar.txtBracket_Custom_7":"Coeficiente binominal","DE.Controllers.Toolbar.txtBracket_Line":"Barras verticais","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"Barra vertical direita","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"Barra vertical esquerda","DE.Controllers.Toolbar.txtBracket_LineDouble":"Barras verticais duplas","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"Barra vertical dupla direita","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"Barra vertical dupla esquerda","DE.Controllers.Toolbar.txtBracket_LowLim":"Piso","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"Piso direito","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"Piso esquerdo","DE.Controllers.Toolbar.txtBracket_Round":"Parênteses","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"Parênteses com separadores","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"Parêntese direito","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"Parêntese esquerdo","DE.Controllers.Toolbar.txtBracket_Square":"Colchetes","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"Espaço reservado entre dois colchetes direitos","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"Colchetes invertidos","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"Colchete direito","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"Colchete esquerdo","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"Espaço reservado entre dois colchetes esquerdos","DE.Controllers.Toolbar.txtBracket_SquareDouble":"Colchetes duplos","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"Colchete duplo direito","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"Colchete duplo esquerdo","DE.Controllers.Toolbar.txtBracket_UppLim":"Teto","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"Teto direito","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"Colchete Simples","DE.Controllers.Toolbar.txtDownload":"Baixar","DE.Controllers.Toolbar.txtFractionDiagonal":"Fração inclinada","DE.Controllers.Toolbar.txtFractionDifferential_1":"Derivada","DE.Controllers.Toolbar.txtFractionDifferential_2":"limite delta y sobre limite delta x","DE.Controllers.Toolbar.txtFractionDifferential_3":"y parcial sobre x parcial","DE.Controllers.Toolbar.txtFractionDifferential_4":"Delta y sobre delta x","DE.Controllers.Toolbar.txtFractionHorizontal":"Fração linear","DE.Controllers.Toolbar.txtFractionPi_2":"Pi sobre 2","DE.Controllers.Toolbar.txtFractionSmall":"Fração pequena","DE.Controllers.Toolbar.txtFractionVertical":"Fração Empilhada","DE.Controllers.Toolbar.txtFunction_1_Cos":"Função cosseno inverso","DE.Controllers.Toolbar.txtFunction_1_Cosh":"Função cosseno inverso hiperbólico","DE.Controllers.Toolbar.txtFunction_1_Cot":"Função cotangente inversa","DE.Controllers.Toolbar.txtFunction_1_Coth":"Função cotangente inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Csc":"Função cossecante inversa","DE.Controllers.Toolbar.txtFunction_1_Csch":"Função cossecante inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Sec":"Função secante inversa","DE.Controllers.Toolbar.txtFunction_1_Sech":"Função secante inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Sin":"Função seno inverso","DE.Controllers.Toolbar.txtFunction_1_Sinh":"Função seno inverso hiperbólico","DE.Controllers.Toolbar.txtFunction_1_Tan":"Função tangente inversa","DE.Controllers.Toolbar.txtFunction_1_Tanh":"Função tangente inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_Cos":"Função cosseno","DE.Controllers.Toolbar.txtFunction_Cosh":"Função cosseno hiperbólico","DE.Controllers.Toolbar.txtFunction_Cot":"Função cotangente","DE.Controllers.Toolbar.txtFunction_Coth":"Função cotangente hiperbólica","DE.Controllers.Toolbar.txtFunction_Csc":"Função cossecante","DE.Controllers.Toolbar.txtFunction_Csch":"Função co-secante hiperbólica","DE.Controllers.Toolbar.txtFunction_Custom_1":"Teta seno","DE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"Fórmula da tangente","DE.Controllers.Toolbar.txtFunction_Sec":"Função secante","DE.Controllers.Toolbar.txtFunction_Sech":"Função secante hiperbólica","DE.Controllers.Toolbar.txtFunction_Sin":"Função de seno","DE.Controllers.Toolbar.txtFunction_Sinh":"Função seno hiperbólico","DE.Controllers.Toolbar.txtFunction_Tan":"Função da tangente","DE.Controllers.Toolbar.txtFunction_Tanh":"Função tangente hiperbólica","DE.Controllers.Toolbar.txtIntegral":"Integral","DE.Controllers.Toolbar.txtIntegral_dtheta":"Teta diferencial","DE.Controllers.Toolbar.txtIntegral_dx":"Derivada x","DE.Controllers.Toolbar.txtIntegral_dy":"Derivada y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral com limites empilhados","DE.Controllers.Toolbar.txtIntegralDouble":"Integral dupla","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Integral dupla com limites empilhados","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Integral dupla com limites","DE.Controllers.Toolbar.txtIntegralOriented":"Integral de linha","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"Integral de contorno com limites empilhados","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"Integral de Superfície","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Integral de superfície com limites empilhados","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"Integral de superfície com limites","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"Integral de linha","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"Volume Integral","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"Integral de volume com limites empilhados","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"Volume Integral","DE.Controllers.Toolbar.txtIntegralSubSup":"Integral","DE.Controllers.Toolbar.txtIntegralTriple":"Integral Tripla","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Integral Tripla","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"Integral Tripla","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Lógico e","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Lógico E com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Lógico E com limites","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Lógico E com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Lógico E com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"Coproduto","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Coproduto com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Coproduto com limites","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Co-produto com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Coproduto com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Soma sobre k de n escolha k","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Soma de i igual a zero a n","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Exemplo de soma usando dois índices","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Exemplo de produto","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"União","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"Lógico ou","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"Lógico Ou com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"Lógico Ou com limites","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"Lógico Ou com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"Ou Lógico com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"Interseção","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"Interseção com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"Interseção","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"Interseção com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"Interseção com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Prod":"Produto","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Produto com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Produto com limites","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Produto com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Produto com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Sum":"Somatório","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Soma com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Soma com limites","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Soma com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Soma com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Union":"União","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"União com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"União com limites","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"União com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"União com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"Exemplo limite","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"Exemplo máximo","DE.Controllers.Toolbar.txtLimitLog_Lim":"Limite","DE.Controllers.Toolbar.txtLimitLog_Ln":"Logaritmo natural","DE.Controllers.Toolbar.txtLimitLog_Log":"Logaritmo","DE.Controllers.Toolbar.txtLimitLog_LogBase":"Logaritmo","DE.Controllers.Toolbar.txtLimitLog_Max":"Máximo","DE.Controllers.Toolbar.txtLimitLog_Min":"Mínimo","DE.Controllers.Toolbar.txtMarginsH":"Margens superior e inferior são muito altas para uma determinada altura da página","DE.Controllers.Toolbar.txtMarginsW":"Margens são muito grandes para uma determinada largura da página","DE.Controllers.Toolbar.txtMatrix_1_2":"Matriz Vazia 1x2","DE.Controllers.Toolbar.txtMatrix_1_3":"Matriz Vazia 1x3","DE.Controllers.Toolbar.txtMatrix_2_1":"Matriz Vazia 2x1","DE.Controllers.Toolbar.txtMatrix_2_2":"Matriz Vazia 2x2","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"Matriz vazia com parênteses","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"Matriz vazia com parênteses","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"Matriz vazia com parênteses","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"Matriz vazia com parênteses","DE.Controllers.Toolbar.txtMatrix_2_3":"Matriz Vazia 2x3","DE.Controllers.Toolbar.txtMatrix_3_1":"Matriz Vazia 3x1","DE.Controllers.Toolbar.txtMatrix_3_2":"Matriz Vazia 3x2","DE.Controllers.Toolbar.txtMatrix_3_3":"Matriz Vazia 3x3","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"Pontos de linha de base","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"Pontos de linha média","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"Pontos diagonais","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"Pontos verticais","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"Matriz esparsa entre parênteses","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"Matriz esparsa em parênteses","DE.Controllers.Toolbar.txtMatrix_Identity_2":"Matriz da identidade 2x2","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"Matriz da identidade 2x2","DE.Controllers.Toolbar.txtMatrix_Identity_3":"Matriz da identidade 3x3","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"Matriz da identidade 3x3","DE.Controllers.Toolbar.txtNeedDownload":"O visualizador de PDF só pode salvar novas alterações em cópias de arquivos separadas. Ele não oferece suporte à coedição e outros usuários não verão suas alterações, a menos que você compartilhe uma nova versão do arquivo.","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"Seta para direita esquerda abaixo","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"Seta para direita-esquerda acima","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"Seta adiante para baixo","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"Seta adiante para cima","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"Seta para direita abaixo","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"Seta para direita acima","DE.Controllers.Toolbar.txtOperator_ColonEquals":"Dois-pontos-Sinal de Igual","DE.Controllers.Toolbar.txtOperator_Custom_1":"Resultados","DE.Controllers.Toolbar.txtOperator_Custom_2":"Resultados de Delta","DE.Controllers.Toolbar.txtOperator_Definition":"Igual a por definição","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta igual a","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"Seta para direita esquerda abaixo","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"Seta para direita-esquerda acima","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"Seta adiante para baixo","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"Seta adiante para cima","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"Seta para direita abaixo","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"Rightwards Arrow Above","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"Sinal de Igual-Sinal de Igual","DE.Controllers.Toolbar.txtOperator_MinusEquals":"Sinal de Menos-Sinal de Igual","DE.Controllers.Toolbar.txtOperator_PlusEquals":"Sinal de Mais-Sinal de Igual","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"Medido por","DE.Controllers.Toolbar.txtRadicalCustom_1":"Lado direito da fórmula quadrática","DE.Controllers.Toolbar.txtRadicalCustom_2":"Raiz quadrada de a ao quadrado mais b ao quadrado","DE.Controllers.Toolbar.txtRadicalRoot_2":"Raiz quadrada com grau","DE.Controllers.Toolbar.txtRadicalRoot_3":"Raiz cúbica","DE.Controllers.Toolbar.txtRadicalRoot_n":"Radical com grau","DE.Controllers.Toolbar.txtRadicalSqrt":"Raiz quadrada","DE.Controllers.Toolbar.txtSaveCopy":"Salvar cópia","DE.Controllers.Toolbar.txtScriptCustom_1":"x subscrito y ao quadrado","DE.Controllers.Toolbar.txtScriptCustom_2":"e elevado a menos i ômega t","DE.Controllers.Toolbar.txtScriptCustom_3":"x ao quadrado","DE.Controllers.Toolbar.txtScriptCustom_4":"Y sobrescrito à esquerda n subscrito à esquerda um","DE.Controllers.Toolbar.txtScriptSub":"Subscrito","DE.Controllers.Toolbar.txtScriptSubSup":"Subscrito-Sobrescrito","DE.Controllers.Toolbar.txtScriptSubSupLeft":"LeftSubscript-Superscript","DE.Controllers.Toolbar.txtScriptSup":"Sobrescrito","DE.Controllers.Toolbar.txtSymbol_about":"Aproximadamente","DE.Controllers.Toolbar.txtSymbol_additional":"Complemento","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Alfa","DE.Controllers.Toolbar.txtSymbol_approx":"Quase igual a","DE.Controllers.Toolbar.txtSymbol_ast":"Operador de asterisco","DE.Controllers.Toolbar.txtSymbol_beta":"Beta","DE.Controllers.Toolbar.txtSymbol_beth":"Aposta","DE.Controllers.Toolbar.txtSymbol_bullet":"Operador de marcador","DE.Controllers.Toolbar.txtSymbol_cap":"Interseção","DE.Controllers.Toolbar.txtSymbol_cbrt":"Raiz cúbica","DE.Controllers.Toolbar.txtSymbol_cdots":"Reticências horizontais de linha média","DE.Controllers.Toolbar.txtSymbol_celsius":"Graus Celsius","DE.Controllers.Toolbar.txtSymbol_chi":"Ki","DE.Controllers.Toolbar.txtSymbol_cong":"Aproximadamente igual a","DE.Controllers.Toolbar.txtSymbol_cup":"União","DE.Controllers.Toolbar.txtSymbol_ddots":"Reticências diagonal para baixo à direita","DE.Controllers.Toolbar.txtSymbol_degree":"Graus","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"Sinal de divisão","DE.Controllers.Toolbar.txtSymbol_downarrow":"Seta para baixo","DE.Controllers.Toolbar.txtSymbol_emptyset":"Conjunto vazio","DE.Controllers.Toolbar.txtSymbol_epsilon":"Epsílon","DE.Controllers.Toolbar.txtSymbol_equals":"Igual","DE.Controllers.Toolbar.txtSymbol_equiv":"Idêntico a","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"Existe","DE.Controllers.Toolbar.txtSymbol_factorial":"Fatorial","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"Graus Fahrenheit","DE.Controllers.Toolbar.txtSymbol_forall":"Para todos","DE.Controllers.Toolbar.txtSymbol_gamma":"Gama","DE.Controllers.Toolbar.txtSymbol_geq":"Superior a ou igual a","DE.Controllers.Toolbar.txtSymbol_gg":"Muito superior a","DE.Controllers.Toolbar.txtSymbol_greater":"Superior a","DE.Controllers.Toolbar.txtSymbol_in":"Elemento de","DE.Controllers.Toolbar.txtSymbol_inc":"Incremento","DE.Controllers.Toolbar.txtSymbol_infinity":"Infinidade","DE.Controllers.Toolbar.txtSymbol_iota":"Iota","DE.Controllers.Toolbar.txtSymbol_kappa":"Capa","DE.Controllers.Toolbar.txtSymbol_lambda":"Lambda","DE.Controllers.Toolbar.txtSymbol_leftarrow":"Seta para esquerda","DE.Controllers.Toolbar.txtSymbol_leftrightarrow":"Seta esquerda-direita","DE.Controllers.Toolbar.txtSymbol_leq":"Inferior a ou igual a","DE.Controllers.Toolbar.txtSymbol_less":"Inferior a","DE.Controllers.Toolbar.txtSymbol_ll":"Muito inferior a","DE.Controllers.Toolbar.txtSymbol_minus":"Menos","DE.Controllers.Toolbar.txtSymbol_mp":"Sinal de Menos-Sinal de Mais","DE.Controllers.Toolbar.txtSymbol_mu":"Mu","DE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","DE.Controllers.Toolbar.txtSymbol_neq":"Não igual a","DE.Controllers.Toolbar.txtSymbol_ni":"Contém como membro","DE.Controllers.Toolbar.txtSymbol_not":"Não entrar","DE.Controllers.Toolbar.txtSymbol_notexists":"Não existe","DE.Controllers.Toolbar.txtSymbol_nu":"Nu","DE.Controllers.Toolbar.txtSymbol_o":"Omicron","DE.Controllers.Toolbar.txtSymbol_omega":"Ômega","DE.Controllers.Toolbar.txtSymbol_partial":"Derivada parcial","DE.Controllers.Toolbar.txtSymbol_percent":"Porcentagem","DE.Controllers.Toolbar.txtSymbol_phi":"Fi","DE.Controllers.Toolbar.txtSymbol_pi":"Pi","DE.Controllers.Toolbar.txtSymbol_plus":"Mais","DE.Controllers.Toolbar.txtSymbol_pm":"Sinal de Menos-Sinal de Igual","DE.Controllers.Toolbar.txtSymbol_propto":"Proporcional a","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"Quarta raiz","DE.Controllers.Toolbar.txtSymbol_qed":"Fim da prova","DE.Controllers.Toolbar.txtSymbol_rddots":"Reticências diagonal direitas para cima","DE.Controllers.Toolbar.txtSymbol_rho":"Rô","DE.Controllers.Toolbar.txtSymbol_rightarrow":"Seta para direita","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"Sinal de Radical","DE.Controllers.Toolbar.txtSymbol_tau":"Tau","DE.Controllers.Toolbar.txtSymbol_therefore":"Portanto","DE.Controllers.Toolbar.txtSymbol_theta":"Teta","DE.Controllers.Toolbar.txtSymbol_times":"Sinal de multiplicação","DE.Controllers.Toolbar.txtSymbol_uparrow":"Seta Para Cima","DE.Controllers.Toolbar.txtSymbol_upsilon":"Ípsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Variante de Epsílon","DE.Controllers.Toolbar.txtSymbol_varphi":"Variante de fi","DE.Controllers.Toolbar.txtSymbol_varpi":"Variante de Pi","DE.Controllers.Toolbar.txtSymbol_varrho":"Variante de Rô","DE.Controllers.Toolbar.txtSymbol_varsigma":"Variante de Sigma","DE.Controllers.Toolbar.txtSymbol_vartheta":"Variante de Teta","DE.Controllers.Toolbar.txtSymbol_vdots":"Reticências verticais","DE.Controllers.Toolbar.txtSymbol_xsi":"Xi","DE.Controllers.Toolbar.txtSymbol_zeta":"Zeta","DE.Controllers.Toolbar.txtUntitled":"Sem título","DE.Controllers.Viewport.textFitPage":"Ajustar a página","DE.Controllers.Viewport.textFitWidth":"Ajustar largura","DE.Controllers.Viewport.txtDarkMode":"Modo escuro","DE.Views.BookmarksDialog.textAdd":"Incluir","DE.Views.BookmarksDialog.textAddAndGetLink":"Adicionar e obter link","DE.Views.BookmarksDialog.textBookmarkName":"Nome do favorito","DE.Views.BookmarksDialog.textClose":"Fechar","DE.Views.BookmarksDialog.textCopy":"Copiar","DE.Views.BookmarksDialog.textDelete":"Excluir","DE.Views.BookmarksDialog.textGetLink":"Obter link","DE.Views.BookmarksDialog.textGoto":"Ir para","DE.Views.BookmarksDialog.textHidden":"Favoritos ocultos","DE.Views.BookmarksDialog.textLocation":"Localização","DE.Views.BookmarksDialog.textName":"Nome","DE.Views.BookmarksDialog.textSort":"Ordenar por","DE.Views.BookmarksDialog.textTitle":"Favoritos","DE.Views.BookmarksDialog.txtInvalidName":"O nome do marcador só pode conter letras, dígitos e sublinhados, e deve começar com a letra","DE.Views.CaptionDialog.textAdd":"Adicionar","DE.Views.CaptionDialog.textAfter":"Depois","DE.Views.CaptionDialog.textBefore":"Antes","DE.Views.CaptionDialog.textCaption":"Legenda","DE.Views.CaptionDialog.textChapter":"Capítulo começa com estilo","DE.Views.CaptionDialog.textChapterInc":"Inclui o número do capítulo","DE.Views.CaptionDialog.textColon":"Dois pontos","DE.Views.CaptionDialog.textDash":"traço","DE.Views.CaptionDialog.textDelete":"Excluir","DE.Views.CaptionDialog.textEquation":"Equação","DE.Views.CaptionDialog.textExamples":"Exemplos: Tabela 2-A, Imagem 1.IV","DE.Views.CaptionDialog.textExclude":"Excluir rótulo da legenda","DE.Views.CaptionDialog.textFigure":"Figura","DE.Views.CaptionDialog.textHyphen":"Hífen","DE.Views.CaptionDialog.textInsert":"Inserir","DE.Views.CaptionDialog.textLabel":"Etiqueta","DE.Views.CaptionDialog.textLabelError":"O rótulo não pode estar vazio.","DE.Views.CaptionDialog.textLongDash":"traço longo","DE.Views.CaptionDialog.textNumbering":"Numeração","DE.Views.CaptionDialog.textPeriod":"Período","DE.Views.CaptionDialog.textSeparator":"Use separador","DE.Views.CaptionDialog.textTable":"Tabela","DE.Views.CaptionDialog.textTitle":"Inserir Legenda","DE.Views.CellsAddDialog.textCol":"Colunas","DE.Views.CellsAddDialog.textDown":"Abaixo do cursor","DE.Views.CellsAddDialog.textLeft":"Para esquerda","DE.Views.CellsAddDialog.textRight":"Para direita","DE.Views.CellsAddDialog.textRow":"Linhas","DE.Views.CellsAddDialog.textTitle":"Insira vários","DE.Views.CellsAddDialog.textUp":"Acima do cursor","DE.Views.CellsRemoveDialog.textCol":"Excluir coluna","DE.Views.CellsRemoveDialog.textLeft":"Deslocar células para a esquerda","DE.Views.CellsRemoveDialog.textRow":"Excluir linha","DE.Views.CellsRemoveDialog.textTitle":"Excluir células","DE.Views.ChartSettings.text3dDepth":"Profundidade (% da base)","DE.Views.ChartSettings.text3dHeight":"Altura (% da base)","DE.Views.ChartSettings.text3dRotation":"Rotação 3D","DE.Views.ChartSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.ChartSettings.textAutoscale":"Autoescala","DE.Views.ChartSettings.textChartType":"Alterar tipo de gráfico","DE.Views.ChartSettings.textData":"Dados","DE.Views.ChartSettings.textDefault":"Rotação padrão","DE.Views.ChartSettings.textDown":"Abaixo","DE.Views.ChartSettings.textEditData":"Editar dados","DE.Views.ChartSettings.textEditLinks":"Editar links","DE.Views.ChartSettings.textHeight":"Altura","DE.Views.ChartSettings.textKeepRatio":"Proporções constantes","DE.Views.ChartSettings.textLeft":"Esquerda","DE.Views.ChartSettings.textLinkedData":"Dados vinculados","DE.Views.ChartSettings.textNarrow":"Campo de visão estreito","DE.Views.ChartSettings.textOriginalSize":"Tamanho atual","DE.Views.ChartSettings.textPerspective":"Perspectiva","DE.Views.ChartSettings.textRight":"Direita","DE.Views.ChartSettings.textRightAngle":"Eixos de ângulo reto","DE.Views.ChartSettings.textSelectData":"Selecionar dados","DE.Views.ChartSettings.textSize":"Tamanho","DE.Views.ChartSettings.textStyle":"Estilo","DE.Views.ChartSettings.textUndock":"Desencaixar do painel","DE.Views.ChartSettings.textUp":"Para cima","DE.Views.ChartSettings.textUpdateData":"Atualizar dados","DE.Views.ChartSettings.textWiden":"Ampliar o campo de visão","DE.Views.ChartSettings.textWidth":"Largura","DE.Views.ChartSettings.textWrap":"Estilo da quebra automática","DE.Views.ChartSettings.textX":"Rotação X","DE.Views.ChartSettings.textY":"Rotação Y","DE.Views.ChartSettings.txtBehind":"Atrás do texto","DE.Views.ChartSettings.txtInFront":"Em frente ao Texto","DE.Views.ChartSettings.txtInline":"Alinhado ao texto","DE.Views.ChartSettings.txtSquare":"Quadrado","DE.Views.ChartSettings.txtThrough":"Através","DE.Views.ChartSettings.txtTight":"Justo","DE.Views.ChartSettings.txtTitle":"Gráfico","DE.Views.ChartSettings.txtTopAndBottom":"Parte superior e inferior","DE.Views.ChartSettingsDlg.textLeftOverlay":"Sobreposição esquerda","DE.Views.CompareSettingsDialog.textChar":"Nivel de caracter","DE.Views.CompareSettingsDialog.textShow":"Mostrar mudanças em","DE.Views.CompareSettingsDialog.textTitle":"Configurações de Comparação","DE.Views.CompareSettingsDialog.textWord":"Nível de palavra","DE.Views.ControlSettingsDialog.strGeneral":"Geral","DE.Views.ControlSettingsDialog.textAdd":"Incluir","DE.Views.ControlSettingsDialog.textAppearance":"Aparência","DE.Views.ControlSettingsDialog.textApplyAll":"Aplicar a Todos","DE.Views.ControlSettingsDialog.textBox":"Caixa delimitadora","DE.Views.ControlSettingsDialog.textChange":"Editar","DE.Views.ControlSettingsDialog.textCheckbox":"Caixa de seleção","DE.Views.ControlSettingsDialog.textChecked":"Símbolo marcado","DE.Views.ControlSettingsDialog.textColor":"Cor","DE.Views.ControlSettingsDialog.textCombobox":"Caixa de combinação","DE.Views.ControlSettingsDialog.textDate":"Formato de data","DE.Views.ControlSettingsDialog.textDelete":"Excluir","DE.Views.ControlSettingsDialog.textDisplayName":"Nome de exibição","DE.Views.ControlSettingsDialog.textDown":"Abaixo","DE.Views.ControlSettingsDialog.textDropDown":"Lista suspensa","DE.Views.ControlSettingsDialog.textFormat":"Mostra a data assim","DE.Views.ControlSettingsDialog.textLang":"Idioma","DE.Views.ControlSettingsDialog.textLock":"Travar","DE.Views.ControlSettingsDialog.textName":"Título","DE.Views.ControlSettingsDialog.textNone":"Nenhum","DE.Views.ControlSettingsDialog.textPlaceholder":"Marcador de posição","DE.Views.ControlSettingsDialog.textShowAs":"Exibir como","DE.Views.ControlSettingsDialog.textSystemColor":"Sistema","DE.Views.ControlSettingsDialog.textTag":"Etiqueta","DE.Views.ControlSettingsDialog.textTitle":"Propriedades do controle de conteúdo","DE.Views.ControlSettingsDialog.textUnchecked":"Símbolo não verificado","DE.Views.ControlSettingsDialog.textUp":"Para cima","DE.Views.ControlSettingsDialog.textValue":"Valor","DE.Views.ControlSettingsDialog.tipChange":"Símbolo de Alterar","DE.Views.ControlSettingsDialog.txtLockDelete":"Controle de conteúdo não pode ser excluído","DE.Views.ControlSettingsDialog.txtLockEdit":"Conteúdo não pode ser editado","DE.Views.ControlSettingsDialog.txtRemContent":"Remova o controle de conteúdo quando o conteúdo for editado","DE.Views.CrossReferenceDialog.textAboveBelow":"Acima/Abaixo","DE.Views.CrossReferenceDialog.textBookmark":"Marcador","DE.Views.CrossReferenceDialog.textBookmarkText":"Marcar texto","DE.Views.CrossReferenceDialog.textCaption":"Título completo","DE.Views.CrossReferenceDialog.textEmpty":"A referência do pedido está vazia.","DE.Views.CrossReferenceDialog.textEndnote":"Nota final","DE.Views.CrossReferenceDialog.textEndNoteNum":"Número de Nota Final","DE.Views.CrossReferenceDialog.textEndNoteNumForm":"Número da nota final (formatado)","DE.Views.CrossReferenceDialog.textEquation":"Equação","DE.Views.CrossReferenceDialog.textFigure":"Figura","DE.Views.CrossReferenceDialog.textFootnote":"Nota de rodapé","DE.Views.CrossReferenceDialog.textHeading":"Título","DE.Views.CrossReferenceDialog.textHeadingNum":"Número do cabeçalho","DE.Views.CrossReferenceDialog.textHeadingNumFull":"Número do cabeçalho (contexto completo)","DE.Views.CrossReferenceDialog.textHeadingNumNo":"Número do cabeçalho (sem contexto)","DE.Views.CrossReferenceDialog.textHeadingText":"Texto do título","DE.Views.CrossReferenceDialog.textIncludeAbove":"Incluir acima/abaixo","DE.Views.CrossReferenceDialog.textInsert":"Inserir","DE.Views.CrossReferenceDialog.textInsertAs":"Inserir como hiperlink","DE.Views.CrossReferenceDialog.textLabelNum":"Apenas etiqueta e número","DE.Views.CrossReferenceDialog.textNoteNum":"Número da nota de rodapé","DE.Views.CrossReferenceDialog.textNoteNumForm":"Número da nota de rodapé (formatado)","DE.Views.CrossReferenceDialog.textOnlyCaption":"Apenas texto de legenda","DE.Views.CrossReferenceDialog.textPageNum":"Número da página","DE.Views.CrossReferenceDialog.textParagraph":"Item numerado","DE.Views.CrossReferenceDialog.textParaNum":"Número do parágrafo","DE.Views.CrossReferenceDialog.textParaNumFull":"Número do parágrafo (contexto completo)","DE.Views.CrossReferenceDialog.textParaNumNo":"Número do parágrafo (sem contexto)","DE.Views.CrossReferenceDialog.textSeparate":"Números separados com","DE.Views.CrossReferenceDialog.textTable":"Tabela","DE.Views.CrossReferenceDialog.textText":"Texto do parágrafo","DE.Views.CrossReferenceDialog.textWhich":"Para qual legenda","DE.Views.CrossReferenceDialog.textWhichBookmark":"Para qual favorito","DE.Views.CrossReferenceDialog.textWhichEndnote":"Para qual nota final","DE.Views.CrossReferenceDialog.textWhichHeading":"Para qual título","DE.Views.CrossReferenceDialog.textWhichNote":"Para qual nota de rodapé","DE.Views.CrossReferenceDialog.textWhichPara":"Para qual item numerado","DE.Views.CrossReferenceDialog.txtReference":"Inserir referência a","DE.Views.CrossReferenceDialog.txtTitle":"Referência cruzada","DE.Views.CrossReferenceDialog.txtType":"Tipo de referência","DE.Views.CustomColumnsDialog.textColumns":"Número de colunas","DE.Views.CustomColumnsDialog.textEqualWidth":"Largura da coluna igual","DE.Views.CustomColumnsDialog.textSeparator":"Divisor de coluna","DE.Views.CustomColumnsDialog.textTitle":"Colunas","DE.Views.CustomColumnsDialog.textTitleSpacing":"Espaçamento","DE.Views.CustomColumnsDialog.textWidth":"Largura","DE.Views.DateTimeDialog.confirmDefault":"Definir formato padrão para {0}: \"{1}\"","DE.Views.DateTimeDialog.textDefault":"Definir como padrão","DE.Views.DateTimeDialog.textFormat":"Formatos","DE.Views.DateTimeDialog.textLang":"Idioma","DE.Views.DateTimeDialog.textUpdate":"Atualizar automaticamente","DE.Views.DateTimeDialog.txtTitle":"Data e hora","DE.Views.DocProtection.hintProtectDoc":"Proteger o Documento","DE.Views.DocProtection.txtDocProtectedComment":"O documento está protegido.
Você só pode inserir comentários neste documento.","DE.Views.DocProtection.txtDocProtectedForms":"O documento está protegido.
Você só pode preencher formulários neste documento.","DE.Views.DocProtection.txtDocProtectedTrack":"O documento está protegido.
Você pode editar este documento, mas todas as alterações serão rastreadas.","DE.Views.DocProtection.txtDocProtectedView":"O documento está protegido.
Você só pode visualizar este documento.","DE.Views.DocProtection.txtDocUnlockDescription":"Digite uma senha para desproteger o documento","DE.Views.DocProtection.txtProtectDoc":"Proteger o documento","DE.Views.DocProtection.txtUnlockTitle":"Desproteger documento","DE.Views.DocumentHolder.aboveText":"Acima","DE.Views.DocumentHolder.addCommentText":"Adicionar comentário","DE.Views.DocumentHolder.advancedDropCapText":"Configurações de letra capitular","DE.Views.DocumentHolder.advancedEquationText":"Definições de equação","DE.Views.DocumentHolder.advancedFrameText":"Configurações avançadas de moldura","DE.Views.DocumentHolder.advancedParagraphText":"Configurações avançadas de parágrafo","DE.Views.DocumentHolder.advancedTableText":"Configurações avançadas de tabela","DE.Views.DocumentHolder.advancedText":"Configurações avançadas","DE.Views.DocumentHolder.AlignBottom":"Inferior","DE.Views.DocumentHolder.AlignCenter":"Centro","DE.Views.DocumentHolder.AlignJust":"Justificar","DE.Views.DocumentHolder.AlignLeft":"Esquerda","DE.Views.DocumentHolder.alignmentText":"Alinhamento","DE.Views.DocumentHolder.AlignMiddle":"Meio","DE.Views.DocumentHolder.AlignRight":"Direita","DE.Views.DocumentHolder.AlignText":"Alinhamento de texto","DE.Views.DocumentHolder.AlignTop":"Parte superior","DE.Views.DocumentHolder.allLinearText":"Tudo - Linear","DE.Views.DocumentHolder.allProfText":"Tudo - Profissional","DE.Views.DocumentHolder.belowText":"Abaixo","DE.Views.DocumentHolder.breakBeforeText":"Quebra de página antes","DE.Views.DocumentHolder.btnChart":"Adicionar, remover ou alterar elementos do gráfico, como título, legenda, linhas de grade e rótulos de dados","DE.Views.DocumentHolder.bulletsText":"Marcadores e numeração","DE.Views.DocumentHolder.cellAlignText":"Alinhamento vertical da célula","DE.Views.DocumentHolder.cellText":"Célula","DE.Views.DocumentHolder.centerText":"Centro","DE.Views.DocumentHolder.chartText":"Configurações avançadas de gráfico","DE.Views.DocumentHolder.columnText":"Coluna","DE.Views.DocumentHolder.currLinearText":"Atual - Linear","DE.Views.DocumentHolder.currProfText":"Atual - Profissional","DE.Views.DocumentHolder.deleteColumnText":"Excluir coluna","DE.Views.DocumentHolder.deleteRowText":"Excluir linha","DE.Views.DocumentHolder.deleteTableText":"Excluir tabela","DE.Views.DocumentHolder.deleteText":"Excluir","DE.Views.DocumentHolder.DepthAxis":"Eixo Z","DE.Views.DocumentHolder.direct270Text":"Girar o texto para cima","DE.Views.DocumentHolder.direct90Text":"Girar o texto para baixo","DE.Views.DocumentHolder.directHText":"Horizontal","DE.Views.DocumentHolder.directionText":"Text Direction","DE.Views.DocumentHolder.editChartText":"Editar dados","DE.Views.DocumentHolder.editFooterText":"Editar rodapé","DE.Views.DocumentHolder.editHeaderText":"Editar cabeçalho","DE.Views.DocumentHolder.editHyperlinkText":"Editar Link","DE.Views.DocumentHolder.eqToDisplayText":"Alterar para exibição","DE.Views.DocumentHolder.eqToInlineText":"Alterar para em linha","DE.Views.DocumentHolder.guestText":"Visitante","DE.Views.DocumentHolder.hideEqToolbar":"Ocultar barra de ferramentas de equação","DE.Views.DocumentHolder.hyperlinkText":"Link","DE.Views.DocumentHolder.ignoreAllSpellText":"Ignorar tudo","DE.Views.DocumentHolder.ignoreSpellText":"Ignorar","DE.Views.DocumentHolder.imageText":"Configurações avançadas de imagem","DE.Views.DocumentHolder.insertColumnLeftText":"Coluna à esquerda","DE.Views.DocumentHolder.insertColumnRightText":"Coluna à direita","DE.Views.DocumentHolder.insertColumnText":"Inserir coluna","DE.Views.DocumentHolder.insertRowAboveText":"Linha acima","DE.Views.DocumentHolder.insertRowBelowText":"Linha abaixo","DE.Views.DocumentHolder.insertRowText":"Inserir linha","DE.Views.DocumentHolder.insertText":"Inserir","DE.Views.DocumentHolder.keepLinesText":"Manter as linhas juntas","DE.Views.DocumentHolder.langText":"Selecionar idioma","DE.Views.DocumentHolder.latexText":"LaTex","DE.Views.DocumentHolder.leftText":"Esquerda","DE.Views.DocumentHolder.loadSpellText":"Carregando variantes...","DE.Views.DocumentHolder.mergeCellsText":"Mesclar células","DE.Views.DocumentHolder.mniImageFromFile":"Imagem do arquivo","DE.Views.DocumentHolder.mniImageFromStorage":"Imagem do armazenamento","DE.Views.DocumentHolder.mniImageFromUrl":"Imagem da URL","DE.Views.DocumentHolder.moreText":"Mais variantes...","DE.Views.DocumentHolder.noSpellVariantsText":"Sem varientes","DE.Views.DocumentHolder.notcriticalErrorTitle":"Aviso","DE.Views.DocumentHolder.originalSizeText":"Tamanho padrão","DE.Views.DocumentHolder.paragraphText":"Parágrafo","DE.Views.DocumentHolder.removeHyperlinkText":"Remover link","DE.Views.DocumentHolder.rightText":"Direita","DE.Views.DocumentHolder.rowText":"Linha","DE.Views.DocumentHolder.saveStyleText":"Criar novo estilo","DE.Views.DocumentHolder.selectCellText":"Selecionar célula","DE.Views.DocumentHolder.selectColumnText":"Selecionar coluna","DE.Views.DocumentHolder.selectRowText":"Selecionar linha","DE.Views.DocumentHolder.selectTableText":"Selecionar tabela","DE.Views.DocumentHolder.selectText":"Selecionar","DE.Views.DocumentHolder.shapeText":"Configurações avançadas de forma","DE.Views.DocumentHolder.showEqToolbar":"Mostrar barra de ferramentas de equação","DE.Views.DocumentHolder.spellcheckText":"Verificação ortográfica","DE.Views.DocumentHolder.splitCellsText":"Dividir célula...","DE.Views.DocumentHolder.splitCellTitleText":"Dividir célula","DE.Views.DocumentHolder.strDelete":"Remover assinatura","DE.Views.DocumentHolder.strDetails":"Detalhes da Assinatura","DE.Views.DocumentHolder.strSetup":"Configuração da Assinatura","DE.Views.DocumentHolder.strSign":"Assinar","DE.Views.DocumentHolder.styleText":"Formatar como Estilo","DE.Views.DocumentHolder.tableText":"Tabela","DE.Views.DocumentHolder.textAccept":"Aceitar alteração","DE.Views.DocumentHolder.textAlign":"Alinhar","DE.Views.DocumentHolder.textArrange":"Organizar","DE.Views.DocumentHolder.textArrangeBack":"Enviar para segundo plano","DE.Views.DocumentHolder.textArrangeBackward":"Enviar para trás","DE.Views.DocumentHolder.textArrangeForward":"Trazer para frente","DE.Views.DocumentHolder.textArrangeFront":"Trazer para primeiro plano","DE.Views.DocumentHolder.textAxes":"Eixos","DE.Views.DocumentHolder.textAxisTitles":"Títulos do Eixo","DE.Views.DocumentHolder.textBottom":"Inferior","DE.Views.DocumentHolder.textCells":"Células","DE.Views.DocumentHolder.textCenter":"Centro","DE.Views.DocumentHolder.textChartTitle":"Título do Gráfico","DE.Views.DocumentHolder.textClearField":"Limpar campo","DE.Views.DocumentHolder.textCol":"Excluir coluna","DE.Views.DocumentHolder.textContentControls":"Controle de conteúdo","DE.Views.DocumentHolder.textContinueNumbering":"Continuar numerando","DE.Views.DocumentHolder.textCopy":"Copiar","DE.Views.DocumentHolder.textCrop":"Cortar","DE.Views.DocumentHolder.textCropFill":"Preencher","DE.Views.DocumentHolder.textCropFit":"Ajustar","DE.Views.DocumentHolder.textCut":"Cortar","DE.Views.DocumentHolder.textDataLabels":"Rótulos de dados","DE.Views.DocumentHolder.textDataTable":"Tabela de Dados","DE.Views.DocumentHolder.textDistributeCols":"Distribuir colunas","DE.Views.DocumentHolder.textDistributeRows":"Distribuir linhas","DE.Views.DocumentHolder.textEditControls":"Propriedades do controle de conteúdo","DE.Views.DocumentHolder.textEditField":"Editar campo","DE.Views.DocumentHolder.textEditObject":"Editar objeto","DE.Views.DocumentHolder.textEditPoints":"Editar pontos","DE.Views.DocumentHolder.textEditWrapBoundary":"Editar limite de disposição","DE.Views.DocumentHolder.textErrorBars":"Barras de erro","DE.Views.DocumentHolder.textExponential":"Exponencial","DE.Views.DocumentHolder.textFieldCodes":"Alternar códigos de campo","DE.Views.DocumentHolder.textFit":"Ajustar largura","DE.Views.DocumentHolder.textFlipH":"Virar horizontalmente","DE.Views.DocumentHolder.textFlipV":"Virar verticalmente","DE.Views.DocumentHolder.textFollow":"Seguir movimento","DE.Views.DocumentHolder.textFromFile":"Do arquivo","DE.Views.DocumentHolder.textFromStorage":"Do armazenamento","DE.Views.DocumentHolder.textFromUrl":"Da URL","DE.Views.DocumentHolder.textGridLines":"Linhas de grade","DE.Views.DocumentHolder.textHorAxis":"Eixo horizontal","DE.Views.DocumentHolder.textHorAxisSec":"Eixo Horizontal Secundário","DE.Views.DocumentHolder.textHorizontalMajor":"Horizontal Maior","DE.Views.DocumentHolder.textHorizontalMinor":"Menor horizontal","DE.Views.DocumentHolder.textIndents":"Ajustar recuos da lista","DE.Views.DocumentHolder.textInnerBottom":"Fundo interno","DE.Views.DocumentHolder.textInnerTop":"Parte superior interna","DE.Views.DocumentHolder.textJoinList":"Junta-se à lista anterior","DE.Views.DocumentHolder.textLeft":"Deslocar células para a esquerda","DE.Views.DocumentHolder.textLeftData":"Esquerda","DE.Views.DocumentHolder.textLeftOverlay":"Sobreposição esquerda","DE.Views.DocumentHolder.textLeftPos":"Esquerda","DE.Views.DocumentHolder.textLegendPos":"Legenda","DE.Views.DocumentHolder.textLinear":"Linear","DE.Views.DocumentHolder.textLinearForecast":"Previsão Linear","DE.Views.DocumentHolder.textLines":"Linhas","DE.Views.DocumentHolder.textMovingAverage":"Média Móvel (2)","DE.Views.DocumentHolder.textNest":"Tabela aninhada","DE.Views.DocumentHolder.textNextPage":"Próxima página","DE.Views.DocumentHolder.textNone":"nenhum","DE.Views.DocumentHolder.textNoOverlay":"Sem sobreposição","DE.Views.DocumentHolder.textNumberingValue":"Valor de numeração","DE.Views.DocumentHolder.textOuterTop":"Fora do topo","DE.Views.DocumentHolder.textOverlay":"Sobreposição","DE.Views.DocumentHolder.textPaste":"Colar","DE.Views.DocumentHolder.textPrevPage":"Página anterior","DE.Views.DocumentHolder.textRedo":"Refazer","DE.Views.DocumentHolder.textRefreshField":"Atualizar o campo","DE.Views.DocumentHolder.textReject":"Rejeitar alteração","DE.Views.DocumentHolder.textRemCheckBox":"Remover caixa de seleção","DE.Views.DocumentHolder.textRemComboBox":"Remover caixa de combinação","DE.Views.DocumentHolder.textRemDropdown":"Remover lista suspensa","DE.Views.DocumentHolder.textRemField":"Remover campo de texto","DE.Views.DocumentHolder.textRemove":"Excluir","DE.Views.DocumentHolder.textRemoveControl":"Remover controle de conteúdo","DE.Views.DocumentHolder.textRemPicture":"Remover imagem","DE.Views.DocumentHolder.textRemRadioBox":"Remover Botão de opção","DE.Views.DocumentHolder.textReplace":"Substituir imagem","DE.Views.DocumentHolder.textResetCrop":"Redefinir colheita","DE.Views.DocumentHolder.textRight":"Direita","DE.Views.DocumentHolder.textRightOverlay":"Sobreposição direita","DE.Views.DocumentHolder.textRotate":"Girar","DE.Views.DocumentHolder.textRotate270":"Girar 90º no sentido anti-horário.","DE.Views.DocumentHolder.textRotate90":"Girar 90º no sentido horário","DE.Views.DocumentHolder.textRow":"Excluir linha","DE.Views.DocumentHolder.textSaveAsPicture":"Salvar como imagem","DE.Views.DocumentHolder.textSeparateList":"Lista separada","DE.Views.DocumentHolder.textSettings":"Configurações","DE.Views.DocumentHolder.textSeveral":"Várias linhas/colunas","DE.Views.DocumentHolder.textShapeAlignBottom":"Alinhar à parte inferior","DE.Views.DocumentHolder.textShapeAlignCenter":"Alinhar ao centro","DE.Views.DocumentHolder.textShapeAlignLeft":"Alinhar à esquerda","DE.Views.DocumentHolder.textShapeAlignMiddle":"Alinhar ao centro","DE.Views.DocumentHolder.textShapeAlignRight":"Alinhar à direita","DE.Views.DocumentHolder.textShapeAlignTop":"Alinhar à parte superior","DE.Views.DocumentHolder.textShapesMerge":"Mesclar formas","DE.Views.DocumentHolder.textShowDataTable":"Mostrar tabela de dados","DE.Views.DocumentHolder.textShowLegendKeys":"Mostrar Chaves de Legenda","DE.Views.DocumentHolder.textShowUpDown":"Barras de exibição para cima/baixo","DE.Views.DocumentHolder.textStandardDeviation":"Desvio Padrão","DE.Views.DocumentHolder.textStandardError":"Erro Padrão","DE.Views.DocumentHolder.textStartNewList":"Começar nova lista","DE.Views.DocumentHolder.textStartNumberingFrom":"Definir valor de numeração","DE.Views.DocumentHolder.textTitleCellsRemove":"Excluir células","DE.Views.DocumentHolder.textTOC":"Tabela de Conteúdo","DE.Views.DocumentHolder.textTOCSettings":"Definições da tabela de conteúdo","DE.Views.DocumentHolder.textTop":"Superior","DE.Views.DocumentHolder.textTrendline":"Linha de tendência","DE.Views.DocumentHolder.textUndo":"Desfazer","DE.Views.DocumentHolder.textUpdateAll":"Atualizar toda a tabela","DE.Views.DocumentHolder.textUpdatePages":"Atualizar somente os números de páginas","DE.Views.DocumentHolder.textUpdateTOC":"Atualizar a tabela de conteúdo","DE.Views.DocumentHolder.textUpDownBars":"Barras para cima/para baixo","DE.Views.DocumentHolder.textVertAxis":"Eixo vertical","DE.Views.DocumentHolder.textVertAxisSec":"Eixo Vertical Secundário","DE.Views.DocumentHolder.textVerticalMajor":"Vertical Maior","DE.Views.DocumentHolder.textVerticalMinor":"Vertical Menor","DE.Views.DocumentHolder.textWrap":"Estilo da quebra automática","DE.Views.DocumentHolder.tipIsLocked":"Este elemento está sendo atualmente editado por outro usuário.","DE.Views.DocumentHolder.toDictionaryText":"Incluir no Dicionário","DE.Views.DocumentHolder.txtAddBottom":"Adicionar borda inferior","DE.Views.DocumentHolder.txtAddFractionBar":"Adicionar barra de fração","DE.Views.DocumentHolder.txtAddHor":"Adicionar linha horizontal","DE.Views.DocumentHolder.txtAddLB":"Adicionar linha inferior esquerda","DE.Views.DocumentHolder.txtAddLeft":"Adicionar borda esquerda","DE.Views.DocumentHolder.txtAddLT":"Adicionar linha superior esquerda","DE.Views.DocumentHolder.txtAddRight":"Adicionar borda direita","DE.Views.DocumentHolder.txtAddTop":"Adicionar borda superior","DE.Views.DocumentHolder.txtAddVer":"Adicionar linha vertical","DE.Views.DocumentHolder.txtAlignToChar":"Alinhar à símbolo","DE.Views.DocumentHolder.txtBehind":"Atrás do texto","DE.Views.DocumentHolder.txtBorderProps":"Propriedades de borda","DE.Views.DocumentHolder.txtBottom":"Inferior","DE.Views.DocumentHolder.txtColumnAlign":"Alinhamento de colunas","DE.Views.DocumentHolder.txtDecreaseArg":"Diminuir tamanho de argumento","DE.Views.DocumentHolder.txtDeleteArg":"Excluir argumento","DE.Views.DocumentHolder.txtDeleteBreak":"Eliminar quebra manual","DE.Views.DocumentHolder.txtDeleteChars":"Excluir caracteres anexos ","DE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Excluir separadores e caracteres anexos","DE.Views.DocumentHolder.txtDeleteEq":"Remover equação","DE.Views.DocumentHolder.txtDeleteGroupChar":"Excluir caractere","DE.Views.DocumentHolder.txtDeleteRadical":"Eliminar radical","DE.Views.DocumentHolder.txtDestEmbed":"Usar tema de destino e incorporar pasta de trabalho","DE.Views.DocumentHolder.txtDestLink":"Usar tema de destino e incorporar pasta de trabalho","DE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","DE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","DE.Views.DocumentHolder.txtEmpty":"(Vazio)","DE.Views.DocumentHolder.txtFractionLinear":"Alterar para fração linear","DE.Views.DocumentHolder.txtFractionSkewed":"Alterar para fração inclinada","DE.Views.DocumentHolder.txtFractionStacked":"Alterar para fração empilhada","DE.Views.DocumentHolder.txtGroup":"Agrupar","DE.Views.DocumentHolder.txtGroupCharOver":"Caractere sobre texto","DE.Views.DocumentHolder.txtGroupCharUnder":"Caractere sob texto","DE.Views.DocumentHolder.txtHideBottom":"Ocultar borda inferior","DE.Views.DocumentHolder.txtHideBottomLimit":"Ocultar limite inferior","DE.Views.DocumentHolder.txtHideCloseBracket":"Ocultar colchete de fechamento","DE.Views.DocumentHolder.txtHideDegree":"Ocultar grau","DE.Views.DocumentHolder.txtHideHor":"Ocultar linha horizontal","DE.Views.DocumentHolder.txtHideLB":"Ocultar linha inferior esquerda","DE.Views.DocumentHolder.txtHideLeft":"Ocultar borda esquerda","DE.Views.DocumentHolder.txtHideLT":"Ocultar linha superior esquerda","DE.Views.DocumentHolder.txtHideOpenBracket":"Ocultar colchete de abertura","DE.Views.DocumentHolder.txtHidePlaceholder":"Ocultar espaço reservado","DE.Views.DocumentHolder.txtHideRight":"Ocultar borda direita","DE.Views.DocumentHolder.txtHideTop":"Ocultar borda superior","DE.Views.DocumentHolder.txtHideTopLimit":"Ocultar limite superior","DE.Views.DocumentHolder.txtHideVer":"Ocultar linha vertical","DE.Views.DocumentHolder.txtIncreaseArg":"Aumentar o tamanho do argumento","DE.Views.DocumentHolder.txtInFront":"Em frente","DE.Views.DocumentHolder.txtInline":"Alinhado com o Texto","DE.Views.DocumentHolder.txtInsertArgAfter":"Inserir argumento após","DE.Views.DocumentHolder.txtInsertArgBefore":"Inserir argumento antes","DE.Views.DocumentHolder.txtInsertBreak":"Inserir quebra manual","DE.Views.DocumentHolder.txtInsertCaption":"Inserir Legenda","DE.Views.DocumentHolder.txtInsertEqAfter":"Inserir equação a seguir","DE.Views.DocumentHolder.txtInsertEqBefore":"Inserir equação à frente","DE.Views.DocumentHolder.txtInsImage":"Inserir imagem do arquivo","DE.Views.DocumentHolder.txtInsImageUrl":"Inserir imagem da URL","DE.Views.DocumentHolder.txtKeepTextOnly":"Manter apenas texto","DE.Views.DocumentHolder.txtLimitChange":"Alterar localização de limites","DE.Views.DocumentHolder.txtLimitOver":"Limite sobre o texto","DE.Views.DocumentHolder.txtLimitUnder":"Limite sob o texto","DE.Views.DocumentHolder.txtMatchBrackets":"Combinar parênteses com a altura do argumento","DE.Views.DocumentHolder.txtMatrixAlign":"Alinhamento de matriz","DE.Views.DocumentHolder.txtOverbar":"Barra sobre texto","DE.Views.DocumentHolder.txtOverwriteCells":"Sobrescrever células","DE.Views.DocumentHolder.txtPastePicture":"Imagem","DE.Views.DocumentHolder.txtPasteSourceFormat":"Manter formatação da origem","DE.Views.DocumentHolder.txtPercentage":"Porcentagem","DE.Views.DocumentHolder.txtPressLink":"Pressione {0} e clique no link","DE.Views.DocumentHolder.txtPrintSelection":"Imprimir seleção","DE.Views.DocumentHolder.txtRemFractionBar":"Remover barra de fração","DE.Views.DocumentHolder.txtRemLimit":"Remover limite","DE.Views.DocumentHolder.txtRemoveAccentChar":"Remover caractere de acento","DE.Views.DocumentHolder.txtRemoveBar":"Excluir barra","DE.Views.DocumentHolder.txtRemoveWarning":"Você quer remover esta assinatura?
Isso não pode ser desfeito.","DE.Views.DocumentHolder.txtRemScripts":"Remover scripts","DE.Views.DocumentHolder.txtRemSubscript":"Remover subscrito","DE.Views.DocumentHolder.txtRemSuperscript":"Remover sobrescrito","DE.Views.DocumentHolder.txtScriptsAfter":"Scripts após o texto","DE.Views.DocumentHolder.txtScriptsBefore":"Scripts antes do texto","DE.Views.DocumentHolder.txtShowBottomLimit":"Mostrar limite inferior","DE.Views.DocumentHolder.txtShowCloseBracket":"Mostrar encerramento dos colchetes","DE.Views.DocumentHolder.txtShowDegree":"Mostrar grau","DE.Views.DocumentHolder.txtShowOpenBracket":"Mostrar abertura dos colchetes","DE.Views.DocumentHolder.txtShowPlaceholder":"Mostrar espaço reservado","DE.Views.DocumentHolder.txtShowTopLimit":"Mostrar limite superior","DE.Views.DocumentHolder.txtSourceEmbed":"Manter formatação de origem e incorporar pasta de trabalho","DE.Views.DocumentHolder.txtSourceLink":"Manter formatação de origem e vincular dados","DE.Views.DocumentHolder.txtSquare":"Quadrado","DE.Views.DocumentHolder.txtStretchBrackets":"Esticar colchetes","DE.Views.DocumentHolder.txtThrough":"Através","DE.Views.DocumentHolder.txtTight":"Justo","DE.Views.DocumentHolder.txtTop":"Parte superior","DE.Views.DocumentHolder.txtTopAndBottom":"Parte superior e inferior","DE.Views.DocumentHolder.txtUnderbar":"Barra abaixo de texto","DE.Views.DocumentHolder.txtUngroup":"Desagrupar","DE.Views.DocumentHolder.txtWarnUrl":"Clicar neste link pode ser prejudicial ao seu dispositivo e aos seus dados. Para proteger seu computador, clique apenas em hiperlinks de fontes confiáveis. Este local pode não ser seguro:

{0}

Tem certeza de que deseja continuar?","DE.Views.DocumentHolder.unicodeText":"Unicode","DE.Views.DocumentHolder.updateStyleText":"Update %1 style","DE.Views.DocumentHolder.vertAlignText":"Alinhamento vertical","DE.Views.DropcapSettingsAdvanced.strBorders":"Bordas e preenchimento","DE.Views.DropcapSettingsAdvanced.strDropcap":"Letra capitular","DE.Views.DropcapSettingsAdvanced.strMargins":"Margens","DE.Views.DropcapSettingsAdvanced.textAlign":"Alinhamento","DE.Views.DropcapSettingsAdvanced.textAtLeast":"Pelo menos","DE.Views.DropcapSettingsAdvanced.textAuto":"Automático","DE.Views.DropcapSettingsAdvanced.textBackColor":"Cor de fundo","DE.Views.DropcapSettingsAdvanced.textBorderColor":"Cor da borda","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"Clique no diagrama ou use os botões para selecionar bordas","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"Tamanho da borda","DE.Views.DropcapSettingsAdvanced.textBottom":"Inferior","DE.Views.DropcapSettingsAdvanced.textCenter":"Centro","DE.Views.DropcapSettingsAdvanced.textColumn":"Coluna","DE.Views.DropcapSettingsAdvanced.textDistance":"Distância do texto","DE.Views.DropcapSettingsAdvanced.textExact":"Exatamente","DE.Views.DropcapSettingsAdvanced.textFlow":"Estrutura de fluxo","DE.Views.DropcapSettingsAdvanced.textFont":"Fonte","DE.Views.DropcapSettingsAdvanced.textFrame":"Moldura","DE.Views.DropcapSettingsAdvanced.textHeight":"Altura","DE.Views.DropcapSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.DropcapSettingsAdvanced.textInline":"Moldura embutida","DE.Views.DropcapSettingsAdvanced.textInMargin":"Na margem","DE.Views.DropcapSettingsAdvanced.textInText":"No texto","DE.Views.DropcapSettingsAdvanced.textLeft":"Esquerda","DE.Views.DropcapSettingsAdvanced.textMargin":"Margem","DE.Views.DropcapSettingsAdvanced.textMove":"Mover com texto","DE.Views.DropcapSettingsAdvanced.textNone":"Nenhum","DE.Views.DropcapSettingsAdvanced.textPage":"Página","DE.Views.DropcapSettingsAdvanced.textParagraph":"Parágrafo","DE.Views.DropcapSettingsAdvanced.textParameters":"Parâmetros","DE.Views.DropcapSettingsAdvanced.textPosition":"Posição","DE.Views.DropcapSettingsAdvanced.textRelative":"Relativo para","DE.Views.DropcapSettingsAdvanced.textRight":"Direita","DE.Views.DropcapSettingsAdvanced.textRowHeight":"Altura em linhas","DE.Views.DropcapSettingsAdvanced.textTitle":"Capitular - configurações avançadas","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"Moldura - Configurações avançadas","DE.Views.DropcapSettingsAdvanced.textTop":"Parte superior","DE.Views.DropcapSettingsAdvanced.textVertical":"Vertical","DE.Views.DropcapSettingsAdvanced.textWidth":"Largura","DE.Views.DropcapSettingsAdvanced.tipFontName":"Fonte","DE.Views.EditListItemDialog.textDisplayName":"Nome de exibição","DE.Views.EditListItemDialog.textNameError":"O nome de exibição não deve estar vazio.","DE.Views.EditListItemDialog.textValue":"Valor","DE.Views.EditListItemDialog.textValueError":"Um item com o mesmo valor já existe.","DE.Views.FileMenu.ariaFileMenu":"Menu Arquivo","DE.Views.FileMenu.btnBackCaption":"Abrir Local do Arquivo","DE.Views.FileMenu.btnCloseEditor":"Fechar Arquivo","DE.Views.FileMenu.btnCloseMenuCaption":"Fechar menu","DE.Views.FileMenu.btnCreateNewCaption":"Criar novo","DE.Views.FileMenu.btnDownloadCaption":"Baixar em","DE.Views.FileMenu.btnExitCaption":"Fechar","DE.Views.FileMenu.btnFileOpenCaption":"Abrir","DE.Views.FileMenu.btnHelpCaption":"Ajuda","DE.Views.FileMenu.btnHistoryCaption":"Histórico de versão","DE.Views.FileMenu.btnInfoCaption":"Informações do documento","DE.Views.FileMenu.btnPrintCaption":"Imprimir","DE.Views.FileMenu.btnProtectCaption":"Proteger","DE.Views.FileMenu.btnRecentFilesCaption":"Abrir recente","DE.Views.FileMenu.btnRenameCaption":"Renomear","DE.Views.FileMenu.btnReturnCaption":"Voltar para documento","DE.Views.FileMenu.btnRightsCaption":"Direitos de Acesso","DE.Views.FileMenu.btnSaveAsCaption":"Salvar Como","DE.Views.FileMenu.btnSaveCaption":"Salvar","DE.Views.FileMenu.btnSaveCopyAsCaption":"Salvar Cópia Em","DE.Views.FileMenu.btnSettingsCaption":"Configurações avançadas","DE.Views.FileMenu.btnSuggestCaption":"Sugira um recurso","DE.Views.FileMenu.btnSwitchToMobileCaption":"Mudar para o celular","DE.Views.FileMenu.btnToEditCaption":"Editar documento","DE.Views.FileMenu.textDownload":"Baixar","DE.Views.FileMenuPanels.CreateNew.txtBlank":"Documento em branco","DE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Criar novo","DE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Adicionar Autor","DE.Views.FileMenuPanels.DocumentInfo.txtAddProperty":"Adicionar propriedade","DE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Adicionar Texto","DE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicativo","DE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Alterar direitos de acesso","DE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentário","DE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comum","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Criado","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Informações do Documento","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"Propriedade do documento","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Visualização rápida da Web","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Carregando...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última modificação por","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificação","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"Não","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Proprietário","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"Páginas","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Tamanho da página","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Parágrafos","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"Produtor de PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF marcado","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"Versão PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Localização","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"Propriedades","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"A propriedade com esse título já existe","DE.Views.FileMenuPanels.DocumentInfo.txtRights":"Pessoas que têm direitos","DE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Caracteres com espaços","DE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Estatísticas","DE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Assunto","DE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Caracteres","DE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título do documento","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Carregado","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"Palavras","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"Sim","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Direitos de acesso","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Alterar direitos de acesso","DE.Views.FileMenuPanels.DocumentRights.txtRights":"Pessoas que têm direitos","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"Aviso","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Com senha","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger o documento","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"Com assinatura","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Assinaturas válidas foram adicionadas ao documento.
O documento está protegido contra edição.","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garanta a integridade do documento adicionando uma assinatura digital invisível","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar documento","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"Editar excluirá as assinaturas do documento.
Deseja continuar?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Este documento foi protegido com senha.","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Criptografar este documento com uma senha","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"O documento deve ser assinado.","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Assinaturas válidas foram adicionadas ao documento. O documento está protegido contra edição.","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algumas das assinaturas digitais no documento estão inválidas ou não puderam ser verificadas. O documento está protegido para edição.","DE.Views.FileMenuPanels.ProtectDoc.txtView":"Visualizar assinaturas","DE.Views.FileMenuPanels.Settings.okButtonText":"Aplicar","DE.Views.FileMenuPanels.Settings.strChinese":"Chinês","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modo de coedição","DE.Views.FileMenuPanels.Settings.strDocContent":"Conteúdo do documento","DE.Views.FileMenuPanels.Settings.strFast":"Rápido","DE.Views.FileMenuPanels.Settings.strFontRender":"Dicas de fonte","DE.Views.FileMenuPanels.Settings.strFontSizeType":"Use o primeiro na lista de tamanhos de fonte","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"Ignorar palavras em MAIÚSCULAS","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"Ignorar palavras com números","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Atalhos de teclado","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"Configurações de macros","DE.Views.FileMenuPanels.Settings.strNumeral":"Numeral","DE.Views.FileMenuPanels.Settings.strPasteButton":"Mostrar o botão Opções de colagem quando o conteúdo for colado","DE.Views.FileMenuPanels.Settings.strRTLSupport":"Interface RTL","DE.Views.FileMenuPanels.Settings.strShowChanges":"Alterações de colaboração em tempo real","DE.Views.FileMenuPanels.Settings.strShowComments":"Mostrar comentários em texto","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Mostrar alterações de outros usuários","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Mostrar comentários resolvidos","DE.Views.FileMenuPanels.Settings.strStrict":"Estrito","DE.Views.FileMenuPanels.Settings.strTabStyle":"Estilo da guia","DE.Views.FileMenuPanels.Settings.strTheme":"Tema de interface","DE.Views.FileMenuPanels.Settings.strUnit":"Unidade de medida","DE.Views.FileMenuPanels.Settings.strWestern":"Ocidental","DE.Views.FileMenuPanels.Settings.strZoom":"Valor de zoom padrão","DE.Views.FileMenuPanels.Settings.text10Minutes":"Cada 10 minutos","DE.Views.FileMenuPanels.Settings.text30Minutes":"Cada 30 minutos","DE.Views.FileMenuPanels.Settings.text5Minutes":"Cada 5 minutos","DE.Views.FileMenuPanels.Settings.text60Minutes":"Cada hora","DE.Views.FileMenuPanels.Settings.textAlignGuides":"Guias de alinhamento","DE.Views.FileMenuPanels.Settings.textAutoRecover":"Recuperação automática","DE.Views.FileMenuPanels.Settings.textAutoSave":"Salvamento automático","DE.Views.FileMenuPanels.Settings.textDisabled":"Desabilitado","DE.Views.FileMenuPanels.Settings.textFill":"Preencher","DE.Views.FileMenuPanels.Settings.textForceSave":"Salvar para servidor","DE.Views.FileMenuPanels.Settings.textLine":"Linha","DE.Views.FileMenuPanels.Settings.textMinute":"Cada minuto","DE.Views.FileMenuPanels.Settings.textOldVersions":"Tornar compatível com versão antiga do MS Word quando gravar como DOCX.","DE.Views.FileMenuPanels.Settings.textSmartSelection":"Use a seleção de parágrafo inteligente","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Configurações avançadas","DE.Views.FileMenuPanels.Settings.txtAll":"Visualizar todos","DE.Views.FileMenuPanels.Settings.txtAppearance":"Aparência","DE.Views.FileMenuPanels.Settings.txtArabic":"Árabe","DE.Views.FileMenuPanels.Settings.txtAutoCorrect":"Opções de autocorreção...","DE.Views.FileMenuPanels.Settings.txtCacheMode":"Modo de cache padrão","DE.Views.FileMenuPanels.Settings.txtChangesBalloons":"Mostrar por clique em balões","DE.Views.FileMenuPanels.Settings.txtChangesTip":"Mostrar com a ponta de ferramentas","DE.Views.FileMenuPanels.Settings.txtCm":"Centímetro","DE.Views.FileMenuPanels.Settings.txtCollaboration":"Colaboração","DE.Views.FileMenuPanels.Settings.txtContext":"Contexto","DE.Views.FileMenuPanels.Settings.txtCustomize":"Customizar","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Personalize o acesso rápido","DE.Views.FileMenuPanels.Settings.txtDarkMode":"Ativar modo escuro de documento","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"Editando e salvando","DE.Views.FileMenuPanels.Settings.txtFastTip":"Co-edição em tempo real. Todas as alterações são salvas automaticamente","DE.Views.FileMenuPanels.Settings.txtFitPage":"Ajustar à página","DE.Views.FileMenuPanels.Settings.txtFitWidth":"Ajustar à largura","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Hieróglifos","DE.Views.FileMenuPanels.Settings.txtHindi":"Hindi","DE.Views.FileMenuPanels.Settings.txtInch":"Polegada","DE.Views.FileMenuPanels.Settings.txtLast":"Visualizar último","DE.Views.FileMenuPanels.Settings.txtLastUsed":"Usado por último","DE.Views.FileMenuPanels.Settings.txtMac":"como SO X","DE.Views.FileMenuPanels.Settings.txtNative":"Nativo","DE.Views.FileMenuPanels.Settings.txtNone":"Visualizar nenhum","DE.Views.FileMenuPanels.Settings.txtProofing":"Revisão","DE.Views.FileMenuPanels.Settings.txtPt":"Ponto","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"Mostrar o botão Impressão rápida no cabeçalho do editor","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"O documento será impresso na última impressora selecionada ou padrão","DE.Views.FileMenuPanels.Settings.txtRunMacros":"Habilitar todos","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"Habilitar todas as macros sem uma notificação","DE.Views.FileMenuPanels.Settings.txtScreenReader":"Habilitar o suporte ao leitor de tela","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"Mostrar alterações de faixa","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"Verificação ortográfica","DE.Views.FileMenuPanels.Settings.txtStopMacros":"Desabilitar tudo","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"Desativar todas as macros sem uma notificação","DE.Views.FileMenuPanels.Settings.txtStrictTip":"Use o botão \"Salvar\" para sincronizar as alterações que você e outras pessoas fazem","DE.Views.FileMenuPanels.Settings.txtTabBack":"Usar a cor da barra de ferramentas como plano de fundo das guias","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"Use a tecla Alt para navegar na interface do usuário usando o teclado","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Use a tecla Option para navegar na interface do usuário usando o teclado","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"Mostrar notificação","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"Desativar todas as macros com uma notificação","DE.Views.FileMenuPanels.Settings.txtWin":"como Windows","DE.Views.FileMenuPanels.Settings.txtWorkspace":"Área de trabalho","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Baixar como","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Salvar cópia em","DE.Views.FormSettings.textAddRole":"Adicionar destinatário","DE.Views.FormSettings.textAlways":"Sempre","DE.Views.FormSettings.textAnyone":"Alguém","DE.Views.FormSettings.textAspect":"Bloquear proporção","DE.Views.FormSettings.textAtLeast":"Pelo menos","DE.Views.FormSettings.textAuto":"Automático","DE.Views.FormSettings.textAutofit":"Ajuste automático","DE.Views.FormSettings.textBackgroundColor":"Cor do plano de fundo","DE.Views.FormSettings.textCheckbox":"Caixa de seleção","DE.Views.FormSettings.textCheckDefault":"A caixa de seleção está marcada por padrão","DE.Views.FormSettings.textColor":"Cor da borda","DE.Views.FormSettings.textComb":"Conjunto de caracteres","DE.Views.FormSettings.textCombobox":"Caixa de combinação","DE.Views.FormSettings.textComplex":"Campo complexo","DE.Views.FormSettings.textConnected":"Campos conectados","DE.Views.FormSettings.textCreditCard":"Número do cartão de crédito (por exemplo, 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"Campo de data e hora","DE.Views.FormSettings.textDateFormat":"Mostra a data assim","DE.Views.FormSettings.textDefValue":"Valor padrão","DE.Views.FormSettings.textDelete":"Excluir","DE.Views.FormSettings.textDigits":"Dígitos","DE.Views.FormSettings.textDisconnect":"Desconectar","DE.Views.FormSettings.textDropDown":"Suspenso","DE.Views.FormSettings.textExact":"Exatamente","DE.Views.FormSettings.textField":"Campo de texto","DE.Views.FormSettings.textFillRoles":"Quem precisa preencher isso?","DE.Views.FormSettings.textFixed":"Campo de tamanho fixo","DE.Views.FormSettings.textFormat":"Formato","DE.Views.FormSettings.textFormatSymbols":"Símbolos permitidos","DE.Views.FormSettings.textFromFile":"Do arquivo","DE.Views.FormSettings.textFromStorage":"Do armazenamento","DE.Views.FormSettings.textFromUrl":"Da URL","DE.Views.FormSettings.textGroupKey":"Chave de grupo","DE.Views.FormSettings.textImage":"Imagem","DE.Views.FormSettings.textKey":"Chave","DE.Views.FormSettings.textLabel":"Etiqueta","DE.Views.FormSettings.textLang":"Idioma","DE.Views.FormSettings.textLetters":"Cartas","DE.Views.FormSettings.textLock":"Bloquear","DE.Views.FormSettings.textMask":"Máscara arbitrária","DE.Views.FormSettings.textMaxChars":"Limite de caracteres","DE.Views.FormSettings.textMulti":"Campo multilinha","DE.Views.FormSettings.textNever":"Nunca","DE.Views.FormSettings.textNoBorder":"Sem limite","DE.Views.FormSettings.textNone":"Nenhum","DE.Views.FormSettings.textPhone1":"Número de telefone (por exemplo, (123) 456-7890)","DE.Views.FormSettings.textPhone2":"Número de telefone (por exemplo, +447911123456)","DE.Views.FormSettings.textPlaceholder":"Marcador de posição","DE.Views.FormSettings.textRadiobox":"Botão de opção","DE.Views.FormSettings.textRadioChoice":"Escolha do botão de opção","DE.Views.FormSettings.textRadioDefault":"O botão é marcado por padrão","DE.Views.FormSettings.textReg":"Expressão regular","DE.Views.FormSettings.textRequired":"Necessário","DE.Views.FormSettings.textScale":"Quando escalar","DE.Views.FormSettings.textSelectImage":"Selecionar Imagem","DE.Views.FormSettings.textSignature":"Assinatura","DE.Views.FormSettings.textTag":"Etiqueta","DE.Views.FormSettings.textTip":"Dica","DE.Views.FormSettings.textTipAdd":"Adicionar novo valor","DE.Views.FormSettings.textTipDelete":"Excluir valor","DE.Views.FormSettings.textTipDown":"Mover para baixo","DE.Views.FormSettings.textTipUp":"Mover para cima","DE.Views.FormSettings.textTooBig":"A imagem é grande demais","DE.Views.FormSettings.textTooSmall":"A imagem é pequena demais","DE.Views.FormSettings.textUKPassport":"Número do passaporte do Reino Unido (por exemplo, 925665416)","DE.Views.FormSettings.textUnlock":"Desbloquear","DE.Views.FormSettings.textUSSSN":"SSN dos EUA (por exemplo, 123-45-6789)","DE.Views.FormSettings.textValue":"Opções de valor","DE.Views.FormSettings.textWidth":"Largura da célula","DE.Views.FormSettings.textZipCodeUS":"Código postal dos EUA (por exemplo, 92663 ou 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"Caixa de seleção","DE.Views.FormsTab.capBtnComboBox":"Caixa de combinação","DE.Views.FormsTab.capBtnComplex":"Campo complexo","DE.Views.FormsTab.capBtnDownloadForm":"Baixe em pdf","DE.Views.FormsTab.capBtnDropDown":"Suspenso","DE.Views.FormsTab.capBtnEmail":"Endereço de e-mail","DE.Views.FormsTab.capBtnFinal":"Marcar como final","DE.Views.FormsTab.capBtnImage":"Imagem","DE.Views.FormsTab.capBtnManager":"Gerenciar funções de destinatários","DE.Views.FormsTab.capBtnNext":"Próximo campo","DE.Views.FormsTab.capBtnPhone":"Número de telefone","DE.Views.FormsTab.capBtnPrev":"Campo anterior","DE.Views.FormsTab.capBtnRadioBox":"Botao de radio","DE.Views.FormsTab.capBtnSaveForm":"Salvar Em PDF","DE.Views.FormsTab.capBtnSaveFormDesktop":"Salvar como...","DE.Views.FormsTab.capBtnSignature":"Assinatura","DE.Views.FormsTab.capBtnSubmit":"Enviar","DE.Views.FormsTab.capBtnText":"Campo de texto","DE.Views.FormsTab.capBtnView":"Pré-visualização","DE.Views.FormsTab.capCreditCard":"Cartão de crédito","DE.Views.FormsTab.capDateTime":"Data e Hora","DE.Views.FormsTab.capZipCode":"CEP","DE.Views.FormsTab.helpTextFillStatus":"Este formulário está pronto para preenchimento baseado em função. Clique no botão de status para verificar o estágio de preenchimento.","DE.Views.FormsTab.textAddRole":"Adicionar destinatário","DE.Views.FormsTab.textAnyone":"Alguém","DE.Views.FormsTab.textClear":"Limpar campos.","DE.Views.FormsTab.textClearFields":"Limpar todos os campos","DE.Views.FormsTab.textCreateForm":"Adicione campos e crie um documento PDF preenchível","DE.Views.FormsTab.textFilled":"Preenchido","DE.Views.FormsTab.textFillFor":"Inserir campos para","DE.Views.FormsTab.textGotIt":"Entendi","DE.Views.FormsTab.textHighlight":"Configurações de destaque","DE.Views.FormsTab.textNoHighlight":"Sem destaque","DE.Views.FormsTab.textRequired":"Para enviar o formulário, você deve preencher todos os campos obrigatórios","DE.Views.FormsTab.textSubmited":"Formulário enviado com sucesso","DE.Views.FormsTab.textSubmitOk":"Seu formulário PDF foi salvo na seção Completo.","DE.Views.FormsTab.tipCheckBox":"Inserir caixa de seleção","DE.Views.FormsTab.tipComboBox":"Inserir caixa de combinação","DE.Views.FormsTab.tipComplexField":"Inserir campo complexo","DE.Views.FormsTab.tipCreateField":"Para criar um campo selecione o tipo de campo desejado na barra de ferramentas e clique nele. O campo aparecerá no documento.","DE.Views.FormsTab.tipCreditCard":"Inserir número de cartão de crédito","DE.Views.FormsTab.tipDateTime":"Inserir data e hora","DE.Views.FormsTab.tipDownloadForm":"Baixar um arquivo como um documento PDF preenchível","DE.Views.FormsTab.tipDropDown":"Inserir lista suspensa","DE.Views.FormsTab.tipEmailField":"Inserir endereço de e-mail","DE.Views.FormsTab.tipFieldSettings":"Você pode configurar os campos selecionados na barra lateral direita. Clique neste ícone para abrir as configurações do campo.","DE.Views.FormsTab.tipFieldsLink":"Saiba mais sobre parâmetros de campo","DE.Views.FormsTab.tipFinalForm":"Marcar como final","DE.Views.FormsTab.tipFirstPage":"Vá para a primeira página","DE.Views.FormsTab.tipFixedText":"Inserir campo de texto fixo","DE.Views.FormsTab.tipFormGroupKey":"Agrupe botões de opção para agilizar o processo de preenchimento. As escolhas com os mesmos nomes serão sincronizadas. Os usuários só podem marcar um botão de opção do grupo.","DE.Views.FormsTab.tipFormKey":"Você pode atribuir uma chave a um campo ou grupo de campos. Quando um usuário preencher os dados, eles serão copiados para todos os campos com a mesma chave.","DE.Views.FormsTab.tipHelpRoles":"Use o recurso Gerenciar Destinatários para agrupar campos por finalidade e atribuir os membros responsáveis ​​da equipe.","DE.Views.FormsTab.tipImageField":"Inserir imagem","DE.Views.FormsTab.tipInlineText":"Inserir campo de texto embutido","DE.Views.FormsTab.tipLastPage":"Ir para a última página","DE.Views.FormsTab.tipManager":"Gerenciar funções de destinatários","DE.Views.FormsTab.tipNextForm":"Ir para o próximo campo","DE.Views.FormsTab.tipNextPage":"Vá para a página seguinte","DE.Views.FormsTab.tipPhoneField":"Inserir número de telefone","DE.Views.FormsTab.tipPrevForm":"Ir para o campo anterior","DE.Views.FormsTab.tipPrevPage":"Ir para a página anterior","DE.Views.FormsTab.tipRadioBox":"Inserir botão de rádio","DE.Views.FormsTab.tipRolesLink":"Saiba mais sobre os destinatários","DE.Views.FormsTab.tipSaveFile":"Clique em “Salvar como pdf” para salvar o formulário no formato pronto para preenchimento.","DE.Views.FormsTab.tipSaveForm":"Salvar um arquivo como um documento PDF preenchível","DE.Views.FormsTab.tipSignField":"Inserir campo de assinatura","DE.Views.FormsTab.tipSubmit":"Enviar para","DE.Views.FormsTab.tipTextField":"Inserir campo de texto","DE.Views.FormsTab.tipViewForm":"Pré-visualização","DE.Views.FormsTab.tipZipCode":"Inserir código postal","DE.Views.FormsTab.txtFixedDesc":"Inserir campo de texto fixo","DE.Views.FormsTab.txtFixedText":"Fixo","DE.Views.FormsTab.txtInlineDesc":"Inserir campo de texto embutido","DE.Views.FormsTab.txtInlineText":"Em linha","DE.Views.FormsTab.txtSignedForm":"Este documento foi assinado e não pode ser editado.","DE.Views.FormsTab.txtUntitled":"Sem título","DE.Views.HeaderFooterSettings.textBottomCenter":"Centro inferior","DE.Views.HeaderFooterSettings.textBottomLeft":"Esquerda inferior","DE.Views.HeaderFooterSettings.textBottomPage":"Final da página","DE.Views.HeaderFooterSettings.textBottomRight":"Direita inferior","DE.Views.HeaderFooterSettings.textDiffFirst":"Primeira página diferente","DE.Views.HeaderFooterSettings.textDiffOdd":"Páginas pares e ímpares diferentes","DE.Views.HeaderFooterSettings.textFrom":"Começar em","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"Rodapé abaixo","DE.Views.HeaderFooterSettings.textHeaderFromTop":"Cabeçalho no início","DE.Views.HeaderFooterSettings.textInsertCurrent":"Inserir na posição atual ","DE.Views.HeaderFooterSettings.textNumFormat":"Formato de número","DE.Views.HeaderFooterSettings.textOptions":"Opções","DE.Views.HeaderFooterSettings.textPageNum":"Inserir número da página","DE.Views.HeaderFooterSettings.textPageNumbering":"Numeração de página","DE.Views.HeaderFooterSettings.textPosition":"Posição","DE.Views.HeaderFooterSettings.textPrev":"Continuar da seção anterior","DE.Views.HeaderFooterSettings.textSameAs":"Vincular a Anterior","DE.Views.HeaderFooterSettings.textTopCenter":"Superior central","DE.Views.HeaderFooterSettings.textTopLeft":"Superior esquerdo","DE.Views.HeaderFooterSettings.textTopPage":"Topo da página","DE.Views.HeaderFooterSettings.textTopRight":"Superior direito","DE.Views.HeaderFooterSettings.txtMoreTypes":"Mais tipos","DE.Views.HeaderFooterTab.capBtnDateTime":"Data e Hora","DE.Views.HeaderFooterTab.capBtnInsField":"Campo","DE.Views.HeaderFooterTab.capBtnInsImage":"Imagem","DE.Views.HeaderFooterTab.capCurrentPos":"Para posição atual","DE.Views.HeaderFooterTab.capFooterBottom":"Rodapé a partir da parte inferior","DE.Views.HeaderFooterTab.capFormatNums":"Numeração da página","DE.Views.HeaderFooterTab.capHeaderTop":"Cabeçalho no início","DE.Views.HeaderFooterTab.capNumOfPages":"Número de páginas","DE.Views.HeaderFooterTab.mniImageFromFile":"Imagem do arquivo","DE.Views.HeaderFooterTab.mniImageFromStorage":"Imagem do armazenamento","DE.Views.HeaderFooterTab.mniImageFromUrl":"Imagem da URL","DE.Views.HeaderFooterTab.tipCloseTab":"Fechar aba","DE.Views.HeaderFooterTab.tipDateTime":"Insira a data e hora atuais","DE.Views.HeaderFooterTab.tipHeaderFooter":"Editar cabeçalho e rodapé","DE.Views.HeaderFooterTab.tipInsertImage":"Inserir imagem","DE.Views.HeaderFooterTab.tipInsField":"Inserir campo","DE.Views.HeaderFooterTab.tipNumOfPages":"Número de páginas","DE.Views.HeaderFooterTab.tipPageNumbering":"Numeração da página","DE.Views.HeaderFooterTab.txtCloseTab":"Fechar","DE.Views.HeaderFooterTab.txtDiffFirst":"Primeira página diferente","DE.Views.HeaderFooterTab.txtDiffOddEven":"Páginas pares e ímpares diferentes","DE.Views.HeaderFooterTab.txtEditFooter":"Editar rodapé","DE.Views.HeaderFooterTab.txtEditHeader":"Editar cabeçalho","DE.Views.HeaderFooterTab.txtHeaderFooter":"Cabeçalho/rodapé","DE.Views.HeaderFooterTab.txtPageNumbering":"Número da página","DE.Views.HeaderFooterTab.txtRemoveFooter":"Remover rodapé","DE.Views.HeaderFooterTab.txtRemoveHeader":"Remover cabeçalho","DE.Views.HeaderFooterTab.txtSameAs":"Vincular a Anterior","DE.Views.HyperlinkSettingsDialog.textDefault":"Fragmento de texto selecionado","DE.Views.HyperlinkSettingsDialog.textDisplay":"Exibir","DE.Views.HyperlinkSettingsDialog.textExternal":"Link externo","DE.Views.HyperlinkSettingsDialog.textInternal":"Colocar no documento","DE.Views.HyperlinkSettingsDialog.textSelectFile":"Selecionar arquivo","DE.Views.HyperlinkSettingsDialog.textTitle":"Configurações de link","DE.Views.HyperlinkSettingsDialog.textTooltip":"Texto da dica de tela","DE.Views.HyperlinkSettingsDialog.textUrl":"Vincular a","DE.Views.HyperlinkSettingsDialog.txtBeginning":"Início do documento","DE.Views.HyperlinkSettingsDialog.txtBookmarks":"Favoritos","DE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo é obrigatório","DE.Views.HyperlinkSettingsDialog.txtHeadings":"Títulos","DE.Views.HyperlinkSettingsDialog.txtNotUrl":"Este campo deve ser uma URL no formato \"http://www.example.com\"","DE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo é limitado a 2083 caracteres. ","DE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Digite o endereço da web ou selecione um arquivo","DE.Views.HyphenationDialog.textAuto":"Hifenizar documento automaticamente","DE.Views.HyphenationDialog.textCaps":"Hifenizar palavras em CAPS","DE.Views.HyphenationDialog.textLimit":"Limitar hífens consecutivos a","DE.Views.HyphenationDialog.textNoLimit":"Sem limite","DE.Views.HyphenationDialog.textTitle":"Hifenização","DE.Views.HyphenationDialog.textZone":"Zona de hifenização","DE.Views.ImageSettings.strTransparency":"Opacidade","DE.Views.ImageSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.ImageSettings.textCrop":"Cortar","DE.Views.ImageSettings.textCropFill":"Preencher","DE.Views.ImageSettings.textCropFit":"Ajustar","DE.Views.ImageSettings.textCropToShape":"Cortar para dar forma","DE.Views.ImageSettings.textEdit":"Editar","DE.Views.ImageSettings.textEditObject":"Editar objeto","DE.Views.ImageSettings.textFitMargins":"Ajustar à margem","DE.Views.ImageSettings.textFlip":"Girar","DE.Views.ImageSettings.textFromFile":"Do arquivo","DE.Views.ImageSettings.textFromStorage":"Do armazenamento","DE.Views.ImageSettings.textFromUrl":"Da URL","DE.Views.ImageSettings.textHeight":"Altura","DE.Views.ImageSettings.textHint270":"Girar 90º no sentido anti-horário.","DE.Views.ImageSettings.textHint90":"Girar 90º no sentido horário","DE.Views.ImageSettings.textHintFlipH":"Virar horizontalmente","DE.Views.ImageSettings.textHintFlipV":"Virar verticalmente","DE.Views.ImageSettings.textInsert":"Substituir imagem","DE.Views.ImageSettings.textOriginalSize":"Tamanho padrão","DE.Views.ImageSettings.textRecentlyUsed":"Usado recentemente","DE.Views.ImageSettings.textResetCrop":"Redefinir colheita","DE.Views.ImageSettings.textRotate90":"Girar 90º","DE.Views.ImageSettings.textRotation":"Rotação","DE.Views.ImageSettings.textSize":"Tamanho","DE.Views.ImageSettings.textWidth":"Largura","DE.Views.ImageSettings.textWrap":"Estilo da quebra automática","DE.Views.ImageSettings.txtBehind":"Atrás do texto","DE.Views.ImageSettings.txtInFront":"Em frente ao Texto","DE.Views.ImageSettings.txtInline":"Alinhado ao texto","DE.Views.ImageSettings.txtSquare":"Quadrado","DE.Views.ImageSettings.txtThrough":"Através","DE.Views.ImageSettings.txtTight":"Justo","DE.Views.ImageSettings.txtTopAndBottom":"Parte superior e inferior","DE.Views.ImageSettingsAdvanced.strMargins":"Preenchimento de texto","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"Absoluto","DE.Views.ImageSettingsAdvanced.textAlignment":"Alinhamento","DE.Views.ImageSettingsAdvanced.textAlt":"Texto Alternativo","DE.Views.ImageSettingsAdvanced.textAltDescription":"Descrição","DE.Views.ImageSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações de objetos visuais, que serão lidas para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor quais informações há na imagem, forma, gráfico ou tabela.","DE.Views.ImageSettingsAdvanced.textAltTitle":"Título","DE.Views.ImageSettingsAdvanced.textAngle":"Ângulo","DE.Views.ImageSettingsAdvanced.textArrows":"Setas","DE.Views.ImageSettingsAdvanced.textAspectRatio":"Bloquear proporção","DE.Views.ImageSettingsAdvanced.textAuto":"Automático","DE.Views.ImageSettingsAdvanced.textAutofit":"Ajuste automático","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"Eixos cruzam","DE.Views.ImageSettingsAdvanced.textAxisPos":"Posição de eixos","DE.Views.ImageSettingsAdvanced.textAxisTitle":"Titulo","DE.Views.ImageSettingsAdvanced.textBase":"Base","DE.Views.ImageSettingsAdvanced.textBeginSize":"Tamanho inicial","DE.Views.ImageSettingsAdvanced.textBeginStyle":"Estilo inicial","DE.Views.ImageSettingsAdvanced.textBelow":"abaixo","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"Entre marcas de escala","DE.Views.ImageSettingsAdvanced.textBevel":"Bisel","DE.Views.ImageSettingsAdvanced.textBillions":"Bilhões","DE.Views.ImageSettingsAdvanced.textBottom":"Inferior","DE.Views.ImageSettingsAdvanced.textBottomMargin":"Margem inferior","DE.Views.ImageSettingsAdvanced.textBtnWrap":"Disposição do texto","DE.Views.ImageSettingsAdvanced.textCapType":"Tipo de letra","DE.Views.ImageSettingsAdvanced.textCategoryName":"Nome da categoria","DE.Views.ImageSettingsAdvanced.textCenter":"Centro","DE.Views.ImageSettingsAdvanced.textCharacter":"Caractere","DE.Views.ImageSettingsAdvanced.textChartTitle":"Título do Gráfico","DE.Views.ImageSettingsAdvanced.textColumn":"Coluna","DE.Views.ImageSettingsAdvanced.textCross":"Intersecção","DE.Views.ImageSettingsAdvanced.textCustom":"Personalizar","DE.Views.ImageSettingsAdvanced.textDataLabels":"Rótulos de dados","DE.Views.ImageSettingsAdvanced.textDistance":"Distância do texto","DE.Views.ImageSettingsAdvanced.textEndSize":"Tamanho final","DE.Views.ImageSettingsAdvanced.textEndStyle":"Estilo final","DE.Views.ImageSettingsAdvanced.textFit":"Ajustar largura","DE.Views.ImageSettingsAdvanced.textFixed":"Fixo","DE.Views.ImageSettingsAdvanced.textFlat":"Plano","DE.Views.ImageSettingsAdvanced.textFlipped":"Invertido","DE.Views.ImageSettingsAdvanced.textFormat":"Formato da etiqueta","DE.Views.ImageSettingsAdvanced.textGridLines":"Linhas de grade","DE.Views.ImageSettingsAdvanced.textHeight":"Altura","DE.Views.ImageSettingsAdvanced.textHideAxis":"Ocultar eixo","DE.Views.ImageSettingsAdvanced.textHigh":"Alto","DE.Views.ImageSettingsAdvanced.textHorAxis":"Eixo horizontal","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"Eixo Horizontal Secundário","DE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","DE.Views.ImageSettingsAdvanced.textHundredMil":"100.000.000 ","DE.Views.ImageSettingsAdvanced.textHundreds":"Centenas","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100.000 ","DE.Views.ImageSettingsAdvanced.textIn":"Em","DE.Views.ImageSettingsAdvanced.textInnerBottom":"Fundo interno","DE.Views.ImageSettingsAdvanced.textInnerTop":"Parte superior interna","DE.Views.ImageSettingsAdvanced.textJoinType":"Tipo de junção","DE.Views.ImageSettingsAdvanced.textKeepRatio":"Proporções constantes","DE.Views.ImageSettingsAdvanced.textLabelDist":"Distância da etiqueta de eixos","DE.Views.ImageSettingsAdvanced.textLabelInterval":"Intervalo entre Etiquetas","DE.Views.ImageSettingsAdvanced.textLabelOptions":"Opções de etiqueta","DE.Views.ImageSettingsAdvanced.textLabelPos":"Posição da etiqueta","DE.Views.ImageSettingsAdvanced.textLayout":"Layout","DE.Views.ImageSettingsAdvanced.textLeft":"Esquerda","DE.Views.ImageSettingsAdvanced.textLeftMargin":"Margem esquerda","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"Sobreposição esquerda","DE.Views.ImageSettingsAdvanced.textLegendBottom":"Inferior","DE.Views.ImageSettingsAdvanced.textLegendLeft":"Esquerda","DE.Views.ImageSettingsAdvanced.textLegendPos":"Legenda","DE.Views.ImageSettingsAdvanced.textLegendRight":"Direita","DE.Views.ImageSettingsAdvanced.textLegendTop":"Superior","DE.Views.ImageSettingsAdvanced.textLine":"Linha","DE.Views.ImageSettingsAdvanced.textLines":"Linhas","DE.Views.ImageSettingsAdvanced.textLineStyle":"Estilo de linha","DE.Views.ImageSettingsAdvanced.textLogScale":"Escala logarítmica","DE.Views.ImageSettingsAdvanced.textLow":"Baixo","DE.Views.ImageSettingsAdvanced.textMajor":"Principal","DE.Views.ImageSettingsAdvanced.textMajorMinor":"Maior e Menor","DE.Views.ImageSettingsAdvanced.textMajorType":"Tipo principal","DE.Views.ImageSettingsAdvanced.textManual":"Manual","DE.Views.ImageSettingsAdvanced.textMargin":"Margem","DE.Views.ImageSettingsAdvanced.textMarkers":"Marcadores","DE.Views.ImageSettingsAdvanced.textMarksInterval":"Intervalo entre Marcas","DE.Views.ImageSettingsAdvanced.textMaxValue":"Valor máximo","DE.Views.ImageSettingsAdvanced.textMillions":"Milhões","DE.Views.ImageSettingsAdvanced.textMinor":"Menor","DE.Views.ImageSettingsAdvanced.textMinorType":"Tipo menor","DE.Views.ImageSettingsAdvanced.textMinValue":"Valor mínimo","DE.Views.ImageSettingsAdvanced.textMiter":"Malhete","DE.Views.ImageSettingsAdvanced.textMove":"Mover objeto com texto","DE.Views.ImageSettingsAdvanced.textNextToAxis":"Próximo ao eixo","DE.Views.ImageSettingsAdvanced.textNone":"nenhum","DE.Views.ImageSettingsAdvanced.textNoOverlay":"Sem sobreposição","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"Em Marcas de Seleção","DE.Views.ImageSettingsAdvanced.textOptions":"Opções","DE.Views.ImageSettingsAdvanced.textOriginalSize":"Tamanho padrão","DE.Views.ImageSettingsAdvanced.textOut":"Fora","DE.Views.ImageSettingsAdvanced.textOuterTop":"Fora do topo","DE.Views.ImageSettingsAdvanced.textOverlap":"Permitir sobreposição","DE.Views.ImageSettingsAdvanced.textOverlay":"Sobreposição","DE.Views.ImageSettingsAdvanced.textPage":"Página","DE.Views.ImageSettingsAdvanced.textParagraph":"Parágrafo","DE.Views.ImageSettingsAdvanced.textPosition":"Posição","DE.Views.ImageSettingsAdvanced.textPositionPc":"Posição relativa","DE.Views.ImageSettingsAdvanced.textRelative":"relativo para","DE.Views.ImageSettingsAdvanced.textRelativeWH":"Relativo","DE.Views.ImageSettingsAdvanced.textResizeFit":"Redimensionar forma para caber no texto","DE.Views.ImageSettingsAdvanced.textReverse":"Valores na ordem reversa","DE.Views.ImageSettingsAdvanced.textRight":"Direita","DE.Views.ImageSettingsAdvanced.textRightMargin":"Margem direita","DE.Views.ImageSettingsAdvanced.textRightOf":"para a direita de","DE.Views.ImageSettingsAdvanced.textRightOverlay":"Sobreposição direita","DE.Views.ImageSettingsAdvanced.textRotated":"Rotacionado","DE.Views.ImageSettingsAdvanced.textRotation":"Rotação","DE.Views.ImageSettingsAdvanced.textRound":"Rodada","DE.Views.ImageSettingsAdvanced.textSeparator":"Separador de rótulos de dados","DE.Views.ImageSettingsAdvanced.textSeriesName":"Nome da série","DE.Views.ImageSettingsAdvanced.textShape":"Configurações da forma","DE.Views.ImageSettingsAdvanced.textSize":"Tamanho","DE.Views.ImageSettingsAdvanced.textSmooth":"Suave","DE.Views.ImageSettingsAdvanced.textSquare":"Quadrado","DE.Views.ImageSettingsAdvanced.textStraight":"Reto","DE.Views.ImageSettingsAdvanced.textTenMillions":"10.000.000 ","DE.Views.ImageSettingsAdvanced.textTenThousands":"10.000 ","DE.Views.ImageSettingsAdvanced.textTextBox":"Caixa de texto","DE.Views.ImageSettingsAdvanced.textThousands":"Milhares","DE.Views.ImageSettingsAdvanced.textTickOptions":"Opções de escala","DE.Views.ImageSettingsAdvanced.textTitle":"Imagem - configurações avançadas","DE.Views.ImageSettingsAdvanced.textTitleChart":"Gráfico - configurações avançadas","DE.Views.ImageSettingsAdvanced.textTitleShape":"Forma - configurações avançadas","DE.Views.ImageSettingsAdvanced.textTop":"Parte superior","DE.Views.ImageSettingsAdvanced.textTopMargin":"Margem superior","DE.Views.ImageSettingsAdvanced.textTrillions":"Trilhões","DE.Views.ImageSettingsAdvanced.textUnits":"Exibir unidades","DE.Views.ImageSettingsAdvanced.textValue":"Valor","DE.Views.ImageSettingsAdvanced.textVertAxis":"Eixo vertical","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"Eixo Vertical Secundário","DE.Views.ImageSettingsAdvanced.textVertical":"Vertical","DE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","DE.Views.ImageSettingsAdvanced.textWeightArrows":"Pesos e Setas","DE.Views.ImageSettingsAdvanced.textWidth":"Largura","DE.Views.ImageSettingsAdvanced.textWrap":"Estilo da quebra automática","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"Atrás do texto","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"Em frente","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"Alinhado com o Texto","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"Quadrado","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"Através","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"Justo","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"Parte superior e inferior","DE.Views.LeftMenu.ariaLeftMenu":"Menu esquerdo","DE.Views.LeftMenu.tipAbout":"Sobre","DE.Views.LeftMenu.tipChat":"Chat","DE.Views.LeftMenu.tipComments":"Comentários","DE.Views.LeftMenu.tipNavigation":"Navegação","DE.Views.LeftMenu.tipOutline":"Cabeçalhos","DE.Views.LeftMenu.tipPageThumbnails":"Miniaturas de página","DE.Views.LeftMenu.tipPlugins":"Plug-ins","DE.Views.LeftMenu.tipSearch":"Pesquisar","DE.Views.LeftMenu.tipSupport":"Feedback e Suporte","DE.Views.LeftMenu.tipTitles":"Títulos","DE.Views.LeftMenu.txtDeveloper":"MODO DE DESENVOLVEDOR","DE.Views.LeftMenu.txtEditor":"Editor de documentos","DE.Views.LeftMenu.txtLimit":"Limitar o acesso","DE.Views.LeftMenu.txtTrial":"MODO DE TESTE","DE.Views.LeftMenu.txtTrialDev":"Modo desenvolvedor de teste","DE.Views.LineNumbersDialog.textAddLineNumbering":"Adicionar numeração de linha","DE.Views.LineNumbersDialog.textApplyTo":"Aplicar alterações a","DE.Views.LineNumbersDialog.textContinuous":"Contínuo","DE.Views.LineNumbersDialog.textCountBy":"Contar por","DE.Views.LineNumbersDialog.textDocument":"Documento inteiro","DE.Views.LineNumbersDialog.textForward":"Este ponto à frente","DE.Views.LineNumbersDialog.textFromText":"Do texto","DE.Views.LineNumbersDialog.textNumbering":"Numeração","DE.Views.LineNumbersDialog.textRestartEachPage":"Reiniciar cada uma das página","DE.Views.LineNumbersDialog.textRestartEachSection":"Reiniciar cada uma das seções","DE.Views.LineNumbersDialog.textSection":"Seção atual","DE.Views.LineNumbersDialog.textStartAt":"Começar em","DE.Views.LineNumbersDialog.textTitle":"Números de linhas","DE.Views.LineNumbersDialog.txtAutoText":"Automático","DE.Views.Links.capBtnAddText":"Adicionar texto","DE.Views.Links.capBtnBookmarks":"Favorito","DE.Views.Links.capBtnCaption":"Legenda","DE.Views.Links.capBtnContentsUpdate":"Atualizar tabela","DE.Views.Links.capBtnCrossRef":"Referência cruzada","DE.Views.Links.capBtnInsContents":"Tabela de Conteúdo","DE.Views.Links.capBtnInsFootnote":"Nota de rodapé","DE.Views.Links.capBtnInsLink":"Link","DE.Views.Links.capBtnTOF":"Tabela de Figuras","DE.Views.Links.confirmDeleteFootnotes":"Deseja excluir todas as notas de rodapé?","DE.Views.Links.confirmReplaceTOF":"Quer substituir a tabela de figuras selecionada?","DE.Views.Links.mniConvertNote":"Converter todas as notas","DE.Views.Links.mniDelFootnote":"Excluir todas as notas de rodapé","DE.Views.Links.mniInsEndnote":"Inserir nota final","DE.Views.Links.mniInsFootnote":"Inserir Nota de Rodapé","DE.Views.Links.mniNoteSettings":"Configurações de Notas","DE.Views.Links.textContentsRemove":"Excluir tabela de conteúdo","DE.Views.Links.textContentsSettings":"Configurações","DE.Views.Links.textConvertToEndnotes":"Converter todas as notas de rodapé em notas finais","DE.Views.Links.textConvertToFootnotes":"Converter todas as notas finais em notas de rodapé","DE.Views.Links.textGotoEndnote":"Vá para notas finais","DE.Views.Links.textGotoFootnote":"Ir para notas de rodapé","DE.Views.Links.textSwapNotes":"Trocar notas de rodapé e notas finais","DE.Views.Links.textUpdateAll":"Atualizar toda a tabela","DE.Views.Links.textUpdatePages":"Atualizar somente os números de páginas","DE.Views.Links.tipAddText":"Incluir título no Índice","DE.Views.Links.tipBookmarks":"Criar Favorito","DE.Views.Links.tipCaption":"Inserir legenda","DE.Views.Links.tipContents":"Inserir tabela de conteúdo","DE.Views.Links.tipContentsUpdate":"Atualizar a tabela de conteúdo","DE.Views.Links.tipCrossRef":"Inserir referência cruzada","DE.Views.Links.tipInsertHyperlink":"Adicionar Link","DE.Views.Links.tipNotes":"Inserir ou editar notas de rodapé","DE.Views.Links.tipTableFigures":"Inserir tabela de figuras","DE.Views.Links.tipTableFiguresUpdate":"Atualizar tabela de figuras","DE.Views.Links.titleUpdateTOF":"Atualizar tabela de figuras","DE.Views.Links.txtDontShowTof":"Não Mostrar no Índice","DE.Views.Links.txtLevel":"Nível","DE.Views.ListIndentsDialog.textSpace":"Espaço","DE.Views.ListIndentsDialog.textTab":"Caractere de tabulação","DE.Views.ListIndentsDialog.textTitle":"Listar recuos","DE.Views.ListIndentsDialog.txtFollowBullet":"Siga o marcador com","DE.Views.ListIndentsDialog.txtFollowNumber":"Siga o número com","DE.Views.ListIndentsDialog.txtIndent":"Recuo de texto","DE.Views.ListIndentsDialog.txtNone":"Nenhum","DE.Views.ListIndentsDialog.txtPosBullet":"Posição do marcador","DE.Views.ListIndentsDialog.txtPosNumber":"Posição do número","DE.Views.ListSettingsDialog.textAuto":"Automático","DE.Views.ListSettingsDialog.textBold":"Negrito","DE.Views.ListSettingsDialog.textCenter":"Centro","DE.Views.ListSettingsDialog.textHide":"Ocultar configurações","DE.Views.ListSettingsDialog.textItalic":"Itálico","DE.Views.ListSettingsDialog.textLeft":"Esquerda","DE.Views.ListSettingsDialog.textLevel":"Nível","DE.Views.ListSettingsDialog.textMore":"Mostrar mais configurações","DE.Views.ListSettingsDialog.textPreview":"Visualizar","DE.Views.ListSettingsDialog.textRight":"Direita","DE.Views.ListSettingsDialog.textSelectLevel":"Selecione o nível","DE.Views.ListSettingsDialog.textSpace":"Espaço","DE.Views.ListSettingsDialog.textTab":"Caractere de tabulação","DE.Views.ListSettingsDialog.txtAlign":"Alinhamento","DE.Views.ListSettingsDialog.txtAlignAt":"em","DE.Views.ListSettingsDialog.txtBullet":"Marcador","DE.Views.ListSettingsDialog.txtColor":"Cor","DE.Views.ListSettingsDialog.txtFollow":"Siga o número com","DE.Views.ListSettingsDialog.txtFontName":"Fonte","DE.Views.ListSettingsDialog.txtInclcudeLevel":"Incluir número de nível","DE.Views.ListSettingsDialog.txtIndent":"Recuo de texto","DE.Views.ListSettingsDialog.txtLikeText":"Como un texto","DE.Views.ListSettingsDialog.txtMoreTypes":"Mais tipos","DE.Views.ListSettingsDialog.txtNewBullet":"Novo marcador","DE.Views.ListSettingsDialog.txtNone":"Nenhum","DE.Views.ListSettingsDialog.txtNumFormatString":"Formato Numérico","DE.Views.ListSettingsDialog.txtRestart":"Lista de reinicialização","DE.Views.ListSettingsDialog.txtSize":"Tamanho","DE.Views.ListSettingsDialog.txtStart":"Começar em","DE.Views.ListSettingsDialog.txtSymbol":"Símbolo","DE.Views.ListSettingsDialog.txtTabStop":"Adicionar parada de tabulação em","DE.Views.ListSettingsDialog.txtTitle":"Configurações da lista","DE.Views.ListSettingsDialog.txtType":"Tipo","DE.Views.ListTypesAdvanced.labelSelect":"Selecione o tipo de lista","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"Send","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"Theme","DE.Views.MailMergeEmailDlg.textAttachDocx":"Anexar como DOCX","DE.Views.MailMergeEmailDlg.textAttachPdf":"Anexar como PDF","DE.Views.MailMergeEmailDlg.textFileName":"File name","DE.Views.MailMergeEmailDlg.textFormat":"Mail format","DE.Views.MailMergeEmailDlg.textFrom":"From","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"Message","DE.Views.MailMergeEmailDlg.textSubject":"Subject Line","DE.Views.MailMergeEmailDlg.textTitle":"Send to Email","DE.Views.MailMergeEmailDlg.textTo":"To","DE.Views.MailMergeEmailDlg.textWarning":"Aviso!","DE.Views.MailMergeEmailDlg.textWarningMsg":"Por favor, observe que o envio não poderá ser parado após clicar o botão 'Enviar'.","DE.Views.MailMergeSettings.downloadMergeTitle":"Merging","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"Merge failed.","DE.Views.MailMergeSettings.notcriticalErrorTitle":"Aviso","DE.Views.MailMergeSettings.textAddRecipients":"Add some recipients to the list first","DE.Views.MailMergeSettings.textAll":"Todos os registros","DE.Views.MailMergeSettings.textCurrent":"Registro atual","DE.Views.MailMergeSettings.textDataSource":"Fonte de dados","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"Baixar","DE.Views.MailMergeSettings.textEditData":"Editar lista de destinatário","DE.Views.MailMergeSettings.textEmail":"Email","DE.Views.MailMergeSettings.textFrom":"From","DE.Views.MailMergeSettings.textGoToMail":"Go to Mail","DE.Views.MailMergeSettings.textHighlight":"Highlight merge fields","DE.Views.MailMergeSettings.textInsertField":"Inserir campo de mesclagem","DE.Views.MailMergeSettings.textMaxRecepients":"Max 100 recepients.","DE.Views.MailMergeSettings.textMerge":"Merge","DE.Views.MailMergeSettings.textMergeFields":"Mesclar campos","DE.Views.MailMergeSettings.textMergeTo":"Merge to","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"Salvar","DE.Views.MailMergeSettings.textPreview":"Preview results","DE.Views.MailMergeSettings.textReadMore":"Read more","DE.Views.MailMergeSettings.textSendMsg":"All mail messages are ready and will be sent out within some time.
The speed of mailing depends on your mail service.
You can continue working with document or close it. After the operation is over the notification will be sent to your registration email address.","DE.Views.MailMergeSettings.textTo":"To","DE.Views.MailMergeSettings.txtFirst":"Para o primeiro registro","DE.Views.MailMergeSettings.txtFromToError":"O valor \"De\" deve ser menor que o valor \"Para\"","DE.Views.MailMergeSettings.txtLast":"Para o registro anterior","DE.Views.MailMergeSettings.txtNext":"Para o próximo registro","DE.Views.MailMergeSettings.txtPrev":"Para o registro anterior","DE.Views.MailMergeSettings.txtUntitled":"Untitled","DE.Views.MailMergeSettings.warnProcessMailMerge":"Starting merge failed","DE.Views.Navigation.strNavigate":"Cabeçalhos","DE.Views.Navigation.txtClosePanel":"Fechar títulos","DE.Views.Navigation.txtCollapse":"Recolher tudo","DE.Views.Navigation.txtDemote":"Rebaixar","DE.Views.Navigation.txtEmpty":"Não há títulos no documento.
Aplique um estilo de título ao texto para que ele apareça no índice.","DE.Views.Navigation.txtEmptyItem":"Título vazio","DE.Views.Navigation.txtEmptyViewer":"Não há títulos no documento.","DE.Views.Navigation.txtExpand":"Expandir tudo","DE.Views.Navigation.txtExpandToLevel":"Expandir ao nível","DE.Views.Navigation.txtFontSize":"Tamanho da fonte","DE.Views.Navigation.txtHeadingAfter":"Novo título após","DE.Views.Navigation.txtHeadingBefore":"Novo título antes de","DE.Views.Navigation.txtLarge":"Grande","DE.Views.Navigation.txtMedium":"Médio","DE.Views.Navigation.txtNewHeading":"Novo subtítulo","DE.Views.Navigation.txtPromote":"Promover","DE.Views.Navigation.txtSelect":"Selecionar conteúdo","DE.Views.Navigation.txtSettings":"Configurações de títulos","DE.Views.Navigation.txtSmall":"Pequeno","DE.Views.Navigation.txtWrapHeadings":"Envolver títulos longos","DE.Views.NoteSettingsDialog.textApply":"Aplicar","DE.Views.NoteSettingsDialog.textApplyTo":"Aplicar alterações a","DE.Views.NoteSettingsDialog.textContinue":"Contínua","DE.Views.NoteSettingsDialog.textCustom":"Marca personalizada","DE.Views.NoteSettingsDialog.textDocEnd":"Fim do documento","DE.Views.NoteSettingsDialog.textDocument":"Documento inteiro","DE.Views.NoteSettingsDialog.textEachPage":"Reiniciar cada uma das página","DE.Views.NoteSettingsDialog.textEachSection":"Reiniciar cada uma das seções","DE.Views.NoteSettingsDialog.textEndnote":"Nota final","DE.Views.NoteSettingsDialog.textFootnote":"Nota de rodapé","DE.Views.NoteSettingsDialog.textFormat":"Formato","DE.Views.NoteSettingsDialog.textInsert":"Inserir","DE.Views.NoteSettingsDialog.textLocation":"Localização","DE.Views.NoteSettingsDialog.textNumbering":"Numeração","DE.Views.NoteSettingsDialog.textNumFormat":"Formato Numérico","DE.Views.NoteSettingsDialog.textPageBottom":"Inferior da página","DE.Views.NoteSettingsDialog.textSectEnd":"Fim da seção","DE.Views.NoteSettingsDialog.textSection":"Seção atual","DE.Views.NoteSettingsDialog.textStart":"Começar em","DE.Views.NoteSettingsDialog.textTextBottom":"Abaixo do texto","DE.Views.NoteSettingsDialog.textTitle":"Definições de Notas","DE.Views.NotesRemoveDialog.textEnd":"Apagar todas as notas finais","DE.Views.NotesRemoveDialog.textFoot":"Apagar todas as notas de rodapé","DE.Views.NotesRemoveDialog.textTitle":"Apagar notas","DE.Views.PageMarginsDialog.notcriticalErrorTitle":"Aviso","DE.Views.PageMarginsDialog.textBottom":"Inferior","DE.Views.PageMarginsDialog.textGutter":"Calha","DE.Views.PageMarginsDialog.textGutterPosition":"Posição da calha","DE.Views.PageMarginsDialog.textInside":"Dentro de","DE.Views.PageMarginsDialog.textLandscape":"Paisagem","DE.Views.PageMarginsDialog.textLeft":"Esquerda","DE.Views.PageMarginsDialog.textMirrorMargins":"Margens espelho","DE.Views.PageMarginsDialog.textMultiplePages":"Múltiplas páginas","DE.Views.PageMarginsDialog.textNormal":"Normal","DE.Views.PageMarginsDialog.textOrientation":"Orientação","DE.Views.PageMarginsDialog.textOutside":"Exterior","DE.Views.PageMarginsDialog.textPortrait":"Retrato ","DE.Views.PageMarginsDialog.textPreview":"Visualizar","DE.Views.PageMarginsDialog.textRight":"Direita","DE.Views.PageMarginsDialog.textTitle":"Margens","DE.Views.PageMarginsDialog.textTop":"Parte superior","DE.Views.PageMarginsDialog.txtMarginsH":"Margens superior e inferior são muito altas para uma determinada altura da página","DE.Views.PageMarginsDialog.txtMarginsW":"Margens são muito grandes para uma determinada largura da página","DE.Views.PageNumberingDlg.textFrom":"Começar em","DE.Views.PageNumberingDlg.textMoreTypes":"Mais tipos","DE.Views.PageNumberingDlg.textNumberFormat":"Formato Numérico","DE.Views.PageNumberingDlg.textPrev":"Continuar da seção anterior","DE.Views.PageSizeDialog.textHeight":"Altura","DE.Views.PageSizeDialog.textPreset":"Pré ajuste","DE.Views.PageSizeDialog.textTitle":"Tamanho da página","DE.Views.PageSizeDialog.textWidth":"Largura","DE.Views.PageSizeDialog.txtCustom":"Personalizar","DE.Views.PageThumbnails.textClosePanel":"Fechar miniaturas de página","DE.Views.PageThumbnails.textHighlightVisiblePart":"Realçar parte visível da página","DE.Views.PageThumbnails.textPageThumbnails":"Miniaturas de página","DE.Views.PageThumbnails.textThumbnailsSettings":"Configurações de miniaturas","DE.Views.PageThumbnails.textThumbnailsSize":"Tamanho das miniaturas","DE.Views.ParagraphSettings.strIndent":"Recuos","DE.Views.ParagraphSettings.strIndentsLeftText":"Esquerda","DE.Views.ParagraphSettings.strIndentsRightText":"Direita","DE.Views.ParagraphSettings.strIndentsSpecial":"Especial","DE.Views.ParagraphSettings.strLineHeight":"Espaçamento de linha","DE.Views.ParagraphSettings.strParagraphSpacing":"Espaçamento de parágrafo","DE.Views.ParagraphSettings.strSomeParagraphSpace":"Não adicionar intervalo entre parágrafos do mesmo estilo","DE.Views.ParagraphSettings.strSpacingAfter":"Depois","DE.Views.ParagraphSettings.strSpacingBefore":"Antes","DE.Views.ParagraphSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.ParagraphSettings.textAt":"Em","DE.Views.ParagraphSettings.textAtLeast":"Pelo menos","DE.Views.ParagraphSettings.textAuto":"Múltiplo","DE.Views.ParagraphSettings.textBackColor":"Cor do plano de fundo","DE.Views.ParagraphSettings.textExact":"Exatamente","DE.Views.ParagraphSettings.textFirstLine":"Primeira linha","DE.Views.ParagraphSettings.textHanging":"Suspensão","DE.Views.ParagraphSettings.textNoneSpecial":"(nenhum)","DE.Views.ParagraphSettings.txtAutoText":"Automático","DE.Views.ParagraphSettingsAdvanced.noTabs":"As abas especificadas aparecerão neste campo","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"Todas maiúsculas","DE.Views.ParagraphSettingsAdvanced.strBorders":"Bordas e Preenchimento","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"Quebra de página antes","DE.Views.ParagraphSettingsAdvanced.strDirection":"Direção","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Tachado duplo","DE.Views.ParagraphSettingsAdvanced.strIndent":"Recuos","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Esquerda","DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Espaçamento entre linhas","DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel":"Nível de contorno","DE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Direita","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Depois","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","DE.Views.ParagraphSettingsAdvanced.strKeepLines":"Manter as linhas juntas","DE.Views.ParagraphSettingsAdvanced.strKeepNext":"Manter com o próximo","DE.Views.ParagraphSettingsAdvanced.strMargins":"Preenchimentos","DE.Views.ParagraphSettingsAdvanced.strOrphan":"Controle de órfão","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Fonte","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Recuos e espaçamento","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"Quebras de linha e página","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"Posicionamento","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versalete","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"Não adicionar intervalo entre parágrafos do mesmo estilo","DE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaçamento","DE.Views.ParagraphSettingsAdvanced.strStrike":"Taxado","DE.Views.ParagraphSettingsAdvanced.strSubscript":"Subscrito","DE.Views.ParagraphSettingsAdvanced.strSuperscript":"Sobrescrito","DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers":"Suprimir números de linha","DE.Views.ParagraphSettingsAdvanced.strTabs":"Aba","DE.Views.ParagraphSettingsAdvanced.textAlign":"Alinhamento","DE.Views.ParagraphSettingsAdvanced.textAll":"Tudo","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"Pelo menos","DE.Views.ParagraphSettingsAdvanced.textAuto":"Múltiplo","DE.Views.ParagraphSettingsAdvanced.textBackColor":"Cor de fundo","DE.Views.ParagraphSettingsAdvanced.textBodyText":"Texto Básico","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"Cor da borda","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"Clique no diagrama ou use os botões para selecionar bordas e aplicar o estilo escolhido a elas","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"Tamanho da borda","DE.Views.ParagraphSettingsAdvanced.textBottom":"Inferior","DE.Views.ParagraphSettingsAdvanced.textCentered":"Centralizado","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaçamento entre caracteres","DE.Views.ParagraphSettingsAdvanced.textContext":"Contextual","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"Contextuais e Discricionários","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"Contextuais, Históricos e Discricionários","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"Contextuais e Históricos","DE.Views.ParagraphSettingsAdvanced.textDefault":"Aba padrão","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"Da esquerda para a direita","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"Da direita para a esquerda","DE.Views.ParagraphSettingsAdvanced.textDiscret":"Discricionário","DE.Views.ParagraphSettingsAdvanced.textEffects":"Efeitos","DE.Views.ParagraphSettingsAdvanced.textExact":"Exatamente","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primeira linha","DE.Views.ParagraphSettingsAdvanced.textHanging":"Suspensão","DE.Views.ParagraphSettingsAdvanced.textHistorical":"Histórico","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"Histórico e discricionário","DE.Views.ParagraphSettingsAdvanced.textJustified":"Justificado","DE.Views.ParagraphSettingsAdvanced.textLeader":"Líder","DE.Views.ParagraphSettingsAdvanced.textLeft":"Esquerda","DE.Views.ParagraphSettingsAdvanced.textLevel":"Nível","DE.Views.ParagraphSettingsAdvanced.textLigatures":"Ligaduras","DE.Views.ParagraphSettingsAdvanced.textNone":"Nenhum","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(nenhum)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"Recursos OpenType","DE.Views.ParagraphSettingsAdvanced.textPosition":"Posição","DE.Views.ParagraphSettingsAdvanced.textRemove":"Excluir","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Excluir todos","DE.Views.ParagraphSettingsAdvanced.textRight":"Direita","DE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","DE.Views.ParagraphSettingsAdvanced.textSpacing":"Espaçamento","DE.Views.ParagraphSettingsAdvanced.textStandard":"Apenas padrão","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"Padrão e contextual","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"Padrão, contextual e discricionário","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"Padrão, contextual e histórico","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"Padrão e Discricionário","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"Padrão, Histórico e Discricionário","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"Padrão e Histórico","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"Centro","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"Esquerda","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posição da aba","DE.Views.ParagraphSettingsAdvanced.textTabRight":"Direita","DE.Views.ParagraphSettingsAdvanced.textTitle":"Parágrafo - configurações avançadas","DE.Views.ParagraphSettingsAdvanced.textTop":"Parte superior","DE.Views.ParagraphSettingsAdvanced.tipAll":"Definir borda externa e todas as linhas internas","DE.Views.ParagraphSettingsAdvanced.tipBottom":"Definir borda inferior apenas","DE.Views.ParagraphSettingsAdvanced.tipInner":"Definir apenas linhas internas horizontais","DE.Views.ParagraphSettingsAdvanced.tipLeft":"Definir apenas borda esquerda","DE.Views.ParagraphSettingsAdvanced.tipNone":"Definir sem bordas","DE.Views.ParagraphSettingsAdvanced.tipOuter":"Definir apenas borda externa","DE.Views.ParagraphSettingsAdvanced.tipRight":"Definir apenas borda direita","DE.Views.ParagraphSettingsAdvanced.tipTop":"Definir apenas borda superior","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"Automático","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"Sem bordas","DE.Views.PrintWithPreview.textMarginsLast":"Últimos personalizados","DE.Views.PrintWithPreview.textMarginsModerate":"Moderado","DE.Views.PrintWithPreview.textMarginsNarrow":"Estreito","DE.Views.PrintWithPreview.textMarginsNormal":"Normal","DE.Views.PrintWithPreview.textMarginsWide":"Amplo","DE.Views.PrintWithPreview.txtAllPages":"Todas as páginas","DE.Views.PrintWithPreview.txtAuto":"Automático","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impressão em preto e branco","DE.Views.PrintWithPreview.txtBothSides":"Imprimir em ambos os lados","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"Vire as páginas na borda longa","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"Vire as páginas na borda curta","DE.Views.PrintWithPreview.txtBottom":"Inferior","DE.Views.PrintWithPreview.txtColorPrinting":"Impressão colorida","DE.Views.PrintWithPreview.txtCopies":"Cópias","DE.Views.PrintWithPreview.txtCurrentPage":"Pagina atual","DE.Views.PrintWithPreview.txtCustom":"Personalizado","DE.Views.PrintWithPreview.txtCustomPages":"Impressão personalizada","DE.Views.PrintWithPreview.txtLandscape":"Paisagem","DE.Views.PrintWithPreview.txtLeft":"Esquerda","DE.Views.PrintWithPreview.txtMargins":"Margens","DE.Views.PrintWithPreview.txtOf":"de {0}","DE.Views.PrintWithPreview.txtOneSide":"Imprimir um lado","DE.Views.PrintWithPreview.txtOneSideDesc":"Imprima apenas em um lado da página","DE.Views.PrintWithPreview.txtPage":"Página","DE.Views.PrintWithPreview.txtPageNumInvalid":"Número da página inválido","DE.Views.PrintWithPreview.txtPageOrientation":"Orientação da página","DE.Views.PrintWithPreview.txtPages":"Páginas","DE.Views.PrintWithPreview.txtPageSize":"Tamanho da página","DE.Views.PrintWithPreview.txtPortrait":"Retrato ","DE.Views.PrintWithPreview.txtPrint":"Imprimir","DE.Views.PrintWithPreview.txtPrinter":"Impressora","DE.Views.PrintWithPreview.txtPrinterNotSelected":"Impressora não selecionada","DE.Views.PrintWithPreview.txtPrintersNotFound":"Impressoras não encontradas","DE.Views.PrintWithPreview.txtPrintPdf":"Exportar em PDF","DE.Views.PrintWithPreview.txtPrintRange":"Imprimir intervalo","DE.Views.PrintWithPreview.txtPrintSides":"Imprimir lados","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir usando a caixa de diálogo do sistema","DE.Views.PrintWithPreview.txtRight":"Direita","DE.Views.PrintWithPreview.txtSelection":"Seleção","DE.Views.PrintWithPreview.txtTop":"Parte superior","DE.Views.PrintWithPreview.txtWaitingForPrinters":"Aguardando impressoras","DE.Views.ProtectDialog.textComments":"Comentários","DE.Views.ProtectDialog.textForms":"Preenchimento de formulários","DE.Views.ProtectDialog.textReview":"Mudanças rastreadas","DE.Views.ProtectDialog.textView":"Sem alterações (somente leitura)","DE.Views.ProtectDialog.txtAllow":"Permitir apenas este tipo de edição no documento","DE.Views.ProtectDialog.txtIncorrectPwd":"A confirmação da senha não é idêntica","DE.Views.ProtectDialog.txtLimit":"A senha é limitada a 15 caracteres","DE.Views.ProtectDialog.txtOptional":"Opcional","DE.Views.ProtectDialog.txtPassword":"Senha","DE.Views.ProtectDialog.txtProtect":"Proteger","DE.Views.ProtectDialog.txtRepeat":"Repetir a senha","DE.Views.ProtectDialog.txtTitle":"Proteger","DE.Views.ProtectDialog.txtWarning":"Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.","DE.Views.RightMenu.ariaRightMenu":"Menu à direita","DE.Views.RightMenu.txtChartSettings":"Configurações de gráfico","DE.Views.RightMenu.txtFormSettings":"Configurações do formulário","DE.Views.RightMenu.txtHeaderFooterSettings":"Configurações de cabeçalho e rodapé","DE.Views.RightMenu.txtImageSettings":"Configurações de imagem","DE.Views.RightMenu.txtMailMergeSettings":"Mail Merge Settings","DE.Views.RightMenu.txtParagraphSettings":"Configurações do parágrafo","DE.Views.RightMenu.txtShapeSettings":"Configurações da forma","DE.Views.RightMenu.txtSignatureSettings":"Configurações de Assinatura","DE.Views.RightMenu.txtTableSettings":"Configurações da tabela","DE.Views.RightMenu.txtTextArtSettings":"Configurações de Arte de Texto","DE.Views.RoleDeleteDlg.textLabel":"Para excluir este destinatário, você precisa mover os campos associados a ele para outro destinatário.","DE.Views.RoleDeleteDlg.textSelect":"Selecione o destinatário para a fusão de campos","DE.Views.RoleDeleteDlg.textTitle":"Excluir destinatário","DE.Views.RoleEditDlg.errNameExists":"Já existe um destinatário com esse nome.","DE.Views.RoleEditDlg.textEmptyError":"O nome do destinatário não deve estar vazio.","DE.Views.RoleEditDlg.textName":"Nome do destinatário","DE.Views.RoleEditDlg.textNameEx":"Exemplo: Requerente, Cliente, Representante de Vendas","DE.Views.RoleEditDlg.textNoHighlight":"Sem destaque","DE.Views.RoleEditDlg.txtTitleEdit":"Editar Destinatário","DE.Views.RoleEditDlg.txtTitleNew":"Criar nova função","DE.Views.RolesManagerDlg.textAnyone":"Alguém","DE.Views.RolesManagerDlg.textDelete":"Excluir","DE.Views.RolesManagerDlg.textDeleteLast":"Tem certeza de que deseja excluir a função {0}?
Depois de excluída, a função padrão será criada.","DE.Views.RolesManagerDlg.textDescription":"Adicione funções e defina a ordem em que os responsáveis recebem e assinam o documento","DE.Views.RolesManagerDlg.textDown":"Mover o destinatário para baixo","DE.Views.RolesManagerDlg.textEdit":"Editar","DE.Views.RolesManagerDlg.textEmpty":"Nenhum destinatário foi criado ainda.
Crie pelo menos um destinatário e ele aparecerá neste campo.","DE.Views.RolesManagerDlg.textNew":"Novo","DE.Views.RolesManagerDlg.textUp":"Mover o destinatário para cima","DE.Views.RolesManagerDlg.txtTitle":"Gerenciar funções de destinatários","DE.Views.RolesManagerDlg.warnCantDelete":"Você não pode excluir este destinatário porque ele tem campos associados.","DE.Views.RolesManagerDlg.warnDelete":"Tem certeza de que deseja excluir a função {0}?","DE.Views.SaveFormDlg.saveButtonText":"Salvar","DE.Views.SaveFormDlg.textAnyone":"Alguém","DE.Views.SaveFormDlg.textDescription":"Ao salvar em PDF, somente os destinatários com campos são adicionados à lista de preenchimento","DE.Views.SaveFormDlg.textEmpty":"Não há destinatários associados aos campos.","DE.Views.SaveFormDlg.textFill":"Lista de preenchimento","DE.Views.SaveFormDlg.txtTitle":"Salvar como formulário","DE.Views.ShapeSettings.strBackground":"Cor do plano de fundo","DE.Views.ShapeSettings.strChange":"Alterar forma","DE.Views.ShapeSettings.strColor":"Cor","DE.Views.ShapeSettings.strFill":"Preencher","DE.Views.ShapeSettings.strForeground":"Cor do primeiro plano","DE.Views.ShapeSettings.strPattern":"Padrão","DE.Views.ShapeSettings.strShadow":"Mostrar sombra","DE.Views.ShapeSettings.strSize":"Tamanho","DE.Views.ShapeSettings.strStroke":"Linha","DE.Views.ShapeSettings.strTransparency":"Opacidade","DE.Views.ShapeSettings.strType":"Tipo","DE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","DE.Views.ShapeSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.ShapeSettings.textAngle":"Ângulo","DE.Views.ShapeSettings.textBorderSizeErr":"O valor inserido está incorreto.
Insira um valor entre 0 pt e 1.584 pt.","DE.Views.ShapeSettings.textColor":"Preenchimento de cor","DE.Views.ShapeSettings.textDirection":"Direção","DE.Views.ShapeSettings.textEditPoints":"Editar Pontos","DE.Views.ShapeSettings.textEditShape":"Editar forma","DE.Views.ShapeSettings.textEmptyPattern":"Sem padrão","DE.Views.ShapeSettings.textEyedropper":"Conta-gotas","DE.Views.ShapeSettings.textFlip":"Girar","DE.Views.ShapeSettings.textFromFile":"Do arquivo","DE.Views.ShapeSettings.textFromStorage":"Do armazenamento","DE.Views.ShapeSettings.textFromUrl":"Da URL","DE.Views.ShapeSettings.textGradient":"Pontos de gradiente","DE.Views.ShapeSettings.textGradientFill":"Preenchimento gradiente","DE.Views.ShapeSettings.textHint270":"Girar 90º no sentido anti-horário.","DE.Views.ShapeSettings.textHint90":"Girar 90º no sentido horário","DE.Views.ShapeSettings.textHintFlipH":"Virar horizontalmente","DE.Views.ShapeSettings.textHintFlipV":"Virar verticalmente","DE.Views.ShapeSettings.textImageTexture":"Imagem ou textura","DE.Views.ShapeSettings.textLinear":"Linear","DE.Views.ShapeSettings.textMoreColors":"Mais cores","DE.Views.ShapeSettings.textNoFill":"Sem preenchimento","DE.Views.ShapeSettings.textNoShadow":"Sem sombra","DE.Views.ShapeSettings.textPatternFill":"Padrão","DE.Views.ShapeSettings.textPosition":"Posição","DE.Views.ShapeSettings.textRadial":"Radial","DE.Views.ShapeSettings.textRecentlyUsed":"Usado recentemente","DE.Views.ShapeSettings.textRotate90":"Girar 90º","DE.Views.ShapeSettings.textRotation":"Rotação","DE.Views.ShapeSettings.textSelectImage":"Selecionar imagem","DE.Views.ShapeSettings.textSelectTexture":"Selecionar","DE.Views.ShapeSettings.textShadow":"Sombra","DE.Views.ShapeSettings.textStretch":"Alongar","DE.Views.ShapeSettings.textStyle":"Estilo","DE.Views.ShapeSettings.textTexture":"De textura","DE.Views.ShapeSettings.textTile":"Lado a lado","DE.Views.ShapeSettings.textWrap":"Estilo da quebra automática","DE.Views.ShapeSettings.tipAddGradientPoint":"Adicionar ponto de gradiente","DE.Views.ShapeSettings.tipRemoveGradientPoint":"Remover ponto de gradiente","DE.Views.ShapeSettings.txtBehind":"Atrás do texto","DE.Views.ShapeSettings.txtBrownPaper":"Papel pardo","DE.Views.ShapeSettings.txtCanvas":"Canvas","DE.Views.ShapeSettings.txtCarton":"Papelão","DE.Views.ShapeSettings.txtDarkFabric":"Tecido escuro","DE.Views.ShapeSettings.txtGrain":"Granulação","DE.Views.ShapeSettings.txtGranite":"Granito","DE.Views.ShapeSettings.txtGreyPaper":"Papel cinza","DE.Views.ShapeSettings.txtInFront":"Em frente ao Texto","DE.Views.ShapeSettings.txtInline":"Alinhado ao texto","DE.Views.ShapeSettings.txtKnit":"Encontro","DE.Views.ShapeSettings.txtLeather":"Couro","DE.Views.ShapeSettings.txtNoBorders":"Sem linha","DE.Views.ShapeSettings.txtOffsetBottom":"Deslocamento: Inferior","DE.Views.ShapeSettings.txtOffsetBottomLeft":"Deslocamento: canto inferior esquerdo","DE.Views.ShapeSettings.txtOffsetBottomRight":"Deslocamento: canto superior direito","DE.Views.ShapeSettings.txtOffsetCenter":"Deslocamento: Centro","DE.Views.ShapeSettings.txtOffsetLeft":"Deslocamento: Esquerda","DE.Views.ShapeSettings.txtOffsetRight":"Deslocamento: Direita","DE.Views.ShapeSettings.txtOffsetTop":"Deslocamento: Superior","DE.Views.ShapeSettings.txtOffsetTopLeft":"Deslocamento: canto superior esquerdo","DE.Views.ShapeSettings.txtOffsetTopRight":"Deslocamento: canto superior direito","DE.Views.ShapeSettings.txtPapyrus":"Papiro","DE.Views.ShapeSettings.txtSquare":"Quadrado","DE.Views.ShapeSettings.txtThrough":"Através","DE.Views.ShapeSettings.txtTight":"Justo","DE.Views.ShapeSettings.txtTopAndBottom":"Parte superior e inferior","DE.Views.ShapeSettings.txtWood":"Madeira","DE.Views.SignatureSettings.notcriticalErrorTitle":"Aviso","DE.Views.SignatureSettings.strDelete":"Remover assinatura","DE.Views.SignatureSettings.strDetails":"Detalhes da assinatura","DE.Views.SignatureSettings.strInvalid":"Assinaturas inválidas","DE.Views.SignatureSettings.strRequested":"Assinaturas solicitadas","DE.Views.SignatureSettings.strSetup":"Configurações da assinatura","DE.Views.SignatureSettings.strSign":"Assinar","DE.Views.SignatureSettings.strSignature":"Assinatura","DE.Views.SignatureSettings.strSigner":"Signatário","DE.Views.SignatureSettings.strValid":"Assinaturas válidas","DE.Views.SignatureSettings.txtContinueEditing":"Editar de qualquer maneira","DE.Views.SignatureSettings.txtEditWarning":"Editar excluirá as assinaturas do documento.
Deseja continuar?","DE.Views.SignatureSettings.txtRemoveWarning":"Você quer remover esta assinatura?
Isso não pode ser desfeito.","DE.Views.SignatureSettings.txtRequestedSignatures":"O documento deve ser assinado.","DE.Views.SignatureSettings.txtSigned":"Assinaturas válidas foram adicionadas ao documento. O documento está protegido contra edição.","DE.Views.SignatureSettings.txtSignedForm":"Este documento foi assinado e não pode ser editado.","DE.Views.SignatureSettings.txtSignedInvalid":"Algumas das assinaturas digitais no documento estão inválidas ou não puderam ser verificadas. O documento está protegido para edição.","DE.Views.Statusbar.goToPageText":"Ir para a Página","DE.Views.Statusbar.pageIndexText":"Página {0} de {1}","DE.Views.Statusbar.tipFitPage":"Ajustar a página","DE.Views.Statusbar.tipFitWidth":"Ajustar à largura","DE.Views.Statusbar.tipHandTool":"Ferramenta de mão","DE.Views.Statusbar.tipMultiplePages":"Múltiplas páginas","DE.Views.Statusbar.tipSelectTool":"Selecionar ferramenta","DE.Views.Statusbar.tipSetLang":"Definir idioma do texto","DE.Views.Statusbar.tipZoomFactor":"Ampliação","DE.Views.Statusbar.tipZoomIn":"Ampliar","DE.Views.Statusbar.tipZoomOut":"Reduzir","DE.Views.Statusbar.txtPageNumInvalid":"Número da página inválido","DE.Views.Statusbar.txtPages":"Páginas","DE.Views.Statusbar.txtParagraphs":"Parágrafos","DE.Views.Statusbar.txtSpaces":"Símbolos com espaços","DE.Views.Statusbar.txtSymbols":"Símbolos","DE.Views.Statusbar.txtWordCount":"Contagem de palavras","DE.Views.Statusbar.txtWords":"Palavras","DE.Views.StyleTitleDialog.textHeader":"Criar Novo Estilo","DE.Views.StyleTitleDialog.textNextStyle":"Estilo do próximo parágrafo","DE.Views.StyleTitleDialog.textTitle":"Title","DE.Views.StyleTitleDialog.txtEmpty":"This field is required","DE.Views.StyleTitleDialog.txtNotEmpty":"Field must not be empty","DE.Views.StyleTitleDialog.txtSameAs":"Igual ao novo estilo criado","DE.Views.TableFormulaDialog.textBookmark":"Colar marcador","DE.Views.TableFormulaDialog.textFormat":"Formato de número","DE.Views.TableFormulaDialog.textFormula":"Fórmula","DE.Views.TableFormulaDialog.textInsertFunction":"Colar função","DE.Views.TableFormulaDialog.textTitle":"Configurações de fórmula","DE.Views.TableOfContentsSettings.strAlign":"Números de página alinhados à direita","DE.Views.TableOfContentsSettings.strFullCaption":"Incluir etiqueta e número","DE.Views.TableOfContentsSettings.strLinks":"Formatar tabela de conteúdo como links","DE.Views.TableOfContentsSettings.strLinksOF":"Formatar tabela de figuras como links","DE.Views.TableOfContentsSettings.strShowPages":"Mostrar números de páginas","DE.Views.TableOfContentsSettings.textBuildTable":"Construir tabela de conteúdo de","DE.Views.TableOfContentsSettings.textBuildTableOF":"construir tabela de figuras de","DE.Views.TableOfContentsSettings.textEquation":"Equação","DE.Views.TableOfContentsSettings.textFigure":"Figura","DE.Views.TableOfContentsSettings.textLeader":"Líder","DE.Views.TableOfContentsSettings.textLevel":"Nível","DE.Views.TableOfContentsSettings.textLevels":"Níveis","DE.Views.TableOfContentsSettings.textNone":"Nenhum","DE.Views.TableOfContentsSettings.textRadioCaption":"Legenda","DE.Views.TableOfContentsSettings.textRadioLevels":"Níveis do marcador","DE.Views.TableOfContentsSettings.textRadioStyle":"Estilo","DE.Views.TableOfContentsSettings.textRadioStyles":"Estilos selecionados","DE.Views.TableOfContentsSettings.textStyle":"Estilo","DE.Views.TableOfContentsSettings.textStyles":"Estilos","DE.Views.TableOfContentsSettings.textTable":"Tabela","DE.Views.TableOfContentsSettings.textTitle":"Tabela de conteúdo","DE.Views.TableOfContentsSettings.textTitleTOF":"Tabela de figuras","DE.Views.TableOfContentsSettings.txtCentered":"Centralizado","DE.Views.TableOfContentsSettings.txtClassic":"Clássico","DE.Views.TableOfContentsSettings.txtCurrent":"Atual","DE.Views.TableOfContentsSettings.txtDistinctive":"Distintivo","DE.Views.TableOfContentsSettings.txtFormal":"Regular","DE.Views.TableOfContentsSettings.txtModern":"Moderno","DE.Views.TableOfContentsSettings.txtOnline":"Online","DE.Views.TableOfContentsSettings.txtSimple":"Simples","DE.Views.TableOfContentsSettings.txtStandard":"Padrão","DE.Views.TableSettings.deleteColumnText":"Excluir coluna","DE.Views.TableSettings.deleteRowText":"Excluir linha","DE.Views.TableSettings.deleteTableText":"Excluir tabela","DE.Views.TableSettings.insertColumnLeftText":"Inserir coluna à esquerda","DE.Views.TableSettings.insertColumnRightText":"Inserir coluna à direita","DE.Views.TableSettings.insertRowAboveText":"Inserir linha acima","DE.Views.TableSettings.insertRowBelowText":"Inserir linha abaixo","DE.Views.TableSettings.mergeCellsText":"Mesclar células","DE.Views.TableSettings.selectCellText":"Selecionar célula","DE.Views.TableSettings.selectColumnText":"Selecionar coluna","DE.Views.TableSettings.selectRowText":"Selecionar linha","DE.Views.TableSettings.selectTableText":"Selecionar tabela","DE.Views.TableSettings.splitCellsText":"Dividir célula...","DE.Views.TableSettings.splitCellTitleText":"Dividir célula","DE.Views.TableSettings.strRepeatRow":"Repetir como linha de cabeçalho na parte superior de todas as páginas","DE.Views.TableSettings.textAddFormula":"Adicionar fórmula","DE.Views.TableSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.TableSettings.textAutofit":"Redimensionar automaticamente para ajustar o conteúdo","DE.Views.TableSettings.textBackColor":"Cor do plano de fundo","DE.Views.TableSettings.textBanded":"Em tiras","DE.Views.TableSettings.textBorderColor":"Cor","DE.Views.TableSettings.textBorders":"Estilo de bordas","DE.Views.TableSettings.textCellSize":"Tamanho de linhas & colunas","DE.Views.TableSettings.textColumns":"Colunas","DE.Views.TableSettings.textConvert":"Converter tabela em texto","DE.Views.TableSettings.textDistributeCols":"Colunas distribuídas","DE.Views.TableSettings.textDistributeRows":"Linhas distribuídas","DE.Views.TableSettings.textEdit":"Linhas e colunas","DE.Views.TableSettings.textEmptyTemplate":"Sem modelos","DE.Views.TableSettings.textFirst":"Primeiro","DE.Views.TableSettings.textHeader":"Cabeçalho","DE.Views.TableSettings.textHeight":"Altura","DE.Views.TableSettings.textLast":"Último","DE.Views.TableSettings.textRows":"Linhas","DE.Views.TableSettings.textSelectBorders":"Selecione as bordas que você deseja alterar aplicando o estilo escolhido acima","DE.Views.TableSettings.textTemplate":"Selecionar a partir do modelo","DE.Views.TableSettings.textTotal":"Total","DE.Views.TableSettings.textWidth":"Largura","DE.Views.TableSettings.tipAll":"Definir borda externa e todas as linhas internas","DE.Views.TableSettings.tipBottom":"Definir apenas borda inferior externa","DE.Views.TableSettings.tipInner":"Definir apenas linhas internas","DE.Views.TableSettings.tipInnerHor":"Definir apenas linhas internas horizontais","DE.Views.TableSettings.tipInnerVert":"Definir apenas linhas internas verticais","DE.Views.TableSettings.tipLeft":"Definir apenas borda esquerda externa","DE.Views.TableSettings.tipNone":"Definir sem bordas","DE.Views.TableSettings.tipOuter":"Definir apenas borda externa","DE.Views.TableSettings.tipRight":"Definir apenas borda direita externa","DE.Views.TableSettings.tipTop":"Definir apenas borda superior externa","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"Tabelas alinhadas e com borda","DE.Views.TableSettings.txtGroupTable_Custom":"Personalizado","DE.Views.TableSettings.txtGroupTable_Grid":"Tabelas de grade","DE.Views.TableSettings.txtGroupTable_List":"Listar tabelas","DE.Views.TableSettings.txtGroupTable_Plain":"Tabelas simples","DE.Views.TableSettings.txtNoBorders":"Sem bordas","DE.Views.TableSettings.txtTable_Accent":"Acento","DE.Views.TableSettings.txtTable_Bordered":"Delimitado","DE.Views.TableSettings.txtTable_BorderedAndLined":"Contornado e Alinhado","DE.Views.TableSettings.txtTable_Colorful":"Colorido","DE.Views.TableSettings.txtTable_Dark":"Escuro","DE.Views.TableSettings.txtTable_GridTable":"Tabela de grade","DE.Views.TableSettings.txtTable_Light":"Claro","DE.Views.TableSettings.txtTable_Lined":"Alinhado","DE.Views.TableSettings.txtTable_ListTable":"Tabela de lista","DE.Views.TableSettings.txtTable_PlainTable":"Tabela simples","DE.Views.TableSettings.txtTable_TableGrid":"Grade da tabela","DE.Views.TableSettingsAdvanced.textAlign":"Alinhamento","DE.Views.TableSettingsAdvanced.textAlignment":"Alinhamento","DE.Views.TableSettingsAdvanced.textAllowSpacing":"Permitir espaçamento entre células","DE.Views.TableSettingsAdvanced.textAlt":"Texto alternativo","DE.Views.TableSettingsAdvanced.textAltDescription":"Descrição","DE.Views.TableSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto da informação do objeto visual, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma, gráfico ou mesa.","DE.Views.TableSettingsAdvanced.textAltTitle":"Título","DE.Views.TableSettingsAdvanced.textAnchorText":"Тexto","DE.Views.TableSettingsAdvanced.textAutofit":"Automaticamente redimensionado para ajustar conteúdo","DE.Views.TableSettingsAdvanced.textBackColor":"Plano de fundo da célula","DE.Views.TableSettingsAdvanced.textBelow":"abaixo","DE.Views.TableSettingsAdvanced.textBorderColor":"Cor da borda","DE.Views.TableSettingsAdvanced.textBorderDesc":"Clique no diagrama ou use os botões para selecionar bordas e aplicar o estilo escolhido a elas","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"Bordas e Plano de fundo","DE.Views.TableSettingsAdvanced.textBorderWidth":"Tamanho da borda","DE.Views.TableSettingsAdvanced.textBottom":"Inferior","DE.Views.TableSettingsAdvanced.textCellOptions":"Opções de célula","DE.Views.TableSettingsAdvanced.textCellProps":"Célula","DE.Views.TableSettingsAdvanced.textCellSize":"Tamanho de célula","DE.Views.TableSettingsAdvanced.textCenter":"Centro","DE.Views.TableSettingsAdvanced.textCenterTooltip":"Centro","DE.Views.TableSettingsAdvanced.textCheckMargins":"Usar margens padrão","DE.Views.TableSettingsAdvanced.textDefaultMargins":"Margens de célula padrão","DE.Views.TableSettingsAdvanced.textDistance":"Distância do texto","DE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.TableSettingsAdvanced.textIndLeft":"Recuo da esquerda","DE.Views.TableSettingsAdvanced.textLeft":"Esquerda","DE.Views.TableSettingsAdvanced.textLeftTooltip":"Esquerda","DE.Views.TableSettingsAdvanced.textMargin":"Margem","DE.Views.TableSettingsAdvanced.textMargins":"Margens da célula","DE.Views.TableSettingsAdvanced.textMeasure":"Medir em","DE.Views.TableSettingsAdvanced.textMove":"Mover objeto com texto","DE.Views.TableSettingsAdvanced.textOnlyCells":"Apenas para as células selecionadas","DE.Views.TableSettingsAdvanced.textOptions":"Opções","DE.Views.TableSettingsAdvanced.textOverlap":"Permitir sobreposição","DE.Views.TableSettingsAdvanced.textPage":"Página","DE.Views.TableSettingsAdvanced.textPosition":"Posição","DE.Views.TableSettingsAdvanced.textPrefWidth":"Largura preferida","DE.Views.TableSettingsAdvanced.textPreview":"Pré-visualizar","DE.Views.TableSettingsAdvanced.textRelative":"relativo para","DE.Views.TableSettingsAdvanced.textRight":"Direita","DE.Views.TableSettingsAdvanced.textRightOf":"para a direita de","DE.Views.TableSettingsAdvanced.textRightTooltip":"Direita","DE.Views.TableSettingsAdvanced.textTable":"Tabela","DE.Views.TableSettingsAdvanced.textTableBackColor":"Plano de fundo da tabela","DE.Views.TableSettingsAdvanced.textTablePosition":"Posição de tabela","DE.Views.TableSettingsAdvanced.textTableSize":"Tamanho de tabela","DE.Views.TableSettingsAdvanced.textTitle":"Tabela - configurações avançadas","DE.Views.TableSettingsAdvanced.textTop":"Parte superior","DE.Views.TableSettingsAdvanced.textVertical":"Vertical","DE.Views.TableSettingsAdvanced.textWidth":"Largura","DE.Views.TableSettingsAdvanced.textWidthSpaces":"Largura e Espaços","DE.Views.TableSettingsAdvanced.textWrap":"Disposição do texto","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"Tabela embutida","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"Tabela de fluxo","DE.Views.TableSettingsAdvanced.textWrappingStyle":"Estilo da quebra automática","DE.Views.TableSettingsAdvanced.textWrapText":"Quebrar texto ","DE.Views.TableSettingsAdvanced.tipAll":"Definir borda externa e todas as linhas internas","DE.Views.TableSettingsAdvanced.tipCellAll":"Definir bordas para células internas apenas","DE.Views.TableSettingsAdvanced.tipCellInner":"Definir linhas verticais e horizontais apenas para células internas","DE.Views.TableSettingsAdvanced.tipCellOuter":"Definir bordas externas apenas para células internas","DE.Views.TableSettingsAdvanced.tipInner":"Definir apenas linhas internas","DE.Views.TableSettingsAdvanced.tipNone":"Definir sem bordas","DE.Views.TableSettingsAdvanced.tipOuter":"Definir apenas borda externa","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"Definir borda externa e bordas para todas as células internas","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"Definir borda externa e linhas verticais e horizontais para células internas","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"Definir borda externa da tabela e bordas externas para células internas","DE.Views.TableSettingsAdvanced.txtCm":"Centímetro","DE.Views.TableSettingsAdvanced.txtInch":"Polegada","DE.Views.TableSettingsAdvanced.txtNoBorders":"Sem bordas","DE.Views.TableSettingsAdvanced.txtPercent":"Por cento","DE.Views.TableSettingsAdvanced.txtPt":"Ponto","DE.Views.TableToTextDialog.textEmpty":"Você deve digitar um caractere para o separador personalizado.","DE.Views.TableToTextDialog.textNested":"Converter tabelas aninhadas","DE.Views.TableToTextDialog.textOther":"Outro","DE.Views.TableToTextDialog.textPara":"Marcas de parágrafo","DE.Views.TableToTextDialog.textSemicolon":"Ponto e vírgula","DE.Views.TableToTextDialog.textSeparator":"Separe o texto com","DE.Views.TableToTextDialog.textTab":"Aba","DE.Views.TableToTextDialog.textTitle":"Converter tabela em texto","DE.Views.TextArtSettings.strColor":"Color","DE.Views.TextArtSettings.strFill":"Preencher","DE.Views.TextArtSettings.strSize":"Size","DE.Views.TextArtSettings.strStroke":"Linha","DE.Views.TextArtSettings.strTransparency":"Opacity","DE.Views.TextArtSettings.strType":"Tipo","DE.Views.TextArtSettings.textAngle":"Ângulo","DE.Views.TextArtSettings.textBorderSizeErr":"O valor inserido está incorreto.
Insira um valor entre 0 pt e 1.584 pt.","DE.Views.TextArtSettings.textColor":"Preenchimento de cor","DE.Views.TextArtSettings.textDirection":"Direção","DE.Views.TextArtSettings.textGradient":"Pontos de gradiente","DE.Views.TextArtSettings.textGradientFill":"Preenchimento gradiente","DE.Views.TextArtSettings.textLinear":"Linear","DE.Views.TextArtSettings.textNoFill":"Sem preenchimento","DE.Views.TextArtSettings.textPosition":"Posição","DE.Views.TextArtSettings.textRadial":"Radial","DE.Views.TextArtSettings.textSelectTexture":"Selecionar","DE.Views.TextArtSettings.textStyle":"Estilo","DE.Views.TextArtSettings.textTemplate":"Modelo","DE.Views.TextArtSettings.textTransform":"Transform","DE.Views.TextArtSettings.tipAddGradientPoint":"Adicionar ponto de gradiente","DE.Views.TextArtSettings.tipRemoveGradientPoint":"Remover ponto de gradiente","DE.Views.TextArtSettings.txtNoBorders":"Sem linha","DE.Views.TextToTableDialog.textAutofit":"Comportamento de Auto-ajuste","DE.Views.TextToTableDialog.textColumns":"Colunas","DE.Views.TextToTableDialog.textContents":"Adaptação automática ao conteúdo","DE.Views.TextToTableDialog.textEmpty":"Você deve digitar um caractere para o separador personalizado.","DE.Views.TextToTableDialog.textFixed":"Largura fixa da coluna","DE.Views.TextToTableDialog.textOther":"Outro","DE.Views.TextToTableDialog.textPara":"Parágrafos","DE.Views.TextToTableDialog.textRows":"Linhas","DE.Views.TextToTableDialog.textSemicolon":"Ponto e vírgula","DE.Views.TextToTableDialog.textSeparator":"Separar texto em","DE.Views.TextToTableDialog.textTab":"Aba","DE.Views.TextToTableDialog.textTableSize":"Tamanho da tabela","DE.Views.TextToTableDialog.textTitle":"Converter texto em tabela","DE.Views.TextToTableDialog.textWindow":"Ajustar automaticamente para janela","DE.Views.TextToTableDialog.txtAutoText":"Automático","DE.Views.Toolbar.capBtnAddComment":"Adicionar comentário","DE.Views.Toolbar.capBtnBlankPage":"Página em branco","DE.Views.Toolbar.capBtnColumns":"Colunas","DE.Views.Toolbar.capBtnComment":"Comentário","DE.Views.Toolbar.capBtnHand":"Mão","DE.Views.Toolbar.capBtnHyphenation":"Hifenização","DE.Views.Toolbar.capBtnInsChart":"Gráfico","DE.Views.Toolbar.capBtnInsControls":"Controles de conteúdo","DE.Views.Toolbar.capBtnInsDropcap":"Letra capitular","DE.Views.Toolbar.capBtnInsEquation":"Equação","DE.Views.Toolbar.capBtnInsHeader":"Cabeçalho/rodapé","DE.Views.Toolbar.capBtnInsPagebreak":"Quebras","DE.Views.Toolbar.capBtnInsShape":"Forma","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"Símbolo","DE.Views.Toolbar.capBtnInsTable":"Tabela","DE.Views.Toolbar.capBtnInsTextart":"Arte de texto","DE.Views.Toolbar.capBtnInsTextbox":"Caixa de texto","DE.Views.Toolbar.capBtnInsTextFromFile":"Texto do arquivo","DE.Views.Toolbar.capBtnLineNumbers":"Números de Linhas","DE.Views.Toolbar.capBtnMargins":"Margens","DE.Views.Toolbar.capBtnPageColor":"Cor da página","DE.Views.Toolbar.capBtnPageOrient":"Orientação","DE.Views.Toolbar.capBtnPageSize":"Tamanho","DE.Views.Toolbar.capBtnSelect":"Selecionar","DE.Views.Toolbar.capBtnWatermark":"Marca d'água","DE.Views.Toolbar.capColorScheme":"Cores","DE.Views.Toolbar.capImgAlign":"Alinhar","DE.Views.Toolbar.capImgBackward":"Enviar para trás","DE.Views.Toolbar.capImgForward":"Mover para frente","DE.Views.Toolbar.capImgGroup":"Grupo","DE.Views.Toolbar.capImgWrapping":"Quebra Automática","DE.Views.Toolbar.capShapesMerge":"Mesclar formas","DE.Views.Toolbar.mniCapitalizeWords":"Utilize cada palavra","DE.Views.Toolbar.mniCustomTable":"Inserir tabela personalizada","DE.Views.Toolbar.mniDrawTable":"Desenhar Tabela","DE.Views.Toolbar.mniEditControls":"Configurações de controle","DE.Views.Toolbar.mniEditDropCap":"Configurações avançadas de Letra capitular","DE.Views.Toolbar.mniEditFooter":"Editar rodapé","DE.Views.Toolbar.mniEditHeader":"Editar cabeçalho","DE.Views.Toolbar.mniEraseTable":"Apagar Tabela","DE.Views.Toolbar.mniFromFile":"Do Arquivo","DE.Views.Toolbar.mniFromStorage":"De armazenamento","DE.Views.Toolbar.mniFromUrl":"Da URL","DE.Views.Toolbar.mniHiddenBorders":"Ocultar bordas da tabela","DE.Views.Toolbar.mniHiddenChars":"Caracteres não imprimíveis","DE.Views.Toolbar.mniHighlightControls":"Configurações de destaque","DE.Views.Toolbar.mniInsertSSE":"Inserir planilha","DE.Views.Toolbar.mniLowerCase":"minúscula","DE.Views.Toolbar.mniRemoveFooter":"Remover rodapé","DE.Views.Toolbar.mniRemoveHeader":"Remover cabeçalho","DE.Views.Toolbar.mniSentenceCase":"Capitular o início de uma frase.","DE.Views.Toolbar.mniTextFromLocalFile":"Texto do arquivo local","DE.Views.Toolbar.mniTextFromStorage":"Texto do arquivo de armazenamento","DE.Views.Toolbar.mniTextFromURL":"Texto do arquivo de URL","DE.Views.Toolbar.mniTextToTable":"Converter Texto em Tabela","DE.Views.Toolbar.mniToggleCase":"aLTERNAR","DE.Views.Toolbar.mniUpperCase":"MAIÚSCULO","DE.Views.Toolbar.strMenuNoFill":"Sem preenchimento","DE.Views.Toolbar.textAddSpaceAfter":"Adicione espaço após o parágrafo","DE.Views.Toolbar.textAddSpaceBefore":"Adicione espaço antes do parágrafo","DE.Views.Toolbar.textAllBorders":"Todas as bordas","DE.Views.Toolbar.textAlpha":"Letra grega pequena Alfa","DE.Views.Toolbar.textAuto":"Automático","DE.Views.Toolbar.textAutoColor":"Automático","DE.Views.Toolbar.textBetta":"Letra grega pequena Betta","DE.Views.Toolbar.textBlackHeart":"Copas","DE.Views.Toolbar.textBold":"Negrito","DE.Views.Toolbar.textBordersColor":"Cor da borda","DE.Views.Toolbar.textBordersStyle":"Estilo da borda","DE.Views.Toolbar.textBottom":"Inferior: ","DE.Views.Toolbar.textBottomBorders":"Bordas inferiores","DE.Views.Toolbar.textBullet":"Marcador","DE.Views.Toolbar.textChangeLevel":"Alterar nível de lista","DE.Views.Toolbar.textCheckboxControl":"Caixa de seleção","DE.Views.Toolbar.textColumnsCustom":"Colunas personalizadas","DE.Views.Toolbar.textColumnsLeft":"Esquerda","DE.Views.Toolbar.textColumnsOne":"Uma","DE.Views.Toolbar.textColumnsRight":"Direita","DE.Views.Toolbar.textColumnsThree":"Três","DE.Views.Toolbar.textColumnsTwo":"Duas","DE.Views.Toolbar.textComboboxControl":"Caixa de Combinação","DE.Views.Toolbar.textContinuous":"Contínuo","DE.Views.Toolbar.textContPage":"Página contínua","DE.Views.Toolbar.textCopyright":"Assinatura de copyright","DE.Views.Toolbar.textCustomHyphen":"Opções de hifenização","DE.Views.Toolbar.textCustomLineNumbers":"Opções de numeração de linha","DE.Views.Toolbar.textDateControl":"Selecionador de data","DE.Views.Toolbar.textDegree":"Símbolo de grau","DE.Views.Toolbar.textDelta":"Letra grega pequena Delta","DE.Views.Toolbar.textDirLtr":"Da esquerda para a direita","DE.Views.Toolbar.textDirRtl":"Da direita para a esquerda","DE.Views.Toolbar.textDivision":"Sinal de divisão","DE.Views.Toolbar.textDollar":"Cifrão","DE.Views.Toolbar.textDropdownControl":"Lista suspensa","DE.Views.Toolbar.textEditMode":"Editar PDF","DE.Views.Toolbar.textEditWatermark":"Personalizar Marca d'água","DE.Views.Toolbar.textEuro":"Sinal de Euro","DE.Views.Toolbar.textEvenPage":"Página par","DE.Views.Toolbar.textGreaterEqual":"Maior que ou igual a","DE.Views.Toolbar.textIndAfter":"Recuo depois","DE.Views.Toolbar.textIndBefore":"Recuo antes","DE.Views.Toolbar.textIndLeft":"Recuo à esquerda","DE.Views.Toolbar.textIndRight":"Recuo à direita","DE.Views.Toolbar.textInfinity":"Infinidade","DE.Views.Toolbar.textInMargin":"Na margem","DE.Views.Toolbar.textInsColumnBreak":"Inserir quebra de coluna","DE.Views.Toolbar.textInsertPageCount":"Inserir número de páginas","DE.Views.Toolbar.textInsertPageNumber":"Inserir número da página","DE.Views.Toolbar.textInsideBorders":"Bordas interiores","DE.Views.Toolbar.textInsideHorBorders":"Bordas horizontais interiores","DE.Views.Toolbar.textInsideVertBorders":"Bordas verticais interiores","DE.Views.Toolbar.textInsPageBreak":"Inserir quebra de página","DE.Views.Toolbar.textInsSectionBreak":"Inserir quebra de seção","DE.Views.Toolbar.textInText":"No texto","DE.Views.Toolbar.textItalic":"Itálico","DE.Views.Toolbar.textLandscape":"Paisagem","DE.Views.Toolbar.textLeft":"Esquerda: ","DE.Views.Toolbar.textLeftBorders":"Bordas esquerdas","DE.Views.Toolbar.textLessEqual":"Menos que ou igual a","DE.Views.Toolbar.textLetterPi":"Letra grega pequena Pi","DE.Views.Toolbar.textLineSpaceOptions":"Opções de espaçamento entre linhas","DE.Views.Toolbar.textListSettings":"Configurações da lista","DE.Views.Toolbar.textMarginsLast":"Últimos personalizados","DE.Views.Toolbar.textMarginsModerate":"Moderado","DE.Views.Toolbar.textMarginsNarrow":"Estreito","DE.Views.Toolbar.textMarginsNormal":"Normal","DE.Views.Toolbar.textMarginsWide":"Amplo","DE.Views.Toolbar.textMoreSymbols":"Mais símbolos","DE.Views.Toolbar.textNewColor":"Mais cores","DE.Views.Toolbar.textNextPage":"Próxima Página","DE.Views.Toolbar.textNoBorders":"Sem bordas","DE.Views.Toolbar.textNoHighlight":"Sem destaque","DE.Views.Toolbar.textNone":"Nenhum","DE.Views.Toolbar.textNotEqualTo":"Não igual a","DE.Views.Toolbar.textOddPage":"Página Ímpar","DE.Views.Toolbar.textOneHalf":"Fração ordinária um segundo","DE.Views.Toolbar.textOneQuarter":"Fração ordinária um quarto","DE.Views.Toolbar.textOutBorders":"Bordas externas","DE.Views.Toolbar.textPageMarginsCustom":"Margens personalizadas","DE.Views.Toolbar.textPageSizeCustom":"Tamanho de página personalizado","DE.Views.Toolbar.textPictureControl":"Imagem","DE.Views.Toolbar.textPlainControl":"Texto simples","DE.Views.Toolbar.textPlusMinus":"Sinal de mais-menos","DE.Views.Toolbar.textPortrait":"Retrato ","DE.Views.Toolbar.textRegistered":"Símbolo de marca registrada","DE.Views.Toolbar.textRemoveControl":"Remover controle de conteúdo","DE.Views.Toolbar.textRemSpaceAfter":"Remover espaço após parágrafo","DE.Views.Toolbar.textRemSpaceBefore":"Remover espaço antes do parágrafo","DE.Views.Toolbar.textRemWatermark":"Excluir marca d'água","DE.Views.Toolbar.textRestartEachPage":"Reinicie cada página","DE.Views.Toolbar.textRestartEachSection":"Reiniciar cada uma das seções","DE.Views.Toolbar.textRichControl":"Texto rico","DE.Views.Toolbar.textRight":"Direita: ","DE.Views.Toolbar.textRightBorders":"Bordas direitas","DE.Views.Toolbar.textSection":"Sinal de seção","DE.Views.Toolbar.textShapesCombine":"Combinar","DE.Views.Toolbar.textShapesFragment":"Fragmento","DE.Views.Toolbar.textShapesIntersect":"Intersecção","DE.Views.Toolbar.textShapesSubstract":"Subtrair","DE.Views.Toolbar.textShapesUnion":"União","DE.Views.Toolbar.textSmile":"Rosto sorridente branco","DE.Views.Toolbar.textSpaceAfter":"Espaço após","DE.Views.Toolbar.textSpaceBefore":"Espaço anterior","DE.Views.Toolbar.textSquareRoot":"Raiz quadrada","DE.Views.Toolbar.textStrikeout":"Taxado","DE.Views.Toolbar.textStyleMenuDelete":"Excluir estilo","DE.Views.Toolbar.textStyleMenuDeleteAll":"Excluir todos os estilos personalizados","DE.Views.Toolbar.textStyleMenuNew":"Novo estilo a partir da seleção","DE.Views.Toolbar.textStyleMenuRestore":"Restaurar padrão","DE.Views.Toolbar.textStyleMenuRestoreAll":"Restaurar todos os estilos padrão","DE.Views.Toolbar.textStyleMenuUpdate":"Atualizar da seleção","DE.Views.Toolbar.textSubscript":"Subscrito","DE.Views.Toolbar.textSuperscript":"Sobrescrito","DE.Views.Toolbar.textSuppressForCurrentParagraph":"Suprimir para o parágrafo atual","DE.Views.Toolbar.textTabCollaboration":"Colaboração","DE.Views.Toolbar.textTabDraw":"Desenhar","DE.Views.Toolbar.textTabFile":"Arquivo","DE.Views.Toolbar.textTabHeaderFooter":"Cabeçalho/rodapé","DE.Views.Toolbar.textTabHome":"Página Inicial","DE.Views.Toolbar.textTabInsert":"Inserir","DE.Views.Toolbar.textTabLayout":"Layout","DE.Views.Toolbar.textTabLinks":"Referências","DE.Views.Toolbar.textTabProtect":"Proteção","DE.Views.Toolbar.textTabReview":"Revisar","DE.Views.Toolbar.textTabView":"Ver","DE.Views.Toolbar.textTilde":"Til","DE.Views.Toolbar.textTitleError":"Erro","DE.Views.Toolbar.textToCurrent":"Para posição atual","DE.Views.Toolbar.textTop":"Parte superior: ","DE.Views.Toolbar.textTopBorders":"Bordas superiores","DE.Views.Toolbar.textTradeMark":"Sinal de marca registrada","DE.Views.Toolbar.textUnderline":"Sublinhado","DE.Views.Toolbar.textYen":"Sinal de iene","DE.Views.Toolbar.tipAlignCenter":"Alinhar ao centro","DE.Views.Toolbar.tipAlignJust":"Justificado","DE.Views.Toolbar.tipAlignLeft":"Alinhar à esquerda","DE.Views.Toolbar.tipAlignRight":"Alinhar à direita","DE.Views.Toolbar.tipBack":"Voltar","DE.Views.Toolbar.tipBlankPage":"Inserir página em branco","DE.Views.Toolbar.tipBorders":"Bordas","DE.Views.Toolbar.tipChangeCase":"Mudar maiúsculas e minúsculas","DE.Views.Toolbar.tipChangeChart":"Alterar Tipo de Gráfico","DE.Views.Toolbar.tipClearStyle":"Limpar estilo","DE.Views.Toolbar.tipColorSchemas":"Alterar esquema de cor","DE.Views.Toolbar.tipColumns":"Inserir colunas","DE.Views.Toolbar.tipControls":"Adicionar controles de conteúdo","DE.Views.Toolbar.tipCopy":"Copiar","DE.Views.Toolbar.tipCopyStyle":"Copiar estilo","DE.Views.Toolbar.tipCut":"Cortar","DE.Views.Toolbar.tipDecFont":"Diminuir tamanho da fonte","DE.Views.Toolbar.tipDecPrLeft":"Diminuir o Recuo","DE.Views.Toolbar.tipDownload":"Baixar arquivo","DE.Views.Toolbar.tipDropCap":"Inserir letra capitular","DE.Views.Toolbar.tipEditMode":"Edite o arquivo atual.
A página será recarregada.","DE.Views.Toolbar.tipFontColor":"Cor da fonte","DE.Views.Toolbar.tipFontName":"Fonte","DE.Views.Toolbar.tipFontSize":"Tamanho da fonte","DE.Views.Toolbar.tipHandTool":"Ferramenta de mão","DE.Views.Toolbar.tipHighlightColor":"Cor de realce","DE.Views.Toolbar.tipHyphenation":"Alterar hifenização","DE.Views.Toolbar.tipImgAlign":"Alinhar objetos","DE.Views.Toolbar.tipImgGroup":"Agrupar objetos","DE.Views.Toolbar.tipImgWrapping":"Quebrar texto ","DE.Views.Toolbar.tipIncFont":"Aumentar tamanho da fonte","DE.Views.Toolbar.tipIncPrLeft":"Aumentar recuo","DE.Views.Toolbar.tipInsertChart":"Inserir gráfico","DE.Views.Toolbar.tipInsertEquation":"Inserir equação","DE.Views.Toolbar.tipInsertHorizontalText":"Inserir caixa de texto horizontal","DE.Views.Toolbar.tipInsertNum":"Inserir número da página","DE.Views.Toolbar.tipInsertShape":"Inserir forma","DE.Views.Toolbar.tipInsertSmartArt":"Inserir SmartArt","DE.Views.Toolbar.tipInsertSymbol":"Inserir símbolo","DE.Views.Toolbar.tipInsertTable":"Inserir tabela","DE.Views.Toolbar.tipInsertText":"Inserir caixa de texto","DE.Views.Toolbar.tipInsertTextArt":"Inserir arte de texto","DE.Views.Toolbar.tipInsertVerticalText":"Inserir caixa de texto vertical","DE.Views.Toolbar.tipLineNumbers":"Mostrar números de linha","DE.Views.Toolbar.tipLineSpace":"Espaçamento entre linhas do parágrafo","DE.Views.Toolbar.tipMailRecepients":"Mescla de e-mail","DE.Views.Toolbar.tipMarkers":"Marcadores","DE.Views.Toolbar.tipMarkersArrow":"Balas de flecha","DE.Views.Toolbar.tipMarkersCheckmark":"Marcas de verificação","DE.Views.Toolbar.tipMarkersDash":"Marcadores de roteiro","DE.Views.Toolbar.tipMarkersFRhombus":"Vinhetas rômbicas cheias","DE.Views.Toolbar.tipMarkersFRound":"Balas redondas cheias","DE.Views.Toolbar.tipMarkersFSquare":"Balas quadradas cheias","DE.Views.Toolbar.tipMarkersHRound":"Balas redondas ocas","DE.Views.Toolbar.tipMarkersStar":"Balas de estrelas","DE.Views.Toolbar.tipMultiLevelArticl":"Artigos numerados em vários níveis","DE.Views.Toolbar.tipMultiLevelChapter":"Capítulos numerados em vários níveis","DE.Views.Toolbar.tipMultiLevelHeadings":"Títulos numerados em vários níveis","DE.Views.Toolbar.tipMultiLevelHeadVarious":"Vários títulos numerados de vários níveis","DE.Views.Toolbar.tipMultiLevelNumbered":"Marcadores numerados de vários níveis","DE.Views.Toolbar.tipMultilevels":"Contorno","DE.Views.Toolbar.tipMultiLevelSymbols":"Marcadores de símbolos de vários níveis","DE.Views.Toolbar.tipMultiLevelVarious":"Várias balas numeradas de vários níveis","DE.Views.Toolbar.tipNumbers":"Numeração","DE.Views.Toolbar.tipPageBreak":"Inserir página ou quebra de seção","DE.Views.Toolbar.tipPageColor":"Alterar a cor da página","DE.Views.Toolbar.tipPageMargins":"Margens da página","DE.Views.Toolbar.tipPageOrient":"Orientação da página","DE.Views.Toolbar.tipPageSize":"Tamanho da página","DE.Views.Toolbar.tipParagraphStyle":"Estilo do parágrafo","DE.Views.Toolbar.tipPaste":"Colar","DE.Views.Toolbar.tipPrColor":"Cor do plano de fundo do parágrafo","DE.Views.Toolbar.tipPrint":"Imprimir","DE.Views.Toolbar.tipPrintQuick":"Impressão rápida","DE.Views.Toolbar.tipRedo":"Refazer","DE.Views.Toolbar.tipReplace":"Substituir","DE.Views.Toolbar.tipSave":"Salvar","DE.Views.Toolbar.tipSaveCoauth":"Salvar suas alterações para que os outros usuários as vejam.","DE.Views.Toolbar.tipSelectAll":"Selecionar todos","DE.Views.Toolbar.tipSelectTool":"Selecionar ferramenta","DE.Views.Toolbar.tipSendBackward":"Enviar para trás","DE.Views.Toolbar.tipSendForward":"Mover para frente","DE.Views.Toolbar.tipShapesMerge":"Mesclar formas","DE.Views.Toolbar.tipShowHiddenChars":"Caracteres não imprimíveis","DE.Views.Toolbar.tipSynchronize":"O documento foi alterado por outro usuário. Clique para salvar suas alterações e recarregar as atualizações.","DE.Views.Toolbar.tipTextDir":"Direção do texto","DE.Views.Toolbar.tipTextFromFile":"Texto do arquivo","DE.Views.Toolbar.tipUndo":"Desfazer","DE.Views.Toolbar.tipWatermark":"Editar marca d'água","DE.Views.Toolbar.txtAutoText":"Automático","DE.Views.Toolbar.txtDistribHor":"Distribuir horizontalmente","DE.Views.Toolbar.txtDistribVert":"Distribuir verticalmente","DE.Views.Toolbar.txtGroupBulletDoc":"Marcadores de documento","DE.Views.Toolbar.txtGroupBulletLib":"Biblioteca de marcadores","DE.Views.Toolbar.txtGroupMultiDoc":"Listas no documento atual","DE.Views.Toolbar.txtGroupMultiLib":"Listar biblioteca","DE.Views.Toolbar.txtGroupNumDoc":"Formatos de numeração de documentos","DE.Views.Toolbar.txtGroupNumLib":"Biblioteca de numeração","DE.Views.Toolbar.txtGroupRecent":"Usado recentemente","DE.Views.Toolbar.txtMarginAlign":"Alinhar à margem","DE.Views.Toolbar.txtObjectsAlign":"Alinhar objetos selecionados","DE.Views.Toolbar.txtPageAlign":"Alinhar à página","DE.Views.ViewTab.textAlwaysShowToolbar":"Sempre mostrar a barra de ferramentas","DE.Views.ViewTab.textDarkDocument":"Documento escuro","DE.Views.ViewTab.textFill":"Preencher","DE.Views.ViewTab.textFitToPage":"Ajustar a página","DE.Views.ViewTab.textFitToWidth":"Ajustar largura","DE.Views.ViewTab.textInterfaceTheme":"Tema de interface","DE.Views.ViewTab.textLeftMenu":"Painel esquerdo","DE.Views.ViewTab.textLine":"Linha","DE.Views.ViewTab.textMacros":"Macros","DE.Views.ViewTab.textMultiplePages":"Múltiplas páginas","DE.Views.ViewTab.textNavigation":"Navegação","DE.Views.ViewTab.textOutline":"Cabeçalhos","DE.Views.ViewTab.textPauseMacro":"Pausar gravação","DE.Views.ViewTab.textRecMacro":"Registrar macro","DE.Views.ViewTab.textResumeMacro":"Retomar a gravação","DE.Views.ViewTab.textRightMenu":"Painel direito","DE.Views.ViewTab.textRulers":"Regras","DE.Views.ViewTab.textStatusBar":"Barra de status","DE.Views.ViewTab.textStopMacro":"Interrompa a gravação","DE.Views.ViewTab.textTabStyle":"Estilo da guia","DE.Views.ViewTab.textZoom":"Ampliação","DE.Views.ViewTab.textZoom100":"Ampliar para 100%","DE.Views.ViewTab.tipDarkDocument":"Documento escuro","DE.Views.ViewTab.tipFitToPage":"Ajustar a página","DE.Views.ViewTab.tipFitToWidth":"Ajustar largura","DE.Views.ViewTab.tipHeadings":"Títulos","DE.Views.ViewTab.tipInterfaceTheme":"Tema de interface","DE.Views.ViewTab.tipMacros":"Macros","DE.Views.ViewTab.tipMultiplePages":"Múltiplas páginas","DE.Views.ViewTab.tipPauseMacro":"Pausar gravação","DE.Views.ViewTab.tipRecMacro":"Registrar macro","DE.Views.ViewTab.tipResumeMacro":"Retomar a gravação","DE.Views.ViewTab.tipStopMacro":"Interrompa a gravação","DE.Views.ViewTab.tipZoom100":"Ampliar para 100%","DE.Views.WatermarkSettingsDialog.textAuto":"Automático","DE.Views.WatermarkSettingsDialog.textBold":"Negrito","DE.Views.WatermarkSettingsDialog.textColor":"Cor do texto","DE.Views.WatermarkSettingsDialog.textDiagonal":"Diagonal","DE.Views.WatermarkSettingsDialog.textFont":"Fonte","DE.Views.WatermarkSettingsDialog.textFromFile":"Do Arquivo","DE.Views.WatermarkSettingsDialog.textFromStorage":"De armazenamento","DE.Views.WatermarkSettingsDialog.textFromUrl":"Da URL","DE.Views.WatermarkSettingsDialog.textHor":"Horizontal","DE.Views.WatermarkSettingsDialog.textImageW":"Marca d'água de imagem","DE.Views.WatermarkSettingsDialog.textItalic":"Itálico","DE.Views.WatermarkSettingsDialog.textLanguage":"Idioma","DE.Views.WatermarkSettingsDialog.textLayout":"Layout","DE.Views.WatermarkSettingsDialog.textNone":"Nenhum","DE.Views.WatermarkSettingsDialog.textScale":"Redimensionar","DE.Views.WatermarkSettingsDialog.textSelect":"Selecionar Imagem","DE.Views.WatermarkSettingsDialog.textStrikeout":"Tachado","DE.Views.WatermarkSettingsDialog.textText":"Тexto","DE.Views.WatermarkSettingsDialog.textTextW":"Marca d'água de texto","DE.Views.WatermarkSettingsDialog.textTitle":"Configurações de marca d'água","DE.Views.WatermarkSettingsDialog.textTransparency":"Semitransparente","DE.Views.WatermarkSettingsDialog.textUnderline":"Sublinhar","DE.Views.WatermarkSettingsDialog.tipFontName":"Nome da Fonte","DE.Views.WatermarkSettingsDialog.tipFontSize":"Tamanho da fonte"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":"Aviso","Common.Controllers.Desktop.hintBtnHome":"Mostrar janela principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Criar a partir do modelo","Common.Controllers.ExternalDiagramEditor.textAnonymous":"Anônimo","Common.Controllers.ExternalDiagramEditor.textClose":"Fechar","Common.Controllers.ExternalDiagramEditor.warningText":"O objeto está desabilitado por que está sendo editado por outro usuário.","Common.Controllers.ExternalDiagramEditor.warningTitle":"Aviso","Common.Controllers.ExternalLinks.textAddExternalData":"O link para uma fonte externa foi adicionado. Você pode atualizar esses links na guia Dados.","Common.Controllers.ExternalLinks.textDontUpdate":"Não atualize","Common.Controllers.ExternalLinks.textUpdate":"Atualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Erro: falha na atualização","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Esta pasta de trabalho contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta apresentação contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalMergeEditor.textAnonymous":"Anônimo","Common.Controllers.ExternalMergeEditor.textClose":"Fechar","Common.Controllers.ExternalMergeEditor.warningText":"O objeto está desabilitado por que está sendo editado por outro usuário.","Common.Controllers.ExternalMergeEditor.warningTitle":"Aviso","Common.Controllers.ExternalOleEditor.textAnonymous":"Anônimo","Common.Controllers.ExternalOleEditor.textClose":"Fechar","Common.Controllers.ExternalOleEditor.warningText":"O objeto está desabilitado por que está sendo editado por outro usuário.","Common.Controllers.ExternalOleEditor.warningTitle":"Aviso","Common.Controllers.History.notcriticalErrorTitle":"Aviso","Common.Controllers.History.txtErrorLoadHistory":"O carregamento de histórico falhou","Common.Controllers.Plugins.helpMoveMacros":"Para começar a trabalhar com macros, vá para a guia Exibir.","Common.Controllers.Plugins.helpMoveMacrosHeader":"O botão Macros movido","Common.Controllers.Plugins.helpUseMacros":"Localize o botão Macros aqui","Common.Controllers.Plugins.helpUseMacrosHeader":"Acesso atualizado a macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Os plug-ins foram instalados com sucesso. Você pode acessar todos os plugins de fundo aqui.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} foi instalado com sucesso. Você pode acessar todos os plugins de fundo aqui.","Common.Controllers.Plugins.textRunInstalledPlugins":"Execute plug-ins instalados","Common.Controllers.Plugins.textRunPlugin":"Executar plugin","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"Para comparar os documentos, todas as alterações neles serão consideradas aceitas. Deseja continuar?","Common.Controllers.ReviewChanges.textAtLeast":"pelo menos","Common.Controllers.ReviewChanges.textAuto":"auto","Common.Controllers.ReviewChanges.textBaseline":"Linha de base","Common.Controllers.ReviewChanges.textBold":"Negrito","Common.Controllers.ReviewChanges.textBreakBefore":"Quebra de página antes","Common.Controllers.ReviewChanges.textCaps":"Todas maiúsculas","Common.Controllers.ReviewChanges.textCenter":"Alinhar ao centro","Common.Controllers.ReviewChanges.textChar":"Nivel de caracter","Common.Controllers.ReviewChanges.textChart":"Gráfico","Common.Controllers.ReviewChanges.textColor":"Cor da fonte","Common.Controllers.ReviewChanges.textContextual":"Não adicionar intervalo entre parágrafos do mesmo estilo","Common.Controllers.ReviewChanges.textDeleted":"Excluído:","Common.Controllers.ReviewChanges.textDStrikeout":"Tachado duplo","Common.Controllers.ReviewChanges.textEquation":"Equação","Common.Controllers.ReviewChanges.textExact":"exatamente","Common.Controllers.ReviewChanges.textFirstLine":"Primeira linha","Common.Controllers.ReviewChanges.textFontSize":"Tamanho da fonte","Common.Controllers.ReviewChanges.textFormatted":"Formatado","Common.Controllers.ReviewChanges.textHighlight":"Cor de realce","Common.Controllers.ReviewChanges.textImage":"Imagem","Common.Controllers.ReviewChanges.textIndentLeft":"Recuo à esquerda","Common.Controllers.ReviewChanges.textIndentRight":"Recuo à direita","Common.Controllers.ReviewChanges.textInserted":"Inserido:","Common.Controllers.ReviewChanges.textItalic":"Itálico","Common.Controllers.ReviewChanges.textJustify":"Alinhamento justificado","Common.Controllers.ReviewChanges.textKeepLines":"Manter as linhas juntas","Common.Controllers.ReviewChanges.textKeepNext":"Manter com o próximo","Common.Controllers.ReviewChanges.textLeft":"Alinhar à esquerda","Common.Controllers.ReviewChanges.textLineSpacing":"Espaçamento entre linhas:","Common.Controllers.ReviewChanges.textMultiple":"múltiplo","Common.Controllers.ReviewChanges.textNoBreakBefore":"Sem quebra de página antes","Common.Controllers.ReviewChanges.textNoContextual":"Adicionar intervalo entre parágrafos do mesmo estilo","Common.Controllers.ReviewChanges.textNoKeepLines":"Não mantenha linhas juntas","Common.Controllers.ReviewChanges.textNoKeepNext":"Não mantenha com o próximo","Common.Controllers.ReviewChanges.textNot":"Não","Common.Controllers.ReviewChanges.textNoWidow":"Sem controle de linhas órfãs/viúvas","Common.Controllers.ReviewChanges.textNum":"Alterar numeração","Common.Controllers.ReviewChanges.textOff":"{0} não está mais usando o Controle de Alterações.","Common.Controllers.ReviewChanges.textOffGlobal":"{0} Rastreamento de Alterações desabilitado para todos. ","Common.Controllers.ReviewChanges.textOn":"{0} usando controle de alterações. ","Common.Controllers.ReviewChanges.textOnGlobal":"{0} Rastreamento de Alterações habilitado para todos.","Common.Controllers.ReviewChanges.textParaDeleted":"Parágrafo deletado","Common.Controllers.ReviewChanges.textParaFormatted":"Parágrafo formatado","Common.Controllers.ReviewChanges.textParaInserted":"Parágrafo inserido","Common.Controllers.ReviewChanges.textParaMoveFromDown":"Movido para baixo:","Common.Controllers.ReviewChanges.textParaMoveFromUp":"Movido para cima:","Common.Controllers.ReviewChanges.textParaMoveTo":"Movido:","Common.Controllers.ReviewChanges.textPosition":"Posição","Common.Controllers.ReviewChanges.textRight":"Alinhar à direita","Common.Controllers.ReviewChanges.textShape":"Forma","Common.Controllers.ReviewChanges.textShd":"Cor do plano de fundo","Common.Controllers.ReviewChanges.textShow":"Mostrar mudanças em","Common.Controllers.ReviewChanges.textSmallCaps":"Versalete","Common.Controllers.ReviewChanges.textSpacing":"Espaçamento","Common.Controllers.ReviewChanges.textSpacingAfter":"Espaçamento depois","Common.Controllers.ReviewChanges.textSpacingBefore":"Espaçamento antes","Common.Controllers.ReviewChanges.textStrikeout":"Taxado","Common.Controllers.ReviewChanges.textSubScript":"Subscrito","Common.Controllers.ReviewChanges.textSuperScript":"Sobrescrito","Common.Controllers.ReviewChanges.textTableChanged":"Configurações da tabela alteradas","Common.Controllers.ReviewChanges.textTableRowsAdd":"Linhas da tabela incluídas","Common.Controllers.ReviewChanges.textTableRowsDel":"Linhas da tabela excluídas","Common.Controllers.ReviewChanges.textTabs":"Alterar guias","Common.Controllers.ReviewChanges.textTitleComparison":"Configurações de comparação","Common.Controllers.ReviewChanges.textUnderline":"Sublinhado","Common.Controllers.ReviewChanges.textUrl":"Colar um arquivo URL","Common.Controllers.ReviewChanges.textWidow":"Controle de linhas órfãs/viúvas","Common.Controllers.ReviewChanges.textWord":"Nível de palavra","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Adicione uma nova linha na parte inferior da tabela.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Aplique o estilo do título 1 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Aplique o estilo do título 2 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Aplique o estilo do título 3 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Crie uma lista com marcadores não ordenada a partir do fragmento de texto selecionado ou inicie uma nova.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Use a seta do teclado para mover o objeto selecionado um passo grande para baixo.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Use a seta do teclado para mover o objeto selecionado um grande passo para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Use a seta do teclado para mover o objeto selecionado um grande passo para a direita.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Use a seta do teclado para mover o objeto selecionado um passo maior para cima.","Common.Controllers.Shortcuts.txtDescriptionBold":"Deixe a fonte do fragmento de texto selecionado mais escura e pesada que o normal.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Alternar um parágrafo entre centralizado e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Escolha a próxima opção de caixa de combinação no formulário.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Selecione a opção de caixa de combinação anterior no formulário.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Feche a janela do documento atual.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Feche um menu ou janela modal. Redefina pop-ups e balões com comentários e revise alterações. Redefina o modo de desenho e apagamento de tabela. Redefina o recurso de arrastar e soltar texto. Redefina o modo de seleção de marcadores. Redefina o modo de pincel de formatação. Desmarque formas. Redefina o modo de adição de formas. Saia do cabeçalho/rodapé. Saia do preenchimento de formulários.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Envie o fragmento de texto selecionado para a área de transferência do computador. O texto copiado pode ser posteriormente inserido em outro local do mesmo documento, em outro documento ou em algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Copie a formatação do fragmento selecionado do texto editado no momento. A formatação copiada pode ser aplicada posteriormente a outro fragmento de texto no mesmo documento.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Insira um símbolo de direitos autorais no documento atual e à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionCut":"Exclua o fragmento de texto selecionado e envie-o para a área de transferência do computador. O texto copiado pode ser posteriormente inserido em outro local do mesmo documento, em outro documento ou em algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Diminua o tamanho da fonte do fragmento de texto selecionado em 1 ponto.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Exclua um caractere à esquerda do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Exclua uma palavra/seleção/objeto gráfico à esquerda do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Exclua um caractere à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Exclua uma palavra/seleção/objeto gráfico à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Quando o título do gráfico for selecionado, se o título estiver vazio, mova o cursor para o início da linha; caso contrário, selecione o texto.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repita a última ação desfeita.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Selecione todo o texto do documento com tabelas e imagens.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Quando a forma for selecionada, se ela não contiver conteúdo, crie conteúdo e mova o cursor para o início da linha. Se o conteúdo estiver vazio, mova o cursor até ele; caso contrário, selecione todo o conteúdo.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Reverter a última ação executada.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Insira um travessão dentro do documento atual e à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insira um travessão dentro do documento atual e à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Termine o parágrafo atual e comece um novo.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Inicie um novo parágrafo dentro de uma célula.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Adicione um novo espaço reservado ao argumento da equação.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Altere o nível de alinhamento do operador para a esquerda (para a segunda linha da equação com uma quebra forçada).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Altere o nível de alinhamento do operador para a direita (para a segunda linha da equação com uma quebra forçada).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Insira o símbolo do Euro na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Insira o sinal de reticências na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar o tamanho da fonte do fragmento de texto selecionado em 1 ponto.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Recuar um parágrafo incrementalmente a partir da esquerda.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Adicione uma quebra de coluna.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Insira uma nota final.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"Insira uma equação na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Insira uma nota de rodapé.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insira um hiperlink que pode ser usado para acessar um endereço da web.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Adicione uma quebra de linha sem iniciar um novo parágrafo.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Adicione uma quebra de linha no formulário multilinha.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"Inserir uma quebra de página na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Adicione o número da página atual na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Adicione o caractere de tabulação a um parágrafo (se o cursor não estiver no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Insira uma quebra de tabela dentro da tabela.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Deixe a fonte do fragmento de texto selecionado em itálico e levemente inclinada.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Alternar um parágrafo entre justificado e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinhar um parágrafo à esquerda.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para baixo, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para a esquerda, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para a direita, um pixel de cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para cima, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Aumentar o recuo dos parágrafos selecionados.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Diminua o recuo dos parágrafos selecionados.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Mover o foco para o próximo objeto depois do atualmente selecionado.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Move o foco para o objeto anterior ao atualmente selecionado.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Mova o cursor uma linha para baixo.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Coloque o cursor no final do documento atualmente editado.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Coloque o cursor no final da linha atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Mova o cursor uma palavra para a direita.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Mova o cursor um caractere para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Mover para o cabeçalho inferior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Mover para o cabeçalho/rodapé inferior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Vá para a próxima célula em uma linha da tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Passar para o próximo formulário.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Ir para a próxima página no documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Ir para a próxima linha em uma tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Ir para a célula anterior em uma linha da tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Mover para o formulário anterior.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Ir para a página anterior no documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Ir para a linha anterior em uma tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Mova o cursor um caractere para a direita.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Coloque o cursor no início do documento atualmente editado.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Coloque o cursor no início da linha atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Coloque o cursor no início da página seguinte à que está sendo editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Coloque o cursor no início da página que precede a página atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Mova o cursor para o início de uma palavra ou uma palavra para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Mova o cursor uma linha para cima.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Mover para o cabeçalho superior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Mover para o cabeçalho/rodapé superior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Alterne para a próxima guia de arquivo no Desktop Editors ou para a guia do navegador no Online Editors..","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Navegue entre os controles para dar foco ao próximo controle nos diálogos modais.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Crie um hífen entre os caracteres, que não pode ser usado para iniciar uma nova linha.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Crie um espaço entre os caracteres que não possa ser usado para iniciar uma nova linha.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abra o painel de bate-papo nos editores on-line e envie uma mensagem.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abra um campo de entrada de dados onde você pode adicionar o texto do seu comentário.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abra o painel Comentários para adicionar seu próprio comentário ou responder aos comentários de outros usuários.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abra o menu contextual do elemento selecionado.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abra a caixa de diálogo padrão que permite selecionar um arquivo existente. Se você selecionar o arquivo nesta caixa de diálogo e clicar em Abrir, o arquivo será aberto em uma nova aba ou janela do Desktop Editors.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abra o painel Arquivo para salvar, baixar, imprimir o documento atual, visualizar suas informações, criar um novo documento ou abrir um existente, acessar a Central de Ajuda do Editor de Documentos ou configurações avançadas.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abra o menu (painel) Localizar e Substituir com o campo de substituição para substituir uma ou mais ocorrências dos caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abra a janela de diálogo Localizar para começar a procurar um caractere/palavra/frase no documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abra o menu Ajuda do Document Editor.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insira o fragmento de texto copiado anteriormente da memória da área de transferência do computador na posição atual do cursor. O texto pode ter sido copiado anteriormente do mesmo documento, de outro documento ou de algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Aplique a formatação copiada anteriormente ao texto no documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Insira o fragmento de texto copiado anteriormente da memória da área de transferência do computador na posição atual do cursor, sem preservar sua formatação original. O texto pode ter sido copiado anteriormente do mesmo documento, de outro documento ou de algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Alterne para a guia de arquivo anterior no Desktop Editors ou para a guia do navegador no Online Editors.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Navegue entre os controles para dar foco ao controle anterior em diálogos modais.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprima o documento em uma das impressoras disponíveis ou salve-o como um arquivo.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Insira o sinal de marca registrada na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Substitua o código Unicode selecionado por um símbolo.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Limpar formatação do fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Alternar um parágrafo entre alinhado à direita e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionSave":"Salve todas as alterações no documento atualmente editado com o Editor de Documentos. O arquivo ativo será salvo com seu nome, local e formato de arquivo atuais.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Abra o painel Baixar como... para salvar o documento editado no momento no disco rígido do seu computador em um dos formatos suportados.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Role o documento aproximadamente uma página visível para baixo.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Role o documento aproximadamente uma página visível para cima.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Selecione um caractere à esquerda da posição do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Selecione um fragmento de texto do cursor até o início de uma palavra.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mova o cursor uma linha para baixo, selecionando todos os símbolos entre a posição anterior e atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mova o cursor uma linha para cima, selecionando todos os símbolos entre a posição anterior e atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Selecione a parte da página da posição do cursor até a parte inferior da tela.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Selecione a parte da página da posição do cursor até a parte superior da tela.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Selecione um caractere à direita da posição do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Selecione um fragmento de texto do cursor até o final de uma palavra.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Selecione um fragmento de texto do cursor até o início da próxima página.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Selecione um fragmento de texto do cursor até o início da página anterior.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Selecione um fragmento de texto do cursor até o final do documento.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Selecione um fragmento de texto do cursor até o final da linha atual.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Selecione um fragmento de texto do cursor até o início do documento.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Selecione um fragmento de texto do cursor até o início da linha atual.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Mostrar ou ocultar a exibição de caracteres não imprimíveis.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Insira o sinal de hífen suave na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Mantenha a formatação original do texto copiado.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Cole o texto sem a formatação original.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Cole a tabela copiada como uma tabela aninhada na célula selecionada da tabela existente.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Substitua o conteúdo da tabela existente pelos dados copiados.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Habilita/desabilita a transmissão de ações realizadas no aplicativo para leitores de tela.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Aumentar o nível de lista/recuo (com o cursor no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Diminua o nível da lista/recuo (com o cursor no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Faça com que o fragmento de texto selecionado seja riscado com uma linha passando pelas letras.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Reduza o tamanho do fragmento de texto selecionado e coloque-o na parte inferior da linha de texto, por exemplo, como em fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Reduza o tamanho do fragmento de texto selecionado e coloque-o na parte superior da linha de texto, por exemplo, como em frações.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Insira o sinal de marca registrada na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Faça com que o fragmento de texto selecionado seja sublinhado com uma linha abaixo das letras.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Remover um recuo de parágrafo da esquerda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Atualizar campos (por exemplo, Índice).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visite um hiperlink (com o cursor no hiperlink).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Redefina o parâmetro 'Zoom' do documento atual para o padrão 100%.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Ampliar o documento editado no momento.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Diminua o zoom do documento editado no momento.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AdicionarNovaLinha","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"AplicarCabeçalho1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"AplicarCabeçalho2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"AplicarCabeçalho3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"Aplicar lista de marcadores","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"GrandeMovimentoObjetoParaBaixo","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"Grande movimento do objeto para a esquerda","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"Grande movimento do objeto para a direita","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"Grande movimento de objeto para cima","Common.Controllers.Shortcuts.txtLabelBold":"Negrito","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copiar","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cortar","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Recuar","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertHyperlink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Itálico","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Colar","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Salvar","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Tachado","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscrito","Common.Controllers.Shortcuts.txtLabelSuperscript":"Sobrescrito","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"Sinal de marca registrada","Common.Controllers.Shortcuts.txtLabelUnderline":"Sublinhado","Common.Controllers.Shortcuts.txtLabelUnIndent":"Desfazer recuo","Common.Controllers.Shortcuts.txtLabelUpdateFields":"Campos de atualização","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"Visite o link","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área empilhada","Common.define.chartData.textAreaStackedPer":"100% Área alinhada","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Colunas agrupadas","Common.define.chartData.textBarNormal3d":"3-D Coluna agrupada","Common.define.chartData.textBarNormal3dPerspective":"Coluna 3-D","Common.define.chartData.textBarStacked":"Coluna alinhada","Common.define.chartData.textBarStacked3d":"Coluna empilhada 3-D","Common.define.chartData.textBarStackedPer":"100% Coluna alinhada","Common.define.chartData.textBarStackedPer3d":"3-D 100% Coluna alinhada","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Coluna","Common.define.chartData.textCombo":"Combo","Common.define.chartData.textComboAreaBar":"Área empilhada - coluna agrupada","Common.define.chartData.textComboBarLine":"Coluna agrupada - linha","Common.define.chartData.textComboBarLineSecondary":"Coluna agrupada - linha no eixo secundário","Common.define.chartData.textComboCustom":"Combinação personalizada","Common.define.chartData.textDoughnut":"Rosquinha","Common.define.chartData.textHBarNormal":"Barras agrupadas","Common.define.chartData.textHBarNormal3d":"3-D Barra agrupada","Common.define.chartData.textHBarStacked":"Barra alinhada","Common.define.chartData.textHBarStacked3d":"Barra empilhada 3-D","Common.define.chartData.textHBarStackedPer":"100% Barra alinhada","Common.define.chartData.textHBarStackedPer3d":"3-D 100% Barra alinhada","Common.define.chartData.textLine":"Linha","Common.define.chartData.textLine3d":"Linha 3-D","Common.define.chartData.textLineMarker":"Linha com marcadores","Common.define.chartData.textLineStacked":"Alinhado","Common.define.chartData.textLineStackedMarker":"Linha empilhada com marcadores","Common.define.chartData.textLineStackedPer":"100% Alinhado","Common.define.chartData.textLineStackedPerMarker":"100% Alinhado com marcadores","Common.define.chartData.textPie":"Gráfico de pizza","Common.define.chartData.textPie3d":"Pizza 3-D","Common.define.chartData.textPoint":"Gráfico de dispersão","Common.define.chartData.textRadar":"Radar","Common.define.chartData.textRadarFilled":"Radar com marcadores","Common.define.chartData.textRadarMarker":"Radar com marcadores","Common.define.chartData.textScatter":"Dispersão","Common.define.chartData.textScatterLine":"Dispersão com linhas retas","Common.define.chartData.textScatterLineMarker":"Dispersão com linhas retas e marcadores","Common.define.chartData.textScatterSmooth":"Dispersão com linhas suaves","Common.define.chartData.textScatterSmoothMarker":"Dispersão com linhas suaves e marcadores","Common.define.chartData.textStock":"Gráfico de ações","Common.define.chartData.textSurface":"Superfície","Common.define.smartArt.textAccentedPicture":"Imagem em destaque","Common.define.smartArt.textAccentProcess":"Processo em destaque","Common.define.smartArt.textAlternatingFlow":"Fluxo alternado","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternados","Common.define.smartArt.textAlternatingPictureBlocks":"Blocos de imagem alternados","Common.define.smartArt.textAlternatingPictureCircles":"Círculos de imagens alternadas","Common.define.smartArt.textArchitectureLayout":"Layout de arquitetura","Common.define.smartArt.textArrowRibbon":"Seta em forma de fita","Common.define.smartArt.textAscendingPictureAccentProcess":"Processo de ênfase da imagem ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Processo curvo básico","Common.define.smartArt.textBasicBlockList":"Lista básica de blocos","Common.define.smartArt.textBasicChevronProcess":"Processo básico em divisas","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Gráfico de pizza básico","Common.define.smartArt.textBasicProcess":"Processo básico","Common.define.smartArt.textBasicPyramid":"Pirâmide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Alvo básico","Common.define.smartArt.textBasicTimeline":"Linha do tempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista de ênfase de imagem de curvatura","Common.define.smartArt.textBendingPictureBlocks":"Blocos de imagem de curvatura","Common.define.smartArt.textBendingPictureCaption":"Legenda de imagem de curvatura","Common.define.smartArt.textBendingPictureCaptionList":"Lista de legendas de imagens de curvatura","Common.define.smartArt.textBendingPictureSemiTranparentText":"Texto semi-transparente de imagem de curvatura","Common.define.smartArt.textBlockCycle":"Ciclo em bloco","Common.define.smartArt.textBubblePictureList":"Lista de imagens em bolha","Common.define.smartArt.textCaptionedPictures":"Imagens legendadas","Common.define.smartArt.textChevronAccentProcess":"Processo de ênfase em divisas","Common.define.smartArt.textChevronList":"Lista de divisas","Common.define.smartArt.textCircleAccentTimeline":"Linha do tempo de ênfase circular","Common.define.smartArt.textCircleArrowProcess":"Processo de seta circular","Common.define.smartArt.textCirclePictureHierarchy":"Hierarquia de imagem circular","Common.define.smartArt.textCircleProcess":"Processo circular","Common.define.smartArt.textCircleRelationship":"Relacionamento circular","Common.define.smartArt.textCircularBendingProcess":"Processo curvo circular","Common.define.smartArt.textCircularPictureCallout":"Texto explicativo de imagem circular","Common.define.smartArt.textClosedChevronProcess":"Processo fechado em divisas","Common.define.smartArt.textContinuousArrowProcess":"Processo de seta contínua","Common.define.smartArt.textContinuousBlockProcess":"Processo de bloco contínuo","Common.define.smartArt.textContinuousCycle":"Ciclo contínuo","Common.define.smartArt.textContinuousPictureList":"Lista de imagem contínua","Common.define.smartArt.textConvergingArrows":"Setas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Setas contrabalançadas ","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista descendente de blocos ","Common.define.smartArt.textDescendingProcess":"Processo descendente","Common.define.smartArt.textDetailedProcess":"Processo detalhado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Equação","Common.define.smartArt.textFramedTextPicture":"Imagem de texto emoldurada","Common.define.smartArt.textFunnel":"Funil","Common.define.smartArt.textGear":"Engrenagem","Common.define.smartArt.textGridMatrix":"Matriz de grade","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organograma de meio círculo","Common.define.smartArt.textHexagonCluster":"Conjunto hexagonal","Common.define.smartArt.textHexagonRadial":"Radial Hexágono","Common.define.smartArt.textHierarchy":"Hierarquia","Common.define.smartArt.textHierarchyList":"Lista de hierarquia","Common.define.smartArt.textHorizontalBulletList":"Lista de marcadores horizontais","Common.define.smartArt.textHorizontalHierarchy":"Hierarquia horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Hierarquia horizontal rotulada","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Hierarquia horizontal multinível","Common.define.smartArt.textHorizontalOrganizationChart":"Organograma horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista de imagens horizontais","Common.define.smartArt.textIncreasingArrowProcess":"Processo de seta crescente","Common.define.smartArt.textIncreasingCircleProcess":"Processo de círculo crescente","Common.define.smartArt.textInterconnectedBlockProcess":"Processo de bloco interconectado","Common.define.smartArt.textInterconnectedRings":"Anéis interconectados","Common.define.smartArt.textInvertedPyramid":"Pirâmide invertida","Common.define.smartArt.textLabeledHierarchy":"Hierarquia rotulada","Common.define.smartArt.textLinearVenn":"Venn Linear","Common.define.smartArt.textLinedList":"Lista alinhada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidirecional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organograma de nome e título","Common.define.smartArt.textNestedTarget":"Alvo aninhado","Common.define.smartArt.textNondirectionalCycle":"Ciclo não direcional","Common.define.smartArt.textOpposingArrows":"Setas opostas","Common.define.smartArt.textOpposingIdeas":"Ideias opostas","Common.define.smartArt.textOrganizationChart":"Organograma","Common.define.smartArt.textOther":"Outro","Common.define.smartArt.textPhasedProcess":"Processo em fases","Common.define.smartArt.textPicture":"Imagem","Common.define.smartArt.textPictureAccentBlocks":"Blocos de destaque de imagem","Common.define.smartArt.textPictureAccentList":"Lista de destaques da imagem","Common.define.smartArt.textPictureAccentProcess":"Processo de destaque da imagem","Common.define.smartArt.textPictureCaptionList":"Lista de legendas de imagens","Common.define.smartArt.textPictureFrame":"Porta-retrato","Common.define.smartArt.textPictureGrid":"Grade de imagens","Common.define.smartArt.textPictureLineup":"Alinhamento de imagens","Common.define.smartArt.textPictureOrganizationChart":"Organograma de imagens","Common.define.smartArt.textPictureStrips":"Tiras de imagem","Common.define.smartArt.textPieProcess":"Processo em pizza","Common.define.smartArt.textPlusAndMinus":"Mais e menos","Common.define.smartArt.textProcess":"Processo","Common.define.smartArt.textProcessArrows":"Setas de processo","Common.define.smartArt.textProcessList":"Lista de processos","Common.define.smartArt.textPyramid":"Pirâmide","Common.define.smartArt.textPyramidList":"Lista de pirâmides","Common.define.smartArt.textRadialCluster":"Aglomerado radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista de imagens radiais","Common.define.smartArt.textRadialVenn":"Venn Radial","Common.define.smartArt.textRandomToResultProcess":"Processo aleatório para resultado","Common.define.smartArt.textRelationship":"Relação","Common.define.smartArt.textRepeatingBendingProcess":"Processo curvo de repetição","Common.define.smartArt.textReverseList":"Lista reversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Processo segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirâmide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de fotos instantâneas","Common.define.smartArt.textSpiralPicture":"Imagem em espiral","Common.define.smartArt.textSquareAccentList":"Lista de destaque quadrada","Common.define.smartArt.textStackedList":"Lista empilhada","Common.define.smartArt.textStackedVenn":"Venn Empilhado","Common.define.smartArt.textStaggeredProcess":"Processo escalonado","Common.define.smartArt.textStepDownProcess":"Processo de redução","Common.define.smartArt.textStepUpProcess":"Processo de intensificação","Common.define.smartArt.textSubStepProcess":"Processo de subetapas","Common.define.smartArt.textTabbedArc":"Arco com abas","Common.define.smartArt.textTableHierarchy":"Hierarquia da tabela","Common.define.smartArt.textTableList":"Lista de tabelas","Common.define.smartArt.textTabList":"Lista de guias","Common.define.smartArt.textTargetList":"Lista de alvos","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Destaque da imagem de tema","Common.define.smartArt.textThemePictureAlternatingAccent":"Destaque alternado da imagem do tema","Common.define.smartArt.textThemePictureGrid":"Grade de imagens do tema","Common.define.smartArt.textTitledMatrix":"Matriz intitulada","Common.define.smartArt.textTitledPictureAccentList":"Lista de destaque de imagem intitulada","Common.define.smartArt.textTitledPictureBlocks":"Blocos de imagens intitulados","Common.define.smartArt.textTitlePictureLineup":"Alinhamento da imagem do título","Common.define.smartArt.textTrapezoidList":"Lista trapezoidal","Common.define.smartArt.textUpwardArrow":"Seta para cima","Common.define.smartArt.textVaryingWidthList":"Lista de largura variável","Common.define.smartArt.textVerticalAccentList":"Lista de acentos verticais","Common.define.smartArt.textVerticalArrowList":"Lista de setas verticais","Common.define.smartArt.textVerticalBendingProcess":"Processo vertical em curva","Common.define.smartArt.textVerticalBlockList":"Lista de bloqueio vertical","Common.define.smartArt.textVerticalBoxList":"Lista de caixa vertical","Common.define.smartArt.textVerticalBracketList":"Lista de colchetes verticais","Common.define.smartArt.textVerticalBulletList":"Lista de marcadores verticais","Common.define.smartArt.textVerticalChevronList":"Lista vertical em divisas","Common.define.smartArt.textVerticalCircleList":"Lista de círculos verticais","Common.define.smartArt.textVerticalCurvedList":"Lista vertical curva","Common.define.smartArt.textVerticalEquation":"Equação vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista de destaque de imagens verticais","Common.define.smartArt.textVerticalPictureList":"Lista de imagens verticais","Common.define.smartArt.textVerticalProcess":"Processo vertical","Common.Translation.textMoreButton":"Mais","Common.Translation.tipFileLocked":"O documento está bloqueado para edição. Você pode fazer alterações e salvá-lo como cópia local mais tarde.","Common.Translation.tipFileReadOnly":"O arquivo é somente leitura. Para manter suas alterações, salve o arquivo com um novo nome ou em um local diferente.","Common.Translation.warnFileLocked":"Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.","Common.Translation.warnFileLockedBtnEdit":"Criar uma cópia","Common.Translation.warnFileLockedBtnView":"Aberto para visualização","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Conta-gotas","Common.UI.ButtonColored.textNewColor":"Mais cores","Common.UI.Calendar.textApril":"Abril","Common.UI.Calendar.textAugust":"Agosto","Common.UI.Calendar.textDecember":"Dezembro","Common.UI.Calendar.textFebruary":"Fevereiro","Common.UI.Calendar.textJanuary":"Janeiro","Common.UI.Calendar.textJuly":"Julho","Common.UI.Calendar.textJune":"Junho","Common.UI.Calendar.textMarch":"Março","Common.UI.Calendar.textMay":"Mai","Common.UI.Calendar.textMonths":"Meses","Common.UI.Calendar.textNovember":"Novembro","Common.UI.Calendar.textOctober":"Outubro","Common.UI.Calendar.textSeptember":"Setembro","Common.UI.Calendar.textShortApril":"Abr","Common.UI.Calendar.textShortAugust":"Ago","Common.UI.Calendar.textShortDecember":"Dez","Common.UI.Calendar.textShortFebruary":"Fev","Common.UI.Calendar.textShortFriday":"Fr","Common.UI.Calendar.textShortJanuary":"Jan","Common.UI.Calendar.textShortJuly":"Jul","Common.UI.Calendar.textShortJune":"Jun","Common.UI.Calendar.textShortMarch":"Mar","Common.UI.Calendar.textShortMay":"Maio","Common.UI.Calendar.textShortMonday":"Me","Common.UI.Calendar.textShortNovember":"Nov","Common.UI.Calendar.textShortOctober":"Out","Common.UI.Calendar.textShortSaturday":"Sáb","Common.UI.Calendar.textShortSeptember":"Set","Common.UI.Calendar.textShortSunday":"Dom","Common.UI.Calendar.textShortThursday":"º","Common.UI.Calendar.textShortTuesday":"Ter","Common.UI.Calendar.textShortWednesday":"Qua","Common.UI.Calendar.textYears":"Anos","Common.UI.ComboBorderSize.txtNoBorders":"Sem bordas","Common.UI.ComboBorderSizeEditable.txtNoBorders":"Sem bordas","Common.UI.ComboDataView.emptyComboText":"Sem estilos","Common.UI.ExtendedColorDialog.addButtonText":"Incluir","Common.UI.ExtendedColorDialog.textCurrent":"Atual","Common.UI.ExtendedColorDialog.textHexErr":"O valor inserido está incorreto.
Insira um valor entre 000000 e FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Novo","Common.UI.ExtendedColorDialog.textRGBErr":"O valor inserido está incorreto.
Insira um valor numérico entre 0 e 255.","Common.UI.HSBColorPicker.textNoColor":"Sem cor","Common.UI.InputField.txtEmpty":"Este campo é obrigatório","Common.UI.InputFieldBtnCalendar.textDate":"Selecione a data","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar palavra-chave","Common.UI.InputFieldBtnPassword.textHintHold":"Pressione e segure para mostrar a senha","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar senha","Common.UI.SearchBar.textFind":"Localizar","Common.UI.SearchBar.tipCloseSearch":"Fechar pesquisa","Common.UI.SearchBar.tipNextResult":"Próximo resultado","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abra as configurações avançadas","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Destacar resultados","Common.UI.SearchDialog.textMatchCase":"Diferenciar maiúsculas de minúsculas","Common.UI.SearchDialog.textReplaceDef":"Inserir o texto de substituição","Common.UI.SearchDialog.textSearchStart":"Insira seu texto aqui","Common.UI.SearchDialog.textTitle":"Localizar e substituir","Common.UI.SearchDialog.textTitle2":"Localizar","Common.UI.SearchDialog.textWholeWords":"Palavras inteiras apenas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar Substituição","Common.UI.SearchDialog.txtBtnReplace":"Substituir","Common.UI.SearchDialog.txtBtnReplaceAll":"Substituir tudo","Common.UI.SynchronizeTip.textDontShow":"Não exibir esta mensagem novamente","Common.UI.SynchronizeTip.textGotIt":"Entendi","Common.UI.SynchronizeTip.textNew":"Novo","Common.UI.SynchronizeTip.textSynchronize":"O documento foi alterado por outro usuário.
Clique para salvar suas alterações e recarregar as atualizações.","Common.UI.ThemeColorPalette.textRecentColors":"Cores recentes","Common.UI.ThemeColorPalette.textStandartColors":"Cores padronizadas","Common.UI.ThemeColorPalette.textThemeColors":"Cores de tema","Common.UI.ThemeColorPalette.textTransparent":"Transparente","Common.UI.Themes.txtThemeClassicLight":"Clássico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste escuro","Common.UI.Themes.txtThemeDark":"Escuro","Common.UI.Themes.txtThemeGray":"Cinza","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Escuro moderno","Common.UI.Themes.txtThemeModernLight":"Claro moderno","Common.UI.Themes.txtThemeSystem":"O mesmo que sistema","Common.UI.Themes.txtThemeWhite":"Branco","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Fechar","Common.UI.Window.noButtonText":"Não","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Confirmação","Common.UI.Window.textDontShow":"Não exibir esta mensagem novamente","Common.UI.Window.textError":"Erro","Common.UI.Window.textInformation":"Informações","Common.UI.Window.textWarning":"Aviso","Common.UI.Window.yesButtonText":"Sim","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"Pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"Acento","Common.Utils.ThemeColor.txtAqua":"Aqua","Common.Utils.ThemeColor.txtbackground":"Plano de fundo","Common.Utils.ThemeColor.txtBlack":"Preto","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde claro","Common.Utils.ThemeColor.txtBrown":"Marrom","Common.Utils.ThemeColor.txtDarkBlue":"Azul escuro","Common.Utils.ThemeColor.txtDarker":"Mais escura","Common.Utils.ThemeColor.txtDarkGray":"Cinza escuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde-escuro","Common.Utils.ThemeColor.txtDarkPurple":"Roxo escuro","Common.Utils.ThemeColor.txtDarkRed":"Vermelho escuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde-azulado escuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarelo escuro","Common.Utils.ThemeColor.txtGold":"Ouro","Common.Utils.ThemeColor.txtGray":"Cinza","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Índigo","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Isqueiro","Common.Utils.ThemeColor.txtLightGray":"Cinza claro","Common.Utils.ThemeColor.txtLightGreen":"Luz verde","Common.Utils.ThemeColor.txtLightOrange":"Laranja claro","Common.Utils.ThemeColor.txtLightYellow":"Luz amarela","Common.Utils.ThemeColor.txtOrange":"Laranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Roxo","Common.Utils.ThemeColor.txtRed":"Vermelho","Common.Utils.ThemeColor.txtRose":"Rosa","Common.Utils.ThemeColor.txtSkyBlue":"Céu azul","Common.Utils.ThemeColor.txtTeal":"Azul-petróleo","Common.Utils.ThemeColor.txttext":"Тexto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Branco","Common.Utils.ThemeColor.txtYellow":"Amarelo","Common.Views.About.txtAddress":"endereço:","Common.Views.About.txtLicensee":"LICENÇA","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"e-mail:","Common.Views.About.txtPoweredBy":"Desenvolvido por","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versão","Common.Views.AutoCorrectDialog.textAdd":"Adicionar","Common.Views.AutoCorrectDialog.textApplyText":"Aplicar enquanto você digita","Common.Views.AutoCorrectDialog.textAutoCorrect":"Autocorreção","Common.Views.AutoCorrectDialog.textAutoFormat":"Auto Formatação conforme você digita","Common.Views.AutoCorrectDialog.textBulleted":"Listas com marcadores automáticas","Common.Views.AutoCorrectDialog.textBy":"Por","Common.Views.AutoCorrectDialog.textDelete":"Excluir","Common.Views.AutoCorrectDialog.textDoubleSpaces":"Adicionar ponto com espaço duplo","Common.Views.AutoCorrectDialog.textFLCells":"Capitalizar a primeira letra das células da tabela","Common.Views.AutoCorrectDialog.textFLDont":"Não colocar a primeira letra em maiúscula após","Common.Views.AutoCorrectDialog.textFLSentence":"Capitalizar a primeira carta de sentenças","Common.Views.AutoCorrectDialog.textForLangFL":"Exceções para o idioma:","Common.Views.AutoCorrectDialog.textHyperlink":"Internet e caminhos de rede com hyperlinks","Common.Views.AutoCorrectDialog.textHyphens":"Hífens (--) com traço (-)","Common.Views.AutoCorrectDialog.textMathCorrect":"Autocorreção matemática","Common.Views.AutoCorrectDialog.textNumbered":"Listas com numeradores automáticos","Common.Views.AutoCorrectDialog.textQuotes":"\"Aspas retas\" com \"aspas inteligentes\"","Common.Views.AutoCorrectDialog.textRecognized":"Funções Reconhecidas","Common.Views.AutoCorrectDialog.textRecognizedDesc":"As seguintes expressões são expressões matemáticas reconhecidas. Eles não ficarão em itálico automaticamente.","Common.Views.AutoCorrectDialog.textReplace":"Substituir","Common.Views.AutoCorrectDialog.textReplaceText":"Substituir ao Digitar","Common.Views.AutoCorrectDialog.textReplaceType":"Substitua o texto enquanto você digita","Common.Views.AutoCorrectDialog.textReset":"Redefinir","Common.Views.AutoCorrectDialog.textResetAll":"Voltar para predefinições","Common.Views.AutoCorrectDialog.textRestore":"Restaurar","Common.Views.AutoCorrectDialog.textTitle":"Autocorreção","Common.Views.AutoCorrectDialog.textWarnAddFL":"As exceções devem conter apenas letras, maiúsculas ou minúsculas.","Common.Views.AutoCorrectDialog.textWarnAddRec":"As funções reconhecidas devem conter apenas as letras de A a Z, maiúsculas ou minúsculas.","Common.Views.AutoCorrectDialog.textWarnResetFL":"Quaisquer exceções que você adicionou serão removidas e as removidas serão restauradas. Deseja continuar?","Common.Views.AutoCorrectDialog.textWarnResetRec":"Qualquer expressão que tenha acrescentado será removida e as expressões removidas serão restauradas. Quer continuar?","Common.Views.AutoCorrectDialog.warnReplace":"A correção automática para %1 já existe. Quer substituir?","Common.Views.AutoCorrectDialog.warnReset":"Qualquer autocorrecção que tenha adicionado será removida e as alterações serão restauradas aos seus valores originais. Quer continuar?","Common.Views.AutoCorrectDialog.warnRestore":"A entrada de autocorreção para %1 será redefinida para seu valor original. Você quer continuar?","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Fechar chat","Common.Views.Chat.textEnterMessage":"Insira sua mensagem aqui","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor Z a A","Common.Views.Comments.mniDateAsc":"Mais antigo","Common.Views.Comments.mniDateDesc":"Novidades","Common.Views.Comments.mniFilterComments":"Mostrar comentários","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"De cima","Common.Views.Comments.mniPositionDesc":"Do fundo","Common.Views.Comments.textAdd":"Incluir","Common.Views.Comments.textAddComment":"Adicionar comentário","Common.Views.Comments.textAddCommentToDoc":"Adicionar comentário ao documento","Common.Views.Comments.textAddReply":"Adicionar resposta","Common.Views.Comments.textAll":"Todos","Common.Views.Comments.textAnonym":"Visitante","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Fechar","Common.Views.Comments.textClosePanel":"Comentários próximos","Common.Views.Comments.textComment":"Comentário","Common.Views.Comments.textComments":"Comentários","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Insira seu comentário aqui","Common.Views.Comments.textHintAddComment":"Adicionar comentário","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir novamente","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resolvido","Common.Views.Comments.textSort":"Ordenar comentários","Common.Views.Comments.textSortFilter":"Classifique e filtre comentários","Common.Views.Comments.textSortFilterMore":"Classificar, filtrar e muito mais","Common.Views.Comments.textSortMore":"Classificar e muito mais","Common.Views.Comments.textViewResolved":"Você não tem permissão para reabrir comentários","Common.Views.Comments.txtEmpty":"Não há comentários no documento.","Common.Views.CopyWarningDialog.textDontShow":"Não exibir esta mensagem novamente","Common.Views.CopyWarningDialog.textMsg":"As ações copiar, cortar e colar usando os botões da barra de ferramentas do editor e as ações de menu de contexto serão realizadas apenas nesta aba do editor.

Para copiar ou colar para ou de aplicativos externos a aba do editor, use as seguintes combinações do teclado:","Common.Views.CopyWarningDialog.textTitle":"Ações de cortar, copiar e colar","Common.Views.CopyWarningDialog.textToCopy":"para Copiar","Common.Views.CopyWarningDialog.textToCut":"para Cortar","Common.Views.CopyWarningDialog.textToPaste":"para Colar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Baixar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Verifique os comandos que serão exibidos na Barra de Ferramentas de Acesso Rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impressão rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Refazer","Common.Views.CustomizeQuickAccessDialog.textSave":"Salvar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalize o acesso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Desfazer","Common.Views.DocumentAccessDialog.textLoading":"Carregando...","Common.Views.DocumentAccessDialog.textTitle":"Configurações de compartilhamento","Common.Views.DocumentPropertyDialog.errorDate":"Você pode escolher um valor do calendário para armazenar o valor como Data.
Se você inserir um valor manualmente, ele será armazenado como Texto.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"Não","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"Sim","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"A propriedade deve ter um título","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"Titulo","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"“Sim” ou ”Não”","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"Data","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"Tipo","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"Número","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"Forneça um número válido","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"Тexto","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"A propriedade deve ter um valor","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"Valor","Common.Views.DocumentPropertyDialog.txtTitle":"Propriedade do novo documento","Common.Views.Draw.hintEraser":"Apagador","Common.Views.Draw.hintSelect":"Selecionar","Common.Views.Draw.txtEraser":"Apagador","Common.Views.Draw.txtHighlighter":"Marcador","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Caneta","Common.Views.Draw.txtSelect":"Selecionar","Common.Views.Draw.txtSize":"Tamanho","Common.Views.ExternalDiagramEditor.textTitle":"Editor de gráfico","Common.Views.ExternalEditor.textClose":"Fechar","Common.Views.ExternalEditor.textSave":"Salvar e Sair","Common.Views.ExternalLinksDlg.closeButtonText":"Fechar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Atualizar automaticamente os dados das fontes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Mudar fonte","Common.Views.ExternalLinksDlg.textDelete":"Quebrar links","Common.Views.ExternalLinksDlg.textDeleteAll":"Quebrar todos os links","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Código aberto","Common.Views.ExternalLinksDlg.textSource":"Fonte","Common.Views.ExternalLinksDlg.textStatus":"Status","Common.Views.ExternalLinksDlg.textUnknown":"Desconhecido","Common.Views.ExternalLinksDlg.textUpdate":"Atualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Atualize tudo","Common.Views.ExternalLinksDlg.textUpdating":"Atualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Links externos","Common.Views.ExternalMergeEditor.textTitle":"Mail Merge destinatários","Common.Views.ExternalOleEditor.textTitle":"Editor de planilhas","Common.Views.FormatSettingsDialog.textCategory":"Categoria","Common.Views.FormatSettingsDialog.textDecimal":"Decimal","Common.Views.FormatSettingsDialog.textFormat":"Formatar","Common.Views.FormatSettingsDialog.textLinked":"Ligado à fonte","Common.Views.FormatSettingsDialog.textLocale":"Localidade","Common.Views.FormatSettingsDialog.textSeparator":"Usar separador 1.000","Common.Views.FormatSettingsDialog.textSymbols":"Símbolos","Common.Views.FormatSettingsDialog.textTitle":"Formato Numérico","Common.Views.FormatSettingsDialog.txtAccounting":"Contabilidade","Common.Views.FormatSettingsDialog.txtAs10":"Em décimos (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"Em centésimos (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"Em décimo sexto (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"Em metades (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"Em quartos (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"Em oitavos (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"Moeda","Common.Views.FormatSettingsDialog.txtCustom":"Personalizar","Common.Views.FormatSettingsDialog.txtCustomWarning":"Insira o formato de número personalizado com cuidado. O Editor de planilhas não verifica os formatos personalizados em busca de erros que possam afetar o arquivo xlsx.","Common.Views.FormatSettingsDialog.txtDate":"Data","Common.Views.FormatSettingsDialog.txtFraction":"Fração","Common.Views.FormatSettingsDialog.txtGeneral":"Geral","Common.Views.FormatSettingsDialog.txtNone":"Nenhum","Common.Views.FormatSettingsDialog.txtNumber":"Número","Common.Views.FormatSettingsDialog.txtPercentage":"Porcentagem","Common.Views.FormatSettingsDialog.txtSample":"Amostra:","Common.Views.FormatSettingsDialog.txtScientific":"Científico","Common.Views.FormatSettingsDialog.txtText":"Тexto","Common.Views.FormatSettingsDialog.txtTime":"Tempo","Common.Views.FormatSettingsDialog.txtUpto1":"Até um dígito (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"Até dois dígitos (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"Até três dígitos (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"Barra de ferramentas de acesso rápido","Common.Views.Header.labelCoUsersDescr":"Usuários que estão editando o arquivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Configurações avançadas","Common.Views.Header.textBack":"Local do arquivo aberto","Common.Views.Header.textClose":"Fechar Arquivo","Common.Views.Header.textCompactView":"Ocultar barra de ferramentas","Common.Views.Header.textDocEditDesc":"Faça quaisquer alterações","Common.Views.Header.textDocViewDesc":"Visualize o arquivo, mas não faça alterações","Common.Views.Header.textDocViewFormDesc":"Veja como ficará o formulário ao preencher","Common.Views.Header.textDownload":"Baixar","Common.Views.Header.textEdit":"Editando","Common.Views.Header.textHideLines":"Ocultar Réguas","Common.Views.Header.textHideStatusBar":"Ocultar barra de status","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Somente leitura","Common.Views.Header.textRemoveFavorite":"Remover dos Favoritos","Common.Views.Header.textReview":"Revisão","Common.Views.Header.textReviewDesc":"Sugerir alterações","Common.Views.Header.textShare":"Compartilhar","Common.Views.Header.textStartFill":"Compartilhar e coletar","Common.Views.Header.textView":"Visualizando","Common.Views.Header.textViewForm":"Pré-visualização","Common.Views.Header.textZoom":"Ampliação","Common.Views.Header.tipAccessRights":"Gerenciar direitos de acesso ao documento","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalize a barra de ferramentas de acesso rápido","Common.Views.Header.tipDocEdit":"Editando","Common.Views.Header.tipDocView":"Visualizando","Common.Views.Header.tipDocViewForm":"Visualizando formulário","Common.Views.Header.tipDownload":"Baixar arquivo","Common.Views.Header.tipFillStatus":"Status de preenchimento","Common.Views.Header.tipGoEdit":"Editar arquivo atual","Common.Views.Header.tipPrint":"Imprimir arquivo","Common.Views.Header.tipPrintQuick":"Impressão rápida","Common.Views.Header.tipRedo":"Refazer","Common.Views.Header.tipReview":"Revisão","Common.Views.Header.tipSave":"Gravar","Common.Views.Header.tipSearch":"Pesquisar","Common.Views.Header.tipUndo":"Desfazer","Common.Views.Header.tipUsers":"Ver usuários","Common.Views.Header.tipViewSettings":"Visualizar configurações","Common.Views.Header.tipViewUsers":"Ver usuários e gerenciar direitos de acesso ao documento","Common.Views.Header.txtAccessRights":"Alterar direitos de acesso","Common.Views.Header.txtRename":"Renomear","Common.Views.History.textCloseHistory":"Fechar histórico","Common.Views.History.textHide":"Minimizar","Common.Views.History.textHideAll":"Ocultar alterações detalhadas ","Common.Views.History.textHighlightDeleted":"Destaque excluído","Common.Views.History.textMore":"Mais","Common.Views.History.textRestore":"Restaurar","Common.Views.History.textShow":"Expandir","Common.Views.History.textShowAll":"Mostrar alterações detalhadas","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"Histórico de versão","Common.Views.ImageFromUrlDialog.textUrl":"Colar uma URL de imagem:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo é obrigatório","Common.Views.ImageFromUrlDialog.txtNotUrl":"Este campo deve ser uma URL no formato \"http://www.example.com\"","Common.Views.InsertTableDialog.textInvalidRowsCols":"Você precisa especificar a contagem de linhas e colunas válida.","Common.Views.InsertTableDialog.txtColumns":"Número de colunas","Common.Views.InsertTableDialog.txtMaxText":"O valor máximo para este campo é {0}.","Common.Views.InsertTableDialog.txtMinText":"O valor mínimo para este campo é {0}.","Common.Views.InsertTableDialog.txtRows":"Número de linhas","Common.Views.InsertTableDialog.txtTitle":"Tamanho da tabela","Common.Views.InsertTableDialog.txtTitleSplit":"Dividir célula","Common.Views.LanguageDialog.labelSelect":"Selecionar idioma do documento","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Insira um prompt para a consulta","Common.Views.MacrosAiDialog.textCreate":"Criar","Common.Views.MacrosDialog.textAutostart":"Início automático","Common.Views.MacrosDialog.textConvertFromVBA":"Converter do VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Converter macros do VBA","Common.Views.MacrosDialog.textCopy":"Copiar","Common.Views.MacrosDialog.textCreateFromDesc":"Criar a partir da descrição","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Criar macros a partir da descrição","Common.Views.MacrosDialog.textCustomFunction":"Função personalizada","Common.Views.MacrosDialog.textCustomFunctions":"Funções personalizadas","Common.Views.MacrosDialog.textDebug":"Depurar","Common.Views.MacrosDialog.textDelete":"Excluir","Common.Views.MacrosDialog.textFunctions":"Funções","Common.Views.MacrosDialog.textLoading":"Carregando...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Faça o início automático","Common.Views.MacrosDialog.textRename":"Renomear","Common.Views.MacrosDialog.textRun":"Executar","Common.Views.MacrosDialog.textSave":"Salvar","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Desfazer inicialização automática","Common.Views.MacrosDialog.tipAI":"IA","Common.Views.MacrosDialog.tipFunctionAdd":"Adicionar função personalizada","Common.Views.MacrosDialog.tipFunctionCopy":"Copiar função personalizada","Common.Views.MacrosDialog.tipFunctionDelete":"Excluir função personalizada","Common.Views.MacrosDialog.tipFunctionRename":"Renomear função personalizada","Common.Views.MacrosDialog.tipMacrosAdd":"Adicionar macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copiar macros","Common.Views.MacrosDialog.tipMacrosDebug":"Macros de depuração","Common.Views.MacrosDialog.tipMacrosRename":"Renomear macros","Common.Views.MacrosDialog.tipMacrosRun":"Executar","Common.Views.MacrosDialog.tipRedo":"Refazer","Common.Views.MacrosDialog.tipUndo":"Desfazer","Common.Views.OpenDialog.closeButtonText":"Fechar Arquivo","Common.Views.OpenDialog.txtEncoding":"Codificação","Common.Views.OpenDialog.txtIncorrectPwd":"Senha incorreta.","Common.Views.OpenDialog.txtOpenFile":"Inserir a Senha para Abrir o Arquivo","Common.Views.OpenDialog.txtPassword":"Senha","Common.Views.OpenDialog.txtPreview":"Visualizar","Common.Views.OpenDialog.txtProtected":"Ao abrir o arquivo com sua senha, a senha atual será redefinida.","Common.Views.OpenDialog.txtTitle":"Escolher opções %1","Common.Views.OpenDialog.txtTitleProtected":"Arquivo protegido","Common.Views.PasswordDialog.txtDescription":"Defina uma senha para proteger o documento","Common.Views.PasswordDialog.txtIncorrectPwd":"A confirmação da senha não é idêntica","Common.Views.PasswordDialog.txtPassword":"Senha","Common.Views.PasswordDialog.txtRepeat":"Repetir a senha","Common.Views.PasswordDialog.txtTitle":"Definir senha","Common.Views.PasswordDialog.txtWarning":"Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.","Common.Views.PdfSignDialog.textBefore":"Before signing this document, verify that the content you are signing is correct","Common.Views.PdfSignDialog.textClear":"Clear","Common.Views.PdfSignDialog.textFromFile":"From File","Common.Views.PdfSignDialog.textFromStorage":"From Storage","Common.Views.PdfSignDialog.textFromUrl":"From URL","Common.Views.PdfSignDialog.textLooksAs":"Signature looks as","Common.Views.PdfSignDialog.textSelect":"Select Image","Common.Views.PdfSignDialog.tipRedo":"Redo","Common.Views.PdfSignDialog.tipUndo":"Undo","Common.Views.PdfSignDialog.txtDraw":"Draw","Common.Views.PdfSignDialog.txtRemBack":"Remove white background","Common.Views.PdfSignDialog.txtTitle":"Signature","Common.Views.PdfSignDialog.txtType":"Type","Common.Views.PdfSignDialog.txtUpload":"Upload","Common.Views.PdfSignDialog.txtUploadDesc":"You can upload images in JPEG, JPG, GIF and PNG formats with a max size of 30 Mb","Common.Views.PluginDlg.textDock":"Plugin de pinos","Common.Views.PluginDlg.textLoading":"Carregamento","Common.Views.PluginPanel.textClosePanel":"Fechar plug-in","Common.Views.PluginPanel.textHidePanel":"Recolher plugin","Common.Views.PluginPanel.textLoading":"Carregando","Common.Views.PluginPanel.textUndock":"Desafixar plugin","Common.Views.Plugins.groupCaption":"Plug-ins","Common.Views.Plugins.strPlugins":"Plug-ins","Common.Views.Plugins.textBackgroundPlugins":"Plug-ins em segundo plano","Common.Views.Plugins.textClosePanel":"Fechar plug-in","Common.Views.Plugins.textLoading":"Carregamento","Common.Views.Plugins.textSettings":"Configurações","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Parar","Common.Views.Plugins.textTheListOfBackgroundPlugins":"A lista de plug-ins de segundo plano","Common.Views.Plugins.tipMore":"Mais","Common.Views.Protection.hintAddPwd":"Criptografar com senha","Common.Views.Protection.hintDelPwd":"Excluir senha","Common.Views.Protection.hintPwd":"Alterar ou excluir senha","Common.Views.Protection.hintSignature":"Inserir assinatura digital ou linha de assinatura","Common.Views.Protection.txtAddPwd":"Inserir a senha","Common.Views.Protection.txtChangePwd":"Alterar senha","Common.Views.Protection.txtDeletePwd":"Excluir senha","Common.Views.Protection.txtEncrypt":"Criptografar","Common.Views.Protection.txtInvisibleSignature":"Inserir assinatura digital","Common.Views.Protection.txtSignature":"Assinatura","Common.Views.Protection.txtSignatureLine":"Adicionar linha de assinatura","Common.Views.RecentFiles.txtOpenRecent":"Abrir recente","Common.Views.RenameDialog.textName":"Nome de arquivo","Common.Views.RenameDialog.txtInvalidName":"Nome de arquivo não pode conter os seguintes caracteres:","Common.Views.ReviewChanges.hintNext":"Para a próxima alteração","Common.Views.ReviewChanges.hintPrev":"Para a alteração anterior","Common.Views.ReviewChanges.mniFromFile":"Documento a partir de arquivo","Common.Views.ReviewChanges.mniFromStorage":"Documento a partir de armazenamento","Common.Views.ReviewChanges.mniFromUrl":"Documento de URL","Common.Views.ReviewChanges.mniMMFromFile":"Do Arquivo","Common.Views.ReviewChanges.mniMMFromStorage":"Do armazenamento","Common.Views.ReviewChanges.mniMMFromUrl":"Da URL","Common.Views.ReviewChanges.mniSettings":"Configurações de comparação","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedição em tempo real. Todas as alterações são salvas automaticamente.","Common.Views.ReviewChanges.strStrict":"Estrito","Common.Views.ReviewChanges.strStrictDesc":"Use o botão 'Salvar' para sincronizar as alterações que você e outros realizaram.","Common.Views.ReviewChanges.textEnable":"Habilitar","Common.Views.ReviewChanges.textWarnTrackChanges":"As mudanças de faixa serão ativadas para todos os usuários com acesso total. Na próxima vez que alguém abrir o documento, as Mudanças de Trilha permanecerão ativadas.","Common.Views.ReviewChanges.textWarnTrackChangesTitle":"Habilitar rastreamento de alterações para todos?","Common.Views.ReviewChanges.tipAcceptCurrent":"Aceitar a alteração atual","Common.Views.ReviewChanges.tipCoAuthMode":"Definir modo de coedição","Common.Views.ReviewChanges.tipCombine":"Combinar o documento atual com outro","Common.Views.ReviewChanges.tipCommentRem":"Excluir comentários","Common.Views.ReviewChanges.tipCommentRemCurrent":"Remover comentários atuais","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentários","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver comentários atuais","Common.Views.ReviewChanges.tipCompare":"Comparar o documento atual com outro","Common.Views.ReviewChanges.tipHistory":"Exibir histórico de versão","Common.Views.ReviewChanges.tipMailRecepients":"Mala direta","Common.Views.ReviewChanges.tipRejectCurrent":"Rejeitar a alteração atual e passar para a próxima","Common.Views.ReviewChanges.tipReview":"Rastrear alterações","Common.Views.ReviewChanges.tipReviewView":"Selecione o modo que você quiser que as alterações sejam exibidas","Common.Views.ReviewChanges.tipSetDocLang":"Definir idioma do documento","Common.Views.ReviewChanges.tipSetSpelling":"Verificação ortográfica","Common.Views.ReviewChanges.tipSharing":"Gerenciar os direitos de acesso ao documento","Common.Views.ReviewChanges.txtAccept":"Aceitar","Common.Views.ReviewChanges.txtAcceptAll":"Aceitar todas as alterações.","Common.Views.ReviewChanges.txtAcceptChanges":"Aceitar as alterações","Common.Views.ReviewChanges.txtAcceptCurrent":"Aceitar alteração atual","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Fechar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedição","Common.Views.ReviewChanges.txtCombine":"Combinar","Common.Views.ReviewChanges.txtCommentRemAll":"Excluir todos os comentários","Common.Views.ReviewChanges.txtCommentRemCurrent":"Excluir comentários atuais","Common.Views.ReviewChanges.txtCommentRemMy":"Excluir meus comentários","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Remover meus comentários atuais","Common.Views.ReviewChanges.txtCommentRemove":"Excluir","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos os comentários","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentários atuais","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver meus comentários","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver meus comentários atuais","Common.Views.ReviewChanges.txtCompare":"Comparar","Common.Views.ReviewChanges.txtDocLang":"Idioma","Common.Views.ReviewChanges.txtEditing":"Editando","Common.Views.ReviewChanges.txtFinal":"Todas as alterações aceitas {0}","Common.Views.ReviewChanges.txtFinalCap":"Final","Common.Views.ReviewChanges.txtHistory":"Histórico de versão","Common.Views.ReviewChanges.txtMailMerge":"Mala direta","Common.Views.ReviewChanges.txtMarkup":"Todas as alterações {0}","Common.Views.ReviewChanges.txtMarkupCap":"Marcação e balões","Common.Views.ReviewChanges.txtMarkupSimple":"Todas as mudanças {0}
Não há balões","Common.Views.ReviewChanges.txtMarkupSimpleCap":"Somente marcação","Common.Views.ReviewChanges.txtNext":"Para a próxima alteração","Common.Views.ReviewChanges.txtOff":"Desligado pra mim","Common.Views.ReviewChanges.txtOffGlobal":"Desligado pra mim e para todos","Common.Views.ReviewChanges.txtOn":"Ligado pra mim","Common.Views.ReviewChanges.txtOnGlobal":"Ligado para mim e para todos","Common.Views.ReviewChanges.txtOriginal":"Todas as alterações rejeitadas {0}","Common.Views.ReviewChanges.txtOriginalCap":"Original","Common.Views.ReviewChanges.txtPrev":"Para a alteração anterior","Common.Views.ReviewChanges.txtPreview":"Pré-visualizar","Common.Views.ReviewChanges.txtReject":"Rejeitar","Common.Views.ReviewChanges.txtRejectAll":"Rejeitar todas as alterações","Common.Views.ReviewChanges.txtRejectChanges":"Rejeitar alterações","Common.Views.ReviewChanges.txtRejectCurrent":"Rejeitar alteração atual","Common.Views.ReviewChanges.txtSharing":"Compartilhar","Common.Views.ReviewChanges.txtSpelling":"Verificação ortográfica","Common.Views.ReviewChanges.txtTurnon":"Rastrear alterações","Common.Views.ReviewChanges.txtView":"Modo de exibição","Common.Views.ReviewChangesDialog.textTitle":"Rever alterações","Common.Views.ReviewChangesDialog.txtAccept":"Aceitar","Common.Views.ReviewChangesDialog.txtAcceptAll":"Aceitar todas as alterações.","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"Aceitar a alteração atual","Common.Views.ReviewChangesDialog.txtNext":"Para a próxima alteração","Common.Views.ReviewChangesDialog.txtPrev":"Para a alteração anterior","Common.Views.ReviewChangesDialog.txtReject":"Rejeitar","Common.Views.ReviewChangesDialog.txtRejectAll":"Rejeitar todas as alterações","Common.Views.ReviewChangesDialog.txtRejectCurrent":"Rejeitar alterações atuais","Common.Views.ReviewPopover.textAdd":"Incluir","Common.Views.ReviewPopover.textAddReply":"Adicionar resposta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Fechar","Common.Views.ReviewPopover.textComment":"Comentário","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Insira seu comentário aqui","Common.Views.ReviewPopover.textFollowMove":"Seguir movimento","Common.Views.ReviewPopover.textMention":"+menção fornecerá acesso ao documento e enviará um e-mail","Common.Views.ReviewPopover.textMentionNotify":"+menção notificará o usuário por e-mail","Common.Views.ReviewPopover.textOpenAgain":"Abrir novamente","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"Não tem permissão para reabrir comentários","Common.Views.ReviewPopover.txtAccept":"Aceitar","Common.Views.ReviewPopover.txtDeleteTip":"Excluir","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.ReviewPopover.txtReject":"Rejeitar","Common.Views.SaveAsDlg.textLoading":"Carregando","Common.Views.SaveAsDlg.textTitle":"Pasta para salvar","Common.Views.SearchPanel.textCaseSensitive":"Maiúsculas e Minúsculas","Common.Views.SearchPanel.textCloseSearch":"Fechar pesquisa","Common.Views.SearchPanel.textContentChanged":"Documento alterado.","Common.Views.SearchPanel.textFind":"Localizar","Common.Views.SearchPanel.textFindAndReplace":"Localizar e substituir","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} itens substituídos com sucesso.","Common.Views.SearchPanel.textMatchUsingRegExp":"Corresponder usando expressões regulares","Common.Views.SearchPanel.textNoMatches":"Nenhuma correspondência","Common.Views.SearchPanel.textNoSearchResults":"Nenhum resultado de pesquisa","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} itens substituídos. Os {2} itens restantes estão bloqueados por outros usuários.","Common.Views.SearchPanel.textReplace":"Substituir","Common.Views.SearchPanel.textReplaceAll":"Substituir tudo","Common.Views.SearchPanel.textReplaceWith":"Substituir com","Common.Views.SearchPanel.textSearchAgain":"{0}Realize uma nova pesquisa{1} para obter resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"A pesquisa parou","Common.Views.SearchPanel.textSearchResults":"Resultados da pesquisa: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados da pesquisa","Common.Views.SearchPanel.textTooManyResults":"Há muitos resultados para mostrar aqui","Common.Views.SearchPanel.textWholeWords":"Palavras inteiras apenas","Common.Views.SearchPanel.tipNextResult":"Próximo resultado","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Carregando","Common.Views.SelectFileDlg.textTitle":"Selecionar fonte de dados","Common.Views.ShapeShadowDialog.txtAngle":"Ângulo","Common.Views.ShapeShadowDialog.txtDistance":"Distância","Common.Views.ShapeShadowDialog.txtSize":"Tamanho","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparência","Common.Views.ShortcutsDialog.txtDescription":"Descrição","Common.Views.ShortcutsDialog.txtEmpty":"Nenhuma correspondência encontrada. Ajuste sua busca.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restaurar tudo para os padrões","Common.Views.ShortcutsDialog.txtRestoreContinue":"Você deseja continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todas as configurações de atalhos serão restauradas para os padrões.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restaurar padrão","Common.Views.ShortcutsDialog.txtSearch":"Pesquisar","Common.Views.ShortcutsDialog.txtTitle":"Atalhos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Ação","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"Este atalho não pode ser editado.","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Digite o atalho desejado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"O atalho usado pelas ações %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"O atalho usado pelas ações %1 e não pode ser alterado","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"O atalho usado pela ação %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"O atalho usado pela ação %1 e não pode ser alterado","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Novo atalho","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Você deseja continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos os atalhos para a ação “%1” serão restaurados ao padrão.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restaurar padrão","Common.Views.ShortcutsEditDialog.txtTitle":"Editar atalho","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Digite o atalho desejado","Common.Views.SignDialog.textBold":"Negrito","Common.Views.SignDialog.textCertificate":"Certificado","Common.Views.SignDialog.textChange":"Alterar","Common.Views.SignDialog.textInputName":"Nome do signatário de entrada","Common.Views.SignDialog.textItalic":"Itálico","Common.Views.SignDialog.textNameError":"Nome de assinante não deve estar vazio.","Common.Views.SignDialog.textPurpose":"Objetivo para assinar o documento","Common.Views.SignDialog.textSelect":"Selecionar","Common.Views.SignDialog.textSelectImage":"Selecionar Imagem","Common.Views.SignDialog.textSignature":"Ver assinatura como","Common.Views.SignDialog.textTitle":"Assinar o Documento","Common.Views.SignDialog.textUseImage":"ou clique 'Selecionar Imagem' para usar uma figura como assinatura","Common.Views.SignDialog.textValid":"Válido de %1 até %2","Common.Views.SignDialog.tipFontName":"Nome da Fonte","Common.Views.SignDialog.tipFontSize":"Tamanho da fonte","Common.Views.SignSettingsDialog.textAllowComment":"Permitir ao signatário inserir comentários no diálogo de assinatura","Common.Views.SignSettingsDialog.textDefInstruction":"Antes de assinar este documento, verifique se o conteúdo que está a assinar está correto.","Common.Views.SignSettingsDialog.textInfoEmail":"E-mail do assinante sugerido","Common.Views.SignSettingsDialog.textInfoName":"Nome","Common.Views.SignSettingsDialog.textInfoTitle":"Título do assinante","Common.Views.SignSettingsDialog.textInstructions":"Instruções para o Assinante","Common.Views.SignSettingsDialog.textShowDate":"Exibir a data da assinatura na linha da assinatura","Common.Views.SignSettingsDialog.textTitle":"Configurações da Assinatura","Common.Views.SignSettingsDialog.txtEmpty":"O campo é obrigatório","Common.Views.SymbolTableDialog.textCharacter":"Caractere","Common.Views.SymbolTableDialog.textCode":"Valor Unicode HEX","Common.Views.SymbolTableDialog.textCopyright":"Assinatura de copyright","Common.Views.SymbolTableDialog.textDCQuote":"Fechamento Duplo Orçamento","Common.Views.SymbolTableDialog.textDOQuote":"Abertura de aspas duplas","Common.Views.SymbolTableDialog.textEllipsis":"Elipse horizontal","Common.Views.SymbolTableDialog.textEmDash":"Travessão","Common.Views.SymbolTableDialog.textEmSpace":"Em Espaço","Common.Views.SymbolTableDialog.textEnDash":"Travessão","Common.Views.SymbolTableDialog.textEnSpace":"Espaço","Common.Views.SymbolTableDialog.textFont":"Fonte","Common.Views.SymbolTableDialog.textNBHyphen":"Hífen sem quebra","Common.Views.SymbolTableDialog.textNBSpace":"Espaço sem interrupção","Common.Views.SymbolTableDialog.textPilcrow":"Sinal de antígrafo","Common.Views.SymbolTableDialog.textQEmSpace":"1/4 Em Espaço","Common.Views.SymbolTableDialog.textRange":"Intervalo","Common.Views.SymbolTableDialog.textRecent":"Símbolos usados recentemente","Common.Views.SymbolTableDialog.textRegistered":"Símbolo de marca registrada","Common.Views.SymbolTableDialog.textSCQuote":"Cotação Única de Fechamento","Common.Views.SymbolTableDialog.textSection":"Sinal de seção","Common.Views.SymbolTableDialog.textShortcut":"Teclas de atalho","Common.Views.SymbolTableDialog.textSHyphen":"Hífen suave","Common.Views.SymbolTableDialog.textSOQuote":"Abertura de aspas simples","Common.Views.SymbolTableDialog.textSpecial":"caracteres especiais","Common.Views.SymbolTableDialog.textSymbols":"Símbolos","Common.Views.SymbolTableDialog.textTitle":"Símbolo","Common.Views.SymbolTableDialog.textTradeMark":"Símbolo de marca registrada","Common.Views.UserNameDialog.textDontShow":"Não perguntar novamente","Common.Views.UserNameDialog.textLabel":"Rótulo:","Common.Views.UserNameDialog.textLabelError":"O rótulo não pode estar vazio.","DE.Controllers.DocProtection.txtIsProtectedComment":"O documento está protegido. Você só pode inserir comentários neste documento.","DE.Controllers.DocProtection.txtIsProtectedForms":"O documento está protegido. Você só pode preencher os formulários deste documento.","DE.Controllers.DocProtection.txtIsProtectedTrack":"O documento está protegido. Você pode editar este documento, mas todas as alterações serão rastreadas.","DE.Controllers.DocProtection.txtIsProtectedView":"O documento está protegido. Você só pode visualizar este documento.","DE.Controllers.DocProtection.txtWasProtectedComment":"O documento foi protegido por outro usuário.\nVocê só pode inserir comentários neste documento.","DE.Controllers.DocProtection.txtWasProtectedForms":"O documento foi protegido por outro usuário.\nVocê só pode preencher os formulários deste documento.","DE.Controllers.DocProtection.txtWasProtectedTrack":"O documento foi protegido por outro usuário.\nVocê pode editar este documento, mas todas as alterações serão rastreadas.","DE.Controllers.DocProtection.txtWasProtectedView":"O documento foi protegido por outro usuário.\nVocê só pode visualizar este documento.","DE.Controllers.DocProtection.txtWasUnprotected":"O documento foi desprotegido.","DE.Controllers.HeaderFooterTab.textFieldExample":"Exemplo de código de gravação: TIME \\@ “dddd, MMMM d, yyyyy”","DE.Controllers.HeaderFooterTab.textFieldLabel":"Códigos de campo","DE.Controllers.HeaderFooterTab.textFieldTitle":"Campo","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"Numeração da página","DE.Controllers.LeftMenu.leavePageText":"Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.","DE.Controllers.LeftMenu.newDocumentTitle":"Documento sem nome","DE.Controllers.LeftMenu.notcriticalErrorTitle":"Aviso","DE.Controllers.LeftMenu.requestEditRightsText":"Solicitando direitos de edição...","DE.Controllers.LeftMenu.textLoadHistory":"Carregando o histórico de versões...","DE.Controllers.LeftMenu.textNoTextFound":"Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.","DE.Controllers.LeftMenu.textReplaceSkipped":"A substituição foi realizada. {0} ocorrências foram ignoradas.","DE.Controllers.LeftMenu.textReplaceSuccess":"A pesquisa foi realizada. Ocorrências substituídas: {0}","DE.Controllers.LeftMenu.textSelectPath":"Digite um novo nome para salvar a cópia do arquivo","DE.Controllers.LeftMenu.txtCompatible":"O documento será salvo em novo formato. Isto permitirá usar todos os recursos de editor, mas pode afetar o layout do documento.
Use a opção de 'Compatibilidade' para configurações avançadas se deseja tornar o arquivo compatível com versões antigas do MS Word.","DE.Controllers.LeftMenu.txtUntitled":"Sem título","DE.Controllers.LeftMenu.warnDownloadAs":"Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"O documento resultante será otimizado para permitir que você edite o texto, portanto, não gráficos exatamente iguais ao original, se o arquivo original contiver muitos gráficos.","DE.Controllers.LeftMenu.warnDownloadAsRTF":"Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?","DE.Controllers.LeftMenu.warnReplaceString":"{0} não é um caractere especial válido para o campo de substituição.","DE.Controllers.Main.applyChangesTextText":"Carregando as alterações...","DE.Controllers.Main.applyChangesTitleText":"Carregando as alterações","DE.Controllers.Main.confirmMaxChangesSize":"O tamanho das ações excede a limitação definida para seu servidor.
Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).","DE.Controllers.Main.convertationTimeoutText":"Tempo limite de conversão excedido.","DE.Controllers.Main.criticalErrorExtText":"Pressione \"OK\" para voltar para a lista de documentos.","DE.Controllers.Main.criticalErrorExtTextClose":"Pressione \"OK\" para fechar o editor.","DE.Controllers.Main.criticalErrorTitle":"Erro","DE.Controllers.Main.downloadErrorText":"Erro ao baixar arquivo.","DE.Controllers.Main.downloadMergeText":"Baixando...","DE.Controllers.Main.downloadMergeTitle":"Baixando","DE.Controllers.Main.downloadTextText":"Baixando documento...","DE.Controllers.Main.downloadTitleText":"Baixando documento","DE.Controllers.Main.errorAccessDeny":"Você está tentando executar uma ação que você não tem direitos.
Contate o administrador do Servidor de Documentos.","DE.Controllers.Main.errorBadImageUrl":"URL de imagem está incorreta","DE.Controllers.Main.errorCannotPasteImg":"Não podemos colar esta imagem da área de transferência, mas você pode salvá-la em seu dispositivo e\ninsira-o a partir daí ou copie a imagem sem texto e cole-a no documento.","DE.Controllers.Main.errorCoAuthoringDisconnect":"Conexão com servidor perdida. O documento não pode ser editado neste momento.","DE.Controllers.Main.errorComboSeries":"Para criar uma tabela de combinação, selecione pelo menos duas séries de dados.","DE.Controllers.Main.errorCompare":"O recurso Comparar documentos não está disponível durante a coedição.","DE.Controllers.Main.errorConnectToServer":"O documento não pode ser gravado. Verifique as configurações de conexão ou entre em contato com o administrador.
Quando você clicar no botão 'OK', você será solicitado ao baixar o documento.","DE.Controllers.Main.errorCopyDisabled":"Por motivos de segurança, o conteúdo deste documento não pode ser copiado.","DE.Controllers.Main.errorDatabaseConnection":"Erro externo.
Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.","DE.Controllers.Main.errorDataEncrypted":"Alterações criptografadas foram recebidas, e não podem ser decifradas.","DE.Controllers.Main.errorDataRange":"Intervalo de dados incorreto.","DE.Controllers.Main.errorDefaultMessage":"Código do erro: %1","DE.Controllers.Main.errorDirectUrl":"Por favor, verifique o link para o documento.
Este link deve ser o link direto para baixar o arquivo.","DE.Controllers.Main.errorEditingDownloadas":"Ocorreu um erro.
Use a opção 'Baixar como' para gravar a cópia de backup em seu computador.","DE.Controllers.Main.errorEditingSaveas":"Ocorreu um erro durante o trabalho com o documento.
Use a opção 'Salvar como ...' para salvar a cópia de backup do arquivo no disco rígido do computador.","DE.Controllers.Main.errorEditProtectedRange":"Você não tem permissão para editar essa seleção porque ela está protegida.","DE.Controllers.Main.errorEmailClient":"Nenhum cliente de e-mail foi encontrado.","DE.Controllers.Main.errorEmptyTOC":"Comece a criar um sumário aplicando um estilo de título da galeria Estilos ao texto selecionado.","DE.Controllers.Main.errorFilePassProtect":"O documento é protegido por senha e não pode ser aberto.","DE.Controllers.Main.errorFileSizeExceed":"O tamanho do arquivo excede o limite de seu servidor.
Por favor, contate seu administrador de Servidor de Documentos para detalhes.","DE.Controllers.Main.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.Controllers.Main.errorInconsistentExt":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo não corresponde à extensão do arquivo.","DE.Controllers.Main.errorInconsistentExtDocx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtPdf":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtPptx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.","DE.Controllers.Main.errorInconsistentExtXlsx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.","DE.Controllers.Main.errorKeyEncrypt":"Descritor de chave desconhecido","DE.Controllers.Main.errorKeyExpire":"Descritor de chave expirado","DE.Controllers.Main.errorLoadingFont":"As fontes não foram carregadas.
Entre em contato com o administrador do Document Server.","DE.Controllers.Main.errorMailMergeLoadFile":"Carregamento falhou. Por favor, selecione um arquivo diferente.","DE.Controllers.Main.errorMailMergeSaveFile":"Merge failed.","DE.Controllers.Main.errorNoTOC":"Não há índice para atualizar. Você pode inserir um na guia Referências.","DE.Controllers.Main.errorPasswordIsNotCorrect":"A senha fornecida não está correta.
Verifique se a tecla CAPS LOCK está desligada e use a capitalização correta.","DE.Controllers.Main.errorSaveWatermark":"Este arquivo contém uma imagem de marca d'água vinculada a outro domínio.
Para torná-la visível no PDF, atualize a imagem da marca d'água para que ela seja vinculada ao mesmo domínio do documento ou carregue-a de seu computador.","DE.Controllers.Main.errorServerVersion":"A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.","DE.Controllers.Main.errorSessionAbsolute":"A sessão de edição de documentos expirou. Por Favor atualize a página.","DE.Controllers.Main.errorSessionIdle":"O documento ficou sem edição por muito tempo. Por favor atualize a página.","DE.Controllers.Main.errorSessionToken":"A conexão com o servidor foi interrompida. Por favor atualize a página.","DE.Controllers.Main.errorSetPassword":"Não foi possível definir a senha.","DE.Controllers.Main.errorStockChart":"Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
preço de abertura, preço máx., preço mín., preço de fechamento.","DE.Controllers.Main.errorSubmit":"Falha no envio.","DE.Controllers.Main.errorTextFormWrongFormat":"O valor inserido não corresponde ao formato do campo.","DE.Controllers.Main.errorToken":"O token de segurança do documento não foi formado corretamente.
Entre em contato com o administrador do Document Server.","DE.Controllers.Main.errorTokenExpire":"O token de segurança do documento expirou.
Entre em contato com o administrador do Document Server.","DE.Controllers.Main.errorUpdateVersion":"A versão do arquivo foi alterada. A página será recarregada.","DE.Controllers.Main.errorUpdateVersionOnDisconnect":"A conexão a internet foi restaurada, e a versão do arquivo foi alterada.
Antes de continuar seu trabalho, baixe o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.","DE.Controllers.Main.errorUserDrop":"O arquivo não pode ser acessado agora.","DE.Controllers.Main.errorUsersExceed":"O número de usuários permitidos pelo plano de preços foi excedido","DE.Controllers.Main.errorViewerDisconnect":"Perda de conexão. Você ainda pode exibir o documento,
mas não pode fazer o download ou imprimir até que a conexão seja restaurada.","DE.Controllers.Main.leavePageText":"Você não salvou as alterações neste documento. Clique em \"Permanecer nesta página\", em seguida, clique em \"Salvar\" para salvá-las. Clique em \"Sair desta página\" para descartar todas as alterações não salvas.","DE.Controllers.Main.leavePageTextOnClose":"Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.","DE.Controllers.Main.loadFontsTextText":"Carregando dados...","DE.Controllers.Main.loadFontsTitleText":"Carregando dados","DE.Controllers.Main.loadFontTextText":"Carregando dados...","DE.Controllers.Main.loadFontTitleText":"Carregando dados","DE.Controllers.Main.loadImagesTextText":"Carregando imagens...","DE.Controllers.Main.loadImagesTitleText":"Carregando imagens","DE.Controllers.Main.loadImageTextText":"Carregando imagem...","DE.Controllers.Main.loadImageTitleText":"Carregando imagem","DE.Controllers.Main.loadingDocumentTextText":"Carregando documento...","DE.Controllers.Main.loadingDocumentTitleText":"Carregando documento","DE.Controllers.Main.mailMergeLoadFileText":"Loading Data Source...","DE.Controllers.Main.mailMergeLoadFileTitle":"Loading Data Source","DE.Controllers.Main.notcriticalErrorTitle":"Aviso","DE.Controllers.Main.openErrorText":"Ocorreu um erro ao abrir o arquivo","DE.Controllers.Main.openTextText":"Abrindo documento...","DE.Controllers.Main.openTitleText":"Abrindo documento","DE.Controllers.Main.printTextText":"Imprimindo documento...","DE.Controllers.Main.printTitleText":"Imprimindo documento","DE.Controllers.Main.reloadButtonText":"Recarregar página","DE.Controllers.Main.requestEditFailedMessageText":"Alguém está editando este documento neste momento. Tente novamente mais tarde.","DE.Controllers.Main.requestEditFailedTitleText":"Acesso negado","DE.Controllers.Main.saveErrorText":"Ocorreu um erro ao gravar o arquivo","DE.Controllers.Main.saveErrorTextDesktop":"Este arquivo não pode ser salvo ou criado.
Possíveis razões são:
1. O arquivo é somente leitura.
2. O arquivo está sendo editado por outros usuários.
3. O disco está cheio ou corrompido.","DE.Controllers.Main.saveTextText":"Salvando documento...","DE.Controllers.Main.saveTitleText":"Salvando documento","DE.Controllers.Main.savingText":"Enviando","DE.Controllers.Main.scriptLoadError":"A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.","DE.Controllers.Main.sendMergeText":"Enviando mesclar...","DE.Controllers.Main.sendMergeTitle":"Enviando mesclar","DE.Controllers.Main.splitDividerErrorText":"O número de linhas deve ser um divisor de %1.","DE.Controllers.Main.splitMaxColsErrorText":"O número de colunas deve ser inferior a %1.","DE.Controllers.Main.splitMaxRowsErrorText":"O número de linhas deve ser inferior a %1.","DE.Controllers.Main.textAnonymous":"Anônimo","DE.Controllers.Main.textAnyone":"Alguém","DE.Controllers.Main.textApplyAll":"Aplicar a todas as equações","DE.Controllers.Main.textBuyNow":"Visitar website","DE.Controllers.Main.textChangesSaved":"Todas as alterações foram salvas","DE.Controllers.Main.textClose":"Fechar","DE.Controllers.Main.textCloseTip":"Clique para fechar a dica","DE.Controllers.Main.textConnectionLost":"Tentando conectar. Verifique as configurações de conexão.","DE.Controllers.Main.textContactUs":"Contate as vendas","DE.Controllers.Main.textContinue":"Continuar","DE.Controllers.Main.textConvertEquation":"Esta equação foi criada com uma versão antiga do editor de equação que não é mais compatível. Para editá-lo, converta a equação para o formato Office Math ML.
Converter agora?","DE.Controllers.Main.textCustomLoader":"Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador.
Por favor, contate o Departamento de Vendas para fazer cotação.","DE.Controllers.Main.textDisconnect":"A conexão está perdida","DE.Controllers.Main.textGuest":"Convidado (a)","DE.Controllers.Main.textHasMacros":"O arquivo contém macros automáticas.
Você quer executar macros?","DE.Controllers.Main.textLearnMore":"Saiba mais","DE.Controllers.Main.textLoadingDocument":"Carregando documento","DE.Controllers.Main.textLongName":"Insira um nome com menos de 128 caracteres.","DE.Controllers.Main.textNoLicenseTitle":"Limite de licença atingido","DE.Controllers.Main.textPaidFeature":"Recurso pago","DE.Controllers.Main.textReconnect":"A conexão é restaurada","DE.Controllers.Main.textRemember":"Lembrar da minha escolha para todos os arquivos. ","DE.Controllers.Main.textRememberMacros":"Lembrar minha escolha para todas as macros","DE.Controllers.Main.textRenameError":"O nome de usuário não pode estar vazio.","DE.Controllers.Main.textRenameLabel":"Insira um nome a ser usado para colaboração","DE.Controllers.Main.textRequestMacros":"Uma macro faz uma solicitação para URL. Deseja permitir a solicitação para %1?","DE.Controllers.Main.textShape":"Forma","DE.Controllers.Main.textSignature":"Assinatura","DE.Controllers.Main.textStrict":"Modo estrito","DE.Controllers.Main.textText":"Тexto","DE.Controllers.Main.textTryQuickPrint":"Você selecionou Impressão rápida: todo o documento será impresso na última impressora selecionada ou padrão.
Deseja continuar?","DE.Controllers.Main.textTryUndoRedo":"As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.
Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",","DE.Controllers.Main.textTryUndoRedoWarn":"As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido","DE.Controllers.Main.textUndo":"Desfazer","DE.Controllers.Main.textUpdateVersion":"O documento não pode ser editado agora.
Tentando atualizar o arquivo, aguarde...","DE.Controllers.Main.textUpdating":"Atualizando","DE.Controllers.Main.tipLicenseExceeded":"O documento está aberto no modo somente leitura, pois o número máximo de conexões simultâneas permitidas pela licença foi atingido.

Tente novamente mais tarde ou entre em contato com o proprietário do documento se precisar de acesso de edição.","DE.Controllers.Main.tipLicenseUsersExceeded":"O documento está aberto no modo somente leitura, pois o número máximo de usuários autorizados a editar documentos por licença foi atingido.

Tente novamente mais tarde ou entre em contato com o proprietário do documento se precisar de acesso de edição.","DE.Controllers.Main.titleLicenseExp":"A licença expirou","DE.Controllers.Main.titleLicenseNotActive":"Licença inativa","DE.Controllers.Main.titleReadOnly":"Modo somente leitura","DE.Controllers.Main.titleServerVersion":"Editor atualizado","DE.Controllers.Main.titleUpdateVersion":"Versão alterada","DE.Controllers.Main.txtAbove":"Acima","DE.Controllers.Main.txtArt":"Your text here","DE.Controllers.Main.txtBasicShapes":"Formas básicas","DE.Controllers.Main.txtBelow":"abaixo","DE.Controllers.Main.txtBookmarkError":"Erro! Bookmark não definido","DE.Controllers.Main.txtButtons":"Botões","DE.Controllers.Main.txtCallouts":"Textos explicativos","DE.Controllers.Main.txtCharts":"Gráficos","DE.Controllers.Main.txtChoose":"Escolha um item","DE.Controllers.Main.txtClickToLoad":"Clique para carregar imagem","DE.Controllers.Main.txtCurrentDocument":"Documento atual","DE.Controllers.Main.txtDiagramTitle":"Título do gráfico","DE.Controllers.Main.txtEditingMode":"Definir modo de edição...","DE.Controllers.Main.txtEndOfFormula":"Fim inesperado da fórmula","DE.Controllers.Main.txtEnterDate":"Insira uma data","DE.Controllers.Main.txtErrorLoadHistory":"O carregamento de histórico falhou","DE.Controllers.Main.txtEvenPage":"Página par","DE.Controllers.Main.txtFiguredArrows":"Setas figuradas","DE.Controllers.Main.txtFirstPage":"Primeira página","DE.Controllers.Main.txtFooter":"Rodapé","DE.Controllers.Main.txtFormulaNotInTable":"A fórmula não está na tabela","DE.Controllers.Main.txtHeader":"Cabeçalho","DE.Controllers.Main.txtHyperlink":"Link","DE.Controllers.Main.txtIndTooLarge":"Índice muito grande","DE.Controllers.Main.txtLines":"Linhas","DE.Controllers.Main.txtMainDocOnly":"Erro! Apenas documento principal.","DE.Controllers.Main.txtMath":"Matemática","DE.Controllers.Main.txtMissArg":"Argumento ausente","DE.Controllers.Main.txtMissOperator":"Operador ausente","DE.Controllers.Main.txtNeedSynchronize":"Você tem atualizações","DE.Controllers.Main.txtNone":"Nenhum","DE.Controllers.Main.txtNoTableOfContents":"Não há cabeçalhos no documento. Aplique um estilo de cabeçalho ao texto para que ele apareça no índice.","DE.Controllers.Main.txtNoTableOfFigures":"Nenhuma entrada de tabela de figuras encontrada.","DE.Controllers.Main.txtNoText":"Erro! Nenhum texto do estilo especificado no documento.","DE.Controllers.Main.txtNotInTable":"Não está na tabela","DE.Controllers.Main.txtNotValidBookmark":"Erro! Não é uma auto-referência de marcador válida.","DE.Controllers.Main.txtOddPage":"Página ímpar","DE.Controllers.Main.txtOnPage":"na página","DE.Controllers.Main.txtRectangles":"Retângulos","DE.Controllers.Main.txtSameAsPrev":"Mesma da anterior","DE.Controllers.Main.txtSaveCopyAsComplete":"A cópia do arquivo foi salva com êxito","DE.Controllers.Main.txtScheme_Aspect":"Aspecto","DE.Controllers.Main.txtScheme_Blue":"Azul","DE.Controllers.Main.txtScheme_Blue_Green":"Verde azulado","DE.Controllers.Main.txtScheme_Blue_II":"Azul II","DE.Controllers.Main.txtScheme_Blue_Warm":"Azul quente","DE.Controllers.Main.txtScheme_Grayscale":"Escala de cinza","DE.Controllers.Main.txtScheme_Green":"Verde","DE.Controllers.Main.txtScheme_Green_Yellow":"Verde amarelo","DE.Controllers.Main.txtScheme_Marquee":"Tenda","DE.Controllers.Main.txtScheme_Median":"Mediana","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"Laranja","DE.Controllers.Main.txtScheme_Orange_Red":"Vermelho laranja","DE.Controllers.Main.txtScheme_Paper":"Papel","DE.Controllers.Main.txtScheme_Red":"Vermelho","DE.Controllers.Main.txtScheme_Red_Orange":"Vermelho laranja","DE.Controllers.Main.txtScheme_Red_Violet":"Violeta vermelho","DE.Controllers.Main.txtScheme_Slipstream":"Turbulência","DE.Controllers.Main.txtScheme_Violet":"Violeta","DE.Controllers.Main.txtScheme_Violet_II":"Violeta II","DE.Controllers.Main.txtScheme_Yellow":"Amarelo","DE.Controllers.Main.txtScheme_Yellow_Orange":"Amarelo alaranjado","DE.Controllers.Main.txtSection":"-Seção","DE.Controllers.Main.txtSeries":"Série","DE.Controllers.Main.txtShape_accentBorderCallout1":"Texto explicativo da linha 1 (Borda e barra de destaque)","DE.Controllers.Main.txtShape_accentBorderCallout2":"Texto explicativo da linha 2 (Borda e barra de destaque)","DE.Controllers.Main.txtShape_accentBorderCallout3":"Texto explicativo da linha 3 (Borda e barra de destaque)","DE.Controllers.Main.txtShape_accentCallout1":"Texto explicativo da linha 1 (Barra de destaque)","DE.Controllers.Main.txtShape_accentCallout2":"Texto explicativo da linha 2 (Barra de destaque)","DE.Controllers.Main.txtShape_accentCallout3":"Texto explicativo da linha 3 (Barra de destaque)","DE.Controllers.Main.txtShape_actionButtonBackPrevious":"Botão voltar ou anterior","DE.Controllers.Main.txtShape_actionButtonBeginning":"Botão inicial","DE.Controllers.Main.txtShape_actionButtonBlank":"Botão em branco","DE.Controllers.Main.txtShape_actionButtonDocument":"Botão documento","DE.Controllers.Main.txtShape_actionButtonEnd":"Botão terminar","DE.Controllers.Main.txtShape_actionButtonForwardNext":"Botão avançar ou próximo","DE.Controllers.Main.txtShape_actionButtonHelp":"Botão de ajuda","DE.Controllers.Main.txtShape_actionButtonHome":"Botão Início","DE.Controllers.Main.txtShape_actionButtonInformation":"Botão de informação","DE.Controllers.Main.txtShape_actionButtonMovie":"Botão de filme","DE.Controllers.Main.txtShape_actionButtonReturn":"Botão de voltar","DE.Controllers.Main.txtShape_actionButtonSound":"Botão de som","DE.Controllers.Main.txtShape_arc":"Arco","DE.Controllers.Main.txtShape_bentArrow":"Seta curvada","DE.Controllers.Main.txtShape_bentConnector5":"Conector angular","DE.Controllers.Main.txtShape_bentConnector5WithArrow":"Conector de seta angular","DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"Conector de seta dupla angular","DE.Controllers.Main.txtShape_bentUpArrow":"Seta para cima curvada","DE.Controllers.Main.txtShape_bevel":"Chanfro","DE.Controllers.Main.txtShape_blockArc":"Arco de bloco","DE.Controllers.Main.txtShape_borderCallout1":"Texto explicativo da linha 1","DE.Controllers.Main.txtShape_borderCallout2":"Texto explicativo da linha 2","DE.Controllers.Main.txtShape_borderCallout3":"Texto explicativo da linha 3","DE.Controllers.Main.txtShape_bracePair":"Chave dupla","DE.Controllers.Main.txtShape_callout1":"Texto explicativo da linha 1 (sem borda)","DE.Controllers.Main.txtShape_callout2":"Texto explicativo da linha 2 (Sem borda)","DE.Controllers.Main.txtShape_callout3":"Texto explicativo da linha 3 (Sem borda)","DE.Controllers.Main.txtShape_can":"Pode","DE.Controllers.Main.txtShape_chevron":"Divisa","DE.Controllers.Main.txtShape_chord":"Acorde","DE.Controllers.Main.txtShape_circularArrow":"Seta circular","DE.Controllers.Main.txtShape_cloud":"Nuvem","DE.Controllers.Main.txtShape_cloudCallout":"Chamar nuvem","DE.Controllers.Main.txtShape_corner":"Canto","DE.Controllers.Main.txtShape_cube":"Cubo","DE.Controllers.Main.txtShape_curvedConnector3":"Conector curvado","DE.Controllers.Main.txtShape_curvedConnector3WithArrow":"Conector de seta curvada","DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"Conector de seta dupla curvado","DE.Controllers.Main.txtShape_curvedDownArrow":"Seta curva para baixo","DE.Controllers.Main.txtShape_curvedLeftArrow":"Seta curvada para a esquerda","DE.Controllers.Main.txtShape_curvedRightArrow":"Seta curva para a direita","DE.Controllers.Main.txtShape_curvedUpArrow":"Seta curva para cima","DE.Controllers.Main.txtShape_decagon":"Decágono","DE.Controllers.Main.txtShape_diagStripe":"Faixa diagonal","DE.Controllers.Main.txtShape_diamond":"Diamante","DE.Controllers.Main.txtShape_dodecagon":"Dodecágono","DE.Controllers.Main.txtShape_donut":"Rosquinha","DE.Controllers.Main.txtShape_doubleWave":"Onda dupla","DE.Controllers.Main.txtShape_downArrow":"Seta para baixo","DE.Controllers.Main.txtShape_downArrowCallout":"Chamada de seta para baixo","DE.Controllers.Main.txtShape_ellipse":"Elipse","DE.Controllers.Main.txtShape_ellipseRibbon":"Fita curvada para baixo","DE.Controllers.Main.txtShape_ellipseRibbon2":"Fita curvada para cima","DE.Controllers.Main.txtShape_flowChartAlternateProcess":"Fluxograma: Processo alternativo","DE.Controllers.Main.txtShape_flowChartCollate":"Fluxograma: Agrupar","DE.Controllers.Main.txtShape_flowChartConnector":"Fluxograma: Conector","DE.Controllers.Main.txtShape_flowChartDecision":"Fluxograma: Decisão","DE.Controllers.Main.txtShape_flowChartDelay":"Fluxograma: Atraso","DE.Controllers.Main.txtShape_flowChartDisplay":"Fluxograma: Exibir","DE.Controllers.Main.txtShape_flowChartDocument":"Fluxograma: Documento","DE.Controllers.Main.txtShape_flowChartExtract":"Fluxograma: Extrair","DE.Controllers.Main.txtShape_flowChartInputOutput":"Fluxograma: Dados","DE.Controllers.Main.txtShape_flowChartInternalStorage":"Fluxograma: Armazenamento interno","DE.Controllers.Main.txtShape_flowChartMagneticDisk":"Fluxograma: Disco magnético","DE.Controllers.Main.txtShape_flowChartMagneticDrum":"Fluxograma: Armazenamento de acesso direto","DE.Controllers.Main.txtShape_flowChartMagneticTape":"Fluxograma: Armazenamento de acesso sequencial","DE.Controllers.Main.txtShape_flowChartManualInput":"Fluxograma: Entrada manual","DE.Controllers.Main.txtShape_flowChartManualOperation":"Fluxograma: Operação manual","DE.Controllers.Main.txtShape_flowChartMerge":"Fluxograma: Mesclar","DE.Controllers.Main.txtShape_flowChartMultidocument":"Fluxograma: Vários Documentos","DE.Controllers.Main.txtShape_flowChartOffpageConnector":"Fluxograma: Conector fora da página","DE.Controllers.Main.txtShape_flowChartOnlineStorage":"Fluxograma: Dados armazenados","DE.Controllers.Main.txtShape_flowChartOr":"Fluxograma: Ou","DE.Controllers.Main.txtShape_flowChartPredefinedProcess":"Fluxograma: Processo predefinido","DE.Controllers.Main.txtShape_flowChartPreparation":"Fluxograma: Preparação","DE.Controllers.Main.txtShape_flowChartProcess":"Fluxograma: Processo","DE.Controllers.Main.txtShape_flowChartPunchedCard":"Fluxograma: Cartão","DE.Controllers.Main.txtShape_flowChartPunchedTape":"Fluxograma: Fita perfurada","DE.Controllers.Main.txtShape_flowChartSort":"Fluxograma: Classificar","DE.Controllers.Main.txtShape_flowChartSummingJunction":"Fluxograma: Junção de soma","DE.Controllers.Main.txtShape_flowChartTerminator":"Fluxograma: Terminação","DE.Controllers.Main.txtShape_foldedCorner":"Canto dobrado","DE.Controllers.Main.txtShape_frame":"Moldura","DE.Controllers.Main.txtShape_halfFrame":"Meia moldura","DE.Controllers.Main.txtShape_heart":"Coração","DE.Controllers.Main.txtShape_heptagon":"Heptágono","DE.Controllers.Main.txtShape_hexagon":"Hexágono","DE.Controllers.Main.txtShape_homePlate":"Pentágono","DE.Controllers.Main.txtShape_horizontalScroll":"Rolagem horizontal","DE.Controllers.Main.txtShape_irregularSeal1":"Explosão 1","DE.Controllers.Main.txtShape_irregularSeal2":"Explosão 2","DE.Controllers.Main.txtShape_leftArrow":"Seta para a esquerda","DE.Controllers.Main.txtShape_leftArrowCallout":"Texto explicativo à esquerda","DE.Controllers.Main.txtShape_leftBrace":"Chave esquerda","DE.Controllers.Main.txtShape_leftBracket":"Colchete esquerdo","DE.Controllers.Main.txtShape_leftRightArrow":"Seta da esquerda para a direita","DE.Controllers.Main.txtShape_leftRightArrowCallout":"Texto explicativo da seta da esquerda para a direita","DE.Controllers.Main.txtShape_leftRightUpArrow":"Seta da esquerda para a direita para cima","DE.Controllers.Main.txtShape_leftUpArrow":"Seta esquerda para cima","DE.Controllers.Main.txtShape_lightningBolt":"Raio","DE.Controllers.Main.txtShape_line":"Linha","DE.Controllers.Main.txtShape_lineWithArrow":"Seta","DE.Controllers.Main.txtShape_lineWithTwoArrows":"Seta dupla","DE.Controllers.Main.txtShape_mathDivide":"Divisão","DE.Controllers.Main.txtShape_mathEqual":"Igual","DE.Controllers.Main.txtShape_mathMinus":"Menos","DE.Controllers.Main.txtShape_mathMultiply":"Multiplicar","DE.Controllers.Main.txtShape_mathNotEqual":"Não é igual","DE.Controllers.Main.txtShape_mathPlus":"Mais","DE.Controllers.Main.txtShape_moon":"Lua","DE.Controllers.Main.txtShape_noSmoking":"Símbolo de \"Não\"","DE.Controllers.Main.txtShape_notchedRightArrow":"Seta cortada à direita","DE.Controllers.Main.txtShape_octagon":"Octágono","DE.Controllers.Main.txtShape_parallelogram":"Paralelograma","DE.Controllers.Main.txtShape_pentagon":"Pentágono","DE.Controllers.Main.txtShape_pie":"Gráfico de pizza","DE.Controllers.Main.txtShape_plaque":"Assinar","DE.Controllers.Main.txtShape_plus":"Mais","DE.Controllers.Main.txtShape_polyline1":"Rabisco","DE.Controllers.Main.txtShape_polyline2":"Forma livre","DE.Controllers.Main.txtShape_quadArrow":"Setas cruzadas","DE.Controllers.Main.txtShape_quadArrowCallout":"Texto explicativo em seta cruzadas","DE.Controllers.Main.txtShape_rect":"Retângulo","DE.Controllers.Main.txtShape_ribbon":"Fita para baixo","DE.Controllers.Main.txtShape_ribbon2":"Fita para cima","DE.Controllers.Main.txtShape_rightArrow":"Seta para direita","DE.Controllers.Main.txtShape_rightArrowCallout":"Texto explicativo da seta à direita","DE.Controllers.Main.txtShape_rightBrace":"Chave à direita","DE.Controllers.Main.txtShape_rightBracket":"Colchete direito","DE.Controllers.Main.txtShape_round1Rect":"Retângulo com único canto arredondado","DE.Controllers.Main.txtShape_round2DiagRect":"Retângulo de canto diagonal arredondado ","DE.Controllers.Main.txtShape_round2SameRect":"Retângulo arredondado do mesmo lado","DE.Controllers.Main.txtShape_roundRect":"Retângulo arredondado","DE.Controllers.Main.txtShape_rtTriangle":"Triângulo retângulo","DE.Controllers.Main.txtShape_smileyFace":"Rosto sorridente","DE.Controllers.Main.txtShape_snip1Rect":"Retângulo de canto único recortado","DE.Controllers.Main.txtShape_snip2DiagRect":"Retângulo de canto diagonal recortado","DE.Controllers.Main.txtShape_snip2SameRect":"Retângulo com canto recortado do mesmo lado","DE.Controllers.Main.txtShape_snipRoundRect":"Retângulo com canto recortado e arredondado","DE.Controllers.Main.txtShape_spline":"Curva","DE.Controllers.Main.txtShape_star10":"Estrela de 10 pontas","DE.Controllers.Main.txtShape_star12":"Estrela de 12 pontas","DE.Controllers.Main.txtShape_star16":"Estrela de 16 pontas","DE.Controllers.Main.txtShape_star24":"Estrela de 24 pontas","DE.Controllers.Main.txtShape_star32":"Estrela de 32 pontos","DE.Controllers.Main.txtShape_star4":"Estrela de 4 pontas","DE.Controllers.Main.txtShape_star5":"Estrela de 5 pontas","DE.Controllers.Main.txtShape_star6":"Estrela de 6 pontas","DE.Controllers.Main.txtShape_star7":"Estrela de 7 pontas","DE.Controllers.Main.txtShape_star8":"Estrela de 8 pontas","DE.Controllers.Main.txtShape_stripedRightArrow":"Seta para a direita listrada","DE.Controllers.Main.txtShape_sun":"Sol","DE.Controllers.Main.txtShape_teardrop":"Lágrima","DE.Controllers.Main.txtShape_textRect":"Caixa de texto","DE.Controllers.Main.txtShape_trapezoid":"Trapézio","DE.Controllers.Main.txtShape_triangle":"Triângulo","DE.Controllers.Main.txtShape_upArrow":"Seta para cima","DE.Controllers.Main.txtShape_upArrowCallout":"Texto explicativo em seta para cima","DE.Controllers.Main.txtShape_upDownArrow":"Seta de cima para baixo","DE.Controllers.Main.txtShape_uturnArrow":"Seta em forma de U","DE.Controllers.Main.txtShape_verticalScroll":"Rolagem vertical","DE.Controllers.Main.txtShape_wave":"Onda","DE.Controllers.Main.txtShape_wedgeEllipseCallout":"Texto explicativo oval","DE.Controllers.Main.txtShape_wedgeRectCallout":"Texto explicativo retangular","DE.Controllers.Main.txtShape_wedgeRoundRectCallout":"Texto explicativo retangular arredondado","DE.Controllers.Main.txtStarsRibbons":"Estrelas e faixas","DE.Controllers.Main.txtStyle_Book_Title":"Título do livro","DE.Controllers.Main.txtStyle_Caption":"Legenda","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"Fonte de parágrafo padrão","DE.Controllers.Main.txtStyle_Emphasis":"Ênfase","DE.Controllers.Main.txtStyle_endnote_reference":"Referência de nota final","DE.Controllers.Main.txtStyle_endnote_text":"Texto de fim de nota","DE.Controllers.Main.txtStyle_footnote_reference":"Referência de nota de rodapé","DE.Controllers.Main.txtStyle_footnote_text":"Texto de notas de rodapé","DE.Controllers.Main.txtStyle_Heading_1":"Cabeçalho 1","DE.Controllers.Main.txtStyle_Heading_2":"Cabeçalho 2","DE.Controllers.Main.txtStyle_Heading_3":"Cabeçalho 3","DE.Controllers.Main.txtStyle_Heading_4":"Cabeçalho 4","DE.Controllers.Main.txtStyle_Heading_5":"Cabeçalho 5","DE.Controllers.Main.txtStyle_Heading_6":"Cabeçalho 6","DE.Controllers.Main.txtStyle_Heading_7":"Cabeçalho 7","DE.Controllers.Main.txtStyle_Heading_8":"Cabeçalho 8","DE.Controllers.Main.txtStyle_Heading_9":"Cabeçalho 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"Ênfase intensa","DE.Controllers.Main.txtStyle_Intense_Quote":"Citação intensa","DE.Controllers.Main.txtStyle_Intense_Reference":"Ênfase intensa","DE.Controllers.Main.txtStyle_List_Paragraph":"Listar parágrafo","DE.Controllers.Main.txtStyle_No_List":"Não há lista","DE.Controllers.Main.txtStyle_No_Spacing":"Sem espaçamento","DE.Controllers.Main.txtStyle_Normal":"Normal","DE.Controllers.Main.txtStyle_Quote":"Citar","DE.Controllers.Main.txtStyle_Strong":"Forte","DE.Controllers.Main.txtStyle_Subtitle":"Legenda","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"Ênfase sutil","DE.Controllers.Main.txtStyle_Subtle_Reference":"Referência sutil","DE.Controllers.Main.txtStyle_Title":"Titulo","DE.Controllers.Main.txtSyntaxError":"Erro de sintaxe","DE.Controllers.Main.txtTableInd":"O índice da tabela não pode ser zero","DE.Controllers.Main.txtTableOfContents":"Tabela de conteúdo","DE.Controllers.Main.txtTableOfFigures":"Tabela de figuras","DE.Controllers.Main.txtTOCHeading":"Rúbrica TOC","DE.Controllers.Main.txtTooLarge":"Número muito extenso para formatar","DE.Controllers.Main.txtTypeEquation":"Digite uma equação aqui.","DE.Controllers.Main.txtUndefBookmark":"Marcador indefinido","DE.Controllers.Main.txtXAxis":"Eixo X","DE.Controllers.Main.txtYAxis":"Eixo Y","DE.Controllers.Main.txtZeroDivide":"Divisão por zero","DE.Controllers.Main.unknownErrorText":"Erro desconhecido.","DE.Controllers.Main.unsupportedBrowserErrorText":"Seu navegador não é suportado.","DE.Controllers.Main.updateChartText":"Atualizando dados do gráfico...","DE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconhecido.","DE.Controllers.Main.uploadDocFileCountMessage":"Nenhum documento carregado.","DE.Controllers.Main.uploadDocSizeMessage":"Tamanho máximo do documento excedido.","DE.Controllers.Main.uploadImageExtMessage":"Formato de imagem desconhecido.","DE.Controllers.Main.uploadImageFileCountMessage":"Sem imagens carregadas.","DE.Controllers.Main.uploadImageSizeMessage":"Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.","DE.Controllers.Main.uploadImageTextText":"Carregando imagem...","DE.Controllers.Main.uploadImageTitleText":"Carregando imagem","DE.Controllers.Main.waitText":"Aguarde...","DE.Controllers.Main.warnBrowserIE9":"O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior","DE.Controllers.Main.warnBrowserZoom":"A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.","DE.Controllers.Main.warnLicenseAnonymous":"Acesso negado para usuários anônimos.
Este documento será aberto apenas para visualização.","DE.Controllers.Main.warnLicenseBefore":"Licença inativa.
Entre em contato com seu administrador.","DE.Controllers.Main.warnLicenseExp":"Sua licença expirou.
Atualize sua licença e refresque a página.","DE.Controllers.Main.warnLicenseLimitedNoAccess":"A licença expirou.
Você não tem acesso à funcionalidade de edição de documentos.
Por favor, contate seu administrador.","DE.Controllers.Main.warnLicenseLimitedRenewed":"A licença precisa ser renovada.
Você tem acesso limitado à funcionalidade de edição de documentos.
Entre em contato com o administrador para obter acesso total.","DE.Controllers.Main.warnNoLicense":"Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.","DE.Controllers.Main.warnNoLicenseUsers":"Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.","DE.Controllers.Main.warnProcessRightsChange":"Foi negado a você o direito de editar o arquivo.","DE.Controllers.Main.warnStartFilling":"O preenchimento do formulário está em andamento.
A edição do arquivo não está disponível no momento.","DE.Controllers.Navigation.txtBeginning":"Início do documento","DE.Controllers.Navigation.txtGotoBeginning":"Ir para o início do documento","DE.Controllers.Print.textMarginsLast":"Últimos personalizados","DE.Controllers.Print.txtCustom":"Personalizado","DE.Controllers.Print.txtPrintRangeInvalid":"Intervalo de impressão inválido","DE.Controllers.Search.notcriticalErrorTitle":"Aviso","DE.Controllers.Search.textNoTextFound":"Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.","DE.Controllers.Search.textReplaceSkipped":"A substituição foi realizada. {0} ocorrências foram ignoradas.","DE.Controllers.Search.textReplaceSuccess":"A pesquisa foi feita. {0} ocorrências foram substituídas","DE.Controllers.Search.warnReplaceString":"{0} não é um caractere especial válido para a caixa Substituir Por.","DE.Controllers.Statusbar.textDisconnect":"A conexão foi perdida
Tentando conectar. Verifique as configurações de conexão.","DE.Controllers.Statusbar.textHasChanges":"New changes have been tracked","DE.Controllers.Statusbar.textSetTrackChanges":"Você está em modo de rastreamento de alterações","DE.Controllers.Statusbar.textTrackChanges":"The document is opened with the Track Changes mode enabled","DE.Controllers.Statusbar.tipReview":"Rastrear alterações","DE.Controllers.Statusbar.zoomText":"Ampliação {0}%","DE.Controllers.Toolbar.confirmAddFontName":"A fonte que você vai salvar não está disponível no dispositivo atual.
O estilo de texto será exibido usando uma das fontes do sistema, a fonte salva será usada quando ela estiver disponível.
Você deseja continuar?","DE.Controllers.Toolbar.dataUrl":"Colar uma URL de dados","DE.Controllers.Toolbar.errorAccessDeny":"Você está tentando executar uma ação para a qual não tem direitos.
Entre em contato com o administrador do Document Server.","DE.Controllers.Toolbar.fileUrl":"Colar um URL de arquivo","DE.Controllers.Toolbar.helpChartElements":"Alterne facilmente a visibilidade dos elementos do gráfico com alguns cliques.","DE.Controllers.Toolbar.helpChartElementsHeader":"Exibição de elementos do gráfico","DE.Controllers.Toolbar.helpCommentFilter":"Gerencie sua visualização alternando entre comentários abertos e resolvidos no painel esquerdo.","DE.Controllers.Toolbar.helpCommentFilterHeader":"Filtros de comentários","DE.Controllers.Toolbar.notcriticalErrorTitle":"Aviso","DE.Controllers.Toolbar.textAccent":"Acentos","DE.Controllers.Toolbar.textBracket":"Parênteses","DE.Controllers.Toolbar.textConvertFormDownload":"Baixe o arquivo como um formulário PDF preenchível para poder preenchê-lo.","DE.Controllers.Toolbar.textConvertFormSave":"Salve o arquivo como um formulário PDF preenchível para poder preenchê-lo.","DE.Controllers.Toolbar.textDownloadPdf":"Baixar PDF","DE.Controllers.Toolbar.textEmptyMMergeUrl":"Você precisa especificar o URL.","DE.Controllers.Toolbar.textFontSizeErr":"O valor inserido está incorreto.
Insira um valor numérico entre 1 e 300","DE.Controllers.Toolbar.textFraction":"Frações","DE.Controllers.Toolbar.textFunction":"Funções","DE.Controllers.Toolbar.textGroup":"Grupo","DE.Controllers.Toolbar.textInsert":"Inserir","DE.Controllers.Toolbar.textIntegral":"Integrais","DE.Controllers.Toolbar.textLargeOperator":"Grandes operadores","DE.Controllers.Toolbar.textLimitAndLog":"Limites e logaritmos","DE.Controllers.Toolbar.textMatrix":"Matrizes","DE.Controllers.Toolbar.textOperator":"Operadores","DE.Controllers.Toolbar.textRadical":"Radicais","DE.Controllers.Toolbar.textRecentlyUsed":"Usado recentemente","DE.Controllers.Toolbar.textSavePdf":"Salvar em PDF","DE.Controllers.Toolbar.textScript":"Scripts","DE.Controllers.Toolbar.textSymbols":"Símbolos","DE.Controllers.Toolbar.textTabForms":"Formulários","DE.Controllers.Toolbar.textWarning":"Aviso","DE.Controllers.Toolbar.txtAccent_Accent":"Agudo","DE.Controllers.Toolbar.txtAccent_ArrowD":"Seta para direita-esquerda acima","DE.Controllers.Toolbar.txtAccent_ArrowL":"Seta adiante para cima","DE.Controllers.Toolbar.txtAccent_ArrowR":"Seta para direita acima","DE.Controllers.Toolbar.txtAccent_Bar":"Barra","DE.Controllers.Toolbar.txtAccent_BarBot":"Barra inferior","DE.Controllers.Toolbar.txtAccent_BarTop":"Barra superior","DE.Controllers.Toolbar.txtAccent_BorderBox":"Fórmula Emoldurada (com Espaço Reservado)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"Fórmula embalada(Exemplo)","DE.Controllers.Toolbar.txtAccent_Check":"Verificar","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"Chave Inferior","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"Chave Superior","DE.Controllers.Toolbar.txtAccent_Custom_1":"Vetor A","DE.Controllers.Toolbar.txtAccent_Custom_2":"Barra superior com ABC","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y com barra superior","DE.Controllers.Toolbar.txtAccent_DDDot":"Ponto triplo","DE.Controllers.Toolbar.txtAccent_DDot":"Ponto duplo","DE.Controllers.Toolbar.txtAccent_Dot":"Ponto","DE.Controllers.Toolbar.txtAccent_DoubleBar":"Barra superior dupla","DE.Controllers.Toolbar.txtAccent_Grave":"Grave","DE.Controllers.Toolbar.txtAccent_GroupBot":"Agrupamento de caracteres abaixo","DE.Controllers.Toolbar.txtAccent_GroupTop":"Agrupamento de caracteres acima","DE.Controllers.Toolbar.txtAccent_HarpoonL":"Arpão adiante para cima","DE.Controllers.Toolbar.txtAccent_HarpoonR":"Arpão para direita acima","DE.Controllers.Toolbar.txtAccent_Hat":"Acento circunflexo","DE.Controllers.Toolbar.txtAccent_Smile":"Breve","DE.Controllers.Toolbar.txtAccent_Tilde":"Til","DE.Controllers.Toolbar.txtBracket_Angle":"Parênteses","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"Parênteses com separadores","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"Parênteses com separadores","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"Colchete de ângulo reto","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"Colchete Simples","DE.Controllers.Toolbar.txtBracket_Curve":"Colchetes","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"Colchetes com separador","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"Colchete direito","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"colchete esquerdo","DE.Controllers.Toolbar.txtBracket_Custom_1":"Casos (Duas Condições)","DE.Controllers.Toolbar.txtBracket_Custom_2":"Casos (Três Condições)","DE.Controllers.Toolbar.txtBracket_Custom_3":"Objeto Empilhado","DE.Controllers.Toolbar.txtBracket_Custom_4":"Objeto empilhado entre parênteses","DE.Controllers.Toolbar.txtBracket_Custom_5":"Exemplo de casos","DE.Controllers.Toolbar.txtBracket_Custom_6":"Coeficiente binominal","DE.Controllers.Toolbar.txtBracket_Custom_7":"Coeficiente binominal","DE.Controllers.Toolbar.txtBracket_Line":"Barras verticais","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"Barra vertical direita","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"Barra vertical esquerda","DE.Controllers.Toolbar.txtBracket_LineDouble":"Barras verticais duplas","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"Barra vertical dupla direita","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"Barra vertical dupla esquerda","DE.Controllers.Toolbar.txtBracket_LowLim":"Piso","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"Piso direito","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"Piso esquerdo","DE.Controllers.Toolbar.txtBracket_Round":"Parênteses","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"Parênteses com separadores","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"Parêntese direito","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"Parêntese esquerdo","DE.Controllers.Toolbar.txtBracket_Square":"Colchetes","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"Espaço reservado entre dois colchetes direitos","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"Colchetes invertidos","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"Colchete direito","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"Colchete esquerdo","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"Espaço reservado entre dois colchetes esquerdos","DE.Controllers.Toolbar.txtBracket_SquareDouble":"Colchetes duplos","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"Colchete duplo direito","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"Colchete duplo esquerdo","DE.Controllers.Toolbar.txtBracket_UppLim":"Teto","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"Teto direito","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"Colchete Simples","DE.Controllers.Toolbar.txtDownload":"Baixar","DE.Controllers.Toolbar.txtFractionDiagonal":"Fração inclinada","DE.Controllers.Toolbar.txtFractionDifferential_1":"Derivada","DE.Controllers.Toolbar.txtFractionDifferential_2":"limite delta y sobre limite delta x","DE.Controllers.Toolbar.txtFractionDifferential_3":"y parcial sobre x parcial","DE.Controllers.Toolbar.txtFractionDifferential_4":"Delta y sobre delta x","DE.Controllers.Toolbar.txtFractionHorizontal":"Fração linear","DE.Controllers.Toolbar.txtFractionPi_2":"Pi sobre 2","DE.Controllers.Toolbar.txtFractionSmall":"Fração pequena","DE.Controllers.Toolbar.txtFractionVertical":"Fração Empilhada","DE.Controllers.Toolbar.txtFunction_1_Cos":"Função cosseno inverso","DE.Controllers.Toolbar.txtFunction_1_Cosh":"Função cosseno inverso hiperbólico","DE.Controllers.Toolbar.txtFunction_1_Cot":"Função cotangente inversa","DE.Controllers.Toolbar.txtFunction_1_Coth":"Função cotangente inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Csc":"Função cossecante inversa","DE.Controllers.Toolbar.txtFunction_1_Csch":"Função cossecante inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Sec":"Função secante inversa","DE.Controllers.Toolbar.txtFunction_1_Sech":"Função secante inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_1_Sin":"Função seno inverso","DE.Controllers.Toolbar.txtFunction_1_Sinh":"Função seno inverso hiperbólico","DE.Controllers.Toolbar.txtFunction_1_Tan":"Função tangente inversa","DE.Controllers.Toolbar.txtFunction_1_Tanh":"Função tangente inversa hiperbólica","DE.Controllers.Toolbar.txtFunction_Cos":"Função cosseno","DE.Controllers.Toolbar.txtFunction_Cosh":"Função cosseno hiperbólico","DE.Controllers.Toolbar.txtFunction_Cot":"Função cotangente","DE.Controllers.Toolbar.txtFunction_Coth":"Função cotangente hiperbólica","DE.Controllers.Toolbar.txtFunction_Csc":"Função cossecante","DE.Controllers.Toolbar.txtFunction_Csch":"Função co-secante hiperbólica","DE.Controllers.Toolbar.txtFunction_Custom_1":"Teta seno","DE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"Fórmula da tangente","DE.Controllers.Toolbar.txtFunction_Sec":"Função secante","DE.Controllers.Toolbar.txtFunction_Sech":"Função secante hiperbólica","DE.Controllers.Toolbar.txtFunction_Sin":"Função de seno","DE.Controllers.Toolbar.txtFunction_Sinh":"Função seno hiperbólico","DE.Controllers.Toolbar.txtFunction_Tan":"Função da tangente","DE.Controllers.Toolbar.txtFunction_Tanh":"Função tangente hiperbólica","DE.Controllers.Toolbar.txtIntegral":"Integral","DE.Controllers.Toolbar.txtIntegral_dtheta":"Teta diferencial","DE.Controllers.Toolbar.txtIntegral_dx":"Derivada x","DE.Controllers.Toolbar.txtIntegral_dy":"Derivada y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral com limites empilhados","DE.Controllers.Toolbar.txtIntegralDouble":"Integral dupla","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Integral dupla com limites empilhados","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Integral dupla com limites","DE.Controllers.Toolbar.txtIntegralOriented":"Integral de linha","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"Integral de contorno com limites empilhados","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"Integral de Superfície","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Integral de superfície com limites empilhados","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"Integral de superfície com limites","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"Integral de linha","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"Volume Integral","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"Integral de volume com limites empilhados","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"Volume Integral","DE.Controllers.Toolbar.txtIntegralSubSup":"Integral","DE.Controllers.Toolbar.txtIntegralTriple":"Integral Tripla","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Integral Tripla","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"Integral Tripla","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Lógico e","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Lógico E com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Lógico E com limites","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Lógico E com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Lógico E com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"Coproduto","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Coproduto com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Coproduto com limites","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Co-produto com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Coproduto com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Soma sobre k de n escolha k","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Soma de i igual a zero a n","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Exemplo de soma usando dois índices","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Exemplo de produto","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"União","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"Lógico ou","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"Lógico Ou com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"Lógico Ou com limites","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"Lógico Ou com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"Ou Lógico com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"Interseção","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"Interseção com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"Interseção","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"Interseção com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"Interseção com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Prod":"Produto","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Produto com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Produto com limites","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Produto com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Produto com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Sum":"Somatório","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Soma com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Soma com limites","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Soma com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Soma com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLargeOperator_Union":"União","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"União com limite inferior","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"União com limites","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"União com limite inferior subscrito","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"União com limites subscritos/sobrescritos","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"Exemplo limite","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"Exemplo máximo","DE.Controllers.Toolbar.txtLimitLog_Lim":"Limite","DE.Controllers.Toolbar.txtLimitLog_Ln":"Logaritmo natural","DE.Controllers.Toolbar.txtLimitLog_Log":"Logaritmo","DE.Controllers.Toolbar.txtLimitLog_LogBase":"Logaritmo","DE.Controllers.Toolbar.txtLimitLog_Max":"Máximo","DE.Controllers.Toolbar.txtLimitLog_Min":"Mínimo","DE.Controllers.Toolbar.txtMarginsH":"Margens superior e inferior são muito altas para uma determinada altura da página","DE.Controllers.Toolbar.txtMarginsW":"Margens são muito grandes para uma determinada largura da página","DE.Controllers.Toolbar.txtMatrix_1_2":"Matriz Vazia 1x2","DE.Controllers.Toolbar.txtMatrix_1_3":"Matriz Vazia 1x3","DE.Controllers.Toolbar.txtMatrix_2_1":"Matriz Vazia 2x1","DE.Controllers.Toolbar.txtMatrix_2_2":"Matriz Vazia 2x2","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"Matriz vazia com parênteses","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"Matriz vazia com parênteses","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"Matriz vazia com parênteses","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"Matriz vazia com parênteses","DE.Controllers.Toolbar.txtMatrix_2_3":"Matriz Vazia 2x3","DE.Controllers.Toolbar.txtMatrix_3_1":"Matriz Vazia 3x1","DE.Controllers.Toolbar.txtMatrix_3_2":"Matriz Vazia 3x2","DE.Controllers.Toolbar.txtMatrix_3_3":"Matriz Vazia 3x3","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"Pontos de linha de base","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"Pontos de linha média","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"Pontos diagonais","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"Pontos verticais","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"Matriz esparsa entre parênteses","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"Matriz esparsa em parênteses","DE.Controllers.Toolbar.txtMatrix_Identity_2":"Matriz da identidade 2x2","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"Matriz da identidade 2x2","DE.Controllers.Toolbar.txtMatrix_Identity_3":"Matriz da identidade 3x3","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"Matriz da identidade 3x3","DE.Controllers.Toolbar.txtNeedDownload":"O visualizador de PDF só pode salvar novas alterações em cópias de arquivos separadas. Ele não oferece suporte à coedição e outros usuários não verão suas alterações, a menos que você compartilhe uma nova versão do arquivo.","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"Seta para direita esquerda abaixo","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"Seta para direita-esquerda acima","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"Seta adiante para baixo","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"Seta adiante para cima","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"Seta para direita abaixo","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"Seta para direita acima","DE.Controllers.Toolbar.txtOperator_ColonEquals":"Dois-pontos-Sinal de Igual","DE.Controllers.Toolbar.txtOperator_Custom_1":"Resultados","DE.Controllers.Toolbar.txtOperator_Custom_2":"Resultados de Delta","DE.Controllers.Toolbar.txtOperator_Definition":"Igual a por definição","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta igual a","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"Seta para direita esquerda abaixo","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"Seta para direita-esquerda acima","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"Seta adiante para baixo","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"Seta adiante para cima","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"Seta para direita abaixo","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"Rightwards Arrow Above","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"Sinal de Igual-Sinal de Igual","DE.Controllers.Toolbar.txtOperator_MinusEquals":"Sinal de Menos-Sinal de Igual","DE.Controllers.Toolbar.txtOperator_PlusEquals":"Sinal de Mais-Sinal de Igual","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"Medido por","DE.Controllers.Toolbar.txtRadicalCustom_1":"Lado direito da fórmula quadrática","DE.Controllers.Toolbar.txtRadicalCustom_2":"Raiz quadrada de a ao quadrado mais b ao quadrado","DE.Controllers.Toolbar.txtRadicalRoot_2":"Raiz quadrada com grau","DE.Controllers.Toolbar.txtRadicalRoot_3":"Raiz cúbica","DE.Controllers.Toolbar.txtRadicalRoot_n":"Radical com grau","DE.Controllers.Toolbar.txtRadicalSqrt":"Raiz quadrada","DE.Controllers.Toolbar.txtSaveCopy":"Salvar cópia","DE.Controllers.Toolbar.txtScriptCustom_1":"x subscrito y ao quadrado","DE.Controllers.Toolbar.txtScriptCustom_2":"e elevado a menos i ômega t","DE.Controllers.Toolbar.txtScriptCustom_3":"x ao quadrado","DE.Controllers.Toolbar.txtScriptCustom_4":"Y sobrescrito à esquerda n subscrito à esquerda um","DE.Controllers.Toolbar.txtScriptSub":"Subscrito","DE.Controllers.Toolbar.txtScriptSubSup":"Subscrito-Sobrescrito","DE.Controllers.Toolbar.txtScriptSubSupLeft":"LeftSubscript-Superscript","DE.Controllers.Toolbar.txtScriptSup":"Sobrescrito","DE.Controllers.Toolbar.txtSymbol_about":"Aproximadamente","DE.Controllers.Toolbar.txtSymbol_additional":"Complemento","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Alfa","DE.Controllers.Toolbar.txtSymbol_approx":"Quase igual a","DE.Controllers.Toolbar.txtSymbol_ast":"Operador de asterisco","DE.Controllers.Toolbar.txtSymbol_beta":"Beta","DE.Controllers.Toolbar.txtSymbol_beth":"Aposta","DE.Controllers.Toolbar.txtSymbol_bullet":"Operador de marcador","DE.Controllers.Toolbar.txtSymbol_cap":"Interseção","DE.Controllers.Toolbar.txtSymbol_cbrt":"Raiz cúbica","DE.Controllers.Toolbar.txtSymbol_cdots":"Reticências horizontais de linha média","DE.Controllers.Toolbar.txtSymbol_celsius":"Graus Celsius","DE.Controllers.Toolbar.txtSymbol_chi":"Ki","DE.Controllers.Toolbar.txtSymbol_cong":"Aproximadamente igual a","DE.Controllers.Toolbar.txtSymbol_cup":"União","DE.Controllers.Toolbar.txtSymbol_ddots":"Reticências diagonal para baixo à direita","DE.Controllers.Toolbar.txtSymbol_degree":"Graus","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"Sinal de divisão","DE.Controllers.Toolbar.txtSymbol_downarrow":"Seta para baixo","DE.Controllers.Toolbar.txtSymbol_emptyset":"Conjunto vazio","DE.Controllers.Toolbar.txtSymbol_epsilon":"Epsílon","DE.Controllers.Toolbar.txtSymbol_equals":"Igual","DE.Controllers.Toolbar.txtSymbol_equiv":"Idêntico a","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"Existe","DE.Controllers.Toolbar.txtSymbol_factorial":"Fatorial","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"Graus Fahrenheit","DE.Controllers.Toolbar.txtSymbol_forall":"Para todos","DE.Controllers.Toolbar.txtSymbol_gamma":"Gama","DE.Controllers.Toolbar.txtSymbol_geq":"Superior a ou igual a","DE.Controllers.Toolbar.txtSymbol_gg":"Muito superior a","DE.Controllers.Toolbar.txtSymbol_greater":"Superior a","DE.Controllers.Toolbar.txtSymbol_in":"Elemento de","DE.Controllers.Toolbar.txtSymbol_inc":"Incremento","DE.Controllers.Toolbar.txtSymbol_infinity":"Infinidade","DE.Controllers.Toolbar.txtSymbol_iota":"Iota","DE.Controllers.Toolbar.txtSymbol_kappa":"Capa","DE.Controllers.Toolbar.txtSymbol_lambda":"Lambda","DE.Controllers.Toolbar.txtSymbol_leftarrow":"Seta para esquerda","DE.Controllers.Toolbar.txtSymbol_leftrightarrow":"Seta esquerda-direita","DE.Controllers.Toolbar.txtSymbol_leq":"Inferior a ou igual a","DE.Controllers.Toolbar.txtSymbol_less":"Inferior a","DE.Controllers.Toolbar.txtSymbol_ll":"Muito inferior a","DE.Controllers.Toolbar.txtSymbol_minus":"Menos","DE.Controllers.Toolbar.txtSymbol_mp":"Sinal de Menos-Sinal de Mais","DE.Controllers.Toolbar.txtSymbol_mu":"Mu","DE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","DE.Controllers.Toolbar.txtSymbol_neq":"Não igual a","DE.Controllers.Toolbar.txtSymbol_ni":"Contém como membro","DE.Controllers.Toolbar.txtSymbol_not":"Não entrar","DE.Controllers.Toolbar.txtSymbol_notexists":"Não existe","DE.Controllers.Toolbar.txtSymbol_nu":"Nu","DE.Controllers.Toolbar.txtSymbol_o":"Omicron","DE.Controllers.Toolbar.txtSymbol_omega":"Ômega","DE.Controllers.Toolbar.txtSymbol_partial":"Derivada parcial","DE.Controllers.Toolbar.txtSymbol_percent":"Porcentagem","DE.Controllers.Toolbar.txtSymbol_phi":"Fi","DE.Controllers.Toolbar.txtSymbol_pi":"Pi","DE.Controllers.Toolbar.txtSymbol_plus":"Mais","DE.Controllers.Toolbar.txtSymbol_pm":"Sinal de Menos-Sinal de Igual","DE.Controllers.Toolbar.txtSymbol_propto":"Proporcional a","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"Quarta raiz","DE.Controllers.Toolbar.txtSymbol_qed":"Fim da prova","DE.Controllers.Toolbar.txtSymbol_rddots":"Reticências diagonal direitas para cima","DE.Controllers.Toolbar.txtSymbol_rho":"Rô","DE.Controllers.Toolbar.txtSymbol_rightarrow":"Seta para direita","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"Sinal de Radical","DE.Controllers.Toolbar.txtSymbol_tau":"Tau","DE.Controllers.Toolbar.txtSymbol_therefore":"Portanto","DE.Controllers.Toolbar.txtSymbol_theta":"Teta","DE.Controllers.Toolbar.txtSymbol_times":"Sinal de multiplicação","DE.Controllers.Toolbar.txtSymbol_uparrow":"Seta Para Cima","DE.Controllers.Toolbar.txtSymbol_upsilon":"Ípsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Variante de Epsílon","DE.Controllers.Toolbar.txtSymbol_varphi":"Variante de fi","DE.Controllers.Toolbar.txtSymbol_varpi":"Variante de Pi","DE.Controllers.Toolbar.txtSymbol_varrho":"Variante de Rô","DE.Controllers.Toolbar.txtSymbol_varsigma":"Variante de Sigma","DE.Controllers.Toolbar.txtSymbol_vartheta":"Variante de Teta","DE.Controllers.Toolbar.txtSymbol_vdots":"Reticências verticais","DE.Controllers.Toolbar.txtSymbol_xsi":"Xi","DE.Controllers.Toolbar.txtSymbol_zeta":"Zeta","DE.Controllers.Toolbar.txtUntitled":"Sem título","DE.Controllers.Viewport.textFitPage":"Ajustar a página","DE.Controllers.Viewport.textFitWidth":"Ajustar largura","DE.Controllers.Viewport.txtDarkMode":"Modo escuro","DE.Views.BookmarksDialog.textAdd":"Incluir","DE.Views.BookmarksDialog.textAddAndGetLink":"Adicionar e obter link","DE.Views.BookmarksDialog.textBookmarkName":"Nome do favorito","DE.Views.BookmarksDialog.textClose":"Fechar","DE.Views.BookmarksDialog.textCopy":"Copiar","DE.Views.BookmarksDialog.textDelete":"Excluir","DE.Views.BookmarksDialog.textGetLink":"Obter link","DE.Views.BookmarksDialog.textGoto":"Ir para","DE.Views.BookmarksDialog.textHidden":"Favoritos ocultos","DE.Views.BookmarksDialog.textLocation":"Localização","DE.Views.BookmarksDialog.textName":"Nome","DE.Views.BookmarksDialog.textSort":"Ordenar por","DE.Views.BookmarksDialog.textTitle":"Favoritos","DE.Views.BookmarksDialog.txtInvalidName":"O nome do marcador só pode conter letras, dígitos e sublinhados, e deve começar com a letra","DE.Views.CaptionDialog.textAdd":"Adicionar","DE.Views.CaptionDialog.textAfter":"Depois","DE.Views.CaptionDialog.textBefore":"Antes","DE.Views.CaptionDialog.textCaption":"Legenda","DE.Views.CaptionDialog.textChapter":"Capítulo começa com estilo","DE.Views.CaptionDialog.textChapterInc":"Inclui o número do capítulo","DE.Views.CaptionDialog.textColon":"Dois pontos","DE.Views.CaptionDialog.textDash":"traço","DE.Views.CaptionDialog.textDelete":"Excluir","DE.Views.CaptionDialog.textEquation":"Equação","DE.Views.CaptionDialog.textExamples":"Exemplos: Tabela 2-A, Imagem 1.IV","DE.Views.CaptionDialog.textExclude":"Excluir rótulo da legenda","DE.Views.CaptionDialog.textFigure":"Figura","DE.Views.CaptionDialog.textHyphen":"Hífen","DE.Views.CaptionDialog.textInsert":"Inserir","DE.Views.CaptionDialog.textLabel":"Etiqueta","DE.Views.CaptionDialog.textLabelError":"O rótulo não pode estar vazio.","DE.Views.CaptionDialog.textLongDash":"traço longo","DE.Views.CaptionDialog.textNumbering":"Numeração","DE.Views.CaptionDialog.textPeriod":"Período","DE.Views.CaptionDialog.textSeparator":"Use separador","DE.Views.CaptionDialog.textTable":"Tabela","DE.Views.CaptionDialog.textTitle":"Inserir Legenda","DE.Views.CellsAddDialog.textCol":"Colunas","DE.Views.CellsAddDialog.textDown":"Abaixo do cursor","DE.Views.CellsAddDialog.textLeft":"Para esquerda","DE.Views.CellsAddDialog.textRight":"Para direita","DE.Views.CellsAddDialog.textRow":"Linhas","DE.Views.CellsAddDialog.textTitle":"Insira vários","DE.Views.CellsAddDialog.textUp":"Acima do cursor","DE.Views.CellsRemoveDialog.textCol":"Excluir coluna","DE.Views.CellsRemoveDialog.textLeft":"Deslocar células para a esquerda","DE.Views.CellsRemoveDialog.textRow":"Excluir linha","DE.Views.CellsRemoveDialog.textTitle":"Excluir células","DE.Views.ChartSettings.text3dDepth":"Profundidade (% da base)","DE.Views.ChartSettings.text3dHeight":"Altura (% da base)","DE.Views.ChartSettings.text3dRotation":"Rotação 3D","DE.Views.ChartSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.ChartSettings.textAutoscale":"Autoescala","DE.Views.ChartSettings.textChartType":"Alterar tipo de gráfico","DE.Views.ChartSettings.textData":"Dados","DE.Views.ChartSettings.textDefault":"Rotação padrão","DE.Views.ChartSettings.textDown":"Abaixo","DE.Views.ChartSettings.textEditData":"Editar dados","DE.Views.ChartSettings.textEditLinks":"Editar links","DE.Views.ChartSettings.textHeight":"Altura","DE.Views.ChartSettings.textKeepRatio":"Proporções constantes","DE.Views.ChartSettings.textLeft":"Esquerda","DE.Views.ChartSettings.textLinkedData":"Dados vinculados","DE.Views.ChartSettings.textNarrow":"Campo de visão estreito","DE.Views.ChartSettings.textOriginalSize":"Tamanho atual","DE.Views.ChartSettings.textPerspective":"Perspectiva","DE.Views.ChartSettings.textRight":"Direita","DE.Views.ChartSettings.textRightAngle":"Eixos de ângulo reto","DE.Views.ChartSettings.textSelectData":"Selecionar dados","DE.Views.ChartSettings.textSize":"Tamanho","DE.Views.ChartSettings.textStyle":"Estilo","DE.Views.ChartSettings.textUndock":"Desencaixar do painel","DE.Views.ChartSettings.textUp":"Para cima","DE.Views.ChartSettings.textUpdateData":"Atualizar dados","DE.Views.ChartSettings.textWiden":"Ampliar o campo de visão","DE.Views.ChartSettings.textWidth":"Largura","DE.Views.ChartSettings.textWrap":"Estilo da quebra automática","DE.Views.ChartSettings.textX":"Rotação X","DE.Views.ChartSettings.textY":"Rotação Y","DE.Views.ChartSettings.txtBehind":"Atrás do texto","DE.Views.ChartSettings.txtInFront":"Em frente ao Texto","DE.Views.ChartSettings.txtInline":"Alinhado ao texto","DE.Views.ChartSettings.txtSquare":"Quadrado","DE.Views.ChartSettings.txtThrough":"Através","DE.Views.ChartSettings.txtTight":"Justo","DE.Views.ChartSettings.txtTitle":"Gráfico","DE.Views.ChartSettings.txtTopAndBottom":"Parte superior e inferior","DE.Views.ChartSettingsDlg.textLeftOverlay":"Sobreposição esquerda","DE.Views.CompareSettingsDialog.textChar":"Nivel de caracter","DE.Views.CompareSettingsDialog.textShow":"Mostrar mudanças em","DE.Views.CompareSettingsDialog.textTitle":"Configurações de Comparação","DE.Views.CompareSettingsDialog.textWord":"Nível de palavra","DE.Views.ControlSettingsDialog.strGeneral":"Geral","DE.Views.ControlSettingsDialog.textAdd":"Incluir","DE.Views.ControlSettingsDialog.textAppearance":"Aparência","DE.Views.ControlSettingsDialog.textApplyAll":"Aplicar a Todos","DE.Views.ControlSettingsDialog.textBox":"Caixa delimitadora","DE.Views.ControlSettingsDialog.textChange":"Editar","DE.Views.ControlSettingsDialog.textCheckbox":"Caixa de seleção","DE.Views.ControlSettingsDialog.textChecked":"Símbolo marcado","DE.Views.ControlSettingsDialog.textColor":"Cor","DE.Views.ControlSettingsDialog.textCombobox":"Caixa de combinação","DE.Views.ControlSettingsDialog.textDate":"Formato de data","DE.Views.ControlSettingsDialog.textDelete":"Excluir","DE.Views.ControlSettingsDialog.textDisplayName":"Nome de exibição","DE.Views.ControlSettingsDialog.textDown":"Abaixo","DE.Views.ControlSettingsDialog.textDropDown":"Lista suspensa","DE.Views.ControlSettingsDialog.textFormat":"Mostra a data assim","DE.Views.ControlSettingsDialog.textLang":"Idioma","DE.Views.ControlSettingsDialog.textLock":"Travar","DE.Views.ControlSettingsDialog.textName":"Título","DE.Views.ControlSettingsDialog.textNone":"Nenhum","DE.Views.ControlSettingsDialog.textPlaceholder":"Marcador de posição","DE.Views.ControlSettingsDialog.textShowAs":"Exibir como","DE.Views.ControlSettingsDialog.textSystemColor":"Sistema","DE.Views.ControlSettingsDialog.textTag":"Etiqueta","DE.Views.ControlSettingsDialog.textTitle":"Propriedades do controle de conteúdo","DE.Views.ControlSettingsDialog.textUnchecked":"Símbolo não verificado","DE.Views.ControlSettingsDialog.textUp":"Para cima","DE.Views.ControlSettingsDialog.textValue":"Valor","DE.Views.ControlSettingsDialog.tipChange":"Símbolo de Alterar","DE.Views.ControlSettingsDialog.txtLockDelete":"Controle de conteúdo não pode ser excluído","DE.Views.ControlSettingsDialog.txtLockEdit":"Conteúdo não pode ser editado","DE.Views.ControlSettingsDialog.txtRemContent":"Remova o controle de conteúdo quando o conteúdo for editado","DE.Views.CrossReferenceDialog.textAboveBelow":"Acima/Abaixo","DE.Views.CrossReferenceDialog.textBookmark":"Marcador","DE.Views.CrossReferenceDialog.textBookmarkText":"Marcar texto","DE.Views.CrossReferenceDialog.textCaption":"Título completo","DE.Views.CrossReferenceDialog.textEmpty":"A referência do pedido está vazia.","DE.Views.CrossReferenceDialog.textEndnote":"Nota final","DE.Views.CrossReferenceDialog.textEndNoteNum":"Número de Nota Final","DE.Views.CrossReferenceDialog.textEndNoteNumForm":"Número da nota final (formatado)","DE.Views.CrossReferenceDialog.textEquation":"Equação","DE.Views.CrossReferenceDialog.textFigure":"Figura","DE.Views.CrossReferenceDialog.textFootnote":"Nota de rodapé","DE.Views.CrossReferenceDialog.textHeading":"Título","DE.Views.CrossReferenceDialog.textHeadingNum":"Número do cabeçalho","DE.Views.CrossReferenceDialog.textHeadingNumFull":"Número do cabeçalho (contexto completo)","DE.Views.CrossReferenceDialog.textHeadingNumNo":"Número do cabeçalho (sem contexto)","DE.Views.CrossReferenceDialog.textHeadingText":"Texto do título","DE.Views.CrossReferenceDialog.textIncludeAbove":"Incluir acima/abaixo","DE.Views.CrossReferenceDialog.textInsert":"Inserir","DE.Views.CrossReferenceDialog.textInsertAs":"Inserir como hiperlink","DE.Views.CrossReferenceDialog.textLabelNum":"Apenas etiqueta e número","DE.Views.CrossReferenceDialog.textNoteNum":"Número da nota de rodapé","DE.Views.CrossReferenceDialog.textNoteNumForm":"Número da nota de rodapé (formatado)","DE.Views.CrossReferenceDialog.textOnlyCaption":"Apenas texto de legenda","DE.Views.CrossReferenceDialog.textPageNum":"Número da página","DE.Views.CrossReferenceDialog.textParagraph":"Item numerado","DE.Views.CrossReferenceDialog.textParaNum":"Número do parágrafo","DE.Views.CrossReferenceDialog.textParaNumFull":"Número do parágrafo (contexto completo)","DE.Views.CrossReferenceDialog.textParaNumNo":"Número do parágrafo (sem contexto)","DE.Views.CrossReferenceDialog.textSeparate":"Números separados com","DE.Views.CrossReferenceDialog.textTable":"Tabela","DE.Views.CrossReferenceDialog.textText":"Texto do parágrafo","DE.Views.CrossReferenceDialog.textWhich":"Para qual legenda","DE.Views.CrossReferenceDialog.textWhichBookmark":"Para qual favorito","DE.Views.CrossReferenceDialog.textWhichEndnote":"Para qual nota final","DE.Views.CrossReferenceDialog.textWhichHeading":"Para qual título","DE.Views.CrossReferenceDialog.textWhichNote":"Para qual nota de rodapé","DE.Views.CrossReferenceDialog.textWhichPara":"Para qual item numerado","DE.Views.CrossReferenceDialog.txtReference":"Inserir referência a","DE.Views.CrossReferenceDialog.txtTitle":"Referência cruzada","DE.Views.CrossReferenceDialog.txtType":"Tipo de referência","DE.Views.CustomColumnsDialog.textColumns":"Número de colunas","DE.Views.CustomColumnsDialog.textEqualWidth":"Largura da coluna igual","DE.Views.CustomColumnsDialog.textSeparator":"Divisor de coluna","DE.Views.CustomColumnsDialog.textTitle":"Colunas","DE.Views.CustomColumnsDialog.textTitleSpacing":"Espaçamento","DE.Views.CustomColumnsDialog.textWidth":"Largura","DE.Views.DateTimeDialog.confirmDefault":"Definir formato padrão para {0}: \"{1}\"","DE.Views.DateTimeDialog.textDefault":"Definir como padrão","DE.Views.DateTimeDialog.textFormat":"Formatos","DE.Views.DateTimeDialog.textLang":"Idioma","DE.Views.DateTimeDialog.textUpdate":"Atualizar automaticamente","DE.Views.DateTimeDialog.txtTitle":"Data e hora","DE.Views.DocProtection.hintProtectDoc":"Proteger o Documento","DE.Views.DocProtection.txtDocProtectedComment":"O documento está protegido.
Você só pode inserir comentários neste documento.","DE.Views.DocProtection.txtDocProtectedForms":"O documento está protegido.
Você só pode preencher formulários neste documento.","DE.Views.DocProtection.txtDocProtectedTrack":"O documento está protegido.
Você pode editar este documento, mas todas as alterações serão rastreadas.","DE.Views.DocProtection.txtDocProtectedView":"O documento está protegido.
Você só pode visualizar este documento.","DE.Views.DocProtection.txtDocUnlockDescription":"Digite uma senha para desproteger o documento","DE.Views.DocProtection.txtProtectDoc":"Proteger o documento","DE.Views.DocProtection.txtUnlockTitle":"Desproteger documento","DE.Views.DocumentHolder.aboveText":"Acima","DE.Views.DocumentHolder.addCommentText":"Adicionar comentário","DE.Views.DocumentHolder.advancedDropCapText":"Configurações de letra capitular","DE.Views.DocumentHolder.advancedEquationText":"Definições de equação","DE.Views.DocumentHolder.advancedFrameText":"Configurações avançadas de moldura","DE.Views.DocumentHolder.advancedParagraphText":"Configurações avançadas de parágrafo","DE.Views.DocumentHolder.advancedTableText":"Configurações avançadas de tabela","DE.Views.DocumentHolder.advancedText":"Configurações avançadas","DE.Views.DocumentHolder.AlignBottom":"Inferior","DE.Views.DocumentHolder.AlignCenter":"Centro","DE.Views.DocumentHolder.AlignJust":"Justificar","DE.Views.DocumentHolder.AlignLeft":"Esquerda","DE.Views.DocumentHolder.alignmentText":"Alinhamento","DE.Views.DocumentHolder.AlignMiddle":"Meio","DE.Views.DocumentHolder.AlignRight":"Direita","DE.Views.DocumentHolder.AlignText":"Alinhamento de texto","DE.Views.DocumentHolder.AlignTop":"Parte superior","DE.Views.DocumentHolder.allLinearText":"Tudo - Linear","DE.Views.DocumentHolder.allProfText":"Tudo - Profissional","DE.Views.DocumentHolder.belowText":"Abaixo","DE.Views.DocumentHolder.breakBeforeText":"Quebra de página antes","DE.Views.DocumentHolder.btnChart":"Adicionar, remover ou alterar elementos do gráfico, como título, legenda, linhas de grade e rótulos de dados","DE.Views.DocumentHolder.bulletsText":"Marcadores e numeração","DE.Views.DocumentHolder.cellAlignText":"Alinhamento vertical da célula","DE.Views.DocumentHolder.cellText":"Célula","DE.Views.DocumentHolder.centerText":"Centro","DE.Views.DocumentHolder.chartText":"Configurações avançadas de gráfico","DE.Views.DocumentHolder.columnText":"Coluna","DE.Views.DocumentHolder.currLinearText":"Atual - Linear","DE.Views.DocumentHolder.currProfText":"Atual - Profissional","DE.Views.DocumentHolder.deleteColumnText":"Excluir coluna","DE.Views.DocumentHolder.deleteRowText":"Excluir linha","DE.Views.DocumentHolder.deleteTableText":"Excluir tabela","DE.Views.DocumentHolder.deleteText":"Excluir","DE.Views.DocumentHolder.DepthAxis":"Eixo Z","DE.Views.DocumentHolder.direct270Text":"Girar o texto para cima","DE.Views.DocumentHolder.direct90Text":"Girar o texto para baixo","DE.Views.DocumentHolder.directHText":"Horizontal","DE.Views.DocumentHolder.directionText":"Text Direction","DE.Views.DocumentHolder.editChartText":"Editar dados","DE.Views.DocumentHolder.editFooterText":"Editar rodapé","DE.Views.DocumentHolder.editHeaderText":"Editar cabeçalho","DE.Views.DocumentHolder.editHyperlinkText":"Editar Link","DE.Views.DocumentHolder.eqToDisplayText":"Alterar para exibição","DE.Views.DocumentHolder.eqToInlineText":"Alterar para em linha","DE.Views.DocumentHolder.guestText":"Visitante","DE.Views.DocumentHolder.hideEqToolbar":"Ocultar barra de ferramentas de equação","DE.Views.DocumentHolder.hyperlinkText":"Link","DE.Views.DocumentHolder.ignoreAllSpellText":"Ignorar tudo","DE.Views.DocumentHolder.ignoreSpellText":"Ignorar","DE.Views.DocumentHolder.imageText":"Configurações avançadas de imagem","DE.Views.DocumentHolder.insertColumnLeftText":"Coluna à esquerda","DE.Views.DocumentHolder.insertColumnRightText":"Coluna à direita","DE.Views.DocumentHolder.insertColumnText":"Inserir coluna","DE.Views.DocumentHolder.insertRowAboveText":"Linha acima","DE.Views.DocumentHolder.insertRowBelowText":"Linha abaixo","DE.Views.DocumentHolder.insertRowText":"Inserir linha","DE.Views.DocumentHolder.insertText":"Inserir","DE.Views.DocumentHolder.keepLinesText":"Manter as linhas juntas","DE.Views.DocumentHolder.langText":"Selecionar idioma","DE.Views.DocumentHolder.latexText":"LaTex","DE.Views.DocumentHolder.leftText":"Esquerda","DE.Views.DocumentHolder.loadSpellText":"Carregando variantes...","DE.Views.DocumentHolder.mergeCellsText":"Mesclar células","DE.Views.DocumentHolder.mniImageFromFile":"Imagem do arquivo","DE.Views.DocumentHolder.mniImageFromStorage":"Imagem do armazenamento","DE.Views.DocumentHolder.mniImageFromUrl":"Imagem da URL","DE.Views.DocumentHolder.moreText":"Mais variantes...","DE.Views.DocumentHolder.noSpellVariantsText":"Sem varientes","DE.Views.DocumentHolder.notcriticalErrorTitle":"Aviso","DE.Views.DocumentHolder.originalSizeText":"Tamanho padrão","DE.Views.DocumentHolder.paragraphText":"Parágrafo","DE.Views.DocumentHolder.removeHyperlinkText":"Remover link","DE.Views.DocumentHolder.rightText":"Direita","DE.Views.DocumentHolder.rowText":"Linha","DE.Views.DocumentHolder.saveStyleText":"Criar novo estilo","DE.Views.DocumentHolder.selectCellText":"Selecionar célula","DE.Views.DocumentHolder.selectColumnText":"Selecionar coluna","DE.Views.DocumentHolder.selectRowText":"Selecionar linha","DE.Views.DocumentHolder.selectTableText":"Selecionar tabela","DE.Views.DocumentHolder.selectText":"Selecionar","DE.Views.DocumentHolder.shapeText":"Configurações avançadas de forma","DE.Views.DocumentHolder.showEqToolbar":"Mostrar barra de ferramentas de equação","DE.Views.DocumentHolder.spellcheckText":"Verificação ortográfica","DE.Views.DocumentHolder.splitCellsText":"Dividir célula...","DE.Views.DocumentHolder.splitCellTitleText":"Dividir célula","DE.Views.DocumentHolder.strDelete":"Remover assinatura","DE.Views.DocumentHolder.strDetails":"Detalhes da Assinatura","DE.Views.DocumentHolder.strSetup":"Configuração da Assinatura","DE.Views.DocumentHolder.strSign":"Assinar","DE.Views.DocumentHolder.styleText":"Formatar como Estilo","DE.Views.DocumentHolder.tableText":"Tabela","DE.Views.DocumentHolder.textAccept":"Aceitar alteração","DE.Views.DocumentHolder.textAlign":"Alinhar","DE.Views.DocumentHolder.textArrange":"Organizar","DE.Views.DocumentHolder.textArrangeBack":"Enviar para segundo plano","DE.Views.DocumentHolder.textArrangeBackward":"Enviar para trás","DE.Views.DocumentHolder.textArrangeForward":"Trazer para frente","DE.Views.DocumentHolder.textArrangeFront":"Trazer para primeiro plano","DE.Views.DocumentHolder.textAxes":"Eixos","DE.Views.DocumentHolder.textAxisTitles":"Títulos do Eixo","DE.Views.DocumentHolder.textBottom":"Inferior","DE.Views.DocumentHolder.textCells":"Células","DE.Views.DocumentHolder.textCenter":"Centro","DE.Views.DocumentHolder.textChartTitle":"Título do Gráfico","DE.Views.DocumentHolder.textClearField":"Limpar campo","DE.Views.DocumentHolder.textCol":"Excluir coluna","DE.Views.DocumentHolder.textContentControls":"Controle de conteúdo","DE.Views.DocumentHolder.textContinueNumbering":"Continuar numerando","DE.Views.DocumentHolder.textCopy":"Copiar","DE.Views.DocumentHolder.textCrop":"Cortar","DE.Views.DocumentHolder.textCropFill":"Preencher","DE.Views.DocumentHolder.textCropFit":"Ajustar","DE.Views.DocumentHolder.textCut":"Cortar","DE.Views.DocumentHolder.textDataLabels":"Rótulos de dados","DE.Views.DocumentHolder.textDataTable":"Tabela de Dados","DE.Views.DocumentHolder.textDistributeCols":"Distribuir colunas","DE.Views.DocumentHolder.textDistributeRows":"Distribuir linhas","DE.Views.DocumentHolder.textEditControls":"Propriedades do controle de conteúdo","DE.Views.DocumentHolder.textEditField":"Editar campo","DE.Views.DocumentHolder.textEditObject":"Editar objeto","DE.Views.DocumentHolder.textEditPoints":"Editar pontos","DE.Views.DocumentHolder.textEditWrapBoundary":"Editar limite de disposição","DE.Views.DocumentHolder.textErrorBars":"Barras de erro","DE.Views.DocumentHolder.textExponential":"Exponencial","DE.Views.DocumentHolder.textFieldCodes":"Alternar códigos de campo","DE.Views.DocumentHolder.textFit":"Ajustar largura","DE.Views.DocumentHolder.textFlipH":"Virar horizontalmente","DE.Views.DocumentHolder.textFlipV":"Virar verticalmente","DE.Views.DocumentHolder.textFollow":"Seguir movimento","DE.Views.DocumentHolder.textFromFile":"Do arquivo","DE.Views.DocumentHolder.textFromStorage":"Do armazenamento","DE.Views.DocumentHolder.textFromUrl":"Da URL","DE.Views.DocumentHolder.textGridLines":"Linhas de grade","DE.Views.DocumentHolder.textHorAxis":"Eixo horizontal","DE.Views.DocumentHolder.textHorAxisSec":"Eixo Horizontal Secundário","DE.Views.DocumentHolder.textHorizontalMajor":"Horizontal Maior","DE.Views.DocumentHolder.textHorizontalMinor":"Menor horizontal","DE.Views.DocumentHolder.textIndents":"Ajustar recuos da lista","DE.Views.DocumentHolder.textInnerBottom":"Fundo interno","DE.Views.DocumentHolder.textInnerTop":"Parte superior interna","DE.Views.DocumentHolder.textJoinList":"Junta-se à lista anterior","DE.Views.DocumentHolder.textLeft":"Deslocar células para a esquerda","DE.Views.DocumentHolder.textLeftData":"Esquerda","DE.Views.DocumentHolder.textLeftOverlay":"Sobreposição esquerda","DE.Views.DocumentHolder.textLeftPos":"Esquerda","DE.Views.DocumentHolder.textLegendPos":"Legenda","DE.Views.DocumentHolder.textLinear":"Linear","DE.Views.DocumentHolder.textLinearForecast":"Previsão Linear","DE.Views.DocumentHolder.textLines":"Linhas","DE.Views.DocumentHolder.textMovingAverage":"Média Móvel (2)","DE.Views.DocumentHolder.textNest":"Tabela aninhada","DE.Views.DocumentHolder.textNextPage":"Próxima página","DE.Views.DocumentHolder.textNone":"nenhum","DE.Views.DocumentHolder.textNoOverlay":"Sem sobreposição","DE.Views.DocumentHolder.textNumberingValue":"Valor de numeração","DE.Views.DocumentHolder.textOuterTop":"Fora do topo","DE.Views.DocumentHolder.textOverlay":"Sobreposição","DE.Views.DocumentHolder.textPaste":"Colar","DE.Views.DocumentHolder.textPrevPage":"Página anterior","DE.Views.DocumentHolder.textRedo":"Refazer","DE.Views.DocumentHolder.textRefreshField":"Atualizar o campo","DE.Views.DocumentHolder.textReject":"Rejeitar alteração","DE.Views.DocumentHolder.textRemCheckBox":"Remover caixa de seleção","DE.Views.DocumentHolder.textRemComboBox":"Remover caixa de combinação","DE.Views.DocumentHolder.textRemDropdown":"Remover lista suspensa","DE.Views.DocumentHolder.textRemField":"Remover campo de texto","DE.Views.DocumentHolder.textRemove":"Excluir","DE.Views.DocumentHolder.textRemoveControl":"Remover controle de conteúdo","DE.Views.DocumentHolder.textStretchControl":"Resize to cell","DE.Views.DocumentHolder.textRemPicture":"Remover imagem","DE.Views.DocumentHolder.textRemRadioBox":"Remover Botão de opção","DE.Views.DocumentHolder.textReplace":"Substituir imagem","DE.Views.DocumentHolder.textResetCrop":"Redefinir colheita","DE.Views.DocumentHolder.textRight":"Direita","DE.Views.DocumentHolder.textRightOverlay":"Sobreposição direita","DE.Views.DocumentHolder.textRotate":"Girar","DE.Views.DocumentHolder.textRotate270":"Girar 90º no sentido anti-horário.","DE.Views.DocumentHolder.textRotate90":"Girar 90º no sentido horário","DE.Views.DocumentHolder.textRow":"Excluir linha","DE.Views.DocumentHolder.textSaveAsPicture":"Salvar como imagem","DE.Views.DocumentHolder.textSeparateList":"Lista separada","DE.Views.DocumentHolder.textSettings":"Configurações","DE.Views.DocumentHolder.textSeveral":"Várias linhas/colunas","DE.Views.DocumentHolder.textShapeAlignBottom":"Alinhar à parte inferior","DE.Views.DocumentHolder.textShapeAlignCenter":"Alinhar ao centro","DE.Views.DocumentHolder.textShapeAlignLeft":"Alinhar à esquerda","DE.Views.DocumentHolder.textShapeAlignMiddle":"Alinhar ao centro","DE.Views.DocumentHolder.textShapeAlignRight":"Alinhar à direita","DE.Views.DocumentHolder.textShapeAlignTop":"Alinhar à parte superior","DE.Views.DocumentHolder.textShapesMerge":"Mesclar formas","DE.Views.DocumentHolder.textShowDataTable":"Mostrar tabela de dados","DE.Views.DocumentHolder.textShowLegendKeys":"Mostrar Chaves de Legenda","DE.Views.DocumentHolder.textShowUpDown":"Barras de exibição para cima/baixo","DE.Views.DocumentHolder.textStandardDeviation":"Desvio Padrão","DE.Views.DocumentHolder.textStandardError":"Erro Padrão","DE.Views.DocumentHolder.textStartNewList":"Começar nova lista","DE.Views.DocumentHolder.textStartNumberingFrom":"Definir valor de numeração","DE.Views.DocumentHolder.textTitleCellsRemove":"Excluir células","DE.Views.DocumentHolder.textTOC":"Tabela de Conteúdo","DE.Views.DocumentHolder.textTOCSettings":"Definições da tabela de conteúdo","DE.Views.DocumentHolder.textTop":"Superior","DE.Views.DocumentHolder.textTrendline":"Linha de tendência","DE.Views.DocumentHolder.textUndo":"Desfazer","DE.Views.DocumentHolder.textUpdateAll":"Atualizar toda a tabela","DE.Views.DocumentHolder.textUpdatePages":"Atualizar somente os números de páginas","DE.Views.DocumentHolder.textUpdateTOC":"Atualizar a tabela de conteúdo","DE.Views.DocumentHolder.textUpDownBars":"Barras para cima/para baixo","DE.Views.DocumentHolder.textVertAxis":"Eixo vertical","DE.Views.DocumentHolder.textVertAxisSec":"Eixo Vertical Secundário","DE.Views.DocumentHolder.textVerticalMajor":"Vertical Maior","DE.Views.DocumentHolder.textVerticalMinor":"Vertical Menor","DE.Views.DocumentHolder.textWrap":"Estilo da quebra automática","DE.Views.DocumentHolder.tipIsLocked":"Este elemento está sendo atualmente editado por outro usuário.","DE.Views.DocumentHolder.toDictionaryText":"Incluir no Dicionário","DE.Views.DocumentHolder.txtAddBottom":"Adicionar borda inferior","DE.Views.DocumentHolder.txtAddFractionBar":"Adicionar barra de fração","DE.Views.DocumentHolder.txtAddHor":"Adicionar linha horizontal","DE.Views.DocumentHolder.txtAddLB":"Adicionar linha inferior esquerda","DE.Views.DocumentHolder.txtAddLeft":"Adicionar borda esquerda","DE.Views.DocumentHolder.txtAddLT":"Adicionar linha superior esquerda","DE.Views.DocumentHolder.txtAddRight":"Adicionar borda direita","DE.Views.DocumentHolder.txtAddTop":"Adicionar borda superior","DE.Views.DocumentHolder.txtAddVer":"Adicionar linha vertical","DE.Views.DocumentHolder.txtAlignToChar":"Alinhar à símbolo","DE.Views.DocumentHolder.txtBehind":"Atrás do texto","DE.Views.DocumentHolder.txtBorderProps":"Propriedades de borda","DE.Views.DocumentHolder.txtBottom":"Inferior","DE.Views.DocumentHolder.txtColumnAlign":"Alinhamento de colunas","DE.Views.DocumentHolder.txtDecreaseArg":"Diminuir tamanho de argumento","DE.Views.DocumentHolder.txtDeleteArg":"Excluir argumento","DE.Views.DocumentHolder.txtDeleteBreak":"Eliminar quebra manual","DE.Views.DocumentHolder.txtDeleteChars":"Excluir caracteres anexos ","DE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Excluir separadores e caracteres anexos","DE.Views.DocumentHolder.txtDeleteEq":"Remover equação","DE.Views.DocumentHolder.txtDeleteGroupChar":"Excluir caractere","DE.Views.DocumentHolder.txtDeleteRadical":"Eliminar radical","DE.Views.DocumentHolder.txtDestEmbed":"Usar tema de destino e incorporar pasta de trabalho","DE.Views.DocumentHolder.txtDestLink":"Usar tema de destino e incorporar pasta de trabalho","DE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","DE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","DE.Views.DocumentHolder.txtEmpty":"(Vazio)","DE.Views.DocumentHolder.txtFractionLinear":"Alterar para fração linear","DE.Views.DocumentHolder.txtFractionSkewed":"Alterar para fração inclinada","DE.Views.DocumentHolder.txtFractionStacked":"Alterar para fração empilhada","DE.Views.DocumentHolder.txtGroup":"Agrupar","DE.Views.DocumentHolder.txtGroupCharOver":"Caractere sobre texto","DE.Views.DocumentHolder.txtGroupCharUnder":"Caractere sob texto","DE.Views.DocumentHolder.txtHideBottom":"Ocultar borda inferior","DE.Views.DocumentHolder.txtHideBottomLimit":"Ocultar limite inferior","DE.Views.DocumentHolder.txtHideCloseBracket":"Ocultar colchete de fechamento","DE.Views.DocumentHolder.txtHideDegree":"Ocultar grau","DE.Views.DocumentHolder.txtHideHor":"Ocultar linha horizontal","DE.Views.DocumentHolder.txtHideLB":"Ocultar linha inferior esquerda","DE.Views.DocumentHolder.txtHideLeft":"Ocultar borda esquerda","DE.Views.DocumentHolder.txtHideLT":"Ocultar linha superior esquerda","DE.Views.DocumentHolder.txtHideOpenBracket":"Ocultar colchete de abertura","DE.Views.DocumentHolder.txtHidePlaceholder":"Ocultar espaço reservado","DE.Views.DocumentHolder.txtHideRight":"Ocultar borda direita","DE.Views.DocumentHolder.txtHideTop":"Ocultar borda superior","DE.Views.DocumentHolder.txtHideTopLimit":"Ocultar limite superior","DE.Views.DocumentHolder.txtHideVer":"Ocultar linha vertical","DE.Views.DocumentHolder.txtIncreaseArg":"Aumentar o tamanho do argumento","DE.Views.DocumentHolder.txtInFront":"Em frente","DE.Views.DocumentHolder.txtInline":"Alinhado com o Texto","DE.Views.DocumentHolder.txtInsertArgAfter":"Inserir argumento após","DE.Views.DocumentHolder.txtInsertArgBefore":"Inserir argumento antes","DE.Views.DocumentHolder.txtInsertBreak":"Inserir quebra manual","DE.Views.DocumentHolder.txtInsertCaption":"Inserir Legenda","DE.Views.DocumentHolder.txtInsertEqAfter":"Inserir equação a seguir","DE.Views.DocumentHolder.txtInsertEqBefore":"Inserir equação à frente","DE.Views.DocumentHolder.txtInsImage":"Inserir imagem do arquivo","DE.Views.DocumentHolder.txtInsImageUrl":"Inserir imagem da URL","DE.Views.DocumentHolder.txtKeepTextOnly":"Manter apenas texto","DE.Views.DocumentHolder.txtLimitChange":"Alterar localização de limites","DE.Views.DocumentHolder.txtLimitOver":"Limite sobre o texto","DE.Views.DocumentHolder.txtLimitUnder":"Limite sob o texto","DE.Views.DocumentHolder.txtMatchBrackets":"Combinar parênteses com a altura do argumento","DE.Views.DocumentHolder.txtMatrixAlign":"Alinhamento de matriz","DE.Views.DocumentHolder.txtOverbar":"Barra sobre texto","DE.Views.DocumentHolder.txtOverwriteCells":"Sobrescrever células","DE.Views.DocumentHolder.txtPastePicture":"Imagem","DE.Views.DocumentHolder.txtPasteSourceFormat":"Manter formatação da origem","DE.Views.DocumentHolder.txtPercentage":"Porcentagem","DE.Views.DocumentHolder.txtPressLink":"Pressione {0} e clique no link","DE.Views.DocumentHolder.txtPrintSelection":"Imprimir seleção","DE.Views.DocumentHolder.txtRemFractionBar":"Remover barra de fração","DE.Views.DocumentHolder.txtRemLimit":"Remover limite","DE.Views.DocumentHolder.txtRemoveAccentChar":"Remover caractere de acento","DE.Views.DocumentHolder.txtRemoveBar":"Excluir barra","DE.Views.DocumentHolder.txtRemoveWarning":"Você quer remover esta assinatura?
Isso não pode ser desfeito.","DE.Views.DocumentHolder.txtRemScripts":"Remover scripts","DE.Views.DocumentHolder.txtRemSubscript":"Remover subscrito","DE.Views.DocumentHolder.txtRemSuperscript":"Remover sobrescrito","DE.Views.DocumentHolder.txtScriptsAfter":"Scripts após o texto","DE.Views.DocumentHolder.txtScriptsBefore":"Scripts antes do texto","DE.Views.DocumentHolder.txtShowBottomLimit":"Mostrar limite inferior","DE.Views.DocumentHolder.txtShowCloseBracket":"Mostrar encerramento dos colchetes","DE.Views.DocumentHolder.txtShowDegree":"Mostrar grau","DE.Views.DocumentHolder.txtShowOpenBracket":"Mostrar abertura dos colchetes","DE.Views.DocumentHolder.txtShowPlaceholder":"Mostrar espaço reservado","DE.Views.DocumentHolder.txtShowTopLimit":"Mostrar limite superior","DE.Views.DocumentHolder.txtSourceEmbed":"Manter formatação de origem e incorporar pasta de trabalho","DE.Views.DocumentHolder.txtSourceLink":"Manter formatação de origem e vincular dados","DE.Views.DocumentHolder.txtSquare":"Quadrado","DE.Views.DocumentHolder.txtStretchBrackets":"Esticar colchetes","DE.Views.DocumentHolder.txtThrough":"Através","DE.Views.DocumentHolder.txtTight":"Justo","DE.Views.DocumentHolder.txtTop":"Parte superior","DE.Views.DocumentHolder.txtTopAndBottom":"Parte superior e inferior","DE.Views.DocumentHolder.txtUnderbar":"Barra abaixo de texto","DE.Views.DocumentHolder.txtUngroup":"Desagrupar","DE.Views.DocumentHolder.txtWarnUrl":"Clicar neste link pode ser prejudicial ao seu dispositivo e aos seus dados. Para proteger seu computador, clique apenas em hiperlinks de fontes confiáveis. Este local pode não ser seguro:

{0}

Tem certeza de que deseja continuar?","DE.Views.DocumentHolder.unicodeText":"Unicode","DE.Views.DocumentHolder.updateStyleText":"Update %1 style","DE.Views.DocumentHolder.vertAlignText":"Alinhamento vertical","DE.Views.DropcapSettingsAdvanced.strBorders":"Bordas e preenchimento","DE.Views.DropcapSettingsAdvanced.strDropcap":"Letra capitular","DE.Views.DropcapSettingsAdvanced.strMargins":"Margens","DE.Views.DropcapSettingsAdvanced.textAlign":"Alinhamento","DE.Views.DropcapSettingsAdvanced.textAtLeast":"Pelo menos","DE.Views.DropcapSettingsAdvanced.textAuto":"Automático","DE.Views.DropcapSettingsAdvanced.textBackColor":"Cor de fundo","DE.Views.DropcapSettingsAdvanced.textBorderColor":"Cor da borda","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"Clique no diagrama ou use os botões para selecionar bordas","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"Tamanho da borda","DE.Views.DropcapSettingsAdvanced.textBottom":"Inferior","DE.Views.DropcapSettingsAdvanced.textCenter":"Centro","DE.Views.DropcapSettingsAdvanced.textColumn":"Coluna","DE.Views.DropcapSettingsAdvanced.textDistance":"Distância do texto","DE.Views.DropcapSettingsAdvanced.textExact":"Exatamente","DE.Views.DropcapSettingsAdvanced.textFlow":"Estrutura de fluxo","DE.Views.DropcapSettingsAdvanced.textFont":"Fonte","DE.Views.DropcapSettingsAdvanced.textFrame":"Moldura","DE.Views.DropcapSettingsAdvanced.textHeight":"Altura","DE.Views.DropcapSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.DropcapSettingsAdvanced.textInline":"Moldura embutida","DE.Views.DropcapSettingsAdvanced.textInMargin":"Na margem","DE.Views.DropcapSettingsAdvanced.textInText":"No texto","DE.Views.DropcapSettingsAdvanced.textLeft":"Esquerda","DE.Views.DropcapSettingsAdvanced.textMargin":"Margem","DE.Views.DropcapSettingsAdvanced.textMove":"Mover com texto","DE.Views.DropcapSettingsAdvanced.textNone":"Nenhum","DE.Views.DropcapSettingsAdvanced.textPage":"Página","DE.Views.DropcapSettingsAdvanced.textParagraph":"Parágrafo","DE.Views.DropcapSettingsAdvanced.textParameters":"Parâmetros","DE.Views.DropcapSettingsAdvanced.textPosition":"Posição","DE.Views.DropcapSettingsAdvanced.textRelative":"Relativo para","DE.Views.DropcapSettingsAdvanced.textRight":"Direita","DE.Views.DropcapSettingsAdvanced.textRowHeight":"Altura em linhas","DE.Views.DropcapSettingsAdvanced.textTitle":"Capitular - configurações avançadas","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"Moldura - Configurações avançadas","DE.Views.DropcapSettingsAdvanced.textTop":"Parte superior","DE.Views.DropcapSettingsAdvanced.textVertical":"Vertical","DE.Views.DropcapSettingsAdvanced.textWidth":"Largura","DE.Views.DropcapSettingsAdvanced.tipFontName":"Fonte","DE.Views.EditListItemDialog.textDisplayName":"Nome de exibição","DE.Views.EditListItemDialog.textNameError":"O nome de exibição não deve estar vazio.","DE.Views.EditListItemDialog.textValue":"Valor","DE.Views.EditListItemDialog.textValueError":"Um item com o mesmo valor já existe.","DE.Views.FileMenu.ariaFileMenu":"Menu Arquivo","DE.Views.FileMenu.btnBackCaption":"Abrir Local do Arquivo","DE.Views.FileMenu.btnCloseEditor":"Fechar Arquivo","DE.Views.FileMenu.btnCloseMenuCaption":"Fechar menu","DE.Views.FileMenu.btnCreateNewCaption":"Criar novo","DE.Views.FileMenu.btnDownloadCaption":"Baixar em","DE.Views.FileMenu.btnExitCaption":"Fechar","DE.Views.FileMenu.btnFileOpenCaption":"Abrir","DE.Views.FileMenu.btnHelpCaption":"Ajuda","DE.Views.FileMenu.btnHistoryCaption":"Histórico de versão","DE.Views.FileMenu.btnInfoCaption":"Informações do documento","DE.Views.FileMenu.btnPrintCaption":"Imprimir","DE.Views.FileMenu.btnProtectCaption":"Proteger","DE.Views.FileMenu.btnRecentFilesCaption":"Abrir recente","DE.Views.FileMenu.btnRenameCaption":"Renomear","DE.Views.FileMenu.btnReturnCaption":"Voltar para documento","DE.Views.FileMenu.btnRightsCaption":"Direitos de Acesso","DE.Views.FileMenu.btnSaveAsCaption":"Salvar Como","DE.Views.FileMenu.btnSaveCaption":"Salvar","DE.Views.FileMenu.btnSaveCopyAsCaption":"Salvar Cópia Em","DE.Views.FileMenu.btnSettingsCaption":"Configurações avançadas","DE.Views.FileMenu.btnSuggestCaption":"Sugira um recurso","DE.Views.FileMenu.btnSwitchToMobileCaption":"Mudar para o celular","DE.Views.FileMenu.btnToEditCaption":"Editar documento","DE.Views.FileMenu.textDownload":"Baixar","DE.Views.FileMenuPanels.CreateNew.txtBlank":"Documento em branco","DE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Criar novo","DE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Adicionar Autor","DE.Views.FileMenuPanels.DocumentInfo.txtAddProperty":"Adicionar propriedade","DE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Adicionar Texto","DE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicativo","DE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Alterar direitos de acesso","DE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentário","DE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comum","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Criado","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Informações do Documento","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"Propriedade do documento","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Visualização rápida da Web","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Carregando...","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última modificação por","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificação","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"Não","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Proprietário","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"Páginas","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Tamanho da página","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Parágrafos","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"Produtor de PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF marcado","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"Versão PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Localização","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"Propriedades","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"A propriedade com esse título já existe","DE.Views.FileMenuPanels.DocumentInfo.txtRights":"Pessoas que têm direitos","DE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Caracteres com espaços","DE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Estatísticas","DE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Assunto","DE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Caracteres","DE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título do documento","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Carregado","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"Palavras","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"Sim","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Direitos de acesso","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Alterar direitos de acesso","DE.Views.FileMenuPanels.DocumentRights.txtRights":"Pessoas que têm direitos","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"Aviso","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Com senha","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger o documento","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"Com assinatura","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Assinaturas válidas foram adicionadas ao documento.
O documento está protegido contra edição.","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garanta a integridade do documento adicionando uma assinatura digital invisível","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar documento","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"Editar excluirá as assinaturas do documento.
Deseja continuar?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Este documento foi protegido com senha.","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Criptografar este documento com uma senha","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"O documento deve ser assinado.","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Assinaturas válidas foram adicionadas ao documento. O documento está protegido contra edição.","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algumas das assinaturas digitais no documento estão inválidas ou não puderam ser verificadas. O documento está protegido para edição.","DE.Views.FileMenuPanels.ProtectDoc.txtView":"Visualizar assinaturas","DE.Views.FileMenuPanels.Settings.okButtonText":"Aplicar","DE.Views.FileMenuPanels.Settings.strChinese":"Chinês","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modo de coedição","DE.Views.FileMenuPanels.Settings.strDocContent":"Conteúdo do documento","DE.Views.FileMenuPanels.Settings.strFast":"Rápido","DE.Views.FileMenuPanels.Settings.strFontRender":"Dicas de fonte","DE.Views.FileMenuPanels.Settings.strFontSizeType":"Use o primeiro na lista de tamanhos de fonte","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"Ignorar palavras em MAIÚSCULAS","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"Ignorar palavras com números","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Atalhos de teclado","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"Configurações de macros","DE.Views.FileMenuPanels.Settings.strNumeral":"Numeral","DE.Views.FileMenuPanels.Settings.strPasteButton":"Mostrar o botão Opções de colagem quando o conteúdo for colado","DE.Views.FileMenuPanels.Settings.strRTLSupport":"Interface RTL","DE.Views.FileMenuPanels.Settings.strShowChanges":"Alterações de colaboração em tempo real","DE.Views.FileMenuPanels.Settings.strShowComments":"Mostrar comentários em texto","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Mostrar alterações de outros usuários","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Mostrar comentários resolvidos","DE.Views.FileMenuPanels.Settings.strStrict":"Estrito","DE.Views.FileMenuPanels.Settings.strTabStyle":"Estilo da guia","DE.Views.FileMenuPanels.Settings.strTheme":"Tema de interface","DE.Views.FileMenuPanels.Settings.strUnit":"Unidade de medida","DE.Views.FileMenuPanels.Settings.strWestern":"Ocidental","DE.Views.FileMenuPanels.Settings.strZoom":"Valor de zoom padrão","DE.Views.FileMenuPanels.Settings.text10Minutes":"Cada 10 minutos","DE.Views.FileMenuPanels.Settings.text30Minutes":"Cada 30 minutos","DE.Views.FileMenuPanels.Settings.text5Minutes":"Cada 5 minutos","DE.Views.FileMenuPanels.Settings.text60Minutes":"Cada hora","DE.Views.FileMenuPanels.Settings.textAlignGuides":"Guias de alinhamento","DE.Views.FileMenuPanels.Settings.textAutoRecover":"Recuperação automática","DE.Views.FileMenuPanels.Settings.textAutoSave":"Salvamento automático","DE.Views.FileMenuPanels.Settings.textDisabled":"Desabilitado","DE.Views.FileMenuPanels.Settings.textFill":"Preencher","DE.Views.FileMenuPanels.Settings.textForceSave":"Salvar para servidor","DE.Views.FileMenuPanels.Settings.textLine":"Linha","DE.Views.FileMenuPanels.Settings.textMinute":"Cada minuto","DE.Views.FileMenuPanels.Settings.textOldVersions":"Tornar compatível com versão antiga do MS Word quando gravar como DOCX.","DE.Views.FileMenuPanels.Settings.textSmartSelection":"Use a seleção de parágrafo inteligente","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Configurações avançadas","DE.Views.FileMenuPanels.Settings.txtAll":"Visualizar todos","DE.Views.FileMenuPanels.Settings.txtAppearance":"Aparência","DE.Views.FileMenuPanels.Settings.txtArabic":"Árabe","DE.Views.FileMenuPanels.Settings.txtAutoCorrect":"Opções de autocorreção...","DE.Views.FileMenuPanels.Settings.txtCacheMode":"Modo de cache padrão","DE.Views.FileMenuPanels.Settings.txtChangesBalloons":"Mostrar por clique em balões","DE.Views.FileMenuPanels.Settings.txtChangesTip":"Mostrar com a ponta de ferramentas","DE.Views.FileMenuPanels.Settings.txtCm":"Centímetro","DE.Views.FileMenuPanels.Settings.txtCollaboration":"Colaboração","DE.Views.FileMenuPanels.Settings.txtContext":"Contexto","DE.Views.FileMenuPanels.Settings.txtCustomize":"Customizar","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Personalize o acesso rápido","DE.Views.FileMenuPanels.Settings.txtDarkMode":"Ativar modo escuro de documento","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"Editando e salvando","DE.Views.FileMenuPanels.Settings.txtFastTip":"Co-edição em tempo real. Todas as alterações são salvas automaticamente","DE.Views.FileMenuPanels.Settings.txtFitPage":"Ajustar à página","DE.Views.FileMenuPanels.Settings.txtFitWidth":"Ajustar à largura","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Hieróglifos","DE.Views.FileMenuPanels.Settings.txtHindi":"Hindi","DE.Views.FileMenuPanels.Settings.txtInch":"Polegada","DE.Views.FileMenuPanels.Settings.txtLast":"Visualizar último","DE.Views.FileMenuPanels.Settings.txtLastUsed":"Usado por último","DE.Views.FileMenuPanels.Settings.txtMac":"como SO X","DE.Views.FileMenuPanels.Settings.txtNative":"Nativo","DE.Views.FileMenuPanels.Settings.txtNone":"Visualizar nenhum","DE.Views.FileMenuPanels.Settings.txtProofing":"Revisão","DE.Views.FileMenuPanels.Settings.txtPt":"Ponto","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"Mostrar o botão Impressão rápida no cabeçalho do editor","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"O documento será impresso na última impressora selecionada ou padrão","DE.Views.FileMenuPanels.Settings.txtRunMacros":"Habilitar todos","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"Habilitar todas as macros sem uma notificação","DE.Views.FileMenuPanels.Settings.txtScreenReader":"Habilitar o suporte ao leitor de tela","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"Mostrar alterações de faixa","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"Verificação ortográfica","DE.Views.FileMenuPanels.Settings.txtStopMacros":"Desabilitar tudo","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"Desativar todas as macros sem uma notificação","DE.Views.FileMenuPanels.Settings.txtStrictTip":"Use o botão \"Salvar\" para sincronizar as alterações que você e outras pessoas fazem","DE.Views.FileMenuPanels.Settings.txtTabBack":"Usar a cor da barra de ferramentas como plano de fundo das guias","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"Use a tecla Alt para navegar na interface do usuário usando o teclado","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Use a tecla Option para navegar na interface do usuário usando o teclado","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"Mostrar notificação","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"Desativar todas as macros com uma notificação","DE.Views.FileMenuPanels.Settings.txtWin":"como Windows","DE.Views.FileMenuPanels.Settings.txtWorkspace":"Área de trabalho","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Baixar como","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Salvar cópia em","DE.Views.FormSettings.textAddRole":"Adicionar destinatário","DE.Views.FormSettings.textAlways":"Sempre","DE.Views.FormSettings.textAnyone":"Alguém","DE.Views.FormSettings.textAspect":"Bloquear proporção","DE.Views.FormSettings.textAtLeast":"Pelo menos","DE.Views.FormSettings.textAuto":"Automático","DE.Views.FormSettings.textAutofit":"Ajuste automático","DE.Views.FormSettings.textBackgroundColor":"Cor do plano de fundo","DE.Views.FormSettings.textCheckbox":"Caixa de seleção","DE.Views.FormSettings.textCheckDefault":"A caixa de seleção está marcada por padrão","DE.Views.FormSettings.textColor":"Cor da borda","DE.Views.FormSettings.textComb":"Conjunto de caracteres","DE.Views.FormSettings.textCombobox":"Caixa de combinação","DE.Views.FormSettings.textComplex":"Campo complexo","DE.Views.FormSettings.textConnected":"Campos conectados","DE.Views.FormSettings.textCreditCard":"Número do cartão de crédito (por exemplo, 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"Campo de data e hora","DE.Views.FormSettings.textDateFormat":"Mostra a data assim","DE.Views.FormSettings.textDefValue":"Valor padrão","DE.Views.FormSettings.textDelete":"Excluir","DE.Views.FormSettings.textDigits":"Dígitos","DE.Views.FormSettings.textDisconnect":"Desconectar","DE.Views.FormSettings.textDropDown":"Suspenso","DE.Views.FormSettings.textExact":"Exatamente","DE.Views.FormSettings.textField":"Campo de texto","DE.Views.FormSettings.textFillRoles":"Quem precisa preencher isso?","DE.Views.FormSettings.textFixed":"Campo de tamanho fixo","DE.Views.FormSettings.textFormat":"Formato","DE.Views.FormSettings.textFormatSymbols":"Símbolos permitidos","DE.Views.FormSettings.textFromFile":"Do arquivo","DE.Views.FormSettings.textFromStorage":"Do armazenamento","DE.Views.FormSettings.textFromUrl":"Da URL","DE.Views.FormSettings.textGroupKey":"Chave de grupo","DE.Views.FormSettings.textImage":"Imagem","DE.Views.FormSettings.textKey":"Chave","DE.Views.FormSettings.textLabel":"Etiqueta","DE.Views.FormSettings.textLang":"Idioma","DE.Views.FormSettings.textLetters":"Cartas","DE.Views.FormSettings.textLock":"Bloquear","DE.Views.FormSettings.textMask":"Máscara arbitrária","DE.Views.FormSettings.textMaxChars":"Limite de caracteres","DE.Views.FormSettings.textMulti":"Campo multilinha","DE.Views.FormSettings.textNever":"Nunca","DE.Views.FormSettings.textNoBorder":"Sem limite","DE.Views.FormSettings.textNone":"Nenhum","DE.Views.FormSettings.textPhone1":"Número de telefone (por exemplo, (123) 456-7890)","DE.Views.FormSettings.textPhone2":"Número de telefone (por exemplo, +447911123456)","DE.Views.FormSettings.textPlaceholder":"Marcador de posição","DE.Views.FormSettings.textRadiobox":"Botão de opção","DE.Views.FormSettings.textRadioChoice":"Escolha do botão de opção","DE.Views.FormSettings.textRadioDefault":"O botão é marcado por padrão","DE.Views.FormSettings.textReg":"Expressão regular","DE.Views.FormSettings.textRequired":"Necessário","DE.Views.FormSettings.textScale":"Quando escalar","DE.Views.FormSettings.textSelectImage":"Selecionar Imagem","DE.Views.FormSettings.textSignature":"Assinatura","DE.Views.FormSettings.textTag":"Etiqueta","DE.Views.FormSettings.textTip":"Dica","DE.Views.FormSettings.textTipAdd":"Adicionar novo valor","DE.Views.FormSettings.textTipDelete":"Excluir valor","DE.Views.FormSettings.textTipDown":"Mover para baixo","DE.Views.FormSettings.textTipUp":"Mover para cima","DE.Views.FormSettings.textTooBig":"A imagem é grande demais","DE.Views.FormSettings.textTooSmall":"A imagem é pequena demais","DE.Views.FormSettings.textUKPassport":"Número do passaporte do Reino Unido (por exemplo, 925665416)","DE.Views.FormSettings.textUnlock":"Desbloquear","DE.Views.FormSettings.textUSSSN":"SSN dos EUA (por exemplo, 123-45-6789)","DE.Views.FormSettings.textValue":"Opções de valor","DE.Views.FormSettings.textWidth":"Largura da célula","DE.Views.FormSettings.textZipCodeUS":"Código postal dos EUA (por exemplo, 92663 ou 92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"Caixa de seleção","DE.Views.FormsTab.capBtnComboBox":"Caixa de combinação","DE.Views.FormsTab.capBtnComplex":"Campo complexo","DE.Views.FormsTab.capBtnDownloadForm":"Baixe em pdf","DE.Views.FormsTab.capBtnDropDown":"Suspenso","DE.Views.FormsTab.capBtnEmail":"Endereço de e-mail","DE.Views.FormsTab.capBtnFinal":"Marcar como final","DE.Views.FormsTab.capBtnImage":"Imagem","DE.Views.FormsTab.capBtnManager":"Gerenciar funções de destinatários","DE.Views.FormsTab.capBtnNext":"Próximo campo","DE.Views.FormsTab.capBtnPhone":"Número de telefone","DE.Views.FormsTab.capBtnPrev":"Campo anterior","DE.Views.FormsTab.capBtnRadioBox":"Botao de radio","DE.Views.FormsTab.capBtnSaveForm":"Salvar Em PDF","DE.Views.FormsTab.capBtnSaveFormDesktop":"Salvar como...","DE.Views.FormsTab.capBtnSignature":"Assinatura","DE.Views.FormsTab.capBtnSubmit":"Enviar","DE.Views.FormsTab.capBtnText":"Campo de texto","DE.Views.FormsTab.capBtnView":"Pré-visualização","DE.Views.FormsTab.capCreditCard":"Cartão de crédito","DE.Views.FormsTab.capDateTime":"Data e Hora","DE.Views.FormsTab.capZipCode":"CEP","DE.Views.FormsTab.helpTextFillStatus":"Este formulário está pronto para preenchimento baseado em função. Clique no botão de status para verificar o estágio de preenchimento.","DE.Views.FormsTab.textAddRole":"Adicionar destinatário","DE.Views.FormsTab.textAnyone":"Alguém","DE.Views.FormsTab.textClear":"Limpar campos.","DE.Views.FormsTab.textClearFields":"Limpar todos os campos","DE.Views.FormsTab.textCreateForm":"Adicione campos e crie um documento PDF preenchível","DE.Views.FormsTab.textFilled":"Preenchido","DE.Views.FormsTab.textFillFor":"Inserir campos para","DE.Views.FormsTab.textGotIt":"Entendi","DE.Views.FormsTab.textHighlight":"Configurações de destaque","DE.Views.FormsTab.textNoHighlight":"Sem destaque","DE.Views.FormsTab.textRequired":"Para enviar o formulário, você deve preencher todos os campos obrigatórios","DE.Views.FormsTab.textSubmited":"Formulário enviado com sucesso","DE.Views.FormsTab.textSubmitOk":"Seu formulário PDF foi salvo na seção Completo.","DE.Views.FormsTab.tipCheckBox":"Inserir caixa de seleção","DE.Views.FormsTab.tipComboBox":"Inserir caixa de combinação","DE.Views.FormsTab.tipComplexField":"Inserir campo complexo","DE.Views.FormsTab.tipCreateField":"Para criar um campo selecione o tipo de campo desejado na barra de ferramentas e clique nele. O campo aparecerá no documento.","DE.Views.FormsTab.tipCreditCard":"Inserir número de cartão de crédito","DE.Views.FormsTab.tipDateTime":"Inserir data e hora","DE.Views.FormsTab.tipDownloadForm":"Baixar um arquivo como um documento PDF preenchível","DE.Views.FormsTab.tipDropDown":"Inserir lista suspensa","DE.Views.FormsTab.tipEmailField":"Inserir endereço de e-mail","DE.Views.FormsTab.tipFieldSettings":"Você pode configurar os campos selecionados na barra lateral direita. Clique neste ícone para abrir as configurações do campo.","DE.Views.FormsTab.tipFieldsLink":"Saiba mais sobre parâmetros de campo","DE.Views.FormsTab.tipFinalForm":"Marcar como final","DE.Views.FormsTab.tipFirstPage":"Vá para a primeira página","DE.Views.FormsTab.tipFixedText":"Inserir campo de texto fixo","DE.Views.FormsTab.tipFormGroupKey":"Agrupe botões de opção para agilizar o processo de preenchimento. As escolhas com os mesmos nomes serão sincronizadas. Os usuários só podem marcar um botão de opção do grupo.","DE.Views.FormsTab.tipFormKey":"Você pode atribuir uma chave a um campo ou grupo de campos. Quando um usuário preencher os dados, eles serão copiados para todos os campos com a mesma chave.","DE.Views.FormsTab.tipHelpRoles":"Use o recurso Gerenciar Destinatários para agrupar campos por finalidade e atribuir os membros responsáveis ​​da equipe.","DE.Views.FormsTab.tipImageField":"Inserir imagem","DE.Views.FormsTab.tipInlineText":"Inserir campo de texto embutido","DE.Views.FormsTab.tipLastPage":"Ir para a última página","DE.Views.FormsTab.tipManager":"Gerenciar funções de destinatários","DE.Views.FormsTab.tipNextForm":"Ir para o próximo campo","DE.Views.FormsTab.tipNextPage":"Vá para a página seguinte","DE.Views.FormsTab.tipPhoneField":"Inserir número de telefone","DE.Views.FormsTab.tipPrevForm":"Ir para o campo anterior","DE.Views.FormsTab.tipPrevPage":"Ir para a página anterior","DE.Views.FormsTab.tipRadioBox":"Inserir botão de rádio","DE.Views.FormsTab.tipRolesLink":"Saiba mais sobre os destinatários","DE.Views.FormsTab.tipSaveFile":"Clique em “Salvar como pdf” para salvar o formulário no formato pronto para preenchimento.","DE.Views.FormsTab.tipSaveForm":"Salvar um arquivo como um documento PDF preenchível","DE.Views.FormsTab.tipSignField":"Inserir campo de assinatura","DE.Views.FormsTab.tipSubmit":"Enviar para","DE.Views.FormsTab.tipTextField":"Inserir campo de texto","DE.Views.FormsTab.tipViewForm":"Pré-visualização","DE.Views.FormsTab.tipZipCode":"Inserir código postal","DE.Views.FormsTab.txtFixedDesc":"Inserir campo de texto fixo","DE.Views.FormsTab.txtFixedText":"Fixo","DE.Views.FormsTab.txtInlineDesc":"Inserir campo de texto embutido","DE.Views.FormsTab.txtInlineText":"Em linha","DE.Views.FormsTab.txtSignedForm":"Este documento foi assinado e não pode ser editado.","DE.Views.FormsTab.txtUntitled":"Sem título","DE.Views.HeaderFooterSettings.textBottomCenter":"Centro inferior","DE.Views.HeaderFooterSettings.textBottomLeft":"Esquerda inferior","DE.Views.HeaderFooterSettings.textBottomPage":"Final da página","DE.Views.HeaderFooterSettings.textBottomRight":"Direita inferior","DE.Views.HeaderFooterSettings.textDiffFirst":"Primeira página diferente","DE.Views.HeaderFooterSettings.textDiffOdd":"Páginas pares e ímpares diferentes","DE.Views.HeaderFooterSettings.textFrom":"Começar em","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"Rodapé abaixo","DE.Views.HeaderFooterSettings.textHeaderFromTop":"Cabeçalho no início","DE.Views.HeaderFooterSettings.textInsertCurrent":"Inserir na posição atual ","DE.Views.HeaderFooterSettings.textNumFormat":"Formato de número","DE.Views.HeaderFooterSettings.textOptions":"Opções","DE.Views.HeaderFooterSettings.textPageNum":"Inserir número da página","DE.Views.HeaderFooterSettings.textPageNumbering":"Numeração de página","DE.Views.HeaderFooterSettings.textPosition":"Posição","DE.Views.HeaderFooterSettings.textPrev":"Continuar da seção anterior","DE.Views.HeaderFooterSettings.textSameAs":"Vincular a Anterior","DE.Views.HeaderFooterSettings.textTopCenter":"Superior central","DE.Views.HeaderFooterSettings.textTopLeft":"Superior esquerdo","DE.Views.HeaderFooterSettings.textTopPage":"Topo da página","DE.Views.HeaderFooterSettings.textTopRight":"Superior direito","DE.Views.HeaderFooterSettings.txtMoreTypes":"Mais tipos","DE.Views.HeaderFooterTab.capBtnDateTime":"Data e Hora","DE.Views.HeaderFooterTab.capBtnInsField":"Campo","DE.Views.HeaderFooterTab.capBtnInsImage":"Imagem","DE.Views.HeaderFooterTab.capCurrentPos":"Para posição atual","DE.Views.HeaderFooterTab.capFooterBottom":"Rodapé a partir da parte inferior","DE.Views.HeaderFooterTab.capFormatNums":"Numeração da página","DE.Views.HeaderFooterTab.capHeaderTop":"Cabeçalho no início","DE.Views.HeaderFooterTab.capNumOfPages":"Número de páginas","DE.Views.HeaderFooterTab.mniImageFromFile":"Imagem do arquivo","DE.Views.HeaderFooterTab.mniImageFromStorage":"Imagem do armazenamento","DE.Views.HeaderFooterTab.mniImageFromUrl":"Imagem da URL","DE.Views.HeaderFooterTab.tipCloseTab":"Fechar aba","DE.Views.HeaderFooterTab.tipDateTime":"Insira a data e hora atuais","DE.Views.HeaderFooterTab.tipHeaderFooter":"Editar cabeçalho e rodapé","DE.Views.HeaderFooterTab.tipInsertImage":"Inserir imagem","DE.Views.HeaderFooterTab.tipInsField":"Inserir campo","DE.Views.HeaderFooterTab.tipNumOfPages":"Número de páginas","DE.Views.HeaderFooterTab.tipPageNumbering":"Numeração da página","DE.Views.HeaderFooterTab.txtCloseTab":"Fechar","DE.Views.HeaderFooterTab.txtDiffFirst":"Primeira página diferente","DE.Views.HeaderFooterTab.txtDiffOddEven":"Páginas pares e ímpares diferentes","DE.Views.HeaderFooterTab.txtEditFooter":"Editar rodapé","DE.Views.HeaderFooterTab.txtEditHeader":"Editar cabeçalho","DE.Views.HeaderFooterTab.txtHeaderFooter":"Cabeçalho/rodapé","DE.Views.HeaderFooterTab.txtPageNumbering":"Número da página","DE.Views.HeaderFooterTab.txtRemoveFooter":"Remover rodapé","DE.Views.HeaderFooterTab.txtRemoveHeader":"Remover cabeçalho","DE.Views.HeaderFooterTab.txtSameAs":"Vincular a Anterior","DE.Views.HyperlinkSettingsDialog.textDefault":"Fragmento de texto selecionado","DE.Views.HyperlinkSettingsDialog.textDisplay":"Exibir","DE.Views.HyperlinkSettingsDialog.textExternal":"Link externo","DE.Views.HyperlinkSettingsDialog.textInternal":"Colocar no documento","DE.Views.HyperlinkSettingsDialog.textSelectFile":"Selecionar arquivo","DE.Views.HyperlinkSettingsDialog.textTitle":"Configurações de link","DE.Views.HyperlinkSettingsDialog.textTooltip":"Texto da dica de tela","DE.Views.HyperlinkSettingsDialog.textUrl":"Vincular a","DE.Views.HyperlinkSettingsDialog.txtBeginning":"Início do documento","DE.Views.HyperlinkSettingsDialog.txtBookmarks":"Favoritos","DE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo é obrigatório","DE.Views.HyperlinkSettingsDialog.txtHeadings":"Títulos","DE.Views.HyperlinkSettingsDialog.txtNotUrl":"Este campo deve ser uma URL no formato \"http://www.example.com\"","DE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo é limitado a 2083 caracteres. ","DE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Digite o endereço da web ou selecione um arquivo","DE.Views.HyphenationDialog.textAuto":"Hifenizar documento automaticamente","DE.Views.HyphenationDialog.textCaps":"Hifenizar palavras em CAPS","DE.Views.HyphenationDialog.textLimit":"Limitar hífens consecutivos a","DE.Views.HyphenationDialog.textNoLimit":"Sem limite","DE.Views.HyphenationDialog.textTitle":"Hifenização","DE.Views.HyphenationDialog.textZone":"Zona de hifenização","DE.Views.ImageSettings.strTransparency":"Opacidade","DE.Views.ImageSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.ImageSettings.textCrop":"Cortar","DE.Views.ImageSettings.textCropFill":"Preencher","DE.Views.ImageSettings.textCropFit":"Ajustar","DE.Views.ImageSettings.textCropToShape":"Cortar para dar forma","DE.Views.ImageSettings.textEdit":"Editar","DE.Views.ImageSettings.textEditObject":"Editar objeto","DE.Views.ImageSettings.textFitMargins":"Ajustar à margem","DE.Views.ImageSettings.textFlip":"Girar","DE.Views.ImageSettings.textFromFile":"Do arquivo","DE.Views.ImageSettings.textFromStorage":"Do armazenamento","DE.Views.ImageSettings.textFromUrl":"Da URL","DE.Views.ImageSettings.textHeight":"Altura","DE.Views.ImageSettings.textHint270":"Girar 90º no sentido anti-horário.","DE.Views.ImageSettings.textHint90":"Girar 90º no sentido horário","DE.Views.ImageSettings.textHintFlipH":"Virar horizontalmente","DE.Views.ImageSettings.textHintFlipV":"Virar verticalmente","DE.Views.ImageSettings.textInsert":"Substituir imagem","DE.Views.ImageSettings.textOriginalSize":"Tamanho padrão","DE.Views.ImageSettings.textRecentlyUsed":"Usado recentemente","DE.Views.ImageSettings.textResetCrop":"Redefinir colheita","DE.Views.ImageSettings.textRotate90":"Girar 90º","DE.Views.ImageSettings.textRotation":"Rotação","DE.Views.ImageSettings.textSize":"Tamanho","DE.Views.ImageSettings.textWidth":"Largura","DE.Views.ImageSettings.textWrap":"Estilo da quebra automática","DE.Views.ImageSettings.txtBehind":"Atrás do texto","DE.Views.ImageSettings.txtInFront":"Em frente ao Texto","DE.Views.ImageSettings.txtInline":"Alinhado ao texto","DE.Views.ImageSettings.txtSquare":"Quadrado","DE.Views.ImageSettings.txtThrough":"Através","DE.Views.ImageSettings.txtTight":"Justo","DE.Views.ImageSettings.txtTopAndBottom":"Parte superior e inferior","DE.Views.ImageSettingsAdvanced.strMargins":"Preenchimento de texto","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"Absoluto","DE.Views.ImageSettingsAdvanced.textAlignment":"Alinhamento","DE.Views.ImageSettingsAdvanced.textAlt":"Texto Alternativo","DE.Views.ImageSettingsAdvanced.textAltDescription":"Descrição","DE.Views.ImageSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações de objetos visuais, que serão lidas para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor quais informações há na imagem, forma, gráfico ou tabela.","DE.Views.ImageSettingsAdvanced.textAltTitle":"Título","DE.Views.ImageSettingsAdvanced.textAngle":"Ângulo","DE.Views.ImageSettingsAdvanced.textArrows":"Setas","DE.Views.ImageSettingsAdvanced.textAspectRatio":"Bloquear proporção","DE.Views.ImageSettingsAdvanced.textAuto":"Automático","DE.Views.ImageSettingsAdvanced.textAutofit":"Ajuste automático","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"Eixos cruzam","DE.Views.ImageSettingsAdvanced.textAxisPos":"Posição de eixos","DE.Views.ImageSettingsAdvanced.textAxisTitle":"Titulo","DE.Views.ImageSettingsAdvanced.textBase":"Base","DE.Views.ImageSettingsAdvanced.textBeginSize":"Tamanho inicial","DE.Views.ImageSettingsAdvanced.textBeginStyle":"Estilo inicial","DE.Views.ImageSettingsAdvanced.textBelow":"abaixo","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"Entre marcas de escala","DE.Views.ImageSettingsAdvanced.textBevel":"Bisel","DE.Views.ImageSettingsAdvanced.textBillions":"Bilhões","DE.Views.ImageSettingsAdvanced.textBottom":"Inferior","DE.Views.ImageSettingsAdvanced.textBottomMargin":"Margem inferior","DE.Views.ImageSettingsAdvanced.textBtnWrap":"Disposição do texto","DE.Views.ImageSettingsAdvanced.textCapType":"Tipo de letra","DE.Views.ImageSettingsAdvanced.textCategoryName":"Nome da categoria","DE.Views.ImageSettingsAdvanced.textCenter":"Centro","DE.Views.ImageSettingsAdvanced.textCharacter":"Caractere","DE.Views.ImageSettingsAdvanced.textChartTitle":"Título do Gráfico","DE.Views.ImageSettingsAdvanced.textColumn":"Coluna","DE.Views.ImageSettingsAdvanced.textCross":"Intersecção","DE.Views.ImageSettingsAdvanced.textCustom":"Personalizar","DE.Views.ImageSettingsAdvanced.textDataLabels":"Rótulos de dados","DE.Views.ImageSettingsAdvanced.textDistance":"Distância do texto","DE.Views.ImageSettingsAdvanced.textEndSize":"Tamanho final","DE.Views.ImageSettingsAdvanced.textEndStyle":"Estilo final","DE.Views.ImageSettingsAdvanced.textFit":"Ajustar largura","DE.Views.ImageSettingsAdvanced.textFixed":"Fixo","DE.Views.ImageSettingsAdvanced.textFlat":"Plano","DE.Views.ImageSettingsAdvanced.textFlipped":"Invertido","DE.Views.ImageSettingsAdvanced.textFormat":"Formato da etiqueta","DE.Views.ImageSettingsAdvanced.textGridLines":"Linhas de grade","DE.Views.ImageSettingsAdvanced.textHeight":"Altura","DE.Views.ImageSettingsAdvanced.textHideAxis":"Ocultar eixo","DE.Views.ImageSettingsAdvanced.textHigh":"Alto","DE.Views.ImageSettingsAdvanced.textHorAxis":"Eixo horizontal","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"Eixo Horizontal Secundário","DE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","DE.Views.ImageSettingsAdvanced.textHundredMil":"100.000.000 ","DE.Views.ImageSettingsAdvanced.textHundreds":"Centenas","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100.000 ","DE.Views.ImageSettingsAdvanced.textIn":"Em","DE.Views.ImageSettingsAdvanced.textInnerBottom":"Fundo interno","DE.Views.ImageSettingsAdvanced.textInnerTop":"Parte superior interna","DE.Views.ImageSettingsAdvanced.textJoinType":"Tipo de junção","DE.Views.ImageSettingsAdvanced.textKeepRatio":"Proporções constantes","DE.Views.ImageSettingsAdvanced.textLabelDist":"Distância da etiqueta de eixos","DE.Views.ImageSettingsAdvanced.textLabelInterval":"Intervalo entre Etiquetas","DE.Views.ImageSettingsAdvanced.textLabelOptions":"Opções de etiqueta","DE.Views.ImageSettingsAdvanced.textLabelPos":"Posição da etiqueta","DE.Views.ImageSettingsAdvanced.textLayout":"Layout","DE.Views.ImageSettingsAdvanced.textLeft":"Esquerda","DE.Views.ImageSettingsAdvanced.textLeftMargin":"Margem esquerda","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"Sobreposição esquerda","DE.Views.ImageSettingsAdvanced.textLegendBottom":"Inferior","DE.Views.ImageSettingsAdvanced.textLegendLeft":"Esquerda","DE.Views.ImageSettingsAdvanced.textLegendPos":"Legenda","DE.Views.ImageSettingsAdvanced.textLegendRight":"Direita","DE.Views.ImageSettingsAdvanced.textLegendTop":"Superior","DE.Views.ImageSettingsAdvanced.textLine":"Linha","DE.Views.ImageSettingsAdvanced.textLines":"Linhas","DE.Views.ImageSettingsAdvanced.textLineStyle":"Estilo de linha","DE.Views.ImageSettingsAdvanced.textLogScale":"Escala logarítmica","DE.Views.ImageSettingsAdvanced.textLow":"Baixo","DE.Views.ImageSettingsAdvanced.textMajor":"Principal","DE.Views.ImageSettingsAdvanced.textMajorMinor":"Maior e Menor","DE.Views.ImageSettingsAdvanced.textMajorType":"Tipo principal","DE.Views.ImageSettingsAdvanced.textManual":"Manual","DE.Views.ImageSettingsAdvanced.textMargin":"Margem","DE.Views.ImageSettingsAdvanced.textMarkers":"Marcadores","DE.Views.ImageSettingsAdvanced.textMarksInterval":"Intervalo entre Marcas","DE.Views.ImageSettingsAdvanced.textMaxValue":"Valor máximo","DE.Views.ImageSettingsAdvanced.textMillions":"Milhões","DE.Views.ImageSettingsAdvanced.textMinor":"Menor","DE.Views.ImageSettingsAdvanced.textMinorType":"Tipo menor","DE.Views.ImageSettingsAdvanced.textMinValue":"Valor mínimo","DE.Views.ImageSettingsAdvanced.textMiter":"Malhete","DE.Views.ImageSettingsAdvanced.textMove":"Mover objeto com texto","DE.Views.ImageSettingsAdvanced.textNextToAxis":"Próximo ao eixo","DE.Views.ImageSettingsAdvanced.textNone":"nenhum","DE.Views.ImageSettingsAdvanced.textNoOverlay":"Sem sobreposição","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"Em Marcas de Seleção","DE.Views.ImageSettingsAdvanced.textOptions":"Opções","DE.Views.ImageSettingsAdvanced.textOriginalSize":"Tamanho padrão","DE.Views.ImageSettingsAdvanced.textOut":"Fora","DE.Views.ImageSettingsAdvanced.textOuterTop":"Fora do topo","DE.Views.ImageSettingsAdvanced.textOverlap":"Permitir sobreposição","DE.Views.ImageSettingsAdvanced.textOverlay":"Sobreposição","DE.Views.ImageSettingsAdvanced.textPage":"Página","DE.Views.ImageSettingsAdvanced.textParagraph":"Parágrafo","DE.Views.ImageSettingsAdvanced.textPosition":"Posição","DE.Views.ImageSettingsAdvanced.textPositionPc":"Posição relativa","DE.Views.ImageSettingsAdvanced.textRelative":"relativo para","DE.Views.ImageSettingsAdvanced.textRelativeWH":"Relativo","DE.Views.ImageSettingsAdvanced.textResizeFit":"Redimensionar forma para caber no texto","DE.Views.ImageSettingsAdvanced.textReverse":"Valores na ordem reversa","DE.Views.ImageSettingsAdvanced.textRight":"Direita","DE.Views.ImageSettingsAdvanced.textRightMargin":"Margem direita","DE.Views.ImageSettingsAdvanced.textRightOf":"para a direita de","DE.Views.ImageSettingsAdvanced.textRightOverlay":"Sobreposição direita","DE.Views.ImageSettingsAdvanced.textRotated":"Rotacionado","DE.Views.ImageSettingsAdvanced.textRotation":"Rotação","DE.Views.ImageSettingsAdvanced.textRound":"Rodada","DE.Views.ImageSettingsAdvanced.textSeparator":"Separador de rótulos de dados","DE.Views.ImageSettingsAdvanced.textSeriesName":"Nome da série","DE.Views.ImageSettingsAdvanced.textShape":"Configurações da forma","DE.Views.ImageSettingsAdvanced.textSize":"Tamanho","DE.Views.ImageSettingsAdvanced.textSmooth":"Suave","DE.Views.ImageSettingsAdvanced.textSquare":"Quadrado","DE.Views.ImageSettingsAdvanced.textStraight":"Reto","DE.Views.ImageSettingsAdvanced.textTenMillions":"10.000.000 ","DE.Views.ImageSettingsAdvanced.textTenThousands":"10.000 ","DE.Views.ImageSettingsAdvanced.textTextBox":"Caixa de texto","DE.Views.ImageSettingsAdvanced.textThousands":"Milhares","DE.Views.ImageSettingsAdvanced.textTickOptions":"Opções de escala","DE.Views.ImageSettingsAdvanced.textTitle":"Imagem - configurações avançadas","DE.Views.ImageSettingsAdvanced.textTitleChart":"Gráfico - configurações avançadas","DE.Views.ImageSettingsAdvanced.textTitleShape":"Forma - configurações avançadas","DE.Views.ImageSettingsAdvanced.textTop":"Parte superior","DE.Views.ImageSettingsAdvanced.textTopMargin":"Margem superior","DE.Views.ImageSettingsAdvanced.textTrillions":"Trilhões","DE.Views.ImageSettingsAdvanced.textUnits":"Exibir unidades","DE.Views.ImageSettingsAdvanced.textValue":"Valor","DE.Views.ImageSettingsAdvanced.textVertAxis":"Eixo vertical","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"Eixo Vertical Secundário","DE.Views.ImageSettingsAdvanced.textVertical":"Vertical","DE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","DE.Views.ImageSettingsAdvanced.textWeightArrows":"Pesos e Setas","DE.Views.ImageSettingsAdvanced.textWidth":"Largura","DE.Views.ImageSettingsAdvanced.textWrap":"Estilo da quebra automática","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"Atrás do texto","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"Em frente","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"Alinhado com o Texto","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"Quadrado","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"Através","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"Justo","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"Parte superior e inferior","DE.Views.LeftMenu.ariaLeftMenu":"Menu esquerdo","DE.Views.LeftMenu.tipAbout":"Sobre","DE.Views.LeftMenu.tipChat":"Chat","DE.Views.LeftMenu.tipComments":"Comentários","DE.Views.LeftMenu.tipNavigation":"Navegação","DE.Views.LeftMenu.tipOutline":"Cabeçalhos","DE.Views.LeftMenu.tipPageThumbnails":"Miniaturas de página","DE.Views.LeftMenu.tipPlugins":"Plug-ins","DE.Views.LeftMenu.tipSearch":"Pesquisar","DE.Views.LeftMenu.tipSupport":"Feedback e Suporte","DE.Views.LeftMenu.tipTitles":"Títulos","DE.Views.LeftMenu.txtDeveloper":"MODO DE DESENVOLVEDOR","DE.Views.LeftMenu.txtEditor":"Editor de documentos","DE.Views.LeftMenu.txtLimit":"Limitar o acesso","DE.Views.LeftMenu.txtTrial":"MODO DE TESTE","DE.Views.LeftMenu.txtTrialDev":"Modo desenvolvedor de teste","DE.Views.LineNumbersDialog.textAddLineNumbering":"Adicionar numeração de linha","DE.Views.LineNumbersDialog.textApplyTo":"Aplicar alterações a","DE.Views.LineNumbersDialog.textContinuous":"Contínuo","DE.Views.LineNumbersDialog.textCountBy":"Contar por","DE.Views.LineNumbersDialog.textDocument":"Documento inteiro","DE.Views.LineNumbersDialog.textForward":"Este ponto à frente","DE.Views.LineNumbersDialog.textFromText":"Do texto","DE.Views.LineNumbersDialog.textNumbering":"Numeração","DE.Views.LineNumbersDialog.textRestartEachPage":"Reiniciar cada uma das página","DE.Views.LineNumbersDialog.textRestartEachSection":"Reiniciar cada uma das seções","DE.Views.LineNumbersDialog.textSection":"Seção atual","DE.Views.LineNumbersDialog.textStartAt":"Começar em","DE.Views.LineNumbersDialog.textTitle":"Números de linhas","DE.Views.LineNumbersDialog.txtAutoText":"Automático","DE.Views.Links.capBtnAddText":"Adicionar texto","DE.Views.Links.capBtnBookmarks":"Favorito","DE.Views.Links.capBtnCaption":"Legenda","DE.Views.Links.capBtnContentsUpdate":"Atualizar tabela","DE.Views.Links.capBtnCrossRef":"Referência cruzada","DE.Views.Links.capBtnInsContents":"Tabela de Conteúdo","DE.Views.Links.capBtnInsFootnote":"Nota de rodapé","DE.Views.Links.capBtnInsLink":"Link","DE.Views.Links.capBtnTOF":"Tabela de Figuras","DE.Views.Links.confirmDeleteFootnotes":"Deseja excluir todas as notas de rodapé?","DE.Views.Links.confirmReplaceTOF":"Quer substituir a tabela de figuras selecionada?","DE.Views.Links.mniConvertNote":"Converter todas as notas","DE.Views.Links.mniDelFootnote":"Excluir todas as notas de rodapé","DE.Views.Links.mniInsEndnote":"Inserir nota final","DE.Views.Links.mniInsFootnote":"Inserir Nota de Rodapé","DE.Views.Links.mniNoteSettings":"Configurações de Notas","DE.Views.Links.textContentsRemove":"Excluir tabela de conteúdo","DE.Views.Links.textContentsSettings":"Configurações","DE.Views.Links.textConvertToEndnotes":"Converter todas as notas de rodapé em notas finais","DE.Views.Links.textConvertToFootnotes":"Converter todas as notas finais em notas de rodapé","DE.Views.Links.textGotoEndnote":"Vá para notas finais","DE.Views.Links.textGotoFootnote":"Ir para notas de rodapé","DE.Views.Links.textSwapNotes":"Trocar notas de rodapé e notas finais","DE.Views.Links.textUpdateAll":"Atualizar toda a tabela","DE.Views.Links.textUpdatePages":"Atualizar somente os números de páginas","DE.Views.Links.tipAddText":"Incluir título no Índice","DE.Views.Links.tipBookmarks":"Criar Favorito","DE.Views.Links.tipCaption":"Inserir legenda","DE.Views.Links.tipContents":"Inserir tabela de conteúdo","DE.Views.Links.tipContentsUpdate":"Atualizar a tabela de conteúdo","DE.Views.Links.tipCrossRef":"Inserir referência cruzada","DE.Views.Links.tipInsertHyperlink":"Adicionar Link","DE.Views.Links.tipNotes":"Inserir ou editar notas de rodapé","DE.Views.Links.tipTableFigures":"Inserir tabela de figuras","DE.Views.Links.tipTableFiguresUpdate":"Atualizar tabela de figuras","DE.Views.Links.titleUpdateTOF":"Atualizar tabela de figuras","DE.Views.Links.txtDontShowTof":"Não Mostrar no Índice","DE.Views.Links.txtLevel":"Nível","DE.Views.ListIndentsDialog.textSpace":"Espaço","DE.Views.ListIndentsDialog.textTab":"Caractere de tabulação","DE.Views.ListIndentsDialog.textTitle":"Listar recuos","DE.Views.ListIndentsDialog.txtFollowBullet":"Siga o marcador com","DE.Views.ListIndentsDialog.txtFollowNumber":"Siga o número com","DE.Views.ListIndentsDialog.txtIndent":"Recuo de texto","DE.Views.ListIndentsDialog.txtNone":"Nenhum","DE.Views.ListIndentsDialog.txtPosBullet":"Posição do marcador","DE.Views.ListIndentsDialog.txtPosNumber":"Posição do número","DE.Views.ListSettingsDialog.textAuto":"Automático","DE.Views.ListSettingsDialog.textBold":"Negrito","DE.Views.ListSettingsDialog.textCenter":"Centro","DE.Views.ListSettingsDialog.textHide":"Ocultar configurações","DE.Views.ListSettingsDialog.textItalic":"Itálico","DE.Views.ListSettingsDialog.textLeft":"Esquerda","DE.Views.ListSettingsDialog.textLevel":"Nível","DE.Views.ListSettingsDialog.textMore":"Mostrar mais configurações","DE.Views.ListSettingsDialog.textPreview":"Visualizar","DE.Views.ListSettingsDialog.textRight":"Direita","DE.Views.ListSettingsDialog.textSelectLevel":"Selecione o nível","DE.Views.ListSettingsDialog.textSpace":"Espaço","DE.Views.ListSettingsDialog.textTab":"Caractere de tabulação","DE.Views.ListSettingsDialog.txtAlign":"Alinhamento","DE.Views.ListSettingsDialog.txtAlignAt":"em","DE.Views.ListSettingsDialog.txtBullet":"Marcador","DE.Views.ListSettingsDialog.txtColor":"Cor","DE.Views.ListSettingsDialog.txtFollow":"Siga o número com","DE.Views.ListSettingsDialog.txtFontName":"Fonte","DE.Views.ListSettingsDialog.txtInclcudeLevel":"Incluir número de nível","DE.Views.ListSettingsDialog.txtIndent":"Recuo de texto","DE.Views.ListSettingsDialog.txtLikeText":"Como un texto","DE.Views.ListSettingsDialog.txtMoreTypes":"Mais tipos","DE.Views.ListSettingsDialog.txtNewBullet":"Novo marcador","DE.Views.ListSettingsDialog.txtNone":"Nenhum","DE.Views.ListSettingsDialog.txtNumFormatString":"Formato Numérico","DE.Views.ListSettingsDialog.txtRestart":"Lista de reinicialização","DE.Views.ListSettingsDialog.txtSize":"Tamanho","DE.Views.ListSettingsDialog.txtStart":"Começar em","DE.Views.ListSettingsDialog.txtSymbol":"Símbolo","DE.Views.ListSettingsDialog.txtTabStop":"Adicionar parada de tabulação em","DE.Views.ListSettingsDialog.txtTitle":"Configurações da lista","DE.Views.ListSettingsDialog.txtType":"Tipo","DE.Views.ListTypesAdvanced.labelSelect":"Selecione o tipo de lista","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"Send","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"Theme","DE.Views.MailMergeEmailDlg.textAttachDocx":"Anexar como DOCX","DE.Views.MailMergeEmailDlg.textAttachPdf":"Anexar como PDF","DE.Views.MailMergeEmailDlg.textFileName":"File name","DE.Views.MailMergeEmailDlg.textFormat":"Mail format","DE.Views.MailMergeEmailDlg.textFrom":"From","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"Message","DE.Views.MailMergeEmailDlg.textSubject":"Subject Line","DE.Views.MailMergeEmailDlg.textTitle":"Send to Email","DE.Views.MailMergeEmailDlg.textTo":"To","DE.Views.MailMergeEmailDlg.textWarning":"Aviso!","DE.Views.MailMergeEmailDlg.textWarningMsg":"Por favor, observe que o envio não poderá ser parado após clicar o botão 'Enviar'.","DE.Views.MailMergeSettings.downloadMergeTitle":"Merging","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"Merge failed.","DE.Views.MailMergeSettings.notcriticalErrorTitle":"Aviso","DE.Views.MailMergeSettings.textAddRecipients":"Add some recipients to the list first","DE.Views.MailMergeSettings.textAll":"Todos os registros","DE.Views.MailMergeSettings.textCurrent":"Registro atual","DE.Views.MailMergeSettings.textDataSource":"Fonte de dados","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"Baixar","DE.Views.MailMergeSettings.textEditData":"Editar lista de destinatário","DE.Views.MailMergeSettings.textEmail":"Email","DE.Views.MailMergeSettings.textFrom":"From","DE.Views.MailMergeSettings.textGoToMail":"Go to Mail","DE.Views.MailMergeSettings.textHighlight":"Highlight merge fields","DE.Views.MailMergeSettings.textInsertField":"Inserir campo de mesclagem","DE.Views.MailMergeSettings.textMaxRecepients":"Max 100 recepients.","DE.Views.MailMergeSettings.textMerge":"Merge","DE.Views.MailMergeSettings.textMergeFields":"Mesclar campos","DE.Views.MailMergeSettings.textMergeTo":"Merge to","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"Salvar","DE.Views.MailMergeSettings.textPreview":"Preview results","DE.Views.MailMergeSettings.textReadMore":"Read more","DE.Views.MailMergeSettings.textSendMsg":"All mail messages are ready and will be sent out within some time.
The speed of mailing depends on your mail service.
You can continue working with document or close it. After the operation is over the notification will be sent to your registration email address.","DE.Views.MailMergeSettings.textTo":"To","DE.Views.MailMergeSettings.txtFirst":"Para o primeiro registro","DE.Views.MailMergeSettings.txtFromToError":"O valor \"De\" deve ser menor que o valor \"Para\"","DE.Views.MailMergeSettings.txtLast":"Para o registro anterior","DE.Views.MailMergeSettings.txtNext":"Para o próximo registro","DE.Views.MailMergeSettings.txtPrev":"Para o registro anterior","DE.Views.MailMergeSettings.txtUntitled":"Untitled","DE.Views.MailMergeSettings.warnProcessMailMerge":"Starting merge failed","DE.Views.Navigation.strNavigate":"Cabeçalhos","DE.Views.Navigation.txtClosePanel":"Fechar títulos","DE.Views.Navigation.txtCollapse":"Recolher tudo","DE.Views.Navigation.txtDemote":"Rebaixar","DE.Views.Navigation.txtEmpty":"Não há títulos no documento.
Aplique um estilo de título ao texto para que ele apareça no índice.","DE.Views.Navigation.txtEmptyItem":"Título vazio","DE.Views.Navigation.txtEmptyViewer":"Não há títulos no documento.","DE.Views.Navigation.txtExpand":"Expandir tudo","DE.Views.Navigation.txtExpandToLevel":"Expandir ao nível","DE.Views.Navigation.txtFontSize":"Tamanho da fonte","DE.Views.Navigation.txtHeadingAfter":"Novo título após","DE.Views.Navigation.txtHeadingBefore":"Novo título antes de","DE.Views.Navigation.txtLarge":"Grande","DE.Views.Navigation.txtMedium":"Médio","DE.Views.Navigation.txtNewHeading":"Novo subtítulo","DE.Views.Navigation.txtPromote":"Promover","DE.Views.Navigation.txtSelect":"Selecionar conteúdo","DE.Views.Navigation.txtSettings":"Configurações de títulos","DE.Views.Navigation.txtSmall":"Pequeno","DE.Views.Navigation.txtWrapHeadings":"Envolver títulos longos","DE.Views.NoteSettingsDialog.textApply":"Aplicar","DE.Views.NoteSettingsDialog.textApplyTo":"Aplicar alterações a","DE.Views.NoteSettingsDialog.textContinue":"Contínua","DE.Views.NoteSettingsDialog.textCustom":"Marca personalizada","DE.Views.NoteSettingsDialog.textDocEnd":"Fim do documento","DE.Views.NoteSettingsDialog.textDocument":"Documento inteiro","DE.Views.NoteSettingsDialog.textEachPage":"Reiniciar cada uma das página","DE.Views.NoteSettingsDialog.textEachSection":"Reiniciar cada uma das seções","DE.Views.NoteSettingsDialog.textEndnote":"Nota final","DE.Views.NoteSettingsDialog.textFootnote":"Nota de rodapé","DE.Views.NoteSettingsDialog.textFormat":"Formato","DE.Views.NoteSettingsDialog.textInsert":"Inserir","DE.Views.NoteSettingsDialog.textLocation":"Localização","DE.Views.NoteSettingsDialog.textNumbering":"Numeração","DE.Views.NoteSettingsDialog.textNumFormat":"Formato Numérico","DE.Views.NoteSettingsDialog.textPageBottom":"Inferior da página","DE.Views.NoteSettingsDialog.textSectEnd":"Fim da seção","DE.Views.NoteSettingsDialog.textSection":"Seção atual","DE.Views.NoteSettingsDialog.textStart":"Começar em","DE.Views.NoteSettingsDialog.textTextBottom":"Abaixo do texto","DE.Views.NoteSettingsDialog.textTitle":"Definições de Notas","DE.Views.NotesRemoveDialog.textEnd":"Apagar todas as notas finais","DE.Views.NotesRemoveDialog.textFoot":"Apagar todas as notas de rodapé","DE.Views.NotesRemoveDialog.textTitle":"Apagar notas","DE.Views.PageMarginsDialog.notcriticalErrorTitle":"Aviso","DE.Views.PageMarginsDialog.textBottom":"Inferior","DE.Views.PageMarginsDialog.textGutter":"Calha","DE.Views.PageMarginsDialog.textGutterPosition":"Posição da calha","DE.Views.PageMarginsDialog.textInside":"Dentro de","DE.Views.PageMarginsDialog.textLandscape":"Paisagem","DE.Views.PageMarginsDialog.textLeft":"Esquerda","DE.Views.PageMarginsDialog.textMirrorMargins":"Margens espelho","DE.Views.PageMarginsDialog.textMultiplePages":"Múltiplas páginas","DE.Views.PageMarginsDialog.textNormal":"Normal","DE.Views.PageMarginsDialog.textOrientation":"Orientação","DE.Views.PageMarginsDialog.textOutside":"Exterior","DE.Views.PageMarginsDialog.textPortrait":"Retrato ","DE.Views.PageMarginsDialog.textPreview":"Visualizar","DE.Views.PageMarginsDialog.textRight":"Direita","DE.Views.PageMarginsDialog.textTitle":"Margens","DE.Views.PageMarginsDialog.textTop":"Parte superior","DE.Views.PageMarginsDialog.txtMarginsH":"Margens superior e inferior são muito altas para uma determinada altura da página","DE.Views.PageMarginsDialog.txtMarginsW":"Margens são muito grandes para uma determinada largura da página","DE.Views.PageNumberingDlg.textFrom":"Começar em","DE.Views.PageNumberingDlg.textMoreTypes":"Mais tipos","DE.Views.PageNumberingDlg.textNumberFormat":"Formato Numérico","DE.Views.PageNumberingDlg.textPrev":"Continuar da seção anterior","DE.Views.PageSizeDialog.textHeight":"Altura","DE.Views.PageSizeDialog.textPreset":"Pré ajuste","DE.Views.PageSizeDialog.textTitle":"Tamanho da página","DE.Views.PageSizeDialog.textWidth":"Largura","DE.Views.PageSizeDialog.txtCustom":"Personalizar","DE.Views.PageThumbnails.textClosePanel":"Fechar miniaturas de página","DE.Views.PageThumbnails.textHighlightVisiblePart":"Realçar parte visível da página","DE.Views.PageThumbnails.textPageThumbnails":"Miniaturas de página","DE.Views.PageThumbnails.textThumbnailsSettings":"Configurações de miniaturas","DE.Views.PageThumbnails.textThumbnailsSize":"Tamanho das miniaturas","DE.Views.ParagraphSettings.strIndent":"Recuos","DE.Views.ParagraphSettings.strIndentsLeftText":"Esquerda","DE.Views.ParagraphSettings.strIndentsRightText":"Direita","DE.Views.ParagraphSettings.strIndentsSpecial":"Especial","DE.Views.ParagraphSettings.strLineHeight":"Espaçamento de linha","DE.Views.ParagraphSettings.strParagraphSpacing":"Espaçamento de parágrafo","DE.Views.ParagraphSettings.strSomeParagraphSpace":"Não adicionar intervalo entre parágrafos do mesmo estilo","DE.Views.ParagraphSettings.strSpacingAfter":"Depois","DE.Views.ParagraphSettings.strSpacingBefore":"Antes","DE.Views.ParagraphSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.ParagraphSettings.textAt":"Em","DE.Views.ParagraphSettings.textAtLeast":"Pelo menos","DE.Views.ParagraphSettings.textAuto":"Múltiplo","DE.Views.ParagraphSettings.textBackColor":"Cor do plano de fundo","DE.Views.ParagraphSettings.textExact":"Exatamente","DE.Views.ParagraphSettings.textFirstLine":"Primeira linha","DE.Views.ParagraphSettings.textHanging":"Suspensão","DE.Views.ParagraphSettings.textNoneSpecial":"(nenhum)","DE.Views.ParagraphSettings.txtAutoText":"Automático","DE.Views.ParagraphSettingsAdvanced.noTabs":"As abas especificadas aparecerão neste campo","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"Todas maiúsculas","DE.Views.ParagraphSettingsAdvanced.strBorders":"Bordas e Preenchimento","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"Quebra de página antes","DE.Views.ParagraphSettingsAdvanced.strDirection":"Direção","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Tachado duplo","DE.Views.ParagraphSettingsAdvanced.strIndent":"Recuos","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Esquerda","DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Espaçamento entre linhas","DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel":"Nível de contorno","DE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Direita","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Depois","DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","DE.Views.ParagraphSettingsAdvanced.strKeepLines":"Manter as linhas juntas","DE.Views.ParagraphSettingsAdvanced.strKeepNext":"Manter com o próximo","DE.Views.ParagraphSettingsAdvanced.strMargins":"Preenchimentos","DE.Views.ParagraphSettingsAdvanced.strOrphan":"Controle de órfão","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Fonte","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Recuos e espaçamento","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"Quebras de linha e página","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"Posicionamento","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versalete","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"Não adicionar intervalo entre parágrafos do mesmo estilo","DE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaçamento","DE.Views.ParagraphSettingsAdvanced.strStrike":"Taxado","DE.Views.ParagraphSettingsAdvanced.strSubscript":"Subscrito","DE.Views.ParagraphSettingsAdvanced.strSuperscript":"Sobrescrito","DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers":"Suprimir números de linha","DE.Views.ParagraphSettingsAdvanced.strTabs":"Aba","DE.Views.ParagraphSettingsAdvanced.textAlign":"Alinhamento","DE.Views.ParagraphSettingsAdvanced.textAll":"Tudo","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"Pelo menos","DE.Views.ParagraphSettingsAdvanced.textAuto":"Múltiplo","DE.Views.ParagraphSettingsAdvanced.textBackColor":"Cor de fundo","DE.Views.ParagraphSettingsAdvanced.textBodyText":"Texto Básico","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"Cor da borda","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"Clique no diagrama ou use os botões para selecionar bordas e aplicar o estilo escolhido a elas","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"Tamanho da borda","DE.Views.ParagraphSettingsAdvanced.textBottom":"Inferior","DE.Views.ParagraphSettingsAdvanced.textCentered":"Centralizado","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaçamento entre caracteres","DE.Views.ParagraphSettingsAdvanced.textContext":"Contextual","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"Contextuais e Discricionários","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"Contextuais, Históricos e Discricionários","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"Contextuais e Históricos","DE.Views.ParagraphSettingsAdvanced.textDefault":"Aba padrão","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"Da esquerda para a direita","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"Da direita para a esquerda","DE.Views.ParagraphSettingsAdvanced.textDiscret":"Discricionário","DE.Views.ParagraphSettingsAdvanced.textEffects":"Efeitos","DE.Views.ParagraphSettingsAdvanced.textExact":"Exatamente","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primeira linha","DE.Views.ParagraphSettingsAdvanced.textHanging":"Suspensão","DE.Views.ParagraphSettingsAdvanced.textHistorical":"Histórico","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"Histórico e discricionário","DE.Views.ParagraphSettingsAdvanced.textJustified":"Justificado","DE.Views.ParagraphSettingsAdvanced.textLeader":"Líder","DE.Views.ParagraphSettingsAdvanced.textLeft":"Esquerda","DE.Views.ParagraphSettingsAdvanced.textLevel":"Nível","DE.Views.ParagraphSettingsAdvanced.textLigatures":"Ligaduras","DE.Views.ParagraphSettingsAdvanced.textNone":"Nenhum","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(nenhum)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"Recursos OpenType","DE.Views.ParagraphSettingsAdvanced.textPosition":"Posição","DE.Views.ParagraphSettingsAdvanced.textRemove":"Excluir","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Excluir todos","DE.Views.ParagraphSettingsAdvanced.textRight":"Direita","DE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","DE.Views.ParagraphSettingsAdvanced.textSpacing":"Espaçamento","DE.Views.ParagraphSettingsAdvanced.textStandard":"Apenas padrão","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"Padrão e contextual","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"Padrão, contextual e discricionário","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"Padrão, contextual e histórico","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"Padrão e Discricionário","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"Padrão, Histórico e Discricionário","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"Padrão e Histórico","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"Centro","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"Esquerda","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posição da aba","DE.Views.ParagraphSettingsAdvanced.textTabRight":"Direita","DE.Views.ParagraphSettingsAdvanced.textTitle":"Parágrafo - configurações avançadas","DE.Views.ParagraphSettingsAdvanced.textTop":"Parte superior","DE.Views.ParagraphSettingsAdvanced.tipAll":"Definir borda externa e todas as linhas internas","DE.Views.ParagraphSettingsAdvanced.tipBottom":"Definir borda inferior apenas","DE.Views.ParagraphSettingsAdvanced.tipInner":"Definir apenas linhas internas horizontais","DE.Views.ParagraphSettingsAdvanced.tipLeft":"Definir apenas borda esquerda","DE.Views.ParagraphSettingsAdvanced.tipNone":"Definir sem bordas","DE.Views.ParagraphSettingsAdvanced.tipOuter":"Definir apenas borda externa","DE.Views.ParagraphSettingsAdvanced.tipRight":"Definir apenas borda direita","DE.Views.ParagraphSettingsAdvanced.tipTop":"Definir apenas borda superior","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"Automático","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"Sem bordas","DE.Views.PrintWithPreview.textMarginsLast":"Últimos personalizados","DE.Views.PrintWithPreview.textMarginsModerate":"Moderado","DE.Views.PrintWithPreview.textMarginsNarrow":"Estreito","DE.Views.PrintWithPreview.textMarginsNormal":"Normal","DE.Views.PrintWithPreview.textMarginsWide":"Amplo","DE.Views.PrintWithPreview.txtAllPages":"Todas as páginas","DE.Views.PrintWithPreview.txtAuto":"Automático","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impressão em preto e branco","DE.Views.PrintWithPreview.txtBothSides":"Imprimir em ambos os lados","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"Vire as páginas na borda longa","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"Vire as páginas na borda curta","DE.Views.PrintWithPreview.txtBottom":"Inferior","DE.Views.PrintWithPreview.txtColorPrinting":"Impressão colorida","DE.Views.PrintWithPreview.txtCopies":"Cópias","DE.Views.PrintWithPreview.txtCurrentPage":"Pagina atual","DE.Views.PrintWithPreview.txtCustom":"Personalizado","DE.Views.PrintWithPreview.txtCustomPages":"Impressão personalizada","DE.Views.PrintWithPreview.txtLandscape":"Paisagem","DE.Views.PrintWithPreview.txtLeft":"Esquerda","DE.Views.PrintWithPreview.txtMargins":"Margens","DE.Views.PrintWithPreview.txtOf":"de {0}","DE.Views.PrintWithPreview.txtOneSide":"Imprimir um lado","DE.Views.PrintWithPreview.txtOneSideDesc":"Imprima apenas em um lado da página","DE.Views.PrintWithPreview.txtPage":"Página","DE.Views.PrintWithPreview.txtPageNumInvalid":"Número da página inválido","DE.Views.PrintWithPreview.txtPageOrientation":"Orientação da página","DE.Views.PrintWithPreview.txtPages":"Páginas","DE.Views.PrintWithPreview.txtPageSize":"Tamanho da página","DE.Views.PrintWithPreview.txtPortrait":"Retrato ","DE.Views.PrintWithPreview.txtPrint":"Imprimir","DE.Views.PrintWithPreview.txtPrinter":"Impressora","DE.Views.PrintWithPreview.txtPrinterNotSelected":"Impressora não selecionada","DE.Views.PrintWithPreview.txtPrintersNotFound":"Impressoras não encontradas","DE.Views.PrintWithPreview.txtPrintPdf":"Exportar em PDF","DE.Views.PrintWithPreview.txtPrintRange":"Imprimir intervalo","DE.Views.PrintWithPreview.txtPrintSides":"Imprimir lados","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir usando a caixa de diálogo do sistema","DE.Views.PrintWithPreview.txtRight":"Direita","DE.Views.PrintWithPreview.txtSelection":"Seleção","DE.Views.PrintWithPreview.txtTop":"Parte superior","DE.Views.PrintWithPreview.txtWaitingForPrinters":"Aguardando impressoras","DE.Views.ProtectDialog.textComments":"Comentários","DE.Views.ProtectDialog.textForms":"Preenchimento de formulários","DE.Views.ProtectDialog.textReview":"Mudanças rastreadas","DE.Views.ProtectDialog.textView":"Sem alterações (somente leitura)","DE.Views.ProtectDialog.txtAllow":"Permitir apenas este tipo de edição no documento","DE.Views.ProtectDialog.txtIncorrectPwd":"A confirmação da senha não é idêntica","DE.Views.ProtectDialog.txtLimit":"A senha é limitada a 15 caracteres","DE.Views.ProtectDialog.txtOptional":"Opcional","DE.Views.ProtectDialog.txtPassword":"Senha","DE.Views.ProtectDialog.txtProtect":"Proteger","DE.Views.ProtectDialog.txtRepeat":"Repetir a senha","DE.Views.ProtectDialog.txtTitle":"Proteger","DE.Views.ProtectDialog.txtWarning":"Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.","DE.Views.RightMenu.ariaRightMenu":"Menu à direita","DE.Views.RightMenu.txtChartSettings":"Configurações de gráfico","DE.Views.RightMenu.txtFormSettings":"Configurações do formulário","DE.Views.RightMenu.txtHeaderFooterSettings":"Configurações de cabeçalho e rodapé","DE.Views.RightMenu.txtImageSettings":"Configurações de imagem","DE.Views.RightMenu.txtMailMergeSettings":"Mail Merge Settings","DE.Views.RightMenu.txtParagraphSettings":"Configurações do parágrafo","DE.Views.RightMenu.txtShapeSettings":"Configurações da forma","DE.Views.RightMenu.txtSignatureSettings":"Configurações de Assinatura","DE.Views.RightMenu.txtTableSettings":"Configurações da tabela","DE.Views.RightMenu.txtTextArtSettings":"Configurações de Arte de Texto","DE.Views.RoleDeleteDlg.textLabel":"Para excluir este destinatário, você precisa mover os campos associados a ele para outro destinatário.","DE.Views.RoleDeleteDlg.textSelect":"Selecione o destinatário para a fusão de campos","DE.Views.RoleDeleteDlg.textTitle":"Excluir destinatário","DE.Views.RoleEditDlg.errNameExists":"Já existe um destinatário com esse nome.","DE.Views.RoleEditDlg.textEmptyError":"O nome do destinatário não deve estar vazio.","DE.Views.RoleEditDlg.textName":"Nome do destinatário","DE.Views.RoleEditDlg.textNameEx":"Exemplo: Requerente, Cliente, Representante de Vendas","DE.Views.RoleEditDlg.textNoHighlight":"Sem destaque","DE.Views.RoleEditDlg.txtTitleEdit":"Editar Destinatário","DE.Views.RoleEditDlg.txtTitleNew":"Criar nova função","DE.Views.RolesManagerDlg.textAnyone":"Alguém","DE.Views.RolesManagerDlg.textDelete":"Excluir","DE.Views.RolesManagerDlg.textDeleteLast":"Tem certeza de que deseja excluir a função {0}?
Depois de excluída, a função padrão será criada.","DE.Views.RolesManagerDlg.textDescription":"Adicione funções e defina a ordem em que os responsáveis recebem e assinam o documento","DE.Views.RolesManagerDlg.textDown":"Mover o destinatário para baixo","DE.Views.RolesManagerDlg.textEdit":"Editar","DE.Views.RolesManagerDlg.textEmpty":"Nenhum destinatário foi criado ainda.
Crie pelo menos um destinatário e ele aparecerá neste campo.","DE.Views.RolesManagerDlg.textNew":"Novo","DE.Views.RolesManagerDlg.textUp":"Mover o destinatário para cima","DE.Views.RolesManagerDlg.txtTitle":"Gerenciar funções de destinatários","DE.Views.RolesManagerDlg.warnCantDelete":"Você não pode excluir este destinatário porque ele tem campos associados.","DE.Views.RolesManagerDlg.warnDelete":"Tem certeza de que deseja excluir a função {0}?","DE.Views.SaveFormDlg.saveButtonText":"Salvar","DE.Views.SaveFormDlg.textAnyone":"Alguém","DE.Views.SaveFormDlg.textDescription":"Ao salvar em PDF, somente os destinatários com campos são adicionados à lista de preenchimento","DE.Views.SaveFormDlg.textEmpty":"Não há destinatários associados aos campos.","DE.Views.SaveFormDlg.textFill":"Lista de preenchimento","DE.Views.SaveFormDlg.txtTitle":"Salvar como formulário","DE.Views.ShapeSettings.strBackground":"Cor do plano de fundo","DE.Views.ShapeSettings.strChange":"Alterar forma","DE.Views.ShapeSettings.strColor":"Cor","DE.Views.ShapeSettings.strFill":"Preencher","DE.Views.ShapeSettings.strForeground":"Cor do primeiro plano","DE.Views.ShapeSettings.strPattern":"Padrão","DE.Views.ShapeSettings.strShadow":"Mostrar sombra","DE.Views.ShapeSettings.strSize":"Tamanho","DE.Views.ShapeSettings.strStroke":"Linha","DE.Views.ShapeSettings.strTransparency":"Opacidade","DE.Views.ShapeSettings.strType":"Tipo","DE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","DE.Views.ShapeSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.ShapeSettings.textAngle":"Ângulo","DE.Views.ShapeSettings.textBorderSizeErr":"O valor inserido está incorreto.
Insira um valor entre 0 pt e 1.584 pt.","DE.Views.ShapeSettings.textColor":"Preenchimento de cor","DE.Views.ShapeSettings.textDirection":"Direção","DE.Views.ShapeSettings.textEditPoints":"Editar Pontos","DE.Views.ShapeSettings.textEditShape":"Editar forma","DE.Views.ShapeSettings.textEmptyPattern":"Sem padrão","DE.Views.ShapeSettings.textEyedropper":"Conta-gotas","DE.Views.ShapeSettings.textFlip":"Girar","DE.Views.ShapeSettings.textFromFile":"Do arquivo","DE.Views.ShapeSettings.textFromStorage":"Do armazenamento","DE.Views.ShapeSettings.textFromUrl":"Da URL","DE.Views.ShapeSettings.textGradient":"Pontos de gradiente","DE.Views.ShapeSettings.textGradientFill":"Preenchimento gradiente","DE.Views.ShapeSettings.textHint270":"Girar 90º no sentido anti-horário.","DE.Views.ShapeSettings.textHint90":"Girar 90º no sentido horário","DE.Views.ShapeSettings.textHintFlipH":"Virar horizontalmente","DE.Views.ShapeSettings.textHintFlipV":"Virar verticalmente","DE.Views.ShapeSettings.textImageTexture":"Imagem ou textura","DE.Views.ShapeSettings.textLinear":"Linear","DE.Views.ShapeSettings.textMoreColors":"Mais cores","DE.Views.ShapeSettings.textNoFill":"Sem preenchimento","DE.Views.ShapeSettings.textNoShadow":"Sem sombra","DE.Views.ShapeSettings.textPatternFill":"Padrão","DE.Views.ShapeSettings.textPosition":"Posição","DE.Views.ShapeSettings.textRadial":"Radial","DE.Views.ShapeSettings.textRecentlyUsed":"Usado recentemente","DE.Views.ShapeSettings.textRotate90":"Girar 90º","DE.Views.ShapeSettings.textRotation":"Rotação","DE.Views.ShapeSettings.textSelectImage":"Selecionar imagem","DE.Views.ShapeSettings.textSelectTexture":"Selecionar","DE.Views.ShapeSettings.textShadow":"Sombra","DE.Views.ShapeSettings.textStretch":"Alongar","DE.Views.ShapeSettings.textStyle":"Estilo","DE.Views.ShapeSettings.textTexture":"De textura","DE.Views.ShapeSettings.textTile":"Lado a lado","DE.Views.ShapeSettings.textWrap":"Estilo da quebra automática","DE.Views.ShapeSettings.tipAddGradientPoint":"Adicionar ponto de gradiente","DE.Views.ShapeSettings.tipRemoveGradientPoint":"Remover ponto de gradiente","DE.Views.ShapeSettings.txtBehind":"Atrás do texto","DE.Views.ShapeSettings.txtBrownPaper":"Papel pardo","DE.Views.ShapeSettings.txtCanvas":"Canvas","DE.Views.ShapeSettings.txtCarton":"Papelão","DE.Views.ShapeSettings.txtDarkFabric":"Tecido escuro","DE.Views.ShapeSettings.txtGrain":"Granulação","DE.Views.ShapeSettings.txtGranite":"Granito","DE.Views.ShapeSettings.txtGreyPaper":"Papel cinza","DE.Views.ShapeSettings.txtInFront":"Em frente ao Texto","DE.Views.ShapeSettings.txtInline":"Alinhado ao texto","DE.Views.ShapeSettings.txtKnit":"Encontro","DE.Views.ShapeSettings.txtLeather":"Couro","DE.Views.ShapeSettings.txtNoBorders":"Sem linha","DE.Views.ShapeSettings.txtOffsetBottom":"Deslocamento: Inferior","DE.Views.ShapeSettings.txtOffsetBottomLeft":"Deslocamento: canto inferior esquerdo","DE.Views.ShapeSettings.txtOffsetBottomRight":"Deslocamento: canto superior direito","DE.Views.ShapeSettings.txtOffsetCenter":"Deslocamento: Centro","DE.Views.ShapeSettings.txtOffsetLeft":"Deslocamento: Esquerda","DE.Views.ShapeSettings.txtOffsetRight":"Deslocamento: Direita","DE.Views.ShapeSettings.txtOffsetTop":"Deslocamento: Superior","DE.Views.ShapeSettings.txtOffsetTopLeft":"Deslocamento: canto superior esquerdo","DE.Views.ShapeSettings.txtOffsetTopRight":"Deslocamento: canto superior direito","DE.Views.ShapeSettings.txtPapyrus":"Papiro","DE.Views.ShapeSettings.txtSquare":"Quadrado","DE.Views.ShapeSettings.txtThrough":"Através","DE.Views.ShapeSettings.txtTight":"Justo","DE.Views.ShapeSettings.txtTopAndBottom":"Parte superior e inferior","DE.Views.ShapeSettings.txtWood":"Madeira","DE.Views.SignatureSettings.notcriticalErrorTitle":"Aviso","DE.Views.SignatureSettings.strDelete":"Remover assinatura","DE.Views.SignatureSettings.strDetails":"Detalhes da assinatura","DE.Views.SignatureSettings.strInvalid":"Assinaturas inválidas","DE.Views.SignatureSettings.strRequested":"Assinaturas solicitadas","DE.Views.SignatureSettings.strSetup":"Configurações da assinatura","DE.Views.SignatureSettings.strSign":"Assinar","DE.Views.SignatureSettings.strSignature":"Assinatura","DE.Views.SignatureSettings.strSigner":"Signatário","DE.Views.SignatureSettings.strValid":"Assinaturas válidas","DE.Views.SignatureSettings.txtContinueEditing":"Editar de qualquer maneira","DE.Views.SignatureSettings.txtEditWarning":"Editar excluirá as assinaturas do documento.
Deseja continuar?","DE.Views.SignatureSettings.txtRemoveWarning":"Você quer remover esta assinatura?
Isso não pode ser desfeito.","DE.Views.SignatureSettings.txtRequestedSignatures":"O documento deve ser assinado.","DE.Views.SignatureSettings.txtSigned":"Assinaturas válidas foram adicionadas ao documento. O documento está protegido contra edição.","DE.Views.SignatureSettings.txtSignedForm":"Este documento foi assinado e não pode ser editado.","DE.Views.SignatureSettings.txtSignedInvalid":"Algumas das assinaturas digitais no documento estão inválidas ou não puderam ser verificadas. O documento está protegido para edição.","DE.Views.Statusbar.goToPageText":"Ir para a Página","DE.Views.Statusbar.pageIndexText":"Página {0} de {1}","DE.Views.Statusbar.tipFitPage":"Ajustar a página","DE.Views.Statusbar.tipFitWidth":"Ajustar à largura","DE.Views.Statusbar.tipHandTool":"Ferramenta de mão","DE.Views.Statusbar.tipMultiplePages":"Múltiplas páginas","DE.Views.Statusbar.tipSelectTool":"Selecionar ferramenta","DE.Views.Statusbar.tipSetLang":"Definir idioma do texto","DE.Views.Statusbar.tipZoomFactor":"Ampliação","DE.Views.Statusbar.tipZoomIn":"Ampliar","DE.Views.Statusbar.tipZoomOut":"Reduzir","DE.Views.Statusbar.txtPageNumInvalid":"Número da página inválido","DE.Views.Statusbar.txtPages":"Páginas","DE.Views.Statusbar.txtParagraphs":"Parágrafos","DE.Views.Statusbar.txtSpaces":"Símbolos com espaços","DE.Views.Statusbar.txtSymbols":"Símbolos","DE.Views.Statusbar.txtWordCount":"Contagem de palavras","DE.Views.Statusbar.txtWords":"Palavras","DE.Views.StyleTitleDialog.textHeader":"Criar Novo Estilo","DE.Views.StyleTitleDialog.textNextStyle":"Estilo do próximo parágrafo","DE.Views.StyleTitleDialog.textTitle":"Title","DE.Views.StyleTitleDialog.txtEmpty":"This field is required","DE.Views.StyleTitleDialog.txtNotEmpty":"Field must not be empty","DE.Views.StyleTitleDialog.txtSameAs":"Igual ao novo estilo criado","DE.Views.TableFormulaDialog.textBookmark":"Colar marcador","DE.Views.TableFormulaDialog.textFormat":"Formato de número","DE.Views.TableFormulaDialog.textFormula":"Fórmula","DE.Views.TableFormulaDialog.textInsertFunction":"Colar função","DE.Views.TableFormulaDialog.textTitle":"Configurações de fórmula","DE.Views.TableOfContentsSettings.strAlign":"Números de página alinhados à direita","DE.Views.TableOfContentsSettings.strFullCaption":"Incluir etiqueta e número","DE.Views.TableOfContentsSettings.strLinks":"Formatar tabela de conteúdo como links","DE.Views.TableOfContentsSettings.strLinksOF":"Formatar tabela de figuras como links","DE.Views.TableOfContentsSettings.strShowPages":"Mostrar números de páginas","DE.Views.TableOfContentsSettings.textBuildTable":"Construir tabela de conteúdo de","DE.Views.TableOfContentsSettings.textBuildTableOF":"construir tabela de figuras de","DE.Views.TableOfContentsSettings.textEquation":"Equação","DE.Views.TableOfContentsSettings.textFigure":"Figura","DE.Views.TableOfContentsSettings.textLeader":"Líder","DE.Views.TableOfContentsSettings.textLevel":"Nível","DE.Views.TableOfContentsSettings.textLevels":"Níveis","DE.Views.TableOfContentsSettings.textNone":"Nenhum","DE.Views.TableOfContentsSettings.textRadioCaption":"Legenda","DE.Views.TableOfContentsSettings.textRadioLevels":"Níveis do marcador","DE.Views.TableOfContentsSettings.textRadioStyle":"Estilo","DE.Views.TableOfContentsSettings.textRadioStyles":"Estilos selecionados","DE.Views.TableOfContentsSettings.textStyle":"Estilo","DE.Views.TableOfContentsSettings.textStyles":"Estilos","DE.Views.TableOfContentsSettings.textTable":"Tabela","DE.Views.TableOfContentsSettings.textTitle":"Tabela de conteúdo","DE.Views.TableOfContentsSettings.textTitleTOF":"Tabela de figuras","DE.Views.TableOfContentsSettings.txtCentered":"Centralizado","DE.Views.TableOfContentsSettings.txtClassic":"Clássico","DE.Views.TableOfContentsSettings.txtCurrent":"Atual","DE.Views.TableOfContentsSettings.txtDistinctive":"Distintivo","DE.Views.TableOfContentsSettings.txtFormal":"Regular","DE.Views.TableOfContentsSettings.txtModern":"Moderno","DE.Views.TableOfContentsSettings.txtOnline":"Online","DE.Views.TableOfContentsSettings.txtSimple":"Simples","DE.Views.TableOfContentsSettings.txtStandard":"Padrão","DE.Views.TableSettings.deleteColumnText":"Excluir coluna","DE.Views.TableSettings.deleteRowText":"Excluir linha","DE.Views.TableSettings.deleteTableText":"Excluir tabela","DE.Views.TableSettings.insertColumnLeftText":"Inserir coluna à esquerda","DE.Views.TableSettings.insertColumnRightText":"Inserir coluna à direita","DE.Views.TableSettings.insertRowAboveText":"Inserir linha acima","DE.Views.TableSettings.insertRowBelowText":"Inserir linha abaixo","DE.Views.TableSettings.mergeCellsText":"Mesclar células","DE.Views.TableSettings.selectCellText":"Selecionar célula","DE.Views.TableSettings.selectColumnText":"Selecionar coluna","DE.Views.TableSettings.selectRowText":"Selecionar linha","DE.Views.TableSettings.selectTableText":"Selecionar tabela","DE.Views.TableSettings.splitCellsText":"Dividir célula...","DE.Views.TableSettings.splitCellTitleText":"Dividir célula","DE.Views.TableSettings.strRepeatRow":"Repetir como linha de cabeçalho na parte superior de todas as páginas","DE.Views.TableSettings.textAddFormula":"Adicionar fórmula","DE.Views.TableSettings.textAdvanced":"Exibir configurações avançadas","DE.Views.TableSettings.textAutofit":"Redimensionar automaticamente para ajustar o conteúdo","DE.Views.TableSettings.textBackColor":"Cor do plano de fundo","DE.Views.TableSettings.textBanded":"Em tiras","DE.Views.TableSettings.textBorderColor":"Cor","DE.Views.TableSettings.textBorders":"Estilo de bordas","DE.Views.TableSettings.textCellSize":"Tamanho de linhas & colunas","DE.Views.TableSettings.textColumns":"Colunas","DE.Views.TableSettings.textConvert":"Converter tabela em texto","DE.Views.TableSettings.textDistributeCols":"Colunas distribuídas","DE.Views.TableSettings.textDistributeRows":"Linhas distribuídas","DE.Views.TableSettings.textEdit":"Linhas e colunas","DE.Views.TableSettings.textEmptyTemplate":"Sem modelos","DE.Views.TableSettings.textFirst":"Primeiro","DE.Views.TableSettings.textHeader":"Cabeçalho","DE.Views.TableSettings.textHeight":"Altura","DE.Views.TableSettings.textLast":"Último","DE.Views.TableSettings.textRows":"Linhas","DE.Views.TableSettings.textSelectBorders":"Selecione as bordas que você deseja alterar aplicando o estilo escolhido acima","DE.Views.TableSettings.textTemplate":"Selecionar a partir do modelo","DE.Views.TableSettings.textTotal":"Total","DE.Views.TableSettings.textWidth":"Largura","DE.Views.TableSettings.tipAll":"Definir borda externa e todas as linhas internas","DE.Views.TableSettings.tipBottom":"Definir apenas borda inferior externa","DE.Views.TableSettings.tipInner":"Definir apenas linhas internas","DE.Views.TableSettings.tipInnerHor":"Definir apenas linhas internas horizontais","DE.Views.TableSettings.tipInnerVert":"Definir apenas linhas internas verticais","DE.Views.TableSettings.tipLeft":"Definir apenas borda esquerda externa","DE.Views.TableSettings.tipNone":"Definir sem bordas","DE.Views.TableSettings.tipOuter":"Definir apenas borda externa","DE.Views.TableSettings.tipRight":"Definir apenas borda direita externa","DE.Views.TableSettings.tipTop":"Definir apenas borda superior externa","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"Tabelas alinhadas e com borda","DE.Views.TableSettings.txtGroupTable_Custom":"Personalizado","DE.Views.TableSettings.txtGroupTable_Grid":"Tabelas de grade","DE.Views.TableSettings.txtGroupTable_List":"Listar tabelas","DE.Views.TableSettings.txtGroupTable_Plain":"Tabelas simples","DE.Views.TableSettings.txtNoBorders":"Sem bordas","DE.Views.TableSettings.txtTable_Accent":"Acento","DE.Views.TableSettings.txtTable_Bordered":"Delimitado","DE.Views.TableSettings.txtTable_BorderedAndLined":"Contornado e Alinhado","DE.Views.TableSettings.txtTable_Colorful":"Colorido","DE.Views.TableSettings.txtTable_Dark":"Escuro","DE.Views.TableSettings.txtTable_GridTable":"Tabela de grade","DE.Views.TableSettings.txtTable_Light":"Claro","DE.Views.TableSettings.txtTable_Lined":"Alinhado","DE.Views.TableSettings.txtTable_ListTable":"Tabela de lista","DE.Views.TableSettings.txtTable_PlainTable":"Tabela simples","DE.Views.TableSettings.txtTable_TableGrid":"Grade da tabela","DE.Views.TableSettingsAdvanced.textAlign":"Alinhamento","DE.Views.TableSettingsAdvanced.textAlignment":"Alinhamento","DE.Views.TableSettingsAdvanced.textAllowSpacing":"Permitir espaçamento entre células","DE.Views.TableSettingsAdvanced.textAlt":"Texto alternativo","DE.Views.TableSettingsAdvanced.textAltDescription":"Descrição","DE.Views.TableSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto da informação do objeto visual, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma, gráfico ou mesa.","DE.Views.TableSettingsAdvanced.textAltTitle":"Título","DE.Views.TableSettingsAdvanced.textAnchorText":"Тexto","DE.Views.TableSettingsAdvanced.textAutofit":"Automaticamente redimensionado para ajustar conteúdo","DE.Views.TableSettingsAdvanced.textBackColor":"Plano de fundo da célula","DE.Views.TableSettingsAdvanced.textBelow":"abaixo","DE.Views.TableSettingsAdvanced.textBorderColor":"Cor da borda","DE.Views.TableSettingsAdvanced.textBorderDesc":"Clique no diagrama ou use os botões para selecionar bordas e aplicar o estilo escolhido a elas","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"Bordas e Plano de fundo","DE.Views.TableSettingsAdvanced.textBorderWidth":"Tamanho da borda","DE.Views.TableSettingsAdvanced.textBottom":"Inferior","DE.Views.TableSettingsAdvanced.textCellOptions":"Opções de célula","DE.Views.TableSettingsAdvanced.textCellProps":"Célula","DE.Views.TableSettingsAdvanced.textCellSize":"Tamanho de célula","DE.Views.TableSettingsAdvanced.textCenter":"Centro","DE.Views.TableSettingsAdvanced.textCenterTooltip":"Centro","DE.Views.TableSettingsAdvanced.textCheckMargins":"Usar margens padrão","DE.Views.TableSettingsAdvanced.textDefaultMargins":"Margens de célula padrão","DE.Views.TableSettingsAdvanced.textDistance":"Distância do texto","DE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal","DE.Views.TableSettingsAdvanced.textIndLeft":"Recuo da esquerda","DE.Views.TableSettingsAdvanced.textLeft":"Esquerda","DE.Views.TableSettingsAdvanced.textLeftTooltip":"Esquerda","DE.Views.TableSettingsAdvanced.textMargin":"Margem","DE.Views.TableSettingsAdvanced.textMargins":"Margens da célula","DE.Views.TableSettingsAdvanced.textMeasure":"Medir em","DE.Views.TableSettingsAdvanced.textMove":"Mover objeto com texto","DE.Views.TableSettingsAdvanced.textOnlyCells":"Apenas para as células selecionadas","DE.Views.TableSettingsAdvanced.textOptions":"Opções","DE.Views.TableSettingsAdvanced.textOverlap":"Permitir sobreposição","DE.Views.TableSettingsAdvanced.textPage":"Página","DE.Views.TableSettingsAdvanced.textPosition":"Posição","DE.Views.TableSettingsAdvanced.textPrefWidth":"Largura preferida","DE.Views.TableSettingsAdvanced.textPreview":"Pré-visualizar","DE.Views.TableSettingsAdvanced.textRelative":"relativo para","DE.Views.TableSettingsAdvanced.textRight":"Direita","DE.Views.TableSettingsAdvanced.textRightOf":"para a direita de","DE.Views.TableSettingsAdvanced.textRightTooltip":"Direita","DE.Views.TableSettingsAdvanced.textTable":"Tabela","DE.Views.TableSettingsAdvanced.textTableBackColor":"Plano de fundo da tabela","DE.Views.TableSettingsAdvanced.textTablePosition":"Posição de tabela","DE.Views.TableSettingsAdvanced.textTableSize":"Tamanho de tabela","DE.Views.TableSettingsAdvanced.textTitle":"Tabela - configurações avançadas","DE.Views.TableSettingsAdvanced.textTop":"Parte superior","DE.Views.TableSettingsAdvanced.textVertical":"Vertical","DE.Views.TableSettingsAdvanced.textWidth":"Largura","DE.Views.TableSettingsAdvanced.textWidthSpaces":"Largura e Espaços","DE.Views.TableSettingsAdvanced.textWrap":"Disposição do texto","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"Tabela embutida","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"Tabela de fluxo","DE.Views.TableSettingsAdvanced.textWrappingStyle":"Estilo da quebra automática","DE.Views.TableSettingsAdvanced.textWrapText":"Quebrar texto ","DE.Views.TableSettingsAdvanced.tipAll":"Definir borda externa e todas as linhas internas","DE.Views.TableSettingsAdvanced.tipCellAll":"Definir bordas para células internas apenas","DE.Views.TableSettingsAdvanced.tipCellInner":"Definir linhas verticais e horizontais apenas para células internas","DE.Views.TableSettingsAdvanced.tipCellOuter":"Definir bordas externas apenas para células internas","DE.Views.TableSettingsAdvanced.tipInner":"Definir apenas linhas internas","DE.Views.TableSettingsAdvanced.tipNone":"Definir sem bordas","DE.Views.TableSettingsAdvanced.tipOuter":"Definir apenas borda externa","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"Definir borda externa e bordas para todas as células internas","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"Definir borda externa e linhas verticais e horizontais para células internas","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"Definir borda externa da tabela e bordas externas para células internas","DE.Views.TableSettingsAdvanced.txtCm":"Centímetro","DE.Views.TableSettingsAdvanced.txtInch":"Polegada","DE.Views.TableSettingsAdvanced.txtNoBorders":"Sem bordas","DE.Views.TableSettingsAdvanced.txtPercent":"Por cento","DE.Views.TableSettingsAdvanced.txtPt":"Ponto","DE.Views.TableToTextDialog.textEmpty":"Você deve digitar um caractere para o separador personalizado.","DE.Views.TableToTextDialog.textNested":"Converter tabelas aninhadas","DE.Views.TableToTextDialog.textOther":"Outro","DE.Views.TableToTextDialog.textPara":"Marcas de parágrafo","DE.Views.TableToTextDialog.textSemicolon":"Ponto e vírgula","DE.Views.TableToTextDialog.textSeparator":"Separe o texto com","DE.Views.TableToTextDialog.textTab":"Aba","DE.Views.TableToTextDialog.textTitle":"Converter tabela em texto","DE.Views.TextArtSettings.strColor":"Color","DE.Views.TextArtSettings.strFill":"Preencher","DE.Views.TextArtSettings.strSize":"Size","DE.Views.TextArtSettings.strStroke":"Linha","DE.Views.TextArtSettings.strTransparency":"Opacity","DE.Views.TextArtSettings.strType":"Tipo","DE.Views.TextArtSettings.textAngle":"Ângulo","DE.Views.TextArtSettings.textBorderSizeErr":"O valor inserido está incorreto.
Insira um valor entre 0 pt e 1.584 pt.","DE.Views.TextArtSettings.textColor":"Preenchimento de cor","DE.Views.TextArtSettings.textDirection":"Direção","DE.Views.TextArtSettings.textGradient":"Pontos de gradiente","DE.Views.TextArtSettings.textGradientFill":"Preenchimento gradiente","DE.Views.TextArtSettings.textLinear":"Linear","DE.Views.TextArtSettings.textNoFill":"Sem preenchimento","DE.Views.TextArtSettings.textPosition":"Posição","DE.Views.TextArtSettings.textRadial":"Radial","DE.Views.TextArtSettings.textSelectTexture":"Selecionar","DE.Views.TextArtSettings.textStyle":"Estilo","DE.Views.TextArtSettings.textTemplate":"Modelo","DE.Views.TextArtSettings.textTransform":"Transform","DE.Views.TextArtSettings.tipAddGradientPoint":"Adicionar ponto de gradiente","DE.Views.TextArtSettings.tipRemoveGradientPoint":"Remover ponto de gradiente","DE.Views.TextArtSettings.txtNoBorders":"Sem linha","DE.Views.TextToTableDialog.textAutofit":"Comportamento de Auto-ajuste","DE.Views.TextToTableDialog.textColumns":"Colunas","DE.Views.TextToTableDialog.textContents":"Adaptação automática ao conteúdo","DE.Views.TextToTableDialog.textEmpty":"Você deve digitar um caractere para o separador personalizado.","DE.Views.TextToTableDialog.textFixed":"Largura fixa da coluna","DE.Views.TextToTableDialog.textOther":"Outro","DE.Views.TextToTableDialog.textPara":"Parágrafos","DE.Views.TextToTableDialog.textRows":"Linhas","DE.Views.TextToTableDialog.textSemicolon":"Ponto e vírgula","DE.Views.TextToTableDialog.textSeparator":"Separar texto em","DE.Views.TextToTableDialog.textTab":"Aba","DE.Views.TextToTableDialog.textTableSize":"Tamanho da tabela","DE.Views.TextToTableDialog.textTitle":"Converter texto em tabela","DE.Views.TextToTableDialog.textWindow":"Ajustar automaticamente para janela","DE.Views.TextToTableDialog.txtAutoText":"Automático","DE.Views.Toolbar.capBtnAddComment":"Adicionar comentário","DE.Views.Toolbar.capBtnBlankPage":"Página em branco","DE.Views.Toolbar.capBtnColumns":"Colunas","DE.Views.Toolbar.capBtnComment":"Comentário","DE.Views.Toolbar.capBtnHand":"Mão","DE.Views.Toolbar.capBtnHyphenation":"Hifenização","DE.Views.Toolbar.capBtnInsChart":"Gráfico","DE.Views.Toolbar.capBtnInsControls":"Controles de conteúdo","DE.Views.Toolbar.capBtnInsDropcap":"Letra capitular","DE.Views.Toolbar.capBtnInsEquation":"Equação","DE.Views.Toolbar.capBtnInsHeader":"Cabeçalho/rodapé","DE.Views.Toolbar.capBtnInsPagebreak":"Quebras","DE.Views.Toolbar.capBtnInsShape":"Forma","DE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","DE.Views.Toolbar.capBtnInsSymbol":"Símbolo","DE.Views.Toolbar.capBtnInsTable":"Tabela","DE.Views.Toolbar.capBtnInsTextart":"Arte de texto","DE.Views.Toolbar.capBtnInsTextbox":"Caixa de texto","DE.Views.Toolbar.capBtnInsTextFromFile":"Texto do arquivo","DE.Views.Toolbar.capBtnLineNumbers":"Números de Linhas","DE.Views.Toolbar.capBtnMargins":"Margens","DE.Views.Toolbar.capBtnPageColor":"Cor da página","DE.Views.Toolbar.capBtnPageOrient":"Orientação","DE.Views.Toolbar.capBtnPageSize":"Tamanho","DE.Views.Toolbar.capBtnSelect":"Selecionar","DE.Views.Toolbar.capBtnWatermark":"Marca d'água","DE.Views.Toolbar.capColorScheme":"Cores","DE.Views.Toolbar.capImgAlign":"Alinhar","DE.Views.Toolbar.capImgBackward":"Enviar para trás","DE.Views.Toolbar.capImgForward":"Mover para frente","DE.Views.Toolbar.capImgGroup":"Grupo","DE.Views.Toolbar.capImgWrapping":"Quebra Automática","DE.Views.Toolbar.capShapesMerge":"Mesclar formas","DE.Views.Toolbar.mniCapitalizeWords":"Utilize cada palavra","DE.Views.Toolbar.mniCustomTable":"Inserir tabela personalizada","DE.Views.Toolbar.mniDrawTable":"Desenhar Tabela","DE.Views.Toolbar.mniEditControls":"Configurações de controle","DE.Views.Toolbar.mniEditDropCap":"Configurações avançadas de Letra capitular","DE.Views.Toolbar.mniEditFooter":"Editar rodapé","DE.Views.Toolbar.mniEditHeader":"Editar cabeçalho","DE.Views.Toolbar.mniEraseTable":"Apagar Tabela","DE.Views.Toolbar.mniFromFile":"Do Arquivo","DE.Views.Toolbar.mniFromStorage":"De armazenamento","DE.Views.Toolbar.mniFromUrl":"Da URL","DE.Views.Toolbar.mniHiddenBorders":"Ocultar bordas da tabela","DE.Views.Toolbar.mniHiddenChars":"Caracteres não imprimíveis","DE.Views.Toolbar.mniHighlightControls":"Configurações de destaque","DE.Views.Toolbar.mniInsertSSE":"Inserir planilha","DE.Views.Toolbar.mniLowerCase":"minúscula","DE.Views.Toolbar.mniRemoveFooter":"Remover rodapé","DE.Views.Toolbar.mniRemoveHeader":"Remover cabeçalho","DE.Views.Toolbar.mniSentenceCase":"Capitular o início de uma frase.","DE.Views.Toolbar.mniTextFromLocalFile":"Texto do arquivo local","DE.Views.Toolbar.mniTextFromStorage":"Texto do arquivo de armazenamento","DE.Views.Toolbar.mniTextFromURL":"Texto do arquivo de URL","DE.Views.Toolbar.mniTextToTable":"Converter Texto em Tabela","DE.Views.Toolbar.mniToggleCase":"aLTERNAR","DE.Views.Toolbar.mniUpperCase":"MAIÚSCULO","DE.Views.Toolbar.strMenuNoFill":"Sem preenchimento","DE.Views.Toolbar.textAddSpaceAfter":"Adicione espaço após o parágrafo","DE.Views.Toolbar.textAddSpaceBefore":"Adicione espaço antes do parágrafo","DE.Views.Toolbar.textAllBorders":"Todas as bordas","DE.Views.Toolbar.textAlpha":"Letra grega pequena Alfa","DE.Views.Toolbar.textAuto":"Automático","DE.Views.Toolbar.textAutoColor":"Automático","DE.Views.Toolbar.textBetta":"Letra grega pequena Betta","DE.Views.Toolbar.textBlackHeart":"Copas","DE.Views.Toolbar.textBold":"Negrito","DE.Views.Toolbar.textBordersColor":"Cor da borda","DE.Views.Toolbar.textBordersStyle":"Estilo da borda","DE.Views.Toolbar.textBottom":"Inferior: ","DE.Views.Toolbar.textBottomBorders":"Bordas inferiores","DE.Views.Toolbar.textBullet":"Marcador","DE.Views.Toolbar.textChangeLevel":"Alterar nível de lista","DE.Views.Toolbar.textCheckboxControl":"Caixa de seleção","DE.Views.Toolbar.textColumnsCustom":"Colunas personalizadas","DE.Views.Toolbar.textColumnsLeft":"Esquerda","DE.Views.Toolbar.textColumnsOne":"Uma","DE.Views.Toolbar.textColumnsRight":"Direita","DE.Views.Toolbar.textColumnsThree":"Três","DE.Views.Toolbar.textColumnsTwo":"Duas","DE.Views.Toolbar.textComboboxControl":"Caixa de Combinação","DE.Views.Toolbar.textContinuous":"Contínuo","DE.Views.Toolbar.textContPage":"Página contínua","DE.Views.Toolbar.textCopyright":"Assinatura de copyright","DE.Views.Toolbar.textCustomHyphen":"Opções de hifenização","DE.Views.Toolbar.textCustomLineNumbers":"Opções de numeração de linha","DE.Views.Toolbar.textDateControl":"Selecionador de data","DE.Views.Toolbar.textDegree":"Símbolo de grau","DE.Views.Toolbar.textDelta":"Letra grega pequena Delta","DE.Views.Toolbar.textDirLtr":"Da esquerda para a direita","DE.Views.Toolbar.textDirRtl":"Da direita para a esquerda","DE.Views.Toolbar.textDivision":"Sinal de divisão","DE.Views.Toolbar.textDollar":"Cifrão","DE.Views.Toolbar.textDropdownControl":"Lista suspensa","DE.Views.Toolbar.textEditMode":"Editar PDF","DE.Views.Toolbar.textEditWatermark":"Personalizar Marca d'água","DE.Views.Toolbar.textEuro":"Sinal de Euro","DE.Views.Toolbar.textEvenPage":"Página par","DE.Views.Toolbar.textGreaterEqual":"Maior que ou igual a","DE.Views.Toolbar.textIndAfter":"Recuo depois","DE.Views.Toolbar.textIndBefore":"Recuo antes","DE.Views.Toolbar.textIndLeft":"Recuo à esquerda","DE.Views.Toolbar.textIndRight":"Recuo à direita","DE.Views.Toolbar.textInfinity":"Infinidade","DE.Views.Toolbar.textInMargin":"Na margem","DE.Views.Toolbar.textInsColumnBreak":"Inserir quebra de coluna","DE.Views.Toolbar.textInsertPageCount":"Inserir número de páginas","DE.Views.Toolbar.textInsertPageNumber":"Inserir número da página","DE.Views.Toolbar.textInsideBorders":"Bordas interiores","DE.Views.Toolbar.textInsideHorBorders":"Bordas horizontais interiores","DE.Views.Toolbar.textInsideVertBorders":"Bordas verticais interiores","DE.Views.Toolbar.textInsPageBreak":"Inserir quebra de página","DE.Views.Toolbar.textInsSectionBreak":"Inserir quebra de seção","DE.Views.Toolbar.textInText":"No texto","DE.Views.Toolbar.textItalic":"Itálico","DE.Views.Toolbar.textLandscape":"Paisagem","DE.Views.Toolbar.textLeft":"Esquerda: ","DE.Views.Toolbar.textLeftBorders":"Bordas esquerdas","DE.Views.Toolbar.textLessEqual":"Menos que ou igual a","DE.Views.Toolbar.textLetterPi":"Letra grega pequena Pi","DE.Views.Toolbar.textLineSpaceOptions":"Opções de espaçamento entre linhas","DE.Views.Toolbar.textListSettings":"Configurações da lista","DE.Views.Toolbar.textMarginsLast":"Últimos personalizados","DE.Views.Toolbar.textMarginsModerate":"Moderado","DE.Views.Toolbar.textMarginsNarrow":"Estreito","DE.Views.Toolbar.textMarginsNormal":"Normal","DE.Views.Toolbar.textMarginsWide":"Amplo","DE.Views.Toolbar.textMoreSymbols":"Mais símbolos","DE.Views.Toolbar.textNewColor":"Mais cores","DE.Views.Toolbar.textNextPage":"Próxima Página","DE.Views.Toolbar.textNoBorders":"Sem bordas","DE.Views.Toolbar.textNoHighlight":"Sem destaque","DE.Views.Toolbar.textNone":"Nenhum","DE.Views.Toolbar.textNotEqualTo":"Não igual a","DE.Views.Toolbar.textOddPage":"Página Ímpar","DE.Views.Toolbar.textOneHalf":"Fração ordinária um segundo","DE.Views.Toolbar.textOneQuarter":"Fração ordinária um quarto","DE.Views.Toolbar.textOutBorders":"Bordas externas","DE.Views.Toolbar.textPageMarginsCustom":"Margens personalizadas","DE.Views.Toolbar.textPageSizeCustom":"Tamanho de página personalizado","DE.Views.Toolbar.textPictureControl":"Imagem","DE.Views.Toolbar.textPlainControl":"Texto simples","DE.Views.Toolbar.textPlusMinus":"Sinal de mais-menos","DE.Views.Toolbar.textPortrait":"Retrato ","DE.Views.Toolbar.textRegistered":"Símbolo de marca registrada","DE.Views.Toolbar.textRemoveControl":"Remover controle de conteúdo","DE.Views.Toolbar.textRemSpaceAfter":"Remover espaço após parágrafo","DE.Views.Toolbar.textRemSpaceBefore":"Remover espaço antes do parágrafo","DE.Views.Toolbar.textRemWatermark":"Excluir marca d'água","DE.Views.Toolbar.textRestartEachPage":"Reinicie cada página","DE.Views.Toolbar.textRestartEachSection":"Reiniciar cada uma das seções","DE.Views.Toolbar.textRichControl":"Texto rico","DE.Views.Toolbar.textRight":"Direita: ","DE.Views.Toolbar.textRightBorders":"Bordas direitas","DE.Views.Toolbar.textSection":"Sinal de seção","DE.Views.Toolbar.textShapesCombine":"Combinar","DE.Views.Toolbar.textShapesFragment":"Fragmento","DE.Views.Toolbar.textShapesIntersect":"Intersecção","DE.Views.Toolbar.textShapesSubstract":"Subtrair","DE.Views.Toolbar.textShapesUnion":"União","DE.Views.Toolbar.textSmile":"Rosto sorridente branco","DE.Views.Toolbar.textSpaceAfter":"Espaço após","DE.Views.Toolbar.textSpaceBefore":"Espaço anterior","DE.Views.Toolbar.textSquareRoot":"Raiz quadrada","DE.Views.Toolbar.textStrikeout":"Taxado","DE.Views.Toolbar.textStyleMenuDelete":"Excluir estilo","DE.Views.Toolbar.textStyleMenuDeleteAll":"Excluir todos os estilos personalizados","DE.Views.Toolbar.textStyleMenuNew":"Novo estilo a partir da seleção","DE.Views.Toolbar.textStyleMenuRestore":"Restaurar padrão","DE.Views.Toolbar.textStyleMenuRestoreAll":"Restaurar todos os estilos padrão","DE.Views.Toolbar.textStyleMenuUpdate":"Atualizar da seleção","DE.Views.Toolbar.textSubscript":"Subscrito","DE.Views.Toolbar.textSuperscript":"Sobrescrito","DE.Views.Toolbar.textSuppressForCurrentParagraph":"Suprimir para o parágrafo atual","DE.Views.Toolbar.textTabCollaboration":"Colaboração","DE.Views.Toolbar.textTabDraw":"Desenhar","DE.Views.Toolbar.textTabFile":"Arquivo","DE.Views.Toolbar.textTabHeaderFooter":"Cabeçalho/rodapé","DE.Views.Toolbar.textTabHome":"Página Inicial","DE.Views.Toolbar.textTabInsert":"Inserir","DE.Views.Toolbar.textTabLayout":"Layout","DE.Views.Toolbar.textTabLinks":"Referências","DE.Views.Toolbar.textTabProtect":"Proteção","DE.Views.Toolbar.textTabReview":"Revisar","DE.Views.Toolbar.textTabView":"Ver","DE.Views.Toolbar.textTilde":"Til","DE.Views.Toolbar.textTitleError":"Erro","DE.Views.Toolbar.textToCurrent":"Para posição atual","DE.Views.Toolbar.textTop":"Parte superior: ","DE.Views.Toolbar.textTopBorders":"Bordas superiores","DE.Views.Toolbar.textTradeMark":"Sinal de marca registrada","DE.Views.Toolbar.textUnderline":"Sublinhado","DE.Views.Toolbar.textYen":"Sinal de iene","DE.Views.Toolbar.tipAlignCenter":"Alinhar ao centro","DE.Views.Toolbar.tipAlignJust":"Justificado","DE.Views.Toolbar.tipAlignLeft":"Alinhar à esquerda","DE.Views.Toolbar.tipAlignRight":"Alinhar à direita","DE.Views.Toolbar.tipBack":"Voltar","DE.Views.Toolbar.tipBlankPage":"Inserir página em branco","DE.Views.Toolbar.tipBorders":"Bordas","DE.Views.Toolbar.tipChangeCase":"Mudar maiúsculas e minúsculas","DE.Views.Toolbar.tipChangeChart":"Alterar Tipo de Gráfico","DE.Views.Toolbar.tipClearStyle":"Limpar estilo","DE.Views.Toolbar.tipColorSchemas":"Alterar esquema de cor","DE.Views.Toolbar.tipColumns":"Inserir colunas","DE.Views.Toolbar.tipControls":"Adicionar controles de conteúdo","DE.Views.Toolbar.tipCopy":"Copiar","DE.Views.Toolbar.tipCopyStyle":"Copiar estilo","DE.Views.Toolbar.tipCut":"Cortar","DE.Views.Toolbar.tipDecFont":"Diminuir tamanho da fonte","DE.Views.Toolbar.tipDecPrLeft":"Diminuir o Recuo","DE.Views.Toolbar.tipDownload":"Baixar arquivo","DE.Views.Toolbar.tipDropCap":"Inserir letra capitular","DE.Views.Toolbar.tipEditMode":"Edite o arquivo atual.
A página será recarregada.","DE.Views.Toolbar.tipFontColor":"Cor da fonte","DE.Views.Toolbar.tipFontName":"Fonte","DE.Views.Toolbar.tipFontSize":"Tamanho da fonte","DE.Views.Toolbar.tipHandTool":"Ferramenta de mão","DE.Views.Toolbar.tipHighlightColor":"Cor de realce","DE.Views.Toolbar.tipHyphenation":"Alterar hifenização","DE.Views.Toolbar.tipImgAlign":"Alinhar objetos","DE.Views.Toolbar.tipImgGroup":"Agrupar objetos","DE.Views.Toolbar.tipImgWrapping":"Quebrar texto ","DE.Views.Toolbar.tipIncFont":"Aumentar tamanho da fonte","DE.Views.Toolbar.tipIncPrLeft":"Aumentar recuo","DE.Views.Toolbar.tipInsertChart":"Inserir gráfico","DE.Views.Toolbar.tipInsertEquation":"Inserir equação","DE.Views.Toolbar.tipInsertHorizontalText":"Inserir caixa de texto horizontal","DE.Views.Toolbar.tipInsertNum":"Inserir número da página","DE.Views.Toolbar.tipInsertShape":"Inserir forma","DE.Views.Toolbar.tipInsertSmartArt":"Inserir SmartArt","DE.Views.Toolbar.tipInsertSymbol":"Inserir símbolo","DE.Views.Toolbar.tipInsertTable":"Inserir tabela","DE.Views.Toolbar.tipInsertText":"Inserir caixa de texto","DE.Views.Toolbar.tipInsertTextArt":"Inserir arte de texto","DE.Views.Toolbar.tipInsertVerticalText":"Inserir caixa de texto vertical","DE.Views.Toolbar.tipLineNumbers":"Mostrar números de linha","DE.Views.Toolbar.tipLineSpace":"Espaçamento entre linhas do parágrafo","DE.Views.Toolbar.tipMailRecepients":"Mescla de e-mail","DE.Views.Toolbar.tipMarkers":"Marcadores","DE.Views.Toolbar.tipMarkersArrow":"Balas de flecha","DE.Views.Toolbar.tipMarkersCheckmark":"Marcas de verificação","DE.Views.Toolbar.tipMarkersDash":"Marcadores de roteiro","DE.Views.Toolbar.tipMarkersFRhombus":"Vinhetas rômbicas cheias","DE.Views.Toolbar.tipMarkersFRound":"Balas redondas cheias","DE.Views.Toolbar.tipMarkersFSquare":"Balas quadradas cheias","DE.Views.Toolbar.tipMarkersHRound":"Balas redondas ocas","DE.Views.Toolbar.tipMarkersStar":"Balas de estrelas","DE.Views.Toolbar.tipMultiLevelArticl":"Artigos numerados em vários níveis","DE.Views.Toolbar.tipMultiLevelChapter":"Capítulos numerados em vários níveis","DE.Views.Toolbar.tipMultiLevelHeadings":"Títulos numerados em vários níveis","DE.Views.Toolbar.tipMultiLevelHeadVarious":"Vários títulos numerados de vários níveis","DE.Views.Toolbar.tipMultiLevelNumbered":"Marcadores numerados de vários níveis","DE.Views.Toolbar.tipMultilevels":"Contorno","DE.Views.Toolbar.tipMultiLevelSymbols":"Marcadores de símbolos de vários níveis","DE.Views.Toolbar.tipMultiLevelVarious":"Várias balas numeradas de vários níveis","DE.Views.Toolbar.tipNumbers":"Numeração","DE.Views.Toolbar.tipPageBreak":"Inserir página ou quebra de seção","DE.Views.Toolbar.tipPageColor":"Alterar a cor da página","DE.Views.Toolbar.tipPageMargins":"Margens da página","DE.Views.Toolbar.tipPageOrient":"Orientação da página","DE.Views.Toolbar.tipPageSize":"Tamanho da página","DE.Views.Toolbar.tipParagraphStyle":"Estilo do parágrafo","DE.Views.Toolbar.tipPaste":"Colar","DE.Views.Toolbar.tipPrColor":"Cor do plano de fundo do parágrafo","DE.Views.Toolbar.tipPrint":"Imprimir","DE.Views.Toolbar.tipPrintQuick":"Impressão rápida","DE.Views.Toolbar.tipRedo":"Refazer","DE.Views.Toolbar.tipReplace":"Substituir","DE.Views.Toolbar.tipSave":"Salvar","DE.Views.Toolbar.tipSaveCoauth":"Salvar suas alterações para que os outros usuários as vejam.","DE.Views.Toolbar.tipSelectAll":"Selecionar todos","DE.Views.Toolbar.tipSelectTool":"Selecionar ferramenta","DE.Views.Toolbar.tipSendBackward":"Enviar para trás","DE.Views.Toolbar.tipSendForward":"Mover para frente","DE.Views.Toolbar.tipShapesMerge":"Mesclar formas","DE.Views.Toolbar.tipShowHiddenChars":"Caracteres não imprimíveis","DE.Views.Toolbar.tipSynchronize":"O documento foi alterado por outro usuário. Clique para salvar suas alterações e recarregar as atualizações.","DE.Views.Toolbar.tipTextDir":"Direção do texto","DE.Views.Toolbar.tipTextFromFile":"Texto do arquivo","DE.Views.Toolbar.tipUndo":"Desfazer","DE.Views.Toolbar.tipWatermark":"Editar marca d'água","DE.Views.Toolbar.txtAutoText":"Automático","DE.Views.Toolbar.txtDistribHor":"Distribuir horizontalmente","DE.Views.Toolbar.txtDistribVert":"Distribuir verticalmente","DE.Views.Toolbar.txtGroupBulletDoc":"Marcadores de documento","DE.Views.Toolbar.txtGroupBulletLib":"Biblioteca de marcadores","DE.Views.Toolbar.txtGroupMultiDoc":"Listas no documento atual","DE.Views.Toolbar.txtGroupMultiLib":"Listar biblioteca","DE.Views.Toolbar.txtGroupNumDoc":"Formatos de numeração de documentos","DE.Views.Toolbar.txtGroupNumLib":"Biblioteca de numeração","DE.Views.Toolbar.txtGroupRecent":"Usado recentemente","DE.Views.Toolbar.txtMarginAlign":"Alinhar à margem","DE.Views.Toolbar.txtObjectsAlign":"Alinhar objetos selecionados","DE.Views.Toolbar.txtPageAlign":"Alinhar à página","DE.Views.ViewTab.textAlwaysShowToolbar":"Sempre mostrar a barra de ferramentas","DE.Views.ViewTab.textDarkDocument":"Documento escuro","DE.Views.ViewTab.textFill":"Preencher","DE.Views.ViewTab.textFitToPage":"Ajustar a página","DE.Views.ViewTab.textFitToWidth":"Ajustar largura","DE.Views.ViewTab.textInterfaceTheme":"Tema de interface","DE.Views.ViewTab.textLeftMenu":"Painel esquerdo","DE.Views.ViewTab.textLine":"Linha","DE.Views.ViewTab.textMacros":"Macros","DE.Views.ViewTab.textMultiplePages":"Múltiplas páginas","DE.Views.ViewTab.textNavigation":"Navegação","DE.Views.ViewTab.textOutline":"Cabeçalhos","DE.Views.ViewTab.textPauseMacro":"Pausar gravação","DE.Views.ViewTab.textRecMacro":"Registrar macro","DE.Views.ViewTab.textResumeMacro":"Retomar a gravação","DE.Views.ViewTab.textRightMenu":"Painel direito","DE.Views.ViewTab.textRulers":"Regras","DE.Views.ViewTab.textStatusBar":"Barra de status","DE.Views.ViewTab.textStopMacro":"Interrompa a gravação","DE.Views.ViewTab.textTabStyle":"Estilo da guia","DE.Views.ViewTab.textZoom":"Ampliação","DE.Views.ViewTab.textZoom100":"Ampliar para 100%","DE.Views.ViewTab.tipDarkDocument":"Documento escuro","DE.Views.ViewTab.tipFitToPage":"Ajustar a página","DE.Views.ViewTab.tipFitToWidth":"Ajustar largura","DE.Views.ViewTab.tipHeadings":"Títulos","DE.Views.ViewTab.tipInterfaceTheme":"Tema de interface","DE.Views.ViewTab.tipMacros":"Macros","DE.Views.ViewTab.tipMultiplePages":"Múltiplas páginas","DE.Views.ViewTab.tipPauseMacro":"Pausar gravação","DE.Views.ViewTab.tipRecMacro":"Registrar macro","DE.Views.ViewTab.tipResumeMacro":"Retomar a gravação","DE.Views.ViewTab.tipStopMacro":"Interrompa a gravação","DE.Views.ViewTab.tipZoom100":"Ampliar para 100%","DE.Views.WatermarkSettingsDialog.textAuto":"Automático","DE.Views.WatermarkSettingsDialog.textBold":"Negrito","DE.Views.WatermarkSettingsDialog.textColor":"Cor do texto","DE.Views.WatermarkSettingsDialog.textDiagonal":"Diagonal","DE.Views.WatermarkSettingsDialog.textFont":"Fonte","DE.Views.WatermarkSettingsDialog.textFromFile":"Do Arquivo","DE.Views.WatermarkSettingsDialog.textFromStorage":"De armazenamento","DE.Views.WatermarkSettingsDialog.textFromUrl":"Da URL","DE.Views.WatermarkSettingsDialog.textHor":"Horizontal","DE.Views.WatermarkSettingsDialog.textImageW":"Marca d'água de imagem","DE.Views.WatermarkSettingsDialog.textItalic":"Itálico","DE.Views.WatermarkSettingsDialog.textLanguage":"Idioma","DE.Views.WatermarkSettingsDialog.textLayout":"Layout","DE.Views.WatermarkSettingsDialog.textNone":"Nenhum","DE.Views.WatermarkSettingsDialog.textScale":"Redimensionar","DE.Views.WatermarkSettingsDialog.textSelect":"Selecionar Imagem","DE.Views.WatermarkSettingsDialog.textStrikeout":"Tachado","DE.Views.WatermarkSettingsDialog.textText":"Тexto","DE.Views.WatermarkSettingsDialog.textTextW":"Marca d'água de texto","DE.Views.WatermarkSettingsDialog.textTitle":"Configurações de marca d'água","DE.Views.WatermarkSettingsDialog.textTransparency":"Semitransparente","DE.Views.WatermarkSettingsDialog.textUnderline":"Sublinhar","DE.Views.WatermarkSettingsDialog.tipFontName":"Nome da Fonte","DE.Views.WatermarkSettingsDialog.tipFontSize":"Tamanho da fonte"} \ No newline at end of file diff --git a/public/web-apps/apps/documenteditor/main/locale/zh.json b/public/web-apps/apps/documenteditor/main/locale/zh.json index 58fd572d2..8ff039fba 100644 --- a/public/web-apps/apps/documenteditor/main/locale/zh.json +++ b/public/web-apps/apps/documenteditor/main/locale/zh.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"显示主窗口","Common.Controllers.Desktop.itemCreateFromTemplate":"用模板创建","Common.Controllers.ExternalDiagramEditor.textAnonymous":"匿名用户","Common.Controllers.ExternalDiagramEditor.textClose":"关闭","Common.Controllers.ExternalDiagramEditor.warningText":"该对象被禁用,因为它被另一个用户编辑。","Common.Controllers.ExternalDiagramEditor.warningTitle":"警告","Common.Controllers.ExternalLinks.textAddExternalData":"已添加外部源的链接。您可以在“数据”选项卡中更新此类链接。","Common.Controllers.ExternalLinks.textDontUpdate":"不要更新","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"错误:更新失败","Common.Controllers.ExternalLinks.warnUpdateExternalData":"此工作簿含有指向一个或多个可能不安全的外部源的链接
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"此文档含有指向一个或多个可能不安全的外部来源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"此演示文稿含有指向一个或多个可能不安全的外部来源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalMergeEditor.textAnonymous":"匿名用户","Common.Controllers.ExternalMergeEditor.textClose":"关闭","Common.Controllers.ExternalMergeEditor.warningText":"该对象被禁用,因为它被另一个用户编辑。","Common.Controllers.ExternalMergeEditor.warningTitle":"警告","Common.Controllers.ExternalOleEditor.textAnonymous":"匿名用户","Common.Controllers.ExternalOleEditor.textClose":"关闭","Common.Controllers.ExternalOleEditor.warningText":"该对象被禁用,因为它被另一个用户编辑。","Common.Controllers.ExternalOleEditor.warningTitle":"警告","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"历史记录加载失败","Common.Controllers.Plugins.helpMoveMacros":"若要使用宏,请切换到“视图”选项卡。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移动了的宏按钮","Common.Controllers.Plugins.helpUseMacros":"在这里可以找到宏按钮","Common.Controllers.Plugins.helpUseMacrosHeader":"更新了对宏的访问","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"插件已成功安装。您可以在这里访问所有后台插件。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}已成功安装。您可以在这里访问所有后台插件。","Common.Controllers.Plugins.textRunInstalledPlugins":"运行已安装的插件","Common.Controllers.Plugins.textRunPlugin":"运行插件","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"比较文档时,文档中所有跟踪到的更改都将被视作已同意。您想要继续吗?","Common.Controllers.ReviewChanges.textAtLeast":"最小值","Common.Controllers.ReviewChanges.textAuto":"自动","Common.Controllers.ReviewChanges.textBaseline":"基准线","Common.Controllers.ReviewChanges.textBold":"粗体","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.textDeleted":"已删除:","Common.Controllers.ReviewChanges.textDStrikeout":"双删除线","Common.Controllers.ReviewChanges.textEquation":"方程式","Common.Controllers.ReviewChanges.textExact":"固定值","Common.Controllers.ReviewChanges.textFirstLine":"第一行","Common.Controllers.ReviewChanges.textFontSize":"字体大小","Common.Controllers.ReviewChanges.textFormatted":"已格式化","Common.Controllers.ReviewChanges.textHighlight":"高亮色","Common.Controllers.ReviewChanges.textImage":"图片","Common.Controllers.ReviewChanges.textIndentLeft":"左缩进","Common.Controllers.ReviewChanges.textIndentRight":"右缩进","Common.Controllers.ReviewChanges.textInserted":"已插入:","Common.Controllers.ReviewChanges.textItalic":"斜体","Common.Controllers.ReviewChanges.textJustify":"两端对齐","Common.Controllers.ReviewChanges.textKeepLines":"段中不分页","Common.Controllers.ReviewChanges.textKeepNext":"与下段同页","Common.Controllers.ReviewChanges.textLeft":"左对齐","Common.Controllers.ReviewChanges.textLineSpacing":"行间距:","Common.Controllers.ReviewChanges.textMultiple":"多倍行距","Common.Controllers.ReviewChanges.textNoBreakBefore":"不段前分页","Common.Controllers.ReviewChanges.textNoContextual":"在相同样式的段落之间添加间隔","Common.Controllers.ReviewChanges.textNoKeepLines":"段中可分页","Common.Controllers.ReviewChanges.textNoKeepNext":"不与下段同页","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":"段落已插入","Common.Controllers.ReviewChanges.textParaMoveFromDown":"已下移","Common.Controllers.ReviewChanges.textParaMoveFromUp":"已上移:","Common.Controllers.ReviewChanges.textParaMoveTo":"已移动","Common.Controllers.ReviewChanges.textPosition":"位置","Common.Controllers.ReviewChanges.textRight":"右对齐","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":"删除线","Common.Controllers.ReviewChanges.textSubScript":"下标","Common.Controllers.ReviewChanges.textSuperScript":"上标","Common.Controllers.ReviewChanges.textTableChanged":"表格设置已更改","Common.Controllers.ReviewChanges.textTableRowsAdd":"已添加表格行","Common.Controllers.ReviewChanges.textTableRowsDel":"表格行已删除","Common.Controllers.ReviewChanges.textTabs":"更改选项卡","Common.Controllers.ReviewChanges.textTitleComparison":"比较设置","Common.Controllers.ReviewChanges.textUnderline":"下划线","Common.Controllers.ReviewChanges.textUrl":"粘贴文件URL","Common.Controllers.ReviewChanges.textWidow":"孤行控制","Common.Controllers.ReviewChanges.textWord":"字級","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"在表格底部插入新行。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"将标题 1 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"将标题 2 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"将标题 3 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"将所选文本转换为无序项目符号列表,或开始一个新列表。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"使用键盘方向键将所选对象大步向下移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"使用键盘方向键将所选对象大步向左移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"使用键盘方向键将所选对象大步向右移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"使用键盘方向键将所选对象大步向上移动。","Common.Controllers.Shortcuts.txtDescriptionBold":"将所选文本的字体设置为比正常更粗更黑。","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"在段落之间切换居中对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"在表单中选择下一个下拉式方框选项。","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"在表单中选择上一个下拉式方框选项。","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"关闭当前文档。","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"关闭菜单或模式窗口。重置批注与修订的弹窗。重置表格绘制与擦除模式。重置文本拖放。重置标记选择模式。重置格式刷模式。取消选择形状。重置插入形状模式。退出页眉/页脚。退出表单填写。","Common.Controllers.Shortcuts.txtDescriptionCopy":"将所选文本发送到计算机剪贴板。复制的文本可稍后插入到同一文档的其他位置、另一份文档或其他程序中。","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"复制当前编辑文本中所选片段的格式。复制的格式可稍后应用到同一文档中的其他文本片段。","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"在当前文档中光标右侧插入版权符号。","Common.Controllers.Shortcuts.txtDescriptionCut":"删除所选文本并将其发送到计算机剪贴板。复制的文本可稍后插入到同一文档的其他位置、另一份文档或其他程序中。","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"将所选文本的字体大小减小1磅。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"删除光标左侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"删除光标左侧的一个单词/选区/图形对象。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"删除光标右侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"删除光标右侧的一个单词/选区/图形对象。","Common.Controllers.Shortcuts.txtDescriptionEditChart":"当选中图表标题时,如果标题为空,将光标移到行首;否则选中标题文本。","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"重复最近一次撤销的操作。","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"选择文档中的所有文本、表格和图片。","Common.Controllers.Shortcuts.txtDescriptionEditShape":"当选中形状时,如果形状没有内容,则创建内容并将光标移到行首;如果已有内容为空,将光标移到内容位置,否则选中整个内容。","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"撤销最近一次执行的操作。","Common.Controllers.Shortcuts.txtDescriptionEmDash":"在当前文档中光标右侧插入长破折号。","Common.Controllers.Shortcuts.txtDescriptionEnDash":"在当前文档中光标右侧插入短破折号。","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"结束当前段落并开始新段落。","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"在单元格内另起一段。","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"在公式参数中插入新占位符。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"将运算符的对齐级别调整为左对齐(用于强制换行后的公式第二行)。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"将运算符的对齐级别调整为右对齐(用于强制换行后的公式第二行)。","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"在光标位置插入欧元符号。","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"在光标位置插入省略号。","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"将所选文本的字体大小增加1磅。","Common.Controllers.Shortcuts.txtDescriptionIndent":"增加段落左缩进。","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"添加分栏符。","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"插入尾注。","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"在光标位置插入公式。","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"插入脚注。","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"插入可用于跳转到网页地址的链接。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"插入换行符(不中断段落)","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"在多行表单中插入换行符。","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"在光标位置插入分页符。","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"在光标位置插入当前页码。","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"在段落中插入制表符(非段首位置)。","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"在表格中插入表格分隔符。","Common.Controllers.Shortcuts.txtDescriptionItalic":"将所选文本的字体设置为斜体。","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"在段落之间切换两端对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"将段落左对齐。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"按住指定键并使用键盘方向键将所选对象每次向下移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"按住指定键并使用键盘方向键将所选对象每次向左移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"按住指定键并使用键盘方向键将所选对象每次向右移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"按住指定键并使用键盘方向键将所选对象每次向上移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"增加所选段落的缩进。","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"减少所选段落的缩进。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"将焦点移到当前所选对象之后的下一个对象。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"将焦点移到当前所选对象之前的上一个对象。","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"将光标下移一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"将光标移动到当前编辑文档的末尾。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"将光标移动到当前编辑行的末尾。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"将光标右移一个单词。","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"将光标左移一个字符。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"当光标位于页眉/页脚时,转到下方页眉。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"当光标位于页眉/页脚时,转到下方页眉/页脚。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"转到表格行中的下一个单元格。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"转到下一个表单。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"转到当前编辑文档的下一页。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"转到表格中的下一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"转到表格行中的上一个单元格。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"转到上一个表单。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"转到当前编辑文档的上一页。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"转到表格中的上一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"将光标右移一个字符。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"将光标移动到当前编辑文档的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"将光标移动到当前编辑行的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"将光标移动到当前编辑文档下一页的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"将光标移动到当前编辑文档上一页的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"将光标移动到单词开头或左移一个单词。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"将光标上移一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"当光标位于页眉/页脚时,转到上方页眉。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"当光标位于页眉/页脚时,转到上方页眉/页脚。","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"切换到桌面编辑器的下一个文件选项卡或在线编辑器的下一个浏览器标签页。","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"在模式对话框中在控件之间导航,将焦点移到下一个控件。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"在字符之间插入连字符,该连字符不能作为换行的起始位置。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"在字符之间插入空格,该空格不能作为换行的起始位置。","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"在在线编辑器中打开聊天面板并发送消息。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"打开数据输入字段,在其中添加批注内容。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"打开批注面板,以添加自己的批注或回复其他用户的批注。","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"打开所选元素的上下文菜单。","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"打开标准对话框以选择现有文件。在此对话框中选择文件并点击“打开”后,文件将在桌面编辑器的新选项卡或窗口中打开。","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"打开“文件”面板,以保存、下载、打印当前文档,查看文档信息,新建或打开现有文档,访问文本文档编辑器帮助中心或高级设置。","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"打开“查找和替换”面板,并显示替换字段,以替换一个或多个找到的字符。","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"打开“搜素”对话框,在当前编辑的文档中开始搜索字符/单词/短语。","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"打开文本文档编辑器帮助菜单。","Common.Controllers.Shortcuts.txtDescriptionPaste":"在光标位置插入之前从计算机剪贴板复制的文本片段。该文本可以来自同一文档、其他文档或其他程序。","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"将之前复制的格式应用到当前编辑文档中的文本。","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"在光标位置插入之前从计算机剪贴板复制的文本片段,但不保留其原始格式。该文本可以来自同一文档、其他文档或其他程序。","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"切换到桌面编辑器的上一个文件选项卡或在线编辑器的上一个浏览器标签页。","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"在模式对话框中在控件之间导航,将焦点移到上一个控件。","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"使用可用的打印机打印文档或将其保存为文件。","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"在光标位置插入注册商标符号。","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"将所选的 Unicode 代码替换为符号。","Common.Controllers.Shortcuts.txtDescriptionResetChar":"清除所选文本的格式。","Common.Controllers.Shortcuts.txtDescriptionRightPara":"在段落之间切换右对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionSave":"保存当前文档的所有更改。文件将以现有名称、位置和格式保存。","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"打开“另存为”面板,将当前编辑的文档以支持的格式之一保存到计算机硬盘。","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"将文档向下滚动约一页。","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"将文档向上滚动约一页。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"选择光标左侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"从光标位置选择到单词开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"将光标下移一行,并选中前一位置与当前位置之间的所有符号。","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"将光标上移一行,并选中前一位置与当前位置之间的所有符号。","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"从光标位置选择到屏幕下方的页面部分。","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"从光标位置选择到屏幕上方的页面部分。","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"选择光标右侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"从光标位置选择到单词末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"从光标位置选择到下一页开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"从光标位置选择到上一页开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"从光标位置选择到文档末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"从光标位置选择到当前行末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"从光标位置选择到文档开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"从光标位置选择到当前行开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionShowAll":"显示或隐藏非打印字符。","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"在光标位置插入软连字符。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"保留所复制文本的源格式。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"粘贴不带原始格式的文本。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"将复制的表格作为嵌套表粘贴到现有表格的选定单元格中。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"用复制的数据替换现有表格的内容。","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"启用/禁用将应用程序中的操作传递给屏幕阅读器。","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"提升列表/缩进级别(当光标位于段首时)。","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"降低列表/缩进级别(当光标位于段首时)。","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"将所选文本加删除线。","Common.Controllers.Shortcuts.txtDescriptionSubscript":"将所选文本缩小并放在文本行的下方,例如化学式中的写法。","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"将所选文本缩小并放在文本行的上方,例如分数中的写法。","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"在光标位置插入商标符号。","Common.Controllers.Shortcuts.txtDescriptionUnderline":"将所选文本加下划线。","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"减少段落左缩进。","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"更新字段(例如目录)。","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"在光标位于链接时访问该链接。","Common.Controllers.Shortcuts.txtDescriptionZoom100":"将当前文档的“缩放”参数重置为默认的 100%。","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"放大当前编辑文档。","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"缩小当前编辑文档。","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"复制","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"剪切","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"缩进","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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":"三维分组柱形图","Common.define.chartData.textBarNormal3dPerspective":"三维柱形图","Common.define.chartData.textBarStacked":"堆积柱形图","Common.define.chartData.textBarStacked3d":"三维堆积柱形图","Common.define.chartData.textBarStackedPer":"100%堆积柱状图","Common.define.chartData.textBarStackedPer3d":"三维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":"三维分组条形图","Common.define.chartData.textHBarStacked":"堆积条形图","Common.define.chartData.textHBarStacked3d":"三维堆积条形图","Common.define.chartData.textHBarStackedPer":"100%堆积条形图","Common.define.chartData.textHBarStackedPer3d":"三维100%堆积条形图","Common.define.chartData.textLine":"折线图","Common.define.chartData.textLine3d":"三维折线图","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":"三维饼图","Common.define.chartData.textPoint":"XY散佈圖","Common.define.chartData.textRadar":"雷达图","Common.define.chartData.textRadarFilled":"填充雷达","Common.define.chartData.textRadarMarker":"带标记的雷达","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.define.smartArt.textAccentedPicture":"强调图片","Common.define.smartArt.textAccentProcess":"重点流程","Common.define.smartArt.textAlternatingFlow":"交替流程","Common.define.smartArt.textAlternatingHexagons":"交替六边形","Common.define.smartArt.textAlternatingPictureBlocks":"交替图片块","Common.define.smartArt.textAlternatingPictureCircles":"交替图片圆形","Common.define.smartArt.textArchitectureLayout":"架构布局","Common.define.smartArt.textArrowRibbon":"带形箭头","Common.define.smartArt.textAscendingPictureAccentProcess":"升序图片重点流程","Common.define.smartArt.textBalance":"平衡","Common.define.smartArt.textBasicBendingProcess":"基本弯曲流程","Common.define.smartArt.textBasicBlockList":"基本列表","Common.define.smartArt.textBasicChevronProcess":"基本箭头流程","Common.define.smartArt.textBasicCycle":"基本循环","Common.define.smartArt.textBasicMatrix":"基本矩阵","Common.define.smartArt.textBasicPie":"基本饼图","Common.define.smartArt.textBasicProcess":"基本流程","Common.define.smartArt.textBasicPyramid":"基本金字塔","Common.define.smartArt.textBasicRadial":"基本放射图","Common.define.smartArt.textBasicTarget":"基本目标","Common.define.smartArt.textBasicTimeline":"基本时间轴","Common.define.smartArt.textBasicVenn":"基本维恩图","Common.define.smartArt.textBendingPictureAccentList":"蛇形图片重点列表","Common.define.smartArt.textBendingPictureBlocks":"蛇形图片块","Common.define.smartArt.textBendingPictureCaption":"蛇形图片标题","Common.define.smartArt.textBendingPictureCaptionList":"蛇形图片标题列表","Common.define.smartArt.textBendingPictureSemiTranparentText":"蛇形图片半透明文字","Common.define.smartArt.textBlockCycle":"块循环","Common.define.smartArt.textBubblePictureList":"气泡图列表","Common.define.smartArt.textCaptionedPictures":"带标题的图片","Common.define.smartArt.textChevronAccentProcess":"V型强调流程","Common.define.smartArt.textChevronList":"V型列表","Common.define.smartArt.textCircleAccentTimeline":"圆形强调时间线","Common.define.smartArt.textCircleArrowProcess":"圆形箭頭流程","Common.define.smartArt.textCirclePictureHierarchy":"圆形图片层次结构","Common.define.smartArt.textCircleProcess":"圆形流程","Common.define.smartArt.textCircleRelationship":"圆形关系","Common.define.smartArt.textCircularBendingProcess":"环状蛇形流程","Common.define.smartArt.textCircularPictureCallout":"圆形图片标注","Common.define.smartArt.textClosedChevronProcess":"闭合V型流程","Common.define.smartArt.textContinuousArrowProcess":"连续箭头过程","Common.define.smartArt.textContinuousBlockProcess":"连续块过程","Common.define.smartArt.textContinuousCycle":"连续循环","Common.define.smartArt.textContinuousPictureList":"连续图片列表","Common.define.smartArt.textConvergingArrows":"汇聚箭头","Common.define.smartArt.textConvergingRadial":"汇聚放射线","Common.define.smartArt.textConvergingText":"汇聚文本","Common.define.smartArt.textCounterbalanceArrows":"平衡箭头","Common.define.smartArt.textCycle":"循环","Common.define.smartArt.textCycleMatrix":"循环矩阵","Common.define.smartArt.textDescendingBlockList":"降序块列表","Common.define.smartArt.textDescendingProcess":"降序流程","Common.define.smartArt.textDetailedProcess":"详细流程","Common.define.smartArt.textDivergingArrows":"发散箭头","Common.define.smartArt.textDivergingRadial":"发散径向","Common.define.smartArt.textEquation":"方程式","Common.define.smartArt.textFramedTextPicture":"带边框的文本图片","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"齿轮","Common.define.smartArt.textGridMatrix":"网格矩阵","Common.define.smartArt.textGroupedList":"分组列表","Common.define.smartArt.textHalfCircleOrganizationChart":"半圆组织结构图","Common.define.smartArt.textHexagonCluster":"六边形集群","Common.define.smartArt.textHexagonRadial":"六边形射线","Common.define.smartArt.textHierarchy":"层级结构","Common.define.smartArt.textHierarchyList":"层级结构列表","Common.define.smartArt.textHorizontalBulletList":"水平项目符号列表","Common.define.smartArt.textHorizontalHierarchy":"水平层次结构","Common.define.smartArt.textHorizontalLabeledHierarchy":"水平标记层次","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"水平多级层次结构","Common.define.smartArt.textHorizontalOrganizationChart":"水平组织结构图","Common.define.smartArt.textHorizontalPictureList":"水平图片列表","Common.define.smartArt.textIncreasingArrowProcess":"递增箭头流程","Common.define.smartArt.textIncreasingCircleProcess":"递增圆圈流程","Common.define.smartArt.textInterconnectedBlockProcess":"互连块流程","Common.define.smartArt.textInterconnectedRings":"互连环图","Common.define.smartArt.textInvertedPyramid":"倒金字塔","Common.define.smartArt.textLabeledHierarchy":"已标记层次","Common.define.smartArt.textLinearVenn":"线性韦恩图","Common.define.smartArt.textLinedList":"划线列表","Common.define.smartArt.textList":"列表","Common.define.smartArt.textMatrix":"矩阵","Common.define.smartArt.textMultidirectionalCycle":"多方向循环","Common.define.smartArt.textNameAndTitleOrganizationChart":"姓名和职务组织结构图","Common.define.smartArt.textNestedTarget":"嵌套的目标","Common.define.smartArt.textNondirectionalCycle":"非定向循环","Common.define.smartArt.textOpposingArrows":"反向箭头","Common.define.smartArt.textOpposingIdeas":"相对观点","Common.define.smartArt.textOrganizationChart":"组织图","Common.define.smartArt.textOther":"其它","Common.define.smartArt.textPhasedProcess":"分阶段处理","Common.define.smartArt.textPicture":"图片","Common.define.smartArt.textPictureAccentBlocks":"图片强调块","Common.define.smartArt.textPictureAccentList":"图片强调列表","Common.define.smartArt.textPictureAccentProcess":"图片强调文字流程","Common.define.smartArt.textPictureCaptionList":"图片标题列表","Common.define.smartArt.textPictureFrame":"图片框架","Common.define.smartArt.textPictureGrid":"图片网格","Common.define.smartArt.textPictureLineup":"图片排列","Common.define.smartArt.textPictureOrganizationChart":"图片组织图","Common.define.smartArt.textPictureStrips":"图片条纹","Common.define.smartArt.textPieProcess":"圆饼图流程","Common.define.smartArt.textPlusAndMinus":"加减","Common.define.smartArt.textProcess":"流程","Common.define.smartArt.textProcessArrows":"流程箭头","Common.define.smartArt.textProcessList":"流程列表","Common.define.smartArt.textPyramid":"金字塔","Common.define.smartArt.textPyramidList":"金字塔列表","Common.define.smartArt.textRadialCluster":"放射状群集","Common.define.smartArt.textRadialCycle":"径向循环","Common.define.smartArt.textRadialList":"径向列表","Common.define.smartArt.textRadialPictureList":"放射状图片列表","Common.define.smartArt.textRadialVenn":"径向韦恩图","Common.define.smartArt.textRandomToResultProcess":"随机结果流程","Common.define.smartArt.textRelationship":"关系","Common.define.smartArt.textRepeatingBendingProcess":"重复弯曲流程","Common.define.smartArt.textReverseList":"反向列表","Common.define.smartArt.textSegmentedCycle":"分段循环","Common.define.smartArt.textSegmentedProcess":"分段流程","Common.define.smartArt.textSegmentedPyramid":"分段金字塔","Common.define.smartArt.textSnapshotPictureList":"快照图片列表","Common.define.smartArt.textSpiralPicture":"螺旋图","Common.define.smartArt.textSquareAccentList":"方形强调列表","Common.define.smartArt.textStackedList":"堆积列表","Common.define.smartArt.textStackedVenn":"堆积韦恩图","Common.define.smartArt.textStaggeredProcess":"交错流程","Common.define.smartArt.textStepDownProcess":"向下阶梯式流程","Common.define.smartArt.textStepUpProcess":"向上阶梯式流程","Common.define.smartArt.textSubStepProcess":"子步骤流程","Common.define.smartArt.textTabbedArc":"已定位的弧形","Common.define.smartArt.textTableHierarchy":"表格层次","Common.define.smartArt.textTableList":"表格列表","Common.define.smartArt.textTabList":"标签列表","Common.define.smartArt.textTargetList":"目标列表","Common.define.smartArt.textTextCycle":"文本循环","Common.define.smartArt.textThemePictureAccent":"主题图片强调","Common.define.smartArt.textThemePictureAlternatingAccent":"主题图片交替强调","Common.define.smartArt.textThemePictureGrid":"主题图片网格","Common.define.smartArt.textTitledMatrix":"标题矩阵","Common.define.smartArt.textTitledPictureAccentList":"标题图片强调列表","Common.define.smartArt.textTitledPictureBlocks":"标题图片块","Common.define.smartArt.textTitlePictureLineup":"标题图片排列","Common.define.smartArt.textTrapezoidList":"梯形列表","Common.define.smartArt.textUpwardArrow":"向上箭头","Common.define.smartArt.textVaryingWidthList":"可变宽度列表","Common.define.smartArt.textVerticalAccentList":"垂直强调列表","Common.define.smartArt.textVerticalArrowList":"垂直箭头列表","Common.define.smartArt.textVerticalBendingProcess":"垂直弯曲流程","Common.define.smartArt.textVerticalBlockList":"垂直块列表","Common.define.smartArt.textVerticalBoxList":"垂直方框列表","Common.define.smartArt.textVerticalBracketList":"垂直括号列表","Common.define.smartArt.textVerticalBulletList":"垂直项目符号列表","Common.define.smartArt.textVerticalChevronList":"垂直V型列表","Common.define.smartArt.textVerticalCircleList":"垂直循环列表","Common.define.smartArt.textVerticalCurvedList":"垂直曲线列表","Common.define.smartArt.textVerticalEquation":"垂直方程式","Common.define.smartArt.textVerticalPictureAccentList":"垂直图片强调列表","Common.define.smartArt.textVerticalPictureList":"垂直图片列表","Common.define.smartArt.textVerticalProcess":"垂直流程","Common.Translation.textMoreButton":"更多","Common.Translation.tipFileLocked":"文档编辑被锁定,您可以稍后进行更改并将其保存为本地副本。","Common.Translation.tipFileReadOnly":"该文件是只读的。若要保留更改,请使用新名称或将文件保存在其他位置。","Common.Translation.warnFileLocked":"您无法编辑此文件,因为它正在另一个应用程序中进行编辑。","Common.Translation.warnFileLockedBtnEdit":"创建副本","Common.Translation.warnFileLockedBtnView":"打开查看","Common.UI.ButtonColored.textAutoColor":"自动","Common.UI.ButtonColored.textEyedropper":"拾色器","Common.UI.ButtonColored.textNewColor":"更多颜色","Common.UI.Calendar.textApril":"四月","Common.UI.Calendar.textAugust":"八月","Common.UI.Calendar.textDecember":"十二月","Common.UI.Calendar.textFebruary":"二月","Common.UI.Calendar.textJanuary":"一月","Common.UI.Calendar.textJuly":"七月","Common.UI.Calendar.textJune":"六月","Common.UI.Calendar.textMarch":"三月","Common.UI.Calendar.textMay":"五月","Common.UI.Calendar.textMonths":"月","Common.UI.Calendar.textNovember":"十一月","Common.UI.Calendar.textOctober":"十月","Common.UI.Calendar.textSeptember":"九月","Common.UI.Calendar.textShortApril":"四月","Common.UI.Calendar.textShortAugust":"八月","Common.UI.Calendar.textShortDecember":"十二月","Common.UI.Calendar.textShortFebruary":"二月","Common.UI.Calendar.textShortFriday":"周五","Common.UI.Calendar.textShortJanuary":"一月","Common.UI.Calendar.textShortJuly":"七月","Common.UI.Calendar.textShortJune":"六月","Common.UI.Calendar.textShortMarch":"三月","Common.UI.Calendar.textShortMay":"五月","Common.UI.Calendar.textShortMonday":"周一","Common.UI.Calendar.textShortNovember":"十一月","Common.UI.Calendar.textShortOctober":"十月","Common.UI.Calendar.textShortSaturday":"周六","Common.UI.Calendar.textShortSeptember":"九月","Common.UI.Calendar.textShortSunday":"周日","Common.UI.Calendar.textShortThursday":"周四","Common.UI.Calendar.textShortTuesday":"周二","Common.UI.Calendar.textShortWednesday":"周三","Common.UI.Calendar.textYears":"年","Common.UI.ComboBorderSize.txtNoBorders":"无边框","Common.UI.ComboBorderSizeEditable.txtNoBorders":"无边框","Common.UI.ComboDataView.emptyComboText":"无样式","Common.UI.ExtendedColorDialog.addButtonText":"添加","Common.UI.ExtendedColorDialog.textCurrent":"当前","Common.UI.ExtendedColorDialog.textHexErr":"输入的值不正确。
请输入000000和FFFFFF之间的值。","Common.UI.ExtendedColorDialog.textNew":"新建","Common.UI.ExtendedColorDialog.textRGBErr":"输入的值不正确。
请输入介于0和255之间的数值。","Common.UI.HSBColorPicker.textNoColor":"没有颜色","Common.UI.InputField.txtEmpty":"这是必填栏","Common.UI.InputFieldBtnCalendar.textDate":"选择日期","Common.UI.InputFieldBtnPassword.textHintHidePwd":"隐藏密码","Common.UI.InputFieldBtnPassword.textHintHold":"按住显示密码","Common.UI.InputFieldBtnPassword.textHintShowPwd":"显示密码","Common.UI.SearchBar.textFind":"查找","Common.UI.SearchBar.tipCloseSearch":"关闭搜索","Common.UI.SearchBar.tipNextResult":"下一个结果","Common.UI.SearchBar.tipOpenAdvancedSettings":"打开高级设置","Common.UI.SearchBar.tipPreviousResult":"上一个结果","Common.UI.SearchDialog.textHighlight":"高亮显示结果","Common.UI.SearchDialog.textMatchCase":"区分大小写","Common.UI.SearchDialog.textReplaceDef":"输入替换文字","Common.UI.SearchDialog.textSearchStart":"在这里输入你的文字","Common.UI.SearchDialog.textTitle":"查找和替换","Common.UI.SearchDialog.textTitle2":"查找","Common.UI.SearchDialog.textWholeWords":"仅限完整单词","Common.UI.SearchDialog.txtBtnHideReplace":"隐藏替换","Common.UI.SearchDialog.txtBtnReplace":"替换","Common.UI.SearchDialog.txtBtnReplaceAll":"全部替换","Common.UI.SynchronizeTip.textDontShow":"不要再显示此消息","Common.UI.SynchronizeTip.textGotIt":"知道了","Common.UI.SynchronizeTip.textNew":"新建","Common.UI.SynchronizeTip.textSynchronize":"文档已被其他用户更改
请单击保存更改并重新加载更新。","Common.UI.ThemeColorPalette.textRecentColors":"最近使用的颜色","Common.UI.ThemeColorPalette.textStandartColors":"标准颜色","Common.UI.ThemeColorPalette.textThemeColors":"主题颜色","Common.UI.ThemeColorPalette.textTransparent":"透明","Common.UI.Themes.txtThemeClassicLight":"经典浅色","Common.UI.Themes.txtThemeContrastDark":"深色对比","Common.UI.Themes.txtThemeDark":"深色","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"浅色","Common.UI.Themes.txtThemeModernDark":"现代深色","Common.UI.Themes.txtThemeModernLight":"现代浅色","Common.UI.Themes.txtThemeSystem":"和系統一致","Common.UI.Themes.txtThemeWhite":"白色","Common.UI.Window.cancelButtonText":"取消","Common.UI.Window.closeButtonText":"关闭","Common.UI.Window.noButtonText":"否","Common.UI.Window.okButtonText":"确定","Common.UI.Window.textConfirmation":"确认","Common.UI.Window.textDontShow":"不要再显示此消息","Common.UI.Window.textError":"错误","Common.UI.Window.textInformation":"信息","Common.UI.Window.textWarning":"警告","Common.UI.Window.yesButtonText":"是","Common.Utils.Metric.txtCm":"厘米","Common.Utils.Metric.txtPt":"磅","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"重点色","Common.Utils.ThemeColor.txtAqua":"湖绿色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黑色","Common.Utils.ThemeColor.txtBlue":"蓝色","Common.Utils.ThemeColor.txtBrightGreen":"明亮绿色","Common.Utils.ThemeColor.txtBrown":"棕色","Common.Utils.ThemeColor.txtDarkBlue":"深蓝色","Common.Utils.ThemeColor.txtDarker":"较深色的","Common.Utils.ThemeColor.txtDarkGray":"深灰色","Common.Utils.ThemeColor.txtDarkGreen":"深绿色","Common.Utils.ThemeColor.txtDarkPurple":"深紫色","Common.Utils.ThemeColor.txtDarkRed":"深红色","Common.Utils.ThemeColor.txtDarkTeal":"深青色","Common.Utils.ThemeColor.txtDarkYellow":"深黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"绿色","Common.Utils.ThemeColor.txtIndigo":"靛蓝色","Common.Utils.ThemeColor.txtLavender":"薰衣草色","Common.Utils.ThemeColor.txtLightBlue":"浅蓝色","Common.Utils.ThemeColor.txtLighter":"较浅色的","Common.Utils.ThemeColor.txtLightGray":"浅灰色","Common.Utils.ThemeColor.txtLightGreen":"浅绿色","Common.Utils.ThemeColor.txtLightOrange":"浅橙色","Common.Utils.ThemeColor.txtLightYellow":"浅黄色","Common.Utils.ThemeColor.txtOrange":"橙色","Common.Utils.ThemeColor.txtPink":"粉红色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"红色","Common.Utils.ThemeColor.txtRose":"玫瑰色","Common.Utils.ThemeColor.txtSkyBlue":"天蓝色","Common.Utils.ThemeColor.txtTeal":"青色","Common.Utils.ThemeColor.txttext":"文字","Common.Utils.ThemeColor.txtTurquosie":"绿松石","Common.Utils.ThemeColor.txtViolet":"紫色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黃色","Common.Views.About.txtAddress":"地址:","Common.Views.About.txtLicensee":"被许可人","Common.Views.About.txtLicensor":"许可商","Common.Views.About.txtMail":"电子邮件:","Common.Views.About.txtPoweredBy":"技术支持方","Common.Views.About.txtTel":"电话:","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.textDoubleSpaces":"添加带双倍空格的句点","Common.Views.AutoCorrectDialog.textFLCells":"单元格第一个字母大写","Common.Views.AutoCorrectDialog.textFLDont":"之后不要大写","Common.Views.AutoCorrectDialog.textFLSentence":"将句子的第一个字母大写","Common.Views.AutoCorrectDialog.textForLangFL":"语言的例外项:","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.textWarnAddFL":"例外项只能包含大小写字母。","Common.Views.AutoCorrectDialog.textWarnAddRec":"可识别函数只能包含字母 A 到 Z,大写或小写。","Common.Views.AutoCorrectDialog.textWarnResetFL":"您添加的任何例外项都将被移除,并且已移除的例外项将被还原。您想要继续吗?","Common.Views.AutoCorrectDialog.textWarnResetRec":"您添加的任何表达式都将被移除,已移除的表达式也将被还原。您想要继续吗?","Common.Views.AutoCorrectDialog.warnReplace":"%1 的自动更正项已存在。您想要替换它吗?","Common.Views.AutoCorrectDialog.warnReset":"您添加的所有自动更正项都将被移除,更改过的内容将被还原为其原始值。您想要继续吗?","Common.Views.AutoCorrectDialog.warnRestore":"%1 的自动更正项将重置为其原始值。您想要继续吗?","Common.Views.Chat.textChat":"聊天","Common.Views.Chat.textClosePanel":"关闭聊天","Common.Views.Chat.textEnterMessage":"在这里输入你的信息","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.mniFilterComments":"显示批注","Common.Views.Comments.mniFilterGroups":"按组筛选","Common.Views.Comments.mniPositionAsc":"从顶部","Common.Views.Comments.mniPositionDesc":"从底部","Common.Views.Comments.textAdd":"添加","Common.Views.Comments.textAddComment":"添加批注","Common.Views.Comments.textAddCommentToDoc":"向文档添加批注","Common.Views.Comments.textAddReply":"添加回复","Common.Views.Comments.textAll":"全部","Common.Views.Comments.textAnonym":"访客","Common.Views.Comments.textCancel":"取消","Common.Views.Comments.textClose":"关闭","Common.Views.Comments.textClosePanel":"关闭批注","Common.Views.Comments.textComment":"批注","Common.Views.Comments.textComments":"批注","Common.Views.Comments.textEdit":"确定","Common.Views.Comments.textEnterCommentHint":"在这里输入您的批注","Common.Views.Comments.textHintAddComment":"添加批注","Common.Views.Comments.textOpen":"未解决","Common.Views.Comments.textOpenAgain":"再次打开","Common.Views.Comments.textReply":"回复","Common.Views.Comments.textResolve":"解决","Common.Views.Comments.textResolved":"已解決","Common.Views.Comments.textSort":"排序批注","Common.Views.Comments.textSortFilter":"排序和过滤批注","Common.Views.Comments.textSortFilterMore":"排序、过滤、以及更多","Common.Views.Comments.textSortMore":"排序以及更多","Common.Views.Comments.textViewResolved":"您无权重新打开批注","Common.Views.Comments.txtEmpty":"文档中没有任何批注。","Common.Views.CopyWarningDialog.textDontShow":"不要再显示此消息","Common.Views.CopyWarningDialog.textMsg":"使用编辑器工具栏按钮和右键快捷菜单进行的复制,剪切和粘贴操作将仅在此编辑器选项卡中执行。

要在编辑器选项卡之外复制或粘贴到应用程序,请使用以下键盘组合:","Common.Views.CopyWarningDialog.textTitle":"复制,剪切和粘贴操作","Common.Views.CopyWarningDialog.textToCopy":"用于复制","Common.Views.CopyWarningDialog.textToCut":"用于剪切","Common.Views.CopyWarningDialog.textToPaste":"用于粘贴","Common.Views.CustomizeQuickAccessDialog.textDownload":"下载","Common.Views.CustomizeQuickAccessDialog.textMsg":"请检查显示在快速访问工具栏上的命令","Common.Views.CustomizeQuickAccessDialog.textPrint":"打印","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"快速打印","Common.Views.CustomizeQuickAccessDialog.textRedo":"重做","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"自定义快速访问","Common.Views.CustomizeQuickAccessDialog.textUndo":"撤销","Common.Views.DocumentAccessDialog.textLoading":"加载中…","Common.Views.DocumentAccessDialog.textTitle":"分享设置","Common.Views.DocumentPropertyDialog.errorDate":"您可以从日历中选择一个值并将其存储为日期。
如果您手动输入一个值,它将被存储为文本。","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"否","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"是","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"属性应该有一个标题","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"标题","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"“是”或“否”","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"日期","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"类型","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"数字","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"提供一个有效的数字","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"文本","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"属性应该有一个值","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"值","Common.Views.DocumentPropertyDialog.txtTitle":"新文档属性","Common.Views.Draw.hintEraser":"橡皮擦","Common.Views.Draw.hintSelect":"选择","Common.Views.Draw.txtEraser":"橡皮擦","Common.Views.Draw.txtHighlighter":"荧光笔","Common.Views.Draw.txtMM":"毫米","Common.Views.Draw.txtPen":"笔","Common.Views.Draw.txtSelect":"选择","Common.Views.Draw.txtSize":"粗细","Common.Views.ExternalDiagramEditor.textTitle":"图表编辑器","Common.Views.ExternalEditor.textClose":"关闭","Common.Views.ExternalEditor.textSave":"保存并退出","Common.Views.ExternalLinksDlg.closeButtonText":"关闭","Common.Views.ExternalLinksDlg.textAutoUpdate":"自动更新来自链接源的数据","Common.Views.ExternalLinksDlg.textChange":"更改来源","Common.Views.ExternalLinksDlg.textDelete":"断开链接","Common.Views.ExternalLinksDlg.textDeleteAll":"断开所有链接","Common.Views.ExternalLinksDlg.textOk":"确定","Common.Views.ExternalLinksDlg.textOpen":"打开源文件","Common.Views.ExternalLinksDlg.textSource":"来源","Common.Views.ExternalLinksDlg.textStatus":"状态","Common.Views.ExternalLinksDlg.textUnknown":"未知","Common.Views.ExternalLinksDlg.textUpdate":"更新值","Common.Views.ExternalLinksDlg.textUpdateAll":"全部更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部链接","Common.Views.ExternalMergeEditor.textTitle":"邮件合并接收人","Common.Views.ExternalOleEditor.textTitle":"电子表格编辑器","Common.Views.FormatSettingsDialog.textCategory":"分类","Common.Views.FormatSettingsDialog.textDecimal":"十进制","Common.Views.FormatSettingsDialog.textFormat":"格式","Common.Views.FormatSettingsDialog.textLinked":"链接到来源","Common.Views.FormatSettingsDialog.textLocale":"区域设置","Common.Views.FormatSettingsDialog.textSeparator":"使用千位隔符","Common.Views.FormatSettingsDialog.textSymbols":"符号","Common.Views.FormatSettingsDialog.textTitle":"数字格式","Common.Views.FormatSettingsDialog.txtAccounting":"统计","Common.Views.FormatSettingsDialog.txtAs10":"十分之五对齐 (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"百分之五十对齐(50/100)","Common.Views.FormatSettingsDialog.txtAs16":"十六分之八对齐 (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"一半对齐(1/2)","Common.Views.FormatSettingsDialog.txtAs4":"四分之二对齐 (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"八分之四对齐 (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"货币","Common.Views.FormatSettingsDialog.txtCustom":"自定义","Common.Views.FormatSettingsDialog.txtCustomWarning":"请仔细输入自定义数字格式。电子表格编辑器不会检查自定义格式中是否存在可能影响xlsx文件的错误。","Common.Views.FormatSettingsDialog.txtDate":"日期","Common.Views.FormatSettingsDialog.txtFraction":"分数","Common.Views.FormatSettingsDialog.txtGeneral":"常规","Common.Views.FormatSettingsDialog.txtNone":"无","Common.Views.FormatSettingsDialog.txtNumber":"数字","Common.Views.FormatSettingsDialog.txtPercentage":"百分比","Common.Views.FormatSettingsDialog.txtSample":"示例:","Common.Views.FormatSettingsDialog.txtScientific":"科学","Common.Views.FormatSettingsDialog.txtText":"文本","Common.Views.FormatSettingsDialog.txtTime":"时间","Common.Views.FormatSettingsDialog.txtUpto1":"最多一位数(1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"最多两位数(12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"最多三位数(131/135)","Common.Views.Header.ariaQuickAccessToolbar":"快速访问工具栏","Common.Views.Header.labelCoUsersDescr":"正在编辑文件的用户:","Common.Views.Header.textAddFavorite":"收藏","Common.Views.Header.textAdvSettings":"高级设置","Common.Views.Header.textBack":"打开文件所在位置","Common.Views.Header.textClose":"关闭文件","Common.Views.Header.textCompactView":"隐藏工具栏","Common.Views.Header.textDocEditDesc":"进行任何更改","Common.Views.Header.textDocViewDesc":"查看文件,但不做任何更改","Common.Views.Header.textDocViewFormDesc":"预览表单填写页面","Common.Views.Header.textDownload":"下载","Common.Views.Header.textEdit":"编辑","Common.Views.Header.textHideLines":"隐藏标尺","Common.Views.Header.textHideStatusBar":"隐藏状态栏","Common.Views.Header.textPrint":"打印","Common.Views.Header.textReadOnly":"只读","Common.Views.Header.textRemoveFavorite":"从收藏夹中删除","Common.Views.Header.textReview":"审阅","Common.Views.Header.textReviewDesc":"提出更改","Common.Views.Header.textShare":"分享","Common.Views.Header.textStartFill":"共享和收集数据","Common.Views.Header.textView":"查看","Common.Views.Header.textViewForm":"预览","Common.Views.Header.textZoom":"縮放","Common.Views.Header.tipAccessRights":"管理文档访问权限","Common.Views.Header.tipCustomizeQuickAccessToolbar":"自定义快速访问工具栏","Common.Views.Header.tipDocEdit":"编辑","Common.Views.Header.tipDocView":"查看","Common.Views.Header.tipDocViewForm":"查看表单","Common.Views.Header.tipDownload":"下载文件","Common.Views.Header.tipFillStatus":"填写状态","Common.Views.Header.tipGoEdit":"编辑当前文件","Common.Views.Header.tipPrint":"打印文件","Common.Views.Header.tipPrintQuick":"快速打印","Common.Views.Header.tipRedo":"重做","Common.Views.Header.tipReview":"审阅","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"搜索","Common.Views.Header.tipUndo":"撤消","Common.Views.Header.tipUsers":"查看用户","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.textHighlightDeleted":"突出显示已删除的内容","Common.Views.History.textMore":"更多","Common.Views.History.textRestore":"恢复","Common.Views.History.textShow":"展开","Common.Views.History.textShowAll":"显示详细的更改","Common.Views.History.textVer":"版本","Common.Views.History.textVersionHistory":"版本历史","Common.Views.ImageFromUrlDialog.textUrl":"粘贴图片URL网址:","Common.Views.ImageFromUrlDialog.txtEmpty":"这是必填栏","Common.Views.ImageFromUrlDialog.txtNotUrl":"该字段应该是“http://www.example.com”格式的URL","Common.Views.InsertTableDialog.textInvalidRowsCols":"您需要指定有效的行数和列数。","Common.Views.InsertTableDialog.txtColumns":"列数","Common.Views.InsertTableDialog.txtMaxText":"该字段的最大值为{0}。","Common.Views.InsertTableDialog.txtMinText":"该字段的最小值为{0}。","Common.Views.InsertTableDialog.txtRows":"行数","Common.Views.InsertTableDialog.txtTitle":"表格大小","Common.Views.InsertTableDialog.txtTitleSplit":"拆分单元格","Common.Views.LanguageDialog.labelSelect":"选择文档语言","Common.Views.MacrosAiDialog.textAreaPlaceholder":"输入查询提示","Common.Views.MacrosAiDialog.textCreate":"创建","Common.Views.MacrosDialog.textAutostart":"自动启动","Common.Views.MacrosDialog.textConvertFromVBA":"从VBA转换","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"从VBA转换宏","Common.Views.MacrosDialog.textCopy":"复制","Common.Views.MacrosDialog.textCreateFromDesc":"根据描述创建","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"根据描述创建宏","Common.Views.MacrosDialog.textCustomFunction":"自定义函数","Common.Views.MacrosDialog.textCustomFunctions":"自定义函数","Common.Views.MacrosDialog.textDebug":"调试","Common.Views.MacrosDialog.textDelete":"删除","Common.Views.MacrosDialog.textFunctions":"函数","Common.Views.MacrosDialog.textLoading":"加载中…","Common.Views.MacrosDialog.textMacro":"宏","Common.Views.MacrosDialog.textMacros":"宏","Common.Views.MacrosDialog.textMakeAutostart":"自启动","Common.Views.MacrosDialog.textRename":"重命名","Common.Views.MacrosDialog.textRun":"运行","Common.Views.MacrosDialog.textSave":"保存","Common.Views.MacrosDialog.textTitle":"宏","Common.Views.MacrosDialog.textUnMakeAutostart":"取消自启动","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"添加自定义函数","Common.Views.MacrosDialog.tipFunctionCopy":"复制自定义函数","Common.Views.MacrosDialog.tipFunctionDelete":"删除自定义函数","Common.Views.MacrosDialog.tipFunctionRename":"重命名自定义函数","Common.Views.MacrosDialog.tipMacrosAdd":"添加宏","Common.Views.MacrosDialog.tipMacrosCopy":"复制宏","Common.Views.MacrosDialog.tipMacrosDebug":"调试宏","Common.Views.MacrosDialog.tipMacrosRename":"重命名宏","Common.Views.MacrosDialog.tipMacrosRun":"运行宏","Common.Views.MacrosDialog.tipRedo":"重做","Common.Views.MacrosDialog.tipUndo":"撤销","Common.Views.OpenDialog.closeButtonText":"关闭文件","Common.Views.OpenDialog.txtEncoding":"编码","Common.Views.OpenDialog.txtIncorrectPwd":"密码不正确。","Common.Views.OpenDialog.txtOpenFile":"输入密码来打开文件","Common.Views.OpenDialog.txtPassword":"密码","Common.Views.OpenDialog.txtPreview":"预览","Common.Views.OpenDialog.txtProtected":"输入密码并打开文件后,将重置文件的当前密码。","Common.Views.OpenDialog.txtTitle":"选择%1选项","Common.Views.OpenDialog.txtTitleProtected":"受保护的文档","Common.Views.PasswordDialog.txtDescription":"设置密码以保护此文档","Common.Views.PasswordDialog.txtIncorrectPwd":"确认密码不相同","Common.Views.PasswordDialog.txtPassword":"密码","Common.Views.PasswordDialog.txtRepeat":"重复密码","Common.Views.PasswordDialog.txtTitle":"设置密码","Common.Views.PasswordDialog.txtWarning":"警告:如果您丢失或忘记了密码,则无法恢复。请把它放在安全的地方。","Common.Views.PluginDlg.textDock":"置顶插件","Common.Views.PluginDlg.textLoading":"载入中","Common.Views.PluginPanel.textClosePanel":"关闭插件","Common.Views.PluginPanel.textHidePanel":"折叠插件","Common.Views.PluginPanel.textLoading":"载入中","Common.Views.PluginPanel.textUndock":"取消置顶插件","Common.Views.Plugins.groupCaption":"插件","Common.Views.Plugins.strPlugins":"插件","Common.Views.Plugins.textBackgroundPlugins":"后台插件","Common.Views.Plugins.textClosePanel":"关闭插件","Common.Views.Plugins.textLoading":"载入中","Common.Views.Plugins.textSettings":"设置","Common.Views.Plugins.textStart":"开始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"后台插件列表","Common.Views.Plugins.tipMore":"更多","Common.Views.Protection.hintAddPwd":"使用密码加密文档","Common.Views.Protection.hintDelPwd":"删除密码","Common.Views.Protection.hintPwd":"更改或删除密码","Common.Views.Protection.hintSignature":"添加数字签名或签名栏","Common.Views.Protection.txtAddPwd":"添加密码","Common.Views.Protection.txtChangePwd":"修改密码","Common.Views.Protection.txtDeletePwd":"删除密码","Common.Views.Protection.txtEncrypt":"加密","Common.Views.Protection.txtInvisibleSignature":"添加数字签名","Common.Views.Protection.txtSignature":"签名","Common.Views.Protection.txtSignatureLine":"添加签名栏","Common.Views.RecentFiles.txtOpenRecent":"打开最近","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.mniMMFromFile":"从文件导入","Common.Views.ReviewChanges.mniMMFromStorage":"来自存储设备","Common.Views.ReviewChanges.mniMMFromUrl":"来自URL","Common.Views.ReviewChanges.mniSettings":"比较设置","Common.Views.ReviewChanges.strFast":"快速","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.tipCombine":"将当前文档与另一个文档合并","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.tipMailRecepients":"邮件合并","Common.Views.ReviewChanges.tipRejectCurrent":"否决当前更改并跳转到下一个更改","Common.Views.ReviewChanges.tipReview":"跟踪更改","Common.Views.ReviewChanges.tipReviewView":"选择要显示更改的模式","Common.Views.ReviewChanges.tipSetDocLang":"设置文档语言","Common.Views.ReviewChanges.tipSetSpelling":"拼写检查","Common.Views.ReviewChanges.tipSharing":"管理文档访问权限","Common.Views.ReviewChanges.txtAccept":"同意","Common.Views.ReviewChanges.txtAcceptAll":"同意所有更改","Common.Views.ReviewChanges.txtAcceptChanges":"同意更改","Common.Views.ReviewChanges.txtAcceptCurrent":"同意当前更改","Common.Views.ReviewChanges.txtChat":"聊天","Common.Views.ReviewChanges.txtClose":"关闭","Common.Views.ReviewChanges.txtCoAuthMode":"共同编辑模式","Common.Views.ReviewChanges.txtCombine":"合并","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.txtMailMerge":"邮件合并","Common.Views.ReviewChanges.txtMarkup":"所有更改 {0}","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":"上一个","Common.Views.ReviewChanges.txtPreview":"预览","Common.Views.ReviewChanges.txtReject":"否决","Common.Views.ReviewChanges.txtRejectAll":"否决所有更改","Common.Views.ReviewChanges.txtRejectChanges":"否决更改","Common.Views.ReviewChanges.txtRejectCurrent":"否决当前更改","Common.Views.ReviewChanges.txtSharing":"分享","Common.Views.ReviewChanges.txtSpelling":"拼写检查","Common.Views.ReviewChanges.txtTurnon":"跟踪更改","Common.Views.ReviewChanges.txtView":"显示模式","Common.Views.ReviewChangesDialog.textTitle":"审查更改","Common.Views.ReviewChangesDialog.txtAccept":"同意","Common.Views.ReviewChangesDialog.txtAcceptAll":"同意所有更改","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"同意当前更改","Common.Views.ReviewChangesDialog.txtNext":"跳转到下一处更改","Common.Views.ReviewChangesDialog.txtPrev":"跳转到上一处更改","Common.Views.ReviewChangesDialog.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.textComment":"批注","Common.Views.ReviewPopover.textEdit":"确定","Common.Views.ReviewPopover.textEnterComment":"在这里输入您的批注","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.ReviewPopover.textViewResolved":"您无权重新打开批注","Common.Views.ReviewPopover.txtAccept":"同意","Common.Views.ReviewPopover.txtDeleteTip":"删除","Common.Views.ReviewPopover.txtEditTip":"编辑","Common.Views.ReviewPopover.txtReject":"否决","Common.Views.SaveAsDlg.textLoading":"载入中","Common.Views.SaveAsDlg.textTitle":"要保存的文件夹","Common.Views.SearchPanel.textCaseSensitive":"区分大小写","Common.Views.SearchPanel.textCloseSearch":"关闭搜索","Common.Views.SearchPanel.textContentChanged":"文件已更改。","Common.Views.SearchPanel.textFind":"查找","Common.Views.SearchPanel.textFindAndReplace":"查找和替换","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}个项目已成功替换。","Common.Views.SearchPanel.textMatchUsingRegExp":"使用正则表达式匹配","Common.Views.SearchPanel.textNoMatches":"找不到匹配信息","Common.Views.SearchPanel.textNoSearchResults":"没有搜索结果","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"已替换{0}/{1}项。其余{2}个项目已被其他用户锁定。","Common.Views.SearchPanel.textReplace":"替换","Common.Views.SearchPanel.textReplaceAll":"全部替换","Common.Views.SearchPanel.textReplaceWith":"替换为","Common.Views.SearchPanel.textSearchAgain":"{0}执行新的搜索{1}以获得准确的结果。","Common.Views.SearchPanel.textSearchHasStopped":"搜索已停止","Common.Views.SearchPanel.textSearchResults":"搜索结果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"搜索结果","Common.Views.SearchPanel.textTooManyResults":"此处显示的结果太多","Common.Views.SearchPanel.textWholeWords":"仅限完整单词","Common.Views.SearchPanel.tipNextResult":"下一个结果","Common.Views.SearchPanel.tipPreviousResult":"上一个结果","Common.Views.SelectFileDlg.textLoading":"载入中","Common.Views.SelectFileDlg.textTitle":"选择数据源","Common.Views.ShapeShadowDialog.txtAngle":"角度","Common.Views.ShapeShadowDialog.txtDistance":"距离","Common.Views.ShapeShadowDialog.txtSize":"大小","Common.Views.ShapeShadowDialog.txtTitle":"调整阴影","Common.Views.ShapeShadowDialog.txtTransparency":"透明度","Common.Views.ShortcutsDialog.txtDescription":"描述","Common.Views.ShortcutsDialog.txtEmpty":"未找到匹配项,请调整搜索条件。","Common.Views.ShortcutsDialog.txtRestoreAll":"将所有设置恢复为默认值","Common.Views.ShortcutsDialog.txtRestoreContinue":"您确定要继续操作吗?","Common.Views.ShortcutsDialog.txtRestoreDescription":"所有快捷键设置将恢复为默认值。","Common.Views.ShortcutsDialog.txtRestoreToDefault":"恢复为默认","Common.Views.ShortcutsDialog.txtSearch":"搜索","Common.Views.ShortcutsDialog.txtTitle":"键盘快捷键","Common.Views.ShortcutsEditDialog.txtAction":"操作","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"无法编辑此快捷方式","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"输入所需快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"%1操作使用的快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"%1操作使用的快捷键,无法更改","Common.Views.ShortcutsEditDialog.txtInputWarnOne":" %1操作使用的快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"%1操作使用的快捷键,无法更改","Common.Views.ShortcutsEditDialog.txtNewShortcut":"新建快捷键","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"您确定要继续操作吗?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"“%1”操作的所有快捷键将恢复为默认值。","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"恢复为默认","Common.Views.ShortcutsEditDialog.txtTitle":"编辑快捷键","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"输入所需快捷键","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":"选择图像","Common.Views.SignDialog.textSignature":"签名外观如下","Common.Views.SignDialog.textTitle":"签署文件","Common.Views.SignDialog.textUseImage":"或单击“选择图像”,使用图片作为签名","Common.Views.SignDialog.textValid":"從%1到%2有效","Common.Views.SignDialog.tipFontName":"字体名称","Common.Views.SignDialog.tipFontSize":"字体大小","Common.Views.SignSettingsDialog.textAllowComment":"允许签名者在签名对话框中添加批注","Common.Views.SignSettingsDialog.textDefInstruction":"在签署此文档之前,请验证您正在签署的内容是否正确。","Common.Views.SignSettingsDialog.textInfoEmail":"建议签署人的电子邮件","Common.Views.SignSettingsDialog.textInfoName":"建议签署人","Common.Views.SignSettingsDialog.textInfoTitle":"建议签署人称谓","Common.Views.SignSettingsDialog.textInstructions":"签名人须知","Common.Views.SignSettingsDialog.textShowDate":"在签名行中显示签名日期","Common.Views.SignSettingsDialog.textTitle":"签名设置","Common.Views.SignSettingsDialog.txtEmpty":"这是必填栏","Common.Views.SymbolTableDialog.textCharacter":"字符","Common.Views.SymbolTableDialog.textCode":"Unicode十六进制值","Common.Views.SymbolTableDialog.textCopyright":"版权符号","Common.Views.SymbolTableDialog.textDCQuote":"结束双引号","Common.Views.SymbolTableDialog.textDOQuote":"开头双引号","Common.Views.SymbolTableDialog.textEllipsis":"水平省略号","Common.Views.SymbolTableDialog.textEmDash":"破折号","Common.Views.SymbolTableDialog.textEmSpace":"空格","Common.Views.SymbolTableDialog.textEnDash":"虚线","Common.Views.SymbolTableDialog.textEnSpace":"半形空格","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":"标签不能为空。","DE.Controllers.DocProtection.txtIsProtectedComment":"文档受到保护。您只能在此文档中插入批注。","DE.Controllers.DocProtection.txtIsProtectedForms":"文档受到保护。您只能填写此文档中的表单。","DE.Controllers.DocProtection.txtIsProtectedTrack":"文档受到保护。您可以编辑此文档,但所有更改都将被跟踪。","DE.Controllers.DocProtection.txtIsProtectedView":"文档受到保护。您只能查看此文档。","DE.Controllers.DocProtection.txtWasProtectedComment":"文档已被另一个用户保护。\n您只能在此文档中插入批注。","DE.Controllers.DocProtection.txtWasProtectedForms":"文档已被另一个用户保护。\n您只能填写此文档中的表单。","DE.Controllers.DocProtection.txtWasProtectedTrack":"文档已被另一个用户保护。\n您可以编辑此文档,但所有更改都将被跟踪。","DE.Controllers.DocProtection.txtWasProtectedView":"文档已被另一个用户保护。\n您只能查看此文档。","DE.Controllers.DocProtection.txtWasUnprotected":"文件已解除保護。","DE.Controllers.HeaderFooterTab.textFieldExample":"代码编写示例:TIME \\@ \"dddd, MMMM d, yyyy\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"域代码","DE.Controllers.HeaderFooterTab.textFieldTitle":"字段","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"页面编号","DE.Controllers.LeftMenu.leavePageText":"此文档中所有未保存的更改都将丢失
单击“取消”,然后单击“保存”以保存它们。单击“确定”放弃所有未保存的更改。","DE.Controllers.LeftMenu.newDocumentTitle":"未命名的文档","DE.Controllers.LeftMenu.notcriticalErrorTitle":"警告","DE.Controllers.LeftMenu.requestEditRightsText":"正在请求编辑权限...","DE.Controllers.LeftMenu.textLoadHistory":"正在加载版本历史记录...","DE.Controllers.LeftMenu.textNoTextFound":"无法找到您搜索的数据,请调整您的搜索选项。","DE.Controllers.LeftMenu.textReplaceSkipped":"替换已完成。 {0}处跳过。","DE.Controllers.LeftMenu.textReplaceSuccess":"已完成搜索。已替换的次数:{0}。","DE.Controllers.LeftMenu.textSelectPath":"输入保存文件副本的路径","DE.Controllers.LeftMenu.txtCompatible":"文档将保存为新格式。它将允许使用所有编辑器功能,但可能会影响文档布局
如果要使文件与旧的MS Word版本兼容,请使用高级设置的“兼容性”选项。","DE.Controllers.LeftMenu.txtUntitled":"无标题","DE.Controllers.LeftMenu.warnDownloadAs":"如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"您的{0}将被转换为可编辑格式。这可能需要一段时间。生成的文档将进行优化以允许您编辑文本,因此它可能与原始{0}不完全相同,尤其是在原始文件包含大量图形的情况下。","DE.Controllers.LeftMenu.warnDownloadAsRTF":"如果您继续以此格式保存,一些格式可能会丢失。
您确定要继续吗?","DE.Controllers.LeftMenu.warnReplaceString":"{0}不是替换字段的有效特殊字符。","DE.Controllers.Main.applyChangesTextText":"加载更改...","DE.Controllers.Main.applyChangesTitleText":"加载更改","DE.Controllers.Main.confirmMaxChangesSize":"您执行的操作超过了为服务器设置的大小限制
按“撤消”取消上次操作,或按“继续”在本地机器继续操作(您需要下载文件或复制其内容以确保不会丢失任何内容)。","DE.Controllers.Main.convertationTimeoutText":"转换超时","DE.Controllers.Main.criticalErrorExtText":"按“确定”返回文档列表。","DE.Controllers.Main.criticalErrorExtTextClose":"点击“确定”关闭编辑器。","DE.Controllers.Main.criticalErrorTitle":"错误","DE.Controllers.Main.downloadErrorText":"下载失败","DE.Controllers.Main.downloadMergeText":"下载中…","DE.Controllers.Main.downloadMergeTitle":"下载中","DE.Controllers.Main.downloadTextText":"正在下载文件...","DE.Controllers.Main.downloadTitleText":"正在下载文件","DE.Controllers.Main.errorAccessDeny":"您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员.","DE.Controllers.Main.errorBadImageUrl":"图片URL地址不正确","DE.Controllers.Main.errorCannotPasteImg":"我们无法从剪贴板粘贴此图像,但您可以将其保存到您的设备,然后\n从那里插入此此图片,或者您可以复制图像(不带文本)并将其粘贴到文档中。","DE.Controllers.Main.errorCoAuthoringDisconnect":"服务器连接失败。该文档现在无法编辑","DE.Controllers.Main.errorComboSeries":"若要创建组合图表,请至少选择两个系列的数据。","DE.Controllers.Main.errorCompare":"“比较文档”功能在共同编辑时不可用。","DE.Controllers.Main.errorConnectToServer":"这份文件无法保存。请检查连接设置或联系您的管理员。
当你点击“OK”按钮,系统将提示您下载文档。","DE.Controllers.Main.errorCopyDisabled":"出于安全原因,无法复制本文档中的内容。","DE.Controllers.Main.errorDatabaseConnection":"外部错误。
数据库连接错误。如果错误仍然存​​在,请联系支持人员。","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.errorEditProtectedRange":"此选区已受保护,无法编辑。","DE.Controllers.Main.errorEmailClient":"找不到电子邮件客户端。","DE.Controllers.Main.errorEmptyTOC":"将样式库中的标题样式应用到所选文件上","DE.Controllers.Main.errorFilePassProtect":"该文档受密码保护,无法被打开。","DE.Controllers.Main.errorFileSizeExceed":"文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。","DE.Controllers.Main.errorForceSave":"保存文件时出错。请使用“下载为”选项将文件保存到驱动器,或稍后再试。","DE.Controllers.Main.errorInconsistentExt":"打开文件时出错
文件内容与文件扩展名不匹配。","DE.Controllers.Main.errorInconsistentExtDocx":"打开文件时出错
文件内容对应于文本文档(例如docx),但文件的扩展名不一致:%1。","DE.Controllers.Main.errorInconsistentExtPdf":"打开文件时出错
文件内容对应于以下格式之一:pdf/djvu/xps/oxfs,但文件的扩展名不一致:%1。","DE.Controllers.Main.errorInconsistentExtPptx":"打开文件时出错
文件内容对应于演示文稿(例如pptx),但文件的扩展名不一致:%1。","DE.Controllers.Main.errorInconsistentExtXlsx":"打开文件时出错
文件内容对应于电子表格(例如xlsx),但文件的扩展名不一致:%1。","DE.Controllers.Main.errorKeyEncrypt":"未知密钥描述符","DE.Controllers.Main.errorKeyExpire":"密钥描述符已过期","DE.Controllers.Main.errorLoadingFont":"字体未加载
请与您的文档服务器管理员联系。","DE.Controllers.Main.errorMailMergeLoadFile":"加载文档失败。请选择其他文件。","DE.Controllers.Main.errorMailMergeSaveFile":"合并失败","DE.Controllers.Main.errorNoTOC":"没有要更新的目录。可以从“参考”选项卡插入一个。","DE.Controllers.Main.errorPasswordIsNotCorrect":"您提供的密码不正确
验证CAPS LOCK键是否关闭,并确保使用正确的大写字母。","DE.Controllers.Main.errorSaveWatermark":"该文件包含来自其他域名的水印图片。
要在 PDF 中显示水印,请将图片链接更新为与文档相同的域名,或从电脑上传图片。","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.errorTextFormWrongFormat":"输入的值与字段的格式不匹配。","DE.Controllers.Main.errorToken":"文档安全令牌的格式不正确
请与您的文档服务器管理员联系。","DE.Controllers.Main.errorTokenExpire":"文档安全令牌已过期。
请与您的文档服务器管理员联系。","DE.Controllers.Main.errorUpdateVersion":"\n该文件版本已经改变了。该页面将被重新加载。","DE.Controllers.Main.errorUpdateVersionOnDisconnect":"网络连接已恢复,文件版本已更改
在继续工作之前,您需要下载文件或复制其内容以确保不会丢失任何内容,然后重新加载此页面。","DE.Controllers.Main.errorUserDrop":"该文件现在无法访问。","DE.Controllers.Main.errorUsersExceed":"超出原服务计划可允许的帐户数量","DE.Controllers.Main.errorViewerDisconnect":"连接失败。您仍然可以查看文档
,但在连接恢复之前无法下载或打印。","DE.Controllers.Main.leavePageText":"您在本文档中有未保存的更改。点击“留在这个页面”,然后点击“保存”保存。点击“离开此页面”,放弃所有未保存的更改。","DE.Controllers.Main.leavePageTextOnClose":"此文档中所有未保存的更改都将丢失
单击“取消”,然后单击“保存”以保存它们。单击“确定”放弃所有未保存的更改。","DE.Controllers.Main.loadFontsTextText":"数据加载中…","DE.Controllers.Main.loadFontsTitleText":"数据加载中","DE.Controllers.Main.loadFontTextText":"数据加载中…","DE.Controllers.Main.loadFontTitleText":"数据加载中","DE.Controllers.Main.loadImagesTextText":"图片加载中…","DE.Controllers.Main.loadImagesTitleText":"图片加载中","DE.Controllers.Main.loadImageTextText":"图片加载中…","DE.Controllers.Main.loadImageTitleText":"图片加载中","DE.Controllers.Main.loadingDocumentTextText":"文件加载中…","DE.Controllers.Main.loadingDocumentTitleText":"文件加载中…","DE.Controllers.Main.mailMergeLoadFileText":"正在加载数据源...","DE.Controllers.Main.mailMergeLoadFileTitle":"正在加载数据源","DE.Controllers.Main.notcriticalErrorTitle":"警告","DE.Controllers.Main.openErrorText":"打开文件时发生错误","DE.Controllers.Main.openTextText":"正在打开文档...","DE.Controllers.Main.openTitleText":"正在打开文件","DE.Controllers.Main.printTextText":"正在打印文件","DE.Controllers.Main.printTitleText":"正在打印文件","DE.Controllers.Main.reloadButtonText":"重新加载页面","DE.Controllers.Main.requestEditFailedMessageText":"有人正在编辑此文档。请稍后再试。","DE.Controllers.Main.requestEditFailedTitleText":"访问被拒绝","DE.Controllers.Main.saveErrorText":"保存文件时发生错误","DE.Controllers.Main.saveErrorTextDesktop":"无法保存或创建此文件
可能的原因有:
1.该文件是只读的
2.其他用户正在编辑该文件
3.磁盘已满或已损坏。","DE.Controllers.Main.saveTextText":"正在保存文档...","DE.Controllers.Main.saveTitleText":"正在保存文件","DE.Controllers.Main.savingText":"提交中","DE.Controllers.Main.scriptLoadError":"连接速度过慢,部分组件无法被加载。请重新加载页面。","DE.Controllers.Main.sendMergeText":"发送合并中...","DE.Controllers.Main.sendMergeTitle":"发送合并","DE.Controllers.Main.splitDividerErrorText":"行数必须为%1的除数。","DE.Controllers.Main.splitMaxColsErrorText":"列数必须小于%1。","DE.Controllers.Main.splitMaxRowsErrorText":"行数必须小于%1。","DE.Controllers.Main.textAnonymous":"匿名用户","DE.Controllers.Main.textAnyone":"任何人","DE.Controllers.Main.textApplyAll":"应用于所有公式","DE.Controllers.Main.textBuyNow":"瀏覽網站","DE.Controllers.Main.textChangesSaved":"所有更改已保存","DE.Controllers.Main.textClose":"关闭","DE.Controllers.Main.textCloseTip":"点击关闭提示","DE.Controllers.Main.textConnectionLost":"正在尝试连接。请检查连接设置。","DE.Controllers.Main.textContactUs":"联系销售人员","DE.Controllers.Main.textContinue":"继续","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":"已达到许可证最大连接数限制","DE.Controllers.Main.textPaidFeature":"付费功能","DE.Controllers.Main.textReconnect":"连接已恢复","DE.Controllers.Main.textRemember":"记住我对所有文件的选择","DE.Controllers.Main.textRememberMacros":"记住我的选择并应用到全部宏","DE.Controllers.Main.textRenameError":"用户名不能为空。","DE.Controllers.Main.textRenameLabel":"输入用于协作的名称","DE.Controllers.Main.textRequestMacros":"一个宏向 URL 发出请求。您想要允许向 %1 发出请求吗?","DE.Controllers.Main.textShape":"形状","DE.Controllers.Main.textSignature":"签名","DE.Controllers.Main.textStrict":"严格模式","DE.Controllers.Main.textText":"文字","DE.Controllers.Main.textTryQuickPrint":"您已选择“快速打印”:整个文档将被打印到最近选择的打印机或者默认打印机。
您想要继续吗?","DE.Controllers.Main.textTryUndoRedo":"对于快速的协同编辑模式,取消/重做功能是禁用的。< br >单击“严格模式”按钮切换到严格co-editing模式编辑该文件没有其他用户干扰和发送您的更改只后你拯救他们。您可以使用编辑器高级设置在编辑模式之间切换。","DE.Controllers.Main.textTryUndoRedoWarn":"快速共同编辑模式下,撤销/重做功能被禁用。","DE.Controllers.Main.textUndo":"撤消","DE.Controllers.Main.textUpdateVersion":"现在无法编辑该文档。
正在尝试更新文件,请稍候...","DE.Controllers.Main.textUpdating":"更新中","DE.Controllers.Main.tipLicenseExceeded":"已达到许可证允许的最大同时连接数,因此文档以只读模式打开。

如需编辑权限,请稍后重试,或者联系文档所有者。","DE.Controllers.Main.tipLicenseUsersExceeded":"已达到许可证允许编辑文档的最大用户数量,因此该文档以只读模式打开。

如果您需要编辑权限,请稍后重试或联系文档所有者。","DE.Controllers.Main.titleLicenseExp":"许可证过期","DE.Controllers.Main.titleLicenseNotActive":"授权证书未激活","DE.Controllers.Main.titleReadOnly":"只读模式","DE.Controllers.Main.titleServerVersion":"编辑器已更新","DE.Controllers.Main.titleUpdateVersion":"版本已更改","DE.Controllers.Main.txtAbove":"上方","DE.Controllers.Main.txtArt":"在这输入文字","DE.Controllers.Main.txtBasicShapes":"基本形状","DE.Controllers.Main.txtBelow":"下面","DE.Controllers.Main.txtBookmarkError":"错误!书签未定义。","DE.Controllers.Main.txtButtons":"按钮","DE.Controllers.Main.txtCallouts":"标注","DE.Controllers.Main.txtCharts":"图表","DE.Controllers.Main.txtChoose":"选择一项","DE.Controllers.Main.txtClickToLoad":"单击以加载图像","DE.Controllers.Main.txtCurrentDocument":"当前文件","DE.Controllers.Main.txtDiagramTitle":"图表标题","DE.Controllers.Main.txtEditingMode":"设置编辑模式..","DE.Controllers.Main.txtEndOfFormula":"公式意外结束","DE.Controllers.Main.txtEnterDate":"输入日期","DE.Controllers.Main.txtErrorLoadHistory":"历史加载失败","DE.Controllers.Main.txtEvenPage":"偶数页","DE.Controllers.Main.txtFiguredArrows":"图形箭头","DE.Controllers.Main.txtFirstPage":"首页","DE.Controllers.Main.txtFooter":"页脚","DE.Controllers.Main.txtFormulaNotInTable":"公式不在表格中","DE.Controllers.Main.txtHeader":"页眉","DE.Controllers.Main.txtHyperlink":"链接","DE.Controllers.Main.txtIndTooLarge":"索引太大","DE.Controllers.Main.txtLines":"行","DE.Controllers.Main.txtMainDocOnly":"错误!仅限主文档。","DE.Controllers.Main.txtMath":"数学","DE.Controllers.Main.txtMissArg":"缺少参数","DE.Controllers.Main.txtMissOperator":"缺少运算符","DE.Controllers.Main.txtNeedSynchronize":"您有更新","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.txtSameAsPrev":"与上一个相同","DE.Controllers.Main.txtSaveCopyAsComplete":"已成功保存文件副本","DE.Controllers.Main.txtScheme_Aspect":"切面","DE.Controllers.Main.txtScheme_Blue":"蓝色","DE.Controllers.Main.txtScheme_Blue_Green":"蓝绿色","DE.Controllers.Main.txtScheme_Blue_II":"蓝色2","DE.Controllers.Main.txtScheme_Blue_Warm":"暖蓝色","DE.Controllers.Main.txtScheme_Grayscale":"灰度","DE.Controllers.Main.txtScheme_Green":"绿色","DE.Controllers.Main.txtScheme_Green_Yellow":"黄绿色","DE.Controllers.Main.txtScheme_Marquee":"选框","DE.Controllers.Main.txtScheme_Median":"中位数","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"橙色","DE.Controllers.Main.txtScheme_Orange_Red":"橙红色","DE.Controllers.Main.txtScheme_Paper":"纸张","DE.Controllers.Main.txtScheme_Red":"红色","DE.Controllers.Main.txtScheme_Red_Orange":"红橙色","DE.Controllers.Main.txtScheme_Red_Violet":"红紫色","DE.Controllers.Main.txtScheme_Slipstream":"实时流处理引擎Slipstream","DE.Controllers.Main.txtScheme_Violet":"紫色","DE.Controllers.Main.txtScheme_Violet_II":"紫色2","DE.Controllers.Main.txtScheme_Yellow":"黄色","DE.Controllers.Main.txtScheme_Yellow_Orange":"黄橙色","DE.Controllers.Main.txtSection":"-部分","DE.Controllers.Main.txtSeries":"序列","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_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":"V形","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":"角","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":"十二边形","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":"半框","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":"爆炸效果1","DE.Controllers.Main.txtShape_irregularSeal2":"爆炸效果2","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_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_Book_Title":"书名","DE.Controllers.Main.txtStyle_Caption":"标题","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"默认段落字体","DE.Controllers.Main.txtStyle_Emphasis":"强调","DE.Controllers.Main.txtStyle_endnote_reference":"尾注引用","DE.Controllers.Main.txtStyle_endnote_text":"尾注文本","DE.Controllers.Main.txtStyle_footnote_reference":"脚注引用","DE.Controllers.Main.txtStyle_footnote_text":"脚注文本","DE.Controllers.Main.txtStyle_Heading_1":"标题 1","DE.Controllers.Main.txtStyle_Heading_2":"标题 2","DE.Controllers.Main.txtStyle_Heading_3":"标题 3","DE.Controllers.Main.txtStyle_Heading_4":"标题 4","DE.Controllers.Main.txtStyle_Heading_5":"标题 5","DE.Controllers.Main.txtStyle_Heading_6":"标题 6","DE.Controllers.Main.txtStyle_Heading_7":"标题 7","DE.Controllers.Main.txtStyle_Heading_8":"标题 8","DE.Controllers.Main.txtStyle_Heading_9":"标题 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"明显强调","DE.Controllers.Main.txtStyle_Intense_Quote":"强调引用","DE.Controllers.Main.txtStyle_Intense_Reference":"强烈引用","DE.Controllers.Main.txtStyle_List_Paragraph":"段落列表","DE.Controllers.Main.txtStyle_No_List":"无列表","DE.Controllers.Main.txtStyle_No_Spacing":"无间距","DE.Controllers.Main.txtStyle_Normal":"正文","DE.Controllers.Main.txtStyle_Quote":"引用","DE.Controllers.Main.txtStyle_Strong":"强","DE.Controllers.Main.txtStyle_Subtitle":"副标题","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"轻微强调","DE.Controllers.Main.txtStyle_Subtle_Reference":"轻微引用","DE.Controllers.Main.txtStyle_Title":"标题","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":"在此处键入方程式。","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.updateChartText":"更新图表数据中...","DE.Controllers.Main.uploadDocExtMessage":"未知的文件格式。","DE.Controllers.Main.uploadDocFileCountMessage":"未上传任何文档。","DE.Controllers.Main.uploadDocSizeMessage":"超出最大文件大小限制。","DE.Controllers.Main.uploadImageExtMessage":"未知图像格式。","DE.Controllers.Main.uploadImageFileCountMessage":"没有上传图片","DE.Controllers.Main.uploadImageSizeMessage":"图像太大。最大大小为25 MB。","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.warnLicenseAnonymous":"匿名用户的访问被拒绝
此文档将仅打开以供查看。","DE.Controllers.Main.warnLicenseBefore":"许可证未激活
请与管理员联系。","DE.Controllers.Main.warnLicenseExp":"您的许可证已过期。
请更新您的许可证并刷新页面。","DE.Controllers.Main.warnLicenseLimitedNoAccess":"许可证已过期。
您现在不能使用文档编辑功能。
请联系您的管理员。","DE.Controllers.Main.warnLicenseLimitedRenewed":"许可证需要更新。
您现在只能使用受限的文档编辑功能。
请联系管理员以获取完整权限","DE.Controllers.Main.warnNoLicense":"您已达到同时连接到%1编辑器的限制。此文档将仅打开以供查看
有关个人升级条款,请与%1销售团队联系。","DE.Controllers.Main.warnNoLicenseUsers":"您已达到%1编辑器的用户限制。有关个人升级条款,请与%1销售团队联系。","DE.Controllers.Main.warnProcessRightsChange":"您被拒绝了编辑文件的权限。","DE.Controllers.Main.warnStartFilling":"表单正在填写中。
当前尚不能够编辑文件。","DE.Controllers.Navigation.txtBeginning":"文件开头","DE.Controllers.Navigation.txtGotoBeginning":"转到文档的开头","DE.Controllers.Print.textMarginsLast":"最后一次自定义","DE.Controllers.Print.txtCustom":"自定义","DE.Controllers.Print.txtPrintRangeInvalid":"无效的打印范围","DE.Controllers.Search.notcriticalErrorTitle":"警告","DE.Controllers.Search.textNoTextFound":"无法找到您搜索的数据,请调整您的搜索选项。","DE.Controllers.Search.textReplaceSkipped":"替换已完成。 {0}处跳过。","DE.Controllers.Search.textReplaceSuccess":"搜索已完成。已替换{0}处","DE.Controllers.Search.warnReplaceString":"{0}不是“替换为”输入框要求的有效特殊字符。","DE.Controllers.Statusbar.textDisconnect":"连接失败
正在尝试连接。请检查连接设置。","DE.Controllers.Statusbar.textHasChanges":"已经跟踪了新的变化","DE.Controllers.Statusbar.textSetTrackChanges":"您处于“跟踪更改”模式","DE.Controllers.Statusbar.textTrackChanges":"打开文档,并启用“跟踪更改”模式","DE.Controllers.Statusbar.tipReview":"跟踪更改","DE.Controllers.Statusbar.zoomText":"縮放{0}%","DE.Controllers.Toolbar.confirmAddFontName":"您想要保存的字体在当前设备上不可用。
文本的样式将使用系统字体中的一种进行显示,保存的字体将在可用时被调用。
您想要继续吗?","DE.Controllers.Toolbar.dataUrl":"粘贴数据URL","DE.Controllers.Toolbar.errorAccessDeny":"您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员。","DE.Controllers.Toolbar.fileUrl":"粘贴文件URL","DE.Controllers.Toolbar.helpChartElements":"轻松切换图表元素显示。","DE.Controllers.Toolbar.helpChartElementsHeader":"显示图表元素","DE.Controllers.Toolbar.helpCommentFilter":"左侧面板切换批注状态。","DE.Controllers.Toolbar.helpCommentFilterHeader":"批注筛选","DE.Controllers.Toolbar.notcriticalErrorTitle":"警告","DE.Controllers.Toolbar.textAccent":"重点","DE.Controllers.Toolbar.textBracket":"括号","DE.Controllers.Toolbar.textConvertFormDownload":"将文件下载为可填写的PDF表单以便填写。","DE.Controllers.Toolbar.textConvertFormSave":"将文件另存为可填写的PDF表单以便填写。","DE.Controllers.Toolbar.textDownloadPdf":"下载 PDF","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":"大型运算符","DE.Controllers.Toolbar.textLimitAndLog":"极限和对数","DE.Controllers.Toolbar.textMatrix":"矩阵","DE.Controllers.Toolbar.textOperator":"运算符","DE.Controllers.Toolbar.textRadical":"根号","DE.Controllers.Toolbar.textRecentlyUsed":"最近使用的","DE.Controllers.Toolbar.textSavePdf":"另存为PDF","DE.Controllers.Toolbar.textScript":"脚本","DE.Controllers.Toolbar.textSymbols":"符号","DE.Controllers.Toolbar.textTabForms":"表单","DE.Controllers.Toolbar.textWarning":"警告","DE.Controllers.Toolbar.txtAccent_Accent":"急性","DE.Controllers.Toolbar.txtAccent_ArrowD":"上方的左右箭头","DE.Controllers.Toolbar.txtAccent_ArrowL":"上方左箭头","DE.Controllers.Toolbar.txtAccent_ArrowR":"上方向右箭头","DE.Controllers.Toolbar.txtAccent_Bar":"条","DE.Controllers.Toolbar.txtAccent_BarBot":"下划线","DE.Controllers.Toolbar.txtAccent_BarTop":"上划线","DE.Controllers.Toolbar.txtAccent_BorderBox":"带方框的公式(包含占位符)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"带框公式(示例)","DE.Controllers.Toolbar.txtAccent_Check":"检查","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"底括号","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"大括号","DE.Controllers.Toolbar.txtAccent_Custom_1":"向量A","DE.Controllers.Toolbar.txtAccent_Custom_2":"带有上划线的ABC","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y帶有上橫線","DE.Controllers.Toolbar.txtAccent_DDDot":"三个点","DE.Controllers.Toolbar.txtAccent_DDot":"双点","DE.Controllers.Toolbar.txtAccent_Dot":"点","DE.Controllers.Toolbar.txtAccent_DoubleBar":"双重横杠","DE.Controllers.Toolbar.txtAccent_Grave":"严重","DE.Controllers.Toolbar.txtAccent_GroupBot":"下面的分组字符","DE.Controllers.Toolbar.txtAccent_GroupTop":"上面的分组字符","DE.Controllers.Toolbar.txtAccent_HarpoonL":"上方的向左鱼叉","DE.Controllers.Toolbar.txtAccent_HarpoonR":"上方的向右鱼叉","DE.Controllers.Toolbar.txtAccent_Hat":"帽子","DE.Controllers.Toolbar.txtAccent_Smile":"短音符","DE.Controllers.Toolbar.txtAccent_Tilde":"波浪号","DE.Controllers.Toolbar.txtBracket_Angle":"尖括号","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"带分隔符的尖括号","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"带两个分隔符的尖括号","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"直角括号","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"左尖括号","DE.Controllers.Toolbar.txtBracket_Curve":"花括号","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"带分隔符的花括号","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"右大括号","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"左大括号","DE.Controllers.Toolbar.txtBracket_Custom_1":"案例(两种情况)","DE.Controllers.Toolbar.txtBracket_Custom_2":"案例(三种情况)","DE.Controllers.Toolbar.txtBracket_Custom_3":"堆栈对象","DE.Controllers.Toolbar.txtBracket_Custom_4":"括号中的堆栈对象","DE.Controllers.Toolbar.txtBracket_Custom_5":"案例示例","DE.Controllers.Toolbar.txtBracket_Custom_6":"二项式系数","DE.Controllers.Toolbar.txtBracket_Custom_7":"尖括号中的二项式系数","DE.Controllers.Toolbar.txtBracket_Line":"豎線","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"右竖线","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"左侧竖条","DE.Controllers.Toolbar.txtBracket_LineDouble":"双竖条","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"右侧双竖条","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"左双竖条","DE.Controllers.Toolbar.txtBracket_LowLim":"地板","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"右地板","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"左地板","DE.Controllers.Toolbar.txtBracket_Round":"圆括号","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"带分隔符的括号","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"右括号","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"左括号","DE.Controllers.Toolbar.txtBracket_Square":"方括号","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"两个右方括号之间的占位符","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"倒置方括号","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"右侧方括号","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"左方括号","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"两个左方括号之间的占位符","DE.Controllers.Toolbar.txtBracket_SquareDouble":"双方括号","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"右侧双方括号","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"左双方括号","DE.Controllers.Toolbar.txtBracket_UppLim":"天花板","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"右天花板","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"左天花板","DE.Controllers.Toolbar.txtDownload":"下载","DE.Controllers.Toolbar.txtFractionDiagonal":"倾斜分数","DE.Controllers.Toolbar.txtFractionDifferential_1":"dx 除以 dy","DE.Controllers.Toolbar.txtFractionDifferential_2":"Δy 除以 Δx","DE.Controllers.Toolbar.txtFractionDifferential_3":"偏微分 y 对偏微分 x","DE.Controllers.Toolbar.txtFractionDifferential_4":"Δx 除以 Δy","DE.Controllers.Toolbar.txtFractionHorizontal":"线性分数","DE.Controllers.Toolbar.txtFractionPi_2":"Pi/2","DE.Controllers.Toolbar.txtFractionSmall":"小分数","DE.Controllers.Toolbar.txtFractionVertical":"堆积分数","DE.Controllers.Toolbar.txtFunction_1_Cos":"反余弦函数","DE.Controllers.Toolbar.txtFunction_1_Cosh":"双曲反余弦函数","DE.Controllers.Toolbar.txtFunction_1_Cot":"反正切函數","DE.Controllers.Toolbar.txtFunction_1_Coth":"双曲反余切函数","DE.Controllers.Toolbar.txtFunction_1_Csc":"反余割函数","DE.Controllers.Toolbar.txtFunction_1_Csch":"双曲反余割函数","DE.Controllers.Toolbar.txtFunction_1_Sec":"反正割函数","DE.Controllers.Toolbar.txtFunction_1_Sech":"双曲反割线函数","DE.Controllers.Toolbar.txtFunction_1_Sin":"反正弦函数","DE.Controllers.Toolbar.txtFunction_1_Sinh":"双曲反正弦函数","DE.Controllers.Toolbar.txtFunction_1_Tan":"反正切函数","DE.Controllers.Toolbar.txtFunction_1_Tanh":"双曲反正切函数","DE.Controllers.Toolbar.txtFunction_Cos":"余弦函数","DE.Controllers.Toolbar.txtFunction_Cosh":"双曲余弦函数","DE.Controllers.Toolbar.txtFunction_Cot":"余切函數","DE.Controllers.Toolbar.txtFunction_Coth":"双曲正交函数","DE.Controllers.Toolbar.txtFunction_Csc":"余割函数","DE.Controllers.Toolbar.txtFunction_Csch":"双曲余割函数","DE.Controllers.Toolbar.txtFunction_Custom_1":"正弦波","DE.Controllers.Toolbar.txtFunction_Custom_2":"cos2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"切线公式","DE.Controllers.Toolbar.txtFunction_Sec":"正割函数","DE.Controllers.Toolbar.txtFunction_Sech":"双曲正割函数","DE.Controllers.Toolbar.txtFunction_Sin":"正弦函数","DE.Controllers.Toolbar.txtFunction_Sinh":"双曲正弦函数","DE.Controllers.Toolbar.txtFunction_Tan":"正切函数","DE.Controllers.Toolbar.txtFunction_Tanh":"双曲正切函数","DE.Controllers.Toolbar.txtIntegral":"积分","DE.Controllers.Toolbar.txtIntegral_dtheta":"差分θ","DE.Controllers.Toolbar.txtIntegral_dx":"差分x","DE.Controllers.Toolbar.txtIntegral_dy":"差分y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"与堆叠极限的积分","DE.Controllers.Toolbar.txtIntegralDouble":"重积分","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"具有堆叠极限的二重积分","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"带极限的二重积分","DE.Controllers.Toolbar.txtIntegralOriented":"轮廓积分","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"具有堆叠极限的等高线积分","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"曲面积分","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"带堆叠限制的曲面积分","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"带限制的曲面积分","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"带极限的等高线积分","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"体积积分","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"带堆叠限制的体积积分","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"带限制的体积积分","DE.Controllers.Toolbar.txtIntegralSubSup":"带极限的积分","DE.Controllers.Toolbar.txtIntegralTriple":"三重积分","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"带堆叠限制的三重积分","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"带限制的三重积分","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"逻辑与","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"带下限的逻辑与","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"带限制的逻辑与","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"带下标下限的逻辑与","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"带上下标限制的逻辑与","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"联产品","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"具有下限的共同产品","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"有限制的共同产品","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"具有下标下限的共同产品","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"具有下标/上标限制的共同产品","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"k等于从0到n的提取n个的总和","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"从i等于0到n的求和","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"总和示例使用两个索引","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"乘积示例","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"并集示例","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"带下限的逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"带限制的逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"带下标下限的逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"带下标/上标限制的逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"交集","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"带下限的交集","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"带限制的交集","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"带下标下限的交集","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"带下标/上标限制的交集","DE.Controllers.Toolbar.txtLargeOperator_Prod":"乘积","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"带下限的乘积","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"带限制的乘积","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"带下标下限的乘积","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"带下标/上标极限的乘积","DE.Controllers.Toolbar.txtLargeOperator_Sum":"合计","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"带下限的总和","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"带限制的总和","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"带下标下限的求和","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"带上下标限制的求和","DE.Controllers.Toolbar.txtLargeOperator_Union":"并集","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"带下限的并集","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"带限制的并集","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"带下标下限的并集","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"带上下标限制的并集","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"限制范例","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"最大范例","DE.Controllers.Toolbar.txtLimitLog_Lim":"限制","DE.Controllers.Toolbar.txtLimitLog_Ln":"自然对数","DE.Controllers.Toolbar.txtLimitLog_Log":"对数","DE.Controllers.Toolbar.txtLimitLog_LogBase":"对数","DE.Controllers.Toolbar.txtLimitLog_Max":"最大值","DE.Controllers.Toolbar.txtLimitLog_Min":"最低限度","DE.Controllers.Toolbar.txtMarginsH":"顶部和底部边距对于给定的页面高度来说太高","DE.Controllers.Toolbar.txtMarginsW":"对于给定的页面宽度,左右边距太宽","DE.Controllers.Toolbar.txtMatrix_1_2":"1x2空矩阵","DE.Controllers.Toolbar.txtMatrix_1_3":"1x3空矩阵","DE.Controllers.Toolbar.txtMatrix_2_1":"2x1空矩阵","DE.Controllers.Toolbar.txtMatrix_2_2":"2x2空矩阵","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"以双竖线表示的空的2x2矩阵","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"空的2x2行列式","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"带圆括号的2x2空矩阵","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"带方形括号的2x2空矩阵","DE.Controllers.Toolbar.txtMatrix_2_3":"2x3空矩阵","DE.Controllers.Toolbar.txtMatrix_3_1":"3x1空矩阵","DE.Controllers.Toolbar.txtMatrix_3_2":"3x2空矩阵","DE.Controllers.Toolbar.txtMatrix_3_3":"3x3空矩阵","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"基线点","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"中线点","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"对角点","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"垂直點","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"括号中的稀疏矩阵","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"括号中的稀疏矩阵","DE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2带零的单位矩阵","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"2x2除了对角线以外都是空白的单位矩阵","DE.Controllers.Toolbar.txtMatrix_Identity_3":"含有零的3x3单位矩阵","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3除了对角线以外都是空白的单位矩阵","DE.Controllers.Toolbar.txtNeedDownload":"PDF 阅读器只能将新的更改保存在单独的文件副本中。PDF 阅读器不支持共同编辑功能,如需与其他用户分享所做的更改,请共享新的文件副本。","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"下方的左右箭头","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"上方的左右箭头","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"下方向左箭头","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"上方左箭头","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"下方向右箭头","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"上方向右箭头","DE.Controllers.Toolbar.txtOperator_ColonEquals":"冒号相等","DE.Controllers.Toolbar.txtOperator_Custom_1":"產生","DE.Controllers.Toolbar.txtOperator_Custom_2":"Delta 收益","DE.Controllers.Toolbar.txtOperator_Definition":"等同于定义","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta 等于","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"下方的左右双箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"上方的左右双箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"下方向左箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"上方左箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"下方向右箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"上方向右箭头","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"等于","DE.Controllers.Toolbar.txtOperator_MinusEquals":"负等于","DE.Controllers.Toolbar.txtOperator_PlusEquals":"加等于","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"测量者","DE.Controllers.Toolbar.txtRadicalCustom_1":"二次方程式的右侧","DE.Controllers.Toolbar.txtRadicalCustom_2":"a的平方加b的平方的平方根","DE.Controllers.Toolbar.txtRadicalRoot_2":"带次数的平方根","DE.Controllers.Toolbar.txtRadicalRoot_3":"立方根","DE.Controllers.Toolbar.txtRadicalRoot_n":"开n次根号","DE.Controllers.Toolbar.txtRadicalSqrt":"平方根","DE.Controllers.Toolbar.txtSaveCopy":"保存副本","DE.Controllers.Toolbar.txtScriptCustom_1":"x下标y的平方","DE.Controllers.Toolbar.txtScriptCustom_2":"e 的负 i omega t 次方","DE.Controllers.Toolbar.txtScriptCustom_3":"x 的平方","DE.Controllers.Toolbar.txtScriptCustom_4":"Y左上标n左下标一","DE.Controllers.Toolbar.txtScriptSub":"下标","DE.Controllers.Toolbar.txtScriptSubSup":"下标-上标","DE.Controllers.Toolbar.txtScriptSubSupLeft":"左下标上标","DE.Controllers.Toolbar.txtScriptSup":"上标","DE.Controllers.Toolbar.txtSymbol_about":"大约","DE.Controllers.Toolbar.txtSymbol_additional":"补充","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Αlpha","DE.Controllers.Toolbar.txtSymbol_approx":"几乎等于","DE.Controllers.Toolbar.txtSymbol_ast":"星号运算符","DE.Controllers.Toolbar.txtSymbol_beta":"测试版","DE.Controllers.Toolbar.txtSymbol_beth":"确信","DE.Controllers.Toolbar.txtSymbol_bullet":"项目符号运算符","DE.Controllers.Toolbar.txtSymbol_cap":"交集","DE.Controllers.Toolbar.txtSymbol_cbrt":"立方根","DE.Controllers.Toolbar.txtSymbol_cdots":"中线水平省略号","DE.Controllers.Toolbar.txtSymbol_celsius":"摄氏度","DE.Controllers.Toolbar.txtSymbol_chi":"Chi","DE.Controllers.Toolbar.txtSymbol_cong":"约等于","DE.Controllers.Toolbar.txtSymbol_cup":"并集","DE.Controllers.Toolbar.txtSymbol_ddots":"向右对角线省略号","DE.Controllers.Toolbar.txtSymbol_degree":"度","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"除号","DE.Controllers.Toolbar.txtSymbol_downarrow":"向下箭头","DE.Controllers.Toolbar.txtSymbol_emptyset":"空集","DE.Controllers.Toolbar.txtSymbol_epsilon":"Epsilon","DE.Controllers.Toolbar.txtSymbol_equals":"等于","DE.Controllers.Toolbar.txtSymbol_equiv":"相同","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"存在","DE.Controllers.Toolbar.txtSymbol_factorial":"阶乘","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"华氏度","DE.Controllers.Toolbar.txtSymbol_forall":"全部","DE.Controllers.Toolbar.txtSymbol_gamma":"Gamma","DE.Controllers.Toolbar.txtSymbol_geq":"大于或等于","DE.Controllers.Toolbar.txtSymbol_gg":"远大于","DE.Controllers.Toolbar.txtSymbol_greater":"大于","DE.Controllers.Toolbar.txtSymbol_in":"元素","DE.Controllers.Toolbar.txtSymbol_inc":"增量","DE.Controllers.Toolbar.txtSymbol_infinity":"无限","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_leftrightarrow":"左右箭头","DE.Controllers.Toolbar.txtSymbol_leq":"小于或等于","DE.Controllers.Toolbar.txtSymbol_less":"小于","DE.Controllers.Toolbar.txtSymbol_ll":"远小于","DE.Controllers.Toolbar.txtSymbol_minus":"减去","DE.Controllers.Toolbar.txtSymbol_mp":"减加号","DE.Controllers.Toolbar.txtSymbol_mu":"Mu","DE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","DE.Controllers.Toolbar.txtSymbol_neq":"不等于","DE.Controllers.Toolbar.txtSymbol_ni":"包含为成员","DE.Controllers.Toolbar.txtSymbol_not":"不签名","DE.Controllers.Toolbar.txtSymbol_notexists":"不存在","DE.Controllers.Toolbar.txtSymbol_nu":"Nu","DE.Controllers.Toolbar.txtSymbol_o":"Omicron","DE.Controllers.Toolbar.txtSymbol_omega":"Omega","DE.Controllers.Toolbar.txtSymbol_partial":"偏微分","DE.Controllers.Toolbar.txtSymbol_percent":"百分比","DE.Controllers.Toolbar.txtSymbol_phi":"Phi","DE.Controllers.Toolbar.txtSymbol_pi":"Pi","DE.Controllers.Toolbar.txtSymbol_plus":"加","DE.Controllers.Toolbar.txtSymbol_pm":"加减","DE.Controllers.Toolbar.txtSymbol_propto":"成比例于","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"四次方根","DE.Controllers.Toolbar.txtSymbol_qed":"证明结束","DE.Controllers.Toolbar.txtSymbol_rddots":"向右对角线省略号","DE.Controllers.Toolbar.txtSymbol_rho":"Rho","DE.Controllers.Toolbar.txtSymbol_rightarrow":"右箭头","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"根号","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_upsilon":"Upsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Epsilon变体","DE.Controllers.Toolbar.txtSymbol_varphi":"Phi 变体","DE.Controllers.Toolbar.txtSymbol_varpi":"π变量","DE.Controllers.Toolbar.txtSymbol_varrho":"Rho 变量","DE.Controllers.Toolbar.txtSymbol_varsigma":"Sigma变量","DE.Controllers.Toolbar.txtSymbol_vartheta":"Theta 变量","DE.Controllers.Toolbar.txtSymbol_vdots":"垂直省略號","DE.Controllers.Toolbar.txtSymbol_xsi":"Xi","DE.Controllers.Toolbar.txtSymbol_zeta":"Zeta","DE.Controllers.Toolbar.txtUntitled":"未命名","DE.Controllers.Viewport.textFitPage":"调整至页面大小","DE.Controllers.Viewport.textFitWidth":"调整至合适宽度","DE.Controllers.Viewport.txtDarkMode":"深色模式","DE.Views.BookmarksDialog.textAdd":"添加","DE.Views.BookmarksDialog.textAddAndGetLink":"添加并获取链接","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.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.textLabelError":"标签不能为空。","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.CellsRemoveDialog.textCol":"删除整列","DE.Views.CellsRemoveDialog.textLeft":"向左移动单元格","DE.Views.CellsRemoveDialog.textRow":"删除整行","DE.Views.CellsRemoveDialog.textTitle":"删除单元格","DE.Views.ChartSettings.text3dDepth":"深度(基准的%)","DE.Views.ChartSettings.text3dHeight":"高度(基准的%)","DE.Views.ChartSettings.text3dRotation":"三维旋转","DE.Views.ChartSettings.textAdvanced":"显示高级设置","DE.Views.ChartSettings.textAutoscale":"自动缩放","DE.Views.ChartSettings.textChartType":"更改图表类型","DE.Views.ChartSettings.textData":"数据","DE.Views.ChartSettings.textDefault":"默认旋转","DE.Views.ChartSettings.textDown":"下","DE.Views.ChartSettings.textEditData":"编辑数据","DE.Views.ChartSettings.textEditLinks":"编辑链接","DE.Views.ChartSettings.textHeight":"高度","DE.Views.ChartSettings.textKeepRatio":"固定比例","DE.Views.ChartSettings.textLeft":"左","DE.Views.ChartSettings.textLinkedData":"关联数据","DE.Views.ChartSettings.textNarrow":"窄视野","DE.Views.ChartSettings.textOriginalSize":"实际大小","DE.Views.ChartSettings.textPerspective":"透视","DE.Views.ChartSettings.textRight":"右","DE.Views.ChartSettings.textRightAngle":"直角坐标轴","DE.Views.ChartSettings.textSelectData":"选择数据","DE.Views.ChartSettings.textSize":"大小","DE.Views.ChartSettings.textStyle":"样式","DE.Views.ChartSettings.textUndock":"离开面板","DE.Views.ChartSettings.textUp":"向上","DE.Views.ChartSettings.textUpdateData":"更新数据","DE.Views.ChartSettings.textWiden":"扩大视图","DE.Views.ChartSettings.textWidth":"宽度","DE.Views.ChartSettings.textWrap":"环绕方式","DE.Views.ChartSettings.textX":"X轴旋转","DE.Views.ChartSettings.textY":"Y轴旋转","DE.Views.ChartSettings.txtBehind":"衬于文字下方","DE.Views.ChartSettings.txtInFront":"浮于文字上方","DE.Views.ChartSettings.txtInline":"嵌入型","DE.Views.ChartSettings.txtSquare":"四周型","DE.Views.ChartSettings.txtThrough":"穿越型环绕","DE.Views.ChartSettings.txtTight":"紧密型环绕","DE.Views.ChartSettings.txtTitle":"图表","DE.Views.ChartSettings.txtTopAndBottom":"上下型环绕","DE.Views.ChartSettingsDlg.textLeftOverlay":"左侧覆盖","DE.Views.CompareSettingsDialog.textChar":"字符级别","DE.Views.CompareSettingsDialog.textShow":"显示变更于","DE.Views.CompareSettingsDialog.textTitle":"比较设置","DE.Views.CompareSettingsDialog.textWord":"字級","DE.Views.ControlSettingsDialog.strGeneral":"一般","DE.Views.ControlSettingsDialog.textAdd":"添加","DE.Views.ControlSettingsDialog.textAppearance":"外观","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.ControlSettingsDialog.txtRemContent":"编辑内容时删除内容控件","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.textEqualWidth":"平均分配列宽","DE.Views.CustomColumnsDialog.textSeparator":"列分隔符","DE.Views.CustomColumnsDialog.textTitle":"列","DE.Views.CustomColumnsDialog.textTitleSpacing":"间距","DE.Views.CustomColumnsDialog.textWidth":"宽度","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.DocProtection.hintProtectDoc":"保护文档","DE.Views.DocProtection.txtDocProtectedComment":"文档受到保护
您只能在此文档中插入批注。","DE.Views.DocProtection.txtDocProtectedForms":"文档受到保护
您只能在此文档中填写表单。","DE.Views.DocProtection.txtDocProtectedTrack":"文档受到保护
您可以编辑此文档,但所有更改都将被跟踪。","DE.Views.DocProtection.txtDocProtectedView":"文档受到保护
您只能在此文档中插入批注。","DE.Views.DocProtection.txtDocUnlockDescription":"输入密码以取消文档保护","DE.Views.DocProtection.txtProtectDoc":"保护文档","DE.Views.DocProtection.txtUnlockTitle":"解除文档保护","DE.Views.DocumentHolder.aboveText":"上方","DE.Views.DocumentHolder.addCommentText":"添加批注","DE.Views.DocumentHolder.advancedDropCapText":"首字下沉设置","DE.Views.DocumentHolder.advancedEquationText":"方程式设置","DE.Views.DocumentHolder.advancedFrameText":"框架高级设置","DE.Views.DocumentHolder.advancedParagraphText":"段落高级设置","DE.Views.DocumentHolder.advancedTableText":"表格高级设置","DE.Views.DocumentHolder.advancedText":"高级设置","DE.Views.DocumentHolder.AlignBottom":"底部","DE.Views.DocumentHolder.AlignCenter":"居中","DE.Views.DocumentHolder.AlignJust":"两端对齐","DE.Views.DocumentHolder.AlignLeft":"左","DE.Views.DocumentHolder.alignmentText":"对齐","DE.Views.DocumentHolder.AlignMiddle":"中间","DE.Views.DocumentHolder.AlignRight":"右","DE.Views.DocumentHolder.AlignText":"文字对齐","DE.Views.DocumentHolder.AlignTop":"顶部","DE.Views.DocumentHolder.allLinearText":"全部-线性","DE.Views.DocumentHolder.allProfText":"全部-专业","DE.Views.DocumentHolder.belowText":"下面","DE.Views.DocumentHolder.breakBeforeText":"段前分页","DE.Views.DocumentHolder.btnChart":"添加、删除或更改图表元素,例如标题、图例、网格线和数据标签","DE.Views.DocumentHolder.bulletsText":"项目符号和编号","DE.Views.DocumentHolder.cellAlignText":"单元格垂直对齐","DE.Views.DocumentHolder.cellText":"单元格","DE.Views.DocumentHolder.centerText":"中心","DE.Views.DocumentHolder.chartText":"图表高级设置","DE.Views.DocumentHolder.columnText":"列","DE.Views.DocumentHolder.currLinearText":"当前-线性","DE.Views.DocumentHolder.currProfText":"当前-专业","DE.Views.DocumentHolder.deleteColumnText":"删除列","DE.Views.DocumentHolder.deleteRowText":"删除行","DE.Views.DocumentHolder.deleteTableText":"删除表格","DE.Views.DocumentHolder.deleteText":"删除","DE.Views.DocumentHolder.DepthAxis":"Z 轴","DE.Views.DocumentHolder.direct270Text":"向上旋转文字","DE.Views.DocumentHolder.direct90Text":"向下旋转文字","DE.Views.DocumentHolder.directHText":"水平的","DE.Views.DocumentHolder.directionText":"文字方向","DE.Views.DocumentHolder.editChartText":"编辑数据","DE.Views.DocumentHolder.editFooterText":"编辑页脚","DE.Views.DocumentHolder.editHeaderText":"编辑页眉","DE.Views.DocumentHolder.editHyperlinkText":"编辑链接","DE.Views.DocumentHolder.eqToDisplayText":"更改为显示","DE.Views.DocumentHolder.eqToInlineText":"更改为内联","DE.Views.DocumentHolder.guestText":"访客","DE.Views.DocumentHolder.hideEqToolbar":"隐藏公式工具栏","DE.Views.DocumentHolder.hyperlinkText":"链接","DE.Views.DocumentHolder.ignoreAllSpellText":"忽略所有","DE.Views.DocumentHolder.ignoreSpellText":"忽略","DE.Views.DocumentHolder.imageText":"图片高级设置","DE.Views.DocumentHolder.insertColumnLeftText":"左栏","DE.Views.DocumentHolder.insertColumnRightText":"右栏","DE.Views.DocumentHolder.insertColumnText":"插入列","DE.Views.DocumentHolder.insertRowAboveText":"上面的行","DE.Views.DocumentHolder.insertRowBelowText":"下面的行","DE.Views.DocumentHolder.insertRowText":"插入行","DE.Views.DocumentHolder.insertText":"插入","DE.Views.DocumentHolder.keepLinesText":"段中不分页","DE.Views.DocumentHolder.langText":"选择语言","DE.Views.DocumentHolder.latexText":"LaTeX","DE.Views.DocumentHolder.leftText":"左","DE.Views.DocumentHolder.loadSpellText":"加载变体...","DE.Views.DocumentHolder.mergeCellsText":"合并单元格","DE.Views.DocumentHolder.mniImageFromFile":"图片文件","DE.Views.DocumentHolder.mniImageFromStorage":"存储设备中的图片","DE.Views.DocumentHolder.mniImageFromUrl":"来自URL地址的图片","DE.Views.DocumentHolder.moreText":"更多变体...","DE.Views.DocumentHolder.noSpellVariantsText":"没有变体","DE.Views.DocumentHolder.notcriticalErrorTitle":"警告","DE.Views.DocumentHolder.originalSizeText":"实际大小","DE.Views.DocumentHolder.paragraphText":"段落","DE.Views.DocumentHolder.removeHyperlinkText":"删除链接","DE.Views.DocumentHolder.rightText":"右","DE.Views.DocumentHolder.rowText":"行","DE.Views.DocumentHolder.saveStyleText":"新建样式","DE.Views.DocumentHolder.selectCellText":"选择单元格","DE.Views.DocumentHolder.selectColumnText":"选择列","DE.Views.DocumentHolder.selectRowText":"选择行","DE.Views.DocumentHolder.selectTableText":"选择表格","DE.Views.DocumentHolder.selectText":"选择","DE.Views.DocumentHolder.shapeText":"形状高级设置","DE.Views.DocumentHolder.showEqToolbar":"显示公式工具栏","DE.Views.DocumentHolder.spellcheckText":"拼写检查","DE.Views.DocumentHolder.splitCellsText":"拆分单元格","DE.Views.DocumentHolder.splitCellTitleText":"拆分单元格","DE.Views.DocumentHolder.strDelete":"删除签名","DE.Views.DocumentHolder.strDetails":"签名详细信息","DE.Views.DocumentHolder.strSetup":"签名设置","DE.Views.DocumentHolder.strSign":"签署","DE.Views.DocumentHolder.styleText":"格式化为样式","DE.Views.DocumentHolder.tableText":"表格","DE.Views.DocumentHolder.textAccept":"同意更改","DE.Views.DocumentHolder.textAlign":"对齐","DE.Views.DocumentHolder.textArrange":"安排","DE.Views.DocumentHolder.textArrangeBack":"置于底层","DE.Views.DocumentHolder.textArrangeBackward":"下移一层","DE.Views.DocumentHolder.textArrangeForward":"向前移动","DE.Views.DocumentHolder.textArrangeFront":"移到前景","DE.Views.DocumentHolder.textAxes":"坐标轴","DE.Views.DocumentHolder.textAxisTitles":"坐标轴标题","DE.Views.DocumentHolder.textBottom":"底部","DE.Views.DocumentHolder.textCells":"单元格","DE.Views.DocumentHolder.textCenter":"居中","DE.Views.DocumentHolder.textChartTitle":"图表标题","DE.Views.DocumentHolder.textClearField":"清除字段","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.textDataLabels":"数据标签","DE.Views.DocumentHolder.textDataTable":"数据表","DE.Views.DocumentHolder.textDistributeCols":"分布列","DE.Views.DocumentHolder.textDistributeRows":"分布行","DE.Views.DocumentHolder.textEditControls":"内容控件设置","DE.Views.DocumentHolder.textEditField":"编辑字段","DE.Views.DocumentHolder.textEditObject":"编辑对象","DE.Views.DocumentHolder.textEditPoints":"编辑点","DE.Views.DocumentHolder.textEditWrapBoundary":"编辑环绕边界","DE.Views.DocumentHolder.textErrorBars":"误差线","DE.Views.DocumentHolder.textExponential":"指数","DE.Views.DocumentHolder.textFieldCodes":"切换字段代码","DE.Views.DocumentHolder.textFit":"调整至合适宽度","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.textGridLines":"网格线","DE.Views.DocumentHolder.textHorAxis":"横轴","DE.Views.DocumentHolder.textHorAxisSec":"次横轴","DE.Views.DocumentHolder.textHorizontalMajor":"主要水平线","DE.Views.DocumentHolder.textHorizontalMinor":"次要水平线","DE.Views.DocumentHolder.textIndents":"调整列表缩进","DE.Views.DocumentHolder.textInnerBottom":"内侧底部","DE.Views.DocumentHolder.textInnerTop":"内侧顶部","DE.Views.DocumentHolder.textJoinList":"加入到上一个列表中","DE.Views.DocumentHolder.textLeft":"向左移动单元格","DE.Views.DocumentHolder.textLeftData":"左","DE.Views.DocumentHolder.textLeftOverlay":"左侧覆盖","DE.Views.DocumentHolder.textLeftPos":"左侧","DE.Views.DocumentHolder.textLegendPos":"图例","DE.Views.DocumentHolder.textLinear":"线性","DE.Views.DocumentHolder.textLinearForecast":"线性预测","DE.Views.DocumentHolder.textLines":"行","DE.Views.DocumentHolder.textMovingAverage":"移动平均 (2)","DE.Views.DocumentHolder.textNest":"嵌套表","DE.Views.DocumentHolder.textNextPage":"下一页","DE.Views.DocumentHolder.textNone":"无","DE.Views.DocumentHolder.textNoOverlay":"不覆盖","DE.Views.DocumentHolder.textNumberingValue":"编号值","DE.Views.DocumentHolder.textOuterTop":"外侧顶部","DE.Views.DocumentHolder.textOverlay":"覆盖","DE.Views.DocumentHolder.textPaste":"粘贴","DE.Views.DocumentHolder.textPrevPage":"上一页","DE.Views.DocumentHolder.textRedo":"重做","DE.Views.DocumentHolder.textRefreshField":"更新字段","DE.Views.DocumentHolder.textReject":"否决更改","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.textResetCrop":"重置裁剪","DE.Views.DocumentHolder.textRight":"右","DE.Views.DocumentHolder.textRightOverlay":"右侧覆盖","DE.Views.DocumentHolder.textRotate":"旋转","DE.Views.DocumentHolder.textRotate270":"逆时针旋转90°","DE.Views.DocumentHolder.textRotate90":"顺时针旋转90°","DE.Views.DocumentHolder.textRow":"删除整行","DE.Views.DocumentHolder.textSaveAsPicture":"另存为图片","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.textShapesMerge":"合并形状","DE.Views.DocumentHolder.textShowDataTable":"显示数据表","DE.Views.DocumentHolder.textShowLegendKeys":"显示图例标识","DE.Views.DocumentHolder.textShowUpDown":"显示上下滚动条","DE.Views.DocumentHolder.textStandardDeviation":"标准偏差","DE.Views.DocumentHolder.textStandardError":"标准误差","DE.Views.DocumentHolder.textStartNewList":"开始新列表","DE.Views.DocumentHolder.textStartNumberingFrom":"设置编号值","DE.Views.DocumentHolder.textTitleCellsRemove":"删除单元格","DE.Views.DocumentHolder.textTOC":"目录","DE.Views.DocumentHolder.textTOCSettings":"目录设置","DE.Views.DocumentHolder.textTop":"顶部","DE.Views.DocumentHolder.textTrendline":"趋势线","DE.Views.DocumentHolder.textUndo":"撤消","DE.Views.DocumentHolder.textUpdateAll":"更新整个表格","DE.Views.DocumentHolder.textUpdatePages":"仅更新页码","DE.Views.DocumentHolder.textUpdateTOC":"更新目录","DE.Views.DocumentHolder.textUpDownBars":"上下滚动条","DE.Views.DocumentHolder.textVertAxis":"纵轴","DE.Views.DocumentHolder.textVertAxisSec":"次纵轴","DE.Views.DocumentHolder.textVerticalMajor":"垂直主要","DE.Views.DocumentHolder.textVerticalMinor":"垂直次要","DE.Views.DocumentHolder.textWrap":"环绕方式","DE.Views.DocumentHolder.tipIsLocked":"此元素正在由其他用户编辑。","DE.Views.DocumentHolder.toDictionaryText":"添加到字典","DE.Views.DocumentHolder.txtAddBottom":"添加底部边框","DE.Views.DocumentHolder.txtAddFractionBar":"添加分数栏","DE.Views.DocumentHolder.txtAddHor":"添加水平线","DE.Views.DocumentHolder.txtAddLB":"添加左底边框","DE.Views.DocumentHolder.txtAddLeft":"添加左边框","DE.Views.DocumentHolder.txtAddLT":"添加左侧顶部边框","DE.Views.DocumentHolder.txtAddRight":"添加右边框","DE.Views.DocumentHolder.txtAddTop":"添加上边框","DE.Views.DocumentHolder.txtAddVer":"添加垂直线","DE.Views.DocumentHolder.txtAlignToChar":"字符对齐","DE.Views.DocumentHolder.txtBehind":"衬于文字下方","DE.Views.DocumentHolder.txtBorderProps":"边框属性","DE.Views.DocumentHolder.txtBottom":"底部","DE.Views.DocumentHolder.txtColumnAlign":"列对齐","DE.Views.DocumentHolder.txtDecreaseArg":"减少参数大小","DE.Views.DocumentHolder.txtDeleteArg":"删除参数","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.txtDestEmbed":"使用目标主题 & 嵌入工作簿","DE.Views.DocumentHolder.txtDestLink":"使用目标主题 & 链接数据","DE.Views.DocumentHolder.txtDistribHor":"水平分布","DE.Views.DocumentHolder.txtDistribVert":"垂直分布","DE.Views.DocumentHolder.txtEmpty":"(空)","DE.Views.DocumentHolder.txtFractionLinear":"改为线性分数","DE.Views.DocumentHolder.txtFractionSkewed":"改为倾斜分数","DE.Views.DocumentHolder.txtFractionStacked":"改为堆积分数","DE.Views.DocumentHolder.txtGroup":"组","DE.Views.DocumentHolder.txtGroupCharOver":"文字上方的字符","DE.Views.DocumentHolder.txtGroupCharUnder":"文字下的字符","DE.Views.DocumentHolder.txtHideBottom":"隐藏底部边框","DE.Views.DocumentHolder.txtHideBottomLimit":"隐藏下限","DE.Views.DocumentHolder.txtHideCloseBracket":"隐藏右括号","DE.Views.DocumentHolder.txtHideDegree":"隐藏度数","DE.Views.DocumentHolder.txtHideHor":"隐藏水平线","DE.Views.DocumentHolder.txtHideLB":"隐藏左底线","DE.Views.DocumentHolder.txtHideLeft":"隐藏左边框","DE.Views.DocumentHolder.txtHideLT":"隐藏左顶线","DE.Views.DocumentHolder.txtHideOpenBracket":"隐藏左括号","DE.Views.DocumentHolder.txtHidePlaceholder":"隐藏占位符","DE.Views.DocumentHolder.txtHideRight":"隐藏右边框","DE.Views.DocumentHolder.txtHideTop":"隐藏顶部边框","DE.Views.DocumentHolder.txtHideTopLimit":"隐藏上限","DE.Views.DocumentHolder.txtHideVer":"隐藏垂直线","DE.Views.DocumentHolder.txtIncreaseArg":"增加参数大小","DE.Views.DocumentHolder.txtInFront":"浮于文字上方","DE.Views.DocumentHolder.txtInline":"嵌入型","DE.Views.DocumentHolder.txtInsertArgAfter":"在后面插入参数","DE.Views.DocumentHolder.txtInsertArgBefore":"之前插入参数","DE.Views.DocumentHolder.txtInsertBreak":"插入手动分隔符","DE.Views.DocumentHolder.txtInsertCaption":"插入标题","DE.Views.DocumentHolder.txtInsertEqAfter":"在之后插入方程式","DE.Views.DocumentHolder.txtInsertEqBefore":"在之前插入方程式","DE.Views.DocumentHolder.txtInsImage":"插入来自文件的图片","DE.Views.DocumentHolder.txtInsImageUrl":"插入来自URL的图片","DE.Views.DocumentHolder.txtKeepTextOnly":"仅保留文字","DE.Views.DocumentHolder.txtLimitChange":"更改界限位置","DE.Views.DocumentHolder.txtLimitOver":"文字限制","DE.Views.DocumentHolder.txtLimitUnder":"文字下的限制","DE.Views.DocumentHolder.txtMatchBrackets":"括号与其内容的高度对齐","DE.Views.DocumentHolder.txtMatrixAlign":"矩阵对齐","DE.Views.DocumentHolder.txtOverbar":"文本上横条","DE.Views.DocumentHolder.txtOverwriteCells":"覆盖单元格","DE.Views.DocumentHolder.txtPastePicture":"图片","DE.Views.DocumentHolder.txtPasteSourceFormat":"保留源格式","DE.Views.DocumentHolder.txtPercentage":"百分比","DE.Views.DocumentHolder.txtPressLink":"按 {0} 并单击链接","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":"除去上标","DE.Views.DocumentHolder.txtScriptsAfter":"文字后的脚本","DE.Views.DocumentHolder.txtScriptsBefore":"文字前的腳本","DE.Views.DocumentHolder.txtShowBottomLimit":"显示底限","DE.Views.DocumentHolder.txtShowCloseBracket":"显示结束括号","DE.Views.DocumentHolder.txtShowDegree":"显示度数","DE.Views.DocumentHolder.txtShowOpenBracket":"显示开始括号","DE.Views.DocumentHolder.txtShowPlaceholder":"显示占位符","DE.Views.DocumentHolder.txtShowTopLimit":"显示上限","DE.Views.DocumentHolder.txtSourceEmbed":"保留源格式 & 嵌入工作簿","DE.Views.DocumentHolder.txtSourceLink":"保留源格式 & 链接数据","DE.Views.DocumentHolder.txtSquare":"四周型","DE.Views.DocumentHolder.txtStretchBrackets":"延展括号","DE.Views.DocumentHolder.txtThrough":"穿越型环绕","DE.Views.DocumentHolder.txtTight":"紧密型环绕","DE.Views.DocumentHolder.txtTop":"顶部","DE.Views.DocumentHolder.txtTopAndBottom":"上下型环绕","DE.Views.DocumentHolder.txtUnderbar":"文本下方横条","DE.Views.DocumentHolder.txtUngroup":"取消组合","DE.Views.DocumentHolder.txtWarnUrl":"点击此链接可能会对您的设备和数据造成损害。为了保护您的计算机,请仅点击来自可信来源的链接。此位置可能不安全:

{0}

您确定要继续吗?","DE.Views.DocumentHolder.unicodeText":"Unicode码","DE.Views.DocumentHolder.updateStyleText":"更新%1样式","DE.Views.DocumentHolder.vertAlignText":"垂直對齊","DE.Views.DropcapSettingsAdvanced.strBorders":"边框和填充","DE.Views.DropcapSettingsAdvanced.strDropcap":"首字大写","DE.Views.DropcapSettingsAdvanced.strMargins":"边距","DE.Views.DropcapSettingsAdvanced.textAlign":"对齐","DE.Views.DropcapSettingsAdvanced.textAtLeast":"最小值","DE.Views.DropcapSettingsAdvanced.textAuto":"自动","DE.Views.DropcapSettingsAdvanced.textBackColor":"背景颜色","DE.Views.DropcapSettingsAdvanced.textBorderColor":"边框颜色","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"点击图表或使用按钮选择边框","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"边框大小","DE.Views.DropcapSettingsAdvanced.textBottom":"底部","DE.Views.DropcapSettingsAdvanced.textCenter":"中心","DE.Views.DropcapSettingsAdvanced.textColumn":"列","DE.Views.DropcapSettingsAdvanced.textDistance":"与文本的间距","DE.Views.DropcapSettingsAdvanced.textExact":"固定值","DE.Views.DropcapSettingsAdvanced.textFlow":"流程图","DE.Views.DropcapSettingsAdvanced.textFont":"字体 ","DE.Views.DropcapSettingsAdvanced.textFrame":"框","DE.Views.DropcapSettingsAdvanced.textHeight":"高度","DE.Views.DropcapSettingsAdvanced.textHorizontal":"水平的","DE.Views.DropcapSettingsAdvanced.textInline":"内联框架","DE.Views.DropcapSettingsAdvanced.textInMargin":"在页边距","DE.Views.DropcapSettingsAdvanced.textInText":"在文本中","DE.Views.DropcapSettingsAdvanced.textLeft":"左","DE.Views.DropcapSettingsAdvanced.textMargin":"边距","DE.Views.DropcapSettingsAdvanced.textMove":"随文字移动","DE.Views.DropcapSettingsAdvanced.textNone":"无","DE.Views.DropcapSettingsAdvanced.textPage":"页面","DE.Views.DropcapSettingsAdvanced.textParagraph":"段落","DE.Views.DropcapSettingsAdvanced.textParameters":"参数","DE.Views.DropcapSettingsAdvanced.textPosition":"位置","DE.Views.DropcapSettingsAdvanced.textRelative":"相对于","DE.Views.DropcapSettingsAdvanced.textRight":"右","DE.Views.DropcapSettingsAdvanced.textRowHeight":"行高","DE.Views.DropcapSettingsAdvanced.textTitle":"首字大写 - 高级设置","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"框架 - 高级设置","DE.Views.DropcapSettingsAdvanced.textTop":"顶部","DE.Views.DropcapSettingsAdvanced.textVertical":"垂直","DE.Views.DropcapSettingsAdvanced.textWidth":"宽度","DE.Views.DropcapSettingsAdvanced.tipFontName":"字体 ","DE.Views.EditListItemDialog.textDisplayName":"显示名称","DE.Views.EditListItemDialog.textNameError":"显示名称不能为空。","DE.Views.EditListItemDialog.textValue":"值","DE.Views.EditListItemDialog.textValueError":"具有相同值的项已存在。","DE.Views.FileMenu.ariaFileMenu":"文件菜单","DE.Views.FileMenu.btnBackCaption":"打开文件所在位置","DE.Views.FileMenu.btnCloseEditor":"关闭文件","DE.Views.FileMenu.btnCloseMenuCaption":"返回","DE.Views.FileMenu.btnCreateNewCaption":"新建","DE.Views.FileMenu.btnDownloadCaption":"下载为","DE.Views.FileMenu.btnExitCaption":"关闭","DE.Views.FileMenu.btnFileOpenCaption":"打开","DE.Views.FileMenu.btnHelpCaption":"帮助","DE.Views.FileMenu.btnHistoryCaption":"版本历史","DE.Views.FileMenu.btnInfoCaption":"信息","DE.Views.FileMenu.btnPrintCaption":"打印","DE.Views.FileMenu.btnProtectCaption":"保护","DE.Views.FileMenu.btnRecentFilesCaption":"打开最近","DE.Views.FileMenu.btnRenameCaption":"重命名","DE.Views.FileMenu.btnReturnCaption":"返回到文件","DE.Views.FileMenu.btnRightsCaption":"访问权限","DE.Views.FileMenu.btnSaveAsCaption":"另存为","DE.Views.FileMenu.btnSaveCaption":"保存","DE.Views.FileMenu.btnSaveCopyAsCaption":"另存副本为","DE.Views.FileMenu.btnSettingsCaption":"高级设置","DE.Views.FileMenu.btnSuggestCaption":"提出功能建议","DE.Views.FileMenu.btnSwitchToMobileCaption":"切换到移动模式","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.txtAddProperty":"添加属性","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.txtCommon":"通用","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"已创建","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文档信息","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"文档属性","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"快速Web视图","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"加载中…","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最后修改者","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"上一次更改","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"否","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"创建者","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"页面","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"页面大小","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"段落","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF生成器","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"已标记的PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF版本","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"位置","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"属性","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"具有该标题的属性已存在","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.txtTags":"标签","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"标题","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"已上传","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"单词","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"是","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"访问权限","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"更改访问权限","DE.Views.FileMenuPanels.DocumentRights.txtRights":"拥有权限的人","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"警告","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"密码保护","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"保护文档","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"签名保护","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有效签名已添加到文档中
文档受到保护,不可编辑。","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"通过添加
不可见的数字签名来确保文档的完整性","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"编辑文档","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"编辑将删除文档中的签名
是否继续?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"此文件已使用密码保护。","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"使用密码加密此文档","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"此文件需要签名。","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有效签名已添加到文档中。文档受到保护,不可编辑。","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"文件中的一些数字签名无效或无法验证。该文件受到保护,无法编辑。","DE.Views.FileMenuPanels.ProtectDoc.txtView":"查看签名","DE.Views.FileMenuPanels.Settings.okButtonText":"应用","DE.Views.FileMenuPanels.Settings.strChinese":"中文","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同编辑模式","DE.Views.FileMenuPanels.Settings.strDocContent":"文档内容","DE.Views.FileMenuPanels.Settings.strFast":"快速","DE.Views.FileMenuPanels.Settings.strFontRender":"字体设置","DE.Views.FileMenuPanels.Settings.strFontSizeType":"在字体大小列表中使用第一个","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"忽略大写单词","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"忽略带数字的单词","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"键盘快捷键","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"宏设置","DE.Views.FileMenuPanels.Settings.strNumeral":"数字","DE.Views.FileMenuPanels.Settings.strPasteButton":"粘贴内容时显示“粘贴选项”按钮","DE.Views.FileMenuPanels.Settings.strRTLSupport":"RTL 界面 (文字从右到左)","DE.Views.FileMenuPanels.Settings.strShowChanges":"实时协作变更","DE.Views.FileMenuPanels.Settings.strShowComments":"在文本中显示批注","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"显示来自其他用户的更改","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"显示已解决的批注","DE.Views.FileMenuPanels.Settings.strStrict":"严格","DE.Views.FileMenuPanels.Settings.strTabStyle":"选项卡样式","DE.Views.FileMenuPanels.Settings.strTheme":"界面主题","DE.Views.FileMenuPanels.Settings.strUnit":"计量单位","DE.Views.FileMenuPanels.Settings.strWestern":"西","DE.Views.FileMenuPanels.Settings.strZoom":"默认缩放值","DE.Views.FileMenuPanels.Settings.text10Minutes":"每10分钟","DE.Views.FileMenuPanels.Settings.text30Minutes":"每30分钟","DE.Views.FileMenuPanels.Settings.text5Minutes":"每5分钟","DE.Views.FileMenuPanels.Settings.text60Minutes":"每隔一小时","DE.Views.FileMenuPanels.Settings.textAlignGuides":"对齐辅助线","DE.Views.FileMenuPanels.Settings.textAutoRecover":"保存自动恢复信息","DE.Views.FileMenuPanels.Settings.textAutoSave":"自动保存","DE.Views.FileMenuPanels.Settings.textDisabled":"已禁用","DE.Views.FileMenuPanels.Settings.textFill":"填充","DE.Views.FileMenuPanels.Settings.textForceSave":"保存中间版本","DE.Views.FileMenuPanels.Settings.textLine":"线","DE.Views.FileMenuPanels.Settings.textMinute":"每一分钟","DE.Views.FileMenuPanels.Settings.textOldVersions":"当保存为 DOCX、DOTX 格式时使文件兼容旧版的 MS Word","DE.Views.FileMenuPanels.Settings.textSmartSelection":"使用智能段落选择","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"高级设置","DE.Views.FileMenuPanels.Settings.txtAll":"查看全部","DE.Views.FileMenuPanels.Settings.txtAppearance":"外观","DE.Views.FileMenuPanels.Settings.txtArabic":"阿拉伯语","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.txtCollaboration":"协作","DE.Views.FileMenuPanels.Settings.txtContext":"上下文","DE.Views.FileMenuPanels.Settings.txtCustomize":"自定义","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"自定义快速访问","DE.Views.FileMenuPanels.Settings.txtDarkMode":"启用文档深色模式","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"编辑并保存","DE.Views.FileMenuPanels.Settings.txtFastTip":"实时共同编辑。所有更改都会自动保存","DE.Views.FileMenuPanels.Settings.txtFitPage":"调整至页面大小","DE.Views.FileMenuPanels.Settings.txtFitWidth":"调整至合适宽度","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"象形文字","DE.Views.FileMenuPanels.Settings.txtHindi":"印地语","DE.Views.FileMenuPanels.Settings.txtInch":"英寸","DE.Views.FileMenuPanels.Settings.txtLast":"查看上一个","DE.Views.FileMenuPanels.Settings.txtLastUsed":"最后一次使用","DE.Views.FileMenuPanels.Settings.txtMac":"按照 OS X 样式","DE.Views.FileMenuPanels.Settings.txtNative":"本地","DE.Views.FileMenuPanels.Settings.txtNone":"无查看","DE.Views.FileMenuPanels.Settings.txtProofing":"校对","DE.Views.FileMenuPanels.Settings.txtPt":"点","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"编辑器标题栏显示“快速打印”按钮","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"文档将打印到最近选择的打印机或者默认打印机","DE.Views.FileMenuPanels.Settings.txtRunMacros":"全部启用","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"启用全部宏,不显示通知","DE.Views.FileMenuPanels.Settings.txtScreenReader":"打开屏幕朗读器支持","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"显示跟踪更改","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"拼写检查","DE.Views.FileMenuPanels.Settings.txtStopMacros":"全部停用","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"禁用全部宏,不显示通知","DE.Views.FileMenuPanels.Settings.txtStrictTip":"使用“保存”按钮同步您和其他人所做的更改","DE.Views.FileMenuPanels.Settings.txtTabBack":"使用工具栏颜色作为选项卡背景","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"按 Alt 键后可通过键盘在用户界面中导航","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"用Option键使用键盘浏览用户界面","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"显示通知","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"禁用全部宏,并显示通知","DE.Views.FileMenuPanels.Settings.txtWin":"按照 Windows 样式","DE.Views.FileMenuPanels.Settings.txtWorkspace":"工作区","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"下载为","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"另存副本为","DE.Views.FormSettings.textAddRole":"添加接收人","DE.Views.FormSettings.textAlways":"总是","DE.Views.FormSettings.textAnyone":"任何人","DE.Views.FormSettings.textAspect":"锁定宽高比","DE.Views.FormSettings.textAtLeast":"最小值","DE.Views.FormSettings.textAuto":"自动","DE.Views.FormSettings.textAutofit":"自动适应","DE.Views.FormSettings.textBackgroundColor":"背景颜色","DE.Views.FormSettings.textCheckbox":"多选框","DE.Views.FormSettings.textCheckDefault":"复选框默认选中","DE.Views.FormSettings.textColor":"边框颜色","DE.Views.FormSettings.textComb":"文字组合","DE.Views.FormSettings.textCombobox":"下拉式方框","DE.Views.FormSettings.textComplex":"复合字段","DE.Views.FormSettings.textConnected":"已连接的字段","DE.Views.FormSettings.textCreditCard":"信用卡号码(例如 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"日期和时间字段","DE.Views.FormSettings.textDateFormat":"这样显示日期","DE.Views.FormSettings.textDefValue":"默认值","DE.Views.FormSettings.textDelete":"删除","DE.Views.FormSettings.textDigits":"数字","DE.Views.FormSettings.textDisconnect":"断开","DE.Views.FormSettings.textDropDown":"下拉菜单","DE.Views.FormSettings.textExact":"固定值","DE.Views.FormSettings.textField":"文本字段","DE.Views.FormSettings.textFillRoles":"谁需要填写这个?","DE.Views.FormSettings.textFixed":"固定大小字段","DE.Views.FormSettings.textFormat":"格式","DE.Views.FormSettings.textFormatSymbols":"允许的符号","DE.Views.FormSettings.textFromFile":"从文件导入","DE.Views.FormSettings.textFromStorage":"来自存储设备","DE.Views.FormSettings.textFromUrl":"来自URL","DE.Views.FormSettings.textGroupKey":"组密钥","DE.Views.FormSettings.textImage":"图片","DE.Views.FormSettings.textKey":"秘钥","DE.Views.FormSettings.textLabel":"附加语","DE.Views.FormSettings.textLang":"语言","DE.Views.FormSettings.textLetters":"字母","DE.Views.FormSettings.textLock":"锁定","DE.Views.FormSettings.textMask":"任意掩模","DE.Views.FormSettings.textMaxChars":"字符限制","DE.Views.FormSettings.textMulti":"多行文本字段","DE.Views.FormSettings.textNever":"从不","DE.Views.FormSettings.textNoBorder":"无边框","DE.Views.FormSettings.textNone":"无","DE.Views.FormSettings.textPhone1":"电话号码(例如(123)456-7890)","DE.Views.FormSettings.textPhone2":"电话号码(例如+44791123456)","DE.Views.FormSettings.textPlaceholder":"占位符","DE.Views.FormSettings.textRadiobox":"单选按钮","DE.Views.FormSettings.textRadioChoice":"单选按钮选项","DE.Views.FormSettings.textRadioDefault":"按钮默认选中","DE.Views.FormSettings.textReg":"正则表达式","DE.Views.FormSettings.textRequired":"必填","DE.Views.FormSettings.textScale":"何時縮放","DE.Views.FormSettings.textSelectImage":"选择图像","DE.Views.FormSettings.textSignature":"签名","DE.Views.FormSettings.textTag":"标签","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.textUKPassport":"英国护照号码(例如925665416)","DE.Views.FormSettings.textUnlock":"解锁","DE.Views.FormSettings.textUSSSN":"美国社会安全码(例如123-45-6789)","DE.Views.FormSettings.textValue":"数值选项","DE.Views.FormSettings.textWidth":"单元格宽度","DE.Views.FormSettings.textZipCodeUS":"美国邮政编码(例如92663或92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"复选框","DE.Views.FormsTab.capBtnComboBox":"下拉式方框","DE.Views.FormsTab.capBtnComplex":"复合字段","DE.Views.FormsTab.capBtnDownloadForm":"下载为 PDF","DE.Views.FormsTab.capBtnDropDown":"下拉菜单","DE.Views.FormsTab.capBtnEmail":"Email地址","DE.Views.FormsTab.capBtnFinal":"标记为最终版本","DE.Views.FormsTab.capBtnImage":"图片","DE.Views.FormsTab.capBtnManager":"管理接收人","DE.Views.FormsTab.capBtnNext":"下一个字段","DE.Views.FormsTab.capBtnPhone":"电话号码","DE.Views.FormsTab.capBtnPrev":"上一个字段","DE.Views.FormsTab.capBtnRadioBox":"单选按钮","DE.Views.FormsTab.capBtnSaveForm":"另存为PDF","DE.Views.FormsTab.capBtnSaveFormDesktop":"另存为...","DE.Views.FormsTab.capBtnSignature":"签名","DE.Views.FormsTab.capBtnSubmit":"提交","DE.Views.FormsTab.capBtnText":"文本字段","DE.Views.FormsTab.capBtnView":"预览","DE.Views.FormsTab.capCreditCard":"信用卡","DE.Views.FormsTab.capDateTime":"日期和时间","DE.Views.FormsTab.capZipCode":"邮编","DE.Views.FormsTab.helpTextFillStatus":"现在可以根据角色填写此表单。单击状态按钮,可检查填写进度。","DE.Views.FormsTab.textAddRole":"添加接收人","DE.Views.FormsTab.textAnyone":"任何人","DE.Views.FormsTab.textClear":"清除字段","DE.Views.FormsTab.textClearFields":"清除所有字段","DE.Views.FormsTab.textCreateForm":"添加字段并创建可填写的PDF文档","DE.Views.FormsTab.textFilled":"已填写","DE.Views.FormsTab.textFillFor":"为其插入字段","DE.Views.FormsTab.textGotIt":"明白","DE.Views.FormsTab.textHighlight":"高亮设置","DE.Views.FormsTab.textNoHighlight":"无高亮","DE.Views.FormsTab.textRequired":"要提交该表单,请填写所有必填字段。","DE.Views.FormsTab.textSubmited":"表单提交成功","DE.Views.FormsTab.textSubmitOk":"您的 PDF 表单已保存,可在“完成”模块访问。","DE.Views.FormsTab.tipCheckBox":"“插入”复选框","DE.Views.FormsTab.tipComboBox":"插入下拉式方框","DE.Views.FormsTab.tipComplexField":"插入复合字段","DE.Views.FormsTab.tipCreateField":"要创建字段,请在工具栏中选择并点击所需的字段类型。该字段将出现在文档中。","DE.Views.FormsTab.tipCreditCard":"插入信用卡号","DE.Views.FormsTab.tipDateTime":"插入日期和时间","DE.Views.FormsTab.tipDownloadForm":"将文件下载为可填充的PDF文档","DE.Views.FormsTab.tipDropDown":"插入下拉列表","DE.Views.FormsTab.tipEmailField":"插入电子邮件地址","DE.Views.FormsTab.tipFieldSettings":"您可以在右侧边栏设置选定的字段。单击此图标可打开字段设置。","DE.Views.FormsTab.tipFieldsLink":"了解更多关于字段参数","DE.Views.FormsTab.tipFinalForm":"标记为最终版本","DE.Views.FormsTab.tipFirstPage":"转到第一页","DE.Views.FormsTab.tipFixedText":"插入固定文本字段","DE.Views.FormsTab.tipFormGroupKey":"对单选按钮进行分组可以更快进行填充。相同名称的选项会进行同步。用户只能勾选该组中的一个单选按钮。","DE.Views.FormsTab.tipFormKey":"您可以给一个字段或一组字段设置密钥。 当用户填写数据时,所有具有相同密钥的字段都将复制该数据。","DE.Views.FormsTab.tipHelpRoles":"使用管理接收人功能,按用途对字段进行分组并分配负责的团队成员。","DE.Views.FormsTab.tipImageField":"插入图片","DE.Views.FormsTab.tipInlineText":"插入内联文本字段","DE.Views.FormsTab.tipLastPage":"转到最后一页","DE.Views.FormsTab.tipManager":"管理接收人","DE.Views.FormsTab.tipNextForm":"跳转到下一个字段","DE.Views.FormsTab.tipNextPage":"跳转到下一页","DE.Views.FormsTab.tipPhoneField":"插入电话号码","DE.Views.FormsTab.tipPrevForm":"跳转到上一个字段","DE.Views.FormsTab.tipPrevPage":"跳转到上一页","DE.Views.FormsTab.tipRadioBox":"插入单选按钮","DE.Views.FormsTab.tipRolesLink":"了解更多关于接收人的信息","DE.Views.FormsTab.tipSaveFile":"点击“另存为pdf”将表单保存为可填写的格式。","DE.Views.FormsTab.tipSaveForm":"将文件另存为可填充的PDF文档","DE.Views.FormsTab.tipSignField":"插入签名","DE.Views.FormsTab.tipSubmit":"提交表单","DE.Views.FormsTab.tipTextField":"插入文本字段","DE.Views.FormsTab.tipViewForm":"预览","DE.Views.FormsTab.tipZipCode":"插入邮政编码","DE.Views.FormsTab.txtFixedDesc":"插入固定文本字段","DE.Views.FormsTab.txtFixedText":"固定","DE.Views.FormsTab.txtInlineDesc":"插入内联文本字段","DE.Views.FormsTab.txtInlineText":"内联","DE.Views.FormsTab.txtSignedForm":"此文档已签署,无法编辑。","DE.Views.FormsTab.txtUntitled":"无标题","DE.Views.HeaderFooterSettings.textBottomCenter":"底部中心","DE.Views.HeaderFooterSettings.textBottomLeft":"左下方","DE.Views.HeaderFooterSettings.textBottomPage":"页面底部","DE.Views.HeaderFooterSettings.textBottomRight":"右下方","DE.Views.HeaderFooterSettings.textDiffFirst":"首页不同","DE.Views.HeaderFooterSettings.textDiffOdd":"奇偶页不同","DE.Views.HeaderFooterSettings.textFrom":"起始编号","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"页脚底端距离","DE.Views.HeaderFooterSettings.textHeaderFromTop":"页眉顶端距离","DE.Views.HeaderFooterSettings.textInsertCurrent":"插入到当前位置","DE.Views.HeaderFooterSettings.textNumFormat":"数字格式","DE.Views.HeaderFooterSettings.textOptions":"选项","DE.Views.HeaderFooterSettings.textPageNum":"插入页码","DE.Views.HeaderFooterSettings.textPageNumbering":"页面编号","DE.Views.HeaderFooterSettings.textPosition":"位置","DE.Views.HeaderFooterSettings.textPrev":"从上一节继续","DE.Views.HeaderFooterSettings.textSameAs":"链接到上一个","DE.Views.HeaderFooterSettings.textTopCenter":"顶部中心","DE.Views.HeaderFooterSettings.textTopLeft":"左上方","DE.Views.HeaderFooterSettings.textTopPage":"页面顶部","DE.Views.HeaderFooterSettings.textTopRight":"右上","DE.Views.HeaderFooterSettings.txtMoreTypes":"更多类型","DE.Views.HeaderFooterTab.capBtnDateTime":"日期和时间","DE.Views.HeaderFooterTab.capBtnInsField":"字段","DE.Views.HeaderFooterTab.capBtnInsImage":"图片","DE.Views.HeaderFooterTab.capCurrentPos":"到当前位置","DE.Views.HeaderFooterTab.capFooterBottom":"页脚底端距离","DE.Views.HeaderFooterTab.capFormatNums":"页面编号","DE.Views.HeaderFooterTab.capHeaderTop":"页眉顶端距离","DE.Views.HeaderFooterTab.capNumOfPages":"页数","DE.Views.HeaderFooterTab.mniImageFromFile":"来自文件的图片","DE.Views.HeaderFooterTab.mniImageFromStorage":"存储设备中的图片","DE.Views.HeaderFooterTab.mniImageFromUrl":"来自URL地址的图片","DE.Views.HeaderFooterTab.tipCloseTab":"关闭选项卡","DE.Views.HeaderFooterTab.tipDateTime":"插入当前日期和时间","DE.Views.HeaderFooterTab.tipHeaderFooter":"编辑页眉或页脚","DE.Views.HeaderFooterTab.tipInsertImage":"插入图片","DE.Views.HeaderFooterTab.tipInsField":"插入域","DE.Views.HeaderFooterTab.tipNumOfPages":"页数","DE.Views.HeaderFooterTab.tipPageNumbering":"页面编号","DE.Views.HeaderFooterTab.txtCloseTab":"关闭","DE.Views.HeaderFooterTab.txtDiffFirst":"首页不同","DE.Views.HeaderFooterTab.txtDiffOddEven":"奇偶页不同","DE.Views.HeaderFooterTab.txtEditFooter":"编辑页脚","DE.Views.HeaderFooterTab.txtEditHeader":"编辑页眉","DE.Views.HeaderFooterTab.txtHeaderFooter":"页眉和页脚","DE.Views.HeaderFooterTab.txtPageNumbering":"页码","DE.Views.HeaderFooterTab.txtRemoveFooter":"删除页脚","DE.Views.HeaderFooterTab.txtRemoveHeader":"删除页眉","DE.Views.HeaderFooterTab.txtSameAs":"链接到上一个","DE.Views.HyperlinkSettingsDialog.textDefault":"所选文本片段","DE.Views.HyperlinkSettingsDialog.textDisplay":"显示","DE.Views.HyperlinkSettingsDialog.textExternal":"外部链接","DE.Views.HyperlinkSettingsDialog.textInternal":"放入文件中","DE.Views.HyperlinkSettingsDialog.textSelectFile":"选择文件","DE.Views.HyperlinkSettingsDialog.textTitle":"链接设置","DE.Views.HyperlinkSettingsDialog.textTooltip":"屏幕提示文字","DE.Views.HyperlinkSettingsDialog.textUrl":"链接到","DE.Views.HyperlinkSettingsDialog.txtBeginning":"文件开头","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.HyperlinkSettingsDialog.txtUrlPlaceholder":"输入网址或选择文件","DE.Views.HyphenationDialog.textAuto":"自动连字符","DE.Views.HyphenationDialog.textCaps":"连字符大写字母","DE.Views.HyphenationDialog.textLimit":"将连续连字符限制为","DE.Views.HyphenationDialog.textNoLimit":"无限制","DE.Views.HyphenationDialog.textTitle":"连字符","DE.Views.HyphenationDialog.textZone":"连字符区","DE.Views.ImageSettings.strTransparency":"透明度","DE.Views.ImageSettings.textAdvanced":"显示高级设置","DE.Views.ImageSettings.textCrop":"裁剪","DE.Views.ImageSettings.textCropFill":"填充","DE.Views.ImageSettings.textCropFit":"适应","DE.Views.ImageSettings.textCropToShape":"裁剪成形状","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":"来自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.textRecentlyUsed":"最近使用的","DE.Views.ImageSettings.textResetCrop":"重置裁剪","DE.Views.ImageSettings.textRotate90":"旋转90°","DE.Views.ImageSettings.textRotation":"旋转","DE.Views.ImageSettings.textSize":"大小","DE.Views.ImageSettings.textWidth":"宽度","DE.Views.ImageSettings.textWrap":"环绕方式","DE.Views.ImageSettings.txtBehind":"衬于文字下方","DE.Views.ImageSettings.txtInFront":"浮于文字上方","DE.Views.ImageSettings.txtInline":"嵌入型","DE.Views.ImageSettings.txtSquare":"四周型","DE.Views.ImageSettings.txtThrough":"穿越型环绕","DE.Views.ImageSettings.txtTight":"紧密型环绕","DE.Views.ImageSettings.txtTopAndBottom":"上下型环绕","DE.Views.ImageSettingsAdvanced.strMargins":"文字內边距","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"绝对","DE.Views.ImageSettingsAdvanced.textAlignment":"对齐","DE.Views.ImageSettingsAdvanced.textAlt":"替代文本","DE.Views.ImageSettingsAdvanced.textAltDescription":"描述","DE.Views.ImageSettingsAdvanced.textAltTip":"视觉对象信息的另一种基于文本的表示方式,将读取给视力或认知障碍的人,以帮助他们更好地理解图像、形状、图表或表格中的信息。","DE.Views.ImageSettingsAdvanced.textAltTitle":"标题","DE.Views.ImageSettingsAdvanced.textAngle":"角度","DE.Views.ImageSettingsAdvanced.textArrows":"箭头","DE.Views.ImageSettingsAdvanced.textAspectRatio":"锁定宽高比","DE.Views.ImageSettingsAdvanced.textAuto":"自动","DE.Views.ImageSettingsAdvanced.textAutofit":"自动适应","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"坐标轴交叉","DE.Views.ImageSettingsAdvanced.textAxisPos":"坐标轴位置","DE.Views.ImageSettingsAdvanced.textAxisTitle":"标题","DE.Views.ImageSettingsAdvanced.textBase":"基线","DE.Views.ImageSettingsAdvanced.textBeginSize":"初始大小","DE.Views.ImageSettingsAdvanced.textBeginStyle":"初始样式","DE.Views.ImageSettingsAdvanced.textBelow":"下面","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"刻度线之间","DE.Views.ImageSettingsAdvanced.textBevel":"斜角","DE.Views.ImageSettingsAdvanced.textBillions":"十亿","DE.Views.ImageSettingsAdvanced.textBottom":"底部","DE.Views.ImageSettingsAdvanced.textBottomMargin":"下边距","DE.Views.ImageSettingsAdvanced.textBtnWrap":"文本环绕","DE.Views.ImageSettingsAdvanced.textCapType":"大写字母样式","DE.Views.ImageSettingsAdvanced.textCategoryName":"分类名称","DE.Views.ImageSettingsAdvanced.textCenter":"中心","DE.Views.ImageSettingsAdvanced.textCharacter":"字符","DE.Views.ImageSettingsAdvanced.textChartTitle":"图表标题","DE.Views.ImageSettingsAdvanced.textColumn":"列","DE.Views.ImageSettingsAdvanced.textCross":"环绕","DE.Views.ImageSettingsAdvanced.textCustom":"自定义","DE.Views.ImageSettingsAdvanced.textDataLabels":"数据标签","DE.Views.ImageSettingsAdvanced.textDistance":"与文本的间距","DE.Views.ImageSettingsAdvanced.textEndSize":"末端尺寸","DE.Views.ImageSettingsAdvanced.textEndStyle":"结束样式","DE.Views.ImageSettingsAdvanced.textFit":"适合宽度","DE.Views.ImageSettingsAdvanced.textFixed":"固定","DE.Views.ImageSettingsAdvanced.textFlat":"平面","DE.Views.ImageSettingsAdvanced.textFlipped":"已翻转的","DE.Views.ImageSettingsAdvanced.textFormat":"标签格式","DE.Views.ImageSettingsAdvanced.textGridLines":"网格线","DE.Views.ImageSettingsAdvanced.textHeight":"高度","DE.Views.ImageSettingsAdvanced.textHideAxis":"隐藏轴","DE.Views.ImageSettingsAdvanced.textHigh":"高","DE.Views.ImageSettingsAdvanced.textHorAxis":"横轴","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"次横轴","DE.Views.ImageSettingsAdvanced.textHorizontal":"水平的","DE.Views.ImageSettingsAdvanced.textHorizontally":"水平地","DE.Views.ImageSettingsAdvanced.textHundredMil":"100 000 000","DE.Views.ImageSettingsAdvanced.textHundreds":"百","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100 000","DE.Views.ImageSettingsAdvanced.textIn":"嵌入","DE.Views.ImageSettingsAdvanced.textInnerBottom":"内侧底部","DE.Views.ImageSettingsAdvanced.textInnerTop":"内侧顶部","DE.Views.ImageSettingsAdvanced.textJoinType":"加入类型","DE.Views.ImageSettingsAdvanced.textKeepRatio":"恒定比例","DE.Views.ImageSettingsAdvanced.textLabelDist":"坐标轴标签距离","DE.Views.ImageSettingsAdvanced.textLabelInterval":"标签之间的间隔","DE.Views.ImageSettingsAdvanced.textLabelOptions":"标签选项","DE.Views.ImageSettingsAdvanced.textLabelPos":"标签位置","DE.Views.ImageSettingsAdvanced.textLayout":"布局","DE.Views.ImageSettingsAdvanced.textLeft":"左","DE.Views.ImageSettingsAdvanced.textLeftMargin":"左边距","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"左侧覆盖","DE.Views.ImageSettingsAdvanced.textLegendBottom":"底部","DE.Views.ImageSettingsAdvanced.textLegendLeft":"左","DE.Views.ImageSettingsAdvanced.textLegendPos":"图例","DE.Views.ImageSettingsAdvanced.textLegendRight":"右","DE.Views.ImageSettingsAdvanced.textLegendTop":"顶部","DE.Views.ImageSettingsAdvanced.textLine":"边框","DE.Views.ImageSettingsAdvanced.textLines":"行","DE.Views.ImageSettingsAdvanced.textLineStyle":"线样式","DE.Views.ImageSettingsAdvanced.textLogScale":"对数刻度","DE.Views.ImageSettingsAdvanced.textLow":"低","DE.Views.ImageSettingsAdvanced.textMajor":"主要","DE.Views.ImageSettingsAdvanced.textMajorMinor":"主要和次要","DE.Views.ImageSettingsAdvanced.textMajorType":"主要类型","DE.Views.ImageSettingsAdvanced.textManual":"手动","DE.Views.ImageSettingsAdvanced.textMargin":"边距","DE.Views.ImageSettingsAdvanced.textMarkers":"标记","DE.Views.ImageSettingsAdvanced.textMarksInterval":"标记之间的间隔","DE.Views.ImageSettingsAdvanced.textMaxValue":"最大值","DE.Views.ImageSettingsAdvanced.textMillions":"百万","DE.Views.ImageSettingsAdvanced.textMinor":"次要","DE.Views.ImageSettingsAdvanced.textMinorType":"次要类型","DE.Views.ImageSettingsAdvanced.textMinValue":"最小值","DE.Views.ImageSettingsAdvanced.textMiter":"斜接角","DE.Views.ImageSettingsAdvanced.textMove":"移动带文本的对象","DE.Views.ImageSettingsAdvanced.textNextToAxis":"在轴旁边","DE.Views.ImageSettingsAdvanced.textNone":"无","DE.Views.ImageSettingsAdvanced.textNoOverlay":"不覆盖","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"刻度标记","DE.Views.ImageSettingsAdvanced.textOptions":"选项","DE.Views.ImageSettingsAdvanced.textOriginalSize":"实际大小","DE.Views.ImageSettingsAdvanced.textOut":"环绕","DE.Views.ImageSettingsAdvanced.textOuterTop":"外侧顶部","DE.Views.ImageSettingsAdvanced.textOverlap":"允许重叠","DE.Views.ImageSettingsAdvanced.textOverlay":"覆盖","DE.Views.ImageSettingsAdvanced.textPage":"页面","DE.Views.ImageSettingsAdvanced.textParagraph":"段落","DE.Views.ImageSettingsAdvanced.textPosition":"位置","DE.Views.ImageSettingsAdvanced.textPositionPc":"相对位置","DE.Views.ImageSettingsAdvanced.textRelative":"相对于","DE.Views.ImageSettingsAdvanced.textRelativeWH":"相对的","DE.Views.ImageSettingsAdvanced.textResizeFit":"调整形状大小以适应文本","DE.Views.ImageSettingsAdvanced.textReverse":"值逆序显示","DE.Views.ImageSettingsAdvanced.textRight":"右","DE.Views.ImageSettingsAdvanced.textRightMargin":"右页边距","DE.Views.ImageSettingsAdvanced.textRightOf":"在 - 的右边","DE.Views.ImageSettingsAdvanced.textRightOverlay":"右侧覆盖","DE.Views.ImageSettingsAdvanced.textRotated":"已旋转","DE.Views.ImageSettingsAdvanced.textRotation":"旋转","DE.Views.ImageSettingsAdvanced.textRound":"圆","DE.Views.ImageSettingsAdvanced.textSeparator":"数据标签分隔符","DE.Views.ImageSettingsAdvanced.textSeriesName":"系列名称","DE.Views.ImageSettingsAdvanced.textShape":"形状设置","DE.Views.ImageSettingsAdvanced.textSize":"大小","DE.Views.ImageSettingsAdvanced.textSmooth":"平滑","DE.Views.ImageSettingsAdvanced.textSquare":"四周型","DE.Views.ImageSettingsAdvanced.textStraight":"校直","DE.Views.ImageSettingsAdvanced.textTenMillions":"10 000 000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10 000","DE.Views.ImageSettingsAdvanced.textTextBox":"文本框","DE.Views.ImageSettingsAdvanced.textThousands":"千","DE.Views.ImageSettingsAdvanced.textTickOptions":"勾选选项","DE.Views.ImageSettingsAdvanced.textTitle":"图片 - 高级设置","DE.Views.ImageSettingsAdvanced.textTitleChart":"图表 - 高级设置","DE.Views.ImageSettingsAdvanced.textTitleShape":"形状 - 高级设置","DE.Views.ImageSettingsAdvanced.textTop":"顶部","DE.Views.ImageSettingsAdvanced.textTopMargin":"上边距","DE.Views.ImageSettingsAdvanced.textTrillions":"万亿","DE.Views.ImageSettingsAdvanced.textUnits":"显示单位","DE.Views.ImageSettingsAdvanced.textValue":"值","DE.Views.ImageSettingsAdvanced.textVertAxis":"纵轴","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"次纵轴","DE.Views.ImageSettingsAdvanced.textVertical":"垂直","DE.Views.ImageSettingsAdvanced.textVertically":"垂直地","DE.Views.ImageSettingsAdvanced.textWeightArrows":"權重與箭頭","DE.Views.ImageSettingsAdvanced.textWidth":"宽度","DE.Views.ImageSettingsAdvanced.textWrap":"环绕方式","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"衬于文字下方","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"浮于文字上方","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"嵌入型","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"四周型","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"穿越型环绕","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"紧密型环绕","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"上下型环绕","DE.Views.LeftMenu.ariaLeftMenu":"左侧菜单","DE.Views.LeftMenu.tipAbout":"关于","DE.Views.LeftMenu.tipChat":"聊天","DE.Views.LeftMenu.tipComments":"批注","DE.Views.LeftMenu.tipNavigation":"导航","DE.Views.LeftMenu.tipOutline":"标题","DE.Views.LeftMenu.tipPageThumbnails":"页面缩略图","DE.Views.LeftMenu.tipPlugins":"插件","DE.Views.LeftMenu.tipSearch":"搜索","DE.Views.LeftMenu.tipSupport":"反馈和支持","DE.Views.LeftMenu.tipTitles":"标题","DE.Views.LeftMenu.txtDeveloper":"开发者模式","DE.Views.LeftMenu.txtEditor":"文档编辑器","DE.Views.LeftMenu.txtLimit":"限制访问","DE.Views.LeftMenu.txtTrial":"试用模式","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":"此处起始","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.capBtnAddText":"添加文字","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.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.tipAddText":"在目录中包括标题","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.Links.txtDontShowTof":"不显示在目录中","DE.Views.Links.txtLevel":"级别","DE.Views.ListIndentsDialog.textSpace":"空格","DE.Views.ListIndentsDialog.textTab":"标签字符","DE.Views.ListIndentsDialog.textTitle":"列表缩进","DE.Views.ListIndentsDialog.txtFollowBullet":"跟随项目符号","DE.Views.ListIndentsDialog.txtFollowNumber":"跟随数字","DE.Views.ListIndentsDialog.txtIndent":"文字缩进","DE.Views.ListIndentsDialog.txtNone":"无","DE.Views.ListIndentsDialog.txtPosBullet":"项目符号位置","DE.Views.ListIndentsDialog.txtPosNumber":"编号位置","DE.Views.ListSettingsDialog.textAuto":"自动","DE.Views.ListSettingsDialog.textBold":"粗体","DE.Views.ListSettingsDialog.textCenter":"中心","DE.Views.ListSettingsDialog.textHide":"隐藏设置","DE.Views.ListSettingsDialog.textItalic":"斜体","DE.Views.ListSettingsDialog.textLeft":"左","DE.Views.ListSettingsDialog.textLevel":"级别","DE.Views.ListSettingsDialog.textMore":"显示更多设置","DE.Views.ListSettingsDialog.textPreview":"预览","DE.Views.ListSettingsDialog.textRight":"右","DE.Views.ListSettingsDialog.textSelectLevel":"选择级别","DE.Views.ListSettingsDialog.textSpace":"空格","DE.Views.ListSettingsDialog.textTab":"标签字符","DE.Views.ListSettingsDialog.txtAlign":"对齐","DE.Views.ListSettingsDialog.txtAlignAt":"在","DE.Views.ListSettingsDialog.txtBullet":"项目符号","DE.Views.ListSettingsDialog.txtColor":"颜色","DE.Views.ListSettingsDialog.txtFollow":"跟随数字","DE.Views.ListSettingsDialog.txtFontName":"字体 ","DE.Views.ListSettingsDialog.txtInclcudeLevel":"包括级别编号","DE.Views.ListSettingsDialog.txtIndent":"文字缩进","DE.Views.ListSettingsDialog.txtLikeText":"像文字","DE.Views.ListSettingsDialog.txtMoreTypes":"更多类型","DE.Views.ListSettingsDialog.txtNewBullet":"新项目符号","DE.Views.ListSettingsDialog.txtNone":"无","DE.Views.ListSettingsDialog.txtNumFormatString":"数字格式","DE.Views.ListSettingsDialog.txtRestart":"重新启动列表","DE.Views.ListSettingsDialog.txtSize":"大小","DE.Views.ListSettingsDialog.txtStart":"起始编号","DE.Views.ListSettingsDialog.txtSymbol":"符号","DE.Views.ListSettingsDialog.txtTabStop":"在添加制表位","DE.Views.ListSettingsDialog.txtTitle":"列表设置","DE.Views.ListSettingsDialog.txtType":"类型","DE.Views.ListTypesAdvanced.labelSelect":"选择列表类型","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"发送","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"主题","DE.Views.MailMergeEmailDlg.textAttachDocx":"附加为DOCX","DE.Views.MailMergeEmailDlg.textAttachPdf":"附加为PDF","DE.Views.MailMergeEmailDlg.textFileName":"文件名","DE.Views.MailMergeEmailDlg.textFormat":"邮件格式","DE.Views.MailMergeEmailDlg.textFrom":"从","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"消息","DE.Views.MailMergeEmailDlg.textSubject":"主旨行","DE.Views.MailMergeEmailDlg.textTitle":"发送到电子邮件","DE.Views.MailMergeEmailDlg.textTo":"到","DE.Views.MailMergeEmailDlg.textWarning":"警告!","DE.Views.MailMergeEmailDlg.textWarningMsg":"请注意,一旦您点击“发送”按钮,邮件无法停止。","DE.Views.MailMergeSettings.downloadMergeTitle":"合并","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"合并失败","DE.Views.MailMergeSettings.notcriticalErrorTitle":"警告","DE.Views.MailMergeSettings.textAddRecipients":"首先在列表中添加接收人","DE.Views.MailMergeSettings.textAll":"所有记录","DE.Views.MailMergeSettings.textCurrent":"当前记录","DE.Views.MailMergeSettings.textDataSource":"数据来源","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"下载","DE.Views.MailMergeSettings.textEditData":"编辑接收人列表","DE.Views.MailMergeSettings.textEmail":"电邮","DE.Views.MailMergeSettings.textFrom":"从","DE.Views.MailMergeSettings.textGoToMail":"转到邮件","DE.Views.MailMergeSettings.textHighlight":"高亮显示合并字段","DE.Views.MailMergeSettings.textInsertField":"插入合并字段","DE.Views.MailMergeSettings.textMaxRecepients":"最多100位接收人。","DE.Views.MailMergeSettings.textMerge":"合并","DE.Views.MailMergeSettings.textMergeFields":"合并字段","DE.Views.MailMergeSettings.textMergeTo":"合并到","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"保存","DE.Views.MailMergeSettings.textPreview":"预览结果","DE.Views.MailMergeSettings.textReadMore":"了解更多","DE.Views.MailMergeSettings.textSendMsg":"所有邮件都已准备就绪,并会在一段时间内发出。
邮件的速度取决于您的邮件服务,您可以继续使用文档或关闭它。操作结束后,通知将发送到您的注册邮箱地址。","DE.Views.MailMergeSettings.textTo":"到","DE.Views.MailMergeSettings.txtFirst":"到第一个记录","DE.Views.MailMergeSettings.txtFromToError":"“从”值必须小于“到”值","DE.Views.MailMergeSettings.txtLast":"到最后一个记录","DE.Views.MailMergeSettings.txtNext":"跳转到下一个记录","DE.Views.MailMergeSettings.txtPrev":"跳转到上一条记录","DE.Views.MailMergeSettings.txtUntitled":"无标题","DE.Views.MailMergeSettings.warnProcessMailMerge":"启动合并失败","DE.Views.Navigation.strNavigate":"标题","DE.Views.Navigation.txtClosePanel":"关闭标题","DE.Views.Navigation.txtCollapse":"折叠全部","DE.Views.Navigation.txtDemote":"使降级","DE.Views.Navigation.txtEmpty":"文档中没有标题
对文本应用标题样式,使其显示在目录中。","DE.Views.Navigation.txtEmptyItem":"空标题","DE.Views.Navigation.txtEmptyViewer":"文档中没有标题。","DE.Views.Navigation.txtExpand":"展开全部","DE.Views.Navigation.txtExpandToLevel":"展开到级别","DE.Views.Navigation.txtFontSize":"字体大小","DE.Views.Navigation.txtHeadingAfter":"之后的新标题","DE.Views.Navigation.txtHeadingBefore":"之前的新标题","DE.Views.Navigation.txtLarge":"大","DE.Views.Navigation.txtMedium":"中","DE.Views.Navigation.txtNewHeading":"新的副标题","DE.Views.Navigation.txtPromote":"提升","DE.Views.Navigation.txtSelect":"选择内容","DE.Views.Navigation.txtSettings":"标题设置","DE.Views.Navigation.txtSmall":"小","DE.Views.Navigation.txtWrapHeadings":"换行长标题","DE.Views.NoteSettingsDialog.textApply":"应用","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":"格式","DE.Views.NoteSettingsDialog.textInsert":"插入","DE.Views.NoteSettingsDialog.textLocation":"位置","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":"下","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":"边距","DE.Views.PageMarginsDialog.textTop":"上","DE.Views.PageMarginsDialog.txtMarginsH":"顶部和底部边距对于给定的页面高度来说太高","DE.Views.PageMarginsDialog.txtMarginsW":"对于给定的页面宽度,左右边距太宽","DE.Views.PageNumberingDlg.textFrom":"开始于","DE.Views.PageNumberingDlg.textMoreTypes":"更多类型","DE.Views.PageNumberingDlg.textNumberFormat":"数字格式","DE.Views.PageNumberingDlg.textPrev":"从上一节继续","DE.Views.PageSizeDialog.textHeight":"高度","DE.Views.PageSizeDialog.textPreset":"预设置","DE.Views.PageSizeDialog.textTitle":"页面大小","DE.Views.PageSizeDialog.textWidth":"宽度","DE.Views.PageSizeDialog.txtCustom":"自定义","DE.Views.PageThumbnails.textClosePanel":"关闭页面缩略图","DE.Views.PageThumbnails.textHighlightVisiblePart":"高亮显示页面的可见部分","DE.Views.PageThumbnails.textPageThumbnails":"页面缩略图","DE.Views.PageThumbnails.textThumbnailsSettings":"缩略图设置","DE.Views.PageThumbnails.textThumbnailsSize":"缩略图大小","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.strSpacingAfter":"之后","DE.Views.ParagraphSettings.strSpacingBefore":"之前","DE.Views.ParagraphSettings.textAdvanced":"显示高级设置","DE.Views.ParagraphSettings.textAt":"在","DE.Views.ParagraphSettings.textAtLeast":"最小值","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":"指定的选项卡将显示在此字段中","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"全部大写","DE.Views.ParagraphSettingsAdvanced.strBorders":"边框和填充","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"段前分页","DE.Views.ParagraphSettingsAdvanced.strDirection":"方向","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"双删除线","DE.Views.ParagraphSettingsAdvanced.strIndent":"缩进","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","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":"內距","DE.Views.ParagraphSettingsAdvanced.strOrphan":"孤行控制","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"字体 ","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"缩进和间距","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"换行符和分页符","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"放置","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型大写字母","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"不要在相同样式的段落之间添加间隔","DE.Views.ParagraphSettingsAdvanced.strSpacing":"间距","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.textAll":"全部","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"最小值","DE.Views.ParagraphSettingsAdvanced.textAuto":"多倍行距","DE.Views.ParagraphSettingsAdvanced.textBackColor":"背景颜色","DE.Views.ParagraphSettingsAdvanced.textBodyText":"基本文字","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"边框颜色","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"点击图表或使用按钮选择边框,并将选择的样式应用于它们","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"边框大小","DE.Views.ParagraphSettingsAdvanced.textBottom":"底部","DE.Views.ParagraphSettingsAdvanced.textCentered":"居中","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"字符间距","DE.Views.ParagraphSettingsAdvanced.textContext":"上下文的","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"上下文和自行决定","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"上下文、历史和自由决定","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"上下文和历史","DE.Views.ParagraphSettingsAdvanced.textDefault":"默认选项卡","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"从左到右","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"从右到左","DE.Views.ParagraphSettingsAdvanced.textDiscret":"任意的","DE.Views.ParagraphSettingsAdvanced.textEffects":"效果","DE.Views.ParagraphSettingsAdvanced.textExact":"固定值","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"第一行","DE.Views.ParagraphSettingsAdvanced.textHanging":"悬挂","DE.Views.ParagraphSettingsAdvanced.textHistorical":"历史的","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"有根据的与随意的","DE.Views.ParagraphSettingsAdvanced.textJustified":"两端对齐","DE.Views.ParagraphSettingsAdvanced.textLeader":"领导","DE.Views.ParagraphSettingsAdvanced.textLeft":"左","DE.Views.ParagraphSettingsAdvanced.textLevel":"级别","DE.Views.ParagraphSettingsAdvanced.textLigatures":"连字","DE.Views.ParagraphSettingsAdvanced.textNone":"无","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(无)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"OpenType 功能","DE.Views.ParagraphSettingsAdvanced.textPosition":"位置","DE.Views.ParagraphSettingsAdvanced.textRemove":"删除","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"删除所有","DE.Views.ParagraphSettingsAdvanced.textRight":"右","DE.Views.ParagraphSettingsAdvanced.textSet":"指定","DE.Views.ParagraphSettingsAdvanced.textSpacing":"间距","DE.Views.ParagraphSettingsAdvanced.textStandard":"仅限标准","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"标准与上下文","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"标准、情境和选择性","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"标准、情境和历史","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"标准和选择性","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"标准、历史和选择性","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"标准与历史","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"中心","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"标签的位置","DE.Views.ParagraphSettingsAdvanced.textTabRight":"右","DE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 高级设置","DE.Views.ParagraphSettingsAdvanced.textTop":"顶部","DE.Views.ParagraphSettingsAdvanced.tipAll":"设置外边框和所有内框线","DE.Views.ParagraphSettingsAdvanced.tipBottom":"仅设置底部边框","DE.Views.ParagraphSettingsAdvanced.tipInner":"仅设置水平内框线","DE.Views.ParagraphSettingsAdvanced.tipLeft":"仅设定内部框线","DE.Views.ParagraphSettingsAdvanced.tipNone":"设置无边框","DE.Views.ParagraphSettingsAdvanced.tipOuter":"仅设定外部边框","DE.Views.ParagraphSettingsAdvanced.tipRight":"仅设置右边框","DE.Views.ParagraphSettingsAdvanced.tipTop":"仅设定上边框","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"自动","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"无边框","DE.Views.PrintWithPreview.textMarginsLast":"上次自定义","DE.Views.PrintWithPreview.textMarginsModerate":"中等","DE.Views.PrintWithPreview.textMarginsNarrow":"窄","DE.Views.PrintWithPreview.textMarginsNormal":"常规","DE.Views.PrintWithPreview.textMarginsWide":"宽","DE.Views.PrintWithPreview.txtAllPages":"所有页面","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"黑白打印","DE.Views.PrintWithPreview.txtBothSides":"双面打印","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"长边翻页","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"短边翻页","DE.Views.PrintWithPreview.txtBottom":"下","DE.Views.PrintWithPreview.txtColorPrinting":"彩色打印","DE.Views.PrintWithPreview.txtCopies":"副本","DE.Views.PrintWithPreview.txtCurrentPage":"当前页面","DE.Views.PrintWithPreview.txtCustom":"自定义","DE.Views.PrintWithPreview.txtCustomPages":"自定义打印","DE.Views.PrintWithPreview.txtLandscape":"橫向","DE.Views.PrintWithPreview.txtLeft":"左","DE.Views.PrintWithPreview.txtMargins":"边距","DE.Views.PrintWithPreview.txtOf":"共 {0} 页","DE.Views.PrintWithPreview.txtOneSide":"单面打印","DE.Views.PrintWithPreview.txtOneSideDesc":"只打印单面","DE.Views.PrintWithPreview.txtPage":"页面","DE.Views.PrintWithPreview.txtPageNumInvalid":"页码无效","DE.Views.PrintWithPreview.txtPageOrientation":"页面方向","DE.Views.PrintWithPreview.txtPages":"页面","DE.Views.PrintWithPreview.txtPageSize":"页面大小","DE.Views.PrintWithPreview.txtPortrait":"纵向","DE.Views.PrintWithPreview.txtPrint":"打印","DE.Views.PrintWithPreview.txtPrinter":"打印机","DE.Views.PrintWithPreview.txtPrinterNotSelected":"未选择打印机","DE.Views.PrintWithPreview.txtPrintersNotFound":"未找到打印机","DE.Views.PrintWithPreview.txtPrintPdf":"打印为 PDF","DE.Views.PrintWithPreview.txtPrintRange":"打印范围","DE.Views.PrintWithPreview.txtPrintSides":"打印面","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"使用系统对话框打印","DE.Views.PrintWithPreview.txtRight":"右","DE.Views.PrintWithPreview.txtSelection":"选择","DE.Views.PrintWithPreview.txtTop":"顶部","DE.Views.PrintWithPreview.txtWaitingForPrinters":"正在等待打印机","DE.Views.ProtectDialog.textComments":"批注","DE.Views.ProtectDialog.textForms":"填写表单","DE.Views.ProtectDialog.textReview":"跟踪的更改","DE.Views.ProtectDialog.textView":"不能更改(只读)","DE.Views.ProtectDialog.txtAllow":"仅允许在文档中进行此类型的编辑","DE.Views.ProtectDialog.txtIncorrectPwd":"确认密码不相同","DE.Views.ProtectDialog.txtLimit":"密码限制为15个字符","DE.Views.ProtectDialog.txtOptional":"可选的","DE.Views.ProtectDialog.txtPassword":"密码","DE.Views.ProtectDialog.txtProtect":"保护","DE.Views.ProtectDialog.txtRepeat":"重复密码","DE.Views.ProtectDialog.txtTitle":"保护","DE.Views.ProtectDialog.txtWarning":"警告:如果您丢失或忘记了密码,则无法恢复。请把它放在安全的地方。","DE.Views.RightMenu.ariaRightMenu":"右侧菜单","DE.Views.RightMenu.txtChartSettings":"图表设置","DE.Views.RightMenu.txtFormSettings":"表单设置","DE.Views.RightMenu.txtHeaderFooterSettings":"页眉和页脚设置","DE.Views.RightMenu.txtImageSettings":"图像设置","DE.Views.RightMenu.txtMailMergeSettings":"邮件合并设置","DE.Views.RightMenu.txtParagraphSettings":"段落设置","DE.Views.RightMenu.txtShapeSettings":"形状设置","DE.Views.RightMenu.txtSignatureSettings":"签名设置","DE.Views.RightMenu.txtTableSettings":"表格设置","DE.Views.RightMenu.txtTextArtSettings":"艺术字设置","DE.Views.RoleDeleteDlg.textLabel":"如要删除此接收人,您需要将与其关联的字段移动到另一个接收人。","DE.Views.RoleDeleteDlg.textSelect":"选择用于字段合并的接收人","DE.Views.RoleDeleteDlg.textTitle":"删除接收人","DE.Views.RoleEditDlg.errNameExists":"已存在该接收人名称。","DE.Views.RoleEditDlg.textEmptyError":"接收人名称不能为空。","DE.Views.RoleEditDlg.textName":"接收人名称","DE.Views.RoleEditDlg.textNameEx":"例如:申请人、客户、销售代表","DE.Views.RoleEditDlg.textNoHighlight":"无高亮","DE.Views.RoleEditDlg.txtTitleEdit":"编辑接收人","DE.Views.RoleEditDlg.txtTitleNew":"创建新接收人","DE.Views.RolesManagerDlg.textAnyone":"任何人","DE.Views.RolesManagerDlg.textDelete":"删除","DE.Views.RolesManagerDlg.textDeleteLast":"是否确定要删除接收人{0}?
删除后,将创建默认接收人。","DE.Views.RolesManagerDlg.textDescription":"添加接收人并设置填写人接收和签署文档的顺序","DE.Views.RolesManagerDlg.textDown":"向下移动接收人","DE.Views.RolesManagerDlg.textEdit":"编辑","DE.Views.RolesManagerDlg.textEmpty":"尚未创建任何接收人。
至少创建一个接收人,它将显示在此字段中。","DE.Views.RolesManagerDlg.textNew":"新建","DE.Views.RolesManagerDlg.textUp":"向上移动接收人","DE.Views.RolesManagerDlg.txtTitle":"管理接收人","DE.Views.RolesManagerDlg.warnCantDelete":"无法删除此接收人,因为它有关联的字段。","DE.Views.RolesManagerDlg.warnDelete":"是否确定要删除接收人{0}?","DE.Views.SaveFormDlg.saveButtonText":"保存","DE.Views.SaveFormDlg.textAnyone":"任何人","DE.Views.SaveFormDlg.textDescription":"保存为PDF时,只有具有字段的接收人会被添加到填写列表中","DE.Views.SaveFormDlg.textEmpty":"没有与字段关联的接收人。","DE.Views.SaveFormDlg.textFill":"填写清单","DE.Views.SaveFormDlg.txtTitle":"另存为表单","DE.Views.ShapeSettings.strBackground":"背景颜色","DE.Views.ShapeSettings.strChange":"更改形状","DE.Views.ShapeSettings.strColor":"颜色","DE.Views.ShapeSettings.strFill":"填充","DE.Views.ShapeSettings.strForeground":"前景色","DE.Views.ShapeSettings.strPattern":"图案","DE.Views.ShapeSettings.strShadow":"显示阴影","DE.Views.ShapeSettings.strSize":"粗细","DE.Views.ShapeSettings.strStroke":"边框","DE.Views.ShapeSettings.strTransparency":"不透明度","DE.Views.ShapeSettings.strType":"类型","DE.Views.ShapeSettings.textAdjustShadow":"调整阴影","DE.Views.ShapeSettings.textAdvanced":"显示高级设置","DE.Views.ShapeSettings.textAngle":"角度","DE.Views.ShapeSettings.textBorderSizeErr":"输入的值不正确。
请输入介于0 pt和1584 pt之间的值。","DE.Views.ShapeSettings.textColor":"颜色填充","DE.Views.ShapeSettings.textDirection":"方向","DE.Views.ShapeSettings.textEditPoints":"编辑点","DE.Views.ShapeSettings.textEditShape":"编辑形状","DE.Views.ShapeSettings.textEmptyPattern":"无图案","DE.Views.ShapeSettings.textEyedropper":"拾色器","DE.Views.ShapeSettings.textFlip":"翻转","DE.Views.ShapeSettings.textFromFile":"从文件导入","DE.Views.ShapeSettings.textFromStorage":"来自存储设备","DE.Views.ShapeSettings.textFromUrl":"来自URL","DE.Views.ShapeSettings.textGradient":"渐变点","DE.Views.ShapeSettings.textGradientFill":"渐变填充","DE.Views.ShapeSettings.textHint270":"逆时针旋转90°","DE.Views.ShapeSettings.textHint90":"顺时针旋转90°","DE.Views.ShapeSettings.textHintFlipH":"水平翻转","DE.Views.ShapeSettings.textHintFlipV":"垂直翻转","DE.Views.ShapeSettings.textImageTexture":"图片或纹理","DE.Views.ShapeSettings.textLinear":"线性","DE.Views.ShapeSettings.textMoreColors":"更多颜色","DE.Views.ShapeSettings.textNoFill":"无填充","DE.Views.ShapeSettings.textNoShadow":"无阴影","DE.Views.ShapeSettings.textPatternFill":"图案","DE.Views.ShapeSettings.textPosition":"位置","DE.Views.ShapeSettings.textRadial":"径向","DE.Views.ShapeSettings.textRecentlyUsed":"最近使用的","DE.Views.ShapeSettings.textRotate90":"旋转90°","DE.Views.ShapeSettings.textRotation":"旋转","DE.Views.ShapeSettings.textSelectImage":"选择图片","DE.Views.ShapeSettings.textSelectTexture":"选择","DE.Views.ShapeSettings.textShadow":"阴影","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":"衬于文字下方","DE.Views.ShapeSettings.txtBrownPaper":"牛皮纸","DE.Views.ShapeSettings.txtCanvas":"画布","DE.Views.ShapeSettings.txtCarton":"纸箱","DE.Views.ShapeSettings.txtDarkFabric":"深色面料","DE.Views.ShapeSettings.txtGrain":"纹理","DE.Views.ShapeSettings.txtGranite":"花岗岩","DE.Views.ShapeSettings.txtGreyPaper":"灰纸","DE.Views.ShapeSettings.txtInFront":"浮于文字上方","DE.Views.ShapeSettings.txtInline":"嵌入型","DE.Views.ShapeSettings.txtKnit":"针织","DE.Views.ShapeSettings.txtLeather":"皮革","DE.Views.ShapeSettings.txtNoBorders":"无边框","DE.Views.ShapeSettings.txtOffsetBottom":"偏移:下","DE.Views.ShapeSettings.txtOffsetBottomLeft":"偏移:左下","DE.Views.ShapeSettings.txtOffsetBottomRight":"偏移:右下","DE.Views.ShapeSettings.txtOffsetCenter":"偏移:中心","DE.Views.ShapeSettings.txtOffsetLeft":"偏移:左","DE.Views.ShapeSettings.txtOffsetRight":"偏移:右","DE.Views.ShapeSettings.txtOffsetTop":"偏移:上","DE.Views.ShapeSettings.txtOffsetTopLeft":"偏移:左上","DE.Views.ShapeSettings.txtOffsetTopRight":"偏移:右上","DE.Views.ShapeSettings.txtPapyrus":"纸莎草","DE.Views.ShapeSettings.txtSquare":"四周型","DE.Views.ShapeSettings.txtThrough":"穿越型环绕","DE.Views.ShapeSettings.txtTight":"紧密型环绕","DE.Views.ShapeSettings.txtTopAndBottom":"上下型环绕","DE.Views.ShapeSettings.txtWood":"木頭","DE.Views.SignatureSettings.notcriticalErrorTitle":"警告","DE.Views.SignatureSettings.strDelete":"删除签名","DE.Views.SignatureSettings.strDetails":"签名详细信息","DE.Views.SignatureSettings.strInvalid":"无效签名","DE.Views.SignatureSettings.strRequested":"请求的签名","DE.Views.SignatureSettings.strSetup":"签名设置","DE.Views.SignatureSettings.strSign":"签署","DE.Views.SignatureSettings.strSignature":"签名","DE.Views.SignatureSettings.strSigner":"签名人","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.txtSignedForm":"此文档已签署,无法编辑。","DE.Views.SignatureSettings.txtSignedInvalid":"文件中的一些数字签名无效或无法验证。该文件受到保护,无法编辑。","DE.Views.Statusbar.goToPageText":"转到页面","DE.Views.Statusbar.pageIndexText":"第{0}页共{1}页","DE.Views.Statusbar.tipFitPage":"调整至页面大小","DE.Views.Statusbar.tipFitWidth":"调整至合适宽度","DE.Views.Statusbar.tipHandTool":"手动工具","DE.Views.Statusbar.tipMultiplePages":"多页","DE.Views.Statusbar.tipSelectTool":"选择工具","DE.Views.Statusbar.tipSetLang":"設定文字語言","DE.Views.Statusbar.tipZoomFactor":"縮放","DE.Views.Statusbar.tipZoomIn":"放大","DE.Views.Statusbar.tipZoomOut":"缩小","DE.Views.Statusbar.txtPageNumInvalid":"页码无效","DE.Views.Statusbar.txtPages":"页面","DE.Views.Statusbar.txtParagraphs":"段落","DE.Views.Statusbar.txtSpaces":"含空格的符号","DE.Views.Statusbar.txtSymbols":"符号","DE.Views.Statusbar.txtWordCount":"字数统计","DE.Views.Statusbar.txtWords":"单词","DE.Views.StyleTitleDialog.textHeader":"新建样式","DE.Views.StyleTitleDialog.textNextStyle":"下一段样式","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.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":"删除列","DE.Views.TableSettings.deleteRowText":"删除行","DE.Views.TableSettings.deleteTableText":"删除表格","DE.Views.TableSettings.insertColumnLeftText":"向左插入列","DE.Views.TableSettings.insertColumnRightText":"向右插入列","DE.Views.TableSettings.insertRowAboveText":"在上方插入行","DE.Views.TableSettings.insertRowBelowText":"在下方插入行","DE.Views.TableSettings.mergeCellsText":"合并单元格","DE.Views.TableSettings.selectCellText":"选择单元格","DE.Views.TableSettings.selectColumnText":"选择列","DE.Views.TableSettings.selectRowText":"选择行","DE.Views.TableSettings.selectTableText":"选择表格","DE.Views.TableSettings.splitCellsText":"拆分单元格","DE.Views.TableSettings.splitCellTitleText":"拆分单元格","DE.Views.TableSettings.strRepeatRow":"在每页顶部重复标题行","DE.Views.TableSettings.textAddFormula":"添加公式","DE.Views.TableSettings.textAdvanced":"显示高级设置","DE.Views.TableSettings.textAutofit":"根据内容自动调整大小","DE.Views.TableSettings.textBackColor":"背景颜色","DE.Views.TableSettings.textBanded":"镶边","DE.Views.TableSettings.textBorderColor":"颜色","DE.Views.TableSettings.textBorders":"边框样式","DE.Views.TableSettings.textCellSize":"行和列的大小","DE.Views.TableSettings.textColumns":"列","DE.Views.TableSettings.textConvert":"把表格转换为文本","DE.Views.TableSettings.textDistributeCols":"分布列","DE.Views.TableSettings.textDistributeRows":"分布行","DE.Views.TableSettings.textEdit":"行和列","DE.Views.TableSettings.textEmptyTemplate":"没有模板","DE.Views.TableSettings.textFirst":"第一","DE.Views.TableSettings.textHeader":"标题","DE.Views.TableSettings.textHeight":"高度","DE.Views.TableSettings.textLast":"最后","DE.Views.TableSettings.textRows":"行","DE.Views.TableSettings.textSelectBorders":"选择您要更改应用样式的边框","DE.Views.TableSettings.textTemplate":"从模板中选择","DE.Views.TableSettings.textTotal":"汇总","DE.Views.TableSettings.textWidth":"宽度","DE.Views.TableSettings.tipAll":"设置外边框和所有内框线","DE.Views.TableSettings.tipBottom":"仅设置外底边框","DE.Views.TableSettings.tipInner":"仅设定内部框线","DE.Views.TableSettings.tipInnerHor":"仅设置水平内框线","DE.Views.TableSettings.tipInnerVert":"仅设置垂直内线","DE.Views.TableSettings.tipLeft":"仅设置外部左边框","DE.Views.TableSettings.tipNone":"设置无边框","DE.Views.TableSettings.tipOuter":"仅设定外部边框","DE.Views.TableSettings.tipRight":"仅设置右外边框","DE.Views.TableSettings.tipTop":"仅设定外部顶框线","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"带边框和线条的表格","DE.Views.TableSettings.txtGroupTable_Custom":"自定义","DE.Views.TableSettings.txtGroupTable_Grid":"网格表","DE.Views.TableSettings.txtGroupTable_List":"列表表格","DE.Views.TableSettings.txtGroupTable_Plain":"普通表格","DE.Views.TableSettings.txtNoBorders":"无边框","DE.Views.TableSettings.txtTable_Accent":"重点色","DE.Views.TableSettings.txtTable_Bordered":"有边框的","DE.Views.TableSettings.txtTable_BorderedAndLined":"带边框和线条","DE.Views.TableSettings.txtTable_Colorful":"多彩的","DE.Views.TableSettings.txtTable_Dark":"深色","DE.Views.TableSettings.txtTable_GridTable":"网格表","DE.Views.TableSettings.txtTable_Light":"浅色","DE.Views.TableSettings.txtTable_Lined":"有格线的","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.textAltTitle":"标题","DE.Views.TableSettingsAdvanced.textAnchorText":"文本","DE.Views.TableSettingsAdvanced.textAutofit":"自动调整大小以适应内容","DE.Views.TableSettingsAdvanced.textBackColor":"单元格背景","DE.Views.TableSettingsAdvanced.textBelow":"下面","DE.Views.TableSettingsAdvanced.textBorderColor":"边框颜色","DE.Views.TableSettingsAdvanced.textBorderDesc":"点击图表或使用按钮选择边框,并将选择的样式应用于它们","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"边框与背景","DE.Views.TableSettingsAdvanced.textBorderWidth":"边框大小","DE.Views.TableSettingsAdvanced.textBottom":"底部","DE.Views.TableSettingsAdvanced.textCellOptions":"单元格选项","DE.Views.TableSettingsAdvanced.textCellProps":"单元格","DE.Views.TableSettingsAdvanced.textCellSize":"单元格大小","DE.Views.TableSettingsAdvanced.textCenter":"中心","DE.Views.TableSettingsAdvanced.textCenterTooltip":"中心","DE.Views.TableSettingsAdvanced.textCheckMargins":"使用默认页边距","DE.Views.TableSettingsAdvanced.textDefaultMargins":"默认的单元格边距","DE.Views.TableSettingsAdvanced.textDistance":"与文本的间距","DE.Views.TableSettingsAdvanced.textHorizontal":"水平的","DE.Views.TableSettingsAdvanced.textIndLeft":"从左缩进","DE.Views.TableSettingsAdvanced.textLeft":"左","DE.Views.TableSettingsAdvanced.textLeftTooltip":"左","DE.Views.TableSettingsAdvanced.textMargin":"边距","DE.Views.TableSettingsAdvanced.textMargins":"单元格边距","DE.Views.TableSettingsAdvanced.textMeasure":"测量","DE.Views.TableSettingsAdvanced.textMove":"移动带文本的对象","DE.Views.TableSettingsAdvanced.textOnlyCells":"仅适用于选定的单元格","DE.Views.TableSettingsAdvanced.textOptions":"选项","DE.Views.TableSettingsAdvanced.textOverlap":"允许重叠","DE.Views.TableSettingsAdvanced.textPage":"页面","DE.Views.TableSettingsAdvanced.textPosition":"位置","DE.Views.TableSettingsAdvanced.textPrefWidth":"首选宽度","DE.Views.TableSettingsAdvanced.textPreview":"预览","DE.Views.TableSettingsAdvanced.textRelative":"相对于","DE.Views.TableSettingsAdvanced.textRight":"右","DE.Views.TableSettingsAdvanced.textRightOf":"在 - 的右边","DE.Views.TableSettingsAdvanced.textRightTooltip":"右","DE.Views.TableSettingsAdvanced.textTable":"表格","DE.Views.TableSettingsAdvanced.textTableBackColor":"表格背景","DE.Views.TableSettingsAdvanced.textTablePosition":"表格位置","DE.Views.TableSettingsAdvanced.textTableSize":"表格大小","DE.Views.TableSettingsAdvanced.textTitle":"表格-高级设置","DE.Views.TableSettingsAdvanced.textTop":"顶部","DE.Views.TableSettingsAdvanced.textVertical":"垂直","DE.Views.TableSettingsAdvanced.textWidth":"宽度","DE.Views.TableSettingsAdvanced.textWidthSpaces":"宽度和间距","DE.Views.TableSettingsAdvanced.textWrap":"文本环绕","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"内联表","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"流程表","DE.Views.TableSettingsAdvanced.textWrappingStyle":"环绕方式","DE.Views.TableSettingsAdvanced.textWrapText":"文字换行","DE.Views.TableSettingsAdvanced.tipAll":"设置外边框和所有内框线","DE.Views.TableSettingsAdvanced.tipCellAll":"仅为内部单元设置边框","DE.Views.TableSettingsAdvanced.tipCellInner":"设置内部单元格的垂直和水平线","DE.Views.TableSettingsAdvanced.tipCellOuter":"仅为内部单元格设定外边框","DE.Views.TableSettingsAdvanced.tipInner":"仅设定内部框线","DE.Views.TableSettingsAdvanced.tipNone":"设置无边框","DE.Views.TableSettingsAdvanced.tipOuter":"仅设定外部边框","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"设置所有内部单元格的外部边框和边框","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"设置内部单元格的外部边界以及垂直线和水平线","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"设定表格的外框和内部储存单元格的外框","DE.Views.TableSettingsAdvanced.txtCm":"厘米","DE.Views.TableSettingsAdvanced.txtInch":"英寸","DE.Views.TableSettingsAdvanced.txtNoBorders":"无边框","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.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.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":"无边框","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.capBtnHand":"手","DE.Views.Toolbar.capBtnHyphenation":"连字符","DE.Views.Toolbar.capBtnInsChart":"图表","DE.Views.Toolbar.capBtnInsControls":"内容控件","DE.Views.Toolbar.capBtnInsDropcap":"首字大写","DE.Views.Toolbar.capBtnInsEquation":"方程式","DE.Views.Toolbar.capBtnInsHeader":"页眉和页脚","DE.Views.Toolbar.capBtnInsPagebreak":"换行符","DE.Views.Toolbar.capBtnInsShape":"形状","DE.Views.Toolbar.capBtnInsSmartArt":"智能图形","DE.Views.Toolbar.capBtnInsSymbol":"符号","DE.Views.Toolbar.capBtnInsTable":"表格","DE.Views.Toolbar.capBtnInsTextart":"艺术字","DE.Views.Toolbar.capBtnInsTextbox":"文本框","DE.Views.Toolbar.capBtnInsTextFromFile":"来自文件的文本","DE.Views.Toolbar.capBtnLineNumbers":"行号","DE.Views.Toolbar.capBtnMargins":"边距","DE.Views.Toolbar.capBtnPageColor":"页面颜色","DE.Views.Toolbar.capBtnPageOrient":"方向","DE.Views.Toolbar.capBtnPageSize":"大小","DE.Views.Toolbar.capBtnSelect":"选择","DE.Views.Toolbar.capBtnWatermark":"水印","DE.Views.Toolbar.capColorScheme":"配色方案","DE.Views.Toolbar.capImgAlign":"对齐","DE.Views.Toolbar.capImgBackward":"下移一层","DE.Views.Toolbar.capImgForward":"向前移动","DE.Views.Toolbar.capImgGroup":"组","DE.Views.Toolbar.capImgWrapping":"环绕","DE.Views.Toolbar.capShapesMerge":"合并形状","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.mniInsertSSE":"插入电子表格","DE.Views.Toolbar.mniLowerCase":"小写","DE.Views.Toolbar.mniRemoveFooter":"删除页脚","DE.Views.Toolbar.mniRemoveHeader":"移除页眉","DE.Views.Toolbar.mniSentenceCase":"句首字母大写","DE.Views.Toolbar.mniTextFromLocalFile":"来自本地文件的文本","DE.Views.Toolbar.mniTextFromStorage":"来自储存文件的文本","DE.Views.Toolbar.mniTextFromURL":"来自URL文件的文本","DE.Views.Toolbar.mniTextToTable":"把文本转换为表格","DE.Views.Toolbar.mniToggleCase":"大小写转换","DE.Views.Toolbar.mniUpperCase":"大写","DE.Views.Toolbar.strMenuNoFill":"无填充","DE.Views.Toolbar.textAddSpaceAfter":"增加段落后的空格","DE.Views.Toolbar.textAddSpaceBefore":"增加段落前的空格","DE.Views.Toolbar.textAllBorders":"所有边框","DE.Views.Toolbar.textAlpha":"希腊文小字母阿尔法","DE.Views.Toolbar.textAuto":"自动","DE.Views.Toolbar.textAutoColor":"自动","DE.Views.Toolbar.textBetta":"希腊文小字母贝塔","DE.Views.Toolbar.textBlackHeart":"黑心","DE.Views.Toolbar.textBold":"粗体","DE.Views.Toolbar.textBordersColor":"边框颜色","DE.Views.Toolbar.textBordersStyle":"边框样式","DE.Views.Toolbar.textBottom":"底部:","DE.Views.Toolbar.textBottomBorders":"底部边框","DE.Views.Toolbar.textBullet":"项目符号","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":"三","DE.Views.Toolbar.textColumnsTwo":"二","DE.Views.Toolbar.textComboboxControl":"下拉式方框","DE.Views.Toolbar.textContinuous":"连续","DE.Views.Toolbar.textContPage":"连续页","DE.Views.Toolbar.textCopyright":"版权符号","DE.Views.Toolbar.textCustomHyphen":"连字符选项","DE.Views.Toolbar.textCustomLineNumbers":"行编号选项","DE.Views.Toolbar.textDateControl":"选择日期","DE.Views.Toolbar.textDegree":"度数符号","DE.Views.Toolbar.textDelta":"希腊文小字母得尔塔","DE.Views.Toolbar.textDirLtr":"从左到右","DE.Views.Toolbar.textDirRtl":"从右到左","DE.Views.Toolbar.textDivision":"除号","DE.Views.Toolbar.textDollar":"美元符号","DE.Views.Toolbar.textDropdownControl":"下拉列表","DE.Views.Toolbar.textEditMode":"编辑PDF","DE.Views.Toolbar.textEditWatermark":"自定义水印","DE.Views.Toolbar.textEuro":"欧元符号","DE.Views.Toolbar.textEvenPage":"偶数页","DE.Views.Toolbar.textGreaterEqual":"大于或等于","DE.Views.Toolbar.textIndAfter":"段后缩进","DE.Views.Toolbar.textIndBefore":"段前缩进","DE.Views.Toolbar.textIndLeft":"左缩进","DE.Views.Toolbar.textIndRight":"右缩进","DE.Views.Toolbar.textInfinity":"无限","DE.Views.Toolbar.textInMargin":"在页边距","DE.Views.Toolbar.textInsColumnBreak":"插入分栏符","DE.Views.Toolbar.textInsertPageCount":"插入页数","DE.Views.Toolbar.textInsertPageNumber":"插入页码","DE.Views.Toolbar.textInsideBorders":"内部边框","DE.Views.Toolbar.textInsideHorBorders":"内部横向边框","DE.Views.Toolbar.textInsideVertBorders":"内部纵向边框","DE.Views.Toolbar.textInsPageBreak":"插入分页符","DE.Views.Toolbar.textInsSectionBreak":"插入分节符","DE.Views.Toolbar.textInText":"在文本中","DE.Views.Toolbar.textItalic":"斜体","DE.Views.Toolbar.textLandscape":"橫向","DE.Views.Toolbar.textLeft":"左:","DE.Views.Toolbar.textLeftBorders":"左边框","DE.Views.Toolbar.textLessEqual":"小于或等于","DE.Views.Toolbar.textLetterPi":"希腊文小字母 Pi","DE.Views.Toolbar.textLineSpaceOptions":"行距参数","DE.Views.Toolbar.textListSettings":"列表设置","DE.Views.Toolbar.textMarginsLast":"最后一次自定义","DE.Views.Toolbar.textMarginsModerate":"中等","DE.Views.Toolbar.textMarginsNarrow":"窄","DE.Views.Toolbar.textMarginsNormal":"常规","DE.Views.Toolbar.textMarginsWide":"宽","DE.Views.Toolbar.textMoreSymbols":"更多符号","DE.Views.Toolbar.textNewColor":"更多顏色","DE.Views.Toolbar.textNextPage":"下一页","DE.Views.Toolbar.textNoBorders":"无边框","DE.Views.Toolbar.textNoHighlight":"无高亮","DE.Views.Toolbar.textNone":"无","DE.Views.Toolbar.textNotEqualTo":"不等于","DE.Views.Toolbar.textOddPage":"奇数页","DE.Views.Toolbar.textOneHalf":"普通分数一半","DE.Views.Toolbar.textOneQuarter":"普通分数四分之一","DE.Views.Toolbar.textOutBorders":"外部边框","DE.Views.Toolbar.textPageMarginsCustom":"自定义边距","DE.Views.Toolbar.textPageSizeCustom":"自定义页面大小","DE.Views.Toolbar.textPictureControl":"图片","DE.Views.Toolbar.textPlainControl":"纯文本","DE.Views.Toolbar.textPlusMinus":"正负号","DE.Views.Toolbar.textPortrait":"纵向","DE.Views.Toolbar.textRegistered":"注册标志","DE.Views.Toolbar.textRemoveControl":"删除内容控件","DE.Views.Toolbar.textRemSpaceAfter":"删除段落后的空格","DE.Views.Toolbar.textRemSpaceBefore":"删除段落前的空格","DE.Views.Toolbar.textRemWatermark":"删除水印","DE.Views.Toolbar.textRestartEachPage":"每页重编行号","DE.Views.Toolbar.textRestartEachSection":"每节重编行号","DE.Views.Toolbar.textRichControl":"富文本","DE.Views.Toolbar.textRight":"右: ","DE.Views.Toolbar.textRightBorders":"右边框","DE.Views.Toolbar.textSection":"章节标志","DE.Views.Toolbar.textShapesCombine":"组合","DE.Views.Toolbar.textShapesFragment":"拆分","DE.Views.Toolbar.textShapesIntersect":"相交","DE.Views.Toolbar.textShapesSubstract":"剪除","DE.Views.Toolbar.textShapesUnion":"结合","DE.Views.Toolbar.textSmile":"白色笑脸","DE.Views.Toolbar.textSpaceAfter":"段后间距","DE.Views.Toolbar.textSpaceBefore":"段前间距","DE.Views.Toolbar.textSquareRoot":"平方根","DE.Views.Toolbar.textStrikeout":"删除线","DE.Views.Toolbar.textStyleMenuDelete":"删除样式","DE.Views.Toolbar.textStyleMenuDeleteAll":"删除所有自定义样式","DE.Views.Toolbar.textStyleMenuNew":"所选内容中的新样式","DE.Views.Toolbar.textStyleMenuRestore":"恢复为默认","DE.Views.Toolbar.textStyleMenuRestoreAll":"全部恢复为默认样式","DE.Views.Toolbar.textStyleMenuUpdate":"从选择更新","DE.Views.Toolbar.textSubscript":"下标","DE.Views.Toolbar.textSuperscript":"上标","DE.Views.Toolbar.textSuppressForCurrentParagraph":"取消用于当前段落","DE.Views.Toolbar.textTabCollaboration":"协作","DE.Views.Toolbar.textTabDraw":"绘图","DE.Views.Toolbar.textTabFile":"文件","DE.Views.Toolbar.textTabHeaderFooter":"页眉和页脚","DE.Views.Toolbar.textTabHome":"开始","DE.Views.Toolbar.textTabInsert":"插入","DE.Views.Toolbar.textTabLayout":"布局","DE.Views.Toolbar.textTabLinks":"引用","DE.Views.Toolbar.textTabProtect":"保护","DE.Views.Toolbar.textTabReview":"审阅","DE.Views.Toolbar.textTabView":"视图","DE.Views.Toolbar.textTilde":"波浪号","DE.Views.Toolbar.textTitleError":"错误","DE.Views.Toolbar.textToCurrent":"到当前位置","DE.Views.Toolbar.textTop":"上: ","DE.Views.Toolbar.textTopBorders":"顶部边框","DE.Views.Toolbar.textTradeMark":"商标标志","DE.Views.Toolbar.textUnderline":"下划线","DE.Views.Toolbar.textYen":"日元符号","DE.Views.Toolbar.tipAlignCenter":"居中对齐","DE.Views.Toolbar.tipAlignJust":"两端对齐","DE.Views.Toolbar.tipAlignLeft":"左对齐","DE.Views.Toolbar.tipAlignRight":"右对齐","DE.Views.Toolbar.tipBack":"返回","DE.Views.Toolbar.tipBlankPage":"插入空白页","DE.Views.Toolbar.tipBorders":"边框","DE.Views.Toolbar.tipChangeCase":"更改大小写","DE.Views.Toolbar.tipChangeChart":"更改图表类型","DE.Views.Toolbar.tipClearStyle":"清除样式","DE.Views.Toolbar.tipColorSchemas":"更改配色方案","DE.Views.Toolbar.tipColumns":"插入列","DE.Views.Toolbar.tipControls":"插入內容控件","DE.Views.Toolbar.tipCopy":"复制","DE.Views.Toolbar.tipCopyStyle":"复制样式","DE.Views.Toolbar.tipCut":"剪切","DE.Views.Toolbar.tipDecFont":"减小字体大小","DE.Views.Toolbar.tipDecPrLeft":"减少缩进","DE.Views.Toolbar.tipDownload":"下载文件","DE.Views.Toolbar.tipDropCap":"插入首字下沉","DE.Views.Toolbar.tipEditMode":"编辑当前文件。
页面将重新加载。","DE.Views.Toolbar.tipFontColor":"字体颜色","DE.Views.Toolbar.tipFontName":"字体 ","DE.Views.Toolbar.tipFontSize":"字体大小","DE.Views.Toolbar.tipHandTool":"手动工具","DE.Views.Toolbar.tipHighlightColor":"高亮色","DE.Views.Toolbar.tipHyphenation":"更改连字符号","DE.Views.Toolbar.tipImgAlign":"对齐对象","DE.Views.Toolbar.tipImgGroup":"组对象","DE.Views.Toolbar.tipImgWrapping":"环绕文字","DE.Views.Toolbar.tipIncFont":"增加字体大小","DE.Views.Toolbar.tipIncPrLeft":"增加缩进","DE.Views.Toolbar.tipInsertChart":"插入图表","DE.Views.Toolbar.tipInsertEquation":"插入方程","DE.Views.Toolbar.tipInsertHorizontalText":"插入水平文本框","DE.Views.Toolbar.tipInsertNum":"插入页码","DE.Views.Toolbar.tipInsertShape":"插入形狀","DE.Views.Toolbar.tipInsertSmartArt":"插入智能图形","DE.Views.Toolbar.tipInsertSymbol":"插入符号","DE.Views.Toolbar.tipInsertTable":"插入表格","DE.Views.Toolbar.tipInsertText":"插入文本框","DE.Views.Toolbar.tipInsertTextArt":"插入艺术字","DE.Views.Toolbar.tipInsertVerticalText":"插入垂直文本框","DE.Views.Toolbar.tipLineNumbers":"显示行号","DE.Views.Toolbar.tipLineSpace":"段落行距","DE.Views.Toolbar.tipMailRecepients":"邮件合并","DE.Views.Toolbar.tipMarkers":"项目符号","DE.Views.Toolbar.tipMarkersArrow":"箭头项目符号","DE.Views.Toolbar.tipMarkersCheckmark":"复选标记项目符号","DE.Views.Toolbar.tipMarkersDash":"连字符项目符号","DE.Views.Toolbar.tipMarkersFRhombus":"实心菱形项目符号","DE.Views.Toolbar.tipMarkersFRound":"实心圆形项目符号","DE.Views.Toolbar.tipMarkersFSquare":"实心方形项目符号","DE.Views.Toolbar.tipMarkersHRound":"空心圆形项目符号","DE.Views.Toolbar.tipMarkersStar":"星形项目符号","DE.Views.Toolbar.tipMultiLevelArticl":"多级编号文章","DE.Views.Toolbar.tipMultiLevelChapter":"多级编号章节","DE.Views.Toolbar.tipMultiLevelHeadings":"多级编号标题","DE.Views.Toolbar.tipMultiLevelHeadVarious":"多级不同编号的标题","DE.Views.Toolbar.tipMultiLevelNumbered":"多级编号项目符号","DE.Views.Toolbar.tipMultilevels":"多级列表","DE.Views.Toolbar.tipMultiLevelSymbols":"多级项目符号","DE.Views.Toolbar.tipMultiLevelVarious":"多级各种编号","DE.Views.Toolbar.tipNumbers":"编号","DE.Views.Toolbar.tipPageBreak":"插入分页符或分节符","DE.Views.Toolbar.tipPageColor":"更改页面颜色","DE.Views.Toolbar.tipPageMargins":"页边距","DE.Views.Toolbar.tipPageOrient":"页面方向","DE.Views.Toolbar.tipPageSize":"页面大小","DE.Views.Toolbar.tipParagraphStyle":"段落样式","DE.Views.Toolbar.tipPaste":"粘贴","DE.Views.Toolbar.tipPrColor":"阴影","DE.Views.Toolbar.tipPrint":"打印","DE.Views.Toolbar.tipPrintQuick":"快速打印","DE.Views.Toolbar.tipRedo":"重做","DE.Views.Toolbar.tipReplace":"替换","DE.Views.Toolbar.tipSave":"保存","DE.Views.Toolbar.tipSaveCoauth":"保存您的更改以供其他用户查看","DE.Views.Toolbar.tipSelectAll":"全选","DE.Views.Toolbar.tipSelectTool":"选择工具","DE.Views.Toolbar.tipSendBackward":"下移一层","DE.Views.Toolbar.tipSendForward":"向前移动","DE.Views.Toolbar.tipShapesMerge":"合并形状","DE.Views.Toolbar.tipShowHiddenChars":"非打印字符","DE.Views.Toolbar.tipSynchronize":"该文档已被另一个用户更改。请点击保存更改并重新加载更新","DE.Views.Toolbar.tipTextDir":"文本方向","DE.Views.Toolbar.tipTextFromFile":"来自文件的文本","DE.Views.Toolbar.tipUndo":"撤消","DE.Views.Toolbar.tipWatermark":"编辑水印","DE.Views.Toolbar.txtAutoText":"自动","DE.Views.Toolbar.txtDistribHor":"水平分布","DE.Views.Toolbar.txtDistribVert":"垂直分布","DE.Views.Toolbar.txtGroupBulletDoc":"文档项目符号","DE.Views.Toolbar.txtGroupBulletLib":"项目符号库","DE.Views.Toolbar.txtGroupMultiDoc":"当前文档中的列表","DE.Views.Toolbar.txtGroupMultiLib":"列表库","DE.Views.Toolbar.txtGroupNumDoc":"文件编号格式","DE.Views.Toolbar.txtGroupNumLib":"编号库","DE.Views.Toolbar.txtGroupRecent":"最近使用的","DE.Views.Toolbar.txtMarginAlign":"与边距对齐","DE.Views.Toolbar.txtObjectsAlign":"对齐选定对象","DE.Views.Toolbar.txtPageAlign":"与页面对齐","DE.Views.ViewTab.textAlwaysShowToolbar":"始终显示工具栏","DE.Views.ViewTab.textDarkDocument":"深色模式文档","DE.Views.ViewTab.textFill":"填充","DE.Views.ViewTab.textFitToPage":"调整至页面大小","DE.Views.ViewTab.textFitToWidth":"调整至宽度大小","DE.Views.ViewTab.textInterfaceTheme":"界面主题","DE.Views.ViewTab.textLeftMenu":"左侧面板","DE.Views.ViewTab.textLine":"线","DE.Views.ViewTab.textMacros":"宏","DE.Views.ViewTab.textNavigation":"导航","DE.Views.ViewTab.textOutline":"标题","DE.Views.ViewTab.textPauseMacro":"暂停录制","DE.Views.ViewTab.textRecMacro":"录制宏","DE.Views.ViewTab.textResumeMacro":"恢复录制","DE.Views.ViewTab.textRightMenu":"右侧面板","DE.Views.ViewTab.textRulers":"标尺","DE.Views.ViewTab.textStatusBar":"状态栏","DE.Views.ViewTab.textStopMacro":"停止录制","DE.Views.ViewTab.textTabStyle":"选项卡样式","DE.Views.ViewTab.textZoom":"縮放","DE.Views.ViewTab.textMultiplePages":"多页","DE.Views.ViewTab.textZoom100":"放大至100%","DE.Views.ViewTab.tipDarkDocument":"深色模式文档","DE.Views.ViewTab.tipFitToPage":"调整至页面大小","DE.Views.ViewTab.tipFitToWidth":"调整至合适宽度","DE.Views.ViewTab.tipHeadings":"标题","DE.Views.ViewTab.tipInterfaceTheme":"界面主题","DE.Views.ViewTab.tipMacros":"宏","DE.Views.ViewTab.tipMultiplePages":"多页","DE.Views.ViewTab.tipZoom100":"放大至100%","DE.Views.ViewTab.tipPauseMacro":"暂停录制","DE.Views.ViewTab.tipRecMacro":"录制宏","DE.Views.ViewTab.tipResumeMacro":"恢复录制","DE.Views.ViewTab.tipStopMacro":"停止录制","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 +{"Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"显示主窗口","Common.Controllers.Desktop.itemCreateFromTemplate":"用模板创建","Common.Controllers.ExternalDiagramEditor.textAnonymous":"匿名用户","Common.Controllers.ExternalDiagramEditor.textClose":"关闭","Common.Controllers.ExternalDiagramEditor.warningText":"该对象被禁用,因为它被另一个用户编辑。","Common.Controllers.ExternalDiagramEditor.warningTitle":"警告","Common.Controllers.ExternalLinks.textAddExternalData":"已添加外部源的链接。您可以在“数据”选项卡中更新此类链接。","Common.Controllers.ExternalLinks.textDontUpdate":"不要更新","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"错误:更新失败","Common.Controllers.ExternalLinks.warnUpdateExternalData":"此工作簿含有指向一个或多个可能不安全的外部源的链接
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"此文档含有指向一个或多个可能不安全的外部来源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"此演示文稿含有指向一个或多个可能不安全的外部来源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalMergeEditor.textAnonymous":"匿名用户","Common.Controllers.ExternalMergeEditor.textClose":"关闭","Common.Controllers.ExternalMergeEditor.warningText":"该对象被禁用,因为它被另一个用户编辑。","Common.Controllers.ExternalMergeEditor.warningTitle":"警告","Common.Controllers.ExternalOleEditor.textAnonymous":"匿名用户","Common.Controllers.ExternalOleEditor.textClose":"关闭","Common.Controllers.ExternalOleEditor.warningText":"该对象被禁用,因为它被另一个用户编辑。","Common.Controllers.ExternalOleEditor.warningTitle":"警告","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"历史记录加载失败","Common.Controllers.Plugins.helpMoveMacros":"若要使用宏,请切换到“视图”选项卡。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移动了的宏按钮","Common.Controllers.Plugins.helpUseMacros":"在这里可以找到宏按钮","Common.Controllers.Plugins.helpUseMacrosHeader":"更新了对宏的访问","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"插件已成功安装。您可以在这里访问所有后台插件。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}已成功安装。您可以在这里访问所有后台插件。","Common.Controllers.Plugins.textRunInstalledPlugins":"运行已安装的插件","Common.Controllers.Plugins.textRunPlugin":"运行插件","Common.Controllers.ReviewChanges.textAcceptBeforeCompare":"比较文档时,文档中所有跟踪到的更改都将被视作已同意。您想要继续吗?","Common.Controllers.ReviewChanges.textAtLeast":"最小值","Common.Controllers.ReviewChanges.textAuto":"自动","Common.Controllers.ReviewChanges.textBaseline":"基准线","Common.Controllers.ReviewChanges.textBold":"粗体","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.textDeleted":"已删除:","Common.Controllers.ReviewChanges.textDStrikeout":"双删除线","Common.Controllers.ReviewChanges.textEquation":"方程式","Common.Controllers.ReviewChanges.textExact":"固定值","Common.Controllers.ReviewChanges.textFirstLine":"第一行","Common.Controllers.ReviewChanges.textFontSize":"字体大小","Common.Controllers.ReviewChanges.textFormatted":"已格式化","Common.Controllers.ReviewChanges.textHighlight":"高亮色","Common.Controllers.ReviewChanges.textImage":"图片","Common.Controllers.ReviewChanges.textIndentLeft":"左缩进","Common.Controllers.ReviewChanges.textIndentRight":"右缩进","Common.Controllers.ReviewChanges.textInserted":"已插入:","Common.Controllers.ReviewChanges.textItalic":"斜体","Common.Controllers.ReviewChanges.textJustify":"两端对齐","Common.Controllers.ReviewChanges.textKeepLines":"段中不分页","Common.Controllers.ReviewChanges.textKeepNext":"与下段同页","Common.Controllers.ReviewChanges.textLeft":"左对齐","Common.Controllers.ReviewChanges.textLineSpacing":"行间距:","Common.Controllers.ReviewChanges.textMultiple":"多倍行距","Common.Controllers.ReviewChanges.textNoBreakBefore":"不段前分页","Common.Controllers.ReviewChanges.textNoContextual":"在相同样式的段落之间添加间隔","Common.Controllers.ReviewChanges.textNoKeepLines":"段中可分页","Common.Controllers.ReviewChanges.textNoKeepNext":"不与下段同页","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":"段落已插入","Common.Controllers.ReviewChanges.textParaMoveFromDown":"已下移","Common.Controllers.ReviewChanges.textParaMoveFromUp":"已上移:","Common.Controllers.ReviewChanges.textParaMoveTo":"已移动","Common.Controllers.ReviewChanges.textPosition":"位置","Common.Controllers.ReviewChanges.textRight":"右对齐","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":"删除线","Common.Controllers.ReviewChanges.textSubScript":"下标","Common.Controllers.ReviewChanges.textSuperScript":"上标","Common.Controllers.ReviewChanges.textTableChanged":"表格设置已更改","Common.Controllers.ReviewChanges.textTableRowsAdd":"已添加表格行","Common.Controllers.ReviewChanges.textTableRowsDel":"表格行已删除","Common.Controllers.ReviewChanges.textTabs":"更改选项卡","Common.Controllers.ReviewChanges.textTitleComparison":"比较设置","Common.Controllers.ReviewChanges.textUnderline":"下划线","Common.Controllers.ReviewChanges.textUrl":"粘贴文件URL","Common.Controllers.ReviewChanges.textWidow":"孤行控制","Common.Controllers.ReviewChanges.textWord":"字級","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"在表格底部插入新行。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"将标题 1 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"将标题 2 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"将标题 3 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"将所选文本转换为无序项目符号列表,或开始一个新列表。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"使用键盘方向键将所选对象大步向下移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"使用键盘方向键将所选对象大步向左移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"使用键盘方向键将所选对象大步向右移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"使用键盘方向键将所选对象大步向上移动。","Common.Controllers.Shortcuts.txtDescriptionBold":"将所选文本的字体设置为比正常更粗更黑。","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"在段落之间切换居中对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"在表单中选择下一个下拉式方框选项。","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"在表单中选择上一个下拉式方框选项。","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"关闭当前文档。","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"关闭菜单或模式窗口。重置批注与修订的弹窗。重置表格绘制与擦除模式。重置文本拖放。重置标记选择模式。重置格式刷模式。取消选择形状。重置插入形状模式。退出页眉/页脚。退出表单填写。","Common.Controllers.Shortcuts.txtDescriptionCopy":"将所选文本发送到计算机剪贴板。复制的文本可稍后插入到同一文档的其他位置、另一份文档或其他程序中。","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"复制当前编辑文本中所选片段的格式。复制的格式可稍后应用到同一文档中的其他文本片段。","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"在当前文档中光标右侧插入版权符号。","Common.Controllers.Shortcuts.txtDescriptionCut":"删除所选文本并将其发送到计算机剪贴板。复制的文本可稍后插入到同一文档的其他位置、另一份文档或其他程序中。","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"将所选文本的字体大小减小1磅。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"删除光标左侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"删除光标左侧的一个单词/选区/图形对象。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"删除光标右侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"删除光标右侧的一个单词/选区/图形对象。","Common.Controllers.Shortcuts.txtDescriptionEditChart":"当选中图表标题时,如果标题为空,将光标移到行首;否则选中标题文本。","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"重复最近一次撤销的操作。","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"选择文档中的所有文本、表格和图片。","Common.Controllers.Shortcuts.txtDescriptionEditShape":"当选中形状时,如果形状没有内容,则创建内容并将光标移到行首;如果已有内容为空,将光标移到内容位置,否则选中整个内容。","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"撤销最近一次执行的操作。","Common.Controllers.Shortcuts.txtDescriptionEmDash":"在当前文档中光标右侧插入长破折号。","Common.Controllers.Shortcuts.txtDescriptionEnDash":"在当前文档中光标右侧插入短破折号。","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"结束当前段落并开始新段落。","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"在单元格内另起一段。","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"在公式参数中插入新占位符。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"将运算符的对齐级别调整为左对齐(用于强制换行后的公式第二行)。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"将运算符的对齐级别调整为右对齐(用于强制换行后的公式第二行)。","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"在光标位置插入欧元符号。","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"在光标位置插入省略号。","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"将所选文本的字体大小增加1磅。","Common.Controllers.Shortcuts.txtDescriptionIndent":"增加段落左缩进。","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"添加分栏符。","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"插入尾注。","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"在光标位置插入公式。","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"插入脚注。","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"插入可用于跳转到网页地址的链接。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"插入换行符(不中断段落)","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"在多行表单中插入换行符。","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"在光标位置插入分页符。","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"在光标位置插入当前页码。","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"在段落中插入制表符(非段首位置)。","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"在表格中插入表格分隔符。","Common.Controllers.Shortcuts.txtDescriptionItalic":"将所选文本的字体设置为斜体。","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"在段落之间切换两端对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"将段落左对齐。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"按住指定键并使用键盘方向键将所选对象每次向下移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"按住指定键并使用键盘方向键将所选对象每次向左移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"按住指定键并使用键盘方向键将所选对象每次向右移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"按住指定键并使用键盘方向键将所选对象每次向上移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"增加所选段落的缩进。","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"减少所选段落的缩进。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"将焦点移到当前所选对象之后的下一个对象。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"将焦点移到当前所选对象之前的上一个对象。","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"将光标下移一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"将光标移动到当前编辑文档的末尾。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"将光标移动到当前编辑行的末尾。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"将光标右移一个单词。","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"将光标左移一个字符。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"当光标位于页眉/页脚时,转到下方页眉。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"当光标位于页眉/页脚时,转到下方页眉/页脚。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"转到表格行中的下一个单元格。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"转到下一个表单。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"转到当前编辑文档的下一页。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"转到表格中的下一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"转到表格行中的上一个单元格。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"转到上一个表单。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"转到当前编辑文档的上一页。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"转到表格中的上一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"将光标右移一个字符。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"将光标移动到当前编辑文档的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"将光标移动到当前编辑行的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"将光标移动到当前编辑文档下一页的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"将光标移动到当前编辑文档上一页的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"将光标移动到单词开头或左移一个单词。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"将光标上移一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"当光标位于页眉/页脚时,转到上方页眉。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"当光标位于页眉/页脚时,转到上方页眉/页脚。","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"切换到桌面编辑器的下一个文件选项卡或在线编辑器的下一个浏览器标签页。","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"在模式对话框中在控件之间导航,将焦点移到下一个控件。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"在字符之间插入连字符,该连字符不能作为换行的起始位置。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"在字符之间插入空格,该空格不能作为换行的起始位置。","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"在在线编辑器中打开聊天面板并发送消息。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"打开数据输入字段,在其中添加批注内容。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"打开批注面板,以添加自己的批注或回复其他用户的批注。","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"打开所选元素的上下文菜单。","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"打开标准对话框以选择现有文件。在此对话框中选择文件并点击“打开”后,文件将在桌面编辑器的新选项卡或窗口中打开。","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"打开“文件”面板,以保存、下载、打印当前文档,查看文档信息,新建或打开现有文档,访问文本文档编辑器帮助中心或高级设置。","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"打开“查找和替换”面板,并显示替换字段,以替换一个或多个找到的字符。","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"打开“搜素”对话框,在当前编辑的文档中开始搜索字符/单词/短语。","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"打开文本文档编辑器帮助菜单。","Common.Controllers.Shortcuts.txtDescriptionPaste":"在光标位置插入之前从计算机剪贴板复制的文本片段。该文本可以来自同一文档、其他文档或其他程序。","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"将之前复制的格式应用到当前编辑文档中的文本。","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"在光标位置插入之前从计算机剪贴板复制的文本片段,但不保留其原始格式。该文本可以来自同一文档、其他文档或其他程序。","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"切换到桌面编辑器的上一个文件选项卡或在线编辑器的上一个浏览器标签页。","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"在模式对话框中在控件之间导航,将焦点移到上一个控件。","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"使用可用的打印机打印文档或将其保存为文件。","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"在光标位置插入注册商标符号。","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"将所选的 Unicode 代码替换为符号。","Common.Controllers.Shortcuts.txtDescriptionResetChar":"清除所选文本的格式。","Common.Controllers.Shortcuts.txtDescriptionRightPara":"在段落之间切换右对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionSave":"保存当前文档的所有更改。文件将以现有名称、位置和格式保存。","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"打开“另存为”面板,将当前编辑的文档以支持的格式之一保存到计算机硬盘。","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"将文档向下滚动约一页。","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"将文档向上滚动约一页。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"选择光标左侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"从光标位置选择到单词开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"将光标下移一行,并选中前一位置与当前位置之间的所有符号。","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"将光标上移一行,并选中前一位置与当前位置之间的所有符号。","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"从光标位置选择到屏幕下方的页面部分。","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"从光标位置选择到屏幕上方的页面部分。","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"选择光标右侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"从光标位置选择到单词末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"从光标位置选择到下一页开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"从光标位置选择到上一页开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"从光标位置选择到文档末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"从光标位置选择到当前行末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"从光标位置选择到文档开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"从光标位置选择到当前行开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionShowAll":"显示或隐藏非打印字符。","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"在光标位置插入软连字符。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"保留所复制文本的源格式。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"粘贴不带原始格式的文本。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"将复制的表格作为嵌套表粘贴到现有表格的选定单元格中。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"用复制的数据替换现有表格的内容。","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"启用/禁用将应用程序中的操作传递给屏幕阅读器。","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"提升列表/缩进级别(当光标位于段首时)。","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"降低列表/缩进级别(当光标位于段首时)。","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"将所选文本加删除线。","Common.Controllers.Shortcuts.txtDescriptionSubscript":"将所选文本缩小并放在文本行的下方,例如化学式中的写法。","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"将所选文本缩小并放在文本行的上方,例如分数中的写法。","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"在光标位置插入商标符号。","Common.Controllers.Shortcuts.txtDescriptionUnderline":"将所选文本加下划线。","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"减少段落左缩进。","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"更新字段(例如目录)。","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"在光标位于链接时访问该链接。","Common.Controllers.Shortcuts.txtDescriptionZoom100":"将当前文档的“缩放”参数重置为默认的 100%。","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"放大当前编辑文档。","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"缩小当前编辑文档。","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"复制","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"剪切","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"缩进","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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":"三维分组柱形图","Common.define.chartData.textBarNormal3dPerspective":"三维柱形图","Common.define.chartData.textBarStacked":"堆积柱形图","Common.define.chartData.textBarStacked3d":"三维堆积柱形图","Common.define.chartData.textBarStackedPer":"100%堆积柱状图","Common.define.chartData.textBarStackedPer3d":"三维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":"三维分组条形图","Common.define.chartData.textHBarStacked":"堆积条形图","Common.define.chartData.textHBarStacked3d":"三维堆积条形图","Common.define.chartData.textHBarStackedPer":"100%堆积条形图","Common.define.chartData.textHBarStackedPer3d":"三维100%堆积条形图","Common.define.chartData.textLine":"折线图","Common.define.chartData.textLine3d":"三维折线图","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":"三维饼图","Common.define.chartData.textPoint":"XY散佈圖","Common.define.chartData.textRadar":"雷达图","Common.define.chartData.textRadarFilled":"填充雷达","Common.define.chartData.textRadarMarker":"带标记的雷达","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.define.smartArt.textAccentedPicture":"强调图片","Common.define.smartArt.textAccentProcess":"重点流程","Common.define.smartArt.textAlternatingFlow":"交替流程","Common.define.smartArt.textAlternatingHexagons":"交替六边形","Common.define.smartArt.textAlternatingPictureBlocks":"交替图片块","Common.define.smartArt.textAlternatingPictureCircles":"交替图片圆形","Common.define.smartArt.textArchitectureLayout":"架构布局","Common.define.smartArt.textArrowRibbon":"带形箭头","Common.define.smartArt.textAscendingPictureAccentProcess":"升序图片重点流程","Common.define.smartArt.textBalance":"平衡","Common.define.smartArt.textBasicBendingProcess":"基本弯曲流程","Common.define.smartArt.textBasicBlockList":"基本列表","Common.define.smartArt.textBasicChevronProcess":"基本箭头流程","Common.define.smartArt.textBasicCycle":"基本循环","Common.define.smartArt.textBasicMatrix":"基本矩阵","Common.define.smartArt.textBasicPie":"基本饼图","Common.define.smartArt.textBasicProcess":"基本流程","Common.define.smartArt.textBasicPyramid":"基本金字塔","Common.define.smartArt.textBasicRadial":"基本放射图","Common.define.smartArt.textBasicTarget":"基本目标","Common.define.smartArt.textBasicTimeline":"基本时间轴","Common.define.smartArt.textBasicVenn":"基本维恩图","Common.define.smartArt.textBendingPictureAccentList":"蛇形图片重点列表","Common.define.smartArt.textBendingPictureBlocks":"蛇形图片块","Common.define.smartArt.textBendingPictureCaption":"蛇形图片标题","Common.define.smartArt.textBendingPictureCaptionList":"蛇形图片标题列表","Common.define.smartArt.textBendingPictureSemiTranparentText":"蛇形图片半透明文字","Common.define.smartArt.textBlockCycle":"块循环","Common.define.smartArt.textBubblePictureList":"气泡图列表","Common.define.smartArt.textCaptionedPictures":"带标题的图片","Common.define.smartArt.textChevronAccentProcess":"V型强调流程","Common.define.smartArt.textChevronList":"V型列表","Common.define.smartArt.textCircleAccentTimeline":"圆形强调时间线","Common.define.smartArt.textCircleArrowProcess":"圆形箭頭流程","Common.define.smartArt.textCirclePictureHierarchy":"圆形图片层次结构","Common.define.smartArt.textCircleProcess":"圆形流程","Common.define.smartArt.textCircleRelationship":"圆形关系","Common.define.smartArt.textCircularBendingProcess":"环状蛇形流程","Common.define.smartArt.textCircularPictureCallout":"圆形图片标注","Common.define.smartArt.textClosedChevronProcess":"闭合V型流程","Common.define.smartArt.textContinuousArrowProcess":"连续箭头过程","Common.define.smartArt.textContinuousBlockProcess":"连续块过程","Common.define.smartArt.textContinuousCycle":"连续循环","Common.define.smartArt.textContinuousPictureList":"连续图片列表","Common.define.smartArt.textConvergingArrows":"汇聚箭头","Common.define.smartArt.textConvergingRadial":"汇聚放射线","Common.define.smartArt.textConvergingText":"汇聚文本","Common.define.smartArt.textCounterbalanceArrows":"平衡箭头","Common.define.smartArt.textCycle":"循环","Common.define.smartArt.textCycleMatrix":"循环矩阵","Common.define.smartArt.textDescendingBlockList":"降序块列表","Common.define.smartArt.textDescendingProcess":"降序流程","Common.define.smartArt.textDetailedProcess":"详细流程","Common.define.smartArt.textDivergingArrows":"发散箭头","Common.define.smartArt.textDivergingRadial":"发散径向","Common.define.smartArt.textEquation":"方程式","Common.define.smartArt.textFramedTextPicture":"带边框的文本图片","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"齿轮","Common.define.smartArt.textGridMatrix":"网格矩阵","Common.define.smartArt.textGroupedList":"分组列表","Common.define.smartArt.textHalfCircleOrganizationChart":"半圆组织结构图","Common.define.smartArt.textHexagonCluster":"六边形集群","Common.define.smartArt.textHexagonRadial":"六边形射线","Common.define.smartArt.textHierarchy":"层级结构","Common.define.smartArt.textHierarchyList":"层级结构列表","Common.define.smartArt.textHorizontalBulletList":"水平项目符号列表","Common.define.smartArt.textHorizontalHierarchy":"水平层次结构","Common.define.smartArt.textHorizontalLabeledHierarchy":"水平标记层次","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"水平多级层次结构","Common.define.smartArt.textHorizontalOrganizationChart":"水平组织结构图","Common.define.smartArt.textHorizontalPictureList":"水平图片列表","Common.define.smartArt.textIncreasingArrowProcess":"递增箭头流程","Common.define.smartArt.textIncreasingCircleProcess":"递增圆圈流程","Common.define.smartArt.textInterconnectedBlockProcess":"互连块流程","Common.define.smartArt.textInterconnectedRings":"互连环图","Common.define.smartArt.textInvertedPyramid":"倒金字塔","Common.define.smartArt.textLabeledHierarchy":"已标记层次","Common.define.smartArt.textLinearVenn":"线性韦恩图","Common.define.smartArt.textLinedList":"划线列表","Common.define.smartArt.textList":"列表","Common.define.smartArt.textMatrix":"矩阵","Common.define.smartArt.textMultidirectionalCycle":"多方向循环","Common.define.smartArt.textNameAndTitleOrganizationChart":"姓名和职务组织结构图","Common.define.smartArt.textNestedTarget":"嵌套的目标","Common.define.smartArt.textNondirectionalCycle":"非定向循环","Common.define.smartArt.textOpposingArrows":"反向箭头","Common.define.smartArt.textOpposingIdeas":"相对观点","Common.define.smartArt.textOrganizationChart":"组织图","Common.define.smartArt.textOther":"其它","Common.define.smartArt.textPhasedProcess":"分阶段处理","Common.define.smartArt.textPicture":"图片","Common.define.smartArt.textPictureAccentBlocks":"图片强调块","Common.define.smartArt.textPictureAccentList":"图片强调列表","Common.define.smartArt.textPictureAccentProcess":"图片强调文字流程","Common.define.smartArt.textPictureCaptionList":"图片标题列表","Common.define.smartArt.textPictureFrame":"图片框架","Common.define.smartArt.textPictureGrid":"图片网格","Common.define.smartArt.textPictureLineup":"图片排列","Common.define.smartArt.textPictureOrganizationChart":"图片组织图","Common.define.smartArt.textPictureStrips":"图片条纹","Common.define.smartArt.textPieProcess":"圆饼图流程","Common.define.smartArt.textPlusAndMinus":"加减","Common.define.smartArt.textProcess":"流程","Common.define.smartArt.textProcessArrows":"流程箭头","Common.define.smartArt.textProcessList":"流程列表","Common.define.smartArt.textPyramid":"金字塔","Common.define.smartArt.textPyramidList":"金字塔列表","Common.define.smartArt.textRadialCluster":"放射状群集","Common.define.smartArt.textRadialCycle":"径向循环","Common.define.smartArt.textRadialList":"径向列表","Common.define.smartArt.textRadialPictureList":"放射状图片列表","Common.define.smartArt.textRadialVenn":"径向韦恩图","Common.define.smartArt.textRandomToResultProcess":"随机结果流程","Common.define.smartArt.textRelationship":"关系","Common.define.smartArt.textRepeatingBendingProcess":"重复弯曲流程","Common.define.smartArt.textReverseList":"反向列表","Common.define.smartArt.textSegmentedCycle":"分段循环","Common.define.smartArt.textSegmentedProcess":"分段流程","Common.define.smartArt.textSegmentedPyramid":"分段金字塔","Common.define.smartArt.textSnapshotPictureList":"快照图片列表","Common.define.smartArt.textSpiralPicture":"螺旋图","Common.define.smartArt.textSquareAccentList":"方形强调列表","Common.define.smartArt.textStackedList":"堆积列表","Common.define.smartArt.textStackedVenn":"堆积韦恩图","Common.define.smartArt.textStaggeredProcess":"交错流程","Common.define.smartArt.textStepDownProcess":"向下阶梯式流程","Common.define.smartArt.textStepUpProcess":"向上阶梯式流程","Common.define.smartArt.textSubStepProcess":"子步骤流程","Common.define.smartArt.textTabbedArc":"已定位的弧形","Common.define.smartArt.textTableHierarchy":"表格层次","Common.define.smartArt.textTableList":"表格列表","Common.define.smartArt.textTabList":"标签列表","Common.define.smartArt.textTargetList":"目标列表","Common.define.smartArt.textTextCycle":"文本循环","Common.define.smartArt.textThemePictureAccent":"主题图片强调","Common.define.smartArt.textThemePictureAlternatingAccent":"主题图片交替强调","Common.define.smartArt.textThemePictureGrid":"主题图片网格","Common.define.smartArt.textTitledMatrix":"标题矩阵","Common.define.smartArt.textTitledPictureAccentList":"标题图片强调列表","Common.define.smartArt.textTitledPictureBlocks":"标题图片块","Common.define.smartArt.textTitlePictureLineup":"标题图片排列","Common.define.smartArt.textTrapezoidList":"梯形列表","Common.define.smartArt.textUpwardArrow":"向上箭头","Common.define.smartArt.textVaryingWidthList":"可变宽度列表","Common.define.smartArt.textVerticalAccentList":"垂直强调列表","Common.define.smartArt.textVerticalArrowList":"垂直箭头列表","Common.define.smartArt.textVerticalBendingProcess":"垂直弯曲流程","Common.define.smartArt.textVerticalBlockList":"垂直块列表","Common.define.smartArt.textVerticalBoxList":"垂直方框列表","Common.define.smartArt.textVerticalBracketList":"垂直括号列表","Common.define.smartArt.textVerticalBulletList":"垂直项目符号列表","Common.define.smartArt.textVerticalChevronList":"垂直V型列表","Common.define.smartArt.textVerticalCircleList":"垂直循环列表","Common.define.smartArt.textVerticalCurvedList":"垂直曲线列表","Common.define.smartArt.textVerticalEquation":"垂直方程式","Common.define.smartArt.textVerticalPictureAccentList":"垂直图片强调列表","Common.define.smartArt.textVerticalPictureList":"垂直图片列表","Common.define.smartArt.textVerticalProcess":"垂直流程","Common.Translation.textMoreButton":"更多","Common.Translation.tipFileLocked":"文档编辑被锁定,您可以稍后进行更改并将其保存为本地副本。","Common.Translation.tipFileReadOnly":"该文件是只读的。若要保留更改,请使用新名称或将文件保存在其他位置。","Common.Translation.warnFileLocked":"您无法编辑此文件,因为它正在另一个应用程序中进行编辑。","Common.Translation.warnFileLockedBtnEdit":"创建副本","Common.Translation.warnFileLockedBtnView":"打开查看","Common.UI.ButtonColored.textAutoColor":"自动","Common.UI.ButtonColored.textEyedropper":"拾色器","Common.UI.ButtonColored.textNewColor":"更多颜色","Common.UI.Calendar.textApril":"四月","Common.UI.Calendar.textAugust":"八月","Common.UI.Calendar.textDecember":"十二月","Common.UI.Calendar.textFebruary":"二月","Common.UI.Calendar.textJanuary":"一月","Common.UI.Calendar.textJuly":"七月","Common.UI.Calendar.textJune":"六月","Common.UI.Calendar.textMarch":"三月","Common.UI.Calendar.textMay":"五月","Common.UI.Calendar.textMonths":"月","Common.UI.Calendar.textNovember":"十一月","Common.UI.Calendar.textOctober":"十月","Common.UI.Calendar.textSeptember":"九月","Common.UI.Calendar.textShortApril":"四月","Common.UI.Calendar.textShortAugust":"八月","Common.UI.Calendar.textShortDecember":"十二月","Common.UI.Calendar.textShortFebruary":"二月","Common.UI.Calendar.textShortFriday":"周五","Common.UI.Calendar.textShortJanuary":"一月","Common.UI.Calendar.textShortJuly":"七月","Common.UI.Calendar.textShortJune":"六月","Common.UI.Calendar.textShortMarch":"三月","Common.UI.Calendar.textShortMay":"五月","Common.UI.Calendar.textShortMonday":"周一","Common.UI.Calendar.textShortNovember":"十一月","Common.UI.Calendar.textShortOctober":"十月","Common.UI.Calendar.textShortSaturday":"周六","Common.UI.Calendar.textShortSeptember":"九月","Common.UI.Calendar.textShortSunday":"周日","Common.UI.Calendar.textShortThursday":"周四","Common.UI.Calendar.textShortTuesday":"周二","Common.UI.Calendar.textShortWednesday":"周三","Common.UI.Calendar.textYears":"年","Common.UI.ComboBorderSize.txtNoBorders":"无边框","Common.UI.ComboBorderSizeEditable.txtNoBorders":"无边框","Common.UI.ComboDataView.emptyComboText":"无样式","Common.UI.ExtendedColorDialog.addButtonText":"添加","Common.UI.ExtendedColorDialog.textCurrent":"当前","Common.UI.ExtendedColorDialog.textHexErr":"输入的值不正确。
请输入000000和FFFFFF之间的值。","Common.UI.ExtendedColorDialog.textNew":"新建","Common.UI.ExtendedColorDialog.textRGBErr":"输入的值不正确。
请输入介于0和255之间的数值。","Common.UI.HSBColorPicker.textNoColor":"没有颜色","Common.UI.InputField.txtEmpty":"这是必填栏","Common.UI.InputFieldBtnCalendar.textDate":"选择日期","Common.UI.InputFieldBtnPassword.textHintHidePwd":"隐藏密码","Common.UI.InputFieldBtnPassword.textHintHold":"按住显示密码","Common.UI.InputFieldBtnPassword.textHintShowPwd":"显示密码","Common.UI.SearchBar.textFind":"查找","Common.UI.SearchBar.tipCloseSearch":"关闭搜索","Common.UI.SearchBar.tipNextResult":"下一个结果","Common.UI.SearchBar.tipOpenAdvancedSettings":"打开高级设置","Common.UI.SearchBar.tipPreviousResult":"上一个结果","Common.UI.SearchDialog.textHighlight":"高亮显示结果","Common.UI.SearchDialog.textMatchCase":"区分大小写","Common.UI.SearchDialog.textReplaceDef":"输入替换文字","Common.UI.SearchDialog.textSearchStart":"在这里输入你的文字","Common.UI.SearchDialog.textTitle":"查找和替换","Common.UI.SearchDialog.textTitle2":"查找","Common.UI.SearchDialog.textWholeWords":"仅限完整单词","Common.UI.SearchDialog.txtBtnHideReplace":"隐藏替换","Common.UI.SearchDialog.txtBtnReplace":"替换","Common.UI.SearchDialog.txtBtnReplaceAll":"全部替换","Common.UI.SynchronizeTip.textDontShow":"不要再显示此消息","Common.UI.SynchronizeTip.textGotIt":"知道了","Common.UI.SynchronizeTip.textNew":"新建","Common.UI.SynchronizeTip.textSynchronize":"文档已被其他用户更改
请单击保存更改并重新加载更新。","Common.UI.ThemeColorPalette.textRecentColors":"最近使用的颜色","Common.UI.ThemeColorPalette.textStandartColors":"标准颜色","Common.UI.ThemeColorPalette.textThemeColors":"主题颜色","Common.UI.ThemeColorPalette.textTransparent":"透明","Common.UI.Themes.txtThemeClassicLight":"经典浅色","Common.UI.Themes.txtThemeContrastDark":"深色对比","Common.UI.Themes.txtThemeDark":"深色","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"浅色","Common.UI.Themes.txtThemeModernDark":"现代深色","Common.UI.Themes.txtThemeModernLight":"现代浅色","Common.UI.Themes.txtThemeSystem":"和系統一致","Common.UI.Themes.txtThemeWhite":"白色","Common.UI.Window.cancelButtonText":"取消","Common.UI.Window.closeButtonText":"关闭","Common.UI.Window.noButtonText":"否","Common.UI.Window.okButtonText":"确定","Common.UI.Window.textConfirmation":"确认","Common.UI.Window.textDontShow":"不要再显示此消息","Common.UI.Window.textError":"错误","Common.UI.Window.textInformation":"信息","Common.UI.Window.textWarning":"警告","Common.UI.Window.yesButtonText":"是","Common.Utils.Metric.txtCm":"厘米","Common.Utils.Metric.txtPt":"磅","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"重点色","Common.Utils.ThemeColor.txtAqua":"湖绿色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黑色","Common.Utils.ThemeColor.txtBlue":"蓝色","Common.Utils.ThemeColor.txtBrightGreen":"明亮绿色","Common.Utils.ThemeColor.txtBrown":"棕色","Common.Utils.ThemeColor.txtDarkBlue":"深蓝色","Common.Utils.ThemeColor.txtDarker":"较深色的","Common.Utils.ThemeColor.txtDarkGray":"深灰色","Common.Utils.ThemeColor.txtDarkGreen":"深绿色","Common.Utils.ThemeColor.txtDarkPurple":"深紫色","Common.Utils.ThemeColor.txtDarkRed":"深红色","Common.Utils.ThemeColor.txtDarkTeal":"深青色","Common.Utils.ThemeColor.txtDarkYellow":"深黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"绿色","Common.Utils.ThemeColor.txtIndigo":"靛蓝色","Common.Utils.ThemeColor.txtLavender":"薰衣草色","Common.Utils.ThemeColor.txtLightBlue":"浅蓝色","Common.Utils.ThemeColor.txtLighter":"较浅色的","Common.Utils.ThemeColor.txtLightGray":"浅灰色","Common.Utils.ThemeColor.txtLightGreen":"浅绿色","Common.Utils.ThemeColor.txtLightOrange":"浅橙色","Common.Utils.ThemeColor.txtLightYellow":"浅黄色","Common.Utils.ThemeColor.txtOrange":"橙色","Common.Utils.ThemeColor.txtPink":"粉红色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"红色","Common.Utils.ThemeColor.txtRose":"玫瑰色","Common.Utils.ThemeColor.txtSkyBlue":"天蓝色","Common.Utils.ThemeColor.txtTeal":"青色","Common.Utils.ThemeColor.txttext":"文字","Common.Utils.ThemeColor.txtTurquosie":"绿松石","Common.Utils.ThemeColor.txtViolet":"紫色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黃色","Common.Views.About.txtAddress":"地址:","Common.Views.About.txtLicensee":"被许可人","Common.Views.About.txtLicensor":"许可商","Common.Views.About.txtMail":"电子邮件:","Common.Views.About.txtPoweredBy":"技术支持方","Common.Views.About.txtTel":"电话:","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.textDoubleSpaces":"添加带双倍空格的句点","Common.Views.AutoCorrectDialog.textFLCells":"单元格第一个字母大写","Common.Views.AutoCorrectDialog.textFLDont":"之后不要大写","Common.Views.AutoCorrectDialog.textFLSentence":"将句子的第一个字母大写","Common.Views.AutoCorrectDialog.textForLangFL":"语言的例外项:","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.textWarnAddFL":"例外项只能包含大小写字母。","Common.Views.AutoCorrectDialog.textWarnAddRec":"可识别函数只能包含字母 A 到 Z,大写或小写。","Common.Views.AutoCorrectDialog.textWarnResetFL":"您添加的任何例外项都将被移除,并且已移除的例外项将被还原。您想要继续吗?","Common.Views.AutoCorrectDialog.textWarnResetRec":"您添加的任何表达式都将被移除,已移除的表达式也将被还原。您想要继续吗?","Common.Views.AutoCorrectDialog.warnReplace":"%1 的自动更正项已存在。您想要替换它吗?","Common.Views.AutoCorrectDialog.warnReset":"您添加的所有自动更正项都将被移除,更改过的内容将被还原为其原始值。您想要继续吗?","Common.Views.AutoCorrectDialog.warnRestore":"%1 的自动更正项将重置为其原始值。您想要继续吗?","Common.Views.Chat.textChat":"聊天","Common.Views.Chat.textClosePanel":"关闭聊天","Common.Views.Chat.textEnterMessage":"在这里输入你的信息","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.mniFilterComments":"显示批注","Common.Views.Comments.mniFilterGroups":"按组筛选","Common.Views.Comments.mniPositionAsc":"从顶部","Common.Views.Comments.mniPositionDesc":"从底部","Common.Views.Comments.textAdd":"添加","Common.Views.Comments.textAddComment":"添加批注","Common.Views.Comments.textAddCommentToDoc":"向文档添加批注","Common.Views.Comments.textAddReply":"添加回复","Common.Views.Comments.textAll":"全部","Common.Views.Comments.textAnonym":"访客","Common.Views.Comments.textCancel":"取消","Common.Views.Comments.textClose":"关闭","Common.Views.Comments.textClosePanel":"关闭批注","Common.Views.Comments.textComment":"批注","Common.Views.Comments.textComments":"批注","Common.Views.Comments.textEdit":"确定","Common.Views.Comments.textEnterCommentHint":"在这里输入您的批注","Common.Views.Comments.textHintAddComment":"添加批注","Common.Views.Comments.textOpen":"未解决","Common.Views.Comments.textOpenAgain":"再次打开","Common.Views.Comments.textReply":"回复","Common.Views.Comments.textResolve":"解决","Common.Views.Comments.textResolved":"已解決","Common.Views.Comments.textSort":"排序批注","Common.Views.Comments.textSortFilter":"排序和过滤批注","Common.Views.Comments.textSortFilterMore":"排序、过滤、以及更多","Common.Views.Comments.textSortMore":"排序以及更多","Common.Views.Comments.textViewResolved":"您无权重新打开批注","Common.Views.Comments.txtEmpty":"文档中没有任何批注。","Common.Views.CopyWarningDialog.textDontShow":"不要再显示此消息","Common.Views.CopyWarningDialog.textMsg":"使用编辑器工具栏按钮和右键快捷菜单进行的复制,剪切和粘贴操作将仅在此编辑器选项卡中执行。

要在编辑器选项卡之外复制或粘贴到应用程序,请使用以下键盘组合:","Common.Views.CopyWarningDialog.textTitle":"复制,剪切和粘贴操作","Common.Views.CopyWarningDialog.textToCopy":"用于复制","Common.Views.CopyWarningDialog.textToCut":"用于剪切","Common.Views.CopyWarningDialog.textToPaste":"用于粘贴","Common.Views.CustomizeQuickAccessDialog.textDownload":"下载","Common.Views.CustomizeQuickAccessDialog.textMsg":"请检查显示在快速访问工具栏上的命令","Common.Views.CustomizeQuickAccessDialog.textPrint":"打印","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"快速打印","Common.Views.CustomizeQuickAccessDialog.textRedo":"重做","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"自定义快速访问","Common.Views.CustomizeQuickAccessDialog.textUndo":"撤销","Common.Views.DocumentAccessDialog.textLoading":"加载中…","Common.Views.DocumentAccessDialog.textTitle":"分享设置","Common.Views.DocumentPropertyDialog.errorDate":"您可以从日历中选择一个值并将其存储为日期。
如果您手动输入一个值,它将被存储为文本。","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"否","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"是","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"属性应该有一个标题","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"标题","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"“是”或“否”","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"日期","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"类型","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"数字","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"提供一个有效的数字","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"文本","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"属性应该有一个值","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"值","Common.Views.DocumentPropertyDialog.txtTitle":"新文档属性","Common.Views.Draw.hintEraser":"橡皮擦","Common.Views.Draw.hintSelect":"选择","Common.Views.Draw.txtEraser":"橡皮擦","Common.Views.Draw.txtHighlighter":"荧光笔","Common.Views.Draw.txtMM":"毫米","Common.Views.Draw.txtPen":"笔","Common.Views.Draw.txtSelect":"选择","Common.Views.Draw.txtSize":"粗细","Common.Views.ExternalDiagramEditor.textTitle":"图表编辑器","Common.Views.ExternalEditor.textClose":"关闭","Common.Views.ExternalEditor.textSave":"保存并退出","Common.Views.ExternalLinksDlg.closeButtonText":"关闭","Common.Views.ExternalLinksDlg.textAutoUpdate":"自动更新来自链接源的数据","Common.Views.ExternalLinksDlg.textChange":"更改来源","Common.Views.ExternalLinksDlg.textDelete":"断开链接","Common.Views.ExternalLinksDlg.textDeleteAll":"断开所有链接","Common.Views.ExternalLinksDlg.textOk":"确定","Common.Views.ExternalLinksDlg.textOpen":"打开源文件","Common.Views.ExternalLinksDlg.textSource":"来源","Common.Views.ExternalLinksDlg.textStatus":"状态","Common.Views.ExternalLinksDlg.textUnknown":"未知","Common.Views.ExternalLinksDlg.textUpdate":"更新值","Common.Views.ExternalLinksDlg.textUpdateAll":"全部更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部链接","Common.Views.ExternalMergeEditor.textTitle":"邮件合并接收人","Common.Views.ExternalOleEditor.textTitle":"电子表格编辑器","Common.Views.FormatSettingsDialog.textCategory":"分类","Common.Views.FormatSettingsDialog.textDecimal":"十进制","Common.Views.FormatSettingsDialog.textFormat":"格式","Common.Views.FormatSettingsDialog.textLinked":"链接到来源","Common.Views.FormatSettingsDialog.textLocale":"区域设置","Common.Views.FormatSettingsDialog.textSeparator":"使用千位隔符","Common.Views.FormatSettingsDialog.textSymbols":"符号","Common.Views.FormatSettingsDialog.textTitle":"数字格式","Common.Views.FormatSettingsDialog.txtAccounting":"统计","Common.Views.FormatSettingsDialog.txtAs10":"十分之五对齐 (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"百分之五十对齐(50/100)","Common.Views.FormatSettingsDialog.txtAs16":"十六分之八对齐 (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"一半对齐(1/2)","Common.Views.FormatSettingsDialog.txtAs4":"四分之二对齐 (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"八分之四对齐 (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"货币","Common.Views.FormatSettingsDialog.txtCustom":"自定义","Common.Views.FormatSettingsDialog.txtCustomWarning":"请仔细输入自定义数字格式。电子表格编辑器不会检查自定义格式中是否存在可能影响xlsx文件的错误。","Common.Views.FormatSettingsDialog.txtDate":"日期","Common.Views.FormatSettingsDialog.txtFraction":"分数","Common.Views.FormatSettingsDialog.txtGeneral":"常规","Common.Views.FormatSettingsDialog.txtNone":"无","Common.Views.FormatSettingsDialog.txtNumber":"数字","Common.Views.FormatSettingsDialog.txtPercentage":"百分比","Common.Views.FormatSettingsDialog.txtSample":"示例:","Common.Views.FormatSettingsDialog.txtScientific":"科学","Common.Views.FormatSettingsDialog.txtText":"文本","Common.Views.FormatSettingsDialog.txtTime":"时间","Common.Views.FormatSettingsDialog.txtUpto1":"最多一位数(1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"最多两位数(12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"最多三位数(131/135)","Common.Views.Header.ariaQuickAccessToolbar":"快速访问工具栏","Common.Views.Header.labelCoUsersDescr":"正在编辑文件的用户:","Common.Views.Header.textAddFavorite":"收藏","Common.Views.Header.textAdvSettings":"高级设置","Common.Views.Header.textBack":"打开文件所在位置","Common.Views.Header.textClose":"关闭文件","Common.Views.Header.textCompactView":"隐藏工具栏","Common.Views.Header.textDocEditDesc":"进行任何更改","Common.Views.Header.textDocViewDesc":"查看文件,但不做任何更改","Common.Views.Header.textDocViewFormDesc":"预览表单填写页面","Common.Views.Header.textDownload":"下载","Common.Views.Header.textEdit":"编辑","Common.Views.Header.textHideLines":"隐藏标尺","Common.Views.Header.textHideStatusBar":"隐藏状态栏","Common.Views.Header.textPrint":"打印","Common.Views.Header.textReadOnly":"只读","Common.Views.Header.textRemoveFavorite":"从收藏夹中删除","Common.Views.Header.textReview":"审阅","Common.Views.Header.textReviewDesc":"提出更改","Common.Views.Header.textShare":"分享","Common.Views.Header.textStartFill":"共享和收集数据","Common.Views.Header.textView":"查看","Common.Views.Header.textViewForm":"预览","Common.Views.Header.textZoom":"縮放","Common.Views.Header.tipAccessRights":"管理文档访问权限","Common.Views.Header.tipCustomizeQuickAccessToolbar":"自定义快速访问工具栏","Common.Views.Header.tipDocEdit":"编辑","Common.Views.Header.tipDocView":"查看","Common.Views.Header.tipDocViewForm":"查看表单","Common.Views.Header.tipDownload":"下载文件","Common.Views.Header.tipFillStatus":"填写状态","Common.Views.Header.tipGoEdit":"编辑当前文件","Common.Views.Header.tipPrint":"打印文件","Common.Views.Header.tipPrintQuick":"快速打印","Common.Views.Header.tipRedo":"重做","Common.Views.Header.tipReview":"审阅","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"搜索","Common.Views.Header.tipUndo":"撤消","Common.Views.Header.tipUsers":"查看用户","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.textHighlightDeleted":"突出显示已删除的内容","Common.Views.History.textMore":"更多","Common.Views.History.textRestore":"恢复","Common.Views.History.textShow":"展开","Common.Views.History.textShowAll":"显示详细的更改","Common.Views.History.textVer":"版本","Common.Views.History.textVersionHistory":"版本历史","Common.Views.ImageFromUrlDialog.textUrl":"粘贴图片URL网址:","Common.Views.ImageFromUrlDialog.txtEmpty":"这是必填栏","Common.Views.ImageFromUrlDialog.txtNotUrl":"该字段应该是“http://www.example.com”格式的URL","Common.Views.InsertTableDialog.textInvalidRowsCols":"您需要指定有效的行数和列数。","Common.Views.InsertTableDialog.txtColumns":"列数","Common.Views.InsertTableDialog.txtMaxText":"该字段的最大值为{0}。","Common.Views.InsertTableDialog.txtMinText":"该字段的最小值为{0}。","Common.Views.InsertTableDialog.txtRows":"行数","Common.Views.InsertTableDialog.txtTitle":"表格大小","Common.Views.InsertTableDialog.txtTitleSplit":"拆分单元格","Common.Views.LanguageDialog.labelSelect":"选择文档语言","Common.Views.MacrosAiDialog.textAreaPlaceholder":"输入查询提示","Common.Views.MacrosAiDialog.textCreate":"创建","Common.Views.MacrosDialog.textAutostart":"自动启动","Common.Views.MacrosDialog.textConvertFromVBA":"从VBA转换","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"从VBA转换宏","Common.Views.MacrosDialog.textCopy":"复制","Common.Views.MacrosDialog.textCreateFromDesc":"根据描述创建","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"根据描述创建宏","Common.Views.MacrosDialog.textCustomFunction":"自定义函数","Common.Views.MacrosDialog.textCustomFunctions":"自定义函数","Common.Views.MacrosDialog.textDebug":"调试","Common.Views.MacrosDialog.textDelete":"删除","Common.Views.MacrosDialog.textFunctions":"函数","Common.Views.MacrosDialog.textLoading":"加载中…","Common.Views.MacrosDialog.textMacro":"宏","Common.Views.MacrosDialog.textMacros":"宏","Common.Views.MacrosDialog.textMakeAutostart":"自启动","Common.Views.MacrosDialog.textRename":"重命名","Common.Views.MacrosDialog.textRun":"运行","Common.Views.MacrosDialog.textSave":"保存","Common.Views.MacrosDialog.textTitle":"宏","Common.Views.MacrosDialog.textUnMakeAutostart":"取消自启动","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"添加自定义函数","Common.Views.MacrosDialog.tipFunctionCopy":"复制自定义函数","Common.Views.MacrosDialog.tipFunctionDelete":"删除自定义函数","Common.Views.MacrosDialog.tipFunctionRename":"重命名自定义函数","Common.Views.MacrosDialog.tipMacrosAdd":"添加宏","Common.Views.MacrosDialog.tipMacrosCopy":"复制宏","Common.Views.MacrosDialog.tipMacrosDebug":"调试宏","Common.Views.MacrosDialog.tipMacrosRename":"重命名宏","Common.Views.MacrosDialog.tipMacrosRun":"运行宏","Common.Views.MacrosDialog.tipRedo":"重做","Common.Views.MacrosDialog.tipUndo":"撤销","Common.Views.OpenDialog.closeButtonText":"关闭文件","Common.Views.OpenDialog.txtEncoding":"编码","Common.Views.OpenDialog.txtIncorrectPwd":"密码不正确。","Common.Views.OpenDialog.txtOpenFile":"输入密码来打开文件","Common.Views.OpenDialog.txtPassword":"密码","Common.Views.OpenDialog.txtPreview":"预览","Common.Views.OpenDialog.txtProtected":"输入密码并打开文件后,将重置文件的当前密码。","Common.Views.OpenDialog.txtTitle":"选择%1选项","Common.Views.OpenDialog.txtTitleProtected":"受保护的文档","Common.Views.PasswordDialog.txtDescription":"设置密码以保护此文档","Common.Views.PasswordDialog.txtIncorrectPwd":"确认密码不相同","Common.Views.PasswordDialog.txtPassword":"密码","Common.Views.PasswordDialog.txtRepeat":"重复密码","Common.Views.PasswordDialog.txtTitle":"设置密码","Common.Views.PasswordDialog.txtWarning":"警告:如果您丢失或忘记了密码,则无法恢复。请把它放在安全的地方。","Common.Views.PdfSignDialog.textBefore":"Before signing this document, verify that the content you are signing is correct","Common.Views.PdfSignDialog.textClear":"Clear","Common.Views.PdfSignDialog.textFromFile":"From File","Common.Views.PdfSignDialog.textFromStorage":"From Storage","Common.Views.PdfSignDialog.textFromUrl":"From URL","Common.Views.PdfSignDialog.textLooksAs":"Signature looks as","Common.Views.PdfSignDialog.textSelect":"Select Image","Common.Views.PdfSignDialog.tipRedo":"Redo","Common.Views.PdfSignDialog.tipUndo":"Undo","Common.Views.PdfSignDialog.txtDraw":"Draw","Common.Views.PdfSignDialog.txtRemBack":"Remove white background","Common.Views.PdfSignDialog.txtTitle":"Signature","Common.Views.PdfSignDialog.txtType":"Type","Common.Views.PdfSignDialog.txtUpload":"Upload","Common.Views.PdfSignDialog.txtUploadDesc":"You can upload images in JPEG, JPG, GIF and PNG formats with a max size of 30 Mb","Common.Views.PluginDlg.textDock":"置顶插件","Common.Views.PluginDlg.textLoading":"载入中","Common.Views.PluginPanel.textClosePanel":"关闭插件","Common.Views.PluginPanel.textHidePanel":"折叠插件","Common.Views.PluginPanel.textLoading":"载入中","Common.Views.PluginPanel.textUndock":"取消置顶插件","Common.Views.Plugins.groupCaption":"插件","Common.Views.Plugins.strPlugins":"插件","Common.Views.Plugins.textBackgroundPlugins":"后台插件","Common.Views.Plugins.textClosePanel":"关闭插件","Common.Views.Plugins.textLoading":"载入中","Common.Views.Plugins.textSettings":"设置","Common.Views.Plugins.textStart":"开始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"后台插件列表","Common.Views.Plugins.tipMore":"更多","Common.Views.Protection.hintAddPwd":"使用密码加密文档","Common.Views.Protection.hintDelPwd":"删除密码","Common.Views.Protection.hintPwd":"更改或删除密码","Common.Views.Protection.hintSignature":"添加数字签名或签名栏","Common.Views.Protection.txtAddPwd":"添加密码","Common.Views.Protection.txtChangePwd":"修改密码","Common.Views.Protection.txtDeletePwd":"删除密码","Common.Views.Protection.txtEncrypt":"加密","Common.Views.Protection.txtInvisibleSignature":"添加数字签名","Common.Views.Protection.txtSignature":"签名","Common.Views.Protection.txtSignatureLine":"添加签名栏","Common.Views.RecentFiles.txtOpenRecent":"打开最近","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.mniMMFromFile":"从文件导入","Common.Views.ReviewChanges.mniMMFromStorage":"来自存储设备","Common.Views.ReviewChanges.mniMMFromUrl":"来自URL","Common.Views.ReviewChanges.mniSettings":"比较设置","Common.Views.ReviewChanges.strFast":"快速","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.tipCombine":"将当前文档与另一个文档合并","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.tipMailRecepients":"邮件合并","Common.Views.ReviewChanges.tipRejectCurrent":"否决当前更改并跳转到下一个更改","Common.Views.ReviewChanges.tipReview":"跟踪更改","Common.Views.ReviewChanges.tipReviewView":"选择要显示更改的模式","Common.Views.ReviewChanges.tipSetDocLang":"设置文档语言","Common.Views.ReviewChanges.tipSetSpelling":"拼写检查","Common.Views.ReviewChanges.tipSharing":"管理文档访问权限","Common.Views.ReviewChanges.txtAccept":"同意","Common.Views.ReviewChanges.txtAcceptAll":"同意所有更改","Common.Views.ReviewChanges.txtAcceptChanges":"同意更改","Common.Views.ReviewChanges.txtAcceptCurrent":"同意当前更改","Common.Views.ReviewChanges.txtChat":"聊天","Common.Views.ReviewChanges.txtClose":"关闭","Common.Views.ReviewChanges.txtCoAuthMode":"共同编辑模式","Common.Views.ReviewChanges.txtCombine":"合并","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.txtMailMerge":"邮件合并","Common.Views.ReviewChanges.txtMarkup":"所有更改 {0}","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":"上一个","Common.Views.ReviewChanges.txtPreview":"预览","Common.Views.ReviewChanges.txtReject":"否决","Common.Views.ReviewChanges.txtRejectAll":"否决所有更改","Common.Views.ReviewChanges.txtRejectChanges":"否决更改","Common.Views.ReviewChanges.txtRejectCurrent":"否决当前更改","Common.Views.ReviewChanges.txtSharing":"分享","Common.Views.ReviewChanges.txtSpelling":"拼写检查","Common.Views.ReviewChanges.txtTurnon":"跟踪更改","Common.Views.ReviewChanges.txtView":"显示模式","Common.Views.ReviewChangesDialog.textTitle":"审查更改","Common.Views.ReviewChangesDialog.txtAccept":"同意","Common.Views.ReviewChangesDialog.txtAcceptAll":"同意所有更改","Common.Views.ReviewChangesDialog.txtAcceptCurrent":"同意当前更改","Common.Views.ReviewChangesDialog.txtNext":"跳转到下一处更改","Common.Views.ReviewChangesDialog.txtPrev":"跳转到上一处更改","Common.Views.ReviewChangesDialog.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.textComment":"批注","Common.Views.ReviewPopover.textEdit":"确定","Common.Views.ReviewPopover.textEnterComment":"在这里输入您的批注","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.ReviewPopover.textViewResolved":"您无权重新打开批注","Common.Views.ReviewPopover.txtAccept":"同意","Common.Views.ReviewPopover.txtDeleteTip":"删除","Common.Views.ReviewPopover.txtEditTip":"编辑","Common.Views.ReviewPopover.txtReject":"否决","Common.Views.SaveAsDlg.textLoading":"载入中","Common.Views.SaveAsDlg.textTitle":"要保存的文件夹","Common.Views.SearchPanel.textCaseSensitive":"区分大小写","Common.Views.SearchPanel.textCloseSearch":"关闭搜索","Common.Views.SearchPanel.textContentChanged":"文件已更改。","Common.Views.SearchPanel.textFind":"查找","Common.Views.SearchPanel.textFindAndReplace":"查找和替换","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}个项目已成功替换。","Common.Views.SearchPanel.textMatchUsingRegExp":"使用正则表达式匹配","Common.Views.SearchPanel.textNoMatches":"找不到匹配信息","Common.Views.SearchPanel.textNoSearchResults":"没有搜索结果","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"已替换{0}/{1}项。其余{2}个项目已被其他用户锁定。","Common.Views.SearchPanel.textReplace":"替换","Common.Views.SearchPanel.textReplaceAll":"全部替换","Common.Views.SearchPanel.textReplaceWith":"替换为","Common.Views.SearchPanel.textSearchAgain":"{0}执行新的搜索{1}以获得准确的结果。","Common.Views.SearchPanel.textSearchHasStopped":"搜索已停止","Common.Views.SearchPanel.textSearchResults":"搜索结果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"搜索结果","Common.Views.SearchPanel.textTooManyResults":"此处显示的结果太多","Common.Views.SearchPanel.textWholeWords":"仅限完整单词","Common.Views.SearchPanel.tipNextResult":"下一个结果","Common.Views.SearchPanel.tipPreviousResult":"上一个结果","Common.Views.SelectFileDlg.textLoading":"载入中","Common.Views.SelectFileDlg.textTitle":"选择数据源","Common.Views.ShapeShadowDialog.txtAngle":"角度","Common.Views.ShapeShadowDialog.txtDistance":"距离","Common.Views.ShapeShadowDialog.txtSize":"大小","Common.Views.ShapeShadowDialog.txtTitle":"调整阴影","Common.Views.ShapeShadowDialog.txtTransparency":"透明度","Common.Views.ShortcutsDialog.txtDescription":"描述","Common.Views.ShortcutsDialog.txtEmpty":"未找到匹配项,请调整搜索条件。","Common.Views.ShortcutsDialog.txtRestoreAll":"将所有设置恢复为默认值","Common.Views.ShortcutsDialog.txtRestoreContinue":"您确定要继续操作吗?","Common.Views.ShortcutsDialog.txtRestoreDescription":"所有快捷键设置将恢复为默认值。","Common.Views.ShortcutsDialog.txtRestoreToDefault":"恢复为默认","Common.Views.ShortcutsDialog.txtSearch":"搜索","Common.Views.ShortcutsDialog.txtTitle":"键盘快捷键","Common.Views.ShortcutsEditDialog.txtAction":"操作","Common.Views.ShortcutsEditDialog.txtCantBeEdited":"无法编辑此快捷方式","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"输入所需快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"%1操作使用的快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"%1操作使用的快捷键,无法更改","Common.Views.ShortcutsEditDialog.txtInputWarnOne":" %1操作使用的快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"%1操作使用的快捷键,无法更改","Common.Views.ShortcutsEditDialog.txtNewShortcut":"新建快捷键","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"您确定要继续操作吗?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"“%1”操作的所有快捷键将恢复为默认值。","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"恢复为默认","Common.Views.ShortcutsEditDialog.txtTitle":"编辑快捷键","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"输入所需快捷键","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":"选择图像","Common.Views.SignDialog.textSignature":"签名外观如下","Common.Views.SignDialog.textTitle":"签署文件","Common.Views.SignDialog.textUseImage":"或单击“选择图像”,使用图片作为签名","Common.Views.SignDialog.textValid":"從%1到%2有效","Common.Views.SignDialog.tipFontName":"字体名称","Common.Views.SignDialog.tipFontSize":"字体大小","Common.Views.SignSettingsDialog.textAllowComment":"允许签名者在签名对话框中添加批注","Common.Views.SignSettingsDialog.textDefInstruction":"在签署此文档之前,请验证您正在签署的内容是否正确。","Common.Views.SignSettingsDialog.textInfoEmail":"建议签署人的电子邮件","Common.Views.SignSettingsDialog.textInfoName":"建议签署人","Common.Views.SignSettingsDialog.textInfoTitle":"建议签署人称谓","Common.Views.SignSettingsDialog.textInstructions":"签名人须知","Common.Views.SignSettingsDialog.textShowDate":"在签名行中显示签名日期","Common.Views.SignSettingsDialog.textTitle":"签名设置","Common.Views.SignSettingsDialog.txtEmpty":"这是必填栏","Common.Views.SymbolTableDialog.textCharacter":"字符","Common.Views.SymbolTableDialog.textCode":"Unicode十六进制值","Common.Views.SymbolTableDialog.textCopyright":"版权符号","Common.Views.SymbolTableDialog.textDCQuote":"结束双引号","Common.Views.SymbolTableDialog.textDOQuote":"开头双引号","Common.Views.SymbolTableDialog.textEllipsis":"水平省略号","Common.Views.SymbolTableDialog.textEmDash":"破折号","Common.Views.SymbolTableDialog.textEmSpace":"空格","Common.Views.SymbolTableDialog.textEnDash":"虚线","Common.Views.SymbolTableDialog.textEnSpace":"半形空格","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":"标签不能为空。","DE.Controllers.DocProtection.txtIsProtectedComment":"文档受到保护。您只能在此文档中插入批注。","DE.Controllers.DocProtection.txtIsProtectedForms":"文档受到保护。您只能填写此文档中的表单。","DE.Controllers.DocProtection.txtIsProtectedTrack":"文档受到保护。您可以编辑此文档,但所有更改都将被跟踪。","DE.Controllers.DocProtection.txtIsProtectedView":"文档受到保护。您只能查看此文档。","DE.Controllers.DocProtection.txtWasProtectedComment":"文档已被另一个用户保护。\n您只能在此文档中插入批注。","DE.Controllers.DocProtection.txtWasProtectedForms":"文档已被另一个用户保护。\n您只能填写此文档中的表单。","DE.Controllers.DocProtection.txtWasProtectedTrack":"文档已被另一个用户保护。\n您可以编辑此文档,但所有更改都将被跟踪。","DE.Controllers.DocProtection.txtWasProtectedView":"文档已被另一个用户保护。\n您只能查看此文档。","DE.Controllers.DocProtection.txtWasUnprotected":"文件已解除保護。","DE.Controllers.HeaderFooterTab.textFieldExample":"代码编写示例:TIME \\@ \"dddd, MMMM d, yyyy\"","DE.Controllers.HeaderFooterTab.textFieldLabel":"域代码","DE.Controllers.HeaderFooterTab.textFieldTitle":"字段","DE.Controllers.HeaderFooterTab.txtNumberingDlgTitle":"页面编号","DE.Controllers.LeftMenu.leavePageText":"此文档中所有未保存的更改都将丢失
单击“取消”,然后单击“保存”以保存它们。单击“确定”放弃所有未保存的更改。","DE.Controllers.LeftMenu.newDocumentTitle":"未命名的文档","DE.Controllers.LeftMenu.notcriticalErrorTitle":"警告","DE.Controllers.LeftMenu.requestEditRightsText":"正在请求编辑权限...","DE.Controllers.LeftMenu.textLoadHistory":"正在加载版本历史记录...","DE.Controllers.LeftMenu.textNoTextFound":"无法找到您搜索的数据,请调整您的搜索选项。","DE.Controllers.LeftMenu.textReplaceSkipped":"替换已完成。 {0}处跳过。","DE.Controllers.LeftMenu.textReplaceSuccess":"已完成搜索。已替换的次数:{0}。","DE.Controllers.LeftMenu.textSelectPath":"输入保存文件副本的路径","DE.Controllers.LeftMenu.txtCompatible":"文档将保存为新格式。它将允许使用所有编辑器功能,但可能会影响文档布局
如果要使文件与旧的MS Word版本兼容,请使用高级设置的“兼容性”选项。","DE.Controllers.LeftMenu.txtUntitled":"无标题","DE.Controllers.LeftMenu.warnDownloadAs":"如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?","DE.Controllers.LeftMenu.warnDownloadAsPdf":"您的{0}将被转换为可编辑格式。这可能需要一段时间。生成的文档将进行优化以允许您编辑文本,因此它可能与原始{0}不完全相同,尤其是在原始文件包含大量图形的情况下。","DE.Controllers.LeftMenu.warnDownloadAsRTF":"如果您继续以此格式保存,一些格式可能会丢失。
您确定要继续吗?","DE.Controllers.LeftMenu.warnReplaceString":"{0}不是替换字段的有效特殊字符。","DE.Controllers.Main.applyChangesTextText":"加载更改...","DE.Controllers.Main.applyChangesTitleText":"加载更改","DE.Controllers.Main.confirmMaxChangesSize":"您执行的操作超过了为服务器设置的大小限制
按“撤消”取消上次操作,或按“继续”在本地机器继续操作(您需要下载文件或复制其内容以确保不会丢失任何内容)。","DE.Controllers.Main.convertationTimeoutText":"转换超时","DE.Controllers.Main.criticalErrorExtText":"按“确定”返回文档列表。","DE.Controllers.Main.criticalErrorExtTextClose":"点击“确定”关闭编辑器。","DE.Controllers.Main.criticalErrorTitle":"错误","DE.Controllers.Main.downloadErrorText":"下载失败","DE.Controllers.Main.downloadMergeText":"下载中…","DE.Controllers.Main.downloadMergeTitle":"下载中","DE.Controllers.Main.downloadTextText":"正在下载文件...","DE.Controllers.Main.downloadTitleText":"正在下载文件","DE.Controllers.Main.errorAccessDeny":"您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员.","DE.Controllers.Main.errorBadImageUrl":"图片URL地址不正确","DE.Controllers.Main.errorCannotPasteImg":"我们无法从剪贴板粘贴此图像,但您可以将其保存到您的设备,然后\n从那里插入此此图片,或者您可以复制图像(不带文本)并将其粘贴到文档中。","DE.Controllers.Main.errorCoAuthoringDisconnect":"服务器连接失败。该文档现在无法编辑","DE.Controllers.Main.errorComboSeries":"若要创建组合图表,请至少选择两个系列的数据。","DE.Controllers.Main.errorCompare":"“比较文档”功能在共同编辑时不可用。","DE.Controllers.Main.errorConnectToServer":"这份文件无法保存。请检查连接设置或联系您的管理员。
当你点击“OK”按钮,系统将提示您下载文档。","DE.Controllers.Main.errorCopyDisabled":"出于安全原因,无法复制本文档中的内容。","DE.Controllers.Main.errorDatabaseConnection":"外部错误。
数据库连接错误。如果错误仍然存​​在,请联系支持人员。","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.errorEditProtectedRange":"此选区已受保护,无法编辑。","DE.Controllers.Main.errorEmailClient":"找不到电子邮件客户端。","DE.Controllers.Main.errorEmptyTOC":"将样式库中的标题样式应用到所选文件上","DE.Controllers.Main.errorFilePassProtect":"该文档受密码保护,无法被打开。","DE.Controllers.Main.errorFileSizeExceed":"文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。","DE.Controllers.Main.errorForceSave":"保存文件时出错。请使用“下载为”选项将文件保存到驱动器,或稍后再试。","DE.Controllers.Main.errorInconsistentExt":"打开文件时出错
文件内容与文件扩展名不匹配。","DE.Controllers.Main.errorInconsistentExtDocx":"打开文件时出错
文件内容对应于文本文档(例如docx),但文件的扩展名不一致:%1。","DE.Controllers.Main.errorInconsistentExtPdf":"打开文件时出错
文件内容对应于以下格式之一:pdf/djvu/xps/oxfs,但文件的扩展名不一致:%1。","DE.Controllers.Main.errorInconsistentExtPptx":"打开文件时出错
文件内容对应于演示文稿(例如pptx),但文件的扩展名不一致:%1。","DE.Controllers.Main.errorInconsistentExtXlsx":"打开文件时出错
文件内容对应于电子表格(例如xlsx),但文件的扩展名不一致:%1。","DE.Controllers.Main.errorKeyEncrypt":"未知密钥描述符","DE.Controllers.Main.errorKeyExpire":"密钥描述符已过期","DE.Controllers.Main.errorLoadingFont":"字体未加载
请与您的文档服务器管理员联系。","DE.Controllers.Main.errorMailMergeLoadFile":"加载文档失败。请选择其他文件。","DE.Controllers.Main.errorMailMergeSaveFile":"合并失败","DE.Controllers.Main.errorNoTOC":"没有要更新的目录。可以从“参考”选项卡插入一个。","DE.Controllers.Main.errorPasswordIsNotCorrect":"您提供的密码不正确
验证CAPS LOCK键是否关闭,并确保使用正确的大写字母。","DE.Controllers.Main.errorSaveWatermark":"该文件包含来自其他域名的水印图片。
要在 PDF 中显示水印,请将图片链接更新为与文档相同的域名,或从电脑上传图片。","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.errorTextFormWrongFormat":"输入的值与字段的格式不匹配。","DE.Controllers.Main.errorToken":"文档安全令牌的格式不正确
请与您的文档服务器管理员联系。","DE.Controllers.Main.errorTokenExpire":"文档安全令牌已过期。
请与您的文档服务器管理员联系。","DE.Controllers.Main.errorUpdateVersion":"\n该文件版本已经改变了。该页面将被重新加载。","DE.Controllers.Main.errorUpdateVersionOnDisconnect":"网络连接已恢复,文件版本已更改
在继续工作之前,您需要下载文件或复制其内容以确保不会丢失任何内容,然后重新加载此页面。","DE.Controllers.Main.errorUserDrop":"该文件现在无法访问。","DE.Controllers.Main.errorUsersExceed":"超出原服务计划可允许的帐户数量","DE.Controllers.Main.errorViewerDisconnect":"连接失败。您仍然可以查看文档
,但在连接恢复之前无法下载或打印。","DE.Controllers.Main.leavePageText":"您在本文档中有未保存的更改。点击“留在这个页面”,然后点击“保存”保存。点击“离开此页面”,放弃所有未保存的更改。","DE.Controllers.Main.leavePageTextOnClose":"此文档中所有未保存的更改都将丢失
单击“取消”,然后单击“保存”以保存它们。单击“确定”放弃所有未保存的更改。","DE.Controllers.Main.loadFontsTextText":"数据加载中…","DE.Controllers.Main.loadFontsTitleText":"数据加载中","DE.Controllers.Main.loadFontTextText":"数据加载中…","DE.Controllers.Main.loadFontTitleText":"数据加载中","DE.Controllers.Main.loadImagesTextText":"图片加载中…","DE.Controllers.Main.loadImagesTitleText":"图片加载中","DE.Controllers.Main.loadImageTextText":"图片加载中…","DE.Controllers.Main.loadImageTitleText":"图片加载中","DE.Controllers.Main.loadingDocumentTextText":"文件加载中…","DE.Controllers.Main.loadingDocumentTitleText":"文件加载中…","DE.Controllers.Main.mailMergeLoadFileText":"正在加载数据源...","DE.Controllers.Main.mailMergeLoadFileTitle":"正在加载数据源","DE.Controllers.Main.notcriticalErrorTitle":"警告","DE.Controllers.Main.openErrorText":"打开文件时发生错误","DE.Controllers.Main.openTextText":"正在打开文档...","DE.Controllers.Main.openTitleText":"正在打开文件","DE.Controllers.Main.printTextText":"正在打印文件","DE.Controllers.Main.printTitleText":"正在打印文件","DE.Controllers.Main.reloadButtonText":"重新加载页面","DE.Controllers.Main.requestEditFailedMessageText":"有人正在编辑此文档。请稍后再试。","DE.Controllers.Main.requestEditFailedTitleText":"访问被拒绝","DE.Controllers.Main.saveErrorText":"保存文件时发生错误","DE.Controllers.Main.saveErrorTextDesktop":"无法保存或创建此文件
可能的原因有:
1.该文件是只读的
2.其他用户正在编辑该文件
3.磁盘已满或已损坏。","DE.Controllers.Main.saveTextText":"正在保存文档...","DE.Controllers.Main.saveTitleText":"正在保存文件","DE.Controllers.Main.savingText":"提交中","DE.Controllers.Main.scriptLoadError":"连接速度过慢,部分组件无法被加载。请重新加载页面。","DE.Controllers.Main.sendMergeText":"发送合并中...","DE.Controllers.Main.sendMergeTitle":"发送合并","DE.Controllers.Main.splitDividerErrorText":"行数必须为%1的除数。","DE.Controllers.Main.splitMaxColsErrorText":"列数必须小于%1。","DE.Controllers.Main.splitMaxRowsErrorText":"行数必须小于%1。","DE.Controllers.Main.textAnonymous":"匿名用户","DE.Controllers.Main.textAnyone":"任何人","DE.Controllers.Main.textApplyAll":"应用于所有公式","DE.Controllers.Main.textBuyNow":"瀏覽網站","DE.Controllers.Main.textChangesSaved":"所有更改已保存","DE.Controllers.Main.textClose":"关闭","DE.Controllers.Main.textCloseTip":"点击关闭提示","DE.Controllers.Main.textConnectionLost":"正在尝试连接。请检查连接设置。","DE.Controllers.Main.textContactUs":"联系销售人员","DE.Controllers.Main.textContinue":"继续","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":"已达到许可证最大连接数限制","DE.Controllers.Main.textPaidFeature":"付费功能","DE.Controllers.Main.textReconnect":"连接已恢复","DE.Controllers.Main.textRemember":"记住我对所有文件的选择","DE.Controllers.Main.textRememberMacros":"记住我的选择并应用到全部宏","DE.Controllers.Main.textRenameError":"用户名不能为空。","DE.Controllers.Main.textRenameLabel":"输入用于协作的名称","DE.Controllers.Main.textRequestMacros":"一个宏向 URL 发出请求。您想要允许向 %1 发出请求吗?","DE.Controllers.Main.textShape":"形状","DE.Controllers.Main.textSignature":"签名","DE.Controllers.Main.textStrict":"严格模式","DE.Controllers.Main.textText":"文字","DE.Controllers.Main.textTryQuickPrint":"您已选择“快速打印”:整个文档将被打印到最近选择的打印机或者默认打印机。
您想要继续吗?","DE.Controllers.Main.textTryUndoRedo":"对于快速的协同编辑模式,取消/重做功能是禁用的。< br >单击“严格模式”按钮切换到严格co-editing模式编辑该文件没有其他用户干扰和发送您的更改只后你拯救他们。您可以使用编辑器高级设置在编辑模式之间切换。","DE.Controllers.Main.textTryUndoRedoWarn":"快速共同编辑模式下,撤销/重做功能被禁用。","DE.Controllers.Main.textUndo":"撤消","DE.Controllers.Main.textUpdateVersion":"现在无法编辑该文档。
正在尝试更新文件,请稍候...","DE.Controllers.Main.textUpdating":"更新中","DE.Controllers.Main.tipLicenseExceeded":"已达到许可证允许的最大同时连接数,因此文档以只读模式打开。

如需编辑权限,请稍后重试,或者联系文档所有者。","DE.Controllers.Main.tipLicenseUsersExceeded":"已达到许可证允许编辑文档的最大用户数量,因此该文档以只读模式打开。

如果您需要编辑权限,请稍后重试或联系文档所有者。","DE.Controllers.Main.titleLicenseExp":"许可证过期","DE.Controllers.Main.titleLicenseNotActive":"授权证书未激活","DE.Controllers.Main.titleReadOnly":"只读模式","DE.Controllers.Main.titleServerVersion":"编辑器已更新","DE.Controllers.Main.titleUpdateVersion":"版本已更改","DE.Controllers.Main.txtAbove":"上方","DE.Controllers.Main.txtArt":"在这输入文字","DE.Controllers.Main.txtBasicShapes":"基本形状","DE.Controllers.Main.txtBelow":"下面","DE.Controllers.Main.txtBookmarkError":"错误!书签未定义。","DE.Controllers.Main.txtButtons":"按钮","DE.Controllers.Main.txtCallouts":"标注","DE.Controllers.Main.txtCharts":"图表","DE.Controllers.Main.txtChoose":"选择一项","DE.Controllers.Main.txtClickToLoad":"单击以加载图像","DE.Controllers.Main.txtCurrentDocument":"当前文件","DE.Controllers.Main.txtDiagramTitle":"图表标题","DE.Controllers.Main.txtEditingMode":"设置编辑模式..","DE.Controllers.Main.txtEndOfFormula":"公式意外结束","DE.Controllers.Main.txtEnterDate":"输入日期","DE.Controllers.Main.txtErrorLoadHistory":"历史加载失败","DE.Controllers.Main.txtEvenPage":"偶数页","DE.Controllers.Main.txtFiguredArrows":"图形箭头","DE.Controllers.Main.txtFirstPage":"首页","DE.Controllers.Main.txtFooter":"页脚","DE.Controllers.Main.txtFormulaNotInTable":"公式不在表格中","DE.Controllers.Main.txtHeader":"页眉","DE.Controllers.Main.txtHyperlink":"链接","DE.Controllers.Main.txtIndTooLarge":"索引太大","DE.Controllers.Main.txtLines":"行","DE.Controllers.Main.txtMainDocOnly":"错误!仅限主文档。","DE.Controllers.Main.txtMath":"数学","DE.Controllers.Main.txtMissArg":"缺少参数","DE.Controllers.Main.txtMissOperator":"缺少运算符","DE.Controllers.Main.txtNeedSynchronize":"您有更新","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.txtSameAsPrev":"与上一个相同","DE.Controllers.Main.txtSaveCopyAsComplete":"已成功保存文件副本","DE.Controllers.Main.txtScheme_Aspect":"切面","DE.Controllers.Main.txtScheme_Blue":"蓝色","DE.Controllers.Main.txtScheme_Blue_Green":"蓝绿色","DE.Controllers.Main.txtScheme_Blue_II":"蓝色2","DE.Controllers.Main.txtScheme_Blue_Warm":"暖蓝色","DE.Controllers.Main.txtScheme_Grayscale":"灰度","DE.Controllers.Main.txtScheme_Green":"绿色","DE.Controllers.Main.txtScheme_Green_Yellow":"黄绿色","DE.Controllers.Main.txtScheme_Marquee":"选框","DE.Controllers.Main.txtScheme_Median":"中位数","DE.Controllers.Main.txtScheme_Office":"Office","DE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","DE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","DE.Controllers.Main.txtScheme_Orange":"橙色","DE.Controllers.Main.txtScheme_Orange_Red":"橙红色","DE.Controllers.Main.txtScheme_Paper":"纸张","DE.Controllers.Main.txtScheme_Red":"红色","DE.Controllers.Main.txtScheme_Red_Orange":"红橙色","DE.Controllers.Main.txtScheme_Red_Violet":"红紫色","DE.Controllers.Main.txtScheme_Slipstream":"实时流处理引擎Slipstream","DE.Controllers.Main.txtScheme_Violet":"紫色","DE.Controllers.Main.txtScheme_Violet_II":"紫色2","DE.Controllers.Main.txtScheme_Yellow":"黄色","DE.Controllers.Main.txtScheme_Yellow_Orange":"黄橙色","DE.Controllers.Main.txtSection":"-部分","DE.Controllers.Main.txtSeries":"序列","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_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":"V形","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":"角","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":"十二边形","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":"半框","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":"爆炸效果1","DE.Controllers.Main.txtShape_irregularSeal2":"爆炸效果2","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_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_Book_Title":"书名","DE.Controllers.Main.txtStyle_Caption":"标题","DE.Controllers.Main.txtStyle_Default_Paragraph_Font":"默认段落字体","DE.Controllers.Main.txtStyle_Emphasis":"强调","DE.Controllers.Main.txtStyle_endnote_reference":"尾注引用","DE.Controllers.Main.txtStyle_endnote_text":"尾注文本","DE.Controllers.Main.txtStyle_footnote_reference":"脚注引用","DE.Controllers.Main.txtStyle_footnote_text":"脚注文本","DE.Controllers.Main.txtStyle_Heading_1":"标题 1","DE.Controllers.Main.txtStyle_Heading_2":"标题 2","DE.Controllers.Main.txtStyle_Heading_3":"标题 3","DE.Controllers.Main.txtStyle_Heading_4":"标题 4","DE.Controllers.Main.txtStyle_Heading_5":"标题 5","DE.Controllers.Main.txtStyle_Heading_6":"标题 6","DE.Controllers.Main.txtStyle_Heading_7":"标题 7","DE.Controllers.Main.txtStyle_Heading_8":"标题 8","DE.Controllers.Main.txtStyle_Heading_9":"标题 9","DE.Controllers.Main.txtStyle_Intense_Emphasis":"明显强调","DE.Controllers.Main.txtStyle_Intense_Quote":"强调引用","DE.Controllers.Main.txtStyle_Intense_Reference":"强烈引用","DE.Controllers.Main.txtStyle_List_Paragraph":"段落列表","DE.Controllers.Main.txtStyle_No_List":"无列表","DE.Controllers.Main.txtStyle_No_Spacing":"无间距","DE.Controllers.Main.txtStyle_Normal":"正文","DE.Controllers.Main.txtStyle_Quote":"引用","DE.Controllers.Main.txtStyle_Strong":"强","DE.Controllers.Main.txtStyle_Subtitle":"副标题","DE.Controllers.Main.txtStyle_Subtle_Emphasis":"轻微强调","DE.Controllers.Main.txtStyle_Subtle_Reference":"轻微引用","DE.Controllers.Main.txtStyle_Title":"标题","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":"在此处键入方程式。","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.updateChartText":"更新图表数据中...","DE.Controllers.Main.uploadDocExtMessage":"未知的文件格式。","DE.Controllers.Main.uploadDocFileCountMessage":"未上传任何文档。","DE.Controllers.Main.uploadDocSizeMessage":"超出最大文件大小限制。","DE.Controllers.Main.uploadImageExtMessage":"未知图像格式。","DE.Controllers.Main.uploadImageFileCountMessage":"没有上传图片","DE.Controllers.Main.uploadImageSizeMessage":"图像太大。最大大小为25 MB。","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.warnLicenseAnonymous":"匿名用户的访问被拒绝
此文档将仅打开以供查看。","DE.Controllers.Main.warnLicenseBefore":"许可证未激活
请与管理员联系。","DE.Controllers.Main.warnLicenseExp":"您的许可证已过期。
请更新您的许可证并刷新页面。","DE.Controllers.Main.warnLicenseLimitedNoAccess":"许可证已过期。
您现在不能使用文档编辑功能。
请联系您的管理员。","DE.Controllers.Main.warnLicenseLimitedRenewed":"许可证需要更新。
您现在只能使用受限的文档编辑功能。
请联系管理员以获取完整权限","DE.Controllers.Main.warnNoLicense":"您已达到同时连接到%1编辑器的限制。此文档将仅打开以供查看
有关个人升级条款,请与%1销售团队联系。","DE.Controllers.Main.warnNoLicenseUsers":"您已达到%1编辑器的用户限制。有关个人升级条款,请与%1销售团队联系。","DE.Controllers.Main.warnProcessRightsChange":"您被拒绝了编辑文件的权限。","DE.Controllers.Main.warnStartFilling":"表单正在填写中。
当前尚不能够编辑文件。","DE.Controllers.Navigation.txtBeginning":"文件开头","DE.Controllers.Navigation.txtGotoBeginning":"转到文档的开头","DE.Controllers.Print.textMarginsLast":"最后一次自定义","DE.Controllers.Print.txtCustom":"自定义","DE.Controllers.Print.txtPrintRangeInvalid":"无效的打印范围","DE.Controllers.Search.notcriticalErrorTitle":"警告","DE.Controllers.Search.textNoTextFound":"无法找到您搜索的数据,请调整您的搜索选项。","DE.Controllers.Search.textReplaceSkipped":"替换已完成。 {0}处跳过。","DE.Controllers.Search.textReplaceSuccess":"搜索已完成。已替换{0}处","DE.Controllers.Search.warnReplaceString":"{0}不是“替换为”输入框要求的有效特殊字符。","DE.Controllers.Statusbar.textDisconnect":"连接失败
正在尝试连接。请检查连接设置。","DE.Controllers.Statusbar.textHasChanges":"已经跟踪了新的变化","DE.Controllers.Statusbar.textSetTrackChanges":"您处于“跟踪更改”模式","DE.Controllers.Statusbar.textTrackChanges":"打开文档,并启用“跟踪更改”模式","DE.Controllers.Statusbar.tipReview":"跟踪更改","DE.Controllers.Statusbar.zoomText":"縮放{0}%","DE.Controllers.Toolbar.confirmAddFontName":"您想要保存的字体在当前设备上不可用。
文本的样式将使用系统字体中的一种进行显示,保存的字体将在可用时被调用。
您想要继续吗?","DE.Controllers.Toolbar.dataUrl":"粘贴数据URL","DE.Controllers.Toolbar.errorAccessDeny":"您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员。","DE.Controllers.Toolbar.fileUrl":"粘贴文件URL","DE.Controllers.Toolbar.helpChartElements":"轻松切换图表元素显示。","DE.Controllers.Toolbar.helpChartElementsHeader":"显示图表元素","DE.Controllers.Toolbar.helpCommentFilter":"左侧面板切换批注状态。","DE.Controllers.Toolbar.helpCommentFilterHeader":"批注筛选","DE.Controllers.Toolbar.notcriticalErrorTitle":"警告","DE.Controllers.Toolbar.textAccent":"重点","DE.Controllers.Toolbar.textBracket":"括号","DE.Controllers.Toolbar.textConvertFormDownload":"将文件下载为可填写的PDF表单以便填写。","DE.Controllers.Toolbar.textConvertFormSave":"将文件另存为可填写的PDF表单以便填写。","DE.Controllers.Toolbar.textDownloadPdf":"下载 PDF","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":"大型运算符","DE.Controllers.Toolbar.textLimitAndLog":"极限和对数","DE.Controllers.Toolbar.textMatrix":"矩阵","DE.Controllers.Toolbar.textOperator":"运算符","DE.Controllers.Toolbar.textRadical":"根号","DE.Controllers.Toolbar.textRecentlyUsed":"最近使用的","DE.Controllers.Toolbar.textSavePdf":"另存为PDF","DE.Controllers.Toolbar.textScript":"脚本","DE.Controllers.Toolbar.textSymbols":"符号","DE.Controllers.Toolbar.textTabForms":"表单","DE.Controllers.Toolbar.textWarning":"警告","DE.Controllers.Toolbar.txtAccent_Accent":"急性","DE.Controllers.Toolbar.txtAccent_ArrowD":"上方的左右箭头","DE.Controllers.Toolbar.txtAccent_ArrowL":"上方左箭头","DE.Controllers.Toolbar.txtAccent_ArrowR":"上方向右箭头","DE.Controllers.Toolbar.txtAccent_Bar":"条","DE.Controllers.Toolbar.txtAccent_BarBot":"下划线","DE.Controllers.Toolbar.txtAccent_BarTop":"上划线","DE.Controllers.Toolbar.txtAccent_BorderBox":"带方框的公式(包含占位符)","DE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"带框公式(示例)","DE.Controllers.Toolbar.txtAccent_Check":"检查","DE.Controllers.Toolbar.txtAccent_CurveBracketBot":"底括号","DE.Controllers.Toolbar.txtAccent_CurveBracketTop":"大括号","DE.Controllers.Toolbar.txtAccent_Custom_1":"向量A","DE.Controllers.Toolbar.txtAccent_Custom_2":"带有上划线的ABC","DE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y帶有上橫線","DE.Controllers.Toolbar.txtAccent_DDDot":"三个点","DE.Controllers.Toolbar.txtAccent_DDot":"双点","DE.Controllers.Toolbar.txtAccent_Dot":"点","DE.Controllers.Toolbar.txtAccent_DoubleBar":"双重横杠","DE.Controllers.Toolbar.txtAccent_Grave":"严重","DE.Controllers.Toolbar.txtAccent_GroupBot":"下面的分组字符","DE.Controllers.Toolbar.txtAccent_GroupTop":"上面的分组字符","DE.Controllers.Toolbar.txtAccent_HarpoonL":"上方的向左鱼叉","DE.Controllers.Toolbar.txtAccent_HarpoonR":"上方的向右鱼叉","DE.Controllers.Toolbar.txtAccent_Hat":"帽子","DE.Controllers.Toolbar.txtAccent_Smile":"短音符","DE.Controllers.Toolbar.txtAccent_Tilde":"波浪号","DE.Controllers.Toolbar.txtBracket_Angle":"尖括号","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"带分隔符的尖括号","DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"带两个分隔符的尖括号","DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"直角括号","DE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"左尖括号","DE.Controllers.Toolbar.txtBracket_Curve":"花括号","DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"带分隔符的花括号","DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"右大括号","DE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"左大括号","DE.Controllers.Toolbar.txtBracket_Custom_1":"案例(两种情况)","DE.Controllers.Toolbar.txtBracket_Custom_2":"案例(三种情况)","DE.Controllers.Toolbar.txtBracket_Custom_3":"堆栈对象","DE.Controllers.Toolbar.txtBracket_Custom_4":"括号中的堆栈对象","DE.Controllers.Toolbar.txtBracket_Custom_5":"案例示例","DE.Controllers.Toolbar.txtBracket_Custom_6":"二项式系数","DE.Controllers.Toolbar.txtBracket_Custom_7":"尖括号中的二项式系数","DE.Controllers.Toolbar.txtBracket_Line":"豎線","DE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"右竖线","DE.Controllers.Toolbar.txtBracket_Line_OpenNone":"左侧竖条","DE.Controllers.Toolbar.txtBracket_LineDouble":"双竖条","DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"右侧双竖条","DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"左双竖条","DE.Controllers.Toolbar.txtBracket_LowLim":"地板","DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"右地板","DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"左地板","DE.Controllers.Toolbar.txtBracket_Round":"圆括号","DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"带分隔符的括号","DE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"右括号","DE.Controllers.Toolbar.txtBracket_Round_OpenNone":"左括号","DE.Controllers.Toolbar.txtBracket_Square":"方括号","DE.Controllers.Toolbar.txtBracket_Square_CloseClose":"两个右方括号之间的占位符","DE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"倒置方括号","DE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"右侧方括号","DE.Controllers.Toolbar.txtBracket_Square_OpenNone":"左方括号","DE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"两个左方括号之间的占位符","DE.Controllers.Toolbar.txtBracket_SquareDouble":"双方括号","DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"右侧双方括号","DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"左双方括号","DE.Controllers.Toolbar.txtBracket_UppLim":"天花板","DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"右天花板","DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"左天花板","DE.Controllers.Toolbar.txtDownload":"下载","DE.Controllers.Toolbar.txtFractionDiagonal":"倾斜分数","DE.Controllers.Toolbar.txtFractionDifferential_1":"dx 除以 dy","DE.Controllers.Toolbar.txtFractionDifferential_2":"Δy 除以 Δx","DE.Controllers.Toolbar.txtFractionDifferential_3":"偏微分 y 对偏微分 x","DE.Controllers.Toolbar.txtFractionDifferential_4":"Δx 除以 Δy","DE.Controllers.Toolbar.txtFractionHorizontal":"线性分数","DE.Controllers.Toolbar.txtFractionPi_2":"Pi/2","DE.Controllers.Toolbar.txtFractionSmall":"小分数","DE.Controllers.Toolbar.txtFractionVertical":"堆积分数","DE.Controllers.Toolbar.txtFunction_1_Cos":"反余弦函数","DE.Controllers.Toolbar.txtFunction_1_Cosh":"双曲反余弦函数","DE.Controllers.Toolbar.txtFunction_1_Cot":"反正切函數","DE.Controllers.Toolbar.txtFunction_1_Coth":"双曲反余切函数","DE.Controllers.Toolbar.txtFunction_1_Csc":"反余割函数","DE.Controllers.Toolbar.txtFunction_1_Csch":"双曲反余割函数","DE.Controllers.Toolbar.txtFunction_1_Sec":"反正割函数","DE.Controllers.Toolbar.txtFunction_1_Sech":"双曲反割线函数","DE.Controllers.Toolbar.txtFunction_1_Sin":"反正弦函数","DE.Controllers.Toolbar.txtFunction_1_Sinh":"双曲反正弦函数","DE.Controllers.Toolbar.txtFunction_1_Tan":"反正切函数","DE.Controllers.Toolbar.txtFunction_1_Tanh":"双曲反正切函数","DE.Controllers.Toolbar.txtFunction_Cos":"余弦函数","DE.Controllers.Toolbar.txtFunction_Cosh":"双曲余弦函数","DE.Controllers.Toolbar.txtFunction_Cot":"余切函數","DE.Controllers.Toolbar.txtFunction_Coth":"双曲正交函数","DE.Controllers.Toolbar.txtFunction_Csc":"余割函数","DE.Controllers.Toolbar.txtFunction_Csch":"双曲余割函数","DE.Controllers.Toolbar.txtFunction_Custom_1":"正弦波","DE.Controllers.Toolbar.txtFunction_Custom_2":"cos2x","DE.Controllers.Toolbar.txtFunction_Custom_3":"切线公式","DE.Controllers.Toolbar.txtFunction_Sec":"正割函数","DE.Controllers.Toolbar.txtFunction_Sech":"双曲正割函数","DE.Controllers.Toolbar.txtFunction_Sin":"正弦函数","DE.Controllers.Toolbar.txtFunction_Sinh":"双曲正弦函数","DE.Controllers.Toolbar.txtFunction_Tan":"正切函数","DE.Controllers.Toolbar.txtFunction_Tanh":"双曲正切函数","DE.Controllers.Toolbar.txtIntegral":"积分","DE.Controllers.Toolbar.txtIntegral_dtheta":"差分θ","DE.Controllers.Toolbar.txtIntegral_dx":"差分x","DE.Controllers.Toolbar.txtIntegral_dy":"差分y","DE.Controllers.Toolbar.txtIntegralCenterSubSup":"与堆叠极限的积分","DE.Controllers.Toolbar.txtIntegralDouble":"重积分","DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"具有堆叠极限的二重积分","DE.Controllers.Toolbar.txtIntegralDoubleSubSup":"带极限的二重积分","DE.Controllers.Toolbar.txtIntegralOriented":"轮廓积分","DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"具有堆叠极限的等高线积分","DE.Controllers.Toolbar.txtIntegralOrientedDouble":"曲面积分","DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"带堆叠限制的曲面积分","DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"带限制的曲面积分","DE.Controllers.Toolbar.txtIntegralOrientedSubSup":"带极限的等高线积分","DE.Controllers.Toolbar.txtIntegralOrientedTriple":"体积积分","DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"带堆叠限制的体积积分","DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"带限制的体积积分","DE.Controllers.Toolbar.txtIntegralSubSup":"带极限的积分","DE.Controllers.Toolbar.txtIntegralTriple":"三重积分","DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"带堆叠限制的三重积分","DE.Controllers.Toolbar.txtIntegralTripleSubSup":"带限制的三重积分","DE.Controllers.Toolbar.txtLargeOperator_Conjunction":"逻辑与","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"带下限的逻辑与","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"带限制的逻辑与","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"带下标下限的逻辑与","DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"带上下标限制的逻辑与","DE.Controllers.Toolbar.txtLargeOperator_CoProd":"联产品","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"具有下限的共同产品","DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"有限制的共同产品","DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"具有下标下限的共同产品","DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"具有下标/上标限制的共同产品","DE.Controllers.Toolbar.txtLargeOperator_Custom_1":"k等于从0到n的提取n个的总和","DE.Controllers.Toolbar.txtLargeOperator_Custom_2":"从i等于0到n的求和","DE.Controllers.Toolbar.txtLargeOperator_Custom_3":"总和示例使用两个索引","DE.Controllers.Toolbar.txtLargeOperator_Custom_4":"乘积示例","DE.Controllers.Toolbar.txtLargeOperator_Custom_5":"并集示例","DE.Controllers.Toolbar.txtLargeOperator_Disjunction":"逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"带下限的逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"带限制的逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"带下标下限的逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"带下标/上标限制的逻辑或","DE.Controllers.Toolbar.txtLargeOperator_Intersection":"交集","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"带下限的交集","DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"带限制的交集","DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"带下标下限的交集","DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"带下标/上标限制的交集","DE.Controllers.Toolbar.txtLargeOperator_Prod":"乘积","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"带下限的乘积","DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"带限制的乘积","DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"带下标下限的乘积","DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"带下标/上标极限的乘积","DE.Controllers.Toolbar.txtLargeOperator_Sum":"合计","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"带下限的总和","DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"带限制的总和","DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"带下标下限的求和","DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"带上下标限制的求和","DE.Controllers.Toolbar.txtLargeOperator_Union":"并集","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"带下限的并集","DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"带限制的并集","DE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"带下标下限的并集","DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"带上下标限制的并集","DE.Controllers.Toolbar.txtLimitLog_Custom_1":"限制范例","DE.Controllers.Toolbar.txtLimitLog_Custom_2":"最大范例","DE.Controllers.Toolbar.txtLimitLog_Lim":"限制","DE.Controllers.Toolbar.txtLimitLog_Ln":"自然对数","DE.Controllers.Toolbar.txtLimitLog_Log":"对数","DE.Controllers.Toolbar.txtLimitLog_LogBase":"对数","DE.Controllers.Toolbar.txtLimitLog_Max":"最大值","DE.Controllers.Toolbar.txtLimitLog_Min":"最低限度","DE.Controllers.Toolbar.txtMarginsH":"顶部和底部边距对于给定的页面高度来说太高","DE.Controllers.Toolbar.txtMarginsW":"对于给定的页面宽度,左右边距太宽","DE.Controllers.Toolbar.txtMatrix_1_2":"1x2空矩阵","DE.Controllers.Toolbar.txtMatrix_1_3":"1x3空矩阵","DE.Controllers.Toolbar.txtMatrix_2_1":"2x1空矩阵","DE.Controllers.Toolbar.txtMatrix_2_2":"2x2空矩阵","DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"以双竖线表示的空的2x2矩阵","DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"空的2x2行列式","DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"带圆括号的2x2空矩阵","DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"带方形括号的2x2空矩阵","DE.Controllers.Toolbar.txtMatrix_2_3":"2x3空矩阵","DE.Controllers.Toolbar.txtMatrix_3_1":"3x1空矩阵","DE.Controllers.Toolbar.txtMatrix_3_2":"3x2空矩阵","DE.Controllers.Toolbar.txtMatrix_3_3":"3x3空矩阵","DE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"基线点","DE.Controllers.Toolbar.txtMatrix_Dots_Center":"中线点","DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"对角点","DE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"垂直點","DE.Controllers.Toolbar.txtMatrix_Flat_Round":"括号中的稀疏矩阵","DE.Controllers.Toolbar.txtMatrix_Flat_Square":"括号中的稀疏矩阵","DE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2带零的单位矩阵","DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"2x2除了对角线以外都是空白的单位矩阵","DE.Controllers.Toolbar.txtMatrix_Identity_3":"含有零的3x3单位矩阵","DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3除了对角线以外都是空白的单位矩阵","DE.Controllers.Toolbar.txtNeedDownload":"PDF 阅读器只能将新的更改保存在单独的文件副本中。PDF 阅读器不支持共同编辑功能,如需与其他用户分享所做的更改,请共享新的文件副本。","DE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"下方的左右箭头","DE.Controllers.Toolbar.txtOperator_ArrowD_Top":"上方的左右箭头","DE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"下方向左箭头","DE.Controllers.Toolbar.txtOperator_ArrowL_Top":"上方左箭头","DE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"下方向右箭头","DE.Controllers.Toolbar.txtOperator_ArrowR_Top":"上方向右箭头","DE.Controllers.Toolbar.txtOperator_ColonEquals":"冒号相等","DE.Controllers.Toolbar.txtOperator_Custom_1":"產生","DE.Controllers.Toolbar.txtOperator_Custom_2":"Delta 收益","DE.Controllers.Toolbar.txtOperator_Definition":"等同于定义","DE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta 等于","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"下方的左右双箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"上方的左右双箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"下方向左箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"上方左箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"下方向右箭头","DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"上方向右箭头","DE.Controllers.Toolbar.txtOperator_EqualsEquals":"等于","DE.Controllers.Toolbar.txtOperator_MinusEquals":"负等于","DE.Controllers.Toolbar.txtOperator_PlusEquals":"加等于","DE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"测量者","DE.Controllers.Toolbar.txtRadicalCustom_1":"二次方程式的右侧","DE.Controllers.Toolbar.txtRadicalCustom_2":"a的平方加b的平方的平方根","DE.Controllers.Toolbar.txtRadicalRoot_2":"带次数的平方根","DE.Controllers.Toolbar.txtRadicalRoot_3":"立方根","DE.Controllers.Toolbar.txtRadicalRoot_n":"开n次根号","DE.Controllers.Toolbar.txtRadicalSqrt":"平方根","DE.Controllers.Toolbar.txtSaveCopy":"保存副本","DE.Controllers.Toolbar.txtScriptCustom_1":"x下标y的平方","DE.Controllers.Toolbar.txtScriptCustom_2":"e 的负 i omega t 次方","DE.Controllers.Toolbar.txtScriptCustom_3":"x 的平方","DE.Controllers.Toolbar.txtScriptCustom_4":"Y左上标n左下标一","DE.Controllers.Toolbar.txtScriptSub":"下标","DE.Controllers.Toolbar.txtScriptSubSup":"下标-上标","DE.Controllers.Toolbar.txtScriptSubSupLeft":"左下标上标","DE.Controllers.Toolbar.txtScriptSup":"上标","DE.Controllers.Toolbar.txtSymbol_about":"大约","DE.Controllers.Toolbar.txtSymbol_additional":"补充","DE.Controllers.Toolbar.txtSymbol_aleph":"Alef","DE.Controllers.Toolbar.txtSymbol_alpha":"Αlpha","DE.Controllers.Toolbar.txtSymbol_approx":"几乎等于","DE.Controllers.Toolbar.txtSymbol_ast":"星号运算符","DE.Controllers.Toolbar.txtSymbol_beta":"测试版","DE.Controllers.Toolbar.txtSymbol_beth":"确信","DE.Controllers.Toolbar.txtSymbol_bullet":"项目符号运算符","DE.Controllers.Toolbar.txtSymbol_cap":"交集","DE.Controllers.Toolbar.txtSymbol_cbrt":"立方根","DE.Controllers.Toolbar.txtSymbol_cdots":"中线水平省略号","DE.Controllers.Toolbar.txtSymbol_celsius":"摄氏度","DE.Controllers.Toolbar.txtSymbol_chi":"Chi","DE.Controllers.Toolbar.txtSymbol_cong":"约等于","DE.Controllers.Toolbar.txtSymbol_cup":"并集","DE.Controllers.Toolbar.txtSymbol_ddots":"向右对角线省略号","DE.Controllers.Toolbar.txtSymbol_degree":"度","DE.Controllers.Toolbar.txtSymbol_delta":"Delta","DE.Controllers.Toolbar.txtSymbol_div":"除号","DE.Controllers.Toolbar.txtSymbol_downarrow":"向下箭头","DE.Controllers.Toolbar.txtSymbol_emptyset":"空集","DE.Controllers.Toolbar.txtSymbol_epsilon":"Epsilon","DE.Controllers.Toolbar.txtSymbol_equals":"等于","DE.Controllers.Toolbar.txtSymbol_equiv":"相同","DE.Controllers.Toolbar.txtSymbol_eta":"Eta","DE.Controllers.Toolbar.txtSymbol_exists":"存在","DE.Controllers.Toolbar.txtSymbol_factorial":"阶乘","DE.Controllers.Toolbar.txtSymbol_fahrenheit":"华氏度","DE.Controllers.Toolbar.txtSymbol_forall":"全部","DE.Controllers.Toolbar.txtSymbol_gamma":"Gamma","DE.Controllers.Toolbar.txtSymbol_geq":"大于或等于","DE.Controllers.Toolbar.txtSymbol_gg":"远大于","DE.Controllers.Toolbar.txtSymbol_greater":"大于","DE.Controllers.Toolbar.txtSymbol_in":"元素","DE.Controllers.Toolbar.txtSymbol_inc":"增量","DE.Controllers.Toolbar.txtSymbol_infinity":"无限","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_leftrightarrow":"左右箭头","DE.Controllers.Toolbar.txtSymbol_leq":"小于或等于","DE.Controllers.Toolbar.txtSymbol_less":"小于","DE.Controllers.Toolbar.txtSymbol_ll":"远小于","DE.Controllers.Toolbar.txtSymbol_minus":"减去","DE.Controllers.Toolbar.txtSymbol_mp":"减加号","DE.Controllers.Toolbar.txtSymbol_mu":"Mu","DE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","DE.Controllers.Toolbar.txtSymbol_neq":"不等于","DE.Controllers.Toolbar.txtSymbol_ni":"包含为成员","DE.Controllers.Toolbar.txtSymbol_not":"不签名","DE.Controllers.Toolbar.txtSymbol_notexists":"不存在","DE.Controllers.Toolbar.txtSymbol_nu":"Nu","DE.Controllers.Toolbar.txtSymbol_o":"Omicron","DE.Controllers.Toolbar.txtSymbol_omega":"Omega","DE.Controllers.Toolbar.txtSymbol_partial":"偏微分","DE.Controllers.Toolbar.txtSymbol_percent":"百分比","DE.Controllers.Toolbar.txtSymbol_phi":"Phi","DE.Controllers.Toolbar.txtSymbol_pi":"Pi","DE.Controllers.Toolbar.txtSymbol_plus":"加","DE.Controllers.Toolbar.txtSymbol_pm":"加减","DE.Controllers.Toolbar.txtSymbol_propto":"成比例于","DE.Controllers.Toolbar.txtSymbol_psi":"Psi","DE.Controllers.Toolbar.txtSymbol_qdrt":"四次方根","DE.Controllers.Toolbar.txtSymbol_qed":"证明结束","DE.Controllers.Toolbar.txtSymbol_rddots":"向右对角线省略号","DE.Controllers.Toolbar.txtSymbol_rho":"Rho","DE.Controllers.Toolbar.txtSymbol_rightarrow":"右箭头","DE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","DE.Controllers.Toolbar.txtSymbol_sqrt":"根号","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_upsilon":"Upsilon","DE.Controllers.Toolbar.txtSymbol_varepsilon":"Epsilon变体","DE.Controllers.Toolbar.txtSymbol_varphi":"Phi 变体","DE.Controllers.Toolbar.txtSymbol_varpi":"π变量","DE.Controllers.Toolbar.txtSymbol_varrho":"Rho 变量","DE.Controllers.Toolbar.txtSymbol_varsigma":"Sigma变量","DE.Controllers.Toolbar.txtSymbol_vartheta":"Theta 变量","DE.Controllers.Toolbar.txtSymbol_vdots":"垂直省略號","DE.Controllers.Toolbar.txtSymbol_xsi":"Xi","DE.Controllers.Toolbar.txtSymbol_zeta":"Zeta","DE.Controllers.Toolbar.txtUntitled":"未命名","DE.Controllers.Viewport.textFitPage":"调整至页面大小","DE.Controllers.Viewport.textFitWidth":"调整至合适宽度","DE.Controllers.Viewport.txtDarkMode":"深色模式","DE.Views.BookmarksDialog.textAdd":"添加","DE.Views.BookmarksDialog.textAddAndGetLink":"添加并获取链接","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.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.textLabelError":"标签不能为空。","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.CellsRemoveDialog.textCol":"删除整列","DE.Views.CellsRemoveDialog.textLeft":"向左移动单元格","DE.Views.CellsRemoveDialog.textRow":"删除整行","DE.Views.CellsRemoveDialog.textTitle":"删除单元格","DE.Views.ChartSettings.text3dDepth":"深度(基准的%)","DE.Views.ChartSettings.text3dHeight":"高度(基准的%)","DE.Views.ChartSettings.text3dRotation":"三维旋转","DE.Views.ChartSettings.textAdvanced":"显示高级设置","DE.Views.ChartSettings.textAutoscale":"自动缩放","DE.Views.ChartSettings.textChartType":"更改图表类型","DE.Views.ChartSettings.textData":"数据","DE.Views.ChartSettings.textDefault":"默认旋转","DE.Views.ChartSettings.textDown":"下","DE.Views.ChartSettings.textEditData":"编辑数据","DE.Views.ChartSettings.textEditLinks":"编辑链接","DE.Views.ChartSettings.textHeight":"高度","DE.Views.ChartSettings.textKeepRatio":"固定比例","DE.Views.ChartSettings.textLeft":"左","DE.Views.ChartSettings.textLinkedData":"关联数据","DE.Views.ChartSettings.textNarrow":"窄视野","DE.Views.ChartSettings.textOriginalSize":"实际大小","DE.Views.ChartSettings.textPerspective":"透视","DE.Views.ChartSettings.textRight":"右","DE.Views.ChartSettings.textRightAngle":"直角坐标轴","DE.Views.ChartSettings.textSelectData":"选择数据","DE.Views.ChartSettings.textSize":"大小","DE.Views.ChartSettings.textStyle":"样式","DE.Views.ChartSettings.textUndock":"离开面板","DE.Views.ChartSettings.textUp":"向上","DE.Views.ChartSettings.textUpdateData":"更新数据","DE.Views.ChartSettings.textWiden":"扩大视图","DE.Views.ChartSettings.textWidth":"宽度","DE.Views.ChartSettings.textWrap":"环绕方式","DE.Views.ChartSettings.textX":"X轴旋转","DE.Views.ChartSettings.textY":"Y轴旋转","DE.Views.ChartSettings.txtBehind":"衬于文字下方","DE.Views.ChartSettings.txtInFront":"浮于文字上方","DE.Views.ChartSettings.txtInline":"嵌入型","DE.Views.ChartSettings.txtSquare":"四周型","DE.Views.ChartSettings.txtThrough":"穿越型环绕","DE.Views.ChartSettings.txtTight":"紧密型环绕","DE.Views.ChartSettings.txtTitle":"图表","DE.Views.ChartSettings.txtTopAndBottom":"上下型环绕","DE.Views.ChartSettingsDlg.textLeftOverlay":"左侧覆盖","DE.Views.CompareSettingsDialog.textChar":"字符级别","DE.Views.CompareSettingsDialog.textShow":"显示变更于","DE.Views.CompareSettingsDialog.textTitle":"比较设置","DE.Views.CompareSettingsDialog.textWord":"字級","DE.Views.ControlSettingsDialog.strGeneral":"一般","DE.Views.ControlSettingsDialog.textAdd":"添加","DE.Views.ControlSettingsDialog.textAppearance":"外观","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.ControlSettingsDialog.txtRemContent":"编辑内容时删除内容控件","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.textEqualWidth":"平均分配列宽","DE.Views.CustomColumnsDialog.textSeparator":"列分隔符","DE.Views.CustomColumnsDialog.textTitle":"列","DE.Views.CustomColumnsDialog.textTitleSpacing":"间距","DE.Views.CustomColumnsDialog.textWidth":"宽度","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.DocProtection.hintProtectDoc":"保护文档","DE.Views.DocProtection.txtDocProtectedComment":"文档受到保护
您只能在此文档中插入批注。","DE.Views.DocProtection.txtDocProtectedForms":"文档受到保护
您只能在此文档中填写表单。","DE.Views.DocProtection.txtDocProtectedTrack":"文档受到保护
您可以编辑此文档,但所有更改都将被跟踪。","DE.Views.DocProtection.txtDocProtectedView":"文档受到保护
您只能在此文档中插入批注。","DE.Views.DocProtection.txtDocUnlockDescription":"输入密码以取消文档保护","DE.Views.DocProtection.txtProtectDoc":"保护文档","DE.Views.DocProtection.txtUnlockTitle":"解除文档保护","DE.Views.DocumentHolder.aboveText":"上方","DE.Views.DocumentHolder.addCommentText":"添加批注","DE.Views.DocumentHolder.advancedDropCapText":"首字下沉设置","DE.Views.DocumentHolder.advancedEquationText":"方程式设置","DE.Views.DocumentHolder.advancedFrameText":"框架高级设置","DE.Views.DocumentHolder.advancedParagraphText":"段落高级设置","DE.Views.DocumentHolder.advancedTableText":"表格高级设置","DE.Views.DocumentHolder.advancedText":"高级设置","DE.Views.DocumentHolder.AlignBottom":"底部","DE.Views.DocumentHolder.AlignCenter":"居中","DE.Views.DocumentHolder.AlignJust":"两端对齐","DE.Views.DocumentHolder.AlignLeft":"左","DE.Views.DocumentHolder.alignmentText":"对齐","DE.Views.DocumentHolder.AlignMiddle":"中间","DE.Views.DocumentHolder.AlignRight":"右","DE.Views.DocumentHolder.AlignText":"文字对齐","DE.Views.DocumentHolder.AlignTop":"顶部","DE.Views.DocumentHolder.allLinearText":"全部-线性","DE.Views.DocumentHolder.allProfText":"全部-专业","DE.Views.DocumentHolder.belowText":"下面","DE.Views.DocumentHolder.breakBeforeText":"段前分页","DE.Views.DocumentHolder.btnChart":"添加、删除或更改图表元素,例如标题、图例、网格线和数据标签","DE.Views.DocumentHolder.bulletsText":"项目符号和编号","DE.Views.DocumentHolder.cellAlignText":"单元格垂直对齐","DE.Views.DocumentHolder.cellText":"单元格","DE.Views.DocumentHolder.centerText":"中心","DE.Views.DocumentHolder.chartText":"图表高级设置","DE.Views.DocumentHolder.columnText":"列","DE.Views.DocumentHolder.currLinearText":"当前-线性","DE.Views.DocumentHolder.currProfText":"当前-专业","DE.Views.DocumentHolder.deleteColumnText":"删除列","DE.Views.DocumentHolder.deleteRowText":"删除行","DE.Views.DocumentHolder.deleteTableText":"删除表格","DE.Views.DocumentHolder.deleteText":"删除","DE.Views.DocumentHolder.DepthAxis":"Z 轴","DE.Views.DocumentHolder.direct270Text":"向上旋转文字","DE.Views.DocumentHolder.direct90Text":"向下旋转文字","DE.Views.DocumentHolder.directHText":"水平的","DE.Views.DocumentHolder.directionText":"文字方向","DE.Views.DocumentHolder.editChartText":"编辑数据","DE.Views.DocumentHolder.editFooterText":"编辑页脚","DE.Views.DocumentHolder.editHeaderText":"编辑页眉","DE.Views.DocumentHolder.editHyperlinkText":"编辑链接","DE.Views.DocumentHolder.eqToDisplayText":"更改为显示","DE.Views.DocumentHolder.eqToInlineText":"更改为内联","DE.Views.DocumentHolder.guestText":"访客","DE.Views.DocumentHolder.hideEqToolbar":"隐藏公式工具栏","DE.Views.DocumentHolder.hyperlinkText":"链接","DE.Views.DocumentHolder.ignoreAllSpellText":"忽略所有","DE.Views.DocumentHolder.ignoreSpellText":"忽略","DE.Views.DocumentHolder.imageText":"图片高级设置","DE.Views.DocumentHolder.insertColumnLeftText":"左栏","DE.Views.DocumentHolder.insertColumnRightText":"右栏","DE.Views.DocumentHolder.insertColumnText":"插入列","DE.Views.DocumentHolder.insertRowAboveText":"上面的行","DE.Views.DocumentHolder.insertRowBelowText":"下面的行","DE.Views.DocumentHolder.insertRowText":"插入行","DE.Views.DocumentHolder.insertText":"插入","DE.Views.DocumentHolder.keepLinesText":"段中不分页","DE.Views.DocumentHolder.langText":"选择语言","DE.Views.DocumentHolder.latexText":"LaTeX","DE.Views.DocumentHolder.leftText":"左","DE.Views.DocumentHolder.loadSpellText":"加载变体...","DE.Views.DocumentHolder.mergeCellsText":"合并单元格","DE.Views.DocumentHolder.mniImageFromFile":"图片文件","DE.Views.DocumentHolder.mniImageFromStorage":"存储设备中的图片","DE.Views.DocumentHolder.mniImageFromUrl":"来自URL地址的图片","DE.Views.DocumentHolder.moreText":"更多变体...","DE.Views.DocumentHolder.noSpellVariantsText":"没有变体","DE.Views.DocumentHolder.notcriticalErrorTitle":"警告","DE.Views.DocumentHolder.originalSizeText":"实际大小","DE.Views.DocumentHolder.paragraphText":"段落","DE.Views.DocumentHolder.removeHyperlinkText":"删除链接","DE.Views.DocumentHolder.rightText":"右","DE.Views.DocumentHolder.rowText":"行","DE.Views.DocumentHolder.saveStyleText":"新建样式","DE.Views.DocumentHolder.selectCellText":"选择单元格","DE.Views.DocumentHolder.selectColumnText":"选择列","DE.Views.DocumentHolder.selectRowText":"选择行","DE.Views.DocumentHolder.selectTableText":"选择表格","DE.Views.DocumentHolder.selectText":"选择","DE.Views.DocumentHolder.shapeText":"形状高级设置","DE.Views.DocumentHolder.showEqToolbar":"显示公式工具栏","DE.Views.DocumentHolder.spellcheckText":"拼写检查","DE.Views.DocumentHolder.splitCellsText":"拆分单元格","DE.Views.DocumentHolder.splitCellTitleText":"拆分单元格","DE.Views.DocumentHolder.strDelete":"删除签名","DE.Views.DocumentHolder.strDetails":"签名详细信息","DE.Views.DocumentHolder.strSetup":"签名设置","DE.Views.DocumentHolder.strSign":"签署","DE.Views.DocumentHolder.styleText":"格式化为样式","DE.Views.DocumentHolder.tableText":"表格","DE.Views.DocumentHolder.textAccept":"同意更改","DE.Views.DocumentHolder.textAlign":"对齐","DE.Views.DocumentHolder.textArrange":"安排","DE.Views.DocumentHolder.textArrangeBack":"置于底层","DE.Views.DocumentHolder.textArrangeBackward":"下移一层","DE.Views.DocumentHolder.textArrangeForward":"向前移动","DE.Views.DocumentHolder.textArrangeFront":"移到前景","DE.Views.DocumentHolder.textAxes":"坐标轴","DE.Views.DocumentHolder.textAxisTitles":"坐标轴标题","DE.Views.DocumentHolder.textBottom":"底部","DE.Views.DocumentHolder.textCells":"单元格","DE.Views.DocumentHolder.textCenter":"居中","DE.Views.DocumentHolder.textChartTitle":"图表标题","DE.Views.DocumentHolder.textClearField":"清除字段","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.textDataLabels":"数据标签","DE.Views.DocumentHolder.textDataTable":"数据表","DE.Views.DocumentHolder.textDistributeCols":"分布列","DE.Views.DocumentHolder.textDistributeRows":"分布行","DE.Views.DocumentHolder.textEditControls":"内容控件设置","DE.Views.DocumentHolder.textEditField":"编辑字段","DE.Views.DocumentHolder.textEditObject":"编辑对象","DE.Views.DocumentHolder.textEditPoints":"编辑点","DE.Views.DocumentHolder.textEditWrapBoundary":"编辑环绕边界","DE.Views.DocumentHolder.textErrorBars":"误差线","DE.Views.DocumentHolder.textExponential":"指数","DE.Views.DocumentHolder.textFieldCodes":"切换字段代码","DE.Views.DocumentHolder.textFit":"调整至合适宽度","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.textGridLines":"网格线","DE.Views.DocumentHolder.textHorAxis":"横轴","DE.Views.DocumentHolder.textHorAxisSec":"次横轴","DE.Views.DocumentHolder.textHorizontalMajor":"主要水平线","DE.Views.DocumentHolder.textHorizontalMinor":"次要水平线","DE.Views.DocumentHolder.textIndents":"调整列表缩进","DE.Views.DocumentHolder.textInnerBottom":"内侧底部","DE.Views.DocumentHolder.textInnerTop":"内侧顶部","DE.Views.DocumentHolder.textJoinList":"加入到上一个列表中","DE.Views.DocumentHolder.textLeft":"向左移动单元格","DE.Views.DocumentHolder.textLeftData":"左","DE.Views.DocumentHolder.textLeftOverlay":"左侧覆盖","DE.Views.DocumentHolder.textLeftPos":"左侧","DE.Views.DocumentHolder.textLegendPos":"图例","DE.Views.DocumentHolder.textLinear":"线性","DE.Views.DocumentHolder.textLinearForecast":"线性预测","DE.Views.DocumentHolder.textLines":"行","DE.Views.DocumentHolder.textMovingAverage":"移动平均 (2)","DE.Views.DocumentHolder.textNest":"嵌套表","DE.Views.DocumentHolder.textNextPage":"下一页","DE.Views.DocumentHolder.textNone":"无","DE.Views.DocumentHolder.textNoOverlay":"不覆盖","DE.Views.DocumentHolder.textNumberingValue":"编号值","DE.Views.DocumentHolder.textOuterTop":"外侧顶部","DE.Views.DocumentHolder.textOverlay":"覆盖","DE.Views.DocumentHolder.textPaste":"粘贴","DE.Views.DocumentHolder.textPrevPage":"上一页","DE.Views.DocumentHolder.textRedo":"重做","DE.Views.DocumentHolder.textRefreshField":"更新字段","DE.Views.DocumentHolder.textReject":"否决更改","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.textStretchControl":"Resize to cell","DE.Views.DocumentHolder.textRemPicture":"删除图片","DE.Views.DocumentHolder.textRemRadioBox":"删除单选按钮","DE.Views.DocumentHolder.textReplace":"替换图像","DE.Views.DocumentHolder.textResetCrop":"重置裁剪","DE.Views.DocumentHolder.textRight":"右","DE.Views.DocumentHolder.textRightOverlay":"右侧覆盖","DE.Views.DocumentHolder.textRotate":"旋转","DE.Views.DocumentHolder.textRotate270":"逆时针旋转90°","DE.Views.DocumentHolder.textRotate90":"顺时针旋转90°","DE.Views.DocumentHolder.textRow":"删除整行","DE.Views.DocumentHolder.textSaveAsPicture":"另存为图片","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.textShapesMerge":"合并形状","DE.Views.DocumentHolder.textShowDataTable":"显示数据表","DE.Views.DocumentHolder.textShowLegendKeys":"显示图例标识","DE.Views.DocumentHolder.textShowUpDown":"显示上下滚动条","DE.Views.DocumentHolder.textStandardDeviation":"标准偏差","DE.Views.DocumentHolder.textStandardError":"标准误差","DE.Views.DocumentHolder.textStartNewList":"开始新列表","DE.Views.DocumentHolder.textStartNumberingFrom":"设置编号值","DE.Views.DocumentHolder.textTitleCellsRemove":"删除单元格","DE.Views.DocumentHolder.textTOC":"目录","DE.Views.DocumentHolder.textTOCSettings":"目录设置","DE.Views.DocumentHolder.textTop":"顶部","DE.Views.DocumentHolder.textTrendline":"趋势线","DE.Views.DocumentHolder.textUndo":"撤消","DE.Views.DocumentHolder.textUpdateAll":"更新整个表格","DE.Views.DocumentHolder.textUpdatePages":"仅更新页码","DE.Views.DocumentHolder.textUpdateTOC":"更新目录","DE.Views.DocumentHolder.textUpDownBars":"上下滚动条","DE.Views.DocumentHolder.textVertAxis":"纵轴","DE.Views.DocumentHolder.textVertAxisSec":"次纵轴","DE.Views.DocumentHolder.textVerticalMajor":"垂直主要","DE.Views.DocumentHolder.textVerticalMinor":"垂直次要","DE.Views.DocumentHolder.textWrap":"环绕方式","DE.Views.DocumentHolder.tipIsLocked":"此元素正在由其他用户编辑。","DE.Views.DocumentHolder.toDictionaryText":"添加到字典","DE.Views.DocumentHolder.txtAddBottom":"添加底部边框","DE.Views.DocumentHolder.txtAddFractionBar":"添加分数栏","DE.Views.DocumentHolder.txtAddHor":"添加水平线","DE.Views.DocumentHolder.txtAddLB":"添加左底边框","DE.Views.DocumentHolder.txtAddLeft":"添加左边框","DE.Views.DocumentHolder.txtAddLT":"添加左侧顶部边框","DE.Views.DocumentHolder.txtAddRight":"添加右边框","DE.Views.DocumentHolder.txtAddTop":"添加上边框","DE.Views.DocumentHolder.txtAddVer":"添加垂直线","DE.Views.DocumentHolder.txtAlignToChar":"字符对齐","DE.Views.DocumentHolder.txtBehind":"衬于文字下方","DE.Views.DocumentHolder.txtBorderProps":"边框属性","DE.Views.DocumentHolder.txtBottom":"底部","DE.Views.DocumentHolder.txtColumnAlign":"列对齐","DE.Views.DocumentHolder.txtDecreaseArg":"减少参数大小","DE.Views.DocumentHolder.txtDeleteArg":"删除参数","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.txtDestEmbed":"使用目标主题 & 嵌入工作簿","DE.Views.DocumentHolder.txtDestLink":"使用目标主题 & 链接数据","DE.Views.DocumentHolder.txtDistribHor":"水平分布","DE.Views.DocumentHolder.txtDistribVert":"垂直分布","DE.Views.DocumentHolder.txtEmpty":"(空)","DE.Views.DocumentHolder.txtFractionLinear":"改为线性分数","DE.Views.DocumentHolder.txtFractionSkewed":"改为倾斜分数","DE.Views.DocumentHolder.txtFractionStacked":"改为堆积分数","DE.Views.DocumentHolder.txtGroup":"组","DE.Views.DocumentHolder.txtGroupCharOver":"文字上方的字符","DE.Views.DocumentHolder.txtGroupCharUnder":"文字下的字符","DE.Views.DocumentHolder.txtHideBottom":"隐藏底部边框","DE.Views.DocumentHolder.txtHideBottomLimit":"隐藏下限","DE.Views.DocumentHolder.txtHideCloseBracket":"隐藏右括号","DE.Views.DocumentHolder.txtHideDegree":"隐藏度数","DE.Views.DocumentHolder.txtHideHor":"隐藏水平线","DE.Views.DocumentHolder.txtHideLB":"隐藏左底线","DE.Views.DocumentHolder.txtHideLeft":"隐藏左边框","DE.Views.DocumentHolder.txtHideLT":"隐藏左顶线","DE.Views.DocumentHolder.txtHideOpenBracket":"隐藏左括号","DE.Views.DocumentHolder.txtHidePlaceholder":"隐藏占位符","DE.Views.DocumentHolder.txtHideRight":"隐藏右边框","DE.Views.DocumentHolder.txtHideTop":"隐藏顶部边框","DE.Views.DocumentHolder.txtHideTopLimit":"隐藏上限","DE.Views.DocumentHolder.txtHideVer":"隐藏垂直线","DE.Views.DocumentHolder.txtIncreaseArg":"增加参数大小","DE.Views.DocumentHolder.txtInFront":"浮于文字上方","DE.Views.DocumentHolder.txtInline":"嵌入型","DE.Views.DocumentHolder.txtInsertArgAfter":"在后面插入参数","DE.Views.DocumentHolder.txtInsertArgBefore":"之前插入参数","DE.Views.DocumentHolder.txtInsertBreak":"插入手动分隔符","DE.Views.DocumentHolder.txtInsertCaption":"插入标题","DE.Views.DocumentHolder.txtInsertEqAfter":"在之后插入方程式","DE.Views.DocumentHolder.txtInsertEqBefore":"在之前插入方程式","DE.Views.DocumentHolder.txtInsImage":"插入来自文件的图片","DE.Views.DocumentHolder.txtInsImageUrl":"插入来自URL的图片","DE.Views.DocumentHolder.txtKeepTextOnly":"仅保留文字","DE.Views.DocumentHolder.txtLimitChange":"更改界限位置","DE.Views.DocumentHolder.txtLimitOver":"文字限制","DE.Views.DocumentHolder.txtLimitUnder":"文字下的限制","DE.Views.DocumentHolder.txtMatchBrackets":"括号与其内容的高度对齐","DE.Views.DocumentHolder.txtMatrixAlign":"矩阵对齐","DE.Views.DocumentHolder.txtOverbar":"文本上横条","DE.Views.DocumentHolder.txtOverwriteCells":"覆盖单元格","DE.Views.DocumentHolder.txtPastePicture":"图片","DE.Views.DocumentHolder.txtPasteSourceFormat":"保留源格式","DE.Views.DocumentHolder.txtPercentage":"百分比","DE.Views.DocumentHolder.txtPressLink":"按 {0} 并单击链接","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":"除去上标","DE.Views.DocumentHolder.txtScriptsAfter":"文字后的脚本","DE.Views.DocumentHolder.txtScriptsBefore":"文字前的腳本","DE.Views.DocumentHolder.txtShowBottomLimit":"显示底限","DE.Views.DocumentHolder.txtShowCloseBracket":"显示结束括号","DE.Views.DocumentHolder.txtShowDegree":"显示度数","DE.Views.DocumentHolder.txtShowOpenBracket":"显示开始括号","DE.Views.DocumentHolder.txtShowPlaceholder":"显示占位符","DE.Views.DocumentHolder.txtShowTopLimit":"显示上限","DE.Views.DocumentHolder.txtSourceEmbed":"保留源格式 & 嵌入工作簿","DE.Views.DocumentHolder.txtSourceLink":"保留源格式 & 链接数据","DE.Views.DocumentHolder.txtSquare":"四周型","DE.Views.DocumentHolder.txtStretchBrackets":"延展括号","DE.Views.DocumentHolder.txtThrough":"穿越型环绕","DE.Views.DocumentHolder.txtTight":"紧密型环绕","DE.Views.DocumentHolder.txtTop":"顶部","DE.Views.DocumentHolder.txtTopAndBottom":"上下型环绕","DE.Views.DocumentHolder.txtUnderbar":"文本下方横条","DE.Views.DocumentHolder.txtUngroup":"取消组合","DE.Views.DocumentHolder.txtWarnUrl":"点击此链接可能会对您的设备和数据造成损害。为了保护您的计算机,请仅点击来自可信来源的链接。此位置可能不安全:

{0}

您确定要继续吗?","DE.Views.DocumentHolder.unicodeText":"Unicode码","DE.Views.DocumentHolder.updateStyleText":"更新%1样式","DE.Views.DocumentHolder.vertAlignText":"垂直對齊","DE.Views.DropcapSettingsAdvanced.strBorders":"边框和填充","DE.Views.DropcapSettingsAdvanced.strDropcap":"首字大写","DE.Views.DropcapSettingsAdvanced.strMargins":"边距","DE.Views.DropcapSettingsAdvanced.textAlign":"对齐","DE.Views.DropcapSettingsAdvanced.textAtLeast":"最小值","DE.Views.DropcapSettingsAdvanced.textAuto":"自动","DE.Views.DropcapSettingsAdvanced.textBackColor":"背景颜色","DE.Views.DropcapSettingsAdvanced.textBorderColor":"边框颜色","DE.Views.DropcapSettingsAdvanced.textBorderDesc":"点击图表或使用按钮选择边框","DE.Views.DropcapSettingsAdvanced.textBorderWidth":"边框大小","DE.Views.DropcapSettingsAdvanced.textBottom":"底部","DE.Views.DropcapSettingsAdvanced.textCenter":"中心","DE.Views.DropcapSettingsAdvanced.textColumn":"列","DE.Views.DropcapSettingsAdvanced.textDistance":"与文本的间距","DE.Views.DropcapSettingsAdvanced.textExact":"固定值","DE.Views.DropcapSettingsAdvanced.textFlow":"流程图","DE.Views.DropcapSettingsAdvanced.textFont":"字体 ","DE.Views.DropcapSettingsAdvanced.textFrame":"框","DE.Views.DropcapSettingsAdvanced.textHeight":"高度","DE.Views.DropcapSettingsAdvanced.textHorizontal":"水平的","DE.Views.DropcapSettingsAdvanced.textInline":"内联框架","DE.Views.DropcapSettingsAdvanced.textInMargin":"在页边距","DE.Views.DropcapSettingsAdvanced.textInText":"在文本中","DE.Views.DropcapSettingsAdvanced.textLeft":"左","DE.Views.DropcapSettingsAdvanced.textMargin":"边距","DE.Views.DropcapSettingsAdvanced.textMove":"随文字移动","DE.Views.DropcapSettingsAdvanced.textNone":"无","DE.Views.DropcapSettingsAdvanced.textPage":"页面","DE.Views.DropcapSettingsAdvanced.textParagraph":"段落","DE.Views.DropcapSettingsAdvanced.textParameters":"参数","DE.Views.DropcapSettingsAdvanced.textPosition":"位置","DE.Views.DropcapSettingsAdvanced.textRelative":"相对于","DE.Views.DropcapSettingsAdvanced.textRight":"右","DE.Views.DropcapSettingsAdvanced.textRowHeight":"行高","DE.Views.DropcapSettingsAdvanced.textTitle":"首字大写 - 高级设置","DE.Views.DropcapSettingsAdvanced.textTitleFrame":"框架 - 高级设置","DE.Views.DropcapSettingsAdvanced.textTop":"顶部","DE.Views.DropcapSettingsAdvanced.textVertical":"垂直","DE.Views.DropcapSettingsAdvanced.textWidth":"宽度","DE.Views.DropcapSettingsAdvanced.tipFontName":"字体 ","DE.Views.EditListItemDialog.textDisplayName":"显示名称","DE.Views.EditListItemDialog.textNameError":"显示名称不能为空。","DE.Views.EditListItemDialog.textValue":"值","DE.Views.EditListItemDialog.textValueError":"具有相同值的项已存在。","DE.Views.FileMenu.ariaFileMenu":"文件菜单","DE.Views.FileMenu.btnBackCaption":"打开文件所在位置","DE.Views.FileMenu.btnCloseEditor":"关闭文件","DE.Views.FileMenu.btnCloseMenuCaption":"返回","DE.Views.FileMenu.btnCreateNewCaption":"新建","DE.Views.FileMenu.btnDownloadCaption":"下载为","DE.Views.FileMenu.btnExitCaption":"关闭","DE.Views.FileMenu.btnFileOpenCaption":"打开","DE.Views.FileMenu.btnHelpCaption":"帮助","DE.Views.FileMenu.btnHistoryCaption":"版本历史","DE.Views.FileMenu.btnInfoCaption":"信息","DE.Views.FileMenu.btnPrintCaption":"打印","DE.Views.FileMenu.btnProtectCaption":"保护","DE.Views.FileMenu.btnRecentFilesCaption":"打开最近","DE.Views.FileMenu.btnRenameCaption":"重命名","DE.Views.FileMenu.btnReturnCaption":"返回到文件","DE.Views.FileMenu.btnRightsCaption":"访问权限","DE.Views.FileMenu.btnSaveAsCaption":"另存为","DE.Views.FileMenu.btnSaveCaption":"保存","DE.Views.FileMenu.btnSaveCopyAsCaption":"另存副本为","DE.Views.FileMenu.btnSettingsCaption":"高级设置","DE.Views.FileMenu.btnSuggestCaption":"提出功能建议","DE.Views.FileMenu.btnSwitchToMobileCaption":"切换到移动模式","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.txtAddProperty":"添加属性","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.txtCommon":"通用","DE.Views.FileMenuPanels.DocumentInfo.txtCreated":"已创建","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文档信息","DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"文档属性","DE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"快速Web视图","DE.Views.FileMenuPanels.DocumentInfo.txtLoading":"加载中…","DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最后修改者","DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"上一次更改","DE.Views.FileMenuPanels.DocumentInfo.txtNo":"否","DE.Views.FileMenuPanels.DocumentInfo.txtOwner":"创建者","DE.Views.FileMenuPanels.DocumentInfo.txtPages":"页面","DE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"页面大小","DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"段落","DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF生成器","DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"已标记的PDF","DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF版本","DE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"位置","DE.Views.FileMenuPanels.DocumentInfo.txtProperties":"属性","DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"具有该标题的属性已存在","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.txtTags":"标签","DE.Views.FileMenuPanels.DocumentInfo.txtTitle":"标题","DE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"已上传","DE.Views.FileMenuPanels.DocumentInfo.txtWords":"单词","DE.Views.FileMenuPanels.DocumentInfo.txtYes":"是","DE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"访问权限","DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"更改访问权限","DE.Views.FileMenuPanels.DocumentRights.txtRights":"拥有权限的人","DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"警告","DE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"密码保护","DE.Views.FileMenuPanels.ProtectDoc.strProtect":"保护文档","DE.Views.FileMenuPanels.ProtectDoc.strSignature":"签名保护","DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有效签名已添加到文档中
文档受到保护,不可编辑。","DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"通过添加
不可见的数字签名来确保文档的完整性","DE.Views.FileMenuPanels.ProtectDoc.txtEdit":"编辑文档","DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"编辑将删除文档中的签名
是否继续?","DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"此文件已使用密码保护。","DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"使用密码加密此文档","DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"此文件需要签名。","DE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有效签名已添加到文档中。文档受到保护,不可编辑。","DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"文件中的一些数字签名无效或无法验证。该文件受到保护,无法编辑。","DE.Views.FileMenuPanels.ProtectDoc.txtView":"查看签名","DE.Views.FileMenuPanels.Settings.okButtonText":"应用","DE.Views.FileMenuPanels.Settings.strChinese":"中文","DE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同编辑模式","DE.Views.FileMenuPanels.Settings.strDocContent":"文档内容","DE.Views.FileMenuPanels.Settings.strFast":"快速","DE.Views.FileMenuPanels.Settings.strFontRender":"字体设置","DE.Views.FileMenuPanels.Settings.strFontSizeType":"在字体大小列表中使用第一个","DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"忽略大写单词","DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"忽略带数字的单词","DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"键盘快捷键","DE.Views.FileMenuPanels.Settings.strMacrosSettings":"宏设置","DE.Views.FileMenuPanels.Settings.strNumeral":"数字","DE.Views.FileMenuPanels.Settings.strPasteButton":"粘贴内容时显示“粘贴选项”按钮","DE.Views.FileMenuPanels.Settings.strRTLSupport":"RTL 界面 (文字从右到左)","DE.Views.FileMenuPanels.Settings.strShowChanges":"实时协作变更","DE.Views.FileMenuPanels.Settings.strShowComments":"在文本中显示批注","DE.Views.FileMenuPanels.Settings.strShowOthersChanges":"显示来自其他用户的更改","DE.Views.FileMenuPanels.Settings.strShowResolvedComments":"显示已解决的批注","DE.Views.FileMenuPanels.Settings.strStrict":"严格","DE.Views.FileMenuPanels.Settings.strTabStyle":"选项卡样式","DE.Views.FileMenuPanels.Settings.strTheme":"界面主题","DE.Views.FileMenuPanels.Settings.strUnit":"计量单位","DE.Views.FileMenuPanels.Settings.strWestern":"西","DE.Views.FileMenuPanels.Settings.strZoom":"默认缩放值","DE.Views.FileMenuPanels.Settings.text10Minutes":"每10分钟","DE.Views.FileMenuPanels.Settings.text30Minutes":"每30分钟","DE.Views.FileMenuPanels.Settings.text5Minutes":"每5分钟","DE.Views.FileMenuPanels.Settings.text60Minutes":"每隔一小时","DE.Views.FileMenuPanels.Settings.textAlignGuides":"对齐辅助线","DE.Views.FileMenuPanels.Settings.textAutoRecover":"保存自动恢复信息","DE.Views.FileMenuPanels.Settings.textAutoSave":"自动保存","DE.Views.FileMenuPanels.Settings.textDisabled":"已禁用","DE.Views.FileMenuPanels.Settings.textFill":"填充","DE.Views.FileMenuPanels.Settings.textForceSave":"保存中间版本","DE.Views.FileMenuPanels.Settings.textLine":"线","DE.Views.FileMenuPanels.Settings.textMinute":"每一分钟","DE.Views.FileMenuPanels.Settings.textOldVersions":"当保存为 DOCX、DOTX 格式时使文件兼容旧版的 MS Word","DE.Views.FileMenuPanels.Settings.textSmartSelection":"使用智能段落选择","DE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"高级设置","DE.Views.FileMenuPanels.Settings.txtAll":"查看全部","DE.Views.FileMenuPanels.Settings.txtAppearance":"外观","DE.Views.FileMenuPanels.Settings.txtArabic":"阿拉伯语","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.txtCollaboration":"协作","DE.Views.FileMenuPanels.Settings.txtContext":"上下文","DE.Views.FileMenuPanels.Settings.txtCustomize":"自定义","DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"自定义快速访问","DE.Views.FileMenuPanels.Settings.txtDarkMode":"启用文档深色模式","DE.Views.FileMenuPanels.Settings.txtEditingSaving":"编辑并保存","DE.Views.FileMenuPanels.Settings.txtFastTip":"实时共同编辑。所有更改都会自动保存","DE.Views.FileMenuPanels.Settings.txtFitPage":"调整至页面大小","DE.Views.FileMenuPanels.Settings.txtFitWidth":"调整至合适宽度","DE.Views.FileMenuPanels.Settings.txtHieroglyphs":"象形文字","DE.Views.FileMenuPanels.Settings.txtHindi":"印地语","DE.Views.FileMenuPanels.Settings.txtInch":"英寸","DE.Views.FileMenuPanels.Settings.txtLast":"查看上一个","DE.Views.FileMenuPanels.Settings.txtLastUsed":"最后一次使用","DE.Views.FileMenuPanels.Settings.txtMac":"按照 OS X 样式","DE.Views.FileMenuPanels.Settings.txtNative":"本地","DE.Views.FileMenuPanels.Settings.txtNone":"无查看","DE.Views.FileMenuPanels.Settings.txtProofing":"校对","DE.Views.FileMenuPanels.Settings.txtPt":"点","DE.Views.FileMenuPanels.Settings.txtQuickPrint":"编辑器标题栏显示“快速打印”按钮","DE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"文档将打印到最近选择的打印机或者默认打印机","DE.Views.FileMenuPanels.Settings.txtRunMacros":"全部启用","DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"启用全部宏,不显示通知","DE.Views.FileMenuPanels.Settings.txtScreenReader":"打开屏幕朗读器支持","DE.Views.FileMenuPanels.Settings.txtShowTrackChanges":"显示跟踪更改","DE.Views.FileMenuPanels.Settings.txtSpellCheck":"拼写检查","DE.Views.FileMenuPanels.Settings.txtStopMacros":"全部停用","DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"禁用全部宏,不显示通知","DE.Views.FileMenuPanels.Settings.txtStrictTip":"使用“保存”按钮同步您和其他人所做的更改","DE.Views.FileMenuPanels.Settings.txtTabBack":"使用工具栏颜色作为选项卡背景","DE.Views.FileMenuPanels.Settings.txtUseAltKey":"按 Alt 键后可通过键盘在用户界面中导航","DE.Views.FileMenuPanels.Settings.txtUseOptionKey":"用Option键使用键盘浏览用户界面","DE.Views.FileMenuPanels.Settings.txtWarnMacros":"显示通知","DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"禁用全部宏,并显示通知","DE.Views.FileMenuPanels.Settings.txtWin":"按照 Windows 样式","DE.Views.FileMenuPanels.Settings.txtWorkspace":"工作区","DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"下载为","DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"另存副本为","DE.Views.FormSettings.textAddRole":"添加接收人","DE.Views.FormSettings.textAlways":"总是","DE.Views.FormSettings.textAnyone":"任何人","DE.Views.FormSettings.textAspect":"锁定宽高比","DE.Views.FormSettings.textAtLeast":"最小值","DE.Views.FormSettings.textAuto":"自动","DE.Views.FormSettings.textAutofit":"自动适应","DE.Views.FormSettings.textBackgroundColor":"背景颜色","DE.Views.FormSettings.textCheckbox":"多选框","DE.Views.FormSettings.textCheckDefault":"复选框默认选中","DE.Views.FormSettings.textColor":"边框颜色","DE.Views.FormSettings.textComb":"文字组合","DE.Views.FormSettings.textCombobox":"下拉式方框","DE.Views.FormSettings.textComplex":"复合字段","DE.Views.FormSettings.textConnected":"已连接的字段","DE.Views.FormSettings.textCreditCard":"信用卡号码(例如 4111-1111-1111-1111)","DE.Views.FormSettings.textDateField":"日期和时间字段","DE.Views.FormSettings.textDateFormat":"这样显示日期","DE.Views.FormSettings.textDefValue":"默认值","DE.Views.FormSettings.textDelete":"删除","DE.Views.FormSettings.textDigits":"数字","DE.Views.FormSettings.textDisconnect":"断开","DE.Views.FormSettings.textDropDown":"下拉菜单","DE.Views.FormSettings.textExact":"固定值","DE.Views.FormSettings.textField":"文本字段","DE.Views.FormSettings.textFillRoles":"谁需要填写这个?","DE.Views.FormSettings.textFixed":"固定大小字段","DE.Views.FormSettings.textFormat":"格式","DE.Views.FormSettings.textFormatSymbols":"允许的符号","DE.Views.FormSettings.textFromFile":"从文件导入","DE.Views.FormSettings.textFromStorage":"来自存储设备","DE.Views.FormSettings.textFromUrl":"来自URL","DE.Views.FormSettings.textGroupKey":"组密钥","DE.Views.FormSettings.textImage":"图片","DE.Views.FormSettings.textKey":"秘钥","DE.Views.FormSettings.textLabel":"附加语","DE.Views.FormSettings.textLang":"语言","DE.Views.FormSettings.textLetters":"字母","DE.Views.FormSettings.textLock":"锁定","DE.Views.FormSettings.textMask":"任意掩模","DE.Views.FormSettings.textMaxChars":"字符限制","DE.Views.FormSettings.textMulti":"多行文本字段","DE.Views.FormSettings.textNever":"从不","DE.Views.FormSettings.textNoBorder":"无边框","DE.Views.FormSettings.textNone":"无","DE.Views.FormSettings.textPhone1":"电话号码(例如(123)456-7890)","DE.Views.FormSettings.textPhone2":"电话号码(例如+44791123456)","DE.Views.FormSettings.textPlaceholder":"占位符","DE.Views.FormSettings.textRadiobox":"单选按钮","DE.Views.FormSettings.textRadioChoice":"单选按钮选项","DE.Views.FormSettings.textRadioDefault":"按钮默认选中","DE.Views.FormSettings.textReg":"正则表达式","DE.Views.FormSettings.textRequired":"必填","DE.Views.FormSettings.textScale":"何時縮放","DE.Views.FormSettings.textSelectImage":"选择图像","DE.Views.FormSettings.textSignature":"签名","DE.Views.FormSettings.textTag":"标签","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.textUKPassport":"英国护照号码(例如925665416)","DE.Views.FormSettings.textUnlock":"解锁","DE.Views.FormSettings.textUSSSN":"美国社会安全码(例如123-45-6789)","DE.Views.FormSettings.textValue":"数值选项","DE.Views.FormSettings.textWidth":"单元格宽度","DE.Views.FormSettings.textZipCodeUS":"美国邮政编码(例如92663或92663-1234)","DE.Views.FormsTab.capBtnCheckBox":"复选框","DE.Views.FormsTab.capBtnComboBox":"下拉式方框","DE.Views.FormsTab.capBtnComplex":"复合字段","DE.Views.FormsTab.capBtnDownloadForm":"下载为 PDF","DE.Views.FormsTab.capBtnDropDown":"下拉菜单","DE.Views.FormsTab.capBtnEmail":"Email地址","DE.Views.FormsTab.capBtnFinal":"标记为最终版本","DE.Views.FormsTab.capBtnImage":"图片","DE.Views.FormsTab.capBtnManager":"管理接收人","DE.Views.FormsTab.capBtnNext":"下一个字段","DE.Views.FormsTab.capBtnPhone":"电话号码","DE.Views.FormsTab.capBtnPrev":"上一个字段","DE.Views.FormsTab.capBtnRadioBox":"单选按钮","DE.Views.FormsTab.capBtnSaveForm":"另存为PDF","DE.Views.FormsTab.capBtnSaveFormDesktop":"另存为...","DE.Views.FormsTab.capBtnSignature":"签名","DE.Views.FormsTab.capBtnSubmit":"提交","DE.Views.FormsTab.capBtnText":"文本字段","DE.Views.FormsTab.capBtnView":"预览","DE.Views.FormsTab.capCreditCard":"信用卡","DE.Views.FormsTab.capDateTime":"日期和时间","DE.Views.FormsTab.capZipCode":"邮编","DE.Views.FormsTab.helpTextFillStatus":"现在可以根据角色填写此表单。单击状态按钮,可检查填写进度。","DE.Views.FormsTab.textAddRole":"添加接收人","DE.Views.FormsTab.textAnyone":"任何人","DE.Views.FormsTab.textClear":"清除字段","DE.Views.FormsTab.textClearFields":"清除所有字段","DE.Views.FormsTab.textCreateForm":"添加字段并创建可填写的PDF文档","DE.Views.FormsTab.textFilled":"已填写","DE.Views.FormsTab.textFillFor":"为其插入字段","DE.Views.FormsTab.textGotIt":"明白","DE.Views.FormsTab.textHighlight":"高亮设置","DE.Views.FormsTab.textNoHighlight":"无高亮","DE.Views.FormsTab.textRequired":"要提交该表单,请填写所有必填字段。","DE.Views.FormsTab.textSubmited":"表单提交成功","DE.Views.FormsTab.textSubmitOk":"您的 PDF 表单已保存,可在“完成”模块访问。","DE.Views.FormsTab.tipCheckBox":"“插入”复选框","DE.Views.FormsTab.tipComboBox":"插入下拉式方框","DE.Views.FormsTab.tipComplexField":"插入复合字段","DE.Views.FormsTab.tipCreateField":"要创建字段,请在工具栏中选择并点击所需的字段类型。该字段将出现在文档中。","DE.Views.FormsTab.tipCreditCard":"插入信用卡号","DE.Views.FormsTab.tipDateTime":"插入日期和时间","DE.Views.FormsTab.tipDownloadForm":"将文件下载为可填充的PDF文档","DE.Views.FormsTab.tipDropDown":"插入下拉列表","DE.Views.FormsTab.tipEmailField":"插入电子邮件地址","DE.Views.FormsTab.tipFieldSettings":"您可以在右侧边栏设置选定的字段。单击此图标可打开字段设置。","DE.Views.FormsTab.tipFieldsLink":"了解更多关于字段参数","DE.Views.FormsTab.tipFinalForm":"标记为最终版本","DE.Views.FormsTab.tipFirstPage":"转到第一页","DE.Views.FormsTab.tipFixedText":"插入固定文本字段","DE.Views.FormsTab.tipFormGroupKey":"对单选按钮进行分组可以更快进行填充。相同名称的选项会进行同步。用户只能勾选该组中的一个单选按钮。","DE.Views.FormsTab.tipFormKey":"您可以给一个字段或一组字段设置密钥。 当用户填写数据时,所有具有相同密钥的字段都将复制该数据。","DE.Views.FormsTab.tipHelpRoles":"使用管理接收人功能,按用途对字段进行分组并分配负责的团队成员。","DE.Views.FormsTab.tipImageField":"插入图片","DE.Views.FormsTab.tipInlineText":"插入内联文本字段","DE.Views.FormsTab.tipLastPage":"转到最后一页","DE.Views.FormsTab.tipManager":"管理接收人","DE.Views.FormsTab.tipNextForm":"跳转到下一个字段","DE.Views.FormsTab.tipNextPage":"跳转到下一页","DE.Views.FormsTab.tipPhoneField":"插入电话号码","DE.Views.FormsTab.tipPrevForm":"跳转到上一个字段","DE.Views.FormsTab.tipPrevPage":"跳转到上一页","DE.Views.FormsTab.tipRadioBox":"插入单选按钮","DE.Views.FormsTab.tipRolesLink":"了解更多关于接收人的信息","DE.Views.FormsTab.tipSaveFile":"点击“另存为pdf”将表单保存为可填写的格式。","DE.Views.FormsTab.tipSaveForm":"将文件另存为可填充的PDF文档","DE.Views.FormsTab.tipSignField":"插入签名","DE.Views.FormsTab.tipSubmit":"提交表单","DE.Views.FormsTab.tipTextField":"插入文本字段","DE.Views.FormsTab.tipViewForm":"预览","DE.Views.FormsTab.tipZipCode":"插入邮政编码","DE.Views.FormsTab.txtFixedDesc":"插入固定文本字段","DE.Views.FormsTab.txtFixedText":"固定","DE.Views.FormsTab.txtInlineDesc":"插入内联文本字段","DE.Views.FormsTab.txtInlineText":"内联","DE.Views.FormsTab.txtSignedForm":"此文档已签署,无法编辑。","DE.Views.FormsTab.txtUntitled":"无标题","DE.Views.HeaderFooterSettings.textBottomCenter":"底部中心","DE.Views.HeaderFooterSettings.textBottomLeft":"左下方","DE.Views.HeaderFooterSettings.textBottomPage":"页面底部","DE.Views.HeaderFooterSettings.textBottomRight":"右下方","DE.Views.HeaderFooterSettings.textDiffFirst":"首页不同","DE.Views.HeaderFooterSettings.textDiffOdd":"奇偶页不同","DE.Views.HeaderFooterSettings.textFrom":"起始编号","DE.Views.HeaderFooterSettings.textHeaderFromBottom":"页脚底端距离","DE.Views.HeaderFooterSettings.textHeaderFromTop":"页眉顶端距离","DE.Views.HeaderFooterSettings.textInsertCurrent":"插入到当前位置","DE.Views.HeaderFooterSettings.textNumFormat":"数字格式","DE.Views.HeaderFooterSettings.textOptions":"选项","DE.Views.HeaderFooterSettings.textPageNum":"插入页码","DE.Views.HeaderFooterSettings.textPageNumbering":"页面编号","DE.Views.HeaderFooterSettings.textPosition":"位置","DE.Views.HeaderFooterSettings.textPrev":"从上一节继续","DE.Views.HeaderFooterSettings.textSameAs":"链接到上一个","DE.Views.HeaderFooterSettings.textTopCenter":"顶部中心","DE.Views.HeaderFooterSettings.textTopLeft":"左上方","DE.Views.HeaderFooterSettings.textTopPage":"页面顶部","DE.Views.HeaderFooterSettings.textTopRight":"右上","DE.Views.HeaderFooterSettings.txtMoreTypes":"更多类型","DE.Views.HeaderFooterTab.capBtnDateTime":"日期和时间","DE.Views.HeaderFooterTab.capBtnInsField":"字段","DE.Views.HeaderFooterTab.capBtnInsImage":"图片","DE.Views.HeaderFooterTab.capCurrentPos":"到当前位置","DE.Views.HeaderFooterTab.capFooterBottom":"页脚底端距离","DE.Views.HeaderFooterTab.capFormatNums":"页面编号","DE.Views.HeaderFooterTab.capHeaderTop":"页眉顶端距离","DE.Views.HeaderFooterTab.capNumOfPages":"页数","DE.Views.HeaderFooterTab.mniImageFromFile":"来自文件的图片","DE.Views.HeaderFooterTab.mniImageFromStorage":"存储设备中的图片","DE.Views.HeaderFooterTab.mniImageFromUrl":"来自URL地址的图片","DE.Views.HeaderFooterTab.tipCloseTab":"关闭选项卡","DE.Views.HeaderFooterTab.tipDateTime":"插入当前日期和时间","DE.Views.HeaderFooterTab.tipHeaderFooter":"编辑页眉或页脚","DE.Views.HeaderFooterTab.tipInsertImage":"插入图片","DE.Views.HeaderFooterTab.tipInsField":"插入域","DE.Views.HeaderFooterTab.tipNumOfPages":"页数","DE.Views.HeaderFooterTab.tipPageNumbering":"页面编号","DE.Views.HeaderFooterTab.txtCloseTab":"关闭","DE.Views.HeaderFooterTab.txtDiffFirst":"首页不同","DE.Views.HeaderFooterTab.txtDiffOddEven":"奇偶页不同","DE.Views.HeaderFooterTab.txtEditFooter":"编辑页脚","DE.Views.HeaderFooterTab.txtEditHeader":"编辑页眉","DE.Views.HeaderFooterTab.txtHeaderFooter":"页眉和页脚","DE.Views.HeaderFooterTab.txtPageNumbering":"页码","DE.Views.HeaderFooterTab.txtRemoveFooter":"删除页脚","DE.Views.HeaderFooterTab.txtRemoveHeader":"删除页眉","DE.Views.HeaderFooterTab.txtSameAs":"链接到上一个","DE.Views.HyperlinkSettingsDialog.textDefault":"所选文本片段","DE.Views.HyperlinkSettingsDialog.textDisplay":"显示","DE.Views.HyperlinkSettingsDialog.textExternal":"外部链接","DE.Views.HyperlinkSettingsDialog.textInternal":"放入文件中","DE.Views.HyperlinkSettingsDialog.textSelectFile":"选择文件","DE.Views.HyperlinkSettingsDialog.textTitle":"链接设置","DE.Views.HyperlinkSettingsDialog.textTooltip":"屏幕提示文字","DE.Views.HyperlinkSettingsDialog.textUrl":"链接到","DE.Views.HyperlinkSettingsDialog.txtBeginning":"文件开头","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.HyperlinkSettingsDialog.txtUrlPlaceholder":"输入网址或选择文件","DE.Views.HyphenationDialog.textAuto":"自动连字符","DE.Views.HyphenationDialog.textCaps":"连字符大写字母","DE.Views.HyphenationDialog.textLimit":"将连续连字符限制为","DE.Views.HyphenationDialog.textNoLimit":"无限制","DE.Views.HyphenationDialog.textTitle":"连字符","DE.Views.HyphenationDialog.textZone":"连字符区","DE.Views.ImageSettings.strTransparency":"透明度","DE.Views.ImageSettings.textAdvanced":"显示高级设置","DE.Views.ImageSettings.textCrop":"裁剪","DE.Views.ImageSettings.textCropFill":"填充","DE.Views.ImageSettings.textCropFit":"适应","DE.Views.ImageSettings.textCropToShape":"裁剪成形状","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":"来自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.textRecentlyUsed":"最近使用的","DE.Views.ImageSettings.textResetCrop":"重置裁剪","DE.Views.ImageSettings.textRotate90":"旋转90°","DE.Views.ImageSettings.textRotation":"旋转","DE.Views.ImageSettings.textSize":"大小","DE.Views.ImageSettings.textWidth":"宽度","DE.Views.ImageSettings.textWrap":"环绕方式","DE.Views.ImageSettings.txtBehind":"衬于文字下方","DE.Views.ImageSettings.txtInFront":"浮于文字上方","DE.Views.ImageSettings.txtInline":"嵌入型","DE.Views.ImageSettings.txtSquare":"四周型","DE.Views.ImageSettings.txtThrough":"穿越型环绕","DE.Views.ImageSettings.txtTight":"紧密型环绕","DE.Views.ImageSettings.txtTopAndBottom":"上下型环绕","DE.Views.ImageSettingsAdvanced.strMargins":"文字內边距","DE.Views.ImageSettingsAdvanced.textAbsoluteWH":"绝对","DE.Views.ImageSettingsAdvanced.textAlignment":"对齐","DE.Views.ImageSettingsAdvanced.textAlt":"替代文本","DE.Views.ImageSettingsAdvanced.textAltDescription":"描述","DE.Views.ImageSettingsAdvanced.textAltTip":"视觉对象信息的另一种基于文本的表示方式,将读取给视力或认知障碍的人,以帮助他们更好地理解图像、形状、图表或表格中的信息。","DE.Views.ImageSettingsAdvanced.textAltTitle":"标题","DE.Views.ImageSettingsAdvanced.textAngle":"角度","DE.Views.ImageSettingsAdvanced.textArrows":"箭头","DE.Views.ImageSettingsAdvanced.textAspectRatio":"锁定宽高比","DE.Views.ImageSettingsAdvanced.textAuto":"自动","DE.Views.ImageSettingsAdvanced.textAutofit":"自动适应","DE.Views.ImageSettingsAdvanced.textAxisCrosses":"坐标轴交叉","DE.Views.ImageSettingsAdvanced.textAxisPos":"坐标轴位置","DE.Views.ImageSettingsAdvanced.textAxisTitle":"标题","DE.Views.ImageSettingsAdvanced.textBase":"基线","DE.Views.ImageSettingsAdvanced.textBeginSize":"初始大小","DE.Views.ImageSettingsAdvanced.textBeginStyle":"初始样式","DE.Views.ImageSettingsAdvanced.textBelow":"下面","DE.Views.ImageSettingsAdvanced.textBetweenTickMarks":"刻度线之间","DE.Views.ImageSettingsAdvanced.textBevel":"斜角","DE.Views.ImageSettingsAdvanced.textBillions":"十亿","DE.Views.ImageSettingsAdvanced.textBottom":"底部","DE.Views.ImageSettingsAdvanced.textBottomMargin":"下边距","DE.Views.ImageSettingsAdvanced.textBtnWrap":"文本环绕","DE.Views.ImageSettingsAdvanced.textCapType":"大写字母样式","DE.Views.ImageSettingsAdvanced.textCategoryName":"分类名称","DE.Views.ImageSettingsAdvanced.textCenter":"中心","DE.Views.ImageSettingsAdvanced.textCharacter":"字符","DE.Views.ImageSettingsAdvanced.textChartTitle":"图表标题","DE.Views.ImageSettingsAdvanced.textColumn":"列","DE.Views.ImageSettingsAdvanced.textCross":"环绕","DE.Views.ImageSettingsAdvanced.textCustom":"自定义","DE.Views.ImageSettingsAdvanced.textDataLabels":"数据标签","DE.Views.ImageSettingsAdvanced.textDistance":"与文本的间距","DE.Views.ImageSettingsAdvanced.textEndSize":"末端尺寸","DE.Views.ImageSettingsAdvanced.textEndStyle":"结束样式","DE.Views.ImageSettingsAdvanced.textFit":"适合宽度","DE.Views.ImageSettingsAdvanced.textFixed":"固定","DE.Views.ImageSettingsAdvanced.textFlat":"平面","DE.Views.ImageSettingsAdvanced.textFlipped":"已翻转的","DE.Views.ImageSettingsAdvanced.textFormat":"标签格式","DE.Views.ImageSettingsAdvanced.textGridLines":"网格线","DE.Views.ImageSettingsAdvanced.textHeight":"高度","DE.Views.ImageSettingsAdvanced.textHideAxis":"隐藏轴","DE.Views.ImageSettingsAdvanced.textHigh":"高","DE.Views.ImageSettingsAdvanced.textHorAxis":"横轴","DE.Views.ImageSettingsAdvanced.textHorAxisSec":"次横轴","DE.Views.ImageSettingsAdvanced.textHorizontal":"水平的","DE.Views.ImageSettingsAdvanced.textHorizontally":"水平地","DE.Views.ImageSettingsAdvanced.textHundredMil":"100 000 000","DE.Views.ImageSettingsAdvanced.textHundreds":"百","DE.Views.ImageSettingsAdvanced.textHundredThousands":"100 000","DE.Views.ImageSettingsAdvanced.textIn":"嵌入","DE.Views.ImageSettingsAdvanced.textInnerBottom":"内侧底部","DE.Views.ImageSettingsAdvanced.textInnerTop":"内侧顶部","DE.Views.ImageSettingsAdvanced.textJoinType":"加入类型","DE.Views.ImageSettingsAdvanced.textKeepRatio":"恒定比例","DE.Views.ImageSettingsAdvanced.textLabelDist":"坐标轴标签距离","DE.Views.ImageSettingsAdvanced.textLabelInterval":"标签之间的间隔","DE.Views.ImageSettingsAdvanced.textLabelOptions":"标签选项","DE.Views.ImageSettingsAdvanced.textLabelPos":"标签位置","DE.Views.ImageSettingsAdvanced.textLayout":"布局","DE.Views.ImageSettingsAdvanced.textLeft":"左","DE.Views.ImageSettingsAdvanced.textLeftMargin":"左边距","DE.Views.ImageSettingsAdvanced.textLeftOverlay":"左侧覆盖","DE.Views.ImageSettingsAdvanced.textLegendBottom":"底部","DE.Views.ImageSettingsAdvanced.textLegendLeft":"左","DE.Views.ImageSettingsAdvanced.textLegendPos":"图例","DE.Views.ImageSettingsAdvanced.textLegendRight":"右","DE.Views.ImageSettingsAdvanced.textLegendTop":"顶部","DE.Views.ImageSettingsAdvanced.textLine":"边框","DE.Views.ImageSettingsAdvanced.textLines":"行","DE.Views.ImageSettingsAdvanced.textLineStyle":"线样式","DE.Views.ImageSettingsAdvanced.textLogScale":"对数刻度","DE.Views.ImageSettingsAdvanced.textLow":"低","DE.Views.ImageSettingsAdvanced.textMajor":"主要","DE.Views.ImageSettingsAdvanced.textMajorMinor":"主要和次要","DE.Views.ImageSettingsAdvanced.textMajorType":"主要类型","DE.Views.ImageSettingsAdvanced.textManual":"手动","DE.Views.ImageSettingsAdvanced.textMargin":"边距","DE.Views.ImageSettingsAdvanced.textMarkers":"标记","DE.Views.ImageSettingsAdvanced.textMarksInterval":"标记之间的间隔","DE.Views.ImageSettingsAdvanced.textMaxValue":"最大值","DE.Views.ImageSettingsAdvanced.textMillions":"百万","DE.Views.ImageSettingsAdvanced.textMinor":"次要","DE.Views.ImageSettingsAdvanced.textMinorType":"次要类型","DE.Views.ImageSettingsAdvanced.textMinValue":"最小值","DE.Views.ImageSettingsAdvanced.textMiter":"斜接角","DE.Views.ImageSettingsAdvanced.textMove":"移动带文本的对象","DE.Views.ImageSettingsAdvanced.textNextToAxis":"在轴旁边","DE.Views.ImageSettingsAdvanced.textNone":"无","DE.Views.ImageSettingsAdvanced.textNoOverlay":"不覆盖","DE.Views.ImageSettingsAdvanced.textOnTickMarks":"刻度标记","DE.Views.ImageSettingsAdvanced.textOptions":"选项","DE.Views.ImageSettingsAdvanced.textOriginalSize":"实际大小","DE.Views.ImageSettingsAdvanced.textOut":"环绕","DE.Views.ImageSettingsAdvanced.textOuterTop":"外侧顶部","DE.Views.ImageSettingsAdvanced.textOverlap":"允许重叠","DE.Views.ImageSettingsAdvanced.textOverlay":"覆盖","DE.Views.ImageSettingsAdvanced.textPage":"页面","DE.Views.ImageSettingsAdvanced.textParagraph":"段落","DE.Views.ImageSettingsAdvanced.textPosition":"位置","DE.Views.ImageSettingsAdvanced.textPositionPc":"相对位置","DE.Views.ImageSettingsAdvanced.textRelative":"相对于","DE.Views.ImageSettingsAdvanced.textRelativeWH":"相对的","DE.Views.ImageSettingsAdvanced.textResizeFit":"调整形状大小以适应文本","DE.Views.ImageSettingsAdvanced.textReverse":"值逆序显示","DE.Views.ImageSettingsAdvanced.textRight":"右","DE.Views.ImageSettingsAdvanced.textRightMargin":"右页边距","DE.Views.ImageSettingsAdvanced.textRightOf":"在 - 的右边","DE.Views.ImageSettingsAdvanced.textRightOverlay":"右侧覆盖","DE.Views.ImageSettingsAdvanced.textRotated":"已旋转","DE.Views.ImageSettingsAdvanced.textRotation":"旋转","DE.Views.ImageSettingsAdvanced.textRound":"圆","DE.Views.ImageSettingsAdvanced.textSeparator":"数据标签分隔符","DE.Views.ImageSettingsAdvanced.textSeriesName":"系列名称","DE.Views.ImageSettingsAdvanced.textShape":"形状设置","DE.Views.ImageSettingsAdvanced.textSize":"大小","DE.Views.ImageSettingsAdvanced.textSmooth":"平滑","DE.Views.ImageSettingsAdvanced.textSquare":"四周型","DE.Views.ImageSettingsAdvanced.textStraight":"校直","DE.Views.ImageSettingsAdvanced.textTenMillions":"10 000 000","DE.Views.ImageSettingsAdvanced.textTenThousands":"10 000","DE.Views.ImageSettingsAdvanced.textTextBox":"文本框","DE.Views.ImageSettingsAdvanced.textThousands":"千","DE.Views.ImageSettingsAdvanced.textTickOptions":"勾选选项","DE.Views.ImageSettingsAdvanced.textTitle":"图片 - 高级设置","DE.Views.ImageSettingsAdvanced.textTitleChart":"图表 - 高级设置","DE.Views.ImageSettingsAdvanced.textTitleShape":"形状 - 高级设置","DE.Views.ImageSettingsAdvanced.textTop":"顶部","DE.Views.ImageSettingsAdvanced.textTopMargin":"上边距","DE.Views.ImageSettingsAdvanced.textTrillions":"万亿","DE.Views.ImageSettingsAdvanced.textUnits":"显示单位","DE.Views.ImageSettingsAdvanced.textValue":"值","DE.Views.ImageSettingsAdvanced.textVertAxis":"纵轴","DE.Views.ImageSettingsAdvanced.textVertAxisSec":"次纵轴","DE.Views.ImageSettingsAdvanced.textVertical":"垂直","DE.Views.ImageSettingsAdvanced.textVertically":"垂直地","DE.Views.ImageSettingsAdvanced.textWeightArrows":"權重與箭頭","DE.Views.ImageSettingsAdvanced.textWidth":"宽度","DE.Views.ImageSettingsAdvanced.textWrap":"环绕方式","DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip":"衬于文字下方","DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip":"浮于文字上方","DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip":"嵌入型","DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip":"四周型","DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip":"穿越型环绕","DE.Views.ImageSettingsAdvanced.textWrapTightTooltip":"紧密型环绕","DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip":"上下型环绕","DE.Views.LeftMenu.ariaLeftMenu":"左侧菜单","DE.Views.LeftMenu.tipAbout":"关于","DE.Views.LeftMenu.tipChat":"聊天","DE.Views.LeftMenu.tipComments":"批注","DE.Views.LeftMenu.tipNavigation":"导航","DE.Views.LeftMenu.tipOutline":"标题","DE.Views.LeftMenu.tipPageThumbnails":"页面缩略图","DE.Views.LeftMenu.tipPlugins":"插件","DE.Views.LeftMenu.tipSearch":"搜索","DE.Views.LeftMenu.tipSupport":"反馈和支持","DE.Views.LeftMenu.tipTitles":"标题","DE.Views.LeftMenu.txtDeveloper":"开发者模式","DE.Views.LeftMenu.txtEditor":"文档编辑器","DE.Views.LeftMenu.txtLimit":"限制访问","DE.Views.LeftMenu.txtTrial":"试用模式","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":"此处起始","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.capBtnAddText":"添加文字","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.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.tipAddText":"在目录中包括标题","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.Links.txtDontShowTof":"不显示在目录中","DE.Views.Links.txtLevel":"级别","DE.Views.ListIndentsDialog.textSpace":"空格","DE.Views.ListIndentsDialog.textTab":"标签字符","DE.Views.ListIndentsDialog.textTitle":"列表缩进","DE.Views.ListIndentsDialog.txtFollowBullet":"跟随项目符号","DE.Views.ListIndentsDialog.txtFollowNumber":"跟随数字","DE.Views.ListIndentsDialog.txtIndent":"文字缩进","DE.Views.ListIndentsDialog.txtNone":"无","DE.Views.ListIndentsDialog.txtPosBullet":"项目符号位置","DE.Views.ListIndentsDialog.txtPosNumber":"编号位置","DE.Views.ListSettingsDialog.textAuto":"自动","DE.Views.ListSettingsDialog.textBold":"粗体","DE.Views.ListSettingsDialog.textCenter":"中心","DE.Views.ListSettingsDialog.textHide":"隐藏设置","DE.Views.ListSettingsDialog.textItalic":"斜体","DE.Views.ListSettingsDialog.textLeft":"左","DE.Views.ListSettingsDialog.textLevel":"级别","DE.Views.ListSettingsDialog.textMore":"显示更多设置","DE.Views.ListSettingsDialog.textPreview":"预览","DE.Views.ListSettingsDialog.textRight":"右","DE.Views.ListSettingsDialog.textSelectLevel":"选择级别","DE.Views.ListSettingsDialog.textSpace":"空格","DE.Views.ListSettingsDialog.textTab":"标签字符","DE.Views.ListSettingsDialog.txtAlign":"对齐","DE.Views.ListSettingsDialog.txtAlignAt":"在","DE.Views.ListSettingsDialog.txtBullet":"项目符号","DE.Views.ListSettingsDialog.txtColor":"颜色","DE.Views.ListSettingsDialog.txtFollow":"跟随数字","DE.Views.ListSettingsDialog.txtFontName":"字体 ","DE.Views.ListSettingsDialog.txtInclcudeLevel":"包括级别编号","DE.Views.ListSettingsDialog.txtIndent":"文字缩进","DE.Views.ListSettingsDialog.txtLikeText":"像文字","DE.Views.ListSettingsDialog.txtMoreTypes":"更多类型","DE.Views.ListSettingsDialog.txtNewBullet":"新项目符号","DE.Views.ListSettingsDialog.txtNone":"无","DE.Views.ListSettingsDialog.txtNumFormatString":"数字格式","DE.Views.ListSettingsDialog.txtRestart":"重新启动列表","DE.Views.ListSettingsDialog.txtSize":"大小","DE.Views.ListSettingsDialog.txtStart":"起始编号","DE.Views.ListSettingsDialog.txtSymbol":"符号","DE.Views.ListSettingsDialog.txtTabStop":"在添加制表位","DE.Views.ListSettingsDialog.txtTitle":"列表设置","DE.Views.ListSettingsDialog.txtType":"类型","DE.Views.ListTypesAdvanced.labelSelect":"选择列表类型","DE.Views.MailMergeEmailDlg.filePlaceholder":"PDF","DE.Views.MailMergeEmailDlg.okButtonText":"发送","DE.Views.MailMergeEmailDlg.subjectPlaceholder":"主题","DE.Views.MailMergeEmailDlg.textAttachDocx":"附加为DOCX","DE.Views.MailMergeEmailDlg.textAttachPdf":"附加为PDF","DE.Views.MailMergeEmailDlg.textFileName":"文件名","DE.Views.MailMergeEmailDlg.textFormat":"邮件格式","DE.Views.MailMergeEmailDlg.textFrom":"从","DE.Views.MailMergeEmailDlg.textHTML":"HTML","DE.Views.MailMergeEmailDlg.textMessage":"消息","DE.Views.MailMergeEmailDlg.textSubject":"主旨行","DE.Views.MailMergeEmailDlg.textTitle":"发送到电子邮件","DE.Views.MailMergeEmailDlg.textTo":"到","DE.Views.MailMergeEmailDlg.textWarning":"警告!","DE.Views.MailMergeEmailDlg.textWarningMsg":"请注意,一旦您点击“发送”按钮,邮件无法停止。","DE.Views.MailMergeSettings.downloadMergeTitle":"合并","DE.Views.MailMergeSettings.errorMailMergeSaveFile":"合并失败","DE.Views.MailMergeSettings.notcriticalErrorTitle":"警告","DE.Views.MailMergeSettings.textAddRecipients":"首先在列表中添加接收人","DE.Views.MailMergeSettings.textAll":"所有记录","DE.Views.MailMergeSettings.textCurrent":"当前记录","DE.Views.MailMergeSettings.textDataSource":"数据来源","DE.Views.MailMergeSettings.textDocx":"Docx","DE.Views.MailMergeSettings.textDownload":"下载","DE.Views.MailMergeSettings.textEditData":"编辑接收人列表","DE.Views.MailMergeSettings.textEmail":"电邮","DE.Views.MailMergeSettings.textFrom":"从","DE.Views.MailMergeSettings.textGoToMail":"转到邮件","DE.Views.MailMergeSettings.textHighlight":"高亮显示合并字段","DE.Views.MailMergeSettings.textInsertField":"插入合并字段","DE.Views.MailMergeSettings.textMaxRecepients":"最多100位接收人。","DE.Views.MailMergeSettings.textMerge":"合并","DE.Views.MailMergeSettings.textMergeFields":"合并字段","DE.Views.MailMergeSettings.textMergeTo":"合并到","DE.Views.MailMergeSettings.textPdf":"PDF","DE.Views.MailMergeSettings.textPortal":"保存","DE.Views.MailMergeSettings.textPreview":"预览结果","DE.Views.MailMergeSettings.textReadMore":"了解更多","DE.Views.MailMergeSettings.textSendMsg":"所有邮件都已准备就绪,并会在一段时间内发出。
邮件的速度取决于您的邮件服务,您可以继续使用文档或关闭它。操作结束后,通知将发送到您的注册邮箱地址。","DE.Views.MailMergeSettings.textTo":"到","DE.Views.MailMergeSettings.txtFirst":"到第一个记录","DE.Views.MailMergeSettings.txtFromToError":"“从”值必须小于“到”值","DE.Views.MailMergeSettings.txtLast":"到最后一个记录","DE.Views.MailMergeSettings.txtNext":"跳转到下一个记录","DE.Views.MailMergeSettings.txtPrev":"跳转到上一条记录","DE.Views.MailMergeSettings.txtUntitled":"无标题","DE.Views.MailMergeSettings.warnProcessMailMerge":"启动合并失败","DE.Views.Navigation.strNavigate":"标题","DE.Views.Navigation.txtClosePanel":"关闭标题","DE.Views.Navigation.txtCollapse":"折叠全部","DE.Views.Navigation.txtDemote":"使降级","DE.Views.Navigation.txtEmpty":"文档中没有标题
对文本应用标题样式,使其显示在目录中。","DE.Views.Navigation.txtEmptyItem":"空标题","DE.Views.Navigation.txtEmptyViewer":"文档中没有标题。","DE.Views.Navigation.txtExpand":"展开全部","DE.Views.Navigation.txtExpandToLevel":"展开到级别","DE.Views.Navigation.txtFontSize":"字体大小","DE.Views.Navigation.txtHeadingAfter":"之后的新标题","DE.Views.Navigation.txtHeadingBefore":"之前的新标题","DE.Views.Navigation.txtLarge":"大","DE.Views.Navigation.txtMedium":"中","DE.Views.Navigation.txtNewHeading":"新的副标题","DE.Views.Navigation.txtPromote":"提升","DE.Views.Navigation.txtSelect":"选择内容","DE.Views.Navigation.txtSettings":"标题设置","DE.Views.Navigation.txtSmall":"小","DE.Views.Navigation.txtWrapHeadings":"换行长标题","DE.Views.NoteSettingsDialog.textApply":"应用","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":"格式","DE.Views.NoteSettingsDialog.textInsert":"插入","DE.Views.NoteSettingsDialog.textLocation":"位置","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":"下","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":"边距","DE.Views.PageMarginsDialog.textTop":"上","DE.Views.PageMarginsDialog.txtMarginsH":"顶部和底部边距对于给定的页面高度来说太高","DE.Views.PageMarginsDialog.txtMarginsW":"对于给定的页面宽度,左右边距太宽","DE.Views.PageNumberingDlg.textFrom":"开始于","DE.Views.PageNumberingDlg.textMoreTypes":"更多类型","DE.Views.PageNumberingDlg.textNumberFormat":"数字格式","DE.Views.PageNumberingDlg.textPrev":"从上一节继续","DE.Views.PageSizeDialog.textHeight":"高度","DE.Views.PageSizeDialog.textPreset":"预设置","DE.Views.PageSizeDialog.textTitle":"页面大小","DE.Views.PageSizeDialog.textWidth":"宽度","DE.Views.PageSizeDialog.txtCustom":"自定义","DE.Views.PageThumbnails.textClosePanel":"关闭页面缩略图","DE.Views.PageThumbnails.textHighlightVisiblePart":"高亮显示页面的可见部分","DE.Views.PageThumbnails.textPageThumbnails":"页面缩略图","DE.Views.PageThumbnails.textThumbnailsSettings":"缩略图设置","DE.Views.PageThumbnails.textThumbnailsSize":"缩略图大小","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.strSpacingAfter":"之后","DE.Views.ParagraphSettings.strSpacingBefore":"之前","DE.Views.ParagraphSettings.textAdvanced":"显示高级设置","DE.Views.ParagraphSettings.textAt":"在","DE.Views.ParagraphSettings.textAtLeast":"最小值","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":"指定的选项卡将显示在此字段中","DE.Views.ParagraphSettingsAdvanced.strAllCaps":"全部大写","DE.Views.ParagraphSettingsAdvanced.strBorders":"边框和填充","DE.Views.ParagraphSettingsAdvanced.strBreakBefore":"段前分页","DE.Views.ParagraphSettingsAdvanced.strDirection":"方向","DE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"双删除线","DE.Views.ParagraphSettingsAdvanced.strIndent":"缩进","DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","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":"內距","DE.Views.ParagraphSettingsAdvanced.strOrphan":"孤行控制","DE.Views.ParagraphSettingsAdvanced.strParagraphFont":"字体 ","DE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"缩进和间距","DE.Views.ParagraphSettingsAdvanced.strParagraphLine":"换行符和分页符","DE.Views.ParagraphSettingsAdvanced.strParagraphPosition":"放置","DE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型大写字母","DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace":"不要在相同样式的段落之间添加间隔","DE.Views.ParagraphSettingsAdvanced.strSpacing":"间距","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.textAll":"全部","DE.Views.ParagraphSettingsAdvanced.textAtLeast":"最小值","DE.Views.ParagraphSettingsAdvanced.textAuto":"多倍行距","DE.Views.ParagraphSettingsAdvanced.textBackColor":"背景颜色","DE.Views.ParagraphSettingsAdvanced.textBodyText":"基本文字","DE.Views.ParagraphSettingsAdvanced.textBorderColor":"边框颜色","DE.Views.ParagraphSettingsAdvanced.textBorderDesc":"点击图表或使用按钮选择边框,并将选择的样式应用于它们","DE.Views.ParagraphSettingsAdvanced.textBorderWidth":"边框大小","DE.Views.ParagraphSettingsAdvanced.textBottom":"底部","DE.Views.ParagraphSettingsAdvanced.textCentered":"居中","DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"字符间距","DE.Views.ParagraphSettingsAdvanced.textContext":"上下文的","DE.Views.ParagraphSettingsAdvanced.textContextDiscret":"上下文和自行决定","DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret":"上下文、历史和自由决定","DE.Views.ParagraphSettingsAdvanced.textContextHistorical":"上下文和历史","DE.Views.ParagraphSettingsAdvanced.textDefault":"默认选项卡","DE.Views.ParagraphSettingsAdvanced.textDirLtr":"从左到右","DE.Views.ParagraphSettingsAdvanced.textDirRtl":"从右到左","DE.Views.ParagraphSettingsAdvanced.textDiscret":"任意的","DE.Views.ParagraphSettingsAdvanced.textEffects":"效果","DE.Views.ParagraphSettingsAdvanced.textExact":"固定值","DE.Views.ParagraphSettingsAdvanced.textFirstLine":"第一行","DE.Views.ParagraphSettingsAdvanced.textHanging":"悬挂","DE.Views.ParagraphSettingsAdvanced.textHistorical":"历史的","DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret":"有根据的与随意的","DE.Views.ParagraphSettingsAdvanced.textJustified":"两端对齐","DE.Views.ParagraphSettingsAdvanced.textLeader":"领导","DE.Views.ParagraphSettingsAdvanced.textLeft":"左","DE.Views.ParagraphSettingsAdvanced.textLevel":"级别","DE.Views.ParagraphSettingsAdvanced.textLigatures":"连字","DE.Views.ParagraphSettingsAdvanced.textNone":"无","DE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(无)","DE.Views.ParagraphSettingsAdvanced.textOpenType":"OpenType 功能","DE.Views.ParagraphSettingsAdvanced.textPosition":"位置","DE.Views.ParagraphSettingsAdvanced.textRemove":"删除","DE.Views.ParagraphSettingsAdvanced.textRemoveAll":"删除所有","DE.Views.ParagraphSettingsAdvanced.textRight":"右","DE.Views.ParagraphSettingsAdvanced.textSet":"指定","DE.Views.ParagraphSettingsAdvanced.textSpacing":"间距","DE.Views.ParagraphSettingsAdvanced.textStandard":"仅限标准","DE.Views.ParagraphSettingsAdvanced.textStandardContext":"标准与上下文","DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret":"标准、情境和选择性","DE.Views.ParagraphSettingsAdvanced.textStandardContextHist":"标准、情境和历史","DE.Views.ParagraphSettingsAdvanced.textStandardDiscret":"标准和选择性","DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret":"标准、历史和选择性","DE.Views.ParagraphSettingsAdvanced.textStandardHistorical":"标准与历史","DE.Views.ParagraphSettingsAdvanced.textTabCenter":"中心","DE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","DE.Views.ParagraphSettingsAdvanced.textTabPosition":"标签的位置","DE.Views.ParagraphSettingsAdvanced.textTabRight":"右","DE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 高级设置","DE.Views.ParagraphSettingsAdvanced.textTop":"顶部","DE.Views.ParagraphSettingsAdvanced.tipAll":"设置外边框和所有内框线","DE.Views.ParagraphSettingsAdvanced.tipBottom":"仅设置底部边框","DE.Views.ParagraphSettingsAdvanced.tipInner":"仅设置水平内框线","DE.Views.ParagraphSettingsAdvanced.tipLeft":"仅设定内部框线","DE.Views.ParagraphSettingsAdvanced.tipNone":"设置无边框","DE.Views.ParagraphSettingsAdvanced.tipOuter":"仅设定外部边框","DE.Views.ParagraphSettingsAdvanced.tipRight":"仅设置右边框","DE.Views.ParagraphSettingsAdvanced.tipTop":"仅设定上边框","DE.Views.ParagraphSettingsAdvanced.txtAutoText":"自动","DE.Views.ParagraphSettingsAdvanced.txtNoBorders":"无边框","DE.Views.PrintWithPreview.textMarginsLast":"上次自定义","DE.Views.PrintWithPreview.textMarginsModerate":"中等","DE.Views.PrintWithPreview.textMarginsNarrow":"窄","DE.Views.PrintWithPreview.textMarginsNormal":"常规","DE.Views.PrintWithPreview.textMarginsWide":"宽","DE.Views.PrintWithPreview.txtAllPages":"所有页面","DE.Views.PrintWithPreview.txtAuto":"Auto","DE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"黑白打印","DE.Views.PrintWithPreview.txtBothSides":"双面打印","DE.Views.PrintWithPreview.txtBothSidesLongDesc":"长边翻页","DE.Views.PrintWithPreview.txtBothSidesShortDesc":"短边翻页","DE.Views.PrintWithPreview.txtBottom":"下","DE.Views.PrintWithPreview.txtColorPrinting":"彩色打印","DE.Views.PrintWithPreview.txtCopies":"副本","DE.Views.PrintWithPreview.txtCurrentPage":"当前页面","DE.Views.PrintWithPreview.txtCustom":"自定义","DE.Views.PrintWithPreview.txtCustomPages":"自定义打印","DE.Views.PrintWithPreview.txtLandscape":"橫向","DE.Views.PrintWithPreview.txtLeft":"左","DE.Views.PrintWithPreview.txtMargins":"边距","DE.Views.PrintWithPreview.txtOf":"共 {0} 页","DE.Views.PrintWithPreview.txtOneSide":"单面打印","DE.Views.PrintWithPreview.txtOneSideDesc":"只打印单面","DE.Views.PrintWithPreview.txtPage":"页面","DE.Views.PrintWithPreview.txtPageNumInvalid":"页码无效","DE.Views.PrintWithPreview.txtPageOrientation":"页面方向","DE.Views.PrintWithPreview.txtPages":"页面","DE.Views.PrintWithPreview.txtPageSize":"页面大小","DE.Views.PrintWithPreview.txtPortrait":"纵向","DE.Views.PrintWithPreview.txtPrint":"打印","DE.Views.PrintWithPreview.txtPrinter":"打印机","DE.Views.PrintWithPreview.txtPrinterNotSelected":"未选择打印机","DE.Views.PrintWithPreview.txtPrintersNotFound":"未找到打印机","DE.Views.PrintWithPreview.txtPrintPdf":"打印为 PDF","DE.Views.PrintWithPreview.txtPrintRange":"打印范围","DE.Views.PrintWithPreview.txtPrintSides":"打印面","DE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"使用系统对话框打印","DE.Views.PrintWithPreview.txtRight":"右","DE.Views.PrintWithPreview.txtSelection":"选择","DE.Views.PrintWithPreview.txtTop":"顶部","DE.Views.PrintWithPreview.txtWaitingForPrinters":"正在等待打印机","DE.Views.ProtectDialog.textComments":"批注","DE.Views.ProtectDialog.textForms":"填写表单","DE.Views.ProtectDialog.textReview":"跟踪的更改","DE.Views.ProtectDialog.textView":"不能更改(只读)","DE.Views.ProtectDialog.txtAllow":"仅允许在文档中进行此类型的编辑","DE.Views.ProtectDialog.txtIncorrectPwd":"确认密码不相同","DE.Views.ProtectDialog.txtLimit":"密码限制为15个字符","DE.Views.ProtectDialog.txtOptional":"可选的","DE.Views.ProtectDialog.txtPassword":"密码","DE.Views.ProtectDialog.txtProtect":"保护","DE.Views.ProtectDialog.txtRepeat":"重复密码","DE.Views.ProtectDialog.txtTitle":"保护","DE.Views.ProtectDialog.txtWarning":"警告:如果您丢失或忘记了密码,则无法恢复。请把它放在安全的地方。","DE.Views.RightMenu.ariaRightMenu":"右侧菜单","DE.Views.RightMenu.txtChartSettings":"图表设置","DE.Views.RightMenu.txtFormSettings":"表单设置","DE.Views.RightMenu.txtHeaderFooterSettings":"页眉和页脚设置","DE.Views.RightMenu.txtImageSettings":"图像设置","DE.Views.RightMenu.txtMailMergeSettings":"邮件合并设置","DE.Views.RightMenu.txtParagraphSettings":"段落设置","DE.Views.RightMenu.txtShapeSettings":"形状设置","DE.Views.RightMenu.txtSignatureSettings":"签名设置","DE.Views.RightMenu.txtTableSettings":"表格设置","DE.Views.RightMenu.txtTextArtSettings":"艺术字设置","DE.Views.RoleDeleteDlg.textLabel":"如要删除此接收人,您需要将与其关联的字段移动到另一个接收人。","DE.Views.RoleDeleteDlg.textSelect":"选择用于字段合并的接收人","DE.Views.RoleDeleteDlg.textTitle":"删除接收人","DE.Views.RoleEditDlg.errNameExists":"已存在该接收人名称。","DE.Views.RoleEditDlg.textEmptyError":"接收人名称不能为空。","DE.Views.RoleEditDlg.textName":"接收人名称","DE.Views.RoleEditDlg.textNameEx":"例如:申请人、客户、销售代表","DE.Views.RoleEditDlg.textNoHighlight":"无高亮","DE.Views.RoleEditDlg.txtTitleEdit":"编辑接收人","DE.Views.RoleEditDlg.txtTitleNew":"创建新接收人","DE.Views.RolesManagerDlg.textAnyone":"任何人","DE.Views.RolesManagerDlg.textDelete":"删除","DE.Views.RolesManagerDlg.textDeleteLast":"是否确定要删除接收人{0}?
删除后,将创建默认接收人。","DE.Views.RolesManagerDlg.textDescription":"添加接收人并设置填写人接收和签署文档的顺序","DE.Views.RolesManagerDlg.textDown":"向下移动接收人","DE.Views.RolesManagerDlg.textEdit":"编辑","DE.Views.RolesManagerDlg.textEmpty":"尚未创建任何接收人。
至少创建一个接收人,它将显示在此字段中。","DE.Views.RolesManagerDlg.textNew":"新建","DE.Views.RolesManagerDlg.textUp":"向上移动接收人","DE.Views.RolesManagerDlg.txtTitle":"管理接收人","DE.Views.RolesManagerDlg.warnCantDelete":"无法删除此接收人,因为它有关联的字段。","DE.Views.RolesManagerDlg.warnDelete":"是否确定要删除接收人{0}?","DE.Views.SaveFormDlg.saveButtonText":"保存","DE.Views.SaveFormDlg.textAnyone":"任何人","DE.Views.SaveFormDlg.textDescription":"保存为PDF时,只有具有字段的接收人会被添加到填写列表中","DE.Views.SaveFormDlg.textEmpty":"没有与字段关联的接收人。","DE.Views.SaveFormDlg.textFill":"填写清单","DE.Views.SaveFormDlg.txtTitle":"另存为表单","DE.Views.ShapeSettings.strBackground":"背景颜色","DE.Views.ShapeSettings.strChange":"更改形状","DE.Views.ShapeSettings.strColor":"颜色","DE.Views.ShapeSettings.strFill":"填充","DE.Views.ShapeSettings.strForeground":"前景色","DE.Views.ShapeSettings.strPattern":"图案","DE.Views.ShapeSettings.strShadow":"显示阴影","DE.Views.ShapeSettings.strSize":"粗细","DE.Views.ShapeSettings.strStroke":"边框","DE.Views.ShapeSettings.strTransparency":"不透明度","DE.Views.ShapeSettings.strType":"类型","DE.Views.ShapeSettings.textAdjustShadow":"调整阴影","DE.Views.ShapeSettings.textAdvanced":"显示高级设置","DE.Views.ShapeSettings.textAngle":"角度","DE.Views.ShapeSettings.textBorderSizeErr":"输入的值不正确。
请输入介于0 pt和1584 pt之间的值。","DE.Views.ShapeSettings.textColor":"颜色填充","DE.Views.ShapeSettings.textDirection":"方向","DE.Views.ShapeSettings.textEditPoints":"编辑点","DE.Views.ShapeSettings.textEditShape":"编辑形状","DE.Views.ShapeSettings.textEmptyPattern":"无图案","DE.Views.ShapeSettings.textEyedropper":"拾色器","DE.Views.ShapeSettings.textFlip":"翻转","DE.Views.ShapeSettings.textFromFile":"从文件导入","DE.Views.ShapeSettings.textFromStorage":"来自存储设备","DE.Views.ShapeSettings.textFromUrl":"来自URL","DE.Views.ShapeSettings.textGradient":"渐变点","DE.Views.ShapeSettings.textGradientFill":"渐变填充","DE.Views.ShapeSettings.textHint270":"逆时针旋转90°","DE.Views.ShapeSettings.textHint90":"顺时针旋转90°","DE.Views.ShapeSettings.textHintFlipH":"水平翻转","DE.Views.ShapeSettings.textHintFlipV":"垂直翻转","DE.Views.ShapeSettings.textImageTexture":"图片或纹理","DE.Views.ShapeSettings.textLinear":"线性","DE.Views.ShapeSettings.textMoreColors":"更多颜色","DE.Views.ShapeSettings.textNoFill":"无填充","DE.Views.ShapeSettings.textNoShadow":"无阴影","DE.Views.ShapeSettings.textPatternFill":"图案","DE.Views.ShapeSettings.textPosition":"位置","DE.Views.ShapeSettings.textRadial":"径向","DE.Views.ShapeSettings.textRecentlyUsed":"最近使用的","DE.Views.ShapeSettings.textRotate90":"旋转90°","DE.Views.ShapeSettings.textRotation":"旋转","DE.Views.ShapeSettings.textSelectImage":"选择图片","DE.Views.ShapeSettings.textSelectTexture":"选择","DE.Views.ShapeSettings.textShadow":"阴影","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":"衬于文字下方","DE.Views.ShapeSettings.txtBrownPaper":"牛皮纸","DE.Views.ShapeSettings.txtCanvas":"画布","DE.Views.ShapeSettings.txtCarton":"纸箱","DE.Views.ShapeSettings.txtDarkFabric":"深色面料","DE.Views.ShapeSettings.txtGrain":"纹理","DE.Views.ShapeSettings.txtGranite":"花岗岩","DE.Views.ShapeSettings.txtGreyPaper":"灰纸","DE.Views.ShapeSettings.txtInFront":"浮于文字上方","DE.Views.ShapeSettings.txtInline":"嵌入型","DE.Views.ShapeSettings.txtKnit":"针织","DE.Views.ShapeSettings.txtLeather":"皮革","DE.Views.ShapeSettings.txtNoBorders":"无边框","DE.Views.ShapeSettings.txtOffsetBottom":"偏移:下","DE.Views.ShapeSettings.txtOffsetBottomLeft":"偏移:左下","DE.Views.ShapeSettings.txtOffsetBottomRight":"偏移:右下","DE.Views.ShapeSettings.txtOffsetCenter":"偏移:中心","DE.Views.ShapeSettings.txtOffsetLeft":"偏移:左","DE.Views.ShapeSettings.txtOffsetRight":"偏移:右","DE.Views.ShapeSettings.txtOffsetTop":"偏移:上","DE.Views.ShapeSettings.txtOffsetTopLeft":"偏移:左上","DE.Views.ShapeSettings.txtOffsetTopRight":"偏移:右上","DE.Views.ShapeSettings.txtPapyrus":"纸莎草","DE.Views.ShapeSettings.txtSquare":"四周型","DE.Views.ShapeSettings.txtThrough":"穿越型环绕","DE.Views.ShapeSettings.txtTight":"紧密型环绕","DE.Views.ShapeSettings.txtTopAndBottom":"上下型环绕","DE.Views.ShapeSettings.txtWood":"木頭","DE.Views.SignatureSettings.notcriticalErrorTitle":"警告","DE.Views.SignatureSettings.strDelete":"删除签名","DE.Views.SignatureSettings.strDetails":"签名详细信息","DE.Views.SignatureSettings.strInvalid":"无效签名","DE.Views.SignatureSettings.strRequested":"请求的签名","DE.Views.SignatureSettings.strSetup":"签名设置","DE.Views.SignatureSettings.strSign":"签署","DE.Views.SignatureSettings.strSignature":"签名","DE.Views.SignatureSettings.strSigner":"签名人","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.txtSignedForm":"此文档已签署,无法编辑。","DE.Views.SignatureSettings.txtSignedInvalid":"文件中的一些数字签名无效或无法验证。该文件受到保护,无法编辑。","DE.Views.Statusbar.goToPageText":"转到页面","DE.Views.Statusbar.pageIndexText":"第{0}页共{1}页","DE.Views.Statusbar.tipFitPage":"调整至页面大小","DE.Views.Statusbar.tipFitWidth":"调整至合适宽度","DE.Views.Statusbar.tipHandTool":"手动工具","DE.Views.Statusbar.tipMultiplePages":"多页","DE.Views.Statusbar.tipSelectTool":"选择工具","DE.Views.Statusbar.tipSetLang":"設定文字語言","DE.Views.Statusbar.tipZoomFactor":"縮放","DE.Views.Statusbar.tipZoomIn":"放大","DE.Views.Statusbar.tipZoomOut":"缩小","DE.Views.Statusbar.txtPageNumInvalid":"页码无效","DE.Views.Statusbar.txtPages":"页面","DE.Views.Statusbar.txtParagraphs":"段落","DE.Views.Statusbar.txtSpaces":"含空格的符号","DE.Views.Statusbar.txtSymbols":"符号","DE.Views.Statusbar.txtWordCount":"字数统计","DE.Views.Statusbar.txtWords":"单词","DE.Views.StyleTitleDialog.textHeader":"新建样式","DE.Views.StyleTitleDialog.textNextStyle":"下一段样式","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.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":"删除列","DE.Views.TableSettings.deleteRowText":"删除行","DE.Views.TableSettings.deleteTableText":"删除表格","DE.Views.TableSettings.insertColumnLeftText":"向左插入列","DE.Views.TableSettings.insertColumnRightText":"向右插入列","DE.Views.TableSettings.insertRowAboveText":"在上方插入行","DE.Views.TableSettings.insertRowBelowText":"在下方插入行","DE.Views.TableSettings.mergeCellsText":"合并单元格","DE.Views.TableSettings.selectCellText":"选择单元格","DE.Views.TableSettings.selectColumnText":"选择列","DE.Views.TableSettings.selectRowText":"选择行","DE.Views.TableSettings.selectTableText":"选择表格","DE.Views.TableSettings.splitCellsText":"拆分单元格","DE.Views.TableSettings.splitCellTitleText":"拆分单元格","DE.Views.TableSettings.strRepeatRow":"在每页顶部重复标题行","DE.Views.TableSettings.textAddFormula":"添加公式","DE.Views.TableSettings.textAdvanced":"显示高级设置","DE.Views.TableSettings.textAutofit":"根据内容自动调整大小","DE.Views.TableSettings.textBackColor":"背景颜色","DE.Views.TableSettings.textBanded":"镶边","DE.Views.TableSettings.textBorderColor":"颜色","DE.Views.TableSettings.textBorders":"边框样式","DE.Views.TableSettings.textCellSize":"行和列的大小","DE.Views.TableSettings.textColumns":"列","DE.Views.TableSettings.textConvert":"把表格转换为文本","DE.Views.TableSettings.textDistributeCols":"分布列","DE.Views.TableSettings.textDistributeRows":"分布行","DE.Views.TableSettings.textEdit":"行和列","DE.Views.TableSettings.textEmptyTemplate":"没有模板","DE.Views.TableSettings.textFirst":"第一","DE.Views.TableSettings.textHeader":"标题","DE.Views.TableSettings.textHeight":"高度","DE.Views.TableSettings.textLast":"最后","DE.Views.TableSettings.textRows":"行","DE.Views.TableSettings.textSelectBorders":"选择您要更改应用样式的边框","DE.Views.TableSettings.textTemplate":"从模板中选择","DE.Views.TableSettings.textTotal":"汇总","DE.Views.TableSettings.textWidth":"宽度","DE.Views.TableSettings.tipAll":"设置外边框和所有内框线","DE.Views.TableSettings.tipBottom":"仅设置外底边框","DE.Views.TableSettings.tipInner":"仅设定内部框线","DE.Views.TableSettings.tipInnerHor":"仅设置水平内框线","DE.Views.TableSettings.tipInnerVert":"仅设置垂直内线","DE.Views.TableSettings.tipLeft":"仅设置外部左边框","DE.Views.TableSettings.tipNone":"设置无边框","DE.Views.TableSettings.tipOuter":"仅设定外部边框","DE.Views.TableSettings.tipRight":"仅设置右外边框","DE.Views.TableSettings.tipTop":"仅设定外部顶框线","DE.Views.TableSettings.txtGroupTable_BorderedAndLined":"带边框和线条的表格","DE.Views.TableSettings.txtGroupTable_Custom":"自定义","DE.Views.TableSettings.txtGroupTable_Grid":"网格表","DE.Views.TableSettings.txtGroupTable_List":"列表表格","DE.Views.TableSettings.txtGroupTable_Plain":"普通表格","DE.Views.TableSettings.txtNoBorders":"无边框","DE.Views.TableSettings.txtTable_Accent":"重点色","DE.Views.TableSettings.txtTable_Bordered":"有边框的","DE.Views.TableSettings.txtTable_BorderedAndLined":"带边框和线条","DE.Views.TableSettings.txtTable_Colorful":"多彩的","DE.Views.TableSettings.txtTable_Dark":"深色","DE.Views.TableSettings.txtTable_GridTable":"网格表","DE.Views.TableSettings.txtTable_Light":"浅色","DE.Views.TableSettings.txtTable_Lined":"有格线的","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.textAltTitle":"标题","DE.Views.TableSettingsAdvanced.textAnchorText":"文本","DE.Views.TableSettingsAdvanced.textAutofit":"自动调整大小以适应内容","DE.Views.TableSettingsAdvanced.textBackColor":"单元格背景","DE.Views.TableSettingsAdvanced.textBelow":"下面","DE.Views.TableSettingsAdvanced.textBorderColor":"边框颜色","DE.Views.TableSettingsAdvanced.textBorderDesc":"点击图表或使用按钮选择边框,并将选择的样式应用于它们","DE.Views.TableSettingsAdvanced.textBordersBackgroung":"边框与背景","DE.Views.TableSettingsAdvanced.textBorderWidth":"边框大小","DE.Views.TableSettingsAdvanced.textBottom":"底部","DE.Views.TableSettingsAdvanced.textCellOptions":"单元格选项","DE.Views.TableSettingsAdvanced.textCellProps":"单元格","DE.Views.TableSettingsAdvanced.textCellSize":"单元格大小","DE.Views.TableSettingsAdvanced.textCenter":"中心","DE.Views.TableSettingsAdvanced.textCenterTooltip":"中心","DE.Views.TableSettingsAdvanced.textCheckMargins":"使用默认页边距","DE.Views.TableSettingsAdvanced.textDefaultMargins":"默认的单元格边距","DE.Views.TableSettingsAdvanced.textDistance":"与文本的间距","DE.Views.TableSettingsAdvanced.textHorizontal":"水平的","DE.Views.TableSettingsAdvanced.textIndLeft":"从左缩进","DE.Views.TableSettingsAdvanced.textLeft":"左","DE.Views.TableSettingsAdvanced.textLeftTooltip":"左","DE.Views.TableSettingsAdvanced.textMargin":"边距","DE.Views.TableSettingsAdvanced.textMargins":"单元格边距","DE.Views.TableSettingsAdvanced.textMeasure":"测量","DE.Views.TableSettingsAdvanced.textMove":"移动带文本的对象","DE.Views.TableSettingsAdvanced.textOnlyCells":"仅适用于选定的单元格","DE.Views.TableSettingsAdvanced.textOptions":"选项","DE.Views.TableSettingsAdvanced.textOverlap":"允许重叠","DE.Views.TableSettingsAdvanced.textPage":"页面","DE.Views.TableSettingsAdvanced.textPosition":"位置","DE.Views.TableSettingsAdvanced.textPrefWidth":"首选宽度","DE.Views.TableSettingsAdvanced.textPreview":"预览","DE.Views.TableSettingsAdvanced.textRelative":"相对于","DE.Views.TableSettingsAdvanced.textRight":"右","DE.Views.TableSettingsAdvanced.textRightOf":"在 - 的右边","DE.Views.TableSettingsAdvanced.textRightTooltip":"右","DE.Views.TableSettingsAdvanced.textTable":"表格","DE.Views.TableSettingsAdvanced.textTableBackColor":"表格背景","DE.Views.TableSettingsAdvanced.textTablePosition":"表格位置","DE.Views.TableSettingsAdvanced.textTableSize":"表格大小","DE.Views.TableSettingsAdvanced.textTitle":"表格-高级设置","DE.Views.TableSettingsAdvanced.textTop":"顶部","DE.Views.TableSettingsAdvanced.textVertical":"垂直","DE.Views.TableSettingsAdvanced.textWidth":"宽度","DE.Views.TableSettingsAdvanced.textWidthSpaces":"宽度和间距","DE.Views.TableSettingsAdvanced.textWrap":"文本环绕","DE.Views.TableSettingsAdvanced.textWrapNoneTooltip":"内联表","DE.Views.TableSettingsAdvanced.textWrapParallelTooltip":"流程表","DE.Views.TableSettingsAdvanced.textWrappingStyle":"环绕方式","DE.Views.TableSettingsAdvanced.textWrapText":"文字换行","DE.Views.TableSettingsAdvanced.tipAll":"设置外边框和所有内框线","DE.Views.TableSettingsAdvanced.tipCellAll":"仅为内部单元设置边框","DE.Views.TableSettingsAdvanced.tipCellInner":"设置内部单元格的垂直和水平线","DE.Views.TableSettingsAdvanced.tipCellOuter":"仅为内部单元格设定外边框","DE.Views.TableSettingsAdvanced.tipInner":"仅设定内部框线","DE.Views.TableSettingsAdvanced.tipNone":"设置无边框","DE.Views.TableSettingsAdvanced.tipOuter":"仅设定外部边框","DE.Views.TableSettingsAdvanced.tipTableOuterCellAll":"设置所有内部单元格的外部边框和边框","DE.Views.TableSettingsAdvanced.tipTableOuterCellInner":"设置内部单元格的外部边界以及垂直线和水平线","DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter":"设定表格的外框和内部储存单元格的外框","DE.Views.TableSettingsAdvanced.txtCm":"厘米","DE.Views.TableSettingsAdvanced.txtInch":"英寸","DE.Views.TableSettingsAdvanced.txtNoBorders":"无边框","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.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.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":"无边框","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.capBtnHand":"手","DE.Views.Toolbar.capBtnHyphenation":"连字符","DE.Views.Toolbar.capBtnInsChart":"图表","DE.Views.Toolbar.capBtnInsControls":"内容控件","DE.Views.Toolbar.capBtnInsDropcap":"首字大写","DE.Views.Toolbar.capBtnInsEquation":"方程式","DE.Views.Toolbar.capBtnInsHeader":"页眉和页脚","DE.Views.Toolbar.capBtnInsPagebreak":"换行符","DE.Views.Toolbar.capBtnInsShape":"形状","DE.Views.Toolbar.capBtnInsSmartArt":"智能图形","DE.Views.Toolbar.capBtnInsSymbol":"符号","DE.Views.Toolbar.capBtnInsTable":"表格","DE.Views.Toolbar.capBtnInsTextart":"艺术字","DE.Views.Toolbar.capBtnInsTextbox":"文本框","DE.Views.Toolbar.capBtnInsTextFromFile":"来自文件的文本","DE.Views.Toolbar.capBtnLineNumbers":"行号","DE.Views.Toolbar.capBtnMargins":"边距","DE.Views.Toolbar.capBtnPageColor":"页面颜色","DE.Views.Toolbar.capBtnPageOrient":"方向","DE.Views.Toolbar.capBtnPageSize":"大小","DE.Views.Toolbar.capBtnSelect":"选择","DE.Views.Toolbar.capBtnWatermark":"水印","DE.Views.Toolbar.capColorScheme":"配色方案","DE.Views.Toolbar.capImgAlign":"对齐","DE.Views.Toolbar.capImgBackward":"下移一层","DE.Views.Toolbar.capImgForward":"向前移动","DE.Views.Toolbar.capImgGroup":"组","DE.Views.Toolbar.capImgWrapping":"环绕","DE.Views.Toolbar.capShapesMerge":"合并形状","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.mniInsertSSE":"插入电子表格","DE.Views.Toolbar.mniLowerCase":"小写","DE.Views.Toolbar.mniRemoveFooter":"删除页脚","DE.Views.Toolbar.mniRemoveHeader":"移除页眉","DE.Views.Toolbar.mniSentenceCase":"句首字母大写","DE.Views.Toolbar.mniTextFromLocalFile":"来自本地文件的文本","DE.Views.Toolbar.mniTextFromStorage":"来自储存文件的文本","DE.Views.Toolbar.mniTextFromURL":"来自URL文件的文本","DE.Views.Toolbar.mniTextToTable":"把文本转换为表格","DE.Views.Toolbar.mniToggleCase":"大小写转换","DE.Views.Toolbar.mniUpperCase":"大写","DE.Views.Toolbar.strMenuNoFill":"无填充","DE.Views.Toolbar.textAddSpaceAfter":"增加段落后的空格","DE.Views.Toolbar.textAddSpaceBefore":"增加段落前的空格","DE.Views.Toolbar.textAllBorders":"所有边框","DE.Views.Toolbar.textAlpha":"希腊文小字母阿尔法","DE.Views.Toolbar.textAuto":"自动","DE.Views.Toolbar.textAutoColor":"自动","DE.Views.Toolbar.textBetta":"希腊文小字母贝塔","DE.Views.Toolbar.textBlackHeart":"黑心","DE.Views.Toolbar.textBold":"粗体","DE.Views.Toolbar.textBordersColor":"边框颜色","DE.Views.Toolbar.textBordersStyle":"边框样式","DE.Views.Toolbar.textBottom":"底部:","DE.Views.Toolbar.textBottomBorders":"底部边框","DE.Views.Toolbar.textBullet":"项目符号","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":"三","DE.Views.Toolbar.textColumnsTwo":"二","DE.Views.Toolbar.textComboboxControl":"下拉式方框","DE.Views.Toolbar.textContinuous":"连续","DE.Views.Toolbar.textContPage":"连续页","DE.Views.Toolbar.textCopyright":"版权符号","DE.Views.Toolbar.textCustomHyphen":"连字符选项","DE.Views.Toolbar.textCustomLineNumbers":"行编号选项","DE.Views.Toolbar.textDateControl":"选择日期","DE.Views.Toolbar.textDegree":"度数符号","DE.Views.Toolbar.textDelta":"希腊文小字母得尔塔","DE.Views.Toolbar.textDirLtr":"从左到右","DE.Views.Toolbar.textDirRtl":"从右到左","DE.Views.Toolbar.textDivision":"除号","DE.Views.Toolbar.textDollar":"美元符号","DE.Views.Toolbar.textDropdownControl":"下拉列表","DE.Views.Toolbar.textEditMode":"编辑PDF","DE.Views.Toolbar.textEditWatermark":"自定义水印","DE.Views.Toolbar.textEuro":"欧元符号","DE.Views.Toolbar.textEvenPage":"偶数页","DE.Views.Toolbar.textGreaterEqual":"大于或等于","DE.Views.Toolbar.textIndAfter":"段后缩进","DE.Views.Toolbar.textIndBefore":"段前缩进","DE.Views.Toolbar.textIndLeft":"左缩进","DE.Views.Toolbar.textIndRight":"右缩进","DE.Views.Toolbar.textInfinity":"无限","DE.Views.Toolbar.textInMargin":"在页边距","DE.Views.Toolbar.textInsColumnBreak":"插入分栏符","DE.Views.Toolbar.textInsertPageCount":"插入页数","DE.Views.Toolbar.textInsertPageNumber":"插入页码","DE.Views.Toolbar.textInsideBorders":"内部边框","DE.Views.Toolbar.textInsideHorBorders":"内部横向边框","DE.Views.Toolbar.textInsideVertBorders":"内部纵向边框","DE.Views.Toolbar.textInsPageBreak":"插入分页符","DE.Views.Toolbar.textInsSectionBreak":"插入分节符","DE.Views.Toolbar.textInText":"在文本中","DE.Views.Toolbar.textItalic":"斜体","DE.Views.Toolbar.textLandscape":"橫向","DE.Views.Toolbar.textLeft":"左:","DE.Views.Toolbar.textLeftBorders":"左边框","DE.Views.Toolbar.textLessEqual":"小于或等于","DE.Views.Toolbar.textLetterPi":"希腊文小字母 Pi","DE.Views.Toolbar.textLineSpaceOptions":"行距参数","DE.Views.Toolbar.textListSettings":"列表设置","DE.Views.Toolbar.textMarginsLast":"最后一次自定义","DE.Views.Toolbar.textMarginsModerate":"中等","DE.Views.Toolbar.textMarginsNarrow":"窄","DE.Views.Toolbar.textMarginsNormal":"常规","DE.Views.Toolbar.textMarginsWide":"宽","DE.Views.Toolbar.textMoreSymbols":"更多符号","DE.Views.Toolbar.textNewColor":"更多顏色","DE.Views.Toolbar.textNextPage":"下一页","DE.Views.Toolbar.textNoBorders":"无边框","DE.Views.Toolbar.textNoHighlight":"无高亮","DE.Views.Toolbar.textNone":"无","DE.Views.Toolbar.textNotEqualTo":"不等于","DE.Views.Toolbar.textOddPage":"奇数页","DE.Views.Toolbar.textOneHalf":"普通分数一半","DE.Views.Toolbar.textOneQuarter":"普通分数四分之一","DE.Views.Toolbar.textOutBorders":"外部边框","DE.Views.Toolbar.textPageMarginsCustom":"自定义边距","DE.Views.Toolbar.textPageSizeCustom":"自定义页面大小","DE.Views.Toolbar.textPictureControl":"图片","DE.Views.Toolbar.textPlainControl":"纯文本","DE.Views.Toolbar.textPlusMinus":"正负号","DE.Views.Toolbar.textPortrait":"纵向","DE.Views.Toolbar.textRegistered":"注册标志","DE.Views.Toolbar.textRemoveControl":"删除内容控件","DE.Views.Toolbar.textRemSpaceAfter":"删除段落后的空格","DE.Views.Toolbar.textRemSpaceBefore":"删除段落前的空格","DE.Views.Toolbar.textRemWatermark":"删除水印","DE.Views.Toolbar.textRestartEachPage":"每页重编行号","DE.Views.Toolbar.textRestartEachSection":"每节重编行号","DE.Views.Toolbar.textRichControl":"富文本","DE.Views.Toolbar.textRight":"右: ","DE.Views.Toolbar.textRightBorders":"右边框","DE.Views.Toolbar.textSection":"章节标志","DE.Views.Toolbar.textShapesCombine":"组合","DE.Views.Toolbar.textShapesFragment":"拆分","DE.Views.Toolbar.textShapesIntersect":"相交","DE.Views.Toolbar.textShapesSubstract":"剪除","DE.Views.Toolbar.textShapesUnion":"结合","DE.Views.Toolbar.textSmile":"白色笑脸","DE.Views.Toolbar.textSpaceAfter":"段后间距","DE.Views.Toolbar.textSpaceBefore":"段前间距","DE.Views.Toolbar.textSquareRoot":"平方根","DE.Views.Toolbar.textStrikeout":"删除线","DE.Views.Toolbar.textStyleMenuDelete":"删除样式","DE.Views.Toolbar.textStyleMenuDeleteAll":"删除所有自定义样式","DE.Views.Toolbar.textStyleMenuNew":"所选内容中的新样式","DE.Views.Toolbar.textStyleMenuRestore":"恢复为默认","DE.Views.Toolbar.textStyleMenuRestoreAll":"全部恢复为默认样式","DE.Views.Toolbar.textStyleMenuUpdate":"从选择更新","DE.Views.Toolbar.textSubscript":"下标","DE.Views.Toolbar.textSuperscript":"上标","DE.Views.Toolbar.textSuppressForCurrentParagraph":"取消用于当前段落","DE.Views.Toolbar.textTabCollaboration":"协作","DE.Views.Toolbar.textTabDraw":"绘图","DE.Views.Toolbar.textTabFile":"文件","DE.Views.Toolbar.textTabHeaderFooter":"页眉和页脚","DE.Views.Toolbar.textTabHome":"开始","DE.Views.Toolbar.textTabInsert":"插入","DE.Views.Toolbar.textTabLayout":"布局","DE.Views.Toolbar.textTabLinks":"引用","DE.Views.Toolbar.textTabProtect":"保护","DE.Views.Toolbar.textTabReview":"审阅","DE.Views.Toolbar.textTabView":"视图","DE.Views.Toolbar.textTilde":"波浪号","DE.Views.Toolbar.textTitleError":"错误","DE.Views.Toolbar.textToCurrent":"到当前位置","DE.Views.Toolbar.textTop":"上: ","DE.Views.Toolbar.textTopBorders":"顶部边框","DE.Views.Toolbar.textTradeMark":"商标标志","DE.Views.Toolbar.textUnderline":"下划线","DE.Views.Toolbar.textYen":"日元符号","DE.Views.Toolbar.tipAlignCenter":"居中对齐","DE.Views.Toolbar.tipAlignJust":"两端对齐","DE.Views.Toolbar.tipAlignLeft":"左对齐","DE.Views.Toolbar.tipAlignRight":"右对齐","DE.Views.Toolbar.tipBack":"返回","DE.Views.Toolbar.tipBlankPage":"插入空白页","DE.Views.Toolbar.tipBorders":"边框","DE.Views.Toolbar.tipChangeCase":"更改大小写","DE.Views.Toolbar.tipChangeChart":"更改图表类型","DE.Views.Toolbar.tipClearStyle":"清除样式","DE.Views.Toolbar.tipColorSchemas":"更改配色方案","DE.Views.Toolbar.tipColumns":"插入列","DE.Views.Toolbar.tipControls":"插入內容控件","DE.Views.Toolbar.tipCopy":"复制","DE.Views.Toolbar.tipCopyStyle":"复制样式","DE.Views.Toolbar.tipCut":"剪切","DE.Views.Toolbar.tipDecFont":"减小字体大小","DE.Views.Toolbar.tipDecPrLeft":"减少缩进","DE.Views.Toolbar.tipDownload":"下载文件","DE.Views.Toolbar.tipDropCap":"插入首字下沉","DE.Views.Toolbar.tipEditMode":"编辑当前文件。
页面将重新加载。","DE.Views.Toolbar.tipFontColor":"字体颜色","DE.Views.Toolbar.tipFontName":"字体 ","DE.Views.Toolbar.tipFontSize":"字体大小","DE.Views.Toolbar.tipHandTool":"手动工具","DE.Views.Toolbar.tipHighlightColor":"高亮色","DE.Views.Toolbar.tipHyphenation":"更改连字符号","DE.Views.Toolbar.tipImgAlign":"对齐对象","DE.Views.Toolbar.tipImgGroup":"组对象","DE.Views.Toolbar.tipImgWrapping":"环绕文字","DE.Views.Toolbar.tipIncFont":"增加字体大小","DE.Views.Toolbar.tipIncPrLeft":"增加缩进","DE.Views.Toolbar.tipInsertChart":"插入图表","DE.Views.Toolbar.tipInsertEquation":"插入方程","DE.Views.Toolbar.tipInsertHorizontalText":"插入水平文本框","DE.Views.Toolbar.tipInsertNum":"插入页码","DE.Views.Toolbar.tipInsertShape":"插入形狀","DE.Views.Toolbar.tipInsertSmartArt":"插入智能图形","DE.Views.Toolbar.tipInsertSymbol":"插入符号","DE.Views.Toolbar.tipInsertTable":"插入表格","DE.Views.Toolbar.tipInsertText":"插入文本框","DE.Views.Toolbar.tipInsertTextArt":"插入艺术字","DE.Views.Toolbar.tipInsertVerticalText":"插入垂直文本框","DE.Views.Toolbar.tipLineNumbers":"显示行号","DE.Views.Toolbar.tipLineSpace":"段落行距","DE.Views.Toolbar.tipMailRecepients":"邮件合并","DE.Views.Toolbar.tipMarkers":"项目符号","DE.Views.Toolbar.tipMarkersArrow":"箭头项目符号","DE.Views.Toolbar.tipMarkersCheckmark":"复选标记项目符号","DE.Views.Toolbar.tipMarkersDash":"连字符项目符号","DE.Views.Toolbar.tipMarkersFRhombus":"实心菱形项目符号","DE.Views.Toolbar.tipMarkersFRound":"实心圆形项目符号","DE.Views.Toolbar.tipMarkersFSquare":"实心方形项目符号","DE.Views.Toolbar.tipMarkersHRound":"空心圆形项目符号","DE.Views.Toolbar.tipMarkersStar":"星形项目符号","DE.Views.Toolbar.tipMultiLevelArticl":"多级编号文章","DE.Views.Toolbar.tipMultiLevelChapter":"多级编号章节","DE.Views.Toolbar.tipMultiLevelHeadings":"多级编号标题","DE.Views.Toolbar.tipMultiLevelHeadVarious":"多级不同编号的标题","DE.Views.Toolbar.tipMultiLevelNumbered":"多级编号项目符号","DE.Views.Toolbar.tipMultilevels":"多级列表","DE.Views.Toolbar.tipMultiLevelSymbols":"多级项目符号","DE.Views.Toolbar.tipMultiLevelVarious":"多级各种编号","DE.Views.Toolbar.tipNumbers":"编号","DE.Views.Toolbar.tipPageBreak":"插入分页符或分节符","DE.Views.Toolbar.tipPageColor":"更改页面颜色","DE.Views.Toolbar.tipPageMargins":"页边距","DE.Views.Toolbar.tipPageOrient":"页面方向","DE.Views.Toolbar.tipPageSize":"页面大小","DE.Views.Toolbar.tipParagraphStyle":"段落样式","DE.Views.Toolbar.tipPaste":"粘贴","DE.Views.Toolbar.tipPrColor":"阴影","DE.Views.Toolbar.tipPrint":"打印","DE.Views.Toolbar.tipPrintQuick":"快速打印","DE.Views.Toolbar.tipRedo":"重做","DE.Views.Toolbar.tipReplace":"替换","DE.Views.Toolbar.tipSave":"保存","DE.Views.Toolbar.tipSaveCoauth":"保存您的更改以供其他用户查看","DE.Views.Toolbar.tipSelectAll":"全选","DE.Views.Toolbar.tipSelectTool":"选择工具","DE.Views.Toolbar.tipSendBackward":"下移一层","DE.Views.Toolbar.tipSendForward":"向前移动","DE.Views.Toolbar.tipShapesMerge":"合并形状","DE.Views.Toolbar.tipShowHiddenChars":"非打印字符","DE.Views.Toolbar.tipSynchronize":"该文档已被另一个用户更改。请点击保存更改并重新加载更新","DE.Views.Toolbar.tipTextDir":"文本方向","DE.Views.Toolbar.tipTextFromFile":"来自文件的文本","DE.Views.Toolbar.tipUndo":"撤消","DE.Views.Toolbar.tipWatermark":"编辑水印","DE.Views.Toolbar.txtAutoText":"自动","DE.Views.Toolbar.txtDistribHor":"水平分布","DE.Views.Toolbar.txtDistribVert":"垂直分布","DE.Views.Toolbar.txtGroupBulletDoc":"文档项目符号","DE.Views.Toolbar.txtGroupBulletLib":"项目符号库","DE.Views.Toolbar.txtGroupMultiDoc":"当前文档中的列表","DE.Views.Toolbar.txtGroupMultiLib":"列表库","DE.Views.Toolbar.txtGroupNumDoc":"文件编号格式","DE.Views.Toolbar.txtGroupNumLib":"编号库","DE.Views.Toolbar.txtGroupRecent":"最近使用的","DE.Views.Toolbar.txtMarginAlign":"与边距对齐","DE.Views.Toolbar.txtObjectsAlign":"对齐选定对象","DE.Views.Toolbar.txtPageAlign":"与页面对齐","DE.Views.ViewTab.textAlwaysShowToolbar":"始终显示工具栏","DE.Views.ViewTab.textDarkDocument":"深色模式文档","DE.Views.ViewTab.textFill":"填充","DE.Views.ViewTab.textFitToPage":"调整至页面大小","DE.Views.ViewTab.textFitToWidth":"调整至宽度大小","DE.Views.ViewTab.textInterfaceTheme":"界面主题","DE.Views.ViewTab.textLeftMenu":"左侧面板","DE.Views.ViewTab.textLine":"线","DE.Views.ViewTab.textMacros":"宏","DE.Views.ViewTab.textMultiplePages":"多页","DE.Views.ViewTab.textNavigation":"导航","DE.Views.ViewTab.textOutline":"标题","DE.Views.ViewTab.textPauseMacro":"暂停录制","DE.Views.ViewTab.textRecMacro":"录制宏","DE.Views.ViewTab.textResumeMacro":"恢复录制","DE.Views.ViewTab.textRightMenu":"右侧面板","DE.Views.ViewTab.textRulers":"标尺","DE.Views.ViewTab.textStatusBar":"状态栏","DE.Views.ViewTab.textStopMacro":"停止录制","DE.Views.ViewTab.textTabStyle":"选项卡样式","DE.Views.ViewTab.textZoom":"縮放","DE.Views.ViewTab.textZoom100":"放大至100%","DE.Views.ViewTab.tipDarkDocument":"深色模式文档","DE.Views.ViewTab.tipFitToPage":"调整至页面大小","DE.Views.ViewTab.tipFitToWidth":"调整至合适宽度","DE.Views.ViewTab.tipHeadings":"标题","DE.Views.ViewTab.tipInterfaceTheme":"界面主题","DE.Views.ViewTab.tipMacros":"宏","DE.Views.ViewTab.tipMultiplePages":"多页","DE.Views.ViewTab.tipPauseMacro":"暂停录制","DE.Views.ViewTab.tipRecMacro":"录制宏","DE.Views.ViewTab.tipResumeMacro":"恢复录制","DE.Views.ViewTab.tipStopMacro":"停止录制","DE.Views.ViewTab.tipZoom100":"放大至100%","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/public/web-apps/apps/pdfeditor/main/locale/de.json b/public/web-apps/apps/pdfeditor/main/locale/de.json index 396b8a925..01ad2c601 100644 --- a/public/web-apps/apps/pdfeditor/main/locale/de.json +++ b/public/web-apps/apps/pdfeditor/main/locale/de.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"Warnung","Common.Controllers.Desktop.hintBtnHome":"Hauptfenster anzeigen","Common.Controllers.Desktop.itemCreateFromTemplate":"Von Vorlage erstellen","Common.Controllers.ExternalLinks.textAddExternalData":"Der Link zu einer externen Quelle wurde hinzugefügt. Sie können solche Links auf der Registerkarte \"Daten\" aktualisieren.","Common.Controllers.ExternalLinks.textDontUpdate":"Nicht aktualisieren","Common.Controllers.ExternalLinks.textUpdate":"Aktualisieren","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Fehler: Aktualisierung fehlgeschlagen","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Diese Arbeitsmappe enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Dieses Dokument enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Diese Präsentation enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.History.notcriticalErrorTitle":"Achtung","Common.Controllers.History.txtErrorLoadHistory":"Laden der Historie ist fehlgeschlagen ","Common.Controllers.Plugins.helpMoveMacros":"Um mit Makros zu arbeiten, wechseln Sie auf die Registerkarte Ansicht.","Common.Controllers.Plugins.helpMoveMacrosHeader":"Die verschobene Schaltfläche \"Makros\"","Common.Controllers.Plugins.helpUseMacros":"Die Schaltfläche \"Makros\" finden Sie hier.","Common.Controllers.Plugins.helpUseMacrosHeader":"Geänderter Zugriff auf Makros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Die Plugins wurden erfolgreich installiert. Sie können hier auf alle Hintergrund-Plugins zugreifen.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} wurde erfolgreich installiert. Sie können hier auf alle Hintergrund-Plugins zugreifen.","Common.Controllers.Plugins.textRunInstalledPlugins":"Installierte Plugins starten","Common.Controllers.Plugins.textRunPlugin":"Plugin starten","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Eine neue Zeile unten in der Tabelle hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Den Stil der Überschrift 1 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Den Stil der Überschrift 2 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Den Stil der Überschrift 3 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Aus dem ausgewählten Textfragment eine ungeordnete Aufzählungsliste erstellen oder eine neue beginnen.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach unten zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach links zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach rechts zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach oben zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBold":"Die Schriftart des ausgewählten Textfragments fett machen, damit es schwerer erscheint.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Zwischen zentrierter und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Die nächste Kombinationsfeldoption im Formular wählen.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Die vorherige Kombinationsfeldoption im Formular wählen.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Das aktuelle PDF-Fenster schließen.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Ein Menü oder ein modales Fenster schließen. Popups und Sprechblasen mit Kommentaren zurücksetzen und Änderungen überprüfen. Den Zeichen- und Löschmodus für Tabellen zurücksetzen. Drag-and-Drop für Text zurücksetzen. Den Markierungsauswahlmodus zurücksetzen. Den Formatübertragermodus zurücksetzen. Die Auswahl von Formen aufheben. Den Modus zum Hinzufügen von Formen zurücksetzen. Die Kopf-/Fußzeile verlassen. Das Ausfüllen von Formularen beenden.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Den ausgewählten Textabschnitt in die Zwischenablage des Computers senden. Der kopierte Text kann später an anderer Stelle im selben Dokument, in einem anderen Dokument oder in einem anderen Programm eingefügt werden.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Die Formatierung aus dem ausgewählten Fragment des aktuell bearbeiteten Textes kopieren. Die kopierte Formatierung kann später auf ein anderes Textfragment im selben Dokument angewendet werden.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Ein Copyright-Symbol rechts neben dem Cursor einfügen.","Common.Controllers.Shortcuts.txtDescriptionCut":"Den ausgewählten Textabschnitt löschen und ihn in der Zwischenablage des Computers speichern. Der kopierte Text kann später an anderer Stelle im selben Dokument, in einem anderen Dokument oder in einem anderen Programm eingefügt werden.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Die Schriftgröße für das ausgewählte Textfragment um 1 Punkt verringern.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Ein Zeichen links vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Ein Wort/eine Auswahl/ein grafisches Objekt links vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Ein Zeichen rechts vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Ein Wort/eine Auswahl/ein grafisches Objekt rechts vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Wenn der Diagrammtitel ausgewählt ist und der Titel leer ist, bewegen Sie den Cursor an den Anfang der Zeile, andernfalls wählen Sie den Text aus.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Die letzte rückgängig gemachte Aktion wiederholen.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Den gesamten Text im PDF auswählen.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Wenn die Form ausgewählt ist und keinen Inhalt enthält, erstellen Sie Inhalt und bewegen Sie den Cursor an den Anfang der Zeile. Wenn der Inhalt leer ist, bewegen Sie den Cursor dorthin. Andernfalls wählen Sie den gesamten Inhalt aus.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Die zuletzt ausgeführte Aktion rückgängig machen.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Rechts vom Cursor einen Geviertstrich einfügen.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Rechts vom Cursor einen Halbgeviertstrich einfügen.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Den aktuellen Absatz und beginnen Sie einen neuen beenden.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Einen neuen Absatz innerhalb einer Zelle beginnen.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Dem Gleichungsargument einen neuen Platzhalter hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Die Ausrichtungsebene des Operators nach links ändern (für die zweite Zeile der Gleichung mit einem erzwungenen Umbruch).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Die Ausrichtungsebene des Operators nach rechts ändern (für die zweite Zeile der Gleichung mit einem erzwungenen Umbruch).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Das Eurozeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Das Auslassungszeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Die Schriftgröße für das ausgewählte Textfragment um 1 Punkt erhöhen.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Einen Absatz von links schrittweise einrücken.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Einen Spaltenumbruch hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Eine Endnote einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"An der aktuellen Cursorposition eine Gleichung einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Eine Fußnote einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Fügen Sie einen Link ein, der zu einer Webadresse führt.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Einen Zeilenumbruch hinzufügen, ohne einen neuen Absatz zu beginnen.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Im mehrzeiligen Formular einen Zeilenumbruch hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"An der aktuellen Cursorposition einen Seitenumbruch einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Die aktuelle Seitenzahl an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Einem Absatz das Tabulatorzeichen hinzufügen (wenn sich der Cursor nicht am Anfang eines Absatzes befindet).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Einen Tabellenumbruch innerhalb der Tabelle einfügen.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Die Schriftart des ausgewählten Textfragments kursiv und leicht schräg machen.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Zwischen Blocksatz und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Einen Absatz linksbündig ausrichten.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach unten zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach links zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach rechts zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach oben zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Den Einzug für die ausgewählten Absätze vergrößern.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Den Einzug für die ausgewählten Absätze verkleinern.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Den Fokus auf das nächste Objekt nach dem aktuell ausgewählten verschieben.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Den Fokus auf das vorherige Objekt vor dem aktuell ausgewählten verschieben.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Den Cursor eine Zeile nach unten bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Den Cursor ganz an das Ende der aktuell bearbeiteten PDF-Datei setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Den Cursor an das Ende der aktuell bearbeiteten Zeile setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Den Cursor ein Wort nach rechts bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Den Cursor ein Zeichen nach links bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Zur unteren Kopfzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Zur unteren Kopf-/Fußzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Zur nächsten Zelle in einer Tabellenzeile gehen.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Zum nächsten Formular wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Zur nächsten Seite im aktuell bearbeiteten PDF wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Zur nächsten Zeile in einer Tabelle wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Zur vorherigen Zelle in einer Tabellenzeile wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Zum vorherigen Formular wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Zur vorherigen Seite im aktuell bearbeiteten PDF wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Zur vorherigen Zeile in einer Tabelle wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Den Cursor um ein Zeichen nach rechts bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Zum Anfang der aktuell bearbeiteten PDF-Datei springen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Den Cursor an den Anfang der aktuell bearbeiteten Zeile setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Den Cursor ganz an den Anfang der Seite setzen, die auf die aktuell bearbeitete Seite folgt.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Den Cursor ganz an den Anfang der Seite setzen, die der aktuell bearbeiteten Seite vorausgeht.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Den Cursor an den Anfang eines Wortes oder ein Wort nach links bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Den Cursor eine Zeile nach oben bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Zur oberen Kopfzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Zur oberen Kopf-/Fußzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"In Desktop-Editoren zur nächsten Dateiregisterkarte oder in Online-Editoren zur nächsten Browserregisterkarte wechseln.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Zwischen Steuerelementen navigieren, um in modalen Dialogen den Fokus auf das nächste Steuerelement zu legen.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Einen Bindestrich zwischen Zeichen erstellen, der nicht zum Beginnen einer neuen Zeile verwendet werden kann.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Ein Leerzeichen zwischen Zeichen erstellen, das nicht zum Beginnen einer neuen Zeile verwendet werden kann.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Das Chat-Panel in den Online-Editoren öffnen und eine Nachricht senden.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Ein Dateneingabefeld öffnen, in das man den Text des Kommentars eingeben kann.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Das Kommentarfeld öffnen, um Ihren eigenen Kommentar hinzuzufügen oder auf die Kommentare anderer Benutzer zu antworten.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Das Kontextmenü des ausgewählten Elements öffnen.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Das Standarddialogfeld zur Auswahl einer vorhandenen Datei öffnen. Wenn Sie die Datei in diesem Dialogfeld auswählen und auf „Öffnen“ klicken, wird die Datei in einem neuen Tab oder Fenster von Desktop Editors geöffnet.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Das Dateifenster öffnen, um die aktuelle PDF-Datei zu speichern, herunterzuladen, zu drucken, ihre Informationen anzuzeigen, ein neues Dokument zu erstellen oder eine vorhandene PDF-Datei zu öffnen, auf das Hilfecenter des PDF-Editors oder auf erweiterte Einstellungen zuzugreifen.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Das Menü „Suchen und Ersetzen“ mit dem Ersetzungsfeld öffnen, um ein oder mehrere Vorkommen der gefundenen Zeichen zu ersetzen.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Das Dialogfenster „Suchen“ öffnen, um mit der Suche nach einem Zeichen/Wort/einer Phrase in der aktuell bearbeiteten PDF-Datei zu beginnen.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Das Hilfemenü des PDF-Editors öffnen.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Den zuvor kopierten Text aus der Zwischenablage des Computers an der aktuellen Cursorposition einfügen. Der Text kann zuvor aus demselben Dokument, einem anderen Dokument oder einem anderen Programm kopiert worden sein.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Die zuvor kopierte Formatierung auf den Text im aktuell bearbeiteten PDF anwenden.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Den zuvor kopierten Text aus der Zwischenablage des Computers an der aktuellen Cursorposition einfügen, ohne die ursprüngliche Formatierung beizubehalten. Der Text kann zuvor aus demselben Dokument, einem anderen Dokument oder einem anderen Programm kopiert worden sein.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"In Desktop-Editoren zur vorherigen Dateiregisterkarte oder in Online-Editoren zur vorherigen Browserregisterkarte wechseln.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Zwischen Steuerelementen navigieren, um in modalen Dialogen den Fokus auf das vorherige Steuerelement zu legen.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"PDF mit einem der verfügbaren Drucker ausdrucken oder es als Datei speichern.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Das eingetragene Markenzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Den ausgewählten Unicode-Code durch ein Symbol ersetzen.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Die Formatierung des ausgewählten Textfragments löschen.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Zwischen rechts- und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionSave":"Alle Änderungen an der aktuell mit dem PDF-Editor bearbeiteten PDF-Datei speichern. Die aktive Datei wird mit dem aktuellen Dateinamen, Speicherort und Dateiformat gespeichert.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Das Fenster „Herunterladen als...“ öffnen, um die aktuell bearbeitete PDF-Datei in einem der unterstützten Formate auf der Festplatte Ihres Computers zu speichern.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Im PDF etwa eine sichtbare Seite nach unten scrollen.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Im PDF etwa eine sichtbare Seite nach oben scrollen.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Ein Zeichen links von der Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Ein Textfragment vom Cursor bis zum Anfang eines Wortes auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Den Cursor eine Zeile nach unten bewegen und alle Symbole zwischen der vorherigen und der aktuellen Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Den Cursor eine Zeile nach oben bewegen und alle Symbole zwischen der vorherigen und der aktuellen Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Den Seitenteil von der Cursorposition bis zum unteren Teil des Bildschirms auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Den Seitenteil von der Cursorposition bis zum oberen Teil des Bildschirms auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Ein Zeichen rechts von der Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Ein Textfragment vom Cursor bis zum Ende eines Wortes auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Ein Textfragment vom Cursor bis zum Anfang der nächsten Seite auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Ein Textfragment vom Cursor bis zum Anfang der vorherigen Seite auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Ein Textfragment vom Cursor bis zum Ende der PDF-Datei auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Ein Textfragment vom Cursor bis zum Ende der aktuellen Zeile auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Ein Textfragment vom Cursor bis zum Anfang des PDFs auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Ein Textfragment vom Cursor bis zum Anfang der aktuellen Zeile auswählen.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Die Anzeige nicht druckbarer Zeichen ein- oder ausblenden.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Das bedingte Trennzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Die Quellformatierung des kopierten Textes beibehalten.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Den Text ohne seine ursprüngliche Formatierung einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Die kopierte Tabelle als verschachtelte Tabelle in die ausgewählte Zelle der vorhandenen Tabelle einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Den Inhalt der vorhandenen Tabelle durch die kopierten Daten ersetzen.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Aktiviert/deaktiviert die Übertragung von in der Anwendung ausgeführten Aktionen für Bildschirmleseprogramme.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Die Listen-/Einzugsebene erhöhen (mit dem Cursor am Anfang eines Absatzes).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Die Listen-/Einzugsebene verkleinern (mit dem Cursor am Anfang eines Absatzes).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Das ausgewählte Textfragment mit einer Linie durchstreichen, die durch die Buchstaben verläuft.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Das ausgewählte Textfragment verkleinern und es im unteren Teil der Textzeile platzieren, z.B. wie bei chemischen Formeln.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Das ausgewählte Textfragment verkleinern und es im oberen Teil der Textzeile platzieren, z.B. wie bei Brüchen.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Das Markenzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Das ausgewählte Textfragment mit einer Linie unterhalb der Buchstaben unterstreichen.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Schrittweise einen Absatzeinzug von links entfernen.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Felder aktualisieren (z. B. Inhaltsverzeichnis).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Klicken Sie auf einen Link (wobei sich der Cursor im Link befindet).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Den Zoom-Parameter der aktuellen PDF-Datei auf den Standardwert von 100% zurücksetzen.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Das aktuell bearbeitete PDF vergrößern.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Die aktuell bearbeitete PDF-Datei verkleinern.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Fläche","Common.define.chartData.textAreaStacked":"Gestapelte Fläche","Common.define.chartData.textAreaStackedPer":"100% Gestapelte Fläche","Common.define.chartData.textBar":"Balken","Common.define.chartData.textBarNormal":"Gruppierte Spalte","Common.define.chartData.textBarNormal3d":"Gruppierte 3D-Spalte","Common.define.chartData.textBarNormal3dPerspective":"3D-Spalte","Common.define.chartData.textBarStacked":"Gestapelte Spalte","Common.define.chartData.textBarStacked3d":"Gestapelte 3D-Spalte","Common.define.chartData.textBarStackedPer":"100% Gestapelte Spalte","Common.define.chartData.textBarStackedPer3d":"3D 100% Gestapelte Säule","Common.define.chartData.textCharts":"Diagramme","Common.define.chartData.textColumn":"Spalte","Common.define.chartData.textCombo":"Verbund","Common.define.chartData.textComboAreaBar":"Gestapelter Bereich – gruppierte Spalte","Common.define.chartData.textComboBarLine":"Gruppierte Spalte - Linie","Common.define.chartData.textComboBarLineSecondary":"Gruppierte Spalte/Linie auf der Sekundärachse","Common.define.chartData.textComboCustom":"Benutzerdefinierte Kombination","Common.define.chartData.textDoughnut":"Ring","Common.define.chartData.textHBarNormal":"Gruppierte Balken","Common.define.chartData.textHBarNormal3d":"Gruppierte 3D-Balken","Common.define.chartData.textHBarStacked":"Gestapelte Balken","Common.define.chartData.textHBarStacked3d":"Gestapelte 3D-Balken","Common.define.chartData.textHBarStackedPer":"100% Gestapelte Balken","Common.define.chartData.textHBarStackedPer3d":"3D 100% Gestapelte Balken","Common.define.chartData.textLine":"Linie","Common.define.chartData.textLine3d":"3D-Linie","Common.define.chartData.textLineMarker":"Linie mit Datenpunkten","Common.define.chartData.textLineStacked":"Gestapelte Linie","Common.define.chartData.textLineStackedMarker":"Gestapelte Linie mit Markierungen","Common.define.chartData.textLineStackedPer":"100% Gestapelte Linie","Common.define.chartData.textLineStackedPerMarker":"100% Gestapelte Linie mit Datenpunkten","Common.define.chartData.textPie":"Kreisdiagramm","Common.define.chartData.textPie3d":"3D-Kuchendiagramm","Common.define.chartData.textPoint":"Punkt (XY)","Common.define.chartData.textRadar":"Radar","Common.define.chartData.textRadarFilled":"Gefülltes Radardiagramm","Common.define.chartData.textRadarMarker":"Radar mit Markierungen","Common.define.chartData.textScatter":"Punkte","Common.define.chartData.textScatterLine":"Punkte mit geraden Linien","Common.define.chartData.textScatterLineMarker":"Punkte mit geraden Linien und Markierungen","Common.define.chartData.textScatterSmooth":"Punkte mit interpolierten Linien","Common.define.chartData.textScatterSmoothMarker":"Punkte mit interpolierten Linien und Markierungen","Common.define.chartData.textStock":"Bestand","Common.define.chartData.textSurface":"Oberfläche","Common.define.smartArt.textAccentedPicture":"Akzentbild","Common.define.smartArt.textAccentProcess":"Akzentprozess","Common.define.smartArt.textAlternatingFlow":"Alternierender Fluss","Common.define.smartArt.textAlternatingHexagons":"Alternierende Sechsecke","Common.define.smartArt.textAlternatingPictureBlocks":"Alternierende Bildblöcke","Common.define.smartArt.textAlternatingPictureCircles":"Alternierende Bildblöcke","Common.define.smartArt.textArchitectureLayout":"Architekturlayout","Common.define.smartArt.textArrowRibbon":"Pfeilband","Common.define.smartArt.textAscendingPictureAccentProcess":"Aufsteigender Bildakzentprozess","Common.define.smartArt.textBalance":"Gleichgewicht","Common.define.smartArt.textBasicBendingProcess":"Einfacher umgebrochener Prozess","Common.define.smartArt.textBasicBlockList":"Einfache Blockliste","Common.define.smartArt.textBasicChevronProcess":"Einfacher Chevronprozess","Common.define.smartArt.textBasicCycle":"Einfacher Kreis","Common.define.smartArt.textBasicMatrix":"Einfache Matrix","Common.define.smartArt.textBasicPie":"Einfaches Kreisdiagramm","Common.define.smartArt.textBasicProcess":"Einfacher Prozess","Common.define.smartArt.textBasicPyramid":"Einfache Pyramide","Common.define.smartArt.textBasicRadial":"Einfaches Radial","Common.define.smartArt.textBasicTarget":"Einfaches Ziel","Common.define.smartArt.textBasicTimeline":"Einfache Zeitachse","Common.define.smartArt.textBasicVenn":"Einfaches Venn","Common.define.smartArt.textBendingPictureAccentList":"Umgebrochene Bildakzentliste","Common.define.smartArt.textBendingPictureBlocks":"Umgebrochene Bildblöcke","Common.define.smartArt.textBendingPictureCaption":"Umgebrochene Bildbeschriftung","Common.define.smartArt.textBendingPictureCaptionList":"Umgebrochene Bildbeschriftungsliste","Common.define.smartArt.textBendingPictureSemiTranparentText":"Umgebrochener halbtransparenter Bildtext","Common.define.smartArt.textBlockCycle":"Blockkreis","Common.define.smartArt.textBubblePictureList":"Blasenbildliste","Common.define.smartArt.textCaptionedPictures":"Bilder mit Beschriftungen","Common.define.smartArt.textChevronAccentProcess":"Chevronakzentprozess","Common.define.smartArt.textChevronList":"Chevronliste","Common.define.smartArt.textCircleAccentTimeline":"Zeitachse mit Kreisakzent","Common.define.smartArt.textCircleArrowProcess":"Kreisförmiger Pfeilprozess","Common.define.smartArt.textCirclePictureHierarchy":"Bilderhierarchie mit Kreisakzent","Common.define.smartArt.textCircleProcess":"Kreisprozess","Common.define.smartArt.textCircleRelationship":"Kreisbeziehung","Common.define.smartArt.textCircularBendingProcess":"Kreisförmiger umgebrochener Prozess","Common.define.smartArt.textCircularPictureCallout":"Kreisförmige Bildbeschriftung","Common.define.smartArt.textClosedChevronProcess":"Geschlossener Chevronprozess","Common.define.smartArt.textContinuousArrowProcess":"Fortlaufender Pfeilprozess","Common.define.smartArt.textContinuousBlockProcess":"Fortlaufender Blockprozess","Common.define.smartArt.textContinuousCycle":"Fortlaufender Kreis","Common.define.smartArt.textContinuousPictureList":"Fortlaufende Bildliste","Common.define.smartArt.textConvergingArrows":"Zusammenlaufende Pfeile","Common.define.smartArt.textConvergingRadial":"Zusammenlaufendes Radial","Common.define.smartArt.textConvergingText":"Zusammenlaufender Text","Common.define.smartArt.textCounterbalanceArrows":"Gegengewichtspfeile","Common.define.smartArt.textCycle":"Zyklus","Common.define.smartArt.textCycleMatrix":"Zyklusmatrix","Common.define.smartArt.textDescendingBlockList":"Absteigende Blockliste","Common.define.smartArt.textDescendingProcess":"Absteigender Prozess","Common.define.smartArt.textDetailedProcess":"Detaillierter Prozess","Common.define.smartArt.textDivergingArrows":"Auseinanderlaufende Pfeile","Common.define.smartArt.textDivergingRadial":"Auseinanderlaufendes Radial","Common.define.smartArt.textEquation":"Gleichung","Common.define.smartArt.textFramedTextPicture":"Umrahmte Textgrafik","Common.define.smartArt.textFunnel":"Trichter","Common.define.smartArt.textGear":"Zahnrad","Common.define.smartArt.textGridMatrix":"Rastermatrix","Common.define.smartArt.textGroupedList":"Gruppierte Liste","Common.define.smartArt.textHalfCircleOrganizationChart":"Halbkreisorganigramm","Common.define.smartArt.textHexagonCluster":"Sechseck-Cluster","Common.define.smartArt.textHexagonRadial":"Sechseck Radial","Common.define.smartArt.textHierarchy":"Hierarchie","Common.define.smartArt.textHierarchyList":"Hierarchieliste","Common.define.smartArt.textHorizontalBulletList":"Horizontale Aufzählungsliste","Common.define.smartArt.textHorizontalHierarchy":"Horizontale Hierarchie","Common.define.smartArt.textHorizontalLabeledHierarchy":"Horizontal beschriftete Hierarchie","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Horizontale mehrstufige Hierarchie","Common.define.smartArt.textHorizontalOrganizationChart":"Horizontales Organigramm","Common.define.smartArt.textHorizontalPictureList":"Horizontale Bildliste","Common.define.smartArt.textIncreasingArrowProcess":"Zunehmender Pfeilprozess","Common.define.smartArt.textIncreasingCircleProcess":"Zunehmender Kreisprozess","Common.define.smartArt.textInterconnectedBlockProcess":"Vernetzter Blockprozess","Common.define.smartArt.textInterconnectedRings":"Verbundene Ringe","Common.define.smartArt.textInvertedPyramid":"Umgekehrte Pyramide","Common.define.smartArt.textLabeledHierarchy":"Beschriftete Hierarchie","Common.define.smartArt.textLinearVenn":"Lineares Venn","Common.define.smartArt.textLinedList":"Liste mit Linien","Common.define.smartArt.textList":"Liste","Common.define.smartArt.textMatrix":"Matrix","Common.define.smartArt.textMultidirectionalCycle":"Multidirektionaler Zyklus","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigramm mit Namen und Titel","Common.define.smartArt.textNestedTarget":"Geschachteltes Ziel","Common.define.smartArt.textNondirectionalCycle":"Richtungsloser Kreis","Common.define.smartArt.textOpposingArrows":"Entgegengesetzte Pfeile","Common.define.smartArt.textOpposingIdeas":"Konträre Ansichten","Common.define.smartArt.textOrganizationChart":"Organigramm","Common.define.smartArt.textOther":"Andere","Common.define.smartArt.textPhasedProcess":"Phasenprozess","Common.define.smartArt.textPicture":"Bild","Common.define.smartArt.textPictureAccentBlocks":"Bildakzentblöcke","Common.define.smartArt.textPictureAccentList":"Bildakzentliste","Common.define.smartArt.textPictureAccentProcess":"Bildakzentprozess","Common.define.smartArt.textPictureCaptionList":"Bildbeschriftungsliste","Common.define.smartArt.textPictureFrame":"Bildrahmen","Common.define.smartArt.textPictureGrid":"Bildraster","Common.define.smartArt.textPictureLineup":"Bildanordnung","Common.define.smartArt.textPictureOrganizationChart":"Bildorganigramm","Common.define.smartArt.textPictureStrips":"Bildstreifen","Common.define.smartArt.textPieProcess":"Kreisdiagrammprozess","Common.define.smartArt.textPlusAndMinus":"Plus und Minus","Common.define.smartArt.textProcess":"Prozess","Common.define.smartArt.textProcessArrows":"Prozesspfeile","Common.define.smartArt.textProcessList":"Prozessliste","Common.define.smartArt.textPyramid":"Pyramide","Common.define.smartArt.textPyramidList":"Pyramidenliste","Common.define.smartArt.textRadialCluster":"Radialer Cluster","Common.define.smartArt.textRadialCycle":"Radialkreis","Common.define.smartArt.textRadialList":"Radialliste","Common.define.smartArt.textRadialPictureList":"Radiale Bildliste","Common.define.smartArt.textRadialVenn":"Radialvenn","Common.define.smartArt.textRandomToResultProcess":"Zufallsergebnisprozess","Common.define.smartArt.textRelationship":"Beziehung","Common.define.smartArt.textRepeatingBendingProcess":"Wiederholter umgebrochener Prozess","Common.define.smartArt.textReverseList":"Umgekehrte Liste","Common.define.smartArt.textSegmentedCycle":"Segmentierter Kreis","Common.define.smartArt.textSegmentedProcess":"Segmentierter Prozess","Common.define.smartArt.textSegmentedPyramid":"Segmentierte Pyramide","Common.define.smartArt.textSnapshotPictureList":"Momentaufnahme-Bildliste","Common.define.smartArt.textSpiralPicture":"Spiralförmige Grafik","Common.define.smartArt.textSquareAccentList":"Liste mit quadratischen Akzenten","Common.define.smartArt.textStackedList":"Gestapelte Liste","Common.define.smartArt.textStackedVenn":"Gestapeltes Venn","Common.define.smartArt.textStaggeredProcess":"Gestaffelter Prozess","Common.define.smartArt.textStepDownProcess":"Prozess mit absteigenden Schritten","Common.define.smartArt.textStepUpProcess":"Prozess mit aufsteigenden Schritten","Common.define.smartArt.textSubStepProcess":"Unterschrittprozess","Common.define.smartArt.textTabbedArc":"Registerkartenbogen","Common.define.smartArt.textTableHierarchy":"Tabellenhierarchie","Common.define.smartArt.textTableList":"Tabellenliste","Common.define.smartArt.textTabList":"Registerkartenliste","Common.define.smartArt.textTargetList":"Zielliste","Common.define.smartArt.textTextCycle":"Textzyklus","Common.define.smartArt.textThemePictureAccent":"Designbildakzent","Common.define.smartArt.textThemePictureAlternatingAccent":"Alternierender Designbildakzent","Common.define.smartArt.textThemePictureGrid":"Designbildraster","Common.define.smartArt.textTitledMatrix":"Betitelte Matrix","Common.define.smartArt.textTitledPictureAccentList":"Bildakzentliste mit Titel","Common.define.smartArt.textTitledPictureBlocks":"Titelbildblöcke","Common.define.smartArt.textTitlePictureLineup":"Titelbildanordnung","Common.define.smartArt.textTrapezoidList":"Trapezförmige Liste","Common.define.smartArt.textUpwardArrow":"Pfeil nach oben","Common.define.smartArt.textVaryingWidthList":"Liste mit variabler Breite","Common.define.smartArt.textVerticalAccentList":"Liste mit vertikalen Akzenten","Common.define.smartArt.textVerticalArrowList":"Vertikale Pfeilliste","Common.define.smartArt.textVerticalBendingProcess":"Vertikaler umgebrochener Prozess","Common.define.smartArt.textVerticalBlockList":"Vertikale Blockliste","Common.define.smartArt.textVerticalBoxList":"Vertikale Feldliste","Common.define.smartArt.textVerticalBracketList":"Liste mit vertikalen Klammern","Common.define.smartArt.textVerticalBulletList":"Vertikale Aufzählung","Common.define.smartArt.textVerticalChevronList":"Vertikale Chevronliste","Common.define.smartArt.textVerticalCircleList":"Liste mit vertikalen Kreisen","Common.define.smartArt.textVerticalCurvedList":"Liste mit vertikalen Kurven","Common.define.smartArt.textVerticalEquation":"Vertikale Gleichung","Common.define.smartArt.textVerticalPictureAccentList":"Vertikale Bildakzentliste","Common.define.smartArt.textVerticalPictureList":"Vertikale Bildliste","Common.define.smartArt.textVerticalProcess":"Vertikaler Prozess","Common.Translation.textMoreButton":"Mehr","Common.Translation.tipFileLocked":"Das Dokument ist für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die Datei später als lokale Kopie speichern.","Common.Translation.tipFileReadOnly":"Das Dokument ist schreibgeschützt und für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die lokale Kopie später speichern.","Common.Translation.warnFileLocked":"Sie können diese Datei nicht editieren, da es in einem anderen Program bearbeitet wird.","Common.Translation.warnFileLockedBtnEdit":"Kopie erstellen","Common.Translation.warnFileLockedBtnView":"Zum Anzeigen öffnen","Common.UI.ButtonColored.textAutoColor":"Automatisch","Common.UI.ButtonColored.textEyedropper":"Pipette","Common.UI.ButtonColored.textNewColor":"Mehr Farben","Common.UI.Calendar.textApril":"April","Common.UI.Calendar.textAugust":"August","Common.UI.Calendar.textDecember":"Dezember","Common.UI.Calendar.textFebruary":"Februar","Common.UI.Calendar.textJanuary":"Januar","Common.UI.Calendar.textJuly":"Juli","Common.UI.Calendar.textJune":"Juni","Common.UI.Calendar.textMarch":"März","Common.UI.Calendar.textMay":"Mai","Common.UI.Calendar.textMonths":"Monate","Common.UI.Calendar.textNovember":"November","Common.UI.Calendar.textOctober":"Oktober","Common.UI.Calendar.textSeptember":"September","Common.UI.Calendar.textShortApril":"Apr","Common.UI.Calendar.textShortAugust":"Aug","Common.UI.Calendar.textShortDecember":"Dez","Common.UI.Calendar.textShortFebruary":"Feb","Common.UI.Calendar.textShortFriday":"Fr","Common.UI.Calendar.textShortJanuary":"Jan","Common.UI.Calendar.textShortJuly":"Jul","Common.UI.Calendar.textShortJune":"Jun","Common.UI.Calendar.textShortMarch":"Mär","Common.UI.Calendar.textShortMay":"Mai","Common.UI.Calendar.textShortMonday":"Mo","Common.UI.Calendar.textShortNovember":"Nov","Common.UI.Calendar.textShortOctober":"Okt","Common.UI.Calendar.textShortSaturday":"Sa","Common.UI.Calendar.textShortSeptember":"Sep","Common.UI.Calendar.textShortSunday":"Son","Common.UI.Calendar.textShortThursday":"Do","Common.UI.Calendar.textShortTuesday":"Di","Common.UI.Calendar.textShortWednesday":"Mi","Common.UI.Calendar.textYears":"Jahre","Common.UI.ExtendedColorDialog.addButtonText":"Hinzufügen","Common.UI.ExtendedColorDialog.textCurrent":"Aktuell","Common.UI.ExtendedColorDialog.textHexErr":"Der eingegebene Wert ist ungültig.
Bitte geben Sie einen Wert zwischen 000000 und FFFFFF ein.","Common.UI.ExtendedColorDialog.textNew":"Neu","Common.UI.ExtendedColorDialog.textRGBErr":"Der eingegebene Wert ist ungültig.
Bitte geben Sie einen numerischen Wert zwischen 0 und 255 ein.","Common.UI.HSBColorPicker.textNoColor":"Ohne Farbe","Common.UI.InputFieldBtnCalendar.textDate":"Datum auswählen","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Passwort ausblenden","Common.UI.InputFieldBtnPassword.textHintHold":"Lang drücken, um das Passwort anzuzeigen","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Password anzeigen","Common.UI.SearchBar.capFind":"Suchen","Common.UI.SearchBar.capFindRedact":"Suchen und Schwärzen","Common.UI.SearchBar.textFind":"Suchen","Common.UI.SearchBar.tipCloseSearch":"Suche schließen","Common.UI.SearchBar.tipNextResult":"Nächstes Ergebnis","Common.UI.SearchBar.tipOpenAdvancedSettings":"Erweiterte Einstellungen öffnen","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"Suchen und Schwärzen","Common.UI.SearchBar.tipPreviousResult":"Vorheriges Ergebnis","Common.UI.SearchDialog.textHighlight":"Markierungsergebnisse","Common.UI.SearchDialog.textMatchCase":"Groß- und Kleinschreibung beachten","Common.UI.SearchDialog.textReplaceDef":"Geben Sie den Ersetzungstext ein","Common.UI.SearchDialog.textSearchStart":"Geben Sie den Text hier ein","Common.UI.SearchDialog.textTitle":"Suchen und ersetzen","Common.UI.SearchDialog.textTitle2":"Suchen","Common.UI.SearchDialog.textWholeWords":"Nur ganze Wörter","Common.UI.SearchDialog.txtBtnHideReplace":"Ersetzen ausblenden","Common.UI.SearchDialog.txtBtnReplace":"Ersetzen","Common.UI.SearchDialog.txtBtnReplaceAll":"Alles ersetzen","Common.UI.SynchronizeTip.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"Neu","Common.UI.SynchronizeTip.textSynchronize":"Das Dokument wurde von einem anderen Benutzer geändert.
Bitte klicken hier, um Ihre Änderungen zu speichern und die Aktualisierungen neu zu laden.","Common.UI.ThemeColorPalette.textRecentColors":"Kürzlich verwendete Farben","Common.UI.ThemeColorPalette.textStandartColors":"Standardfarben","Common.UI.ThemeColorPalette.textThemeColors":"Farben des Themas","Common.UI.ThemeColorPalette.textTransparent":"Transparent","Common.UI.Themes.txtThemeClassicLight":"Klassisch Hell","Common.UI.Themes.txtThemeContrastDark":"Dunkler Kontrast","Common.UI.Themes.txtThemeDark":"Dunkel","Common.UI.Themes.txtThemeGray":"Grau","Common.UI.Themes.txtThemeLight":"Hell","Common.UI.Themes.txtThemeModernDark":"Modern Dunkel","Common.UI.Themes.txtThemeModernLight":"Modern Hell","Common.UI.Themes.txtThemeSystem":"Dasselbe wie System","Common.UI.Window.cancelButtonText":"Abbrechen","Common.UI.Window.closeButtonText":"Schließen","Common.UI.Window.noButtonText":"Nein","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Bestätigung","Common.UI.Window.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.UI.Window.textError":"Fehler","Common.UI.Window.textInformation":"Information","Common.UI.Window.textWarning":"Warnung","Common.UI.Window.yesButtonText":"Ja","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Strg","Common.Utils.String.textShift":"Umschalten","Common.Utils.ThemeColor.txtaccent":"Akzent","Common.Utils.ThemeColor.txtAqua":"Dunkeltürkis","Common.Utils.ThemeColor.txtbackground":"Hintergrund","Common.Utils.ThemeColor.txtBlack":"Schwarz","Common.Utils.ThemeColor.txtBlue":"Blau","Common.Utils.ThemeColor.txtBrightGreen":"Helles Grün","Common.Utils.ThemeColor.txtBrown":"Braun","Common.Utils.ThemeColor.txtDarkBlue":"Dunkelblau","Common.Utils.ThemeColor.txtDarker":"Dunkler","Common.Utils.ThemeColor.txtDarkGray":"Dunkelgrau","Common.Utils.ThemeColor.txtDarkGreen":"Dunkelgrün","Common.Utils.ThemeColor.txtDarkPurple":"Dunkelviolett","Common.Utils.ThemeColor.txtDarkRed":"Dunkelrot","Common.Utils.ThemeColor.txtDarkTeal":"Dunkelblaugrün","Common.Utils.ThemeColor.txtDarkYellow":"Dunkelgelb","Common.Utils.ThemeColor.txtGold":"Gold","Common.Utils.ThemeColor.txtGray":"Grau","Common.Utils.ThemeColor.txtGreen":"Grün","Common.Utils.ThemeColor.txtIndigo":"Indigo","Common.Utils.ThemeColor.txtLavender":"Lavendel","Common.Utils.ThemeColor.txtLightBlue":"Hellblau","Common.Utils.ThemeColor.txtLighter":"Heller","Common.Utils.ThemeColor.txtLightGray":"Hellgrau","Common.Utils.ThemeColor.txtLightGreen":"Hellgrün","Common.Utils.ThemeColor.txtLightOrange":"Hellorange","Common.Utils.ThemeColor.txtLightYellow":"Hellgelb","Common.Utils.ThemeColor.txtOrange":"Orange","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Lila","Common.Utils.ThemeColor.txtRed":"Rot","Common.Utils.ThemeColor.txtRose":"Rosa","Common.Utils.ThemeColor.txtSkyBlue":"Himmelblau","Common.Utils.ThemeColor.txtTeal":"Türkisblau","Common.Utils.ThemeColor.txttext":"Text","Common.Utils.ThemeColor.txtTurquosie":"Türkis","Common.Utils.ThemeColor.txtViolet":"Violet","Common.Utils.ThemeColor.txtWhite":"Weiß","Common.Utils.ThemeColor.txtYellow":"Gelb","Common.Views.About.txtAddress":"Adresse:","Common.Views.About.txtLicensee":"LIZENZNEHMER","Common.Views.About.txtLicensor":"LIZENZGEBER","Common.Views.About.txtMail":"E-Mail-Adresse: ","Common.Views.About.txtPoweredBy":"Angetrieben von","Common.Views.About.txtTel":"Tel.: ","Common.Views.About.txtVersion":"Version","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Chat schließen","Common.Views.Chat.textEnterMessage":"Geben Sie Ihre Nachricht hier ein","Common.Views.Chat.textSend":"Senden","Common.Views.Comments.mniAuthorAsc":"Autor (A-Z)","Common.Views.Comments.mniAuthorDesc":"Autor (Z-A)","Common.Views.Comments.mniDateAsc":"Ältestes","Common.Views.Comments.mniDateDesc":"Neuer","Common.Views.Comments.mniFilterComments":"Kommentare anzeigen","Common.Views.Comments.mniFilterGroups":"Nach Gruppe filtern","Common.Views.Comments.mniPositionAsc":"Von oben","Common.Views.Comments.mniPositionDesc":"Von unten","Common.Views.Comments.textAdd":"Hinzufügen","Common.Views.Comments.textAddComment":"Kommentar hinzufügen","Common.Views.Comments.textAddCommentToDoc":"Kommentar zum Dokument hinzufügen","Common.Views.Comments.textAddReply":"Antwort hinzufügen","Common.Views.Comments.textAll":"Alles","Common.Views.Comments.textAnonym":"Gast","Common.Views.Comments.textCancel":"Abbrechen","Common.Views.Comments.textClose":"Schließen","Common.Views.Comments.textClosePanel":"Kommentare schließen","Common.Views.Comments.textComment":"Kommentar","Common.Views.Comments.textComments":"Kommentare","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Geben Sie Ihren Kommentar hier ein","Common.Views.Comments.textHintAddComment":"Kommentar hinzufügen","Common.Views.Comments.textOpen":"Offen","Common.Views.Comments.textOpenAgain":"Erneut öffnen","Common.Views.Comments.textReply":"Antworten","Common.Views.Comments.textResolve":"Lösen","Common.Views.Comments.textResolved":"Gelöst","Common.Views.Comments.textSort":"Kommentare sortieren","Common.Views.Comments.textSortFilter":"Kommentare sortieren und filtern","Common.Views.Comments.textSortFilterMore":"Sortieren, filtern und mehr","Common.Views.Comments.textSortMore":"Sortieren und mehr","Common.Views.Comments.textViewResolved":"Sie haben keine Berechtigung den Kommentar erneut zu öffnen","Common.Views.Comments.txtEmpty":"Das Dokument enthält keine Kommentare.","Common.Views.CopyWarningDialog.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.Views.CopyWarningDialog.textMsg":"Die Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\" können mithilfe den Schaltflächen in der Symbolleiste und Aktionen im Kontextmenü nur in dieser Editor-Registerkarte durchgeführt werden.

Für Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:","Common.Views.CopyWarningDialog.textTitle":"Kopieren, Ausschneiden und Einfügen","Common.Views.CopyWarningDialog.textToCopy":"zum Kopieren","Common.Views.CopyWarningDialog.textToCut":"zum Ausschneiden","Common.Views.CopyWarningDialog.textToPaste":"zum Einfügen","Common.Views.CustomizeQuickAccessDialog.textDownload":"Herunterladen","Common.Views.CustomizeQuickAccessDialog.textMsg":"Markieren Sie die Befehle, die in der Symbolleiste für den Schnellzugriff angezeigt werden sollen","Common.Views.CustomizeQuickAccessDialog.textPrint":"Drucken","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Schnelldruck","Common.Views.CustomizeQuickAccessDialog.textRedo":"Wiederholen","Common.Views.CustomizeQuickAccessDialog.textSave":"Speichern","Common.Views.CustomizeQuickAccessDialog.textTitle":"Schnellzugriff anpassen","Common.Views.CustomizeQuickAccessDialog.textUndo":"Rückgängig machen","Common.Views.DocumentAccessDialog.textLoading":"Ladevorgang...","Common.Views.DocumentAccessDialog.textTitle":"Freigabeeinstellungen","Common.Views.Draw.hintEraser":"Radierer","Common.Views.Draw.hintSelect":"Auswählen","Common.Views.Draw.txtEraser":"Radierer","Common.Views.Draw.txtHighlighter":"Markierer","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Stift","Common.Views.Draw.txtSelect":"Auswählen","Common.Views.Draw.txtSize":"Größe","Common.Views.ExternalDiagramEditor.textTitle":"Diagramm Editor","Common.Views.ExternalEditor.textClose":"Schließen","Common.Views.ExternalEditor.textSave":"Speichern und beenden","Common.Views.ExternalLinksDlg.closeButtonText":"Schließen","Common.Views.ExternalLinksDlg.textAutoUpdate":"Daten aus den verknüpften Quellen automatisch aktualisieren","Common.Views.ExternalLinksDlg.textChange":"Quelle ändern","Common.Views.ExternalLinksDlg.textDelete":"Links unterbrechen","Common.Views.ExternalLinksDlg.textDeleteAll":"Alle Links unterbrechen","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Open Source","Common.Views.ExternalLinksDlg.textSource":"Quelle","Common.Views.ExternalLinksDlg.textStatus":"Status","Common.Views.ExternalLinksDlg.textUnknown":"Unbekannt","Common.Views.ExternalLinksDlg.textUpdate":"Werte aktualisieren","Common.Views.ExternalLinksDlg.textUpdateAll":"Alles aktualisieren","Common.Views.ExternalLinksDlg.textUpdating":"Wird aktualisiert...","Common.Views.ExternalLinksDlg.txtTitle":"Externe Links","Common.Views.Header.ariaQuickAccessToolbar":"Symbolleiste für Schnellzugriff","Common.Views.Header.labelCoUsersDescr":"Benutzer, die die Datei bearbeiten:","Common.Views.Header.textAddFavorite":"Als Favorit kennzeichnen","Common.Views.Header.textAdvSettings":"Erweiterte Einstellungen","Common.Views.Header.textAnnotateDesc":"Formulare ausfüllen oder Anmerkungen machen","Common.Views.Header.textBack":"Dateispeicherort öffnen","Common.Views.Header.textClose":"Datei schließen","Common.Views.Header.textComment":"Kommentieren","Common.Views.Header.textCommentDesc":"Alle Änderungen werden in der Datei gespeichert. Zusammenarbeit in Echtzeit","Common.Views.Header.textCompactView":"Symbolleiste ausblenden","Common.Views.Header.textDownload":"Herunterladen","Common.Views.Header.textEdit":"Bearbeitung","Common.Views.Header.textEditDesc":"Alle Änderungen werden in der Datei gespeichert. Zusammenarbeit in Echtzeit","Common.Views.Header.textEditDescNoCoedit":"Fügen Sie Text, Formen, Bilder usw. hinzu oder bearbeiten Sie sie.","Common.Views.Header.textHideLines":"Lineale ausblenden","Common.Views.Header.textHideStatusBar":"Statusleiste ausblenden","Common.Views.Header.textPrint":"Drucken","Common.Views.Header.textReadOnly":"Nur Lesen","Common.Views.Header.textRemoveFavorite":"Aus Favoriten entfernen","Common.Views.Header.textShare":"Freigeben","Common.Views.Header.textView":"Anzeigen","Common.Views.Header.textViewDesc":"Alle Änderungen werden lokal gespeichert","Common.Views.Header.textViewDescNoCoedit":"Anzeigen oder annotieren","Common.Views.Header.textZoom":"Zoom","Common.Views.Header.tipAccessRights":"Dokumentzugriffsrechte verwalten","Common.Views.Header.tipComment":"Kommentieren","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Symbolleiste für den Schnellzugriff anpassen","Common.Views.Header.tipDownload":"Datei herunterladen","Common.Views.Header.tipEdit":"Bearbeitung","Common.Views.Header.tipGoEdit":"Aktuelle Datei bearbeiten","Common.Views.Header.tipPrint":"Datei drucken","Common.Views.Header.tipPrintQuick":"Schnelldruck","Common.Views.Header.tipRedo":"Wiederholen","Common.Views.Header.tipSave":"Speichern","Common.Views.Header.tipSearch":"Suchen","Common.Views.Header.tipUndo":"Rückgängig machen","Common.Views.Header.tipUsers":"Benutzer anzeigen","Common.Views.Header.tipView":"Anzeigen","Common.Views.Header.tipViewSettings":"Anzeige-Einstellungen","Common.Views.Header.tipViewUsers":"Benutzer anzeigen und Zugriffsrechte für das Dokument verwalten","Common.Views.Header.txtAccessRights":"Zugriffsrechte ändern","Common.Views.Header.txtRename":"Umbenennen","Common.Views.ImageFromUrlDialog.textUrl":"Bild-URL einfügen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Dieses Feld ist erforderlich","Common.Views.ImageFromUrlDialog.txtNotUrl":"Dieses Feld muss eine URL im Format \"http://www.example.com\" sein","Common.Views.OpenDialog.closeButtonText":"Datei schließen","Common.Views.OpenDialog.txtEncoding":"Verschlüsselung","Common.Views.OpenDialog.txtIncorrectPwd":"Kennwort ist falsch.","Common.Views.OpenDialog.txtOpenFile":"Kennwort zum Öffnen der Datei eingeben","Common.Views.OpenDialog.txtPassword":"Kennwort","Common.Views.OpenDialog.txtPreview":"Vorschau","Common.Views.OpenDialog.txtProtected":"Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.","Common.Views.OpenDialog.txtTitle":"Parameter für %1 auswählen","Common.Views.OpenDialog.txtTitleProtected":"Geschützte Datei","Common.Views.PasswordDialog.txtDescription":"Legen Sie ein Passwort fest, um dieses Dokument zu schützen","Common.Views.PasswordDialog.txtIncorrectPwd":"Bestätigungseingabe ist nicht identisch","Common.Views.PasswordDialog.txtPassword":"Passwort","Common.Views.PasswordDialog.txtRepeat":"Passwort wiederholen","Common.Views.PasswordDialog.txtTitle":"Passwort festlegen","Common.Views.PasswordDialog.txtWarning":"Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie es an einem sicheren Ort auf.","Common.Views.PluginDlg.textDock":"Plugin anheften","Common.Views.PluginDlg.textLoading":"Ladevorgang","Common.Views.PluginPanel.textClosePanel":"Plugin schließen","Common.Views.PluginPanel.textHidePanel":"Plugin reduzieren","Common.Views.PluginPanel.textLoading":"Ladevorgang","Common.Views.PluginPanel.textUndock":"Plugin entpinnen","Common.Views.Plugins.groupCaption":"Plugins","Common.Views.Plugins.strPlugins":"Plugins","Common.Views.Plugins.textBackgroundPlugins":"Plugins im Hintergrund","Common.Views.Plugins.textClosePanel":"Plugin schließen","Common.Views.Plugins.textLoading":"Ladevorgang","Common.Views.Plugins.textSettings":"Einstellungen","Common.Views.Plugins.textStart":"Start","Common.Views.Plugins.textStop":"Beenden","Common.Views.Plugins.textTheListOfBackgroundPlugins":"Die Liste der Plugins im Hintergrund","Common.Views.Protection.hintAddPwd":"Mit Kennwort verschlüsseln","Common.Views.Protection.hintDelPwd":"Kennwort löschen","Common.Views.Protection.hintPwd":"Das Kennwort ändern oder löschen","Common.Views.Protection.hintSignature":"Digitale Signatur oder Unterschriftenzeile hinzufügen","Common.Views.Protection.txtAddPwd":"Kennwort hinzufügen","Common.Views.Protection.txtChangePwd":"Kennwort ändern","Common.Views.Protection.txtDeletePwd":"Kennwort löschen","Common.Views.Protection.txtEncrypt":"Verschlüsseln","Common.Views.Protection.txtInvisibleSignature":"Digitale Signatur hinzufügen","Common.Views.Protection.txtSignature":"Signatur","Common.Views.Protection.txtSignatureLine":"Signaturzeile hinzufügen","Common.Views.RecentFiles.txtOpenRecent":"Zuletzt verwendete öffnen","Common.Views.RenameDialog.textName":"Dateiname","Common.Views.RenameDialog.txtInvalidName":"Dieser Dateiname darf keines der folgenden Zeichen enthalten:","Common.Views.ReviewChanges.strFast":"Schnell","Common.Views.ReviewChanges.strFastDesc":"Echtzeit-Zusammenbearbeitung. Alle Änderungen werden automatisch gespeichert.","Common.Views.ReviewChanges.strStrict":"Formal","Common.Views.ReviewChanges.strStrictDesc":"Verwenden Sie die Schaltfläche \"Speichern\", um die von Ihnen und anderen vorgenommenen Änderungen zu synchronisieren.","Common.Views.ReviewChanges.tipCoAuthMode":"Den gemeinsamen Bearbeitungsmodus einstellen","Common.Views.ReviewChanges.tipCommentRem":"Kommentare entfernen","Common.Views.ReviewChanges.tipCommentRemCurrent":"Aktuelle Kommentare entfernen","Common.Views.ReviewChanges.tipCommentResolve":"Kommentare lösen","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Aktuelle Kommentare lösen","Common.Views.ReviewChanges.tipHistory":"Versionshistorie anzeigen","Common.Views.ReviewChanges.tipSharing":"Dokumentzugriffsrechte verwalten","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Schließen","Common.Views.ReviewChanges.txtCoAuthMode":"Modus \"Gemeinsame Bearbeitung\"","Common.Views.ReviewChanges.txtCommentRemAll":"Alle Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemCurrent":"Aktuelle Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemMy":"Meine Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Meine aktuellen Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemove":"Löschen","Common.Views.ReviewChanges.txtCommentResolve":"Lösen","Common.Views.ReviewChanges.txtCommentResolveAll":"Alle Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Aktuelle Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveMy":"Meine Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Meine gültige Kommentare lösen","Common.Views.ReviewChanges.txtHistory":"Versionsverlauf","Common.Views.ReviewChanges.txtSharing":"Freigabe","Common.Views.ReviewPopover.textAdd":"Hinzufügen","Common.Views.ReviewPopover.textAddReply":"Antwort hinzufügen","Common.Views.ReviewPopover.textCancel":"Abbrechen","Common.Views.ReviewPopover.textClose":"Schließen","Common.Views.ReviewPopover.textComment":"Kommentar","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Geben Sie Ihren Kommentar hier ein","Common.Views.ReviewPopover.textFollowMove":"Verschieben nachverfolgen","Common.Views.ReviewPopover.textMention":"+Erwähnung ermöglicht den Zugriff auf das Dokument und das Senden einer E-Mail","Common.Views.ReviewPopover.textMentionNotify":"+Erwähnung benachrichtigt den Benutzer per E-Mail","Common.Views.ReviewPopover.textOpenAgain":"Erneut öffnen","Common.Views.ReviewPopover.textReply":"Antworten","Common.Views.ReviewPopover.textResolve":"Lösen","Common.Views.ReviewPopover.textViewResolved":"Sie haben keine Berechtigung, den Kommentar erneut zu öffnen","Common.Views.ReviewPopover.txtAccept":"Akzeptieren","Common.Views.ReviewPopover.txtDeleteTip":"Löschen","Common.Views.ReviewPopover.txtEditTip":"Bearbeiten","Common.Views.ReviewPopover.txtReject":"Ablehnen","Common.Views.SaveAsDlg.textLoading":"Ladevorgang","Common.Views.SaveAsDlg.textTitle":"Ordner fürs Speichern","Common.Views.SearchPanel.textCaseSensitive":"Groß- und Kleinschreibung beachten","Common.Views.SearchPanel.textCloseSearch":"Suche schließen","Common.Views.SearchPanel.textContentChanged":"Dokument verändert.","Common.Views.SearchPanel.textFind":"Suchen","Common.Views.SearchPanel.textFindAndRedact":"Suchen und Schwärzen","Common.Views.SearchPanel.textFindAndReplace":"Suchen und ersetzen","Common.Views.SearchPanel.textFindRedact":"Suchen und Schwärzen","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} Elemente erfolgreich ersetzt.","Common.Views.SearchPanel.textMark":"Zum Schwärzen markieren","Common.Views.SearchPanel.textMarkAll":"Alle markieren","Common.Views.SearchPanel.textMatchUsingRegExp":"Über reguläre Ausdrücke abgleichen","Common.Views.SearchPanel.textNoMatches":"Keine Treffer","Common.Views.SearchPanel.textNoSearchResults":"Keine Suchergebnisse","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} Elemente ersetzt. Die übrigen {2} Elemente sind von anderen Benutzern gesperrt.","Common.Views.SearchPanel.textReplace":"Ersetzen","Common.Views.SearchPanel.textReplaceAll":"Alles ersetzen","Common.Views.SearchPanel.textReplaceWith":"Ersetzen mit","Common.Views.SearchPanel.textSearchAgain":"{0}Neue Suche durchführen{1} für genaue Ergebnisse.","Common.Views.SearchPanel.textSearchHasStopped":"Suche abgebrochen","Common.Views.SearchPanel.textSearchResults":"Suchergebnisse: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Suchergebnisse","Common.Views.SearchPanel.textTooManyResults":"Es gibt zu viele Ergebnisse, um sie hier zu zeigen","Common.Views.SearchPanel.textWholeWords":"Nur ganze Wörter","Common.Views.SearchPanel.tipNextResult":"Nächstes Ergebnis","Common.Views.SearchPanel.tipPreviousResult":"Vorheriges Ergebnis","Common.Views.SelectFileDlg.textLoading":"Ladevorgang","Common.Views.SelectFileDlg.textTitle":"Datenquelle auswählen","Common.Views.ShapeShadowDialog.txtAngle":"Winkel","Common.Views.ShapeShadowDialog.txtDistance":"Abstand","Common.Views.ShapeShadowDialog.txtSize":"Größe","Common.Views.ShapeShadowDialog.txtTitle":"Schatten anpassen","Common.Views.ShapeShadowDialog.txtTransparency":"Transparenz","Common.Views.ShortcutsDialog.txtDescription":"Beschreibung","Common.Views.ShortcutsDialog.txtEmpty":"Keine Übereinstimmungen gefunden. Passen Sie Ihre Suche an.","Common.Views.ShortcutsDialog.txtRestoreAll":"Alles auf Standard zurücksetzen","Common.Views.ShortcutsDialog.txtRestoreContinue":"Möchten Sie fortsetzen?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Alle Tastenkombinationseinstellungen werden auf die Standardeinstellungen zurückgesetzt.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Auf Standard zurücksetzen","Common.Views.ShortcutsDialog.txtSearch":"Suchen","Common.Views.ShortcutsDialog.txtTitle":"Tastenkombinationen","Common.Views.ShortcutsEditDialog.txtAction":"Aktion","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Geben Sie die gewünschte Tastenkombination ein","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"Die von den Aktionen %1 verwendete Tastenkombination","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"Die von den Aktionen %1 verwendete Tastenkombination kann nicht geändert werden","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"Die von der Aktion %1 verwendete Tastenkombination","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"Die Tastenkombination wird von der Aktion %1 verwendet und kann nicht geändert werden","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Neue Tastenkombination","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Möchten Sie fortsetzen?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Alle Tastenkombinationen für die Aktion “%1” werden auf die Standardeinstellungen zurückgesetzt.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Auf Standard zurücksetzen","Common.Views.ShortcutsEditDialog.txtTitle":"Tastenkombination bearbeiten","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Geben Sie die gewünschte Tastenkombination ein","Common.Views.UserNameDialog.textDontShow":"Nicht mehr anzeigen","Common.Views.UserNameDialog.textLabel":"Bezeichnung:","Common.Views.UserNameDialog.textLabelError":"Bezeichnung darf nicht leer sein.","PDFE.Controllers.InsTab.textAccent":"Akzente","PDFE.Controllers.InsTab.textBracket":"Klammern","PDFE.Controllers.InsTab.textFraction":"Bruchrechnung","PDFE.Controllers.InsTab.textFunction":"Funktionen","PDFE.Controllers.InsTab.textInsert":"Einfügen","PDFE.Controllers.InsTab.textIntegral":"Integrale","PDFE.Controllers.InsTab.textLargeOperator":"Große Operatoren","PDFE.Controllers.InsTab.textLimitAndLog":"Grenzwerte und Logarithmen","PDFE.Controllers.InsTab.textMatrix":"Matrizen","PDFE.Controllers.InsTab.textOperator":"Operatoren","PDFE.Controllers.InsTab.textRadical":"Wurzeln","PDFE.Controllers.InsTab.textScript":"Skripts","PDFE.Controllers.InsTab.textShape":"Form","PDFE.Controllers.InsTab.textSymbols":"Symbole","PDFE.Controllers.InsTab.txtAccent_Accent":"Akut","PDFE.Controllers.InsTab.txtAccent_ArrowD":"Pfeil nach rechts und links oben","PDFE.Controllers.InsTab.txtAccent_ArrowL":"Pfeil nach links oben","PDFE.Controllers.InsTab.txtAccent_ArrowR":"Pfeil nach rechts oben","PDFE.Controllers.InsTab.txtAccent_Bar":"Balken","PDFE.Controllers.InsTab.txtAccent_BarBot":"Unterstreichung","PDFE.Controllers.InsTab.txtAccent_BarTop":"Überstreichung","PDFE.Controllers.InsTab.txtAccent_BorderBox":"Geschachtelte Formel (mit Platzhalter)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"Geschachtelte Formel (Beispiel)","PDFE.Controllers.InsTab.txtAccent_Check":"Häkchen","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"Horizontale geschweifte Klammer (unten)","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"Horizontale geschweifte Klammer (oben)","PDFE.Controllers.InsTab.txtAccent_Custom_1":"Vektor A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"ABC Mit Überstreichung","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XOR y Mit Überstreichung","PDFE.Controllers.InsTab.txtAccent_DDDot":"Dreifacher Punkt","PDFE.Controllers.InsTab.txtAccent_DDot":"Doppelpunkt","PDFE.Controllers.InsTab.txtAccent_Dot":"Punkt","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"Doppelte Überstreichung","PDFE.Controllers.InsTab.txtAccent_Grave":"Gravis","PDFE.Controllers.InsTab.txtAccent_GroupBot":"Gruppierungszeichen unten","PDFE.Controllers.InsTab.txtAccent_GroupTop":"Gruppierungszeichen oben","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"Harpune nach links oben","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"Harpune nach rechts oben","PDFE.Controllers.InsTab.txtAccent_Hat":"Dach","PDFE.Controllers.InsTab.txtAccent_Smile":"Brevis","PDFE.Controllers.InsTab.txtAccent_Tilde":"Tilde","PDFE.Controllers.InsTab.txtBasicShapes":"Standardformen","PDFE.Controllers.InsTab.txtBracket_Angle":"Spitze Klammern","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"Spitze Klammern mit Trennzeichen","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"Spitze Klammern mit zwei Trennzeichen","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"Rechte spitze Klammer","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"Linke spitze Klammer","PDFE.Controllers.InsTab.txtBracket_Curve":"Geschwungene Klammern","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"Geschweifte Klammern mit Trennzeichen","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"Rechte runde Klammer","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"Linke runde Klammer","PDFE.Controllers.InsTab.txtBracket_Custom_1":"Fälle (zwei Bedingungen)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"Fälle (drei Bedingungen)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"Stapelobjekt","PDFE.Controllers.InsTab.txtBracket_Custom_4":"Stapel Objekt in eckigen Klammern","PDFE.Controllers.InsTab.txtBracket_Custom_5":"Fallbeispiele","PDFE.Controllers.InsTab.txtBracket_Custom_6":"Binomialkoeffizient","PDFE.Controllers.InsTab.txtBracket_Custom_7":"Binomialkoeffizient in spitzen Klammern","PDFE.Controllers.InsTab.txtBracket_Line":"Vertikale Balken","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"Rechter vertikaler Balken","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"Linker vertikaler Balken","PDFE.Controllers.InsTab.txtBracket_LineDouble":"Doppelte vertikale Balken","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"Rechter doppelter vertikaler Balken","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"Linker doppelt-vertikaler Balken","PDFE.Controllers.InsTab.txtBracket_LowLim":"Boden","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"Rechter Boden","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"Linker Boden","PDFE.Controllers.InsTab.txtBracket_Round":"Runde Klammern","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"Runde Klammern mit Trennlinien","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"Rechte runde Klammer","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"Linke runde Klammer","PDFE.Controllers.InsTab.txtBracket_Square":"Eckige Klammern","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"Platzhalter zwischen zwei rechten eckigen Klammern","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"Umgekehrte eckige Klammern","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"Rechte eckige Klammer","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"Linke eckige Klammer","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"Platzhalter zwischen zwei linken eckigen Klammern","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"Doppelte eckige Klammern","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"Rechte doppelte eckige Klammer","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"Linke doppelt-eckige Klammer","PDFE.Controllers.InsTab.txtBracket_UppLim":"Decke","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"Rechte Decke","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"Linke Decke","PDFE.Controllers.InsTab.txtButtons":"Schaltflächen","PDFE.Controllers.InsTab.txtCallouts":"Legenden","PDFE.Controllers.InsTab.txtCharts":"Diagramme","PDFE.Controllers.InsTab.txtFiguredArrows":"Geformte Pfeile","PDFE.Controllers.InsTab.txtFractionDiagonal":"Versetzter Bruch mit schrägem Bruchstrich","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dx über dy","PDFE.Controllers.InsTab.txtFractionDifferential_2":"Obergrenze Delta y über Obergrenze Delta x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"partielles y über partielles x","PDFE.Controllers.InsTab.txtFractionDifferential_4":"Delta y über Delta x","PDFE.Controllers.InsTab.txtFractionHorizontal":"Linearer Bruch","PDFE.Controllers.InsTab.txtFractionPi_2":"Pi wird durch 2 dividiert","PDFE.Controllers.InsTab.txtFractionSmall":"Kleine Bruchzahl","PDFE.Controllers.InsTab.txtFractionVertical":"Bruch mit waagerechtem Bruchstrich","PDFE.Controllers.InsTab.txtFunction_1_Cos":"Umgekehrte Kosinus-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"Hyperbolische umgekehrte Kosinusfunktion","PDFE.Controllers.InsTab.txtFunction_1_Cot":"Umgekehrte Kotangens-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Coth":"Hyperbolische umgekehrte Kotangensfunktion","PDFE.Controllers.InsTab.txtFunction_1_Csc":"Umgekehrte Kosekansfunktion","PDFE.Controllers.InsTab.txtFunction_1_Csch":"Hyperbolische umgekehrte Kosekans-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Sec":"Umgekehrte Sekans-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Sech":"Hyperbolische umgekehrte Sekansfunktion","PDFE.Controllers.InsTab.txtFunction_1_Sin":"Umgekehrte Sinusfunktion","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"Hyperbolische umgekehrte Sinusfunktion","PDFE.Controllers.InsTab.txtFunction_1_Tan":"Umgekehrte Tangens-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"Hyperbolische umgekehrte Tangens-Funktion","PDFE.Controllers.InsTab.txtFunction_Cos":"Kosinusfunktion","PDFE.Controllers.InsTab.txtFunction_Cosh":"Hyperbolische Kosinusfunktion","PDFE.Controllers.InsTab.txtFunction_Cot":"Kotangensfunktion","PDFE.Controllers.InsTab.txtFunction_Coth":"Hyperbolische Kotangensfunktion","PDFE.Controllers.InsTab.txtFunction_Csc":"Kosekansfunktion","PDFE.Controllers.InsTab.txtFunction_Csch":"Hyperbolische Kosekansfunktion","PDFE.Controllers.InsTab.txtFunction_Custom_1":"Sinus Theta","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Kosinus 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"Tangensformel","PDFE.Controllers.InsTab.txtFunction_Sec":"Sekans-Funktion","PDFE.Controllers.InsTab.txtFunction_Sech":"Hyperbolische Sekansfunktion","PDFE.Controllers.InsTab.txtFunction_Sin":"Sinus-Funktion","PDFE.Controllers.InsTab.txtFunction_Sinh":"Hyperbolische Sinusfunktion","PDFE.Controllers.InsTab.txtFunction_Tan":"Tangens-Funktion","PDFE.Controllers.InsTab.txtFunction_Tanh":"Hyperbolische Tangens-Funktion","PDFE.Controllers.InsTab.txtIntegral":"Integral","PDFE.Controllers.InsTab.txtIntegral_dtheta":"Differenzial Theta","PDFE.Controllers.InsTab.txtIntegral_dx":"Differenzial x","PDFE.Controllers.InsTab.txtIntegral_dy":"Differenzial y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"Integral mit gestapelten Grenzwerten","PDFE.Controllers.InsTab.txtIntegralDouble":"Doppelintegral","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"Doppelintegral mit gestapelten Grenzwerten","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"Doppelintegral mit Grenzwerten","PDFE.Controllers.InsTab.txtIntegralOriented":"Konturenintegral","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"Konturintegral mit gestapelten Grenzwerten","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"Oberflächenintegral","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"Oberflächenintegral mit gestapelten Grenzen","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"Flächenintegral mit Grenzen","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"Konturintegral mit Grenzwerten","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"Volumenintegral","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"Volumenintegral mit gestapelten Grenzen","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"Volumenintegral mit Grenzen","PDFE.Controllers.InsTab.txtIntegralSubSup":"Integral mit Grenzwerten","PDFE.Controllers.InsTab.txtIntegralTriple":"Dreifaches Integral","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"Dreifaches Integral mit gestapelten Grenzen","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"Dreifaches Integral mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"Logisch und","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"Logisch und mit unteren Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"Logisch und mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"Logisches Und mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"Logisches Und mit tiefgestellten/hochgestellten Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"Koprodukt","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"Koprodukt mit Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"Koprodukt mit Grenzwerten","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"Koprodukt mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"Koprodukt mit tiefgestellten/hochgestellten Grenzwerten","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"Summierung über k von n wähle k","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"Summation von i gleich Null bis n","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"Summationsbeispiel mit zwei Indizes","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"Produktbeispiel","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"Vereinigungsbeispiel","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"Logisch Oder","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"Logisch Oder mit unteren Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"Logisch Oder mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"Logisch Oder mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"Logisch Oder mit tiefgestellten/hochgestellten Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"Schnittmenge","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"Schnittmenge mit unterem Grenzwert","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"Schnittmenge mit Grenzwerten","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"Schnittmenge mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"Schnittmenge mit tiefgestellten/hochgestellten Grenzwerten","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"Produkt","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"Produkt mit unteren Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"Produkt mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"Produkt mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"Produkt mit tiefgestellten/hochgestellten Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"Summenbildung","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"Summenbildung mit unterer Grenze","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"Summenbildung mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"Summation mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"Summierung mit tiefgestellten/hochgestellten Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Union":"Vereinigung","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"Vereinigung mit unterer Grenze","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"Vereinigungsgrenzen","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"Vereinigung mit tiefgeschriebener unterer Grenze","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"Vereinigung mit tiefgeschriebenen/hochgeschriebenen Grenzen","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"Beispiel für Grenzwert","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"Beispiel für Maximum","PDFE.Controllers.InsTab.txtLimitLog_Lim":"Grenzwert","PDFE.Controllers.InsTab.txtLimitLog_Ln":"Natürlicher Logarithmus","PDFE.Controllers.InsTab.txtLimitLog_Log":"Logarithmus","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"Logarithmus","PDFE.Controllers.InsTab.txtLimitLog_Max":"Maximal","PDFE.Controllers.InsTab.txtLimitLog_Min":"Minimum","PDFE.Controllers.InsTab.txtLines":"Linien","PDFE.Controllers.InsTab.txtMath":"Mathematik","PDFE.Controllers.InsTab.txtMatrix_1_2":"1x2 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_1_3":"1x3 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_2_1":"2x1 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_2_2":"2x2 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"Leere 2 mal 2 Matrix in doppelten vertikalen Balken","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"Leere 2 mal 2 Determinante","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"Leere 2 auf 2 Matrix mit runden Klammern","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"Leere 2 mal 2 Matrix in Klammern","PDFE.Controllers.InsTab.txtMatrix_2_3":"2x3 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_3_1":"3x1 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_3_2":"3x2 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_3_3":"3x3 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"Grundlinienpunkte","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"Mittellinienpunkte","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"Diagonale Punkte","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"Vertikale Punkte","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"Dünnbesetzte Matrix in runden Klammern","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"Dünnbesetzte Matrix in Klammern","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"2x2 Identitätsmatrix mit Nullwerten","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"2x2-Identitätsmatrix mit leeren Zellen außerhalb der Diagonale","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"3x3 Identitätsmatrix mit Nullwerten","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"3x3-Identitätsmatrix mit leeren Zellen außerhalb der Diagonale","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"Pfeil nach rechts und links unten","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"Pfeil nach rechts und links oben","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"Pfeil nach links unten","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"Pfeil nach links oben","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"Pfeil nach rechts unten","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"Pfeil nach rechts oben","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"Doppelpunkt gleich","PDFE.Controllers.InsTab.txtOperator_Custom_1":"Ergibt","PDFE.Controllers.InsTab.txtOperator_Custom_2":"Delta ergibt","PDFE.Controllers.InsTab.txtOperator_Definition":"Gleich gemäß Definition","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"Delta gleich","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"Pfeil nach rechts und links darunter","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"Pfeil nach rechts und links darüber","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"Pfeil nach links unten","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"Pfeil nach links oben","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"Pfeil nach rechts unten","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"Pfeil nach rechts oben","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"Gleich Gleich","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"Minus Gleich","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"Plus Gleich","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"Gemessen an","PDFE.Controllers.InsTab.txtRadicalCustom_1":"Rechte Seite der quadratischen Formel","PDFE.Controllers.InsTab.txtRadicalCustom_2":"Wurzel eines quadratischen plus b quadratisch","PDFE.Controllers.InsTab.txtRadicalRoot_2":"Quadratwurzel mit Grad","PDFE.Controllers.InsTab.txtRadicalRoot_3":"Kubikwurzel","PDFE.Controllers.InsTab.txtRadicalRoot_n":"Wurzel mit Grad","PDFE.Controllers.InsTab.txtRadicalSqrt":"Quadratwurzel","PDFE.Controllers.InsTab.txtRectangles":"Rechtecke","PDFE.Controllers.InsTab.txtScriptCustom_1":"x tiefgestelltes y im Quadrat","PDFE.Controllers.InsTab.txtScriptCustom_2":"e zum Minus i Omega t","PDFE.Controllers.InsTab.txtScriptCustom_3":"x im Quadrat","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y links hochgestellt n links tiefgestellt eins","PDFE.Controllers.InsTab.txtScriptSub":"Tiefgestellt","PDFE.Controllers.InsTab.txtScriptSubSup":"Tiefgestellt-Hochgestellt","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"Hochgestellter/ tiefgestellter Index links","PDFE.Controllers.InsTab.txtScriptSup":"Hochgestellt","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"Legende mit Linie 1 (Rahmen und Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"Legende mit Linie 2 (Rahmen und Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"Legende mit Linie 3 (Rahmen und Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"Legende mit Linie 1 (Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"Legende mit Linie 2 (Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"Legende mit Linie 3 (Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"Schaltfläche \"Zurück\"","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"Button \"Start\"","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"Leere Schaltfläche","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"Dokumentschaltfläche","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"Schaltfläche „Beenden\"","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"Schaltfläche 'Weiter'","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"Schaltfläche \"Hilfe\"","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"Schaltfläche \"Startseite\"","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"Schaltfläche \"Informationen\"","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"Schaltfläche \"Movie\"","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"Schaltfläche „Zurück\"","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"Schaltfläche \"Ton\"","PDFE.Controllers.InsTab.txtShape_arc":"Bogen","PDFE.Controllers.InsTab.txtShape_bentArrow":"Gebogener Pfeil","PDFE.Controllers.InsTab.txtShape_bentConnector5":"Gewinkelte Verbindung","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"Gewinkelte Verbindung mit Pfeil","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"Gewinkelte Verbindung mit Doppelpfeil","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"Nach oben gebogener Pfeil","PDFE.Controllers.InsTab.txtShape_bevel":"Schräge Kante","PDFE.Controllers.InsTab.txtShape_blockArc":"Halbbogen","PDFE.Controllers.InsTab.txtShape_borderCallout1":"Legende mit Linie 1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"Legende mit Linie 2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"Legende mit Linie 3","PDFE.Controllers.InsTab.txtShape_bracePair":"Geschweifte Klammer","PDFE.Controllers.InsTab.txtShape_callout1":"Legende mit Linie 1 (ohne Rahmen)","PDFE.Controllers.InsTab.txtShape_callout2":"Legende mit Linie 2 (ohne Rahmen)","PDFE.Controllers.InsTab.txtShape_callout3":"Legende mit Linie 3 (ohne Rahmen)","PDFE.Controllers.InsTab.txtShape_can":"Zylinder","PDFE.Controllers.InsTab.txtShape_chevron":"Winkel","PDFE.Controllers.InsTab.txtShape_chord":"Akkord","PDFE.Controllers.InsTab.txtShape_circularArrow":"Gebogener Pfeil","PDFE.Controllers.InsTab.txtShape_cloud":"Cloud","PDFE.Controllers.InsTab.txtShape_cloudCallout":"Cloud Legende","PDFE.Controllers.InsTab.txtShape_corner":"Ecke","PDFE.Controllers.InsTab.txtShape_cube":"Cube","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"Gekrümmte Verbindung","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"Gekrümmte Verbindung mit Pfeil","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"Gekrümmte Verbindung mit Doppelpfeil","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"Nach unten gekrümmter Pfeil","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"Nach links gekrümmter Pfeil","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"Nach rechts gekrümmter Pfeil","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"Nach oben gekrümmter Pfeil","PDFE.Controllers.InsTab.txtShape_decagon":"Zehneck","PDFE.Controllers.InsTab.txtShape_diagStripe":"Diagonaler Streifen","PDFE.Controllers.InsTab.txtShape_diamond":"Raute","PDFE.Controllers.InsTab.txtShape_dodecagon":"Zwölfeck","PDFE.Controllers.InsTab.txtShape_donut":"Rad","PDFE.Controllers.InsTab.txtShape_doubleWave":"Doppelte Welle","PDFE.Controllers.InsTab.txtShape_downArrow":"Pfeil nach unten","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"Legende mit Pfeil nach unten","PDFE.Controllers.InsTab.txtShape_ellipse":"Ellipse","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"Nach unten gekrümmtes Band","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"Nach oben gekrümmtes Band","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"Flussdiagramm: Alternativer Prozess","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"Flussdiagramm: Zusammenstellen","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"Flussdiagramm: Verbindungsstelle","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"Flussdiagramm: Verzweigung","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"Flussdiagramm: Verzögerung","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"Flussdiagramm: Anzeige","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"Flussdiagramm: Dokument","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"Flussdiagramm: Auszug","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"Flussdiagramm: Daten","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"Flussdiagramm: Zentralspeicher","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"Flussdiagramm: Magnetplattenspeicher","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"Flussdiagramm: Datenträger mit direktem Zugriff","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"Flussdiagramm: Datenträger mit sequenziellem Zugriff","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"Flussdiagramm: Manuelle Eingabe","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"Flussdiagramm: Manuelle Verarbeitung","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"Flussdiagramm: Zusammenführen","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"Flussdiagramm: Mehrere Dokumente","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"Flussdiagramm: Verbindungsstelle zu einer anderen Seite","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"Flussdiagramm: Gespeicherte Daten","PDFE.Controllers.InsTab.txtShape_flowChartOr":"Flussdiagramm: Oder","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"Flussdiagramm: Vordefinierter Prozess","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"Flussdiagramm: Vorbereitung","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"Flussdiagramm: Prozess","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"Flussdiagramm: Karte","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"Flussdiagramm: Lochstreifen","PDFE.Controllers.InsTab.txtShape_flowChartSort":"Flussdiagramm: Sortieren","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"Flussdiagramm: Zusammenführung","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"Flussdiagramm: Grenzstelle","PDFE.Controllers.InsTab.txtShape_foldedCorner":"Gefaltete Ecke","PDFE.Controllers.InsTab.txtShape_frame":"Rahmen","PDFE.Controllers.InsTab.txtShape_halfFrame":"Halber Rahmen","PDFE.Controllers.InsTab.txtShape_heart":"Herz","PDFE.Controllers.InsTab.txtShape_heptagon":"Siebeneck","PDFE.Controllers.InsTab.txtShape_hexagon":"Sechseck","PDFE.Controllers.InsTab.txtShape_homePlate":"Richtungspfeil","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"Horizontaler Bildlauf","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"Explosion 1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"Explosion 2","PDFE.Controllers.InsTab.txtShape_leftArrow":"Pfeil nach links","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"Legende mit Pfeil nach links","PDFE.Controllers.InsTab.txtShape_leftBrace":"Geschweifte Klammer links","PDFE.Controllers.InsTab.txtShape_leftBracket":"Runde Klammer links","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"Pfeil nach links und rechts","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"Legende mit Pfeil nach links und rechts","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"Pfeil nach links, rechts und oben","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"Pfeil nach links und oben","PDFE.Controllers.InsTab.txtShape_lightningBolt":"Gewitterblitz","PDFE.Controllers.InsTab.txtShape_line":"Linie","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"Pfeil","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"Doppelpfeil","PDFE.Controllers.InsTab.txtShape_mathDivide":"Division","PDFE.Controllers.InsTab.txtShape_mathEqual":"Gleich","PDFE.Controllers.InsTab.txtShape_mathMinus":"Minus","PDFE.Controllers.InsTab.txtShape_mathMultiply":"Multiplizieren","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"Nicht gleich","PDFE.Controllers.InsTab.txtShape_mathPlus":"Plus","PDFE.Controllers.InsTab.txtShape_moon":"Monat","PDFE.Controllers.InsTab.txtShape_noSmoking":"Symbol \"Nein\"","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"Eingekerbter Pfeil nach rechts","PDFE.Controllers.InsTab.txtShape_octagon":"Achteck","PDFE.Controllers.InsTab.txtShape_parallelogram":"Parallelogramm","PDFE.Controllers.InsTab.txtShape_pentagon":"Richtungspfeil","PDFE.Controllers.InsTab.txtShape_pie":"Kreis","PDFE.Controllers.InsTab.txtShape_plaque":"Zeichen","PDFE.Controllers.InsTab.txtShape_plus":"Plus","PDFE.Controllers.InsTab.txtShape_polyline1":"Skizze","PDFE.Controllers.InsTab.txtShape_polyline2":"Freihandform","PDFE.Controllers.InsTab.txtShape_quadArrow":"Pfeil in vier Richtungen","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"Legende mit Pfeil in vier Richtungen","PDFE.Controllers.InsTab.txtShape_rect":"Rechteck","PDFE.Controllers.InsTab.txtShape_ribbon":"Band nach unten","PDFE.Controllers.InsTab.txtShape_ribbon2":"Band hoch","PDFE.Controllers.InsTab.txtShape_rightArrow":"Pfeil nach rechts","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"Legende mit Pfeil nach rechts","PDFE.Controllers.InsTab.txtShape_rightBrace":"Geschweifte Klammer rechts","PDFE.Controllers.InsTab.txtShape_rightBracket":"Runde Klammer rechts","PDFE.Controllers.InsTab.txtShape_round1Rect":"Eine Ecke des Rechtecks abrunden","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"Diagonal liegende Ecken des Rechtecks abrunden","PDFE.Controllers.InsTab.txtShape_round2SameRect":"Auf der gleichen Seite des Rechtecks liegende Ecken abrunden","PDFE.Controllers.InsTab.txtShape_roundRect":"Rechteck mit runden Ecken","PDFE.Controllers.InsTab.txtShape_rtTriangle":"Rechtwinkliges Dreieck","PDFE.Controllers.InsTab.txtShape_smileyFace":"Smiley-Gesicht","PDFE.Controllers.InsTab.txtShape_snip1Rect":"Eine Ecke des Rechtecks schneiden","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"Diagonal liegende Ecken des Rechtecks schneiden","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"Ecken des Rechtecks auf der gleichen Seite schneiden","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"Eine Ecke des Rechtecks schneiden und abrunden","PDFE.Controllers.InsTab.txtShape_spline":"Kurve","PDFE.Controllers.InsTab.txtShape_star10":"10-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star12":"12-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star16":"16-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star24":"24-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star32":"32-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star4":"4-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star5":"5-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star6":"6-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star7":"7-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star8":"8-zackiger Stern","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"Gestreifter Pfeil nach rechts","PDFE.Controllers.InsTab.txtShape_sun":"Sonne","PDFE.Controllers.InsTab.txtShape_teardrop":"Tropfenförmig","PDFE.Controllers.InsTab.txtShape_textRect":"Textfeld","PDFE.Controllers.InsTab.txtShape_trapezoid":"Trapezoid","PDFE.Controllers.InsTab.txtShape_triangle":"Dreieck","PDFE.Controllers.InsTab.txtShape_upArrow":"Pfeil nach oben","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"Legende mit Pfeil nach oben","PDFE.Controllers.InsTab.txtShape_upDownArrow":"Pfeil nach unten","PDFE.Controllers.InsTab.txtShape_uturnArrow":"180-Grad-Pfeil","PDFE.Controllers.InsTab.txtShape_verticalScroll":"Vertikaler Bildlauf","PDFE.Controllers.InsTab.txtShape_wave":"Welle","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"Ovale Legende","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"Rechteckige Legende","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"Abgerundete rechteckige Legende","PDFE.Controllers.InsTab.txtStarsRibbons":"Sterne und Bänder","PDFE.Controllers.InsTab.txtSymbol_about":"Circa","PDFE.Controllers.InsTab.txtSymbol_additional":"Komplement","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Alpha","PDFE.Controllers.InsTab.txtSymbol_approx":"Fast gleich","PDFE.Controllers.InsTab.txtSymbol_ast":"Stern-Operator","PDFE.Controllers.InsTab.txtSymbol_beta":"Beta","PDFE.Controllers.InsTab.txtSymbol_beth":"Bet","PDFE.Controllers.InsTab.txtSymbol_bullet":"Aufzählungsoperator","PDFE.Controllers.InsTab.txtSymbol_cap":"Schnittmenge","PDFE.Controllers.InsTab.txtSymbol_cbrt":"Kubikwurzel","PDFE.Controllers.InsTab.txtSymbol_cdots":"Horizontale Ellipse (Mittellinie)","PDFE.Controllers.InsTab.txtSymbol_celsius":"Grad Celsius","PDFE.Controllers.InsTab.txtSymbol_chi":"Chi","PDFE.Controllers.InsTab.txtSymbol_cong":"Ungefähr gleich ","PDFE.Controllers.InsTab.txtSymbol_cup":"Vereinigung","PDFE.Controllers.InsTab.txtSymbol_ddots":"Diagonale Ellipse nach unten rechts","PDFE.Controllers.InsTab.txtSymbol_degree":"Grad","PDFE.Controllers.InsTab.txtSymbol_delta":"Delta","PDFE.Controllers.InsTab.txtSymbol_div":"Divisionszeichen","PDFE.Controllers.InsTab.txtSymbol_downarrow":"Pfeil nach unten","PDFE.Controllers.InsTab.txtSymbol_emptyset":"Leere Menge","PDFE.Controllers.InsTab.txtSymbol_epsilon":"Epsilon","PDFE.Controllers.InsTab.txtSymbol_equals":"Gleich","PDFE.Controllers.InsTab.txtSymbol_equiv":"Identisch mit","PDFE.Controllers.InsTab.txtSymbol_eta":"Eta","PDFE.Controllers.InsTab.txtSymbol_exists":"Vorhanden","PDFE.Controllers.InsTab.txtSymbol_factorial":"Faktoriell","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"Grad Fahrenheit","PDFE.Controllers.InsTab.txtSymbol_forall":"Für alle","PDFE.Controllers.InsTab.txtSymbol_gamma":"Gamma","PDFE.Controllers.InsTab.txtSymbol_geq":"Größer als oder gleich wie ","PDFE.Controllers.InsTab.txtSymbol_gg":"Viel größer als","PDFE.Controllers.InsTab.txtSymbol_greater":"Größer als","PDFE.Controllers.InsTab.txtSymbol_in":"Element","PDFE.Controllers.InsTab.txtSymbol_inc":"Erhöhung","PDFE.Controllers.InsTab.txtSymbol_infinity":"Unendlichkeit","PDFE.Controllers.InsTab.txtSymbol_iota":"Jota","PDFE.Controllers.InsTab.txtSymbol_kappa":"Kappa","PDFE.Controllers.InsTab.txtSymbol_lambda":"Lambda","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"Pfeil nach links","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"Pfeil nach rechts und links","PDFE.Controllers.InsTab.txtSymbol_leq":"Weniger als oder gleich wie","PDFE.Controllers.InsTab.txtSymbol_less":"Weniger als","PDFE.Controllers.InsTab.txtSymbol_ll":"Viel kleiner als","PDFE.Controllers.InsTab.txtSymbol_minus":"Minus","PDFE.Controllers.InsTab.txtSymbol_mp":"Minus Plus","PDFE.Controllers.InsTab.txtSymbol_mu":"Mu","PDFE.Controllers.InsTab.txtSymbol_nabla":"Nabla","PDFE.Controllers.InsTab.txtSymbol_neq":"Nicht gleich","PDFE.Controllers.InsTab.txtSymbol_ni":"Enthält als Element","PDFE.Controllers.InsTab.txtSymbol_not":"Negationszeichen","PDFE.Controllers.InsTab.txtSymbol_notexists":"Nicht vorhanden","PDFE.Controllers.InsTab.txtSymbol_nu":"Nu","PDFE.Controllers.InsTab.txtSymbol_o":"Omikron","PDFE.Controllers.InsTab.txtSymbol_omega":"Omega","PDFE.Controllers.InsTab.txtSymbol_partial":"Partielles Differenzial","PDFE.Controllers.InsTab.txtSymbol_percent":"Prozentsatz","PDFE.Controllers.InsTab.txtSymbol_phi":"Phi","PDFE.Controllers.InsTab.txtSymbol_pi":"Pi","PDFE.Controllers.InsTab.txtSymbol_plus":"Plus","PDFE.Controllers.InsTab.txtSymbol_pm":"Plus Minus","PDFE.Controllers.InsTab.txtSymbol_propto":"Proportional zu","PDFE.Controllers.InsTab.txtSymbol_psi":"Psi","PDFE.Controllers.InsTab.txtSymbol_qdrt":"Vierte Wurzel","PDFE.Controllers.InsTab.txtSymbol_qed":"Ende des Beweises","PDFE.Controllers.InsTab.txtSymbol_rddots":"Horizontale Ellipse nach oben rechts","PDFE.Controllers.InsTab.txtSymbol_rho":"Rho","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"Pfeil nach rechts","PDFE.Controllers.InsTab.txtSymbol_sigma":"Sigma","PDFE.Controllers.InsTab.txtSymbol_sqrt":"Wurzelzeichen","PDFE.Controllers.InsTab.txtSymbol_tau":"Tau","PDFE.Controllers.InsTab.txtSymbol_therefore":"Folglich","PDFE.Controllers.InsTab.txtSymbol_theta":"Theta","PDFE.Controllers.InsTab.txtSymbol_times":"Multiplikationszeichen","PDFE.Controllers.InsTab.txtSymbol_uparrow":"Pfeil nach oben","PDFE.Controllers.InsTab.txtSymbol_upsilon":"Ypsilon","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"Epsilon (Variant)","PDFE.Controllers.InsTab.txtSymbol_varphi":"Phi Variant","PDFE.Controllers.InsTab.txtSymbol_varpi":"Pi Variant","PDFE.Controllers.InsTab.txtSymbol_varrho":"Rho Variant","PDFE.Controllers.InsTab.txtSymbol_varsigma":"Sigma Variant","PDFE.Controllers.InsTab.txtSymbol_vartheta":"Theta Variant","PDFE.Controllers.InsTab.txtSymbol_vdots":"Vertikale Ellipse","PDFE.Controllers.InsTab.txtSymbol_xsi":"Xi","PDFE.Controllers.InsTab.txtSymbol_zeta":"Zeta","PDFE.Controllers.LeftMenu.leavePageText":"Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
Klicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. Klicken Sie auf den Button \"OK\", so werden alle ungespeicherten Änderungen verloren gehen. ","PDFE.Controllers.LeftMenu.newDocumentTitle":"Unbetiteltes Dokument","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"Warnung","PDFE.Controllers.LeftMenu.requestEditRightsText":"Anfrage von Bearbeitungsberechtigung...","PDFE.Controllers.LeftMenu.textLoadHistory":"Versionshistorie wird geladen...","PDFE.Controllers.LeftMenu.textNoTextFound":"Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.","PDFE.Controllers.LeftMenu.textSelectPath":"Geben Sie einen neuen Namen zum Speichern der Dateikopie ein","PDFE.Controllers.LeftMenu.txtCompatible":"Das Dokument wird im neuen Format gespeichert. Es ermöglicht die Verwendung aller Funktionen, kann jedoch das Dokument-Layout beeinflussen.
Verwenden Sie die Option 'Kompatibilität' in den erweiterten Einstellungen, wenn Sie die Dateien mit älteren MS Word-Versionen kompatibel machen möchten.","PDFE.Controllers.LeftMenu.txtUntitled":"Unbenannt","PDFE.Controllers.LeftMenu.warnDownloadAs":"Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"{0} wird in ein bearbeitbares Format umgewandelt. Dies kann eine Weile dauern. Das Ausgabedokument wird so gestaltet, dass Sie den Text bearbeiten können. Es sieht also möglicherweise nicht genau so aus wie die ursprüngliche Datei {0}, besonders wenn sie viele Grafiken enthält.","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"Wenn Sie mit dem Speichern in diesem Format fortsetzen, kann die Formatierung teilweise verloren gehen.
Möchten Sie wirklich fortsetzen?","PDFE.Controllers.Main.applyChangesTextText":"Änderungen werden geladen","PDFE.Controllers.Main.applyChangesTitleText":"Änderungen werden geladen","PDFE.Controllers.Main.confirmMaxChangesSize":"Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze.
Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).","PDFE.Controllers.Main.convertationTimeoutText":"Timeout für die Konvertierung wurde überschritten.","PDFE.Controllers.Main.criticalErrorExtText":"Klicken Sie auf \"OK\", um zur Dokumentenliste zu gelangen.","PDFE.Controllers.Main.criticalErrorExtTextClose":"Drücken Sie OK, um den Editor zu schließen.","PDFE.Controllers.Main.criticalErrorTitle":"Fehler","PDFE.Controllers.Main.downloadErrorText":"Herunterladen ist fehlgeschlagen.","PDFE.Controllers.Main.downloadMergeText":"Ladevorgang...","PDFE.Controllers.Main.downloadMergeTitle":"Wird heruntergeladen","PDFE.Controllers.Main.downloadTextText":"Dokument wird heruntergeladen ...","PDFE.Controllers.Main.downloadTitleText":"Dokument wird herunterladen","PDFE.Controllers.Main.errorAccessDeny":"Sie versuchen eine Aktion durchzuführen für die Sie keine Rechte haben.
Bitte wenden Sie sich an Ihren Document Serveradministrator.","PDFE.Controllers.Main.errorBadImageUrl":"Bild-URL ist falsch","PDFE.Controllers.Main.errorCannotPasteImg":"Wir können dieses Bild nicht über die Zwischenablage einfügen. Sie können es aber auf Ihrem Gerät speichern und von dort aus einfügen, oder Sie können das Bild ohne Text kopieren und in das Dokument einfügen.","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"Verbindung zum Server ist verloren gegangen. Das Dokument kann momentan nicht bearbeitet werden.","PDFE.Controllers.Main.errorComboSeries":"Um ein Kombinationsdiagramm zu erstellen, wählen Sie mindestens zwei Datenreihen aus.","PDFE.Controllers.Main.errorConnectToServer":"Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.
Wenn Sie auf die Schaltfläche „OK“ klicken, werden Sie aufgefordert, das Dokument herunterzuladen.","PDFE.Controllers.Main.errorCopyDisabled":"Aus Sicherheitsgründen darf der Inhalt dieses Dokuments nicht kopiert werden.","PDFE.Controllers.Main.errorDatabaseConnection":"Externer Fehler.
Datenbankverbindungsfehler. Bitte kontaktieren Sie den Support, falls der Fehler weiterhin besteht.","PDFE.Controllers.Main.errorDataEncrypted":"Verschlüsselte Änderungen wurden empfangen. Sie können nicht entschlüsselt werden.","PDFE.Controllers.Main.errorDataRange":"Falscher Datenbereich.","PDFE.Controllers.Main.errorDefaultMessage":"Fehlercode: %1","PDFE.Controllers.Main.errorDirectUrl":"Bitte überprüfen Sie den Link zum Dokument.
Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.","PDFE.Controllers.Main.errorEditingDownloadas":"Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
Verwenden Sie die Option 'Herunterladen als', um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.","PDFE.Controllers.Main.errorEditingSaveas":"Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
Verwenden Sie die Option \"Speichern als ...\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.","PDFE.Controllers.Main.errorEmailClient":"Es wurde kein E-Mail-Client gefunden.","PDFE.Controllers.Main.errorFilePassProtect":"Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.","PDFE.Controllers.Main.errorFileSizeExceed":"Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.","PDFE.Controllers.Main.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.","PDFE.Controllers.Main.errorInconsistentExt":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.","PDFE.Controllers.Main.errorInconsistentExtDocx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.","PDFE.Controllers.Main.errorInconsistentExtPdf":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.","PDFE.Controllers.Main.errorInconsistentExtPptx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.","PDFE.Controllers.Main.errorInconsistentExtXlsx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.","PDFE.Controllers.Main.errorKeyEncrypt":"Unbekannter Schlüsseldeskriptor","PDFE.Controllers.Main.errorKeyExpire":"Der Schlüsseldeskriptor ist abgelaufen","PDFE.Controllers.Main.errorLoadingFont":"Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"Das eingegebene Kennwort ist ungültig.
Stellen Sie sicher, dass die FESTSTELLTASTE nicht aktiviert ist und dass Sie die korrekte Groß-/Kleinschreibung verwenden.","PDFE.Controllers.Main.errorPDFFormsLocked":"Die Aktion kann nicht ausgeführt werden, da sie Änderungen in gesperrten Formularen verursacht.","PDFE.Controllers.Main.errorSaveWatermark":"Diese Datei enthält ein Wasserzeichen, das mit einer anderen Domain verknüpft ist.
Um es in PDF sichtbar zu machen, aktualisieren Sie das Wasserzeichen, so dass es von derselben Domain wie Ihr Dokument verlinkt wird, oder laden Sie es von Ihrem Computer hoch.","PDFE.Controllers.Main.errorServerVersion":"Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.","PDFE.Controllers.Main.errorSessionAbsolute":"Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.","PDFE.Controllers.Main.errorSessionIdle":"Das Dokument wurde lange nicht bearbeitet. Laden Sie die Seite neu.","PDFE.Controllers.Main.errorSessionToken":"Die Verbindung zum Server wurde unterbrochen. Laden Sie die Seite neu.","PDFE.Controllers.Main.errorSetPassword":"Das Passwort konnte nicht festgelegt werden.","PDFE.Controllers.Main.errorStockChart":"Falsche Zeilenreihenfolge. Um ein Aktiendiagramm zu erstellen, platzieren Sie die Daten in der folgenden Reihenfolge auf dem Blatt:
Eröffnungspreis, Höchstpreis, Mindestpreis, Schlusskurs.","PDFE.Controllers.Main.errorTextFormWrongFormat":"Der eingegebene Wert stimmt nicht mit dem Format des Feldes überein.","PDFE.Controllers.Main.errorToken":"Sicherheitstoken des Dokuments ist nicht korrekt formatiert.
Wenden Sie sich an Ihren Serveradministrator.","PDFE.Controllers.Main.errorTokenExpire":"Sicherheitstoken des Dokuments ist abgelaufen.
Wenden Sie sich an Ihren Serveradministrator.","PDFE.Controllers.Main.errorUpdateVersion":"Die Dateiversion wurde geändert. Die Seite wird neu geladen.","PDFE.Controllers.Main.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.","PDFE.Controllers.Main.errorUserDrop":"Zugriff auf diese Datei ist derzeit nicht möglich.","PDFE.Controllers.Main.errorUsersExceed":"Die nach dem Zahlungsplan erlaubte Benutzeranzahl ist überschritten","PDFE.Controllers.Main.errorViewerDisconnect":"Die Verbindung ist unterbrochen. Sie können sich das Dokument noch anschauen.
Es ist aber momentan nicht möglich, es herunterzuladen oder auszudrucken, bis die Verbindung wiederhergestellt wird.","PDFE.Controllers.Main.leavePageText":"Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\" und dann \"Speichern\", um sie zu speichern. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.","PDFE.Controllers.Main.leavePageTextOnClose":"Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
Klicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. Klicken Sie auf den Button \"OK\", so werden alle ungespeicherten Änderungen verloren gehen. ","PDFE.Controllers.Main.loadFontsTextText":"Daten werden geladen...","PDFE.Controllers.Main.loadFontsTitleText":"Daten werden geladen","PDFE.Controllers.Main.loadFontTextText":"Daten werden geladen...","PDFE.Controllers.Main.loadFontTitleText":"Daten werden geladen","PDFE.Controllers.Main.loadImagesTextText":"Bilder werden geladen...","PDFE.Controllers.Main.loadImagesTitleText":"Bilder werden geladen","PDFE.Controllers.Main.loadImageTextText":"Bild wird geladen...","PDFE.Controllers.Main.loadImageTitleText":"Bild wird geladen","PDFE.Controllers.Main.loadingDocumentTextText":"Dokument wird geladen...","PDFE.Controllers.Main.loadingDocumentTitleText":"Dokument wird geladen...","PDFE.Controllers.Main.notcriticalErrorTitle":"Warnung","PDFE.Controllers.Main.openErrorText":"Beim Öffnen der Datei ist ein Fehler aufgetreten.","PDFE.Controllers.Main.openTextText":"Dokument wird geöffnet","PDFE.Controllers.Main.openTitleText":"Dokument wird geöffnet","PDFE.Controllers.Main.printTextText":"Dokument wird gedruckt","PDFE.Controllers.Main.printTitleText":"Dokuments wird gedruckt","PDFE.Controllers.Main.reloadButtonText":"Seite erneut laden","PDFE.Controllers.Main.requestEditFailedMessageText":"Jemand bearbeitet dieses Dokument in diesem Moment. Bitte versuchen Sie es später erneut.","PDFE.Controllers.Main.requestEditFailedTitleText":"Zugriff verweigert","PDFE.Controllers.Main.saveErrorText":"Beim Speichern der Datei ist ein Fehler aufgetreten.","PDFE.Controllers.Main.saveErrorTextDesktop":"Diese Datei kann nicht erstellt oder gespeichert werden.
Dies ist möglicherweise davon verursacht:
1. Die Datei ist schreibgeschützt.
2. Die Datei wird von anderen Benutzern bearbeitet.
3. Die Festplatte ist voll oder beschädigt.","PDFE.Controllers.Main.saveTextText":"Dokument wird gespeichert...","PDFE.Controllers.Main.saveTitleText":"Dokument wird gespeichert...","PDFE.Controllers.Main.scriptLoadError":"Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.","PDFE.Controllers.Main.splitDividerErrorText":"Die Zeilenanzahl muss ein Divisor von %1 sein.","PDFE.Controllers.Main.splitMaxColsErrorText":"Die Spaltenanzahl muss weniger als %1 sein.","PDFE.Controllers.Main.splitMaxRowsErrorText":"Die Zeilenanzahl muss weniger als %1 sein.","PDFE.Controllers.Main.textAnonymous":"Anonym","PDFE.Controllers.Main.textAnyone":"Alle","PDFE.Controllers.Main.textBuyNow":"Webseite besuchen","PDFE.Controllers.Main.textChangesSaved":"Alle Änderungen gespeichert","PDFE.Controllers.Main.textClose":"Schließen","PDFE.Controllers.Main.textCloseTip":"Klicken Sie, um den Tipp zu schließen","PDFE.Controllers.Main.textConnectionLost":"Es wird versucht, Verbindung herzustellen. Bitte überprüfen Sie die Verbindungseinstellungen.","PDFE.Controllers.Main.textContactUs":"Verkaufsteam kontaktieren","PDFE.Controllers.Main.textContinue":"Weiter","PDFE.Controllers.Main.textCustomLoader":"Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, das Ladeprogram zu wechseln.
Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.","PDFE.Controllers.Main.textDisconnect":"Verbindung wurde unterbrochen","PDFE.Controllers.Main.textGuest":"Gast","PDFE.Controllers.Main.textLearnMore":"Mehr erfahren","PDFE.Controllers.Main.textLoadingDocument":"Dokument wird geladen...","PDFE.Controllers.Main.textLongName":"Namen eingeben mit maximal 128 Buchstaben.","PDFE.Controllers.Main.textNoLicenseTitle":"Lizenzlimit erreicht","PDFE.Controllers.Main.textPaidFeature":"Kostenpflichtige Funktion","PDFE.Controllers.Main.textReconnect":"Verbindung wurde wiederhergestellt","PDFE.Controllers.Main.textRemember":"Meine Entscheidung für alle Dateien merken","PDFE.Controllers.Main.textRenameError":"Benutzername darf nicht leer sein.","PDFE.Controllers.Main.textRenameLabel":"Geben Sie den Namen für Zusammenarbeit ein","PDFE.Controllers.Main.textShape":"Form","PDFE.Controllers.Main.textStrict":"Formaler Modus","PDFE.Controllers.Main.textText":"Text","PDFE.Controllers.Main.textTryQuickPrint":"Sie haben Schnelldruck gewählt: Das gesamte Dokument wird auf dem zuletzt gewählten oder dem Standarddrucker gedruckt.
Sollen Sie fortfahren?","PDFE.Controllers.Main.textTryUndoRedo":"Undo/Redo Optionen für den halbformalen Zusammenbearbeitungsmodus sind deaktiviert.
Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.","PDFE.Controllers.Main.textTryUndoRedoWarn":"Undo/Redo Optionen für den schnellen Zusammenbearbeitungsmodus sind deaktiviert.","PDFE.Controllers.Main.textUndo":"Rückgängig machen","PDFE.Controllers.Main.textUpdateVersion":"Das Dokument kann im Moment nicht bearbeitet werden.
Es wird versucht, die Datei zu aktualisieren, bitte warten …","PDFE.Controllers.Main.textUpdating":"Aktualisierung","PDFE.Controllers.Main.tipLicenseExceeded":"Das Dokument ist im schreibgeschützten Modus geöffnet, da die durch die Lizenz zulässige maximale Anzahl gleichzeitiger Verbindungen erreicht wurde.

Bitte versuchen Sie es später erneut oder wenden Sie sich an den Eigentümer des Dokuments, wenn Sie Bearbeitungszugriff benötigen.","PDFE.Controllers.Main.tipLicenseUsersExceeded":"Das Dokument ist im schreibgeschützten Modus geöffnet, da die maximale Anzahl von Benutzern, die laut Lizenz Dokumente bearbeiten dürfen, erreicht wurde.

Bitte versuchen Sie es später erneut oder wenden Sie sich an den Dokumentbesitzer, wenn Sie Bearbeitungszugriff benötigen.","PDFE.Controllers.Main.titleLicenseExp":"Lizenz ist abgelaufen","PDFE.Controllers.Main.titleLicenseNotActive":"Lizenz nicht aktiv","PDFE.Controllers.Main.titleReadOnly":"Schreibgeschützter Modus","PDFE.Controllers.Main.titleServerVersion":"Editor wurde aktualisiert","PDFE.Controllers.Main.titleUpdateVersion":"Version wurde geändert","PDFE.Controllers.Main.txtArt":"Text hier eingeben","PDFE.Controllers.Main.txtButton":"Schaltfläche","PDFE.Controllers.Main.txtCheckbox":"Kontrollkästchen","PDFE.Controllers.Main.txtChoose":"Wählen Sie ein Element aus","PDFE.Controllers.Main.txtClickToLoad":"Klicken Sie, um das Bild zu laden","PDFE.Controllers.Main.txtDiagramTitle":"Diagrammtitel","PDFE.Controllers.Main.txtDocUnlockDescription":"Geben Sie ein Passwort ein, um den Schutz des Dokuments aufzuheben","PDFE.Controllers.Main.txtDropdown":"Dropdown","PDFE.Controllers.Main.txtEditingMode":"Bearbeitungsmodus festlegen...","PDFE.Controllers.Main.txtEnterDate":"Datum einfügen","PDFE.Controllers.Main.txtErrorLoadHistory":"Laden der Historie ist fehlgeschlagen ","PDFE.Controllers.Main.txtGroup":"Gruppe","PDFE.Controllers.Main.txtInvalidGreater":"Ungültiger Wert für Feld „{0}“: muss größer oder gleich {1} sein.","PDFE.Controllers.Main.txtInvalidGreaterLess":"Ungültiger Wert für Feld „{0}“: muss größer oder gleich {1} und kleiner oder gleich {2} sein.","PDFE.Controllers.Main.txtInvalidLess":"Ungültiger Wert für Feld „{0}“: muss kleiner oder gleich {1} sein.","PDFE.Controllers.Main.txtInvalidPdfFormat":"Der eingegebene Wert stimmt nicht mit dem Format des Feldes „{0}“ überein.","PDFE.Controllers.Main.txtInvalidValue":"Ungültiger Wert für Feld \"{0}\"","PDFE.Controllers.Main.txtListbox":"Listbox","PDFE.Controllers.Main.txtNeedSynchronize":"Änderungen sind verfügbar","PDFE.Controllers.Main.txtSaveCopyAsComplete":"Die Dateikopie wurde erfolgreich gespeichert","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"Dieses Dokument versucht, eine Verbindung zu {0} herzustellen.
Wenn Sie dieser Website vertrauen, drücken Sie OK.","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"Dieses Dokument versucht, den Dateidialog zu öffnen. Klicken Sie zum Öffnen auf „OK“.","PDFE.Controllers.Main.txtSeries":"Reihen","PDFE.Controllers.Main.txtSignature":"Signatur","PDFE.Controllers.Main.txtText":"Text","PDFE.Controllers.Main.txtUnlockTitle":"Dokumentschutz aufheben","PDFE.Controllers.Main.txtValidPdfFormat":"Der Feldwert sollte dem Format „{0}“ entsprechen.","PDFE.Controllers.Main.txtXAxis":"Achse X","PDFE.Controllers.Main.txtYAxis":"Achse Y","PDFE.Controllers.Main.unknownErrorText":"Unbekannter Fehler.","PDFE.Controllers.Main.unsupportedBrowserErrorText":"Ihr Webbrowser wird nicht unterstützt.","PDFE.Controllers.Main.uploadDocExtMessage":"Unbekanntes Dokumentformat.","PDFE.Controllers.Main.uploadDocFileCountMessage":"Keine Dokumente hochgeladen.","PDFE.Controllers.Main.uploadDocSizeMessage":"Maximale Dokumentgröße überschritten.","PDFE.Controllers.Main.uploadImageExtMessage":"Unbekanntes Bildformat.","PDFE.Controllers.Main.uploadImageFileCountMessage":"Kein Bild hochgeladen.","PDFE.Controllers.Main.uploadImageSizeMessage":"Das Bild ist zu groß. Die maximale Größe beträgt 25 MB.","PDFE.Controllers.Main.uploadImageTextText":"Das Bild wird hochgeladen...","PDFE.Controllers.Main.uploadImageTitleText":"Bild wird hochgeladen","PDFE.Controllers.Main.waitText":"Bitte warten...","PDFE.Controllers.Main.warnBrowserIE9":"Die Applkation hat geringte Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.","PDFE.Controllers.Main.warnBrowserZoom":"Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination Strg+0 wieder her.","PDFE.Controllers.Main.warnLicenseAnonymous":"Zugriff für anonyme Benutzer verweigert.
Dieses Dokument wird nur zur Ansicht geöffnet.","PDFE.Controllers.Main.warnLicenseBefore":"Lizenz nicht aktiv.
Bitte wenden Sie sich an Ihren Administrator.","PDFE.Controllers.Main.warnLicenseExp":"Ihre Lizenz ist abgelaufen.
Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"Die Lizenz ist abgelaufen.
Die Bearbeitungsfunktionen sind nicht verfügbar.
Bitte wenden Sie sich an Ihrem Administrator.","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"Die Lizenz muss aktualisiert werden.
Die Bearbeitungsfunktionen sind eingeschränkt.
Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff","PDFE.Controllers.Main.warnNoLicense":"Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.","PDFE.Controllers.Main.warnNoLicenseUsers":"Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um individuelle Upgrade-Bedingungen zu erhalten.","PDFE.Controllers.Main.warnProcessRightsChange":"Das Recht die Datei zu bearbeiten wurde Ihnen verweigert.","PDFE.Controllers.Navigation.txtBeginning":"Anfang des Dokuments","PDFE.Controllers.Navigation.txtGotoBeginning":"Zum Anfang des Dokuments gehen","PDFE.Controllers.Print.textMarginsLast":"Letzte Benutzerdefinierung","PDFE.Controllers.Print.txtCustom":"Benutzerdefiniert","PDFE.Controllers.Print.txtPrintRangeInvalid":"Ungültiger Druckbereich","PDFE.Controllers.RedactTab.applyButtonText":"Anwenden","PDFE.Controllers.RedactTab.doNotApplyButtonText":"Nicht anwenden","PDFE.Controllers.RedactTab.textApplyRedact":"Schwärzliche Informationen werden dauerhaft aus diesem Dokument entfernt. Nach dem Speichern können die Informationen nicht mehr abgerufen werden.","PDFE.Controllers.RedactTab.textEnterPageRange":"Geben Sie den Seitenbereich für die Schwärzung ein","PDFE.Controllers.RedactTab.textEnterRangeDescription":"z.B. 1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"Seiten schwärzen","PDFE.Controllers.RedactTab.textUnappliedRedactions":"Dieses Dokument enthält Schwärzungsmarkierungen, die noch nicht angewendet wurden.

Bis Sie “Schwärzungen anwenden” auswählen, können diese Markierungen entfernt und Informationen abgerufen werden.","PDFE.Controllers.RedactTab.tipApplyRedaction":"Alle Schwärzungen anwenden und speichern. Nicht gespeicherte Schwärzungen können noch rückgängig gemacht werden.","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"Schwärzungen anwenden","PDFE.Controllers.RedactTab.tipMarkForRedaction":"Verwenden Sie diese Tools, um vertrauliche Inhalte in Ihrem PDF zu markieren, zu suchen und zu schwärzen","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"Zum Schwärzen markieren","PDFE.Controllers.RedactTab.txtInvalidFormat":"Ungültiges Format. Verwenden Sie eine einzelne Zahl oder einen Bereich mit Bindestrich, z.B. 2 oder 2-6.","PDFE.Controllers.RedactTab.txtInvalidRange":"Die Seiten müssen zwischen 1 und {0} liegen","PDFE.Controllers.RedactTab.txtReversedRange":"Die Startseite muss kleiner oder gleich der Endseite sein.","PDFE.Controllers.Search.notcriticalErrorTitle":"Warnung","PDFE.Controllers.Search.textNoTextFound":"Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.","PDFE.Controllers.Search.textReplaceSkipped":"Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.","PDFE.Controllers.Search.textReplaceSuccess":"Die Suche wurde durchgeführt. {0} Einträge wurden ersetzt","PDFE.Controllers.Search.warnReplaceString":"{0} kann als Sonderzeichen für das Feld \"Ersetzen durch\" nicht verwendet werden.","PDFE.Controllers.Statusbar.textDisconnect":"Die Verbindung wurde unterbrochen
Verbindungsversuch. Bitte Verbindungseinstellungen überprüfen.","PDFE.Controllers.Statusbar.zoomText":"Zoom {0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"Die Schriftart, die Sie speichern möchten, ist auf dem aktuellen Gerät nicht verfügbar.
Der Textstil wird mit einer der Geräteschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.
Sollen Sie fortfahren?","PDFE.Controllers.Toolbar.errorAccessDeny":"Sie haben versucht die Änderungen im Dokument, zu dem Sie keine Berechtigungen haben, vorzunehemen.
Wenden Sie sich an Ihren Serveradministrator.","PDFE.Controllers.Toolbar.helpAnnotRect":"Entdecken Sie neue Anmerkungstools: Rechteck, Kreis, Pfeil und verbundene Linien.","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"Neue Anmerkungen","PDFE.Controllers.Toolbar.helpPdfCharts":"Fügen Sie Diagramme und SmartArt direkt in Ihre PDF-Dateien ein und bearbeiten Sie sie.","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"Diagramme und SmartArt in PDF","PDFE.Controllers.Toolbar.helpRedactTab":"Schützen Sie vertrauliche Informationen mit der Schwärzungsfunktion, die Ihnen das sichere Entfernen vertraulicher Inhalte ermöglicht.","PDFE.Controllers.Toolbar.helpRedactTabHeader":"In PDF schwärzen","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"Warnung","PDFE.Controllers.Toolbar.textFontSizeErr":"Der eingegebene Wert ist falsch.
Geben Sie bitte einen numerischen Wert zwischen 1 und 300 ein.","PDFE.Controllers.Toolbar.textGotIt":"OK","PDFE.Controllers.Toolbar.textRequired":"Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.","PDFE.Controllers.Toolbar.textSubmited":"Das Formular wurde erfolgreich übermittelt
Klicken Sie, um den Tipp zu schließen.","PDFE.Controllers.Toolbar.textTabForms":"Formulare","PDFE.Controllers.Toolbar.textWarning":"Warnung","PDFE.Controllers.Toolbar.txtDownload":"Herunterladen","PDFE.Controllers.Toolbar.txtNeedCommentMode":"Um Änderungen an der Datei zu speichern, wechseln Sie in den Kommentarmodus. Oder Sie können eine Kopie der geänderten Datei herunterladen.","PDFE.Controllers.Toolbar.txtNeedDownload":"Derzeit kann der PDF-Viewer neue Änderungen nur in separaten Dateikopien speichern. Kollaboratives Editieren wird nicht unterstützt und andere Benutzer sehen Ihre Änderungen nicht, es sei denn, Sie geben eine neue Dateiversion frei.","PDFE.Controllers.Toolbar.txtSaveCopy":"Kopie speichern","PDFE.Controllers.Toolbar.txtUntitled":"Unbenannt","PDFE.Controllers.Viewport.textFitPage":"Seite anpassen","PDFE.Controllers.Viewport.textFitWidth":"Breite anpassen","PDFE.Controllers.Viewport.txtDarkMode":"Dunkelmodus","PDFE.Views.ChartSettings.text3dDepth":"Tiefe (% der Basis)","PDFE.Views.ChartSettings.text3dHeight":"Höhe (% der Basis)","PDFE.Views.ChartSettings.text3dRotation":"3D-Drehung","PDFE.Views.ChartSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.ChartSettings.textAutoscale":"Autoskalierung","PDFE.Views.ChartSettings.textChartType":"Diagrammtyp ändern","PDFE.Views.ChartSettings.textData":"Daten","PDFE.Views.ChartSettings.textDefault":"Standardmäßige Drehung","PDFE.Views.ChartSettings.textDown":"Unten","PDFE.Views.ChartSettings.textEditData":"Daten ändern","PDFE.Views.ChartSettings.textEditLinks":"Links bearbeiten","PDFE.Views.ChartSettings.textHeight":"Höhe","PDFE.Views.ChartSettings.textKeepRatio":"Konstante Proportionen","PDFE.Views.ChartSettings.textLeft":"Links","PDFE.Views.ChartSettings.textLinkedData":"Verknüpfte Daten","PDFE.Views.ChartSettings.textNarrow":"Blickfeld verengen","PDFE.Views.ChartSettings.textPerspective":"Perspektive","PDFE.Views.ChartSettings.textRight":"Rechts","PDFE.Views.ChartSettings.textRightAngle":"Rechtwinklige Achsen","PDFE.Views.ChartSettings.textSelectData":"Daten auswählen","PDFE.Views.ChartSettings.textSize":"Größe","PDFE.Views.ChartSettings.textStyle":"Stil","PDFE.Views.ChartSettings.textUp":"Nach oben","PDFE.Views.ChartSettings.textUpdateData":"Daten aktualisieren","PDFE.Views.ChartSettings.textWiden":"Blickfeld verbreitern","PDFE.Views.ChartSettings.textWidth":"Breite","PDFE.Views.ChartSettings.textX":"X-Rotation","PDFE.Views.ChartSettings.textY":"Y-Rotation","PDFE.Views.ChartSettingsAdvanced.textAlt":"Alternativer Text","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"Beschreibung","PDFE.Views.ChartSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformationen wird Menschen mit Seh- oder kognitiven Beeinträchtigungen vorgelesen, damit sie besser verstehen, welche Informationen das Bild, die Form, das Diagramm oder die Tabelle enthält.","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"Titel","PDFE.Views.ChartSettingsAdvanced.textAuto":"Autom.","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"Achsenkreuze","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"Achsenposition","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"Titel","PDFE.Views.ChartSettingsAdvanced.textBase":"Basis","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"Zwischen den Teilstrichen","PDFE.Views.ChartSettingsAdvanced.textBillions":"Milliarden","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"Kategoriename","PDFE.Views.ChartSettingsAdvanced.textCenter":"Zentriert","PDFE.Views.ChartSettingsAdvanced.textChartName":"Name des Diagramms","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"Diagrammtitel","PDFE.Views.ChartSettingsAdvanced.textCross":"Kreuz","PDFE.Views.ChartSettingsAdvanced.textCustom":"Benutzerdefiniert","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"Datenbeschriftungen","PDFE.Views.ChartSettingsAdvanced.textFit":"Breite anpassen","PDFE.Views.ChartSettingsAdvanced.textFixed":"Fixiert","PDFE.Views.ChartSettingsAdvanced.textFormat":"Bezeichnungsformat","PDFE.Views.ChartSettingsAdvanced.textFrom":"Ab","PDFE.Views.ChartSettingsAdvanced.textGeneral":"Allgemein","PDFE.Views.ChartSettingsAdvanced.textGridLines":"Gitternetzlinien ","PDFE.Views.ChartSettingsAdvanced.textHeight":"Höhe","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"Achse ausblenden","PDFE.Views.ChartSettingsAdvanced.textHigh":"Hoch","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"Horizontale Achse","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"Horizontale Sekundärachse","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"Hunderte","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PDFE.Views.ChartSettingsAdvanced.textIn":"In","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"Innen unten","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"Innen oben","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"Konstante Proportionen","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"Achsenbeschriftungsabstand","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"Abstand zwischen Beschriftungen","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"Beschriftungsoptionen","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"Beschriftungsposition","PDFE.Views.ChartSettingsAdvanced.textLayout":"Layout","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"Überlagerung links","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"Unten","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"Links","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"Legende","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"Rechts","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"Oben","PDFE.Views.ChartSettingsAdvanced.textLines":"Linien","PDFE.Views.ChartSettingsAdvanced.textLogScale":"Logarithmische Skalierung","PDFE.Views.ChartSettingsAdvanced.textLow":"Niedrig","PDFE.Views.ChartSettingsAdvanced.textMajor":"Primäre","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"Primäre und sekundäre","PDFE.Views.ChartSettingsAdvanced.textMajorType":"Primärer Typ","PDFE.Views.ChartSettingsAdvanced.textManual":"Manuell","PDFE.Views.ChartSettingsAdvanced.textMarkers":"Markierungen","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"Abstand zwischen Teilstrichen","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"Maximalwert","PDFE.Views.ChartSettingsAdvanced.textMillions":"Millionen","PDFE.Views.ChartSettingsAdvanced.textMinor":"Sekundär","PDFE.Views.ChartSettingsAdvanced.textMinorType":"Sekundärer Typ","PDFE.Views.ChartSettingsAdvanced.textMinValue":"Minimalwert","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"Neben der Achse","PDFE.Views.ChartSettingsAdvanced.textNone":"Kein(e)","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"Ohne Überlagerung","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"Teilstriche","PDFE.Views.ChartSettingsAdvanced.textOut":"Außen","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"Außen oben","PDFE.Views.ChartSettingsAdvanced.textOverlay":"Überlagerung","PDFE.Views.ChartSettingsAdvanced.textPlacement":"Positionierung","PDFE.Views.ChartSettingsAdvanced.textPosition":"Position","PDFE.Views.ChartSettingsAdvanced.textReverse":"Werte in umgekehrter Reihenfolge","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"Überlagerung rechts","PDFE.Views.ChartSettingsAdvanced.textRotated":"Gedreht","PDFE.Views.ChartSettingsAdvanced.textSeparator":"Trennzeichen für Datenbeschriftungen","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"Reihenname","PDFE.Views.ChartSettingsAdvanced.textSize":"Größe","PDFE.Views.ChartSettingsAdvanced.textSmooth":"Glatt","PDFE.Views.ChartSettingsAdvanced.textStraight":"Gerade","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PDFE.Views.ChartSettingsAdvanced.textThousands":"Tausende","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"Parameter der Teilstriche","PDFE.Views.ChartSettingsAdvanced.textTitle":"Diagramm - Erweiterte Einstellungen","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"Obere linke Ecke","PDFE.Views.ChartSettingsAdvanced.textTrillions":"Billionen","PDFE.Views.ChartSettingsAdvanced.textUnits":"Anzeigeeinheiten","PDFE.Views.ChartSettingsAdvanced.textValue":"Wert","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"Vertikale Achse","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"Vertikale Sekundärachse","PDFE.Views.ChartSettingsAdvanced.textVertical":"Vertikal","PDFE.Views.ChartSettingsAdvanced.textWidth":"Breite","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"Überlagerung links","PDFE.Views.DocumentHolder.aboveText":"Oben","PDFE.Views.DocumentHolder.addCommentText":"Kommentar hinzufügen","PDFE.Views.DocumentHolder.advancedChartText":"Erweiterte Einstellungen des Diagramms","PDFE.Views.DocumentHolder.advancedEquationText":"Einstellungen der Gleichung","PDFE.Views.DocumentHolder.advancedImageText":"Erweiterte Bildeinstellungen","PDFE.Views.DocumentHolder.advancedParagraphText":"Erweiterte Absatzeinstellungen","PDFE.Views.DocumentHolder.advancedShapeText":"Erweiterte Einstellungen der Form","PDFE.Views.DocumentHolder.advancedTableText":"Erweiterte Tabellen-Einstellungen","PDFE.Views.DocumentHolder.AlignBottom":"Unten","PDFE.Views.DocumentHolder.AlignCenter":"Zentriert","PDFE.Views.DocumentHolder.AlignJust":"Ausrichten","PDFE.Views.DocumentHolder.AlignLeft":"Links","PDFE.Views.DocumentHolder.alignmentText":"Ausrichtung","PDFE.Views.DocumentHolder.AlignMiddle":"Mitte","PDFE.Views.DocumentHolder.AlignRight":"Rechts","PDFE.Views.DocumentHolder.AlignText":"Textausrichtung","PDFE.Views.DocumentHolder.AlignTop":"Oben","PDFE.Views.DocumentHolder.allLinearText":"Alle – Linear","PDFE.Views.DocumentHolder.allProfText":"Alle – Professionelle","PDFE.Views.DocumentHolder.belowText":"Unten","PDFE.Views.DocumentHolder.btnChart":"Hinzufügen, Entfernen oder Ändern von Diagrammelementen wie Titel, Legende, Gitternetzlinien und Datenbeschriftungen","PDFE.Views.DocumentHolder.cellAlignText":"Vertikale Ausrichtung in Zellen","PDFE.Views.DocumentHolder.cellText":"Zelle","PDFE.Views.DocumentHolder.centerText":"Zentriert","PDFE.Views.DocumentHolder.columnText":"Spalte","PDFE.Views.DocumentHolder.confirmAddFontName":"Die Schriftart, die Sie speichern möchten, ist auf dem aktuellen Gerät nicht verfügbar.
Der Textstil wird mit einer der Geräteschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.
Sollen Sie fortfahren?","PDFE.Views.DocumentHolder.currLinearText":"Aktuell – Linear","PDFE.Views.DocumentHolder.currProfText":"Aktuell – Professionell","PDFE.Views.DocumentHolder.deleteColumnText":"Spalte löschen","PDFE.Views.DocumentHolder.deleteRowText":"Zeile löschen","PDFE.Views.DocumentHolder.deleteTableText":"Tabelle löschen","PDFE.Views.DocumentHolder.deleteText":"Löschen","PDFE.Views.DocumentHolder.DepthAxis":"Z-Achse","PDFE.Views.DocumentHolder.direct270Text":"Text nach oben drehen","PDFE.Views.DocumentHolder.direct90Text":"Text nach unten drehen","PDFE.Views.DocumentHolder.directHText":"Horizontal","PDFE.Views.DocumentHolder.directionText":"Textausrichtung","PDFE.Views.DocumentHolder.editChartText":"Daten bearbeiten","PDFE.Views.DocumentHolder.editHyperlinkText":"Link bearbeiten","PDFE.Views.DocumentHolder.guestText":"Gast","PDFE.Views.DocumentHolder.hideEqToolbar":"Symbolleiste Gleichung ausblenden","PDFE.Views.DocumentHolder.hyperlinkText":"Link","PDFE.Views.DocumentHolder.insertColumnLeftText":"Spalte nach links","PDFE.Views.DocumentHolder.insertColumnRightText":"Spalte nach rechts","PDFE.Views.DocumentHolder.insertColumnText":"Spalte einfügen","PDFE.Views.DocumentHolder.insertRowAboveText":"Zeile oberhalb","PDFE.Views.DocumentHolder.insertRowBelowText":"Zeile unterhalb","PDFE.Views.DocumentHolder.insertRowText":"Zeile einfügen","PDFE.Views.DocumentHolder.insertText":"Einfügen","PDFE.Views.DocumentHolder.latexText":"LaTeX","PDFE.Views.DocumentHolder.leftText":"Links","PDFE.Views.DocumentHolder.mergeCellsText":"Zellen verbinden","PDFE.Views.DocumentHolder.mniImageFromFile":"Bild aus Datei","PDFE.Views.DocumentHolder.mniImageFromStorage":"Bild aus dem Speicher","PDFE.Views.DocumentHolder.mniImageFromUrl":"Bild aus URL","PDFE.Views.DocumentHolder.originalSizeText":"Aktuelle Größe","PDFE.Views.DocumentHolder.removeCommentText":"Löschen","PDFE.Views.DocumentHolder.removeHyperlinkText":"Link entfernen","PDFE.Views.DocumentHolder.rightText":"Rechts","PDFE.Views.DocumentHolder.rowText":"Zeile","PDFE.Views.DocumentHolder.selectText":"Auswählen","PDFE.Views.DocumentHolder.showEqToolbar":"Gleichungs-Symbolleiste anzeigen","PDFE.Views.DocumentHolder.splitCellsText":"Zelle teilen...","PDFE.Views.DocumentHolder.splitCellTitleText":"Zelle teilen","PDFE.Views.DocumentHolder.tableText":"Tabelle","PDFE.Views.DocumentHolder.textArrangeBack":"Zum Hintergrund senden","PDFE.Views.DocumentHolder.textArrangeBackward":"Nach hinten senden","PDFE.Views.DocumentHolder.textArrangeForward":"Vorwärts bringen","PDFE.Views.DocumentHolder.textArrangeFront":"In den Vordergrund bringen","PDFE.Views.DocumentHolder.textAxes":"Achsen","PDFE.Views.DocumentHolder.textAxisTitles":"Achsentitel","PDFE.Views.DocumentHolder.textBottom":"Unten","PDFE.Views.DocumentHolder.textCenter":"Zentriert","PDFE.Views.DocumentHolder.textChartTitle":"Diagrammtitel","PDFE.Views.DocumentHolder.textClearField":"Feld leeren","PDFE.Views.DocumentHolder.textCm":"cm","PDFE.Views.DocumentHolder.textColor":"Farbe","PDFE.Views.DocumentHolder.textCopy":"Kopieren","PDFE.Views.DocumentHolder.textCrop":"Zuschneiden","PDFE.Views.DocumentHolder.textCropFill":"Füllung","PDFE.Views.DocumentHolder.textCropFit":"Anpassen","PDFE.Views.DocumentHolder.textCustom":"Benutzerdefiniert","PDFE.Views.DocumentHolder.textCut":"Ausschneiden","PDFE.Views.DocumentHolder.textDataLabels":"Datenbeschriftungen","PDFE.Views.DocumentHolder.textDistributeCols":"Spalten verteilen","PDFE.Views.DocumentHolder.textDistributeRows":"Zeilen verteilen","PDFE.Views.DocumentHolder.textEditPoints":"Punkte bearbeiten","PDFE.Views.DocumentHolder.textErrorBars":"Fehlerbalken","PDFE.Views.DocumentHolder.textExponential":"Exponentiell ","PDFE.Views.DocumentHolder.textFit":"An Breite anpassen","PDFE.Views.DocumentHolder.textFlipH":"Horizontal kippen","PDFE.Views.DocumentHolder.textFlipV":"Vertikal kippen","PDFE.Views.DocumentHolder.textFontSizeErr":"Der eingegebene Wert ist falsch.
Geben Sie bitte einen numerischen Wert zwischen 1 und 300 ein","PDFE.Views.DocumentHolder.textFromFile":"Aus Datei","PDFE.Views.DocumentHolder.textFromStorage":"Aus dem Speicher","PDFE.Views.DocumentHolder.textFromUrl":"Aus URL","PDFE.Views.DocumentHolder.textGridLines":"Gitternetzlinien ","PDFE.Views.DocumentHolder.textHorAxis":"Horizontale Achse","PDFE.Views.DocumentHolder.textHorAxisSec":"Horizontale Sekundärachse","PDFE.Views.DocumentHolder.textHorizontalMajor":"Horizontal Major","PDFE.Views.DocumentHolder.textHorizontalMinor":"Horizontal Minor","PDFE.Views.DocumentHolder.textInnerBottom":"Innen unten","PDFE.Views.DocumentHolder.textInnerTop":"Innen oben","PDFE.Views.DocumentHolder.textLeft":"Links","PDFE.Views.DocumentHolder.textLeftData":"Links","PDFE.Views.DocumentHolder.textLeftOverlay":"Überlagerung links","PDFE.Views.DocumentHolder.textLegendPos":"Legende","PDFE.Views.DocumentHolder.textLinear":"Linear","PDFE.Views.DocumentHolder.textLinearForecast":"Lineare Prognose","PDFE.Views.DocumentHolder.textLines":"Linien","PDFE.Views.DocumentHolder.textMovingAverage":"Gleitender Durchschnitt (2)","PDFE.Views.DocumentHolder.textNone":"Kein(e)","PDFE.Views.DocumentHolder.textNoOverlay":"Ohne Überlagerung","PDFE.Views.DocumentHolder.textOuterTop":"Außen oben","PDFE.Views.DocumentHolder.textOverlay":"Überlagerung","PDFE.Views.DocumentHolder.textPaste":"Einfügen","PDFE.Views.DocumentHolder.textRecognize":"Text bearbeiten","PDFE.Views.DocumentHolder.textRedact":"Text schwärzen","PDFE.Views.DocumentHolder.textRedo":"Wiederholen","PDFE.Views.DocumentHolder.textReplace":"Bild ersetzen","PDFE.Views.DocumentHolder.textResetCrop":"Zuschneiden zurücksetzen","PDFE.Views.DocumentHolder.textRight":"Rechts","PDFE.Views.DocumentHolder.textRightOverlay":"Überlagerung rechts","PDFE.Views.DocumentHolder.textRotate":"Drehen","PDFE.Views.DocumentHolder.textRotate270":"Linksdrehung 90 Grad","PDFE.Views.DocumentHolder.textRotate90":"90° im UZS drehen","PDFE.Views.DocumentHolder.textSaveAsPicture":"Als Bild speichern","PDFE.Views.DocumentHolder.textShapeAlignBottom":"Unten ausrichten","PDFE.Views.DocumentHolder.textShapeAlignCenter":"Zentriert ausrichten","PDFE.Views.DocumentHolder.textShapeAlignLeft":"Linksbündig ausrichten","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"Mittig ausrichten","PDFE.Views.DocumentHolder.textShapeAlignRight":"Rechtsbündig ausrichten","PDFE.Views.DocumentHolder.textShapeAlignTop":"Oben ausrichten","PDFE.Views.DocumentHolder.textShapesMerge":"Formen zusammenführen","PDFE.Views.DocumentHolder.textShowLegendKeys":"Legendenschlüssel anzeigen","PDFE.Views.DocumentHolder.textShowUpDown":"Aufwärts-/Abwärtsbalken anzeigen","PDFE.Views.DocumentHolder.textStandardDeviation":"Standardabweichung","PDFE.Views.DocumentHolder.textStandardError":"Standardfehler","PDFE.Views.DocumentHolder.textTop":"Oben","PDFE.Views.DocumentHolder.textTrendline":"Trendlinie","PDFE.Views.DocumentHolder.textUndo":"Rückgängig machen","PDFE.Views.DocumentHolder.textUpDownBars":"Aufwärts-/Abwärtsbalken","PDFE.Views.DocumentHolder.textVertAxis":"Vertikale Achse","PDFE.Views.DocumentHolder.textVertAxisSec":"Vertikale Sekundärachse","PDFE.Views.DocumentHolder.textVerticalMajor":"Vertikale Major","PDFE.Views.DocumentHolder.textVerticalMinor":"Vertikale Minor","PDFE.Views.DocumentHolder.tipIsLocked":"Dieses Element wird gerade von einem anderen Benutzer bearbeitet.","PDFE.Views.DocumentHolder.tipRecognize":"Text bearbeiten","PDFE.Views.DocumentHolder.tipRedact":"Text schwärzen","PDFE.Views.DocumentHolder.txtAddBottom":"Unteren Rahmen hinzufügen","PDFE.Views.DocumentHolder.txtAddFractionBar":"Bruchstrich einfügen","PDFE.Views.DocumentHolder.txtAddHor":"Horizontale Linie einfügen","PDFE.Views.DocumentHolder.txtAddLB":"Linke untere Linie einfügen","PDFE.Views.DocumentHolder.txtAddLeft":"Linken Rahmen hinzufügen","PDFE.Views.DocumentHolder.txtAddLT":"Linke obere Linie einfügen","PDFE.Views.DocumentHolder.txtAddRight":"Rechten Rahmen hinzufügen","PDFE.Views.DocumentHolder.txtAddTop":"Oberen Rahmen hinzufügen","PDFE.Views.DocumentHolder.txtAddVer":"Vertikale Linie hinzufügen","PDFE.Views.DocumentHolder.txtAlign":"Ausrichtung","PDFE.Views.DocumentHolder.txtAlignToChar":"An einem Zeichen ausrichten","PDFE.Views.DocumentHolder.txtArrange":"Anordnen","PDFE.Views.DocumentHolder.txtBackground":"Hintergrund","PDFE.Views.DocumentHolder.txtBorderProps":"Rahmeneigenschaften","PDFE.Views.DocumentHolder.txtBottom":"Unten","PDFE.Views.DocumentHolder.txtColumnAlign":"Spaltenausrichtung","PDFE.Views.DocumentHolder.txtCopyPage":"Seite kopieren","PDFE.Views.DocumentHolder.txtCutPage":"Seite ausschneiden","PDFE.Views.DocumentHolder.txtDecreaseArg":"Argumentgröße reduzieren","PDFE.Views.DocumentHolder.txtDeleteArg":"Argument löschen","PDFE.Views.DocumentHolder.txtDeleteBreak":"Manuellen Umbruch löschen","PDFE.Views.DocumentHolder.txtDeleteChars":"Einschlusszeichen löschen","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Einschlusszeichen und Trennzeichen löschen","PDFE.Views.DocumentHolder.txtDeleteEq":"Formel löschen","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"Zeichen löschen","PDFE.Views.DocumentHolder.txtDeletePage":"Seite löschen","PDFE.Views.DocumentHolder.txtDeleteRadical":"Wurzel löschen","PDFE.Views.DocumentHolder.txtDistribHor":"Horizontal verteilen","PDFE.Views.DocumentHolder.txtDistribVert":"Vertikal verteilen","PDFE.Views.DocumentHolder.txtEmpty":"(Leer)","PDFE.Views.DocumentHolder.txtFractionLinear":"Zu linearer Bruchrechnung ändern","PDFE.Views.DocumentHolder.txtFractionSkewed":"Zu verzerrter Bruchrechnung ändern","PDFE.Views.DocumentHolder.txtFractionStacked":"Zu verzerrter Bruchrechnung ändern","PDFE.Views.DocumentHolder.txtGroup":"Gruppieren","PDFE.Views.DocumentHolder.txtGroupCharOver":"Zeichen über dem Text ","PDFE.Views.DocumentHolder.txtGroupCharUnder":"Zeichen unter dem Text ","PDFE.Views.DocumentHolder.txtHideBottom":"Untere Rahmenlinie verbergen","PDFE.Views.DocumentHolder.txtHideBottomLimit":"Untere Grenze verbergen","PDFE.Views.DocumentHolder.txtHideCloseBracket":"Schließende Klammer verbergen","PDFE.Views.DocumentHolder.txtHideDegree":"Grad verbergen","PDFE.Views.DocumentHolder.txtHideHor":"Horizontale Linie verbergen","PDFE.Views.DocumentHolder.txtHideLB":"Linke untere Zeile ausblenden","PDFE.Views.DocumentHolder.txtHideLeft":"Linken Rand ausblenden","PDFE.Views.DocumentHolder.txtHideLT":"Linke obere Zeile ausblenden","PDFE.Views.DocumentHolder.txtHideOpenBracket":"Öffnende Klammer verbergen","PDFE.Views.DocumentHolder.txtHidePlaceholder":"Platzhalter verbergen","PDFE.Views.DocumentHolder.txtHideRight":"Rahmenlinie rechts verbergen","PDFE.Views.DocumentHolder.txtHideTop":"Rahmenlinie oben verbergen","PDFE.Views.DocumentHolder.txtHideTopLimit":"Obergrenze verbergen","PDFE.Views.DocumentHolder.txtHideVer":"Vertikale Linie verbergen","PDFE.Views.DocumentHolder.txtIncreaseArg":"Argumentgröße erhöhen","PDFE.Views.DocumentHolder.txtInsertArgAfter":"Argument nachher einfügen","PDFE.Views.DocumentHolder.txtInsertArgBefore":"Argument vorher einfügen","PDFE.Views.DocumentHolder.txtInsertBreak":"Manuellen Umbruch einfügen","PDFE.Views.DocumentHolder.txtInsertEqAfter":"Formel nachher einfügen","PDFE.Views.DocumentHolder.txtInsertEqBefore":"Formel vorher einfügen","PDFE.Views.DocumentHolder.txtLimitChange":"Grenzwerten ändern ","PDFE.Views.DocumentHolder.txtLimitOver":"Grenzwert über den Text","PDFE.Views.DocumentHolder.txtLimitUnder":"Grenzwert unter den Text","PDFE.Views.DocumentHolder.txtMatchBrackets":"Eckige Klammern an Argumenthöhe anpassen","PDFE.Views.DocumentHolder.txtMatrixAlign":"Matrixausrichtung","PDFE.Views.DocumentHolder.txtNewPageAfter":"Leere Seite einfügen nach","PDFE.Views.DocumentHolder.txtNewPageBefore":"Leere Seite vorher einfügen","PDFE.Views.DocumentHolder.txtOpacity":"Undurchsichtigkeit","PDFE.Views.DocumentHolder.txtOverbar":"Balken über dem Text","PDFE.Views.DocumentHolder.txtPastePage":"Seite einfügen","PDFE.Views.DocumentHolder.txtPastePageAfter":"Seite einfügen nach","PDFE.Views.DocumentHolder.txtPastePageBefore":"Seite einfügen vor","PDFE.Views.DocumentHolder.txtPercentage":"Prozentsatz","PDFE.Views.DocumentHolder.txtPressLink":"Drücken Sie {0} und klicken Sie auf den Link","PDFE.Views.DocumentHolder.txtPrintSelection":"Auswahl drucken","PDFE.Views.DocumentHolder.txtRemFractionBar":"Bruchstrich entfernen","PDFE.Views.DocumentHolder.txtRemLimit":"Grenzwert entfernen","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"Akzentzeichen entfernen","PDFE.Views.DocumentHolder.txtRemoveBar":"Leiste entfernen","PDFE.Views.DocumentHolder.txtRemScripts":"Skripts entfernen","PDFE.Views.DocumentHolder.txtRemSubscript":"Tiefstellung entfernen","PDFE.Views.DocumentHolder.txtRemSuperscript":"Hochstellung entfernen","PDFE.Views.DocumentHolder.txtRotateLeft":"Nach links drehen","PDFE.Views.DocumentHolder.txtRotateRight":"Nach rechts drehen","PDFE.Views.DocumentHolder.txtScriptsAfter":"Scripts nach dem Text","PDFE.Views.DocumentHolder.txtScriptsBefore":"Scripts vor dem Text","PDFE.Views.DocumentHolder.txtSelectAll":"Alles auswählen","PDFE.Views.DocumentHolder.txtShowBottomLimit":"Untere Grenze zeigen","PDFE.Views.DocumentHolder.txtShowCloseBracket":"Schließende eckige Klammer anzeigen","PDFE.Views.DocumentHolder.txtShowDegree":"Grad anzeigen","PDFE.Views.DocumentHolder.txtShowOpenBracket":"Öffnende eckige Klammer anzeigen","PDFE.Views.DocumentHolder.txtShowPlaceholder":"Platzhaltertext anzeigen","PDFE.Views.DocumentHolder.txtShowTopLimit":"Höchstgrenze anzeigen","PDFE.Views.DocumentHolder.txtStretchBrackets":"Eckige Klammern dehnen","PDFE.Views.DocumentHolder.txtTop":"Oben","PDFE.Views.DocumentHolder.txtUnderbar":"Balken unter dem Text ","PDFE.Views.DocumentHolder.txtUngroup":"Gruppierung aufheben","PDFE.Views.DocumentHolder.txtWarnUrl":"Das Klicken auf diesen Link kann Ihrem Gerät und Ihren Daten schaden. Um Ihren Computer zu schützen, klicken Sie nur auf Links aus vertrauenswürdigen Quellen. Diese Seite ist möglicherweise unsicher:

{0}

Möchten Sie fortfahren?","PDFE.Views.DocumentHolder.unicodeText":"Unicode","PDFE.Views.DocumentHolder.vertAlignText":"Vertikale Ausrichtung","PDFE.Views.FileMenu.ariaFileMenu":"Dateimenü","PDFE.Views.FileMenu.btnBackCaption":"Dateispeicherort öffnen","PDFE.Views.FileMenu.btnCloseEditor":"Datei schließen","PDFE.Views.FileMenu.btnCloseMenuCaption":"Zurück","PDFE.Views.FileMenu.btnCreateNewCaption":"Neu erstellen","PDFE.Views.FileMenu.btnDownloadCaption":"Herunterladen als","PDFE.Views.FileMenu.btnExitCaption":"Schließen","PDFE.Views.FileMenu.btnFileOpenCaption":"Öffnen","PDFE.Views.FileMenu.btnHelpCaption":"Hilfe","PDFE.Views.FileMenu.btnHistoryCaption":"Versionsverlauf","PDFE.Views.FileMenu.btnInfoCaption":"Info","PDFE.Views.FileMenu.btnPrintCaption":"Drucken","PDFE.Views.FileMenu.btnProtectCaption":"Schützen","PDFE.Views.FileMenu.btnRecentFilesCaption":"Zuletzt verwendete öffnen","PDFE.Views.FileMenu.btnRenameCaption":"Umbenennen","PDFE.Views.FileMenu.btnReturnCaption":"Zurück zum Dokument","PDFE.Views.FileMenu.btnRightsCaption":"Zugriffsrechte","PDFE.Views.FileMenu.btnSaveAsCaption":"Speichern als","PDFE.Views.FileMenu.btnSaveCaption":"Speichern","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"Kopie speichern als","PDFE.Views.FileMenu.btnSettingsCaption":"Erweiterte Einstellungen","PDFE.Views.FileMenu.btnSuggestCaption":"Eine Funktion vorschlagen","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"In den Mobilmodus wechseln","PDFE.Views.FileMenu.btnToEditCaption":"Dokument bearbeiten","PDFE.Views.FileMenu.textDownload":"Herunterladen","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"Leeres Dokument","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Neu erstellen","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Anwenden","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Autor hinzufügen","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Text Hinzufügen","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Anwendung","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Zugriffsrechte ändern","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"Kommentar","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Allgemein","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Erstellt","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Dokumentinformation","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Schnelle Web-Anzeige","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Ladevorgang...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Zuletzt bearbeitet von","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Zuletzt bearbeitet","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"Nein","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Besitzer","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"Seiten","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Seitengröße","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Absätze","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF-Ersteller","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF mit Tags","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF-Version","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Standort","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personen mit Berechtigungen","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Buchstaben mit Leerzeichen","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Statistiken","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Betreff","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Buchstaben","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"Schlagwörter","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Titel","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Hochgeladen","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"Wörter","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"Ja","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Zugriffsrechte","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Zugriffsrechte ändern","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"Personen mit Berechtigungen","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Mit Kennwort","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"Datei schützen","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"Mit Signatur","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Dem Dokument wurden gültige Signaturen hinzugefügt.
Das Dokument ist vor Bearbeitung geschützt.","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Stellen Sie die Integrität des Dokuments durch Hinzufügen einer
unsichtbaren digitalen Signatur sicher.","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Dokument bearbeiten","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"Die Bearbeitung entfernt Signaturen aus diesem Dokument.
Möchten Sie trotzdem fortsetzen?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Dieses Dokument ist schreibgeschützt.","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Verschlüsseln Sie dieses Dokument mit einem Passwort","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Dieses Dokument muss signiert werden.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Gültige Signaturen wurden dem Dokument hinzugefügt. Das Dokument ist vor der Bearbeitung geschützt.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Einige der digitalen Signaturen im Dokument sind ungültig oder konnten nicht verifiziert werden. Das Dokument ist vor der Bearbeitung geschützt.","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"Signaturen anzeigen","PDFE.Views.FileMenuPanels.Settings.okButtonText":"Anwenden","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":" Modus \"Gemeinsame Bearbeitung\"","PDFE.Views.FileMenuPanels.Settings.strFast":"Schnell","PDFE.Views.FileMenuPanels.Settings.strFontRender":"Schriftglättung","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Tastenkombinationen","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"RTL-Schnittstelle","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"Echtzeit-Zusammenarbeit Änderungen ","PDFE.Views.FileMenuPanels.Settings.strShowComments":"Kommentare im Text anzeigen","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Änderungen von anderen Benutzern anzeigen","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Gelöste Kommentare anzeigen","PDFE.Views.FileMenuPanels.Settings.strStrict":"Formal","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"Stil der Registerkarte","PDFE.Views.FileMenuPanels.Settings.strTheme":"Thema der Benutzeroberfläche","PDFE.Views.FileMenuPanels.Settings.strUnit":"Maßeinheit","PDFE.Views.FileMenuPanels.Settings.strZoom":"Standard-Zoom-Wert","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"AutoWiederherstellen-Informationen speichern","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"Automatisches speichern","PDFE.Views.FileMenuPanels.Settings.textDisabled":"Deaktiviert","PDFE.Views.FileMenuPanels.Settings.textFill":"Füllung","PDFE.Views.FileMenuPanels.Settings.textForceSave":"Speichern von Zwischenversionen","PDFE.Views.FileMenuPanels.Settings.textLine":"Linie","PDFE.Views.FileMenuPanels.Settings.textMinute":"Jede Minute","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Erweiterte Einstellungen","PDFE.Views.FileMenuPanels.Settings.txtAll":"Alles anzeigen","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"Darstellung","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"Standard-Cache-Modus","PDFE.Views.FileMenuPanels.Settings.txtCm":"Zentimeter","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"Zusammenarbeit","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"Anpassen","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Schnellzugriff anpassen","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"Dunkelmodus aktivieren","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"Bearbeitung und Speicherung","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"Zusammenarbeit in Echtzeit. Alle Änderungen werden automatisch gespeichert","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"Seite anpassen","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"Breite anpassen","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Hieroglyphen","PDFE.Views.FileMenuPanels.Settings.txtInch":"Zoll","PDFE.Views.FileMenuPanels.Settings.txtLast":"Letztes anzeigen","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"Zuletzt benutzt","PDFE.Views.FileMenuPanels.Settings.txtMac":"wie OS X","PDFE.Views.FileMenuPanels.Settings.txtNative":"Native","PDFE.Views.FileMenuPanels.Settings.txtNone":"Keines anzeigen","PDFE.Views.FileMenuPanels.Settings.txtPt":"Punkt","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"Die Schaltfläche Schnelldruck in der Kopfzeile des Editors anzeigen","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"Unterstützung für Bildschirmleser einschalten","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"Verwenden Sie die Schaltfläche \"Speichern\", um die vorgenommenen Änderungen zu synchronisieren.","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"Farbe der Symbolleiste als Hintergrund für Registerkarten verwenden","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"Verwenden Sie die Alt-Taste, um über die Tastatur in der Benutzeroberfläche zu navigieren.","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"Beim Auswählen von Text die Minisymbolleiste verwenden","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Verwenden Sie die Options-Taste, um über die Tastatur in der Benutzeroberfläche zu navigieren.","PDFE.Views.FileMenuPanels.Settings.txtWin":"wie Windows","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"Arbeitsbereich","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"Schnellzugriff anpassen","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Herunterladen als","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Kopie speichern als","PDFE.Views.FormatSettingsDialog.textAfter":"Nachher ohne Leerzeichen","PDFE.Views.FormatSettingsDialog.textAfterSpace":"Nachher mit Leerzeichen","PDFE.Views.FormatSettingsDialog.textBefore":"Vorher ohne Leerzeichen","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"Vorher mit Leerzeichen","PDFE.Views.FormatSettingsDialog.textCategory":"Kategorie","PDFE.Views.FormatSettingsDialog.textDate":"Datum","PDFE.Views.FormatSettingsDialog.textDecimal":"Dezimalstellen","PDFE.Views.FormatSettingsDialog.textFormat":"Format","PDFE.Views.FormatSettingsDialog.textLocation":"Symbolposition","PDFE.Views.FormatSettingsDialog.textMask":"Beliebige Maske","PDFE.Views.FormatSettingsDialog.textNegative":"Negativer Zahlenstil","PDFE.Views.FormatSettingsDialog.textNone":"Kein(e)","PDFE.Views.FormatSettingsDialog.textNumber":"Nummer","PDFE.Views.FormatSettingsDialog.textParens":"Klammern anzeigen","PDFE.Views.FormatSettingsDialog.textPercent":"Prozentsatz","PDFE.Views.FormatSettingsDialog.textPhone":"Telefonnummer","PDFE.Views.FormatSettingsDialog.textRed":"Roten Text verwenden","PDFE.Views.FormatSettingsDialog.textReg":"Regulärer Ausdruck","PDFE.Views.FormatSettingsDialog.textSeparator":"Trennzeichenstil","PDFE.Views.FormatSettingsDialog.textSpecial":"Speziell","PDFE.Views.FormatSettingsDialog.textSSN":"Sozialversicherungsnummer","PDFE.Views.FormatSettingsDialog.textSymbol":"Währungssymbol","PDFE.Views.FormatSettingsDialog.textTime":"Zeit","PDFE.Views.FormatSettingsDialog.textTitle":"Formateinstellungen","PDFE.Views.FormatSettingsDialog.textZipCode":"Postleitzahl","PDFE.Views.FormatSettingsDialog.textZipCode4":"Postleitzahl + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"Benutzerdefiniert","PDFE.Views.FormatSettingsDialog.txtSample":"Beispiel:","PDFE.Views.FormSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.FormSettings.textAlways":"Immer","PDFE.Views.FormSettings.textAnamorphic":"Nicht proportional","PDFE.Views.FormSettings.textArabic":"Arabisch","PDFE.Views.FormSettings.textAutofit":"AutoFit","PDFE.Views.FormSettings.textBackgroundColor":"Hintergrundfarbe","PDFE.Views.FormSettings.textBehavior":"Verhalten","PDFE.Views.FormSettings.textBeveled":"Abgeschrägt","PDFE.Views.FormSettings.textBorder":"Rahmen","PDFE.Views.FormSettings.textButton":"Schaltfläche","PDFE.Views.FormSettings.textChbStyle":"Kontrollkästchenstil","PDFE.Views.FormSettings.textCheck":"Häkchen","PDFE.Views.FormSettings.textCheckbox":"Kontrollkästchen","PDFE.Views.FormSettings.textCheckDefault":"Das Kontrollkästchen ist standardmäßig aktiviert","PDFE.Views.FormSettings.textCircle":"Kreis","PDFE.Views.FormSettings.textClear":"Löschen","PDFE.Views.FormSettings.textColor":"Farbe","PDFE.Views.FormSettings.textComb":"Zeichenanzahl in Textfeld","PDFE.Views.FormSettings.textCombobox":"Kombinationsfeld","PDFE.Views.FormSettings.textCommit":"Ausgewählten Wert sofort festschreiben","PDFE.Views.FormSettings.textCross":"Kreuz","PDFE.Views.FormSettings.textCustomText":"Benutzerdefinierten Text zulassen","PDFE.Views.FormSettings.textDashed":"Gestrichelt","PDFE.Views.FormSettings.textDate":"Datum","PDFE.Views.FormSettings.textDateField":"Feld Datum & Uhrzeit","PDFE.Views.FormSettings.textDiamond":"Raute","PDFE.Views.FormSettings.textDown":"Unten","PDFE.Views.FormSettings.textExport":"Exportwert","PDFE.Views.FormSettings.textField":"Textfeld","PDFE.Views.FormSettings.textFitBounds":"An Grenzen anpassen","PDFE.Views.FormSettings.textFormat":"Format","PDFE.Views.FormSettings.textFromFile":"Aus Datei","PDFE.Views.FormSettings.textFromStorage":"Aus dem Speicher","PDFE.Views.FormSettings.textFromUrl":"Aus einer URL","PDFE.Views.FormSettings.textHindi":"Hindi","PDFE.Views.FormSettings.textHover":"Sich umdrehen","PDFE.Views.FormSettings.textHowScale":"Maßstab","PDFE.Views.FormSettings.textIcon":"Symbol","PDFE.Views.FormSettings.textIconLeft":"Symbol links, Beschriftung rechts","PDFE.Views.FormSettings.textIconOnly":"Nur Symbol","PDFE.Views.FormSettings.textIconTop":"Symbol oben, Beschriftung unten","PDFE.Views.FormSettings.textImage":"Bild","PDFE.Views.FormSettings.textInset":"Einsatz","PDFE.Views.FormSettings.textInvert":"Umkehren","PDFE.Views.FormSettings.textLabel":"Bezeichnung","PDFE.Views.FormSettings.textLabelLeft":"Beschriftung links, Symbol rechts","PDFE.Views.FormSettings.textLabelTop":"Beschriftung oben, Symbol unten","PDFE.Views.FormSettings.textLayout":"Layout","PDFE.Views.FormSettings.textListBox":"Listenfeld","PDFE.Views.FormSettings.textLock":"Sperren","PDFE.Views.FormSettings.textMask":"Beliebige Maske","PDFE.Views.FormSettings.textMaxChars":"Zeichengrenze","PDFE.Views.FormSettings.textMedium":"Medium","PDFE.Views.FormSettings.textMulti":"Mehrzeilig","PDFE.Views.FormSettings.textMultisel":"Mehrfachauswahl","PDFE.Views.FormSettings.textName":"Name","PDFE.Views.FormSettings.textNever":"Niemals","PDFE.Views.FormSettings.textNoBorder":"Keine Rahmen","PDFE.Views.FormSettings.textNoFill":"Ohne Füllung","PDFE.Views.FormSettings.textNone":"Kein(e)","PDFE.Views.FormSettings.textNormal":"Nach oben","PDFE.Views.FormSettings.textNumber":"Nummer","PDFE.Views.FormSettings.textNumeral":"Ziffer","PDFE.Views.FormSettings.textOrientation":"Orientierung","PDFE.Views.FormSettings.textOutline":"Gliederung","PDFE.Views.FormSettings.textOverlay":"Beschriftung über Symbol","PDFE.Views.FormSettings.textPassword":"Kennwort","PDFE.Views.FormSettings.textPercent":"Prozentsatz","PDFE.Views.FormSettings.textPhone":"Telefonnummer","PDFE.Views.FormSettings.textPlaceholder":"Platzhalter","PDFE.Views.FormSettings.textPlacement":"Symbolplatzierung","PDFE.Views.FormSettings.textProportional":"Proportional","PDFE.Views.FormSettings.textPush":"Schieben","PDFE.Views.FormSettings.textRadiobox":"Radiobutton","PDFE.Views.FormSettings.textRadioChoice":"Auswahl der Optionsschaltflächen","PDFE.Views.FormSettings.textRadioDefault":"Schaltfläche ist standardmäßig aktiviert","PDFE.Views.FormSettings.textRadioStyle":"Schaltflächenstil","PDFE.Views.FormSettings.textReadonly":"Schreibgeschützt","PDFE.Views.FormSettings.textReg":"Regulärer Ausdruck","PDFE.Views.FormSettings.textRequired":"Erforderlich","PDFE.Views.FormSettings.textScale":"Wann skalieren","PDFE.Views.FormSettings.textScroll":"Langen Text scrollen","PDFE.Views.FormSettings.textSelect":"Auswählen","PDFE.Views.FormSettings.textSolid":"Einfarbig","PDFE.Views.FormSettings.textSpecial":"Speziell","PDFE.Views.FormSettings.textSquare":"Quadrat","PDFE.Views.FormSettings.textSSN":"Sozialversicherungsnummer","PDFE.Views.FormSettings.textStar":"Stern","PDFE.Views.FormSettings.textState":"Zustand","PDFE.Views.FormSettings.textStyle":"Stil","PDFE.Views.FormSettings.textText":"Text","PDFE.Views.FormSettings.textTextOnly":"Nur Beschriftung","PDFE.Views.FormSettings.textThick":"Dick","PDFE.Views.FormSettings.textThickness":"Dicke","PDFE.Views.FormSettings.textThin":"Dünn","PDFE.Views.FormSettings.textTime":"Zeit","PDFE.Views.FormSettings.textTip":"Tipp","PDFE.Views.FormSettings.textTipAdd":"Neuen Wert hinzufügen","PDFE.Views.FormSettings.textTipDelete":"Wert löschen","PDFE.Views.FormSettings.textTipDown":"Nach unten bewegen","PDFE.Views.FormSettings.textTipUp":"Nach oben bewegen","PDFE.Views.FormSettings.textTooBig":"Das Bild ist zu groß","PDFE.Views.FormSettings.textTooSmall":"Das Bild ist zu klein","PDFE.Views.FormSettings.textUnderline":"Unterstrichen","PDFE.Views.FormSettings.textUnison":"Schaltflächen mit demselben Namen und derselben Auswahl werden gemeinsam ausgewählt","PDFE.Views.FormSettings.textUnlock":"Entsperren","PDFE.Views.FormSettings.textValue":"Wertoptionen","PDFE.Views.FormSettings.textZipCode":"Postleitzahl","PDFE.Views.FormSettings.textZipCode4":"Postleitzahl + 4","PDFE.Views.FormSettings.txtCustom":"Benutzerdefiniert","PDFE.Views.FormsTab.capBtnCheckBox":"Kontrollkästchen","PDFE.Views.FormsTab.capBtnComboBox":"Kombinationsfeld","PDFE.Views.FormsTab.capBtnDropDown":"Listenfeld","PDFE.Views.FormsTab.capBtnEmail":"E-Mail-Adresse","PDFE.Views.FormsTab.capBtnImage":"Bild","PDFE.Views.FormsTab.capBtnNext":"Nächstes Feld","PDFE.Views.FormsTab.capBtnPhone":"Telefonnummer","PDFE.Views.FormsTab.capBtnPrev":"Vorheriges Feld","PDFE.Views.FormsTab.capBtnRadioBox":"Radiobutton","PDFE.Views.FormsTab.capBtnText":"Textfeld","PDFE.Views.FormsTab.capCreditCard":"Kreditkarte","PDFE.Views.FormsTab.capDateTime":"Datum & Uhrzeit","PDFE.Views.FormsTab.capZipCode":"Postleitzahl","PDFE.Views.FormsTab.textAnyone":"Alle","PDFE.Views.FormsTab.textClear":"Felder löschen","PDFE.Views.FormsTab.textClearFields":"Alle Felder löschen","PDFE.Views.FormsTab.tipCheckBox":"Checkbox einfügen","PDFE.Views.FormsTab.tipComboBox":"Combobox einfügen","PDFE.Views.FormsTab.tipCreditCard":"Kreditkartennummer eingeben","PDFE.Views.FormsTab.tipDateTime":"Datum und Uhrzeit einfügen","PDFE.Views.FormsTab.tipDropDown":"Listenfeld einfügen","PDFE.Views.FormsTab.tipEmailField":"E-Mail Adresse einfügen","PDFE.Views.FormsTab.tipImageField":"Bild einfügen","PDFE.Views.FormsTab.tipNextForm":"Zum nächsten Feld wechseln","PDFE.Views.FormsTab.tipPhoneField":"Telefonnummer einfügen","PDFE.Views.FormsTab.tipPrevForm":"Zum vorherigen Feld wechseln","PDFE.Views.FormsTab.tipRadioBox":"Radiobutton einfügen","PDFE.Views.FormsTab.tipTextField":"Textfeld einfügen","PDFE.Views.FormsTab.tipZipCode":"Postleitzahl einfügen","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"Anzeigen","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"Verknüpfen mit","PDFE.Views.HyperlinkSettingsDialog.textDefault":"Gewählter Textabschnitt","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"Geben Sie die Überschrift hier ein","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"Geben Sie den Link hier ein","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"Geben Sie den QuickInfo-Text hier ein","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"Externer Link","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"Seite in diesem Dokument","PDFE.Views.HyperlinkSettingsDialog.textPages":"Seiten","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"Datei auswählen","PDFE.Views.HyperlinkSettingsDialog.textTipText":"QuickInfo-Text","PDFE.Views.HyperlinkSettingsDialog.textTitle":"Linkeinstellungen","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"Verwenden Sie die Bildlaufleisten, die Maus und die Zoomfunktion, um die Zielansicht auszuwählen, und klicken Sie dann auf „Link setzen“, um das Verknüpfungsziel zu erstellen.","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"Erstellen Zur Ansicht gehen","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"Dieses Feld ist erforderlich","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"Erste Seite","PDFE.Views.HyperlinkSettingsDialog.txtLast":"Letzte Seite","PDFE.Views.HyperlinkSettingsDialog.txtNext":"Nächste Seite","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"Dieses Feld muss eine URL im Format \"http://www.example.com\" enthalten","PDFE.Views.HyperlinkSettingsDialog.txtPage":"Seite","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"Zur Seitenansicht wechseln","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"Vorherige Seite","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"Link setzen","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Dieses Feld soll maximal 2083 Zeichen beinhalten","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Geben Sie die Webadresse ein oder wählen Sie eine Datei aus","PDFE.Views.ImageSettings.strTransparency":"Undurchsichtigkeit","PDFE.Views.ImageSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.ImageSettings.textCrop":"Zuschneiden","PDFE.Views.ImageSettings.textCropFill":"Füllung","PDFE.Views.ImageSettings.textCropFit":"Anpassen","PDFE.Views.ImageSettings.textCropToShape":"Auf Form zuschneiden","PDFE.Views.ImageSettings.textEdit":"Bearbeiten","PDFE.Views.ImageSettings.textEditObject":"Objekt bearbeiten","PDFE.Views.ImageSettings.textFitPage":"Seite anpassen","PDFE.Views.ImageSettings.textFlip":"Umdrehen","PDFE.Views.ImageSettings.textFromFile":"Aus Datei","PDFE.Views.ImageSettings.textFromStorage":"Aus dem Speicher","PDFE.Views.ImageSettings.textFromUrl":"Aus URL","PDFE.Views.ImageSettings.textHeight":"Höhe","PDFE.Views.ImageSettings.textHint270":"Linksdrehung 90 Grad","PDFE.Views.ImageSettings.textHint90":"90° im UZS drehen","PDFE.Views.ImageSettings.textHintFlipH":"Horizontal kippen","PDFE.Views.ImageSettings.textHintFlipV":"Vertikal kippen","PDFE.Views.ImageSettings.textInsert":"Bild ersetzen","PDFE.Views.ImageSettings.textOriginalSize":"Aktuelle Größe","PDFE.Views.ImageSettings.textRecentlyUsed":"Zuletzt verwendet","PDFE.Views.ImageSettings.textResetCrop":"Zuschneiden zurücksetzen","PDFE.Views.ImageSettings.textRotate90":"90 Grad drehen","PDFE.Views.ImageSettings.textRotation":"Rotation","PDFE.Views.ImageSettings.textSize":"Größe","PDFE.Views.ImageSettings.textWidth":"Breite","PDFE.Views.ImageSettingsAdvanced.textAlt":"Alternativer Text","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"Beschreibung","PDFE.Views.ImageSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"Titel","PDFE.Views.ImageSettingsAdvanced.textAngle":"Winkel","PDFE.Views.ImageSettingsAdvanced.textCenter":"Zentriert","PDFE.Views.ImageSettingsAdvanced.textFlipped":"Gekippt","PDFE.Views.ImageSettingsAdvanced.textFrom":"Ab","PDFE.Views.ImageSettingsAdvanced.textGeneral":"Allgemein","PDFE.Views.ImageSettingsAdvanced.textHeight":"Höhe","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontal","PDFE.Views.ImageSettingsAdvanced.textImageName":"Bildname","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"Seitenverhältnis beibehalten","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"Aktuelle Größe","PDFE.Views.ImageSettingsAdvanced.textPlacement":"Positionierung","PDFE.Views.ImageSettingsAdvanced.textPosition":"Position","PDFE.Views.ImageSettingsAdvanced.textRotation":"Rotation","PDFE.Views.ImageSettingsAdvanced.textSize":"Größe","PDFE.Views.ImageSettingsAdvanced.textTitle":"Bild - Erweiterte Einstellungen","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"Obere linke Ecke","PDFE.Views.ImageSettingsAdvanced.textVertical":"Vertikal","PDFE.Views.ImageSettingsAdvanced.textVertically":"Vertikal","PDFE.Views.ImageSettingsAdvanced.textWidth":"Breite","PDFE.Views.InsTab.capBlankPage":"Leere Seite","PDFE.Views.InsTab.capBtnDateTime":"Datum & Uhrzeit","PDFE.Views.InsTab.capBtnInsHeaderFooter":"Kopf- und Fußzeile","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"Symbol","PDFE.Views.InsTab.capBtnPageNum":"Seitenzahl","PDFE.Views.InsTab.capInsertChart":"Diagramm","PDFE.Views.InsTab.capInsertEquation":"Gleichung","PDFE.Views.InsTab.capInsertHyperlink":"Link","PDFE.Views.InsTab.capInsertImage":"Bild","PDFE.Views.InsTab.capInsertShape":"Form","PDFE.Views.InsTab.capInsertTable":"Tabelle","PDFE.Views.InsTab.capInsertText":"Textfeld","PDFE.Views.InsTab.capInsertTextArt":"Text Art","PDFE.Views.InsTab.capInsPage":"Seite einfügen","PDFE.Views.InsTab.mniCustomTable":"Benutzerdefinierte Tabelle einfügen","PDFE.Views.InsTab.mniImageFromFile":"Bild aus Datei","PDFE.Views.InsTab.mniImageFromStorage":"Bild aus dem Speicher","PDFE.Views.InsTab.mniImageFromUrl":"Bild aus URL","PDFE.Views.InsTab.mniInsertSSE":"Tabelle einfügen","PDFE.Views.InsTab.textAlpha":"Griechischer Kleinbuchstabe Alpha","PDFE.Views.InsTab.textBetta":"Griechischer Kleinbuchstabe Beta","PDFE.Views.InsTab.textBlackHeart":"Schwarzes Herz","PDFE.Views.InsTab.textBullet":"Aufzählungszeichen","PDFE.Views.InsTab.textCopyright":"Copyrightzeichen","PDFE.Views.InsTab.textDegree":"Gradzeichen","PDFE.Views.InsTab.textDelta":"Griechischer Kleinbuchstabe Delta","PDFE.Views.InsTab.textDivision":"Divisionszeichen","PDFE.Views.InsTab.textDollar":"Dollarzeichen","PDFE.Views.InsTab.textEuro":"Eurozeichen","PDFE.Views.InsTab.textGreaterEqual":"Größer als oder gleich wie ","PDFE.Views.InsTab.textInfinity":"Unendlichkeit","PDFE.Views.InsTab.textLessEqual":"Weniger als oder gleich wie","PDFE.Views.InsTab.textLetterPi":"Griechischer Kleinbuchstabe Pi","PDFE.Views.InsTab.textMoreSymbols":"Mehr Symbole","PDFE.Views.InsTab.textNotEqualTo":"Nicht gleich","PDFE.Views.InsTab.textOneHalf":"Vulgäre Fraktion Eine Hälfte","PDFE.Views.InsTab.textOneQuarter":"Vulgäre Fraktion Ganz","PDFE.Views.InsTab.textPlusMinus":"Plus-Minus-Zeichen","PDFE.Views.InsTab.textRecentlyUsed":"Zuletzt verwendet","PDFE.Views.InsTab.textRegistered":"Registrierte Handelsmarke","PDFE.Views.InsTab.textSection":"Paragraphenzeichen","PDFE.Views.InsTab.textSmile":"Weißes Lachendes Gesicht","PDFE.Views.InsTab.textSquareRoot":"Quadratwurzel","PDFE.Views.InsTab.textTilde":"Tilde","PDFE.Views.InsTab.textTradeMark":"Markenzeichen","PDFE.Views.InsTab.textYen":"Yen-Zeichen","PDFE.Views.InsTab.tipChangeChart":"Diagrammtyp ändern","PDFE.Views.InsTab.tipDateTime":"Das aktuelle Datum und die aktuelle Uhrzeit einfügen ","PDFE.Views.InsTab.tipEditHeaderFooter":"Kopf- oder Fußzeile bearbeiten","PDFE.Views.InsTab.tipInsertChart":"Diagramm einfügen","PDFE.Views.InsTab.tipInsertEquation":"Formel einfügen","PDFE.Views.InsTab.tipInsertHorizontalText":"Horizontales Textfeld einfügen","PDFE.Views.InsTab.tipInsertHyperlink":"Link hinzufügen","PDFE.Views.InsTab.tipInsertImage":"Bild einfügen","PDFE.Views.InsTab.tipInsertPage":"Leere Seite einfügen","PDFE.Views.InsTab.tipInsertPageAfter":"Leere Seite einfügen nach","PDFE.Views.InsTab.tipInsertShape":"Form einfügen","PDFE.Views.InsTab.tipInsertSmartArt":"SmartArt einfügen","PDFE.Views.InsTab.tipInsertSymbol":"Symbol einfügen","PDFE.Views.InsTab.tipInsertTable":"Tabelle einfügen","PDFE.Views.InsTab.tipInsertText":"Textfeld einfügen","PDFE.Views.InsTab.tipInsertTextArt":"TextArt einfügen","PDFE.Views.InsTab.tipInsertVerticalText":"Vertikales Textfeld einfügen","PDFE.Views.InsTab.tipPageNum":"Seitenzahl einfügen","PDFE.Views.InsTab.txtNewPageAfter":"Leere Seite einfügen nach","PDFE.Views.InsTab.txtNewPageBefore":"Leere Seite vorher einfügen","PDFE.Views.LeftMenu.ariaLeftMenu":"Linkes Menü","PDFE.Views.LeftMenu.tipAbout":"Über","PDFE.Views.LeftMenu.tipChat":"Plaudern","PDFE.Views.LeftMenu.tipComments":"Kommentare","PDFE.Views.LeftMenu.tipNavigation":"Navigation","PDFE.Views.LeftMenu.tipOutline":"Überschriften","PDFE.Views.LeftMenu.tipPageThumbnails":"Seitenminiaturansichten","PDFE.Views.LeftMenu.tipPlugins":"Plugins","PDFE.Views.LeftMenu.tipSearch":"Suchen","PDFE.Views.LeftMenu.tipSupport":"Rückmeldung und Unterstützung","PDFE.Views.LeftMenu.tipTitles":"Titel","PDFE.Views.LeftMenu.txtDeveloper":"ENTWICKLERMODUS","PDFE.Views.LeftMenu.txtEditor":"PDF Editor","PDFE.Views.LeftMenu.txtLimit":"Zugriffseinschränkung","PDFE.Views.LeftMenu.txtTrial":"Versuch-Modus","PDFE.Views.LeftMenu.txtTrialDev":"Testversion für Entwickler-Modus","PDFE.Views.Navigation.strNavigate":"Überschriften","PDFE.Views.Navigation.txtClosePanel":"Überschriften schließen","PDFE.Views.Navigation.txtCollapse":"Alle einklappen","PDFE.Views.Navigation.txtEmptyItem":"Leere Überschrift","PDFE.Views.Navigation.txtEmptyViewer":"Dieses Dokument enthält keine Überschriften.","PDFE.Views.Navigation.txtExpand":"Alle ausklappen","PDFE.Views.Navigation.txtExpandToLevel":"Auf Ebene erweitern","PDFE.Views.Navigation.txtFontSize":"Schriftgröße","PDFE.Views.Navigation.txtLarge":"Groß","PDFE.Views.Navigation.txtMedium":"Medium","PDFE.Views.Navigation.txtSettings":"Einstellungen von Überschriften","PDFE.Views.Navigation.txtSmall":"Klein","PDFE.Views.Navigation.txtWrapHeadings":"Lange Überschriften umbrechen","PDFE.Views.PageThumbnails.textClosePanel":"Miniaturansichten schließen","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"Markiere den sichtbaren Teil der Seite","PDFE.Views.PageThumbnails.textPageThumbnails":"Seitenminiaturansichten","PDFE.Views.PageThumbnails.textThumbnailsSettings":"Einstellungen von Miniaturansichten","PDFE.Views.PageThumbnails.textThumbnailsSize":"Größe von Miniaturansichten","PDFE.Views.ParagraphSettings.strLineHeight":"Zeilenabstand","PDFE.Views.ParagraphSettings.strParagraphSpacing":"Absatzabstand","PDFE.Views.ParagraphSettings.strSpacingAfter":"Nach","PDFE.Views.ParagraphSettings.strSpacingBefore":"Vor ","PDFE.Views.ParagraphSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.ParagraphSettings.textAt":"Auf","PDFE.Views.ParagraphSettings.textAtLeast":"Mindestens","PDFE.Views.ParagraphSettings.textAuto":"Mehrfach","PDFE.Views.ParagraphSettings.textExact":"Genau","PDFE.Views.ParagraphSettings.txtAutoText":"Auto","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"Die festgelegten Registerkarten werden in diesem Feld erscheinen","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"Alle Großbuchstaben","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"Richtung","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Doppelt durchgestrichen","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"Einzüge ","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Links","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Zeilenabstand","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Rechts","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Nach","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Vor ","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Speziell","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Schriftart","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Einzüge und Abstände","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Kapitälchen","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"Abstand","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"Durchgestrichen","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"Tiefgestellt","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"Hochgestellt","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"Tabulatoren","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"Ausrichtung","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"Mehrfach","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Zeichenabstand","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"Standardregisterkarte","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"Von links nach rechts","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"Von rechts nach links","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"Effekte","PDFE.Views.ParagraphSettingsAdvanced.textExact":"Genau","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"Erste Zeile","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"Hängend","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"Blocksatz","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(kein)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"Löschen","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Alle löschen","PDFE.Views.ParagraphSettingsAdvanced.textSet":"Angeben","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"Zentriert","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"Links","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"Tabulatorposition","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"Rechts","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"Absatz - Erweiterte Einstellungen","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"Auto","PDFE.Views.PrintWithPreview.textMarginsLast":"Letzte Benutzerdefinierung","PDFE.Views.PrintWithPreview.textMarginsModerate":"Mittelmäßig","PDFE.Views.PrintWithPreview.textMarginsNarrow":"Schmal","PDFE.Views.PrintWithPreview.textMarginsNormal":"Normal","PDFE.Views.PrintWithPreview.textMarginsWide":"Breit","PDFE.Views.PrintWithPreview.txtAllPages":"Alle Seiten","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Schwarzweißdruck","PDFE.Views.PrintWithPreview.txtBothSides":"Beidseitiger Druck","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"Seiten an der langen Seite umblättern","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"Seiten an der kurzen Seite umblättern","PDFE.Views.PrintWithPreview.txtBottom":"Unten","PDFE.Views.PrintWithPreview.txtColorPrinting":"Farbdruck","PDFE.Views.PrintWithPreview.txtContent":"Inhalt","PDFE.Views.PrintWithPreview.txtCopies":"Kopien","PDFE.Views.PrintWithPreview.txtCurrentPage":"Aktuelle Seite","PDFE.Views.PrintWithPreview.txtCustom":"Benutzerdefiniert","PDFE.Views.PrintWithPreview.txtCustomPages":"Benutzerdefinierter Druck","PDFE.Views.PrintWithPreview.txtDocument":"Dokument","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"Dokument und Markierungen","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"Dokument und Stempel","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"Nur Formularfelder","PDFE.Views.PrintWithPreview.txtLandscape":"Querformat","PDFE.Views.PrintWithPreview.txtLeft":"Links","PDFE.Views.PrintWithPreview.txtMargins":"Ränder","PDFE.Views.PrintWithPreview.txtOf":"von {0}","PDFE.Views.PrintWithPreview.txtOneSide":"Einseitiger Druck","PDFE.Views.PrintWithPreview.txtOneSideDesc":"Nur auf einer Seite drucken","PDFE.Views.PrintWithPreview.txtPage":"Seite","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"Ungültige Seitennummer","PDFE.Views.PrintWithPreview.txtPageOrientation":"Seitenorientierung","PDFE.Views.PrintWithPreview.txtPages":"Seiten","PDFE.Views.PrintWithPreview.txtPageSize":"Seitengröße","PDFE.Views.PrintWithPreview.txtPortrait":"Hochformat","PDFE.Views.PrintWithPreview.txtPrint":"Drucken","PDFE.Views.PrintWithPreview.txtPrinter":"Drucker","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"Drucker nicht ausgewählt","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"Drucker nicht gefunden","PDFE.Views.PrintWithPreview.txtPrintPdf":"Als PDF-Datei drucken","PDFE.Views.PrintWithPreview.txtPrintRange":"Druckbereich","PDFE.Views.PrintWithPreview.txtPrintSides":"Druckseiten","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Drucken über den Systemdialog","PDFE.Views.PrintWithPreview.txtRight":"Rechts","PDFE.Views.PrintWithPreview.txtSelection":"Auswahl","PDFE.Views.PrintWithPreview.txtTop":"Oben","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"Warten auf Drucker","PDFE.Views.RedactTab.capApplyRedactions":"Schwärzungen anwenden","PDFE.Views.RedactTab.capFindRedact":"Suchen und Schwärzen","PDFE.Views.RedactTab.capMarkRedact":"Zum Schwärzen markieren","PDFE.Views.RedactTab.capRedactPages":"Seiten schwärzen","PDFE.Views.RedactTab.tipApplyRedactions":"Schwärzungen anwenden","PDFE.Views.RedactTab.tipFindRedact":"Suchen und Schwärzen","PDFE.Views.RedactTab.tipMarkForRedact":"Zum Schwärzen markieren","PDFE.Views.RedactTab.tipRedactPages":"Seiten schwärzen","PDFE.Views.RedactTab.txtMarkCurrentPage":"Aktuelle Seite markieren","PDFE.Views.RedactTab.txtSelectRange":"Bereich auswählen","PDFE.Views.RightMenu.ariaRightMenu":"Rechtes Menü","PDFE.Views.RightMenu.txtChartSettings":"Diagrammeinstellungen","PDFE.Views.RightMenu.txtFormSettings":"Einstellungen des Formulars","PDFE.Views.RightMenu.txtImageSettings":"Bild-Einstellungen","PDFE.Views.RightMenu.txtParagraphSettings":"Absatzeinstellungen","PDFE.Views.RightMenu.txtShapeSettings":"Formeinstellungen","PDFE.Views.RightMenu.txtTableSettings":"Tabellen-Einstellungen","PDFE.Views.RightMenu.txtTextArtSettings":"TextArt-Einstellungen","PDFE.Views.ShapeSettings.strBackground":"Hintergrundfarbe","PDFE.Views.ShapeSettings.strChange":"Form ändern","PDFE.Views.ShapeSettings.strColor":"Farbe","PDFE.Views.ShapeSettings.strFill":"Füllung","PDFE.Views.ShapeSettings.strForeground":"Vordergrundfarbe","PDFE.Views.ShapeSettings.strPattern":"Muster","PDFE.Views.ShapeSettings.strShadow":"Schatten anzeigen","PDFE.Views.ShapeSettings.strSize":"Größe","PDFE.Views.ShapeSettings.strStroke":"Linie","PDFE.Views.ShapeSettings.strTransparency":"Undurchsichtigkeit","PDFE.Views.ShapeSettings.strType":"Typ","PDFE.Views.ShapeSettings.textAdjustShadow":"Schatten anpassen","PDFE.Views.ShapeSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.ShapeSettings.textAngle":"Winkel","PDFE.Views.ShapeSettings.textBorderSizeErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.","PDFE.Views.ShapeSettings.textColor":"Farbfüllung","PDFE.Views.ShapeSettings.textDirection":"Richtung","PDFE.Views.ShapeSettings.textEditPoints":"Punkte bearbeiten","PDFE.Views.ShapeSettings.textEditShape":"Form bearbeiten","PDFE.Views.ShapeSettings.textEmptyPattern":"Kein Muster","PDFE.Views.ShapeSettings.textEyedropper":"Pipette","PDFE.Views.ShapeSettings.textFlip":"Umdrehen","PDFE.Views.ShapeSettings.textFromFile":"Aus Datei","PDFE.Views.ShapeSettings.textFromStorage":"Aus dem Speicher","PDFE.Views.ShapeSettings.textFromUrl":"Aus URL","PDFE.Views.ShapeSettings.textGradient":"Farbverlauf","PDFE.Views.ShapeSettings.textGradientFill":"Füllung mit Farbverlauf","PDFE.Views.ShapeSettings.textHint270":"Linksdrehung 90 Grad","PDFE.Views.ShapeSettings.textHint90":"90° im UZS drehen","PDFE.Views.ShapeSettings.textHintFlipH":"Horizontal kippen","PDFE.Views.ShapeSettings.textHintFlipV":"Vertikal kippen","PDFE.Views.ShapeSettings.textImageTexture":"Bild oder Textur","PDFE.Views.ShapeSettings.textLinear":"Linear","PDFE.Views.ShapeSettings.textMoreColors":"Mehr Farben","PDFE.Views.ShapeSettings.textNoFill":"Ohne Füllung","PDFE.Views.ShapeSettings.textNoShadow":"Kein Schatten","PDFE.Views.ShapeSettings.textPatternFill":"Muster","PDFE.Views.ShapeSettings.textPosition":"Position","PDFE.Views.ShapeSettings.textRadial":"Radial","PDFE.Views.ShapeSettings.textRecentlyUsed":"Zuletzt verwendet","PDFE.Views.ShapeSettings.textRotate90":"90 Grad drehen","PDFE.Views.ShapeSettings.textRotation":"Rotation","PDFE.Views.ShapeSettings.textSelectImage":"Bild auswählen","PDFE.Views.ShapeSettings.textSelectTexture":"Auswählen","PDFE.Views.ShapeSettings.textShadow":"Schatten","PDFE.Views.ShapeSettings.textStretch":"Ausdehnung","PDFE.Views.ShapeSettings.textStyle":"Stil","PDFE.Views.ShapeSettings.textTexture":"Aus Textur","PDFE.Views.ShapeSettings.textTile":"Kachel","PDFE.Views.ShapeSettings.tipAddGradientPoint":"Punkt des Farbverlaufs einfügen","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"Punkt des Farbverlaufs entfernen","PDFE.Views.ShapeSettings.txtBrownPaper":"Kraftpapier","PDFE.Views.ShapeSettings.txtCanvas":"Canvas","PDFE.Views.ShapeSettings.txtCarton":"Pappe","PDFE.Views.ShapeSettings.txtDarkFabric":"Dunkler Stoff","PDFE.Views.ShapeSettings.txtGrain":"Korn","PDFE.Views.ShapeSettings.txtGranite":"Granit","PDFE.Views.ShapeSettings.txtGreyPaper":"Graues Papier","PDFE.Views.ShapeSettings.txtKnit":"Gestrickt","PDFE.Views.ShapeSettings.txtLeather":"Leder","PDFE.Views.ShapeSettings.txtNoBorders":"Keine Linie","PDFE.Views.ShapeSettings.txtOffsetBottom":"Versatz: Unten","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"Versatz: Unten links","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"Versatz: Unten rechts","PDFE.Views.ShapeSettings.txtOffsetCenter":"Versatz: Mitte","PDFE.Views.ShapeSettings.txtOffsetLeft":"Versatz: Links","PDFE.Views.ShapeSettings.txtOffsetRight":"Versatz: Rechts","PDFE.Views.ShapeSettings.txtOffsetTop":"Versatz: Oben","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"Versatz: Oben links","PDFE.Views.ShapeSettings.txtOffsetTopRight":"Versatz: Oben rechts","PDFE.Views.ShapeSettings.txtPapyrus":"Papyrus","PDFE.Views.ShapeSettings.txtWood":"Holz","PDFE.Views.ShapeSettingsAdvanced.strColumns":"Spalten","PDFE.Views.ShapeSettingsAdvanced.strMargins":"Ränder um den Text","PDFE.Views.ShapeSettingsAdvanced.textAlt":"Alternativer Text","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"Beschreibung","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"Titel","PDFE.Views.ShapeSettingsAdvanced.textAngle":"Winkel","PDFE.Views.ShapeSettingsAdvanced.textArrows":"Pfeile","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"AutoFit","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"Startgröße","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"Startlinienart","PDFE.Views.ShapeSettingsAdvanced.textBevel":"Schräge Kante","PDFE.Views.ShapeSettingsAdvanced.textBottom":"Unten","PDFE.Views.ShapeSettingsAdvanced.textCapType":"Abschlusstyp","PDFE.Views.ShapeSettingsAdvanced.textCenter":"Zentriert","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"Anzahl von Spalten","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"Endgröße","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"Endlinienart","PDFE.Views.ShapeSettingsAdvanced.textFlat":"Flach","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"Gekippt","PDFE.Views.ShapeSettingsAdvanced.textFrom":"Ab","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"Allgemein","PDFE.Views.ShapeSettingsAdvanced.textHeight":"Höhe","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"Horizontal","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"Verknüpfungstyp","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"Seitenverhältnis beibehalten","PDFE.Views.ShapeSettingsAdvanced.textLeft":"Links","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"Linienart","PDFE.Views.ShapeSettingsAdvanced.textMiter":"Winkel","PDFE.Views.ShapeSettingsAdvanced.textNofit":"Ohne automatische Anpassung","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"Positionierung","PDFE.Views.ShapeSettingsAdvanced.textPosition":"Position","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"Die Form am Text anpassen","PDFE.Views.ShapeSettingsAdvanced.textRight":"Rechts","PDFE.Views.ShapeSettingsAdvanced.textRotation":"Rotation","PDFE.Views.ShapeSettingsAdvanced.textRound":"Rund","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"Name der Form","PDFE.Views.ShapeSettingsAdvanced.textShrink":"Text bei Überlauf verkleinern","PDFE.Views.ShapeSettingsAdvanced.textSize":"Größe","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"Abstand zwischen Spalten","PDFE.Views.ShapeSettingsAdvanced.textSquare":"Quadrat","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"Textfeld","PDFE.Views.ShapeSettingsAdvanced.textTitle":"Form - Erweiterte Einstellungen","PDFE.Views.ShapeSettingsAdvanced.textTop":"Oben","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"Obere linke Ecke","PDFE.Views.ShapeSettingsAdvanced.textVertical":"Vertikal","PDFE.Views.ShapeSettingsAdvanced.textVertically":"Vertikal","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"Stärken & Pfeile","PDFE.Views.ShapeSettingsAdvanced.textWidth":"Breite","PDFE.Views.ShapeSettingsAdvanced.txtNone":"Nein","PDFE.Views.Statusbar.goToPageText":"Zur Seite gehen","PDFE.Views.Statusbar.pageIndexText":"Seite {0} von {1}","PDFE.Views.Statusbar.tipFitPage":"Seite anpassen","PDFE.Views.Statusbar.tipFitWidth":"Breite anpassen","PDFE.Views.Statusbar.tipHandTool":"Hand-Werkzeug","PDFE.Views.Statusbar.tipPageNext":"Zur nächsten Seite gehen","PDFE.Views.Statusbar.tipPagePrev":"Zur vorherigen Seite gehen.","PDFE.Views.Statusbar.tipSelectTool":"Auswählungfunktion","PDFE.Views.Statusbar.tipZoomFactor":"Zoom","PDFE.Views.Statusbar.tipZoomIn":"Vergrößern","PDFE.Views.Statusbar.tipZoomOut":"Verkleinern","PDFE.Views.Statusbar.txtPageNumInvalid":"Ungültige Seitennummer","PDFE.Views.TableSettings.deleteColumnText":"Spalte löschen","PDFE.Views.TableSettings.deleteRowText":"Zeile löschen","PDFE.Views.TableSettings.deleteTableText":"Tabelle löschen","PDFE.Views.TableSettings.insertColumnLeftText":"Spalte links einfügen","PDFE.Views.TableSettings.insertColumnRightText":"Spalte rechts einfügen","PDFE.Views.TableSettings.insertRowAboveText":"Zeile oberhalb einfügen","PDFE.Views.TableSettings.insertRowBelowText":"Zeile unterhalb einfügen","PDFE.Views.TableSettings.mergeCellsText":"Zellen verbinden","PDFE.Views.TableSettings.selectCellText":"Zelle auswählen","PDFE.Views.TableSettings.selectColumnText":"Spalte auswählen","PDFE.Views.TableSettings.selectRowText":"Zeile auswählen","PDFE.Views.TableSettings.selectTableText":"Tabelle auswählen","PDFE.Views.TableSettings.splitCellsText":"Zelle teilen...","PDFE.Views.TableSettings.splitCellTitleText":"Zelle teilen","PDFE.Views.TableSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.TableSettings.textBackColor":"Hintergrundfarbe","PDFE.Views.TableSettings.textBanded":"Gestreift","PDFE.Views.TableSettings.textBorderColor":"Farbe","PDFE.Views.TableSettings.textBorders":"Stil des Rahmens","PDFE.Views.TableSettings.textCellSize":"Zellengröße","PDFE.Views.TableSettings.textColumns":"Spalten","PDFE.Views.TableSettings.textDistributeCols":"Spalten verteilen","PDFE.Views.TableSettings.textDistributeRows":"Zeilen verteilen","PDFE.Views.TableSettings.textEdit":"Zeilen & Spalten","PDFE.Views.TableSettings.textEmptyTemplate":"Keine Vorlagen","PDFE.Views.TableSettings.textFirst":"Erste","PDFE.Views.TableSettings.textHeader":"Kopfzeile","PDFE.Views.TableSettings.textHeight":"Höhe","PDFE.Views.TableSettings.textLast":"Zuletzt","PDFE.Views.TableSettings.textRows":"Zeilen","PDFE.Views.TableSettings.textSelectBorders":"Wählen Sie die Ränder aus, die Sie ändern möchten, indem Sie den oben gewählten Stil anwenden.","PDFE.Views.TableSettings.textTemplate":"Vorlage auswählen","PDFE.Views.TableSettings.textTotal":"Insgesamt","PDFE.Views.TableSettings.textWidth":"Breite","PDFE.Views.TableSettings.tipAll":"Äußere Rahmenlinie und alle inneren Linien festlegen","PDFE.Views.TableSettings.tipBottom":"Nur äußere untere Rahmenlinie festlegen","PDFE.Views.TableSettings.tipInner":"Nur innere Linien festlegen","PDFE.Views.TableSettings.tipInnerHor":"Nur innere horizontale Linien festlegen","PDFE.Views.TableSettings.tipInnerVert":"Nur vertikale innere Linien festlegen","PDFE.Views.TableSettings.tipLeft":"Nur äußere linke Rahmenlinie festlegen","PDFE.Views.TableSettings.tipNone":"Keine Rahmenlinien festlegen","PDFE.Views.TableSettings.tipOuter":"Nur äußere Rahmenlinie festlegen","PDFE.Views.TableSettings.tipRight":"Nur äußere rechte Rahmenlinie festlegen","PDFE.Views.TableSettings.tipTop":"Nur äußere obere Rahmenlinie festlegen","PDFE.Views.TableSettings.txtGroupTable_Custom":"Benutzerdefiniert","PDFE.Views.TableSettings.txtGroupTable_Dark":"Dunkel","PDFE.Views.TableSettings.txtGroupTable_Light":"Hell","PDFE.Views.TableSettings.txtGroupTable_Medium":"Mittelgroß","PDFE.Views.TableSettings.txtGroupTable_Optimal":"Optimal für das Dokument","PDFE.Views.TableSettings.txtNoBorders":"Keine Rahmen","PDFE.Views.TableSettings.txtTable_Accent":"Akzent","PDFE.Views.TableSettings.txtTable_DarkStyle":"Dunkle Formatvorlage","PDFE.Views.TableSettings.txtTable_LightStyle":"Helle Formatvorlage","PDFE.Views.TableSettings.txtTable_MediumStyle":"Mittlere Formatvorlage","PDFE.Views.TableSettings.txtTable_NoGrid":"Kein Raster","PDFE.Views.TableSettings.txtTable_NoStyle":"Keine Formatvorlage","PDFE.Views.TableSettings.txtTable_TableGrid":"Tabellenraster","PDFE.Views.TableSettings.txtTable_ThemedStyle":"Designformatvorlage","PDFE.Views.TableSettingsAdvanced.textAlt":"Alternativer Text","PDFE.Views.TableSettingsAdvanced.textAltDescription":"Beschreibung","PDFE.Views.TableSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","PDFE.Views.TableSettingsAdvanced.textAltTitle":"Titel","PDFE.Views.TableSettingsAdvanced.textBottom":"Unten","PDFE.Views.TableSettingsAdvanced.textCenter":"Zentriert","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"Standardränder nutzen","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"Standardränder","PDFE.Views.TableSettingsAdvanced.textFrom":"Ab","PDFE.Views.TableSettingsAdvanced.textGeneral":"Allgemein","PDFE.Views.TableSettingsAdvanced.textHeight":"Höhe","PDFE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"Seitenverhältnis beibehalten","PDFE.Views.TableSettingsAdvanced.textLeft":"Links","PDFE.Views.TableSettingsAdvanced.textMargins":"Zellenränder","PDFE.Views.TableSettingsAdvanced.textPlacement":"Positionierung","PDFE.Views.TableSettingsAdvanced.textPosition":"Position","PDFE.Views.TableSettingsAdvanced.textRight":"Rechts","PDFE.Views.TableSettingsAdvanced.textSize":"Größe","PDFE.Views.TableSettingsAdvanced.textTableName":"Tabellenname","PDFE.Views.TableSettingsAdvanced.textTitle":"Tabelle - Erweiterte Einstellungen","PDFE.Views.TableSettingsAdvanced.textTop":"Oben","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"Obere linke Ecke","PDFE.Views.TableSettingsAdvanced.textVertical":"Vertikal","PDFE.Views.TableSettingsAdvanced.textWidth":"Breite","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"Seitenränder","PDFE.Views.TextArtSettings.strBackground":"Hintergrundfarbe","PDFE.Views.TextArtSettings.strColor":"Farbe","PDFE.Views.TextArtSettings.strFill":"Füllung","PDFE.Views.TextArtSettings.strForeground":"Vordergrundfarbe","PDFE.Views.TextArtSettings.strPattern":"Muster","PDFE.Views.TextArtSettings.strSize":"Größe","PDFE.Views.TextArtSettings.strStroke":"Linie","PDFE.Views.TextArtSettings.strTransparency":"Undurchsichtigkeit","PDFE.Views.TextArtSettings.strType":"Typ","PDFE.Views.TextArtSettings.textAngle":"Winkel","PDFE.Views.TextArtSettings.textBorderSizeErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.","PDFE.Views.TextArtSettings.textColor":"Farbfüllung","PDFE.Views.TextArtSettings.textDirection":"Richtung","PDFE.Views.TextArtSettings.textEmptyPattern":"Kein Muster","PDFE.Views.TextArtSettings.textFromFile":"Aus Datei","PDFE.Views.TextArtSettings.textFromUrl":"Aus URL","PDFE.Views.TextArtSettings.textGradient":"Farbverlauf","PDFE.Views.TextArtSettings.textGradientFill":"Füllung mit Farbverlauf","PDFE.Views.TextArtSettings.textImageTexture":"Bild oder Textur","PDFE.Views.TextArtSettings.textLinear":"Linear","PDFE.Views.TextArtSettings.textNoFill":"Ohne Füllung","PDFE.Views.TextArtSettings.textPatternFill":"Muster","PDFE.Views.TextArtSettings.textPosition":"Position","PDFE.Views.TextArtSettings.textRadial":"Radial","PDFE.Views.TextArtSettings.textSelectTexture":"Auswählen","PDFE.Views.TextArtSettings.textStretch":"Ausdehnung","PDFE.Views.TextArtSettings.textStyle":"Stil","PDFE.Views.TextArtSettings.textTemplate":"Vorlage","PDFE.Views.TextArtSettings.textTexture":"Aus Textur","PDFE.Views.TextArtSettings.textTile":"Kachel","PDFE.Views.TextArtSettings.textTransform":"Transformierung","PDFE.Views.TextArtSettings.tipAddGradientPoint":"Punkt des Farbverlaufs einfügen","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"Punkt des Farbverlaufs entfernen","PDFE.Views.TextArtSettings.txtBrownPaper":"Kraftpapier","PDFE.Views.TextArtSettings.txtCanvas":"Canvas","PDFE.Views.TextArtSettings.txtCarton":"Pappe","PDFE.Views.TextArtSettings.txtDarkFabric":"Dunkler Stoff","PDFE.Views.TextArtSettings.txtGrain":"Korn","PDFE.Views.TextArtSettings.txtGranite":"Granit","PDFE.Views.TextArtSettings.txtGreyPaper":"Graues Papier","PDFE.Views.TextArtSettings.txtKnit":"Gestrickt","PDFE.Views.TextArtSettings.txtLeather":"Leder","PDFE.Views.TextArtSettings.txtNoBorders":"Keine Linie","PDFE.Views.TextArtSettings.txtPapyrus":"Papyrus","PDFE.Views.TextArtSettings.txtWood":"Holz","PDFE.Views.Toolbar.capBtnAddComment":"Kommentar hinzufügen","PDFE.Views.Toolbar.capBtnArrowComment":"Pfeil","PDFE.Views.Toolbar.capBtnCircleComment":"Kreis","PDFE.Views.Toolbar.capBtnComment":"Kommentar","PDFE.Views.Toolbar.capBtnDelPage":"Seite löschen","PDFE.Views.Toolbar.capBtnDownloadForm":"Als PDF herunterladen","PDFE.Views.Toolbar.capBtnEditText":"Text bearbeiten","PDFE.Views.Toolbar.capBtnHand":"Hand","PDFE.Views.Toolbar.capBtnNext":"Nächstes Feld","PDFE.Views.Toolbar.capBtnPolyLineComment":"Verbundene Linien","PDFE.Views.Toolbar.capBtnPrev":"Vorheriges Feld","PDFE.Views.Toolbar.capBtnRecognize":"Text bearbeiten","PDFE.Views.Toolbar.capBtnRectComment":"Rechteck","PDFE.Views.Toolbar.capBtnRotate":"Drehen","PDFE.Views.Toolbar.capBtnRotatePage":"Seite drehen","PDFE.Views.Toolbar.capBtnSaveForm":"Als PDF speichern","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"Speichern als...","PDFE.Views.Toolbar.capBtnSelect":"Auswählen","PDFE.Views.Toolbar.capBtnShowComments":"Kommentare anzeigen","PDFE.Views.Toolbar.capBtnStamp":"Stempel","PDFE.Views.Toolbar.capBtnSubmit":"Senden","PDFE.Views.Toolbar.capBtnTextCallout":"Textaufruf","PDFE.Views.Toolbar.capBtnTextComment":"Textkommentar","PDFE.Views.Toolbar.mniCapitalizeWords":"Ersten Buchstaben im jedem Wort großschreiben","PDFE.Views.Toolbar.mniInsertSSE":"Tabelle einfügen","PDFE.Views.Toolbar.mniLowerCase":"Kleinbuchstaben","PDFE.Views.Toolbar.mniSentenceCase":"Ersten Buchstaben im Satz großschreiben.","PDFE.Views.Toolbar.mniToggleCase":"gROSS-/kLEINSCHREIBUNG","PDFE.Views.Toolbar.mniUpperCase":"GROSSBUCHSTABEN","PDFE.Views.Toolbar.strMenuNoFill":"Keine Füllung","PDFE.Views.Toolbar.textAlignBottom":"Text am unteren Rand ausrichten","PDFE.Views.Toolbar.textAlignCenter":"Text zentrieren","PDFE.Views.Toolbar.textAlignJust":"Im Blocksatz ausrichten","PDFE.Views.Toolbar.textAlignLeft":"Text linksbündig ausrichten","PDFE.Views.Toolbar.textAlignMiddle":"Text mittig ausrichten","PDFE.Views.Toolbar.textAlignRight":"Text rechtsbündig ausrichten","PDFE.Views.Toolbar.textAlignTop":"Text am oberen Rand ausrichten","PDFE.Views.Toolbar.textArrangeBack":"Zum Hintergrund senden","PDFE.Views.Toolbar.textArrangeBackward":"Nach hinten senden","PDFE.Views.Toolbar.textArrangeForward":"Vorwärts bringen","PDFE.Views.Toolbar.textArrangeFront":"In den Vordergrund bringen","PDFE.Views.Toolbar.textBold":"Fett","PDFE.Views.Toolbar.textClear":"Felder löschen","PDFE.Views.Toolbar.textClearFields":"Alle Felder leeren","PDFE.Views.Toolbar.textColumnsCustom":"Benutzerdefinierte Spalten","PDFE.Views.Toolbar.textColumnsOne":"Eine Spalte","PDFE.Views.Toolbar.textColumnsThree":"Drei Spalten","PDFE.Views.Toolbar.textColumnsTwo":"Zwei Spalten","PDFE.Views.Toolbar.textDirLtr":"Von links nach rechts","PDFE.Views.Toolbar.textDirRtl":"Von rechts nach links","PDFE.Views.Toolbar.textEditMode":"PDF bearbeiten","PDFE.Views.Toolbar.textHighlight":"Markieren","PDFE.Views.Toolbar.textItalic":"Kursiv","PDFE.Views.Toolbar.textListSettings":"Listeneinstellungen","PDFE.Views.Toolbar.textShapeAlignBottom":"Unten ausrichten","PDFE.Views.Toolbar.textShapeAlignCenter":"Zentriert ausrichten","PDFE.Views.Toolbar.textShapeAlignLeft":"Linksbündig ausrichten","PDFE.Views.Toolbar.textShapeAlignMiddle":"Mittig ausrichten","PDFE.Views.Toolbar.textShapeAlignRight":"Rechtsbündig ausrichten","PDFE.Views.Toolbar.textShapeAlignTop":"Oben ausrichten","PDFE.Views.Toolbar.textShapesCombine":"Kombinieren","PDFE.Views.Toolbar.textShapesFragment":"Fragment","PDFE.Views.Toolbar.textShapesIntersect":"Schneiden","PDFE.Views.Toolbar.textShapesSubstract":"Subtrahieren","PDFE.Views.Toolbar.textShapesUnion":"Vereinigung","PDFE.Views.Toolbar.textStrikeout":"Durchgestrichen","PDFE.Views.Toolbar.textSubmited":"Das Formular wurde erfolgreich versandt","PDFE.Views.Toolbar.textSubscript":"Tiefgestellt","PDFE.Views.Toolbar.textSuperscript":"Hochgestellt","PDFE.Views.Toolbar.textTabCollaboration":"Zusammenarbeit","PDFE.Views.Toolbar.textTabComment":"Kommentar","PDFE.Views.Toolbar.textTabEdit":"Bearbeiten","PDFE.Views.Toolbar.textTabFile":"Datei","PDFE.Views.Toolbar.textTabHome":"Startseite","PDFE.Views.Toolbar.textTabInsert":"Einfügen","PDFE.Views.Toolbar.textTabRedact":"Schwärzen","PDFE.Views.Toolbar.textTabView":"Anzeigen","PDFE.Views.Toolbar.textUnderline":"Unterstrichen","PDFE.Views.Toolbar.tipAddComment":"Kommentar hinzufügen","PDFE.Views.Toolbar.tipChangeCase":"Groß-/Kleinschreibung ändern","PDFE.Views.Toolbar.tipClearStyle":"Formatierung löschen","PDFE.Views.Toolbar.tipColumns":"Spalten einfügen","PDFE.Views.Toolbar.tipCopy":"Kopieren","PDFE.Views.Toolbar.tipCut":"Ausschneiden","PDFE.Views.Toolbar.tipDecFont":"Schriftart verkleinern","PDFE.Views.Toolbar.tipDecPrLeft":"Einzug verkleinern","PDFE.Views.Toolbar.tipDelPage":"Seite löschen","PDFE.Views.Toolbar.tipDownload":"Datei herunterladen","PDFE.Views.Toolbar.tipDownloadForm":"Die Datei als ausfüllbares PDF-Dokument herunterladen","PDFE.Views.Toolbar.tipEditMode":"Fügen Sie Text, Formen, Bilder usw. hinzu oder bearbeiten Sie sie.","PDFE.Views.Toolbar.tipEditText":"Text bearbeiten","PDFE.Views.Toolbar.tipFirstPage":"Zur ersten Seite gehen","PDFE.Views.Toolbar.tipFontColor":"Schriftfarbe","PDFE.Views.Toolbar.tipFontName":"Schriftart","PDFE.Views.Toolbar.tipFontSize":"Schriftgröße","PDFE.Views.Toolbar.tipHAligh":"Horizontale Ausrichtung","PDFE.Views.Toolbar.tipHandTool":"Hand-Werkzeug","PDFE.Views.Toolbar.tipHighlightColor":"Hervorhebungsfarbe","PDFE.Views.Toolbar.tipIncFont":"Schriftart vergrößern","PDFE.Views.Toolbar.tipIncPrLeft":"Einzug vergrößern","PDFE.Views.Toolbar.tipInsertArrowComment":"Einen Pfeil zeichnen","PDFE.Views.Toolbar.tipInsertCircleComment":"Einen Kreis oder ein Oval zeichnen","PDFE.Views.Toolbar.tipInsertPolyLineComment":"Linien zeichnen, die miteinander verbunden sind","PDFE.Views.Toolbar.tipInsertRectComment":"Ein Rechteck oder Quadrat zeichnen","PDFE.Views.Toolbar.tipInsertStamp":"Stempel einfügen","PDFE.Views.Toolbar.tipInsertTextCallout":"Textaufruf einfügen","PDFE.Views.Toolbar.tipInsertTextComment":"Textkommentar einfügen","PDFE.Views.Toolbar.tipLastPage":"Zur letzten Seite gehen","PDFE.Views.Toolbar.tipLineSpace":"Zeilenabstand","PDFE.Views.Toolbar.tipMarkers":"Aufzählung","PDFE.Views.Toolbar.tipMarkersArrow":"Pfeilförmige Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersCheckmark":"Häkchenaufzählungszeichen","PDFE.Views.Toolbar.tipMarkersDash":"Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersFRhombus":"Ausgefüllte karoförmige Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersFRound":"Ausgefüllte runde Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersFSquare":"Ausgefüllte quadratische Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersHRound":"Leere runde Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersStar":"Sternförmige Aufzählungszeichen","PDFE.Views.Toolbar.tipNextForm":"Zum nächsten Feld wechseln","PDFE.Views.Toolbar.tipNextPage":"Zur nächsten Seite gehen","PDFE.Views.Toolbar.tipNone":"Nein","PDFE.Views.Toolbar.tipNumbers":"Nummerierung","PDFE.Views.Toolbar.tipPaste":"Einfügen","PDFE.Views.Toolbar.tipPrevForm":"Zum vorherigen Feld wechseln","PDFE.Views.Toolbar.tipPrevPage":"Zur vorherigen Seite gehen","PDFE.Views.Toolbar.tipPrint":"Drucken","PDFE.Views.Toolbar.tipPrintQuick":"Schnelldruck","PDFE.Views.Toolbar.tipRecognize":"Text bearbeiten","PDFE.Views.Toolbar.tipRedo":"Wiederholen","PDFE.Views.Toolbar.tipRotate":"Seiten drehen","PDFE.Views.Toolbar.tipSave":"Speichern","PDFE.Views.Toolbar.tipSaveCoauth":"Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.","PDFE.Views.Toolbar.tipSaveForm":"Als eine ausfüllbare PDF-Datei speichern","PDFE.Views.Toolbar.tipSelectAll":"Alles auswählen","PDFE.Views.Toolbar.tipSelectTool":"Auswählungfunktion","PDFE.Views.Toolbar.tipShapeAlign":"Form ausrichten","PDFE.Views.Toolbar.tipShapeArrange":"Form anordnen","PDFE.Views.Toolbar.tipShapeMerge":"Formen zusammenführen","PDFE.Views.Toolbar.tipSubmit":"Formular senden","PDFE.Views.Toolbar.tipSynchronize":"Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.","PDFE.Views.Toolbar.tipTextDir":"Textrichtung","PDFE.Views.Toolbar.tipUndo":"Rückgängig machen","PDFE.Views.Toolbar.tipVAligh":"Vertikal ausrichten","PDFE.Views.Toolbar.txtArrowComment":"Pfeil","PDFE.Views.Toolbar.txtCircleComment":"Kreis","PDFE.Views.Toolbar.txtDistribHor":"Horizontal verteilen","PDFE.Views.Toolbar.txtDistribVert":"Vertikal verteilen","PDFE.Views.Toolbar.txtGroup":"Gruppieren","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"Ausgewählte Objekte ausrichten","PDFE.Views.Toolbar.txtOpacity":"Undurchsichtigkeit","PDFE.Views.Toolbar.txtPageAlign":"An Seite ausrichten","PDFE.Views.Toolbar.txtPolyLineComment":"Verbundene Linien","PDFE.Views.Toolbar.txtRectComment":"Rechteck","PDFE.Views.Toolbar.txtRotateLeft":"Nach links drehen","PDFE.Views.Toolbar.txtRotatePage":"Seite drehen","PDFE.Views.Toolbar.txtRotatePageRight":"Seite nach rechts drehen","PDFE.Views.Toolbar.txtRotateRight":"Nach rechts drehen","PDFE.Views.Toolbar.txtSize":"Größe","PDFE.Views.Toolbar.txtUngroup":"Gruppierung aufheben","PDFE.Views.ViewTab.capBtnRecognize":"Text bearbeiten","PDFE.Views.ViewTab.textAlwaysShowToolbar":"Symbolleiste immer anzeigen","PDFE.Views.ViewTab.textDarkDocument":"Dunkles Dokument","PDFE.Views.ViewTab.textEditMode":"PDF bearbeiten","PDFE.Views.ViewTab.textFill":"Füllung","PDFE.Views.ViewTab.textFitToPage":"Seite anpassen","PDFE.Views.ViewTab.textFitToWidth":"Breite anpassen","PDFE.Views.ViewTab.textInterfaceTheme":"Thema der Benutzeroberfläche","PDFE.Views.ViewTab.textLeftMenu":"Linkes Bedienfeld","PDFE.Views.ViewTab.textLine":"Linie","PDFE.Views.ViewTab.textNavigation":"Navigation","PDFE.Views.ViewTab.textOutline":"Überschriften","PDFE.Views.ViewTab.textRightMenu":"Rechtes Bedienungsfeld ","PDFE.Views.ViewTab.textStatusBar":"Statusleiste","PDFE.Views.ViewTab.textTabStyle":"Stil der Registerkarte","PDFE.Views.ViewTab.textZoom":"Zoom","PDFE.Views.ViewTab.tipDarkDocument":"Dunkles Dokument","PDFE.Views.ViewTab.tipEditMode":"Fügen Sie Text, Formen, Bilder usw. hinzu oder bearbeiten Sie sie.","PDFE.Views.ViewTab.tipFitToPage":"Seite anpassen","PDFE.Views.ViewTab.tipFitToWidth":"Breite anpassen","PDFE.Views.ViewTab.tipHeadings":"Überschriften","PDFE.Views.ViewTab.tipInterfaceTheme":"Thema der Benutzeroberfläche","PDFE.Views.ViewTab.tipRecognize":"Text bearbeiten"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":"Warnung","Common.Controllers.Desktop.hintBtnHome":"Hauptfenster anzeigen","Common.Controllers.Desktop.itemCreateFromTemplate":"Von Vorlage erstellen","Common.Controllers.ExternalLinks.textAddExternalData":"Der Link zu einer externen Quelle wurde hinzugefügt. Sie können solche Links auf der Registerkarte \"Daten\" aktualisieren.","Common.Controllers.ExternalLinks.textDontUpdate":"Nicht aktualisieren","Common.Controllers.ExternalLinks.textUpdate":"Aktualisieren","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Fehler: Aktualisierung fehlgeschlagen","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Diese Arbeitsmappe enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Dieses Dokument enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Diese Präsentation enthält Links zu einer oder mehreren externen Quellen, die unsicher sein könnten.
Wenn Sie den Links vertrauen, aktualisieren Sie sie, um die neuesten Daten zu erhalten.","Common.Controllers.History.notcriticalErrorTitle":"Achtung","Common.Controllers.History.txtErrorLoadHistory":"Laden der Historie ist fehlgeschlagen ","Common.Controllers.Plugins.helpMoveMacros":"Um mit Makros zu arbeiten, wechseln Sie auf die Registerkarte Ansicht.","Common.Controllers.Plugins.helpMoveMacrosHeader":"Die verschobene Schaltfläche \"Makros\"","Common.Controllers.Plugins.helpUseMacros":"Die Schaltfläche \"Makros\" finden Sie hier.","Common.Controllers.Plugins.helpUseMacrosHeader":"Geänderter Zugriff auf Makros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Die Plugins wurden erfolgreich installiert. Sie können hier auf alle Hintergrund-Plugins zugreifen.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} wurde erfolgreich installiert. Sie können hier auf alle Hintergrund-Plugins zugreifen.","Common.Controllers.Plugins.textRunInstalledPlugins":"Installierte Plugins starten","Common.Controllers.Plugins.textRunPlugin":"Plugin starten","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Eine neue Zeile unten in der Tabelle hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Den Stil der Überschrift 1 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Den Stil der Überschrift 2 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Den Stil der Überschrift 3 auf das ausgewählte Textfragment anwenden.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Aus dem ausgewählten Textfragment eine ungeordnete Aufzählungsliste erstellen oder eine neue beginnen.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach unten zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach links zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach rechts zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Die Pfeiltasten auf der Tastatur verwenden, um das ausgewählte Objekt einen großen Schritt nach oben zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionBold":"Die Schriftart des ausgewählten Textfragments fett machen, damit es schwerer erscheint.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Zwischen zentrierter und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Die nächste Kombinationsfeldoption im Formular wählen.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Die vorherige Kombinationsfeldoption im Formular wählen.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Das aktuelle PDF-Fenster schließen.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Ein Menü oder ein modales Fenster schließen. Popups und Sprechblasen mit Kommentaren zurücksetzen und Änderungen überprüfen. Den Zeichen- und Löschmodus für Tabellen zurücksetzen. Drag-and-Drop für Text zurücksetzen. Den Markierungsauswahlmodus zurücksetzen. Den Formatübertragermodus zurücksetzen. Die Auswahl von Formen aufheben. Den Modus zum Hinzufügen von Formen zurücksetzen. Die Kopf-/Fußzeile verlassen. Das Ausfüllen von Formularen beenden.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Den ausgewählten Textabschnitt in die Zwischenablage des Computers senden. Der kopierte Text kann später an anderer Stelle im selben Dokument, in einem anderen Dokument oder in einem anderen Programm eingefügt werden.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Die Formatierung aus dem ausgewählten Fragment des aktuell bearbeiteten Textes kopieren. Die kopierte Formatierung kann später auf ein anderes Textfragment im selben Dokument angewendet werden.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Ein Copyright-Symbol rechts neben dem Cursor einfügen.","Common.Controllers.Shortcuts.txtDescriptionCut":"Den ausgewählten Textabschnitt löschen und ihn in der Zwischenablage des Computers speichern. Der kopierte Text kann später an anderer Stelle im selben Dokument, in einem anderen Dokument oder in einem anderen Programm eingefügt werden.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Die Schriftgröße für das ausgewählte Textfragment um 1 Punkt verringern.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Ein Zeichen links vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Ein Wort/eine Auswahl/ein grafisches Objekt links vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Ein Zeichen rechts vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Ein Wort/eine Auswahl/ein grafisches Objekt rechts vom Cursor löschen.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Wenn der Diagrammtitel ausgewählt ist und der Titel leer ist, bewegen Sie den Cursor an den Anfang der Zeile, andernfalls wählen Sie den Text aus.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Die letzte rückgängig gemachte Aktion wiederholen.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Den gesamten Text im PDF auswählen.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Wenn die Form ausgewählt ist und keinen Inhalt enthält, erstellen Sie Inhalt und bewegen Sie den Cursor an den Anfang der Zeile. Wenn der Inhalt leer ist, bewegen Sie den Cursor dorthin. Andernfalls wählen Sie den gesamten Inhalt aus.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Die zuletzt ausgeführte Aktion rückgängig machen.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Rechts vom Cursor einen Geviertstrich einfügen.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Rechts vom Cursor einen Halbgeviertstrich einfügen.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Den aktuellen Absatz und beginnen Sie einen neuen beenden.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Einen neuen Absatz innerhalb einer Zelle beginnen.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Dem Gleichungsargument einen neuen Platzhalter hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Die Ausrichtungsebene des Operators nach links ändern (für die zweite Zeile der Gleichung mit einem erzwungenen Umbruch).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Die Ausrichtungsebene des Operators nach rechts ändern (für die zweite Zeile der Gleichung mit einem erzwungenen Umbruch).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Das Eurozeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Das Auslassungszeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Die Schriftgröße für das ausgewählte Textfragment um 1 Punkt erhöhen.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Einen Absatz von links schrittweise einrücken.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Einen Spaltenumbruch hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Eine Endnote einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"An der aktuellen Cursorposition eine Gleichung einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Eine Fußnote einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Fügen Sie einen Link ein, der zu einer Webadresse führt.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Einen Zeilenumbruch hinzufügen, ohne einen neuen Absatz zu beginnen.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Im mehrzeiligen Formular einen Zeilenumbruch hinzufügen.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"An der aktuellen Cursorposition einen Seitenumbruch einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Die aktuelle Seitenzahl an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Einem Absatz das Tabulatorzeichen hinzufügen (wenn sich der Cursor nicht am Anfang eines Absatzes befindet).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Einen Tabellenumbruch innerhalb der Tabelle einfügen.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Die Schriftart des ausgewählten Textfragments kursiv und leicht schräg machen.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Zwischen Blocksatz und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Einen Absatz linksbündig ausrichten.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach unten zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach links zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach rechts zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Halten Sie die angegebene Taste gedrückt und verwenden Sie die Pfeiltasten auf der Tastatur, um das ausgewählte Objekt jeweils um ein Pixel nach oben zu verschieben.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Den Einzug für die ausgewählten Absätze vergrößern.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Den Einzug für die ausgewählten Absätze verkleinern.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Den Fokus auf das nächste Objekt nach dem aktuell ausgewählten verschieben.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Den Fokus auf das vorherige Objekt vor dem aktuell ausgewählten verschieben.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Den Cursor eine Zeile nach unten bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Den Cursor ganz an das Ende der aktuell bearbeiteten PDF-Datei setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Den Cursor an das Ende der aktuell bearbeiteten Zeile setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Den Cursor ein Wort nach rechts bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Den Cursor ein Zeichen nach links bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Zur unteren Kopfzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Zur unteren Kopf-/Fußzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Zur nächsten Zelle in einer Tabellenzeile gehen.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Zum nächsten Formular wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Zur nächsten Seite im aktuell bearbeiteten PDF wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Zur nächsten Zeile in einer Tabelle wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Zur vorherigen Zelle in einer Tabellenzeile wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Zum vorherigen Formular wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Zur vorherigen Seite im aktuell bearbeiteten PDF wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Zur vorherigen Zeile in einer Tabelle wechseln.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Den Cursor um ein Zeichen nach rechts bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Zum Anfang der aktuell bearbeiteten PDF-Datei springen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Den Cursor an den Anfang der aktuell bearbeiteten Zeile setzen.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Den Cursor ganz an den Anfang der Seite setzen, die auf die aktuell bearbeitete Seite folgt.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Den Cursor ganz an den Anfang der Seite setzen, die der aktuell bearbeiteten Seite vorausgeht.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Den Cursor an den Anfang eines Wortes oder ein Wort nach links bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Den Cursor eine Zeile nach oben bewegen.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Zur oberen Kopfzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Zur oberen Kopf-/Fußzeile wechseln (wenn sich der Cursor in der Kopf-/Fußzeile befindet).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"In Desktop-Editoren zur nächsten Dateiregisterkarte oder in Online-Editoren zur nächsten Browserregisterkarte wechseln.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Zwischen Steuerelementen navigieren, um in modalen Dialogen den Fokus auf das nächste Steuerelement zu legen.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Einen Bindestrich zwischen Zeichen erstellen, der nicht zum Beginnen einer neuen Zeile verwendet werden kann.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Ein Leerzeichen zwischen Zeichen erstellen, das nicht zum Beginnen einer neuen Zeile verwendet werden kann.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Das Chat-Panel in den Online-Editoren öffnen und eine Nachricht senden.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Ein Dateneingabefeld öffnen, in das man den Text des Kommentars eingeben kann.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Das Kommentarfeld öffnen, um Ihren eigenen Kommentar hinzuzufügen oder auf die Kommentare anderer Benutzer zu antworten.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Das Kontextmenü des ausgewählten Elements öffnen.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Das Standarddialogfeld zur Auswahl einer vorhandenen Datei öffnen. Wenn Sie die Datei in diesem Dialogfeld auswählen und auf „Öffnen“ klicken, wird die Datei in einem neuen Tab oder Fenster von Desktop Editors geöffnet.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Das Dateifenster öffnen, um die aktuelle PDF-Datei zu speichern, herunterzuladen, zu drucken, ihre Informationen anzuzeigen, ein neues Dokument zu erstellen oder eine vorhandene PDF-Datei zu öffnen, auf das Hilfecenter des PDF-Editors oder auf erweiterte Einstellungen zuzugreifen.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Das Menü „Suchen und Ersetzen“ mit dem Ersetzungsfeld öffnen, um ein oder mehrere Vorkommen der gefundenen Zeichen zu ersetzen.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Das Dialogfenster „Suchen“ öffnen, um mit der Suche nach einem Zeichen/Wort/einer Phrase in der aktuell bearbeiteten PDF-Datei zu beginnen.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Das Hilfemenü des PDF-Editors öffnen.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Den zuvor kopierten Text aus der Zwischenablage des Computers an der aktuellen Cursorposition einfügen. Der Text kann zuvor aus demselben Dokument, einem anderen Dokument oder einem anderen Programm kopiert worden sein.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Die zuvor kopierte Formatierung auf den Text im aktuell bearbeiteten PDF anwenden.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Den zuvor kopierten Text aus der Zwischenablage des Computers an der aktuellen Cursorposition einfügen, ohne die ursprüngliche Formatierung beizubehalten. Der Text kann zuvor aus demselben Dokument, einem anderen Dokument oder einem anderen Programm kopiert worden sein.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"In Desktop-Editoren zur vorherigen Dateiregisterkarte oder in Online-Editoren zur vorherigen Browserregisterkarte wechseln.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Zwischen Steuerelementen navigieren, um in modalen Dialogen den Fokus auf das vorherige Steuerelement zu legen.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"PDF mit einem der verfügbaren Drucker ausdrucken oder es als Datei speichern.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Das eingetragene Markenzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Den ausgewählten Unicode-Code durch ein Symbol ersetzen.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Die Formatierung des ausgewählten Textfragments löschen.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Zwischen rechts- und linksbündiger Ausrichtung eines Absatzes wechseln.","Common.Controllers.Shortcuts.txtDescriptionSave":"Alle Änderungen an der aktuell mit dem PDF-Editor bearbeiteten PDF-Datei speichern. Die aktive Datei wird mit dem aktuellen Dateinamen, Speicherort und Dateiformat gespeichert.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Das Fenster „Herunterladen als...“ öffnen, um die aktuell bearbeitete PDF-Datei in einem der unterstützten Formate auf der Festplatte Ihres Computers zu speichern.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Im PDF etwa eine sichtbare Seite nach unten scrollen.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Im PDF etwa eine sichtbare Seite nach oben scrollen.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Ein Zeichen links von der Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Ein Textfragment vom Cursor bis zum Anfang eines Wortes auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Den Cursor eine Zeile nach unten bewegen und alle Symbole zwischen der vorherigen und der aktuellen Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Den Cursor eine Zeile nach oben bewegen und alle Symbole zwischen der vorherigen und der aktuellen Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Den Seitenteil von der Cursorposition bis zum unteren Teil des Bildschirms auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Den Seitenteil von der Cursorposition bis zum oberen Teil des Bildschirms auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Ein Zeichen rechts von der Cursorposition auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Ein Textfragment vom Cursor bis zum Ende eines Wortes auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Ein Textfragment vom Cursor bis zum Anfang der nächsten Seite auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Ein Textfragment vom Cursor bis zum Anfang der vorherigen Seite auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Ein Textfragment vom Cursor bis zum Ende der PDF-Datei auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Ein Textfragment vom Cursor bis zum Ende der aktuellen Zeile auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Ein Textfragment vom Cursor bis zum Anfang des PDFs auswählen.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Ein Textfragment vom Cursor bis zum Anfang der aktuellen Zeile auswählen.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Die Anzeige nicht druckbarer Zeichen ein- oder ausblenden.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Das bedingte Trennzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Die Quellformatierung des kopierten Textes beibehalten.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Den Text ohne seine ursprüngliche Formatierung einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Die kopierte Tabelle als verschachtelte Tabelle in die ausgewählte Zelle der vorhandenen Tabelle einfügen.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Den Inhalt der vorhandenen Tabelle durch die kopierten Daten ersetzen.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Aktiviert/deaktiviert die Übertragung von in der Anwendung ausgeführten Aktionen für Bildschirmleseprogramme.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Die Listen-/Einzugsebene erhöhen (mit dem Cursor am Anfang eines Absatzes).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Die Listen-/Einzugsebene verkleinern (mit dem Cursor am Anfang eines Absatzes).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Das ausgewählte Textfragment mit einer Linie durchstreichen, die durch die Buchstaben verläuft.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Das ausgewählte Textfragment verkleinern und es im unteren Teil der Textzeile platzieren, z.B. wie bei chemischen Formeln.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Das ausgewählte Textfragment verkleinern und es im oberen Teil der Textzeile platzieren, z.B. wie bei Brüchen.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Das Markenzeichen an der aktuellen Cursorposition einfügen.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Das ausgewählte Textfragment mit einer Linie unterhalb der Buchstaben unterstreichen.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Schrittweise einen Absatzeinzug von links entfernen.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Felder aktualisieren (z. B. Inhaltsverzeichnis).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Klicken Sie auf einen Link (wobei sich der Cursor im Link befindet).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Den Zoom-Parameter der aktuellen PDF-Datei auf den Standardwert von 100% zurücksetzen.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Das aktuell bearbeitete PDF vergrößern.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Die aktuell bearbeitete PDF-Datei verkleinern.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Fläche","Common.define.chartData.textAreaStacked":"Gestapelte Fläche","Common.define.chartData.textAreaStackedPer":"100% Gestapelte Fläche","Common.define.chartData.textBar":"Balken","Common.define.chartData.textBarNormal":"Gruppierte Spalte","Common.define.chartData.textBarNormal3d":"Gruppierte 3D-Spalte","Common.define.chartData.textBarNormal3dPerspective":"3D-Spalte","Common.define.chartData.textBarStacked":"Gestapelte Spalte","Common.define.chartData.textBarStacked3d":"Gestapelte 3D-Spalte","Common.define.chartData.textBarStackedPer":"100% Gestapelte Spalte","Common.define.chartData.textBarStackedPer3d":"3D 100% Gestapelte Säule","Common.define.chartData.textCharts":"Diagramme","Common.define.chartData.textColumn":"Spalte","Common.define.chartData.textCombo":"Verbund","Common.define.chartData.textComboAreaBar":"Gestapelter Bereich – gruppierte Spalte","Common.define.chartData.textComboBarLine":"Gruppierte Spalte - Linie","Common.define.chartData.textComboBarLineSecondary":"Gruppierte Spalte/Linie auf der Sekundärachse","Common.define.chartData.textComboCustom":"Benutzerdefinierte Kombination","Common.define.chartData.textDoughnut":"Ring","Common.define.chartData.textHBarNormal":"Gruppierte Balken","Common.define.chartData.textHBarNormal3d":"Gruppierte 3D-Balken","Common.define.chartData.textHBarStacked":"Gestapelte Balken","Common.define.chartData.textHBarStacked3d":"Gestapelte 3D-Balken","Common.define.chartData.textHBarStackedPer":"100% Gestapelte Balken","Common.define.chartData.textHBarStackedPer3d":"3D 100% Gestapelte Balken","Common.define.chartData.textLine":"Linie","Common.define.chartData.textLine3d":"3D-Linie","Common.define.chartData.textLineMarker":"Linie mit Datenpunkten","Common.define.chartData.textLineStacked":"Gestapelte Linie","Common.define.chartData.textLineStackedMarker":"Gestapelte Linie mit Markierungen","Common.define.chartData.textLineStackedPer":"100% Gestapelte Linie","Common.define.chartData.textLineStackedPerMarker":"100% Gestapelte Linie mit Datenpunkten","Common.define.chartData.textPie":"Kreisdiagramm","Common.define.chartData.textPie3d":"3D-Kuchendiagramm","Common.define.chartData.textPoint":"Punkt (XY)","Common.define.chartData.textRadar":"Radar","Common.define.chartData.textRadarFilled":"Gefülltes Radardiagramm","Common.define.chartData.textRadarMarker":"Radar mit Markierungen","Common.define.chartData.textScatter":"Punkte","Common.define.chartData.textScatterLine":"Punkte mit geraden Linien","Common.define.chartData.textScatterLineMarker":"Punkte mit geraden Linien und Markierungen","Common.define.chartData.textScatterSmooth":"Punkte mit interpolierten Linien","Common.define.chartData.textScatterSmoothMarker":"Punkte mit interpolierten Linien und Markierungen","Common.define.chartData.textStock":"Bestand","Common.define.chartData.textSurface":"Oberfläche","Common.define.smartArt.textAccentedPicture":"Akzentbild","Common.define.smartArt.textAccentProcess":"Akzentprozess","Common.define.smartArt.textAlternatingFlow":"Alternierender Fluss","Common.define.smartArt.textAlternatingHexagons":"Alternierende Sechsecke","Common.define.smartArt.textAlternatingPictureBlocks":"Alternierende Bildblöcke","Common.define.smartArt.textAlternatingPictureCircles":"Alternierende Bildblöcke","Common.define.smartArt.textArchitectureLayout":"Architekturlayout","Common.define.smartArt.textArrowRibbon":"Pfeilband","Common.define.smartArt.textAscendingPictureAccentProcess":"Aufsteigender Bildakzentprozess","Common.define.smartArt.textBalance":"Gleichgewicht","Common.define.smartArt.textBasicBendingProcess":"Einfacher umgebrochener Prozess","Common.define.smartArt.textBasicBlockList":"Einfache Blockliste","Common.define.smartArt.textBasicChevronProcess":"Einfacher Chevronprozess","Common.define.smartArt.textBasicCycle":"Einfacher Kreis","Common.define.smartArt.textBasicMatrix":"Einfache Matrix","Common.define.smartArt.textBasicPie":"Einfaches Kreisdiagramm","Common.define.smartArt.textBasicProcess":"Einfacher Prozess","Common.define.smartArt.textBasicPyramid":"Einfache Pyramide","Common.define.smartArt.textBasicRadial":"Einfaches Radial","Common.define.smartArt.textBasicTarget":"Einfaches Ziel","Common.define.smartArt.textBasicTimeline":"Einfache Zeitachse","Common.define.smartArt.textBasicVenn":"Einfaches Venn","Common.define.smartArt.textBendingPictureAccentList":"Umgebrochene Bildakzentliste","Common.define.smartArt.textBendingPictureBlocks":"Umgebrochene Bildblöcke","Common.define.smartArt.textBendingPictureCaption":"Umgebrochene Bildbeschriftung","Common.define.smartArt.textBendingPictureCaptionList":"Umgebrochene Bildbeschriftungsliste","Common.define.smartArt.textBendingPictureSemiTranparentText":"Umgebrochener halbtransparenter Bildtext","Common.define.smartArt.textBlockCycle":"Blockkreis","Common.define.smartArt.textBubblePictureList":"Blasenbildliste","Common.define.smartArt.textCaptionedPictures":"Bilder mit Beschriftungen","Common.define.smartArt.textChevronAccentProcess":"Chevronakzentprozess","Common.define.smartArt.textChevronList":"Chevronliste","Common.define.smartArt.textCircleAccentTimeline":"Zeitachse mit Kreisakzent","Common.define.smartArt.textCircleArrowProcess":"Kreisförmiger Pfeilprozess","Common.define.smartArt.textCirclePictureHierarchy":"Bilderhierarchie mit Kreisakzent","Common.define.smartArt.textCircleProcess":"Kreisprozess","Common.define.smartArt.textCircleRelationship":"Kreisbeziehung","Common.define.smartArt.textCircularBendingProcess":"Kreisförmiger umgebrochener Prozess","Common.define.smartArt.textCircularPictureCallout":"Kreisförmige Bildbeschriftung","Common.define.smartArt.textClosedChevronProcess":"Geschlossener Chevronprozess","Common.define.smartArt.textContinuousArrowProcess":"Fortlaufender Pfeilprozess","Common.define.smartArt.textContinuousBlockProcess":"Fortlaufender Blockprozess","Common.define.smartArt.textContinuousCycle":"Fortlaufender Kreis","Common.define.smartArt.textContinuousPictureList":"Fortlaufende Bildliste","Common.define.smartArt.textConvergingArrows":"Zusammenlaufende Pfeile","Common.define.smartArt.textConvergingRadial":"Zusammenlaufendes Radial","Common.define.smartArt.textConvergingText":"Zusammenlaufender Text","Common.define.smartArt.textCounterbalanceArrows":"Gegengewichtspfeile","Common.define.smartArt.textCycle":"Zyklus","Common.define.smartArt.textCycleMatrix":"Zyklusmatrix","Common.define.smartArt.textDescendingBlockList":"Absteigende Blockliste","Common.define.smartArt.textDescendingProcess":"Absteigender Prozess","Common.define.smartArt.textDetailedProcess":"Detaillierter Prozess","Common.define.smartArt.textDivergingArrows":"Auseinanderlaufende Pfeile","Common.define.smartArt.textDivergingRadial":"Auseinanderlaufendes Radial","Common.define.smartArt.textEquation":"Gleichung","Common.define.smartArt.textFramedTextPicture":"Umrahmte Textgrafik","Common.define.smartArt.textFunnel":"Trichter","Common.define.smartArt.textGear":"Zahnrad","Common.define.smartArt.textGridMatrix":"Rastermatrix","Common.define.smartArt.textGroupedList":"Gruppierte Liste","Common.define.smartArt.textHalfCircleOrganizationChart":"Halbkreisorganigramm","Common.define.smartArt.textHexagonCluster":"Sechseck-Cluster","Common.define.smartArt.textHexagonRadial":"Sechseck Radial","Common.define.smartArt.textHierarchy":"Hierarchie","Common.define.smartArt.textHierarchyList":"Hierarchieliste","Common.define.smartArt.textHorizontalBulletList":"Horizontale Aufzählungsliste","Common.define.smartArt.textHorizontalHierarchy":"Horizontale Hierarchie","Common.define.smartArt.textHorizontalLabeledHierarchy":"Horizontal beschriftete Hierarchie","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Horizontale mehrstufige Hierarchie","Common.define.smartArt.textHorizontalOrganizationChart":"Horizontales Organigramm","Common.define.smartArt.textHorizontalPictureList":"Horizontale Bildliste","Common.define.smartArt.textIncreasingArrowProcess":"Zunehmender Pfeilprozess","Common.define.smartArt.textIncreasingCircleProcess":"Zunehmender Kreisprozess","Common.define.smartArt.textInterconnectedBlockProcess":"Vernetzter Blockprozess","Common.define.smartArt.textInterconnectedRings":"Verbundene Ringe","Common.define.smartArt.textInvertedPyramid":"Umgekehrte Pyramide","Common.define.smartArt.textLabeledHierarchy":"Beschriftete Hierarchie","Common.define.smartArt.textLinearVenn":"Lineares Venn","Common.define.smartArt.textLinedList":"Liste mit Linien","Common.define.smartArt.textList":"Liste","Common.define.smartArt.textMatrix":"Matrix","Common.define.smartArt.textMultidirectionalCycle":"Multidirektionaler Zyklus","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigramm mit Namen und Titel","Common.define.smartArt.textNestedTarget":"Geschachteltes Ziel","Common.define.smartArt.textNondirectionalCycle":"Richtungsloser Kreis","Common.define.smartArt.textOpposingArrows":"Entgegengesetzte Pfeile","Common.define.smartArt.textOpposingIdeas":"Konträre Ansichten","Common.define.smartArt.textOrganizationChart":"Organigramm","Common.define.smartArt.textOther":"Andere","Common.define.smartArt.textPhasedProcess":"Phasenprozess","Common.define.smartArt.textPicture":"Bild","Common.define.smartArt.textPictureAccentBlocks":"Bildakzentblöcke","Common.define.smartArt.textPictureAccentList":"Bildakzentliste","Common.define.smartArt.textPictureAccentProcess":"Bildakzentprozess","Common.define.smartArt.textPictureCaptionList":"Bildbeschriftungsliste","Common.define.smartArt.textPictureFrame":"Bildrahmen","Common.define.smartArt.textPictureGrid":"Bildraster","Common.define.smartArt.textPictureLineup":"Bildanordnung","Common.define.smartArt.textPictureOrganizationChart":"Bildorganigramm","Common.define.smartArt.textPictureStrips":"Bildstreifen","Common.define.smartArt.textPieProcess":"Kreisdiagrammprozess","Common.define.smartArt.textPlusAndMinus":"Plus und Minus","Common.define.smartArt.textProcess":"Prozess","Common.define.smartArt.textProcessArrows":"Prozesspfeile","Common.define.smartArt.textProcessList":"Prozessliste","Common.define.smartArt.textPyramid":"Pyramide","Common.define.smartArt.textPyramidList":"Pyramidenliste","Common.define.smartArt.textRadialCluster":"Radialer Cluster","Common.define.smartArt.textRadialCycle":"Radialkreis","Common.define.smartArt.textRadialList":"Radialliste","Common.define.smartArt.textRadialPictureList":"Radiale Bildliste","Common.define.smartArt.textRadialVenn":"Radialvenn","Common.define.smartArt.textRandomToResultProcess":"Zufallsergebnisprozess","Common.define.smartArt.textRelationship":"Beziehung","Common.define.smartArt.textRepeatingBendingProcess":"Wiederholter umgebrochener Prozess","Common.define.smartArt.textReverseList":"Umgekehrte Liste","Common.define.smartArt.textSegmentedCycle":"Segmentierter Kreis","Common.define.smartArt.textSegmentedProcess":"Segmentierter Prozess","Common.define.smartArt.textSegmentedPyramid":"Segmentierte Pyramide","Common.define.smartArt.textSnapshotPictureList":"Momentaufnahme-Bildliste","Common.define.smartArt.textSpiralPicture":"Spiralförmige Grafik","Common.define.smartArt.textSquareAccentList":"Liste mit quadratischen Akzenten","Common.define.smartArt.textStackedList":"Gestapelte Liste","Common.define.smartArt.textStackedVenn":"Gestapeltes Venn","Common.define.smartArt.textStaggeredProcess":"Gestaffelter Prozess","Common.define.smartArt.textStepDownProcess":"Prozess mit absteigenden Schritten","Common.define.smartArt.textStepUpProcess":"Prozess mit aufsteigenden Schritten","Common.define.smartArt.textSubStepProcess":"Unterschrittprozess","Common.define.smartArt.textTabbedArc":"Registerkartenbogen","Common.define.smartArt.textTableHierarchy":"Tabellenhierarchie","Common.define.smartArt.textTableList":"Tabellenliste","Common.define.smartArt.textTabList":"Registerkartenliste","Common.define.smartArt.textTargetList":"Zielliste","Common.define.smartArt.textTextCycle":"Textzyklus","Common.define.smartArt.textThemePictureAccent":"Designbildakzent","Common.define.smartArt.textThemePictureAlternatingAccent":"Alternierender Designbildakzent","Common.define.smartArt.textThemePictureGrid":"Designbildraster","Common.define.smartArt.textTitledMatrix":"Betitelte Matrix","Common.define.smartArt.textTitledPictureAccentList":"Bildakzentliste mit Titel","Common.define.smartArt.textTitledPictureBlocks":"Titelbildblöcke","Common.define.smartArt.textTitlePictureLineup":"Titelbildanordnung","Common.define.smartArt.textTrapezoidList":"Trapezförmige Liste","Common.define.smartArt.textUpwardArrow":"Pfeil nach oben","Common.define.smartArt.textVaryingWidthList":"Liste mit variabler Breite","Common.define.smartArt.textVerticalAccentList":"Liste mit vertikalen Akzenten","Common.define.smartArt.textVerticalArrowList":"Vertikale Pfeilliste","Common.define.smartArt.textVerticalBendingProcess":"Vertikaler umgebrochener Prozess","Common.define.smartArt.textVerticalBlockList":"Vertikale Blockliste","Common.define.smartArt.textVerticalBoxList":"Vertikale Feldliste","Common.define.smartArt.textVerticalBracketList":"Liste mit vertikalen Klammern","Common.define.smartArt.textVerticalBulletList":"Vertikale Aufzählung","Common.define.smartArt.textVerticalChevronList":"Vertikale Chevronliste","Common.define.smartArt.textVerticalCircleList":"Liste mit vertikalen Kreisen","Common.define.smartArt.textVerticalCurvedList":"Liste mit vertikalen Kurven","Common.define.smartArt.textVerticalEquation":"Vertikale Gleichung","Common.define.smartArt.textVerticalPictureAccentList":"Vertikale Bildakzentliste","Common.define.smartArt.textVerticalPictureList":"Vertikale Bildliste","Common.define.smartArt.textVerticalProcess":"Vertikaler Prozess","Common.Translation.textMoreButton":"Mehr","Common.Translation.tipFileLocked":"Das Dokument ist für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die Datei später als lokale Kopie speichern.","Common.Translation.tipFileReadOnly":"Das Dokument ist schreibgeschützt und für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die lokale Kopie später speichern.","Common.Translation.warnFileLocked":"Sie können diese Datei nicht editieren, da es in einem anderen Program bearbeitet wird.","Common.Translation.warnFileLockedBtnEdit":"Kopie erstellen","Common.Translation.warnFileLockedBtnView":"Zum Anzeigen öffnen","Common.UI.ButtonColored.textAutoColor":"Automatisch","Common.UI.ButtonColored.textEyedropper":"Pipette","Common.UI.ButtonColored.textNewColor":"Mehr Farben","Common.UI.Calendar.textApril":"April","Common.UI.Calendar.textAugust":"August","Common.UI.Calendar.textDecember":"Dezember","Common.UI.Calendar.textFebruary":"Februar","Common.UI.Calendar.textJanuary":"Januar","Common.UI.Calendar.textJuly":"Juli","Common.UI.Calendar.textJune":"Juni","Common.UI.Calendar.textMarch":"März","Common.UI.Calendar.textMay":"Mai","Common.UI.Calendar.textMonths":"Monate","Common.UI.Calendar.textNovember":"November","Common.UI.Calendar.textOctober":"Oktober","Common.UI.Calendar.textSeptember":"September","Common.UI.Calendar.textShortApril":"Apr","Common.UI.Calendar.textShortAugust":"Aug","Common.UI.Calendar.textShortDecember":"Dez","Common.UI.Calendar.textShortFebruary":"Feb","Common.UI.Calendar.textShortFriday":"Fr","Common.UI.Calendar.textShortJanuary":"Jan","Common.UI.Calendar.textShortJuly":"Jul","Common.UI.Calendar.textShortJune":"Jun","Common.UI.Calendar.textShortMarch":"Mär","Common.UI.Calendar.textShortMay":"Mai","Common.UI.Calendar.textShortMonday":"Mo","Common.UI.Calendar.textShortNovember":"Nov","Common.UI.Calendar.textShortOctober":"Okt","Common.UI.Calendar.textShortSaturday":"Sa","Common.UI.Calendar.textShortSeptember":"Sep","Common.UI.Calendar.textShortSunday":"Son","Common.UI.Calendar.textShortThursday":"Do","Common.UI.Calendar.textShortTuesday":"Di","Common.UI.Calendar.textShortWednesday":"Mi","Common.UI.Calendar.textYears":"Jahre","Common.UI.ExtendedColorDialog.addButtonText":"Hinzufügen","Common.UI.ExtendedColorDialog.textCurrent":"Aktuell","Common.UI.ExtendedColorDialog.textHexErr":"Der eingegebene Wert ist ungültig.
Bitte geben Sie einen Wert zwischen 000000 und FFFFFF ein.","Common.UI.ExtendedColorDialog.textNew":"Neu","Common.UI.ExtendedColorDialog.textRGBErr":"Der eingegebene Wert ist ungültig.
Bitte geben Sie einen numerischen Wert zwischen 0 und 255 ein.","Common.UI.HSBColorPicker.textNoColor":"Ohne Farbe","Common.UI.InputFieldBtnCalendar.textDate":"Datum auswählen","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Passwort ausblenden","Common.UI.InputFieldBtnPassword.textHintHold":"Lang drücken, um das Passwort anzuzeigen","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Password anzeigen","Common.UI.SearchBar.capFind":"Suchen","Common.UI.SearchBar.capFindRedact":"Suchen und Schwärzen","Common.UI.SearchBar.textFind":"Suchen","Common.UI.SearchBar.tipCloseSearch":"Suche schließen","Common.UI.SearchBar.tipNextResult":"Nächstes Ergebnis","Common.UI.SearchBar.tipOpenAdvancedSettings":"Erweiterte Einstellungen öffnen","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"Suchen und Schwärzen","Common.UI.SearchBar.tipPreviousResult":"Vorheriges Ergebnis","Common.UI.SearchDialog.textHighlight":"Markierungsergebnisse","Common.UI.SearchDialog.textMatchCase":"Groß- und Kleinschreibung beachten","Common.UI.SearchDialog.textReplaceDef":"Geben Sie den Ersetzungstext ein","Common.UI.SearchDialog.textSearchStart":"Geben Sie den Text hier ein","Common.UI.SearchDialog.textTitle":"Suchen und ersetzen","Common.UI.SearchDialog.textTitle2":"Suchen","Common.UI.SearchDialog.textWholeWords":"Nur ganze Wörter","Common.UI.SearchDialog.txtBtnHideReplace":"Ersetzen ausblenden","Common.UI.SearchDialog.txtBtnReplace":"Ersetzen","Common.UI.SearchDialog.txtBtnReplaceAll":"Alles ersetzen","Common.UI.SynchronizeTip.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"Neu","Common.UI.SynchronizeTip.textSynchronize":"Das Dokument wurde von einem anderen Benutzer geändert.
Bitte klicken hier, um Ihre Änderungen zu speichern und die Aktualisierungen neu zu laden.","Common.UI.ThemeColorPalette.textRecentColors":"Kürzlich verwendete Farben","Common.UI.ThemeColorPalette.textStandartColors":"Standardfarben","Common.UI.ThemeColorPalette.textThemeColors":"Farben des Themas","Common.UI.ThemeColorPalette.textTransparent":"Transparent","Common.UI.Themes.txtThemeClassicLight":"Klassisch Hell","Common.UI.Themes.txtThemeContrastDark":"Dunkler Kontrast","Common.UI.Themes.txtThemeDark":"Dunkel","Common.UI.Themes.txtThemeGray":"Grau","Common.UI.Themes.txtThemeLight":"Hell","Common.UI.Themes.txtThemeModernDark":"Modern Dunkel","Common.UI.Themes.txtThemeModernLight":"Modern Hell","Common.UI.Themes.txtThemeSystem":"Dasselbe wie System","Common.UI.Window.cancelButtonText":"Abbrechen","Common.UI.Window.closeButtonText":"Schließen","Common.UI.Window.noButtonText":"Nein","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Bestätigung","Common.UI.Window.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.UI.Window.textError":"Fehler","Common.UI.Window.textInformation":"Information","Common.UI.Window.textWarning":"Warnung","Common.UI.Window.yesButtonText":"Ja","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Strg","Common.Utils.String.textShift":"Umschalten","Common.Utils.ThemeColor.txtaccent":"Akzent","Common.Utils.ThemeColor.txtAqua":"Dunkeltürkis","Common.Utils.ThemeColor.txtbackground":"Hintergrund","Common.Utils.ThemeColor.txtBlack":"Schwarz","Common.Utils.ThemeColor.txtBlue":"Blau","Common.Utils.ThemeColor.txtBrightGreen":"Helles Grün","Common.Utils.ThemeColor.txtBrown":"Braun","Common.Utils.ThemeColor.txtDarkBlue":"Dunkelblau","Common.Utils.ThemeColor.txtDarker":"Dunkler","Common.Utils.ThemeColor.txtDarkGray":"Dunkelgrau","Common.Utils.ThemeColor.txtDarkGreen":"Dunkelgrün","Common.Utils.ThemeColor.txtDarkPurple":"Dunkelviolett","Common.Utils.ThemeColor.txtDarkRed":"Dunkelrot","Common.Utils.ThemeColor.txtDarkTeal":"Dunkelblaugrün","Common.Utils.ThemeColor.txtDarkYellow":"Dunkelgelb","Common.Utils.ThemeColor.txtGold":"Gold","Common.Utils.ThemeColor.txtGray":"Grau","Common.Utils.ThemeColor.txtGreen":"Grün","Common.Utils.ThemeColor.txtIndigo":"Indigo","Common.Utils.ThemeColor.txtLavender":"Lavendel","Common.Utils.ThemeColor.txtLightBlue":"Hellblau","Common.Utils.ThemeColor.txtLighter":"Heller","Common.Utils.ThemeColor.txtLightGray":"Hellgrau","Common.Utils.ThemeColor.txtLightGreen":"Hellgrün","Common.Utils.ThemeColor.txtLightOrange":"Hellorange","Common.Utils.ThemeColor.txtLightYellow":"Hellgelb","Common.Utils.ThemeColor.txtOrange":"Orange","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Lila","Common.Utils.ThemeColor.txtRed":"Rot","Common.Utils.ThemeColor.txtRose":"Rosa","Common.Utils.ThemeColor.txtSkyBlue":"Himmelblau","Common.Utils.ThemeColor.txtTeal":"Türkisblau","Common.Utils.ThemeColor.txttext":"Text","Common.Utils.ThemeColor.txtTurquosie":"Türkis","Common.Utils.ThemeColor.txtViolet":"Violet","Common.Utils.ThemeColor.txtWhite":"Weiß","Common.Utils.ThemeColor.txtYellow":"Gelb","Common.Views.About.txtAddress":"Adresse:","Common.Views.About.txtLicensee":"LIZENZNEHMER","Common.Views.About.txtLicensor":"LIZENZGEBER","Common.Views.About.txtMail":"E-Mail-Adresse: ","Common.Views.About.txtPoweredBy":"Angetrieben von","Common.Views.About.txtTel":"Tel.: ","Common.Views.About.txtVersion":"Version","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Chat schließen","Common.Views.Chat.textEnterMessage":"Geben Sie Ihre Nachricht hier ein","Common.Views.Chat.textSend":"Senden","Common.Views.Comments.mniAuthorAsc":"Autor (A-Z)","Common.Views.Comments.mniAuthorDesc":"Autor (Z-A)","Common.Views.Comments.mniDateAsc":"Ältestes","Common.Views.Comments.mniDateDesc":"Neuer","Common.Views.Comments.mniFilterComments":"Kommentare anzeigen","Common.Views.Comments.mniFilterGroups":"Nach Gruppe filtern","Common.Views.Comments.mniPositionAsc":"Von oben","Common.Views.Comments.mniPositionDesc":"Von unten","Common.Views.Comments.textAdd":"Hinzufügen","Common.Views.Comments.textAddComment":"Kommentar hinzufügen","Common.Views.Comments.textAddCommentToDoc":"Kommentar zum Dokument hinzufügen","Common.Views.Comments.textAddReply":"Antwort hinzufügen","Common.Views.Comments.textAll":"Alles","Common.Views.Comments.textAnonym":"Gast","Common.Views.Comments.textCancel":"Abbrechen","Common.Views.Comments.textClose":"Schließen","Common.Views.Comments.textClosePanel":"Kommentare schließen","Common.Views.Comments.textComment":"Kommentar","Common.Views.Comments.textComments":"Kommentare","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Geben Sie Ihren Kommentar hier ein","Common.Views.Comments.textHintAddComment":"Kommentar hinzufügen","Common.Views.Comments.textOpen":"Offen","Common.Views.Comments.textOpenAgain":"Erneut öffnen","Common.Views.Comments.textReply":"Antworten","Common.Views.Comments.textResolve":"Lösen","Common.Views.Comments.textResolved":"Gelöst","Common.Views.Comments.textSort":"Kommentare sortieren","Common.Views.Comments.textSortFilter":"Kommentare sortieren und filtern","Common.Views.Comments.textSortFilterMore":"Sortieren, filtern und mehr","Common.Views.Comments.textSortMore":"Sortieren und mehr","Common.Views.Comments.textViewResolved":"Sie haben keine Berechtigung den Kommentar erneut zu öffnen","Common.Views.Comments.txtEmpty":"Das Dokument enthält keine Kommentare.","Common.Views.CopyWarningDialog.textDontShow":"Diese Meldung nicht mehr anzeigen","Common.Views.CopyWarningDialog.textMsg":"Die Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\" können mithilfe den Schaltflächen in der Symbolleiste und Aktionen im Kontextmenü nur in dieser Editor-Registerkarte durchgeführt werden.

Für Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:","Common.Views.CopyWarningDialog.textTitle":"Kopieren, Ausschneiden und Einfügen","Common.Views.CopyWarningDialog.textToCopy":"zum Kopieren","Common.Views.CopyWarningDialog.textToCut":"zum Ausschneiden","Common.Views.CopyWarningDialog.textToPaste":"zum Einfügen","Common.Views.CustomizeQuickAccessDialog.textDownload":"Herunterladen","Common.Views.CustomizeQuickAccessDialog.textMsg":"Markieren Sie die Befehle, die in der Symbolleiste für den Schnellzugriff angezeigt werden sollen","Common.Views.CustomizeQuickAccessDialog.textPrint":"Drucken","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Schnelldruck","Common.Views.CustomizeQuickAccessDialog.textRedo":"Wiederholen","Common.Views.CustomizeQuickAccessDialog.textSave":"Speichern","Common.Views.CustomizeQuickAccessDialog.textTitle":"Schnellzugriff anpassen","Common.Views.CustomizeQuickAccessDialog.textUndo":"Rückgängig machen","Common.Views.DocumentAccessDialog.textLoading":"Ladevorgang...","Common.Views.DocumentAccessDialog.textTitle":"Freigabeeinstellungen","Common.Views.Draw.hintEraser":"Radierer","Common.Views.Draw.hintSelect":"Auswählen","Common.Views.Draw.txtEraser":"Radierer","Common.Views.Draw.txtHighlighter":"Markierer","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Stift","Common.Views.Draw.txtSelect":"Auswählen","Common.Views.Draw.txtSize":"Größe","Common.Views.ExternalDiagramEditor.textTitle":"Diagramm Editor","Common.Views.ExternalEditor.textClose":"Schließen","Common.Views.ExternalEditor.textSave":"Speichern und beenden","Common.Views.ExternalLinksDlg.closeButtonText":"Schließen","Common.Views.ExternalLinksDlg.textAutoUpdate":"Daten aus den verknüpften Quellen automatisch aktualisieren","Common.Views.ExternalLinksDlg.textChange":"Quelle ändern","Common.Views.ExternalLinksDlg.textDelete":"Links unterbrechen","Common.Views.ExternalLinksDlg.textDeleteAll":"Alle Links unterbrechen","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Open Source","Common.Views.ExternalLinksDlg.textSource":"Quelle","Common.Views.ExternalLinksDlg.textStatus":"Status","Common.Views.ExternalLinksDlg.textUnknown":"Unbekannt","Common.Views.ExternalLinksDlg.textUpdate":"Werte aktualisieren","Common.Views.ExternalLinksDlg.textUpdateAll":"Alles aktualisieren","Common.Views.ExternalLinksDlg.textUpdating":"Wird aktualisiert...","Common.Views.ExternalLinksDlg.txtTitle":"Externe Links","Common.Views.Header.ariaQuickAccessToolbar":"Symbolleiste für Schnellzugriff","Common.Views.Header.labelCoUsersDescr":"Benutzer, die die Datei bearbeiten:","Common.Views.Header.textAddFavorite":"Als Favorit kennzeichnen","Common.Views.Header.textAdvSettings":"Erweiterte Einstellungen","Common.Views.Header.textAnnotateDesc":"Formulare ausfüllen oder Anmerkungen machen","Common.Views.Header.textBack":"Dateispeicherort öffnen","Common.Views.Header.textClose":"Datei schließen","Common.Views.Header.textComment":"Kommentieren","Common.Views.Header.textCommentDesc":"Alle Änderungen werden in der Datei gespeichert. Zusammenarbeit in Echtzeit","Common.Views.Header.textCompactView":"Symbolleiste ausblenden","Common.Views.Header.textDownload":"Herunterladen","Common.Views.Header.textEdit":"Bearbeitung","Common.Views.Header.textEditDesc":"Alle Änderungen werden in der Datei gespeichert. Zusammenarbeit in Echtzeit","Common.Views.Header.textEditDescNoCoedit":"Fügen Sie Text, Formen, Bilder usw. hinzu oder bearbeiten Sie sie.","Common.Views.Header.textHideLines":"Lineale ausblenden","Common.Views.Header.textHideStatusBar":"Statusleiste ausblenden","Common.Views.Header.textPrint":"Drucken","Common.Views.Header.textReadOnly":"Nur Lesen","Common.Views.Header.textRemoveFavorite":"Aus Favoriten entfernen","Common.Views.Header.textShare":"Freigeben","Common.Views.Header.textView":"Anzeigen","Common.Views.Header.textViewDesc":"Alle Änderungen werden lokal gespeichert","Common.Views.Header.textViewDescNoCoedit":"Anzeigen oder annotieren","Common.Views.Header.textZoom":"Zoom","Common.Views.Header.tipAccessRights":"Dokumentzugriffsrechte verwalten","Common.Views.Header.tipComment":"Kommentieren","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Symbolleiste für den Schnellzugriff anpassen","Common.Views.Header.tipDownload":"Datei herunterladen","Common.Views.Header.tipEdit":"Bearbeitung","Common.Views.Header.tipGoEdit":"Aktuelle Datei bearbeiten","Common.Views.Header.tipPrint":"Datei drucken","Common.Views.Header.tipPrintQuick":"Schnelldruck","Common.Views.Header.tipRedo":"Wiederholen","Common.Views.Header.tipSave":"Speichern","Common.Views.Header.tipSearch":"Suchen","Common.Views.Header.tipUndo":"Rückgängig machen","Common.Views.Header.tipUsers":"Benutzer anzeigen","Common.Views.Header.tipView":"Anzeigen","Common.Views.Header.tipViewSettings":"Anzeige-Einstellungen","Common.Views.Header.tipViewUsers":"Benutzer anzeigen und Zugriffsrechte für das Dokument verwalten","Common.Views.Header.txtAccessRights":"Zugriffsrechte ändern","Common.Views.Header.txtRename":"Umbenennen","Common.Views.ImageFromUrlDialog.textUrl":"Bild-URL einfügen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Dieses Feld ist erforderlich","Common.Views.ImageFromUrlDialog.txtNotUrl":"Dieses Feld muss eine URL im Format \"http://www.example.com\" sein","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Input a prompt for the query","Common.Views.MacrosAiDialog.textCreate":"Create","Common.Views.MacrosDialog.textAutostart":"Autostart","Common.Views.MacrosDialog.textConvertFromVBA":"Convert from VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convert macros from VBA","Common.Views.MacrosDialog.textCopy":"Copy","Common.Views.MacrosDialog.textCreateFromDesc":"Create from description","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Create macros from description","Common.Views.MacrosDialog.textCustomFunction":"Custom function","Common.Views.MacrosDialog.textCustomFunctions":"Custom functions","Common.Views.MacrosDialog.textDebug":"Debug","Common.Views.MacrosDialog.textDelete":"Delete","Common.Views.MacrosDialog.textFunctions":"Functions","Common.Views.MacrosDialog.textLoading":"Loading...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Make autostart","Common.Views.MacrosDialog.textRename":"Rename","Common.Views.MacrosDialog.textRun":"Run","Common.Views.MacrosDialog.textSave":"Save","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Unmake autostart","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"Add custom function","Common.Views.MacrosDialog.tipFunctionCopy":"Copy custom function","Common.Views.MacrosDialog.tipFunctionDelete":"Delete custom function","Common.Views.MacrosDialog.tipFunctionRename":"Rename custom function","Common.Views.MacrosDialog.tipMacrosAdd":"Add macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copy macros","Common.Views.MacrosDialog.tipMacrosDebug":"Debug macros","Common.Views.MacrosDialog.tipMacrosRename":"Rename macros","Common.Views.MacrosDialog.tipMacrosRun":"Run macros","Common.Views.MacrosDialog.tipRedo":"Redo","Common.Views.MacrosDialog.tipUndo":"Undo","Common.Views.OpenDialog.closeButtonText":"Datei schließen","Common.Views.OpenDialog.txtEncoding":"Verschlüsselung","Common.Views.OpenDialog.txtIncorrectPwd":"Kennwort ist falsch.","Common.Views.OpenDialog.txtOpenFile":"Kennwort zum Öffnen der Datei eingeben","Common.Views.OpenDialog.txtPassword":"Kennwort","Common.Views.OpenDialog.txtPreview":"Vorschau","Common.Views.OpenDialog.txtProtected":"Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.","Common.Views.OpenDialog.txtTitle":"Parameter für %1 auswählen","Common.Views.OpenDialog.txtTitleProtected":"Geschützte Datei","Common.Views.PasswordDialog.txtDescription":"Legen Sie ein Passwort fest, um dieses Dokument zu schützen","Common.Views.PasswordDialog.txtIncorrectPwd":"Bestätigungseingabe ist nicht identisch","Common.Views.PasswordDialog.txtPassword":"Passwort","Common.Views.PasswordDialog.txtRepeat":"Passwort wiederholen","Common.Views.PasswordDialog.txtTitle":"Passwort festlegen","Common.Views.PasswordDialog.txtWarning":"Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie es an einem sicheren Ort auf.","Common.Views.PluginDlg.textDock":"Plugin anheften","Common.Views.PluginDlg.textLoading":"Ladevorgang","Common.Views.PluginPanel.textClosePanel":"Plugin schließen","Common.Views.PluginPanel.textHidePanel":"Plugin reduzieren","Common.Views.PluginPanel.textLoading":"Ladevorgang","Common.Views.PluginPanel.textUndock":"Plugin entpinnen","Common.Views.Plugins.groupCaption":"Plugins","Common.Views.Plugins.strPlugins":"Plugins","Common.Views.Plugins.textBackgroundPlugins":"Plugins im Hintergrund","Common.Views.Plugins.textClosePanel":"Plugin schließen","Common.Views.Plugins.textLoading":"Ladevorgang","Common.Views.Plugins.textSettings":"Einstellungen","Common.Views.Plugins.textStart":"Start","Common.Views.Plugins.textStop":"Beenden","Common.Views.Plugins.textTheListOfBackgroundPlugins":"Die Liste der Plugins im Hintergrund","Common.Views.Protection.hintAddPwd":"Mit Kennwort verschlüsseln","Common.Views.Protection.hintDelPwd":"Kennwort löschen","Common.Views.Protection.hintPwd":"Das Kennwort ändern oder löschen","Common.Views.Protection.hintSignature":"Digitale Signatur oder Unterschriftenzeile hinzufügen","Common.Views.Protection.txtAddPwd":"Kennwort hinzufügen","Common.Views.Protection.txtChangePwd":"Kennwort ändern","Common.Views.Protection.txtDeletePwd":"Kennwort löschen","Common.Views.Protection.txtEncrypt":"Verschlüsseln","Common.Views.Protection.txtInvisibleSignature":"Digitale Signatur hinzufügen","Common.Views.Protection.txtSignature":"Signatur","Common.Views.Protection.txtSignatureLine":"Signaturzeile hinzufügen","Common.Views.RecentFiles.txtOpenRecent":"Zuletzt verwendete öffnen","Common.Views.RenameDialog.textName":"Dateiname","Common.Views.RenameDialog.txtInvalidName":"Dieser Dateiname darf keines der folgenden Zeichen enthalten:","Common.Views.ReviewChanges.strFast":"Schnell","Common.Views.ReviewChanges.strFastDesc":"Echtzeit-Zusammenbearbeitung. Alle Änderungen werden automatisch gespeichert.","Common.Views.ReviewChanges.strStrict":"Formal","Common.Views.ReviewChanges.strStrictDesc":"Verwenden Sie die Schaltfläche \"Speichern\", um die von Ihnen und anderen vorgenommenen Änderungen zu synchronisieren.","Common.Views.ReviewChanges.tipCoAuthMode":"Den gemeinsamen Bearbeitungsmodus einstellen","Common.Views.ReviewChanges.tipCommentRem":"Kommentare entfernen","Common.Views.ReviewChanges.tipCommentRemCurrent":"Aktuelle Kommentare entfernen","Common.Views.ReviewChanges.tipCommentResolve":"Kommentare lösen","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Aktuelle Kommentare lösen","Common.Views.ReviewChanges.tipHistory":"Versionshistorie anzeigen","Common.Views.ReviewChanges.tipSharing":"Dokumentzugriffsrechte verwalten","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Schließen","Common.Views.ReviewChanges.txtCoAuthMode":"Modus \"Gemeinsame Bearbeitung\"","Common.Views.ReviewChanges.txtCommentRemAll":"Alle Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemCurrent":"Aktuelle Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemMy":"Meine Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Meine aktuellen Kommentare entfernen","Common.Views.ReviewChanges.txtCommentRemove":"Löschen","Common.Views.ReviewChanges.txtCommentResolve":"Lösen","Common.Views.ReviewChanges.txtCommentResolveAll":"Alle Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Aktuelle Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveMy":"Meine Kommentare lösen","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Meine gültige Kommentare lösen","Common.Views.ReviewChanges.txtHistory":"Versionsverlauf","Common.Views.ReviewChanges.txtSharing":"Freigabe","Common.Views.ReviewPopover.textAdd":"Hinzufügen","Common.Views.ReviewPopover.textAddReply":"Antwort hinzufügen","Common.Views.ReviewPopover.textCancel":"Abbrechen","Common.Views.ReviewPopover.textClose":"Schließen","Common.Views.ReviewPopover.textComment":"Kommentar","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Geben Sie Ihren Kommentar hier ein","Common.Views.ReviewPopover.textFollowMove":"Verschieben nachverfolgen","Common.Views.ReviewPopover.textMention":"+Erwähnung ermöglicht den Zugriff auf das Dokument und das Senden einer E-Mail","Common.Views.ReviewPopover.textMentionNotify":"+Erwähnung benachrichtigt den Benutzer per E-Mail","Common.Views.ReviewPopover.textOpenAgain":"Erneut öffnen","Common.Views.ReviewPopover.textReply":"Antworten","Common.Views.ReviewPopover.textResolve":"Lösen","Common.Views.ReviewPopover.textViewResolved":"Sie haben keine Berechtigung, den Kommentar erneut zu öffnen","Common.Views.ReviewPopover.txtAccept":"Akzeptieren","Common.Views.ReviewPopover.txtDeleteTip":"Löschen","Common.Views.ReviewPopover.txtEditTip":"Bearbeiten","Common.Views.ReviewPopover.txtReject":"Ablehnen","Common.Views.SaveAsDlg.textLoading":"Ladevorgang","Common.Views.SaveAsDlg.textTitle":"Ordner fürs Speichern","Common.Views.SearchPanel.textCaseSensitive":"Groß- und Kleinschreibung beachten","Common.Views.SearchPanel.textCloseSearch":"Suche schließen","Common.Views.SearchPanel.textContentChanged":"Dokument verändert.","Common.Views.SearchPanel.textFind":"Suchen","Common.Views.SearchPanel.textFindAndRedact":"Suchen und Schwärzen","Common.Views.SearchPanel.textFindAndReplace":"Suchen und ersetzen","Common.Views.SearchPanel.textFindRedact":"Suchen und Schwärzen","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} Elemente erfolgreich ersetzt.","Common.Views.SearchPanel.textMark":"Zum Schwärzen markieren","Common.Views.SearchPanel.textMarkAll":"Alle markieren","Common.Views.SearchPanel.textMatchUsingRegExp":"Über reguläre Ausdrücke abgleichen","Common.Views.SearchPanel.textNoMatches":"Keine Treffer","Common.Views.SearchPanel.textNoSearchResults":"Keine Suchergebnisse","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} Elemente ersetzt. Die übrigen {2} Elemente sind von anderen Benutzern gesperrt.","Common.Views.SearchPanel.textReplace":"Ersetzen","Common.Views.SearchPanel.textReplaceAll":"Alles ersetzen","Common.Views.SearchPanel.textReplaceWith":"Ersetzen mit","Common.Views.SearchPanel.textSearchAgain":"{0}Neue Suche durchführen{1} für genaue Ergebnisse.","Common.Views.SearchPanel.textSearchHasStopped":"Suche abgebrochen","Common.Views.SearchPanel.textSearchResults":"Suchergebnisse: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Suchergebnisse","Common.Views.SearchPanel.textTooManyResults":"Es gibt zu viele Ergebnisse, um sie hier zu zeigen","Common.Views.SearchPanel.textWholeWords":"Nur ganze Wörter","Common.Views.SearchPanel.tipNextResult":"Nächstes Ergebnis","Common.Views.SearchPanel.tipPreviousResult":"Vorheriges Ergebnis","Common.Views.SelectFileDlg.textLoading":"Ladevorgang","Common.Views.SelectFileDlg.textTitle":"Datenquelle auswählen","Common.Views.ShapeShadowDialog.txtAngle":"Winkel","Common.Views.ShapeShadowDialog.txtDistance":"Abstand","Common.Views.ShapeShadowDialog.txtSize":"Größe","Common.Views.ShapeShadowDialog.txtTitle":"Schatten anpassen","Common.Views.ShapeShadowDialog.txtTransparency":"Transparenz","Common.Views.ShortcutsDialog.txtDescription":"Beschreibung","Common.Views.ShortcutsDialog.txtEmpty":"Keine Übereinstimmungen gefunden. Passen Sie Ihre Suche an.","Common.Views.ShortcutsDialog.txtRestoreAll":"Alles auf Standard zurücksetzen","Common.Views.ShortcutsDialog.txtRestoreContinue":"Möchten Sie fortsetzen?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Alle Tastenkombinationseinstellungen werden auf die Standardeinstellungen zurückgesetzt.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Auf Standard zurücksetzen","Common.Views.ShortcutsDialog.txtSearch":"Suchen","Common.Views.ShortcutsDialog.txtTitle":"Tastenkombinationen","Common.Views.ShortcutsEditDialog.txtAction":"Aktion","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Geben Sie die gewünschte Tastenkombination ein","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"Die von den Aktionen %1 verwendete Tastenkombination","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"Die von den Aktionen %1 verwendete Tastenkombination kann nicht geändert werden","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"Die von der Aktion %1 verwendete Tastenkombination","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"Die Tastenkombination wird von der Aktion %1 verwendet und kann nicht geändert werden","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Neue Tastenkombination","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Möchten Sie fortsetzen?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Alle Tastenkombinationen für die Aktion “%1” werden auf die Standardeinstellungen zurückgesetzt.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Auf Standard zurücksetzen","Common.Views.ShortcutsEditDialog.txtTitle":"Tastenkombination bearbeiten","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Geben Sie die gewünschte Tastenkombination ein","Common.Views.UserNameDialog.textDontShow":"Nicht mehr anzeigen","Common.Views.UserNameDialog.textLabel":"Bezeichnung:","Common.Views.UserNameDialog.textLabelError":"Bezeichnung darf nicht leer sein.","PDFE.Controllers.InsTab.textAccent":"Akzente","PDFE.Controllers.InsTab.textBracket":"Klammern","PDFE.Controllers.InsTab.textFraction":"Bruchrechnung","PDFE.Controllers.InsTab.textFunction":"Funktionen","PDFE.Controllers.InsTab.textInsert":"Einfügen","PDFE.Controllers.InsTab.textIntegral":"Integrale","PDFE.Controllers.InsTab.textLargeOperator":"Große Operatoren","PDFE.Controllers.InsTab.textLimitAndLog":"Grenzwerte und Logarithmen","PDFE.Controllers.InsTab.textMatrix":"Matrizen","PDFE.Controllers.InsTab.textOperator":"Operatoren","PDFE.Controllers.InsTab.textRadical":"Wurzeln","PDFE.Controllers.InsTab.textScript":"Skripts","PDFE.Controllers.InsTab.textShape":"Form","PDFE.Controllers.InsTab.textSymbols":"Symbole","PDFE.Controllers.InsTab.txtAccent_Accent":"Akut","PDFE.Controllers.InsTab.txtAccent_ArrowD":"Pfeil nach rechts und links oben","PDFE.Controllers.InsTab.txtAccent_ArrowL":"Pfeil nach links oben","PDFE.Controllers.InsTab.txtAccent_ArrowR":"Pfeil nach rechts oben","PDFE.Controllers.InsTab.txtAccent_Bar":"Balken","PDFE.Controllers.InsTab.txtAccent_BarBot":"Unterstreichung","PDFE.Controllers.InsTab.txtAccent_BarTop":"Überstreichung","PDFE.Controllers.InsTab.txtAccent_BorderBox":"Geschachtelte Formel (mit Platzhalter)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"Geschachtelte Formel (Beispiel)","PDFE.Controllers.InsTab.txtAccent_Check":"Häkchen","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"Horizontale geschweifte Klammer (unten)","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"Horizontale geschweifte Klammer (oben)","PDFE.Controllers.InsTab.txtAccent_Custom_1":"Vektor A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"ABC Mit Überstreichung","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XOR y Mit Überstreichung","PDFE.Controllers.InsTab.txtAccent_DDDot":"Dreifacher Punkt","PDFE.Controllers.InsTab.txtAccent_DDot":"Doppelpunkt","PDFE.Controllers.InsTab.txtAccent_Dot":"Punkt","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"Doppelte Überstreichung","PDFE.Controllers.InsTab.txtAccent_Grave":"Gravis","PDFE.Controllers.InsTab.txtAccent_GroupBot":"Gruppierungszeichen unten","PDFE.Controllers.InsTab.txtAccent_GroupTop":"Gruppierungszeichen oben","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"Harpune nach links oben","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"Harpune nach rechts oben","PDFE.Controllers.InsTab.txtAccent_Hat":"Dach","PDFE.Controllers.InsTab.txtAccent_Smile":"Brevis","PDFE.Controllers.InsTab.txtAccent_Tilde":"Tilde","PDFE.Controllers.InsTab.txtBasicShapes":"Standardformen","PDFE.Controllers.InsTab.txtBracket_Angle":"Spitze Klammern","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"Spitze Klammern mit Trennzeichen","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"Spitze Klammern mit zwei Trennzeichen","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"Rechte spitze Klammer","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"Linke spitze Klammer","PDFE.Controllers.InsTab.txtBracket_Curve":"Geschwungene Klammern","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"Geschweifte Klammern mit Trennzeichen","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"Rechte runde Klammer","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"Linke runde Klammer","PDFE.Controllers.InsTab.txtBracket_Custom_1":"Fälle (zwei Bedingungen)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"Fälle (drei Bedingungen)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"Stapelobjekt","PDFE.Controllers.InsTab.txtBracket_Custom_4":"Stapel Objekt in eckigen Klammern","PDFE.Controllers.InsTab.txtBracket_Custom_5":"Fallbeispiele","PDFE.Controllers.InsTab.txtBracket_Custom_6":"Binomialkoeffizient","PDFE.Controllers.InsTab.txtBracket_Custom_7":"Binomialkoeffizient in spitzen Klammern","PDFE.Controllers.InsTab.txtBracket_Line":"Vertikale Balken","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"Rechter vertikaler Balken","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"Linker vertikaler Balken","PDFE.Controllers.InsTab.txtBracket_LineDouble":"Doppelte vertikale Balken","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"Rechter doppelter vertikaler Balken","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"Linker doppelt-vertikaler Balken","PDFE.Controllers.InsTab.txtBracket_LowLim":"Boden","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"Rechter Boden","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"Linker Boden","PDFE.Controllers.InsTab.txtBracket_Round":"Runde Klammern","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"Runde Klammern mit Trennlinien","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"Rechte runde Klammer","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"Linke runde Klammer","PDFE.Controllers.InsTab.txtBracket_Square":"Eckige Klammern","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"Platzhalter zwischen zwei rechten eckigen Klammern","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"Umgekehrte eckige Klammern","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"Rechte eckige Klammer","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"Linke eckige Klammer","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"Platzhalter zwischen zwei linken eckigen Klammern","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"Doppelte eckige Klammern","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"Rechte doppelte eckige Klammer","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"Linke doppelt-eckige Klammer","PDFE.Controllers.InsTab.txtBracket_UppLim":"Decke","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"Rechte Decke","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"Linke Decke","PDFE.Controllers.InsTab.txtButtons":"Schaltflächen","PDFE.Controllers.InsTab.txtCallouts":"Legenden","PDFE.Controllers.InsTab.txtCharts":"Diagramme","PDFE.Controllers.InsTab.txtFiguredArrows":"Geformte Pfeile","PDFE.Controllers.InsTab.txtFractionDiagonal":"Versetzter Bruch mit schrägem Bruchstrich","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dx über dy","PDFE.Controllers.InsTab.txtFractionDifferential_2":"Obergrenze Delta y über Obergrenze Delta x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"partielles y über partielles x","PDFE.Controllers.InsTab.txtFractionDifferential_4":"Delta y über Delta x","PDFE.Controllers.InsTab.txtFractionHorizontal":"Linearer Bruch","PDFE.Controllers.InsTab.txtFractionPi_2":"Pi wird durch 2 dividiert","PDFE.Controllers.InsTab.txtFractionSmall":"Kleine Bruchzahl","PDFE.Controllers.InsTab.txtFractionVertical":"Bruch mit waagerechtem Bruchstrich","PDFE.Controllers.InsTab.txtFunction_1_Cos":"Umgekehrte Kosinus-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"Hyperbolische umgekehrte Kosinusfunktion","PDFE.Controllers.InsTab.txtFunction_1_Cot":"Umgekehrte Kotangens-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Coth":"Hyperbolische umgekehrte Kotangensfunktion","PDFE.Controllers.InsTab.txtFunction_1_Csc":"Umgekehrte Kosekansfunktion","PDFE.Controllers.InsTab.txtFunction_1_Csch":"Hyperbolische umgekehrte Kosekans-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Sec":"Umgekehrte Sekans-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Sech":"Hyperbolische umgekehrte Sekansfunktion","PDFE.Controllers.InsTab.txtFunction_1_Sin":"Umgekehrte Sinusfunktion","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"Hyperbolische umgekehrte Sinusfunktion","PDFE.Controllers.InsTab.txtFunction_1_Tan":"Umgekehrte Tangens-Funktion","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"Hyperbolische umgekehrte Tangens-Funktion","PDFE.Controllers.InsTab.txtFunction_Cos":"Kosinusfunktion","PDFE.Controllers.InsTab.txtFunction_Cosh":"Hyperbolische Kosinusfunktion","PDFE.Controllers.InsTab.txtFunction_Cot":"Kotangensfunktion","PDFE.Controllers.InsTab.txtFunction_Coth":"Hyperbolische Kotangensfunktion","PDFE.Controllers.InsTab.txtFunction_Csc":"Kosekansfunktion","PDFE.Controllers.InsTab.txtFunction_Csch":"Hyperbolische Kosekansfunktion","PDFE.Controllers.InsTab.txtFunction_Custom_1":"Sinus Theta","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Kosinus 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"Tangensformel","PDFE.Controllers.InsTab.txtFunction_Sec":"Sekans-Funktion","PDFE.Controllers.InsTab.txtFunction_Sech":"Hyperbolische Sekansfunktion","PDFE.Controllers.InsTab.txtFunction_Sin":"Sinus-Funktion","PDFE.Controllers.InsTab.txtFunction_Sinh":"Hyperbolische Sinusfunktion","PDFE.Controllers.InsTab.txtFunction_Tan":"Tangens-Funktion","PDFE.Controllers.InsTab.txtFunction_Tanh":"Hyperbolische Tangens-Funktion","PDFE.Controllers.InsTab.txtIntegral":"Integral","PDFE.Controllers.InsTab.txtIntegral_dtheta":"Differenzial Theta","PDFE.Controllers.InsTab.txtIntegral_dx":"Differenzial x","PDFE.Controllers.InsTab.txtIntegral_dy":"Differenzial y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"Integral mit gestapelten Grenzwerten","PDFE.Controllers.InsTab.txtIntegralDouble":"Doppelintegral","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"Doppelintegral mit gestapelten Grenzwerten","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"Doppelintegral mit Grenzwerten","PDFE.Controllers.InsTab.txtIntegralOriented":"Konturenintegral","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"Konturintegral mit gestapelten Grenzwerten","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"Oberflächenintegral","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"Oberflächenintegral mit gestapelten Grenzen","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"Flächenintegral mit Grenzen","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"Konturintegral mit Grenzwerten","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"Volumenintegral","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"Volumenintegral mit gestapelten Grenzen","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"Volumenintegral mit Grenzen","PDFE.Controllers.InsTab.txtIntegralSubSup":"Integral mit Grenzwerten","PDFE.Controllers.InsTab.txtIntegralTriple":"Dreifaches Integral","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"Dreifaches Integral mit gestapelten Grenzen","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"Dreifaches Integral mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"Logisch und","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"Logisch und mit unteren Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"Logisch und mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"Logisches Und mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"Logisches Und mit tiefgestellten/hochgestellten Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"Koprodukt","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"Koprodukt mit Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"Koprodukt mit Grenzwerten","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"Koprodukt mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"Koprodukt mit tiefgestellten/hochgestellten Grenzwerten","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"Summierung über k von n wähle k","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"Summation von i gleich Null bis n","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"Summationsbeispiel mit zwei Indizes","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"Produktbeispiel","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"Vereinigungsbeispiel","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"Logisch Oder","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"Logisch Oder mit unteren Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"Logisch Oder mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"Logisch Oder mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"Logisch Oder mit tiefgestellten/hochgestellten Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"Schnittmenge","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"Schnittmenge mit unterem Grenzwert","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"Schnittmenge mit Grenzwerten","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"Schnittmenge mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"Schnittmenge mit tiefgestellten/hochgestellten Grenzwerten","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"Produkt","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"Produkt mit unteren Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"Produkt mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"Produkt mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"Produkt mit tiefgestellten/hochgestellten Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"Summenbildung","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"Summenbildung mit unterer Grenze","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"Summenbildung mit Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"Summation mit tiefgestellter Untergrenze","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"Summierung mit tiefgestellten/hochgestellten Grenzen","PDFE.Controllers.InsTab.txtLargeOperator_Union":"Vereinigung","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"Vereinigung mit unterer Grenze","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"Vereinigungsgrenzen","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"Vereinigung mit tiefgeschriebener unterer Grenze","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"Vereinigung mit tiefgeschriebenen/hochgeschriebenen Grenzen","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"Beispiel für Grenzwert","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"Beispiel für Maximum","PDFE.Controllers.InsTab.txtLimitLog_Lim":"Grenzwert","PDFE.Controllers.InsTab.txtLimitLog_Ln":"Natürlicher Logarithmus","PDFE.Controllers.InsTab.txtLimitLog_Log":"Logarithmus","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"Logarithmus","PDFE.Controllers.InsTab.txtLimitLog_Max":"Maximal","PDFE.Controllers.InsTab.txtLimitLog_Min":"Minimum","PDFE.Controllers.InsTab.txtLines":"Linien","PDFE.Controllers.InsTab.txtMath":"Mathematik","PDFE.Controllers.InsTab.txtMatrix_1_2":"1x2 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_1_3":"1x3 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_2_1":"2x1 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_2_2":"2x2 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"Leere 2 mal 2 Matrix in doppelten vertikalen Balken","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"Leere 2 mal 2 Determinante","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"Leere 2 auf 2 Matrix mit runden Klammern","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"Leere 2 mal 2 Matrix in Klammern","PDFE.Controllers.InsTab.txtMatrix_2_3":"2x3 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_3_1":"3x1 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_3_2":"3x2 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_3_3":"3x3 Leere Matrix","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"Grundlinienpunkte","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"Mittellinienpunkte","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"Diagonale Punkte","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"Vertikale Punkte","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"Dünnbesetzte Matrix in runden Klammern","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"Dünnbesetzte Matrix in Klammern","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"2x2 Identitätsmatrix mit Nullwerten","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"2x2-Identitätsmatrix mit leeren Zellen außerhalb der Diagonale","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"3x3 Identitätsmatrix mit Nullwerten","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"3x3-Identitätsmatrix mit leeren Zellen außerhalb der Diagonale","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"Pfeil nach rechts und links unten","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"Pfeil nach rechts und links oben","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"Pfeil nach links unten","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"Pfeil nach links oben","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"Pfeil nach rechts unten","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"Pfeil nach rechts oben","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"Doppelpunkt gleich","PDFE.Controllers.InsTab.txtOperator_Custom_1":"Ergibt","PDFE.Controllers.InsTab.txtOperator_Custom_2":"Delta ergibt","PDFE.Controllers.InsTab.txtOperator_Definition":"Gleich gemäß Definition","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"Delta gleich","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"Pfeil nach rechts und links darunter","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"Pfeil nach rechts und links darüber","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"Pfeil nach links unten","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"Pfeil nach links oben","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"Pfeil nach rechts unten","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"Pfeil nach rechts oben","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"Gleich Gleich","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"Minus Gleich","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"Plus Gleich","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"Gemessen an","PDFE.Controllers.InsTab.txtRadicalCustom_1":"Rechte Seite der quadratischen Formel","PDFE.Controllers.InsTab.txtRadicalCustom_2":"Wurzel eines quadratischen plus b quadratisch","PDFE.Controllers.InsTab.txtRadicalRoot_2":"Quadratwurzel mit Grad","PDFE.Controllers.InsTab.txtRadicalRoot_3":"Kubikwurzel","PDFE.Controllers.InsTab.txtRadicalRoot_n":"Wurzel mit Grad","PDFE.Controllers.InsTab.txtRadicalSqrt":"Quadratwurzel","PDFE.Controllers.InsTab.txtRectangles":"Rechtecke","PDFE.Controllers.InsTab.txtScriptCustom_1":"x tiefgestelltes y im Quadrat","PDFE.Controllers.InsTab.txtScriptCustom_2":"e zum Minus i Omega t","PDFE.Controllers.InsTab.txtScriptCustom_3":"x im Quadrat","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y links hochgestellt n links tiefgestellt eins","PDFE.Controllers.InsTab.txtScriptSub":"Tiefgestellt","PDFE.Controllers.InsTab.txtScriptSubSup":"Tiefgestellt-Hochgestellt","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"Hochgestellter/ tiefgestellter Index links","PDFE.Controllers.InsTab.txtScriptSup":"Hochgestellt","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"Legende mit Linie 1 (Rahmen und Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"Legende mit Linie 2 (Rahmen und Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"Legende mit Linie 3 (Rahmen und Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"Legende mit Linie 1 (Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"Legende mit Linie 2 (Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"Legende mit Linie 3 (Markierungsleiste)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"Schaltfläche \"Zurück\"","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"Button \"Start\"","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"Leere Schaltfläche","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"Dokumentschaltfläche","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"Schaltfläche „Beenden\"","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"Schaltfläche 'Weiter'","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"Schaltfläche \"Hilfe\"","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"Schaltfläche \"Startseite\"","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"Schaltfläche \"Informationen\"","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"Schaltfläche \"Movie\"","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"Schaltfläche „Zurück\"","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"Schaltfläche \"Ton\"","PDFE.Controllers.InsTab.txtShape_arc":"Bogen","PDFE.Controllers.InsTab.txtShape_bentArrow":"Gebogener Pfeil","PDFE.Controllers.InsTab.txtShape_bentConnector5":"Gewinkelte Verbindung","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"Gewinkelte Verbindung mit Pfeil","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"Gewinkelte Verbindung mit Doppelpfeil","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"Nach oben gebogener Pfeil","PDFE.Controllers.InsTab.txtShape_bevel":"Schräge Kante","PDFE.Controllers.InsTab.txtShape_blockArc":"Halbbogen","PDFE.Controllers.InsTab.txtShape_borderCallout1":"Legende mit Linie 1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"Legende mit Linie 2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"Legende mit Linie 3","PDFE.Controllers.InsTab.txtShape_bracePair":"Geschweifte Klammer","PDFE.Controllers.InsTab.txtShape_callout1":"Legende mit Linie 1 (ohne Rahmen)","PDFE.Controllers.InsTab.txtShape_callout2":"Legende mit Linie 2 (ohne Rahmen)","PDFE.Controllers.InsTab.txtShape_callout3":"Legende mit Linie 3 (ohne Rahmen)","PDFE.Controllers.InsTab.txtShape_can":"Zylinder","PDFE.Controllers.InsTab.txtShape_chevron":"Winkel","PDFE.Controllers.InsTab.txtShape_chord":"Akkord","PDFE.Controllers.InsTab.txtShape_circularArrow":"Gebogener Pfeil","PDFE.Controllers.InsTab.txtShape_cloud":"Cloud","PDFE.Controllers.InsTab.txtShape_cloudCallout":"Cloud Legende","PDFE.Controllers.InsTab.txtShape_corner":"Ecke","PDFE.Controllers.InsTab.txtShape_cube":"Cube","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"Gekrümmte Verbindung","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"Gekrümmte Verbindung mit Pfeil","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"Gekrümmte Verbindung mit Doppelpfeil","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"Nach unten gekrümmter Pfeil","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"Nach links gekrümmter Pfeil","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"Nach rechts gekrümmter Pfeil","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"Nach oben gekrümmter Pfeil","PDFE.Controllers.InsTab.txtShape_decagon":"Zehneck","PDFE.Controllers.InsTab.txtShape_diagStripe":"Diagonaler Streifen","PDFE.Controllers.InsTab.txtShape_diamond":"Raute","PDFE.Controllers.InsTab.txtShape_dodecagon":"Zwölfeck","PDFE.Controllers.InsTab.txtShape_donut":"Rad","PDFE.Controllers.InsTab.txtShape_doubleWave":"Doppelte Welle","PDFE.Controllers.InsTab.txtShape_downArrow":"Pfeil nach unten","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"Legende mit Pfeil nach unten","PDFE.Controllers.InsTab.txtShape_ellipse":"Ellipse","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"Nach unten gekrümmtes Band","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"Nach oben gekrümmtes Band","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"Flussdiagramm: Alternativer Prozess","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"Flussdiagramm: Zusammenstellen","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"Flussdiagramm: Verbindungsstelle","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"Flussdiagramm: Verzweigung","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"Flussdiagramm: Verzögerung","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"Flussdiagramm: Anzeige","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"Flussdiagramm: Dokument","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"Flussdiagramm: Auszug","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"Flussdiagramm: Daten","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"Flussdiagramm: Zentralspeicher","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"Flussdiagramm: Magnetplattenspeicher","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"Flussdiagramm: Datenträger mit direktem Zugriff","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"Flussdiagramm: Datenträger mit sequenziellem Zugriff","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"Flussdiagramm: Manuelle Eingabe","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"Flussdiagramm: Manuelle Verarbeitung","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"Flussdiagramm: Zusammenführen","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"Flussdiagramm: Mehrere Dokumente","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"Flussdiagramm: Verbindungsstelle zu einer anderen Seite","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"Flussdiagramm: Gespeicherte Daten","PDFE.Controllers.InsTab.txtShape_flowChartOr":"Flussdiagramm: Oder","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"Flussdiagramm: Vordefinierter Prozess","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"Flussdiagramm: Vorbereitung","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"Flussdiagramm: Prozess","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"Flussdiagramm: Karte","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"Flussdiagramm: Lochstreifen","PDFE.Controllers.InsTab.txtShape_flowChartSort":"Flussdiagramm: Sortieren","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"Flussdiagramm: Zusammenführung","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"Flussdiagramm: Grenzstelle","PDFE.Controllers.InsTab.txtShape_foldedCorner":"Gefaltete Ecke","PDFE.Controllers.InsTab.txtShape_frame":"Rahmen","PDFE.Controllers.InsTab.txtShape_halfFrame":"Halber Rahmen","PDFE.Controllers.InsTab.txtShape_heart":"Herz","PDFE.Controllers.InsTab.txtShape_heptagon":"Siebeneck","PDFE.Controllers.InsTab.txtShape_hexagon":"Sechseck","PDFE.Controllers.InsTab.txtShape_homePlate":"Richtungspfeil","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"Horizontaler Bildlauf","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"Explosion 1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"Explosion 2","PDFE.Controllers.InsTab.txtShape_leftArrow":"Pfeil nach links","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"Legende mit Pfeil nach links","PDFE.Controllers.InsTab.txtShape_leftBrace":"Geschweifte Klammer links","PDFE.Controllers.InsTab.txtShape_leftBracket":"Runde Klammer links","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"Pfeil nach links und rechts","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"Legende mit Pfeil nach links und rechts","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"Pfeil nach links, rechts und oben","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"Pfeil nach links und oben","PDFE.Controllers.InsTab.txtShape_lightningBolt":"Gewitterblitz","PDFE.Controllers.InsTab.txtShape_line":"Linie","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"Pfeil","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"Doppelpfeil","PDFE.Controllers.InsTab.txtShape_mathDivide":"Division","PDFE.Controllers.InsTab.txtShape_mathEqual":"Gleich","PDFE.Controllers.InsTab.txtShape_mathMinus":"Minus","PDFE.Controllers.InsTab.txtShape_mathMultiply":"Multiplizieren","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"Nicht gleich","PDFE.Controllers.InsTab.txtShape_mathPlus":"Plus","PDFE.Controllers.InsTab.txtShape_moon":"Monat","PDFE.Controllers.InsTab.txtShape_noSmoking":"Symbol \"Nein\"","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"Eingekerbter Pfeil nach rechts","PDFE.Controllers.InsTab.txtShape_octagon":"Achteck","PDFE.Controllers.InsTab.txtShape_parallelogram":"Parallelogramm","PDFE.Controllers.InsTab.txtShape_pentagon":"Richtungspfeil","PDFE.Controllers.InsTab.txtShape_pie":"Kreis","PDFE.Controllers.InsTab.txtShape_plaque":"Zeichen","PDFE.Controllers.InsTab.txtShape_plus":"Plus","PDFE.Controllers.InsTab.txtShape_polyline1":"Skizze","PDFE.Controllers.InsTab.txtShape_polyline2":"Freihandform","PDFE.Controllers.InsTab.txtShape_quadArrow":"Pfeil in vier Richtungen","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"Legende mit Pfeil in vier Richtungen","PDFE.Controllers.InsTab.txtShape_rect":"Rechteck","PDFE.Controllers.InsTab.txtShape_ribbon":"Band nach unten","PDFE.Controllers.InsTab.txtShape_ribbon2":"Band hoch","PDFE.Controllers.InsTab.txtShape_rightArrow":"Pfeil nach rechts","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"Legende mit Pfeil nach rechts","PDFE.Controllers.InsTab.txtShape_rightBrace":"Geschweifte Klammer rechts","PDFE.Controllers.InsTab.txtShape_rightBracket":"Runde Klammer rechts","PDFE.Controllers.InsTab.txtShape_round1Rect":"Eine Ecke des Rechtecks abrunden","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"Diagonal liegende Ecken des Rechtecks abrunden","PDFE.Controllers.InsTab.txtShape_round2SameRect":"Auf der gleichen Seite des Rechtecks liegende Ecken abrunden","PDFE.Controllers.InsTab.txtShape_roundRect":"Rechteck mit runden Ecken","PDFE.Controllers.InsTab.txtShape_rtTriangle":"Rechtwinkliges Dreieck","PDFE.Controllers.InsTab.txtShape_smileyFace":"Smiley-Gesicht","PDFE.Controllers.InsTab.txtShape_snip1Rect":"Eine Ecke des Rechtecks schneiden","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"Diagonal liegende Ecken des Rechtecks schneiden","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"Ecken des Rechtecks auf der gleichen Seite schneiden","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"Eine Ecke des Rechtecks schneiden und abrunden","PDFE.Controllers.InsTab.txtShape_spline":"Kurve","PDFE.Controllers.InsTab.txtShape_star10":"10-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star12":"12-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star16":"16-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star24":"24-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star32":"32-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star4":"4-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star5":"5-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star6":"6-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star7":"7-zackiger Stern","PDFE.Controllers.InsTab.txtShape_star8":"8-zackiger Stern","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"Gestreifter Pfeil nach rechts","PDFE.Controllers.InsTab.txtShape_sun":"Sonne","PDFE.Controllers.InsTab.txtShape_teardrop":"Tropfenförmig","PDFE.Controllers.InsTab.txtShape_textRect":"Textfeld","PDFE.Controllers.InsTab.txtShape_trapezoid":"Trapezoid","PDFE.Controllers.InsTab.txtShape_triangle":"Dreieck","PDFE.Controllers.InsTab.txtShape_upArrow":"Pfeil nach oben","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"Legende mit Pfeil nach oben","PDFE.Controllers.InsTab.txtShape_upDownArrow":"Pfeil nach unten","PDFE.Controllers.InsTab.txtShape_uturnArrow":"180-Grad-Pfeil","PDFE.Controllers.InsTab.txtShape_verticalScroll":"Vertikaler Bildlauf","PDFE.Controllers.InsTab.txtShape_wave":"Welle","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"Ovale Legende","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"Rechteckige Legende","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"Abgerundete rechteckige Legende","PDFE.Controllers.InsTab.txtStarsRibbons":"Sterne und Bänder","PDFE.Controllers.InsTab.txtSymbol_about":"Circa","PDFE.Controllers.InsTab.txtSymbol_additional":"Komplement","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Alpha","PDFE.Controllers.InsTab.txtSymbol_approx":"Fast gleich","PDFE.Controllers.InsTab.txtSymbol_ast":"Stern-Operator","PDFE.Controllers.InsTab.txtSymbol_beta":"Beta","PDFE.Controllers.InsTab.txtSymbol_beth":"Bet","PDFE.Controllers.InsTab.txtSymbol_bullet":"Aufzählungsoperator","PDFE.Controllers.InsTab.txtSymbol_cap":"Schnittmenge","PDFE.Controllers.InsTab.txtSymbol_cbrt":"Kubikwurzel","PDFE.Controllers.InsTab.txtSymbol_cdots":"Horizontale Ellipse (Mittellinie)","PDFE.Controllers.InsTab.txtSymbol_celsius":"Grad Celsius","PDFE.Controllers.InsTab.txtSymbol_chi":"Chi","PDFE.Controllers.InsTab.txtSymbol_cong":"Ungefähr gleich ","PDFE.Controllers.InsTab.txtSymbol_cup":"Vereinigung","PDFE.Controllers.InsTab.txtSymbol_ddots":"Diagonale Ellipse nach unten rechts","PDFE.Controllers.InsTab.txtSymbol_degree":"Grad","PDFE.Controllers.InsTab.txtSymbol_delta":"Delta","PDFE.Controllers.InsTab.txtSymbol_div":"Divisionszeichen","PDFE.Controllers.InsTab.txtSymbol_downarrow":"Pfeil nach unten","PDFE.Controllers.InsTab.txtSymbol_emptyset":"Leere Menge","PDFE.Controllers.InsTab.txtSymbol_epsilon":"Epsilon","PDFE.Controllers.InsTab.txtSymbol_equals":"Gleich","PDFE.Controllers.InsTab.txtSymbol_equiv":"Identisch mit","PDFE.Controllers.InsTab.txtSymbol_eta":"Eta","PDFE.Controllers.InsTab.txtSymbol_exists":"Vorhanden","PDFE.Controllers.InsTab.txtSymbol_factorial":"Faktoriell","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"Grad Fahrenheit","PDFE.Controllers.InsTab.txtSymbol_forall":"Für alle","PDFE.Controllers.InsTab.txtSymbol_gamma":"Gamma","PDFE.Controllers.InsTab.txtSymbol_geq":"Größer als oder gleich wie ","PDFE.Controllers.InsTab.txtSymbol_gg":"Viel größer als","PDFE.Controllers.InsTab.txtSymbol_greater":"Größer als","PDFE.Controllers.InsTab.txtSymbol_in":"Element","PDFE.Controllers.InsTab.txtSymbol_inc":"Erhöhung","PDFE.Controllers.InsTab.txtSymbol_infinity":"Unendlichkeit","PDFE.Controllers.InsTab.txtSymbol_iota":"Jota","PDFE.Controllers.InsTab.txtSymbol_kappa":"Kappa","PDFE.Controllers.InsTab.txtSymbol_lambda":"Lambda","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"Pfeil nach links","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"Pfeil nach rechts und links","PDFE.Controllers.InsTab.txtSymbol_leq":"Weniger als oder gleich wie","PDFE.Controllers.InsTab.txtSymbol_less":"Weniger als","PDFE.Controllers.InsTab.txtSymbol_ll":"Viel kleiner als","PDFE.Controllers.InsTab.txtSymbol_minus":"Minus","PDFE.Controllers.InsTab.txtSymbol_mp":"Minus Plus","PDFE.Controllers.InsTab.txtSymbol_mu":"Mu","PDFE.Controllers.InsTab.txtSymbol_nabla":"Nabla","PDFE.Controllers.InsTab.txtSymbol_neq":"Nicht gleich","PDFE.Controllers.InsTab.txtSymbol_ni":"Enthält als Element","PDFE.Controllers.InsTab.txtSymbol_not":"Negationszeichen","PDFE.Controllers.InsTab.txtSymbol_notexists":"Nicht vorhanden","PDFE.Controllers.InsTab.txtSymbol_nu":"Nu","PDFE.Controllers.InsTab.txtSymbol_o":"Omikron","PDFE.Controllers.InsTab.txtSymbol_omega":"Omega","PDFE.Controllers.InsTab.txtSymbol_partial":"Partielles Differenzial","PDFE.Controllers.InsTab.txtSymbol_percent":"Prozentsatz","PDFE.Controllers.InsTab.txtSymbol_phi":"Phi","PDFE.Controllers.InsTab.txtSymbol_pi":"Pi","PDFE.Controllers.InsTab.txtSymbol_plus":"Plus","PDFE.Controllers.InsTab.txtSymbol_pm":"Plus Minus","PDFE.Controllers.InsTab.txtSymbol_propto":"Proportional zu","PDFE.Controllers.InsTab.txtSymbol_psi":"Psi","PDFE.Controllers.InsTab.txtSymbol_qdrt":"Vierte Wurzel","PDFE.Controllers.InsTab.txtSymbol_qed":"Ende des Beweises","PDFE.Controllers.InsTab.txtSymbol_rddots":"Horizontale Ellipse nach oben rechts","PDFE.Controllers.InsTab.txtSymbol_rho":"Rho","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"Pfeil nach rechts","PDFE.Controllers.InsTab.txtSymbol_sigma":"Sigma","PDFE.Controllers.InsTab.txtSymbol_sqrt":"Wurzelzeichen","PDFE.Controllers.InsTab.txtSymbol_tau":"Tau","PDFE.Controllers.InsTab.txtSymbol_therefore":"Folglich","PDFE.Controllers.InsTab.txtSymbol_theta":"Theta","PDFE.Controllers.InsTab.txtSymbol_times":"Multiplikationszeichen","PDFE.Controllers.InsTab.txtSymbol_uparrow":"Pfeil nach oben","PDFE.Controllers.InsTab.txtSymbol_upsilon":"Ypsilon","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"Epsilon (Variant)","PDFE.Controllers.InsTab.txtSymbol_varphi":"Phi Variant","PDFE.Controllers.InsTab.txtSymbol_varpi":"Pi Variant","PDFE.Controllers.InsTab.txtSymbol_varrho":"Rho Variant","PDFE.Controllers.InsTab.txtSymbol_varsigma":"Sigma Variant","PDFE.Controllers.InsTab.txtSymbol_vartheta":"Theta Variant","PDFE.Controllers.InsTab.txtSymbol_vdots":"Vertikale Ellipse","PDFE.Controllers.InsTab.txtSymbol_xsi":"Xi","PDFE.Controllers.InsTab.txtSymbol_zeta":"Zeta","PDFE.Controllers.LeftMenu.leavePageText":"Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
Klicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. Klicken Sie auf den Button \"OK\", so werden alle ungespeicherten Änderungen verloren gehen. ","PDFE.Controllers.LeftMenu.newDocumentTitle":"Unbetiteltes Dokument","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"Warnung","PDFE.Controllers.LeftMenu.requestEditRightsText":"Anfrage von Bearbeitungsberechtigung...","PDFE.Controllers.LeftMenu.textLoadHistory":"Versionshistorie wird geladen...","PDFE.Controllers.LeftMenu.textNoTextFound":"Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.","PDFE.Controllers.LeftMenu.textSelectPath":"Geben Sie einen neuen Namen zum Speichern der Dateikopie ein","PDFE.Controllers.LeftMenu.txtCompatible":"Das Dokument wird im neuen Format gespeichert. Es ermöglicht die Verwendung aller Funktionen, kann jedoch das Dokument-Layout beeinflussen.
Verwenden Sie die Option 'Kompatibilität' in den erweiterten Einstellungen, wenn Sie die Dateien mit älteren MS Word-Versionen kompatibel machen möchten.","PDFE.Controllers.LeftMenu.txtUntitled":"Unbenannt","PDFE.Controllers.LeftMenu.warnDownloadAs":"Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"{0} wird in ein bearbeitbares Format umgewandelt. Dies kann eine Weile dauern. Das Ausgabedokument wird so gestaltet, dass Sie den Text bearbeiten können. Es sieht also möglicherweise nicht genau so aus wie die ursprüngliche Datei {0}, besonders wenn sie viele Grafiken enthält.","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"Wenn Sie mit dem Speichern in diesem Format fortsetzen, kann die Formatierung teilweise verloren gehen.
Möchten Sie wirklich fortsetzen?","PDFE.Controllers.Main.applyChangesTextText":"Änderungen werden geladen","PDFE.Controllers.Main.applyChangesTitleText":"Änderungen werden geladen","PDFE.Controllers.Main.confirmMaxChangesSize":"Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze.
Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).","PDFE.Controllers.Main.convertationTimeoutText":"Timeout für die Konvertierung wurde überschritten.","PDFE.Controllers.Main.criticalErrorExtText":"Klicken Sie auf \"OK\", um zur Dokumentenliste zu gelangen.","PDFE.Controllers.Main.criticalErrorExtTextClose":"Drücken Sie OK, um den Editor zu schließen.","PDFE.Controllers.Main.criticalErrorTitle":"Fehler","PDFE.Controllers.Main.downloadErrorText":"Herunterladen ist fehlgeschlagen.","PDFE.Controllers.Main.downloadMergeText":"Ladevorgang...","PDFE.Controllers.Main.downloadMergeTitle":"Wird heruntergeladen","PDFE.Controllers.Main.downloadTextText":"Dokument wird heruntergeladen ...","PDFE.Controllers.Main.downloadTitleText":"Dokument wird herunterladen","PDFE.Controllers.Main.errorAccessDeny":"Sie versuchen eine Aktion durchzuführen für die Sie keine Rechte haben.
Bitte wenden Sie sich an Ihren Document Serveradministrator.","PDFE.Controllers.Main.errorBadImageUrl":"Bild-URL ist falsch","PDFE.Controllers.Main.errorCannotPasteImg":"Wir können dieses Bild nicht über die Zwischenablage einfügen. Sie können es aber auf Ihrem Gerät speichern und von dort aus einfügen, oder Sie können das Bild ohne Text kopieren und in das Dokument einfügen.","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"Verbindung zum Server ist verloren gegangen. Das Dokument kann momentan nicht bearbeitet werden.","PDFE.Controllers.Main.errorComboSeries":"Um ein Kombinationsdiagramm zu erstellen, wählen Sie mindestens zwei Datenreihen aus.","PDFE.Controllers.Main.errorConnectToServer":"Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.
Wenn Sie auf die Schaltfläche „OK“ klicken, werden Sie aufgefordert, das Dokument herunterzuladen.","PDFE.Controllers.Main.errorCopyDisabled":"Aus Sicherheitsgründen darf der Inhalt dieses Dokuments nicht kopiert werden.","PDFE.Controllers.Main.errorDatabaseConnection":"Externer Fehler.
Datenbankverbindungsfehler. Bitte kontaktieren Sie den Support, falls der Fehler weiterhin besteht.","PDFE.Controllers.Main.errorDataEncrypted":"Verschlüsselte Änderungen wurden empfangen. Sie können nicht entschlüsselt werden.","PDFE.Controllers.Main.errorDataRange":"Falscher Datenbereich.","PDFE.Controllers.Main.errorDefaultMessage":"Fehlercode: %1","PDFE.Controllers.Main.errorDirectUrl":"Bitte überprüfen Sie den Link zum Dokument.
Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.","PDFE.Controllers.Main.errorEditingDownloadas":"Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
Verwenden Sie die Option 'Herunterladen als', um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.","PDFE.Controllers.Main.errorEditingSaveas":"Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
Verwenden Sie die Option \"Speichern als ...\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.","PDFE.Controllers.Main.errorEmailClient":"Es wurde kein E-Mail-Client gefunden.","PDFE.Controllers.Main.errorFilePassProtect":"Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.","PDFE.Controllers.Main.errorFileSizeExceed":"Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.","PDFE.Controllers.Main.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.","PDFE.Controllers.Main.errorInconsistentExt":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.","PDFE.Controllers.Main.errorInconsistentExtDocx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.","PDFE.Controllers.Main.errorInconsistentExtPdf":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.","PDFE.Controllers.Main.errorInconsistentExtPptx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.","PDFE.Controllers.Main.errorInconsistentExtXlsx":"Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.","PDFE.Controllers.Main.errorKeyEncrypt":"Unbekannter Schlüsseldeskriptor","PDFE.Controllers.Main.errorKeyExpire":"Der Schlüsseldeskriptor ist abgelaufen","PDFE.Controllers.Main.errorLoadingFont":"Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"Das eingegebene Kennwort ist ungültig.
Stellen Sie sicher, dass die FESTSTELLTASTE nicht aktiviert ist und dass Sie die korrekte Groß-/Kleinschreibung verwenden.","PDFE.Controllers.Main.errorPDFFormsLocked":"Die Aktion kann nicht ausgeführt werden, da sie Änderungen in gesperrten Formularen verursacht.","PDFE.Controllers.Main.errorSaveWatermark":"Diese Datei enthält ein Wasserzeichen, das mit einer anderen Domain verknüpft ist.
Um es in PDF sichtbar zu machen, aktualisieren Sie das Wasserzeichen, so dass es von derselben Domain wie Ihr Dokument verlinkt wird, oder laden Sie es von Ihrem Computer hoch.","PDFE.Controllers.Main.errorServerVersion":"Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.","PDFE.Controllers.Main.errorSessionAbsolute":"Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.","PDFE.Controllers.Main.errorSessionIdle":"Das Dokument wurde lange nicht bearbeitet. Laden Sie die Seite neu.","PDFE.Controllers.Main.errorSessionToken":"Die Verbindung zum Server wurde unterbrochen. Laden Sie die Seite neu.","PDFE.Controllers.Main.errorSetPassword":"Das Passwort konnte nicht festgelegt werden.","PDFE.Controllers.Main.errorStockChart":"Falsche Zeilenreihenfolge. Um ein Aktiendiagramm zu erstellen, platzieren Sie die Daten in der folgenden Reihenfolge auf dem Blatt:
Eröffnungspreis, Höchstpreis, Mindestpreis, Schlusskurs.","PDFE.Controllers.Main.errorTextFormWrongFormat":"Der eingegebene Wert stimmt nicht mit dem Format des Feldes überein.","PDFE.Controllers.Main.errorToken":"Sicherheitstoken des Dokuments ist nicht korrekt formatiert.
Wenden Sie sich an Ihren Serveradministrator.","PDFE.Controllers.Main.errorTokenExpire":"Sicherheitstoken des Dokuments ist abgelaufen.
Wenden Sie sich an Ihren Serveradministrator.","PDFE.Controllers.Main.errorUpdateVersion":"Die Dateiversion wurde geändert. Die Seite wird neu geladen.","PDFE.Controllers.Main.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.","PDFE.Controllers.Main.errorUserDrop":"Zugriff auf diese Datei ist derzeit nicht möglich.","PDFE.Controllers.Main.errorUsersExceed":"Die nach dem Zahlungsplan erlaubte Benutzeranzahl ist überschritten","PDFE.Controllers.Main.errorViewerDisconnect":"Die Verbindung ist unterbrochen. Sie können sich das Dokument noch anschauen.
Es ist aber momentan nicht möglich, es herunterzuladen oder auszudrucken, bis die Verbindung wiederhergestellt wird.","PDFE.Controllers.Main.leavePageText":"Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\" und dann \"Speichern\", um sie zu speichern. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.","PDFE.Controllers.Main.leavePageTextOnClose":"Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
Klicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. Klicken Sie auf den Button \"OK\", so werden alle ungespeicherten Änderungen verloren gehen. ","PDFE.Controllers.Main.loadFontsTextText":"Daten werden geladen...","PDFE.Controllers.Main.loadFontsTitleText":"Daten werden geladen","PDFE.Controllers.Main.loadFontTextText":"Daten werden geladen...","PDFE.Controllers.Main.loadFontTitleText":"Daten werden geladen","PDFE.Controllers.Main.loadImagesTextText":"Bilder werden geladen...","PDFE.Controllers.Main.loadImagesTitleText":"Bilder werden geladen","PDFE.Controllers.Main.loadImageTextText":"Bild wird geladen...","PDFE.Controllers.Main.loadImageTitleText":"Bild wird geladen","PDFE.Controllers.Main.loadingDocumentTextText":"Dokument wird geladen...","PDFE.Controllers.Main.loadingDocumentTitleText":"Dokument wird geladen...","PDFE.Controllers.Main.notcriticalErrorTitle":"Warnung","PDFE.Controllers.Main.openErrorText":"Beim Öffnen der Datei ist ein Fehler aufgetreten.","PDFE.Controllers.Main.openTextText":"Dokument wird geöffnet","PDFE.Controllers.Main.openTitleText":"Dokument wird geöffnet","PDFE.Controllers.Main.printTextText":"Dokument wird gedruckt","PDFE.Controllers.Main.printTitleText":"Dokuments wird gedruckt","PDFE.Controllers.Main.reloadButtonText":"Seite erneut laden","PDFE.Controllers.Main.requestEditFailedMessageText":"Jemand bearbeitet dieses Dokument in diesem Moment. Bitte versuchen Sie es später erneut.","PDFE.Controllers.Main.requestEditFailedTitleText":"Zugriff verweigert","PDFE.Controllers.Main.saveErrorText":"Beim Speichern der Datei ist ein Fehler aufgetreten.","PDFE.Controllers.Main.saveErrorTextDesktop":"Diese Datei kann nicht erstellt oder gespeichert werden.
Dies ist möglicherweise davon verursacht:
1. Die Datei ist schreibgeschützt.
2. Die Datei wird von anderen Benutzern bearbeitet.
3. Die Festplatte ist voll oder beschädigt.","PDFE.Controllers.Main.saveTextText":"Dokument wird gespeichert...","PDFE.Controllers.Main.saveTitleText":"Dokument wird gespeichert...","PDFE.Controllers.Main.scriptLoadError":"Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.","PDFE.Controllers.Main.splitDividerErrorText":"Die Zeilenanzahl muss ein Divisor von %1 sein.","PDFE.Controllers.Main.splitMaxColsErrorText":"Die Spaltenanzahl muss weniger als %1 sein.","PDFE.Controllers.Main.splitMaxRowsErrorText":"Die Zeilenanzahl muss weniger als %1 sein.","PDFE.Controllers.Main.textAnonymous":"Anonym","PDFE.Controllers.Main.textAnyone":"Alle","PDFE.Controllers.Main.textBuyNow":"Webseite besuchen","PDFE.Controllers.Main.textChangesSaved":"Alle Änderungen gespeichert","PDFE.Controllers.Main.textClose":"Schließen","PDFE.Controllers.Main.textCloseTip":"Klicken Sie, um den Tipp zu schließen","PDFE.Controllers.Main.textConnectionLost":"Es wird versucht, Verbindung herzustellen. Bitte überprüfen Sie die Verbindungseinstellungen.","PDFE.Controllers.Main.textContactUs":"Verkaufsteam kontaktieren","PDFE.Controllers.Main.textContinue":"Weiter","PDFE.Controllers.Main.textCustomLoader":"Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, das Ladeprogram zu wechseln.
Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.","PDFE.Controllers.Main.textDisconnect":"Verbindung wurde unterbrochen","PDFE.Controllers.Main.textGuest":"Gast","PDFE.Controllers.Main.textLearnMore":"Mehr erfahren","PDFE.Controllers.Main.textLoadingDocument":"Dokument wird geladen...","PDFE.Controllers.Main.textLongName":"Namen eingeben mit maximal 128 Buchstaben.","PDFE.Controllers.Main.textNoLicenseTitle":"Lizenzlimit erreicht","PDFE.Controllers.Main.textPaidFeature":"Kostenpflichtige Funktion","PDFE.Controllers.Main.textReconnect":"Verbindung wurde wiederhergestellt","PDFE.Controllers.Main.textRemember":"Meine Entscheidung für alle Dateien merken","PDFE.Controllers.Main.textRenameError":"Benutzername darf nicht leer sein.","PDFE.Controllers.Main.textRenameLabel":"Geben Sie den Namen für Zusammenarbeit ein","PDFE.Controllers.Main.textShape":"Form","PDFE.Controllers.Main.textStrict":"Formaler Modus","PDFE.Controllers.Main.textText":"Text","PDFE.Controllers.Main.textTryQuickPrint":"Sie haben Schnelldruck gewählt: Das gesamte Dokument wird auf dem zuletzt gewählten oder dem Standarddrucker gedruckt.
Sollen Sie fortfahren?","PDFE.Controllers.Main.textTryUndoRedo":"Undo/Redo Optionen für den halbformalen Zusammenbearbeitungsmodus sind deaktiviert.
Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.","PDFE.Controllers.Main.textTryUndoRedoWarn":"Undo/Redo Optionen für den schnellen Zusammenbearbeitungsmodus sind deaktiviert.","PDFE.Controllers.Main.textUndo":"Rückgängig machen","PDFE.Controllers.Main.textUpdateVersion":"Das Dokument kann im Moment nicht bearbeitet werden.
Es wird versucht, die Datei zu aktualisieren, bitte warten …","PDFE.Controllers.Main.textUpdating":"Aktualisierung","PDFE.Controllers.Main.tipLicenseExceeded":"Das Dokument ist im schreibgeschützten Modus geöffnet, da die durch die Lizenz zulässige maximale Anzahl gleichzeitiger Verbindungen erreicht wurde.

Bitte versuchen Sie es später erneut oder wenden Sie sich an den Eigentümer des Dokuments, wenn Sie Bearbeitungszugriff benötigen.","PDFE.Controllers.Main.tipLicenseUsersExceeded":"Das Dokument ist im schreibgeschützten Modus geöffnet, da die maximale Anzahl von Benutzern, die laut Lizenz Dokumente bearbeiten dürfen, erreicht wurde.

Bitte versuchen Sie es später erneut oder wenden Sie sich an den Dokumentbesitzer, wenn Sie Bearbeitungszugriff benötigen.","PDFE.Controllers.Main.titleLicenseExp":"Lizenz ist abgelaufen","PDFE.Controllers.Main.titleLicenseNotActive":"Lizenz nicht aktiv","PDFE.Controllers.Main.titleReadOnly":"Schreibgeschützter Modus","PDFE.Controllers.Main.titleServerVersion":"Editor wurde aktualisiert","PDFE.Controllers.Main.titleUpdateVersion":"Version wurde geändert","PDFE.Controllers.Main.txtArt":"Text hier eingeben","PDFE.Controllers.Main.txtButton":"Schaltfläche","PDFE.Controllers.Main.txtCheckbox":"Kontrollkästchen","PDFE.Controllers.Main.txtChoose":"Wählen Sie ein Element aus","PDFE.Controllers.Main.txtClickToLoad":"Klicken Sie, um das Bild zu laden","PDFE.Controllers.Main.txtDiagramTitle":"Diagrammtitel","PDFE.Controllers.Main.txtDocUnlockDescription":"Geben Sie ein Passwort ein, um den Schutz des Dokuments aufzuheben","PDFE.Controllers.Main.txtDropdown":"Dropdown","PDFE.Controllers.Main.txtEditingMode":"Bearbeitungsmodus festlegen...","PDFE.Controllers.Main.txtEnterDate":"Datum einfügen","PDFE.Controllers.Main.txtErrorLoadHistory":"Laden der Historie ist fehlgeschlagen ","PDFE.Controllers.Main.txtGroup":"Gruppe","PDFE.Controllers.Main.txtInvalidGreater":"Ungültiger Wert für Feld „{0}“: muss größer oder gleich {1} sein.","PDFE.Controllers.Main.txtInvalidGreaterLess":"Ungültiger Wert für Feld „{0}“: muss größer oder gleich {1} und kleiner oder gleich {2} sein.","PDFE.Controllers.Main.txtInvalidLess":"Ungültiger Wert für Feld „{0}“: muss kleiner oder gleich {1} sein.","PDFE.Controllers.Main.txtInvalidPdfFormat":"Der eingegebene Wert stimmt nicht mit dem Format des Feldes „{0}“ überein.","PDFE.Controllers.Main.txtInvalidValue":"Ungültiger Wert für Feld \"{0}\"","PDFE.Controllers.Main.txtListbox":"Listbox","PDFE.Controllers.Main.txtNeedSynchronize":"Änderungen sind verfügbar","PDFE.Controllers.Main.txtSaveCopyAsComplete":"Die Dateikopie wurde erfolgreich gespeichert","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"Dieses Dokument versucht, eine Verbindung zu {0} herzustellen.
Wenn Sie dieser Website vertrauen, drücken Sie OK.","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"Dieses Dokument versucht, den Dateidialog zu öffnen. Klicken Sie zum Öffnen auf „OK“.","PDFE.Controllers.Main.txtSeries":"Reihen","PDFE.Controllers.Main.txtSignature":"Signatur","PDFE.Controllers.Main.txtText":"Text","PDFE.Controllers.Main.txtUnlockTitle":"Dokumentschutz aufheben","PDFE.Controllers.Main.txtValidPdfFormat":"Der Feldwert sollte dem Format „{0}“ entsprechen.","PDFE.Controllers.Main.txtXAxis":"Achse X","PDFE.Controllers.Main.txtYAxis":"Achse Y","PDFE.Controllers.Main.unknownErrorText":"Unbekannter Fehler.","PDFE.Controllers.Main.unsupportedBrowserErrorText":"Ihr Webbrowser wird nicht unterstützt.","PDFE.Controllers.Main.uploadDocExtMessage":"Unbekanntes Dokumentformat.","PDFE.Controllers.Main.uploadDocFileCountMessage":"Keine Dokumente hochgeladen.","PDFE.Controllers.Main.uploadDocSizeMessage":"Maximale Dokumentgröße überschritten.","PDFE.Controllers.Main.uploadImageExtMessage":"Unbekanntes Bildformat.","PDFE.Controllers.Main.uploadImageFileCountMessage":"Kein Bild hochgeladen.","PDFE.Controllers.Main.uploadImageSizeMessage":"Das Bild ist zu groß. Die maximale Größe beträgt 25 MB.","PDFE.Controllers.Main.uploadImageTextText":"Das Bild wird hochgeladen...","PDFE.Controllers.Main.uploadImageTitleText":"Bild wird hochgeladen","PDFE.Controllers.Main.waitText":"Bitte warten...","PDFE.Controllers.Main.warnBrowserIE9":"Die Applkation hat geringte Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.","PDFE.Controllers.Main.warnBrowserZoom":"Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination Strg+0 wieder her.","PDFE.Controllers.Main.warnLicenseAnonymous":"Zugriff für anonyme Benutzer verweigert.
Dieses Dokument wird nur zur Ansicht geöffnet.","PDFE.Controllers.Main.warnLicenseBefore":"Lizenz nicht aktiv.
Bitte wenden Sie sich an Ihren Administrator.","PDFE.Controllers.Main.warnLicenseExp":"Ihre Lizenz ist abgelaufen.
Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"Die Lizenz ist abgelaufen.
Die Bearbeitungsfunktionen sind nicht verfügbar.
Bitte wenden Sie sich an Ihrem Administrator.","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"Die Lizenz muss aktualisiert werden.
Die Bearbeitungsfunktionen sind eingeschränkt.
Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff","PDFE.Controllers.Main.warnNoLicense":"Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.","PDFE.Controllers.Main.warnNoLicenseUsers":"Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um individuelle Upgrade-Bedingungen zu erhalten.","PDFE.Controllers.Main.warnProcessRightsChange":"Das Recht die Datei zu bearbeiten wurde Ihnen verweigert.","PDFE.Controllers.Navigation.txtBeginning":"Anfang des Dokuments","PDFE.Controllers.Navigation.txtGotoBeginning":"Zum Anfang des Dokuments gehen","PDFE.Controllers.Print.textMarginsLast":"Letzte Benutzerdefinierung","PDFE.Controllers.Print.txtCustom":"Benutzerdefiniert","PDFE.Controllers.Print.txtPrintRangeInvalid":"Ungültiger Druckbereich","PDFE.Controllers.RedactTab.applyButtonText":"Anwenden","PDFE.Controllers.RedactTab.doNotApplyButtonText":"Nicht anwenden","PDFE.Controllers.RedactTab.textApplyRedact":"Schwärzliche Informationen werden dauerhaft aus diesem Dokument entfernt. Nach dem Speichern können die Informationen nicht mehr abgerufen werden.","PDFE.Controllers.RedactTab.textEnterPageRange":"Geben Sie den Seitenbereich für die Schwärzung ein","PDFE.Controllers.RedactTab.textEnterRangeDescription":"z.B. 1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"Seiten schwärzen","PDFE.Controllers.RedactTab.textUnappliedRedactions":"Dieses Dokument enthält Schwärzungsmarkierungen, die noch nicht angewendet wurden.

Bis Sie “Schwärzungen anwenden” auswählen, können diese Markierungen entfernt und Informationen abgerufen werden.","PDFE.Controllers.RedactTab.tipApplyRedaction":"Alle Schwärzungen anwenden und speichern. Nicht gespeicherte Schwärzungen können noch rückgängig gemacht werden.","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"Schwärzungen anwenden","PDFE.Controllers.RedactTab.tipMarkForRedaction":"Verwenden Sie diese Tools, um vertrauliche Inhalte in Ihrem PDF zu markieren, zu suchen und zu schwärzen","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"Zum Schwärzen markieren","PDFE.Controllers.RedactTab.txtInvalidFormat":"Ungültiges Format. Verwenden Sie eine einzelne Zahl oder einen Bereich mit Bindestrich, z.B. 2 oder 2-6.","PDFE.Controllers.RedactTab.txtInvalidRange":"Die Seiten müssen zwischen 1 und {0} liegen","PDFE.Controllers.RedactTab.txtReversedRange":"Die Startseite muss kleiner oder gleich der Endseite sein.","PDFE.Controllers.Search.notcriticalErrorTitle":"Warnung","PDFE.Controllers.Search.textNoTextFound":"Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.","PDFE.Controllers.Search.textReplaceSkipped":"Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.","PDFE.Controllers.Search.textReplaceSuccess":"Die Suche wurde durchgeführt. {0} Einträge wurden ersetzt","PDFE.Controllers.Search.warnReplaceString":"{0} kann als Sonderzeichen für das Feld \"Ersetzen durch\" nicht verwendet werden.","PDFE.Controllers.Statusbar.textDisconnect":"Die Verbindung wurde unterbrochen
Verbindungsversuch. Bitte Verbindungseinstellungen überprüfen.","PDFE.Controllers.Statusbar.zoomText":"Zoom {0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"Die Schriftart, die Sie speichern möchten, ist auf dem aktuellen Gerät nicht verfügbar.
Der Textstil wird mit einer der Geräteschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.
Sollen Sie fortfahren?","PDFE.Controllers.Toolbar.errorAccessDeny":"Sie haben versucht die Änderungen im Dokument, zu dem Sie keine Berechtigungen haben, vorzunehemen.
Wenden Sie sich an Ihren Serveradministrator.","PDFE.Controllers.Toolbar.helpAnnotRect":"Entdecken Sie neue Anmerkungstools: Rechteck, Kreis, Pfeil und verbundene Linien.","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"Neue Anmerkungen","PDFE.Controllers.Toolbar.helpPdfCharts":"Fügen Sie Diagramme und SmartArt direkt in Ihre PDF-Dateien ein und bearbeiten Sie sie.","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"Diagramme und SmartArt in PDF","PDFE.Controllers.Toolbar.helpRedactTab":"Schützen Sie vertrauliche Informationen mit der Schwärzungsfunktion, die Ihnen das sichere Entfernen vertraulicher Inhalte ermöglicht.","PDFE.Controllers.Toolbar.helpRedactTabHeader":"In PDF schwärzen","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"Warnung","PDFE.Controllers.Toolbar.textFontSizeErr":"Der eingegebene Wert ist falsch.
Geben Sie bitte einen numerischen Wert zwischen 1 und 300 ein.","PDFE.Controllers.Toolbar.textGotIt":"OK","PDFE.Controllers.Toolbar.textRequired":"Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.","PDFE.Controllers.Toolbar.textSubmited":"Das Formular wurde erfolgreich übermittelt
Klicken Sie, um den Tipp zu schließen.","PDFE.Controllers.Toolbar.textTabForms":"Formulare","PDFE.Controllers.Toolbar.textWarning":"Warnung","PDFE.Controllers.Toolbar.txtDownload":"Herunterladen","PDFE.Controllers.Toolbar.txtNeedCommentMode":"Um Änderungen an der Datei zu speichern, wechseln Sie in den Kommentarmodus. Oder Sie können eine Kopie der geänderten Datei herunterladen.","PDFE.Controllers.Toolbar.txtNeedDownload":"Derzeit kann der PDF-Viewer neue Änderungen nur in separaten Dateikopien speichern. Kollaboratives Editieren wird nicht unterstützt und andere Benutzer sehen Ihre Änderungen nicht, es sei denn, Sie geben eine neue Dateiversion frei.","PDFE.Controllers.Toolbar.txtSaveCopy":"Kopie speichern","PDFE.Controllers.Toolbar.txtUntitled":"Unbenannt","PDFE.Controllers.Viewport.textFitPage":"Seite anpassen","PDFE.Controllers.Viewport.textFitWidth":"Breite anpassen","PDFE.Controllers.Viewport.txtDarkMode":"Dunkelmodus","PDFE.Views.ChartSettings.text3dDepth":"Tiefe (% der Basis)","PDFE.Views.ChartSettings.text3dHeight":"Höhe (% der Basis)","PDFE.Views.ChartSettings.text3dRotation":"3D-Drehung","PDFE.Views.ChartSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.ChartSettings.textAutoscale":"Autoskalierung","PDFE.Views.ChartSettings.textChartType":"Diagrammtyp ändern","PDFE.Views.ChartSettings.textData":"Daten","PDFE.Views.ChartSettings.textDefault":"Standardmäßige Drehung","PDFE.Views.ChartSettings.textDown":"Unten","PDFE.Views.ChartSettings.textEditData":"Daten ändern","PDFE.Views.ChartSettings.textEditLinks":"Links bearbeiten","PDFE.Views.ChartSettings.textHeight":"Höhe","PDFE.Views.ChartSettings.textKeepRatio":"Konstante Proportionen","PDFE.Views.ChartSettings.textLeft":"Links","PDFE.Views.ChartSettings.textLinkedData":"Verknüpfte Daten","PDFE.Views.ChartSettings.textNarrow":"Blickfeld verengen","PDFE.Views.ChartSettings.textPerspective":"Perspektive","PDFE.Views.ChartSettings.textRight":"Rechts","PDFE.Views.ChartSettings.textRightAngle":"Rechtwinklige Achsen","PDFE.Views.ChartSettings.textSelectData":"Daten auswählen","PDFE.Views.ChartSettings.textSize":"Größe","PDFE.Views.ChartSettings.textStyle":"Stil","PDFE.Views.ChartSettings.textUp":"Nach oben","PDFE.Views.ChartSettings.textUpdateData":"Daten aktualisieren","PDFE.Views.ChartSettings.textWiden":"Blickfeld verbreitern","PDFE.Views.ChartSettings.textWidth":"Breite","PDFE.Views.ChartSettings.textX":"X-Rotation","PDFE.Views.ChartSettings.textY":"Y-Rotation","PDFE.Views.ChartSettingsAdvanced.textAlt":"Alternativer Text","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"Beschreibung","PDFE.Views.ChartSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformationen wird Menschen mit Seh- oder kognitiven Beeinträchtigungen vorgelesen, damit sie besser verstehen, welche Informationen das Bild, die Form, das Diagramm oder die Tabelle enthält.","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"Titel","PDFE.Views.ChartSettingsAdvanced.textAuto":"Autom.","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"Achsenkreuze","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"Achsenposition","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"Titel","PDFE.Views.ChartSettingsAdvanced.textBase":"Basis","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"Zwischen den Teilstrichen","PDFE.Views.ChartSettingsAdvanced.textBillions":"Milliarden","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"Kategoriename","PDFE.Views.ChartSettingsAdvanced.textCenter":"Zentriert","PDFE.Views.ChartSettingsAdvanced.textChartName":"Name des Diagramms","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"Diagrammtitel","PDFE.Views.ChartSettingsAdvanced.textCross":"Kreuz","PDFE.Views.ChartSettingsAdvanced.textCustom":"Benutzerdefiniert","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"Datenbeschriftungen","PDFE.Views.ChartSettingsAdvanced.textFit":"Breite anpassen","PDFE.Views.ChartSettingsAdvanced.textFixed":"Fixiert","PDFE.Views.ChartSettingsAdvanced.textFormat":"Bezeichnungsformat","PDFE.Views.ChartSettingsAdvanced.textFrom":"Ab","PDFE.Views.ChartSettingsAdvanced.textGeneral":"Allgemein","PDFE.Views.ChartSettingsAdvanced.textGridLines":"Gitternetzlinien ","PDFE.Views.ChartSettingsAdvanced.textHeight":"Höhe","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"Achse ausblenden","PDFE.Views.ChartSettingsAdvanced.textHigh":"Hoch","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"Horizontale Achse","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"Horizontale Sekundärachse","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"Hunderte","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PDFE.Views.ChartSettingsAdvanced.textIn":"In","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"Innen unten","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"Innen oben","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"Konstante Proportionen","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"Achsenbeschriftungsabstand","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"Abstand zwischen Beschriftungen","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"Beschriftungsoptionen","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"Beschriftungsposition","PDFE.Views.ChartSettingsAdvanced.textLayout":"Layout","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"Überlagerung links","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"Unten","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"Links","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"Legende","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"Rechts","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"Oben","PDFE.Views.ChartSettingsAdvanced.textLines":"Linien","PDFE.Views.ChartSettingsAdvanced.textLogScale":"Logarithmische Skalierung","PDFE.Views.ChartSettingsAdvanced.textLow":"Niedrig","PDFE.Views.ChartSettingsAdvanced.textMajor":"Primäre","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"Primäre und sekundäre","PDFE.Views.ChartSettingsAdvanced.textMajorType":"Primärer Typ","PDFE.Views.ChartSettingsAdvanced.textManual":"Manuell","PDFE.Views.ChartSettingsAdvanced.textMarkers":"Markierungen","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"Abstand zwischen Teilstrichen","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"Maximalwert","PDFE.Views.ChartSettingsAdvanced.textMillions":"Millionen","PDFE.Views.ChartSettingsAdvanced.textMinor":"Sekundär","PDFE.Views.ChartSettingsAdvanced.textMinorType":"Sekundärer Typ","PDFE.Views.ChartSettingsAdvanced.textMinValue":"Minimalwert","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"Neben der Achse","PDFE.Views.ChartSettingsAdvanced.textNone":"Kein(e)","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"Ohne Überlagerung","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"Teilstriche","PDFE.Views.ChartSettingsAdvanced.textOut":"Außen","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"Außen oben","PDFE.Views.ChartSettingsAdvanced.textOverlay":"Überlagerung","PDFE.Views.ChartSettingsAdvanced.textPlacement":"Positionierung","PDFE.Views.ChartSettingsAdvanced.textPosition":"Position","PDFE.Views.ChartSettingsAdvanced.textReverse":"Werte in umgekehrter Reihenfolge","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"Überlagerung rechts","PDFE.Views.ChartSettingsAdvanced.textRotated":"Gedreht","PDFE.Views.ChartSettingsAdvanced.textSeparator":"Trennzeichen für Datenbeschriftungen","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"Reihenname","PDFE.Views.ChartSettingsAdvanced.textSize":"Größe","PDFE.Views.ChartSettingsAdvanced.textSmooth":"Glatt","PDFE.Views.ChartSettingsAdvanced.textStraight":"Gerade","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PDFE.Views.ChartSettingsAdvanced.textThousands":"Tausende","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"Parameter der Teilstriche","PDFE.Views.ChartSettingsAdvanced.textTitle":"Diagramm - Erweiterte Einstellungen","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"Obere linke Ecke","PDFE.Views.ChartSettingsAdvanced.textTrillions":"Billionen","PDFE.Views.ChartSettingsAdvanced.textUnits":"Anzeigeeinheiten","PDFE.Views.ChartSettingsAdvanced.textValue":"Wert","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"Vertikale Achse","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"Vertikale Sekundärachse","PDFE.Views.ChartSettingsAdvanced.textVertical":"Vertikal","PDFE.Views.ChartSettingsAdvanced.textWidth":"Breite","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"Überlagerung links","PDFE.Views.DocumentHolder.aboveText":"Oben","PDFE.Views.DocumentHolder.addCommentText":"Kommentar hinzufügen","PDFE.Views.DocumentHolder.advancedChartText":"Erweiterte Einstellungen des Diagramms","PDFE.Views.DocumentHolder.advancedEquationText":"Einstellungen der Gleichung","PDFE.Views.DocumentHolder.advancedImageText":"Erweiterte Bildeinstellungen","PDFE.Views.DocumentHolder.advancedParagraphText":"Erweiterte Absatzeinstellungen","PDFE.Views.DocumentHolder.advancedShapeText":"Erweiterte Einstellungen der Form","PDFE.Views.DocumentHolder.advancedTableText":"Erweiterte Tabellen-Einstellungen","PDFE.Views.DocumentHolder.AlignBottom":"Unten","PDFE.Views.DocumentHolder.AlignCenter":"Zentriert","PDFE.Views.DocumentHolder.AlignJust":"Ausrichten","PDFE.Views.DocumentHolder.AlignLeft":"Links","PDFE.Views.DocumentHolder.alignmentText":"Ausrichtung","PDFE.Views.DocumentHolder.AlignMiddle":"Mitte","PDFE.Views.DocumentHolder.AlignRight":"Rechts","PDFE.Views.DocumentHolder.AlignText":"Textausrichtung","PDFE.Views.DocumentHolder.AlignTop":"Oben","PDFE.Views.DocumentHolder.allLinearText":"Alle – Linear","PDFE.Views.DocumentHolder.allProfText":"Alle – Professionelle","PDFE.Views.DocumentHolder.belowText":"Unten","PDFE.Views.DocumentHolder.btnChart":"Hinzufügen, Entfernen oder Ändern von Diagrammelementen wie Titel, Legende, Gitternetzlinien und Datenbeschriftungen","PDFE.Views.DocumentHolder.cellAlignText":"Vertikale Ausrichtung in Zellen","PDFE.Views.DocumentHolder.cellText":"Zelle","PDFE.Views.DocumentHolder.centerText":"Zentriert","PDFE.Views.DocumentHolder.columnText":"Spalte","PDFE.Views.DocumentHolder.confirmAddFontName":"Die Schriftart, die Sie speichern möchten, ist auf dem aktuellen Gerät nicht verfügbar.
Der Textstil wird mit einer der Geräteschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.
Sollen Sie fortfahren?","PDFE.Views.DocumentHolder.currLinearText":"Aktuell – Linear","PDFE.Views.DocumentHolder.currProfText":"Aktuell – Professionell","PDFE.Views.DocumentHolder.deleteColumnText":"Spalte löschen","PDFE.Views.DocumentHolder.deleteRowText":"Zeile löschen","PDFE.Views.DocumentHolder.deleteTableText":"Tabelle löschen","PDFE.Views.DocumentHolder.deleteText":"Löschen","PDFE.Views.DocumentHolder.DepthAxis":"Z-Achse","PDFE.Views.DocumentHolder.direct270Text":"Text nach oben drehen","PDFE.Views.DocumentHolder.direct90Text":"Text nach unten drehen","PDFE.Views.DocumentHolder.directHText":"Horizontal","PDFE.Views.DocumentHolder.directionText":"Textausrichtung","PDFE.Views.DocumentHolder.editChartText":"Daten bearbeiten","PDFE.Views.DocumentHolder.editHyperlinkText":"Link bearbeiten","PDFE.Views.DocumentHolder.guestText":"Gast","PDFE.Views.DocumentHolder.hideEqToolbar":"Symbolleiste Gleichung ausblenden","PDFE.Views.DocumentHolder.hyperlinkText":"Link","PDFE.Views.DocumentHolder.insertColumnLeftText":"Spalte nach links","PDFE.Views.DocumentHolder.insertColumnRightText":"Spalte nach rechts","PDFE.Views.DocumentHolder.insertColumnText":"Spalte einfügen","PDFE.Views.DocumentHolder.insertRowAboveText":"Zeile oberhalb","PDFE.Views.DocumentHolder.insertRowBelowText":"Zeile unterhalb","PDFE.Views.DocumentHolder.insertRowText":"Zeile einfügen","PDFE.Views.DocumentHolder.insertText":"Einfügen","PDFE.Views.DocumentHolder.latexText":"LaTeX","PDFE.Views.DocumentHolder.leftText":"Links","PDFE.Views.DocumentHolder.mergeCellsText":"Zellen verbinden","PDFE.Views.DocumentHolder.mniImageFromFile":"Bild aus Datei","PDFE.Views.DocumentHolder.mniImageFromStorage":"Bild aus dem Speicher","PDFE.Views.DocumentHolder.mniImageFromUrl":"Bild aus URL","PDFE.Views.DocumentHolder.originalSizeText":"Aktuelle Größe","PDFE.Views.DocumentHolder.removeCommentText":"Löschen","PDFE.Views.DocumentHolder.removeHyperlinkText":"Link entfernen","PDFE.Views.DocumentHolder.rightText":"Rechts","PDFE.Views.DocumentHolder.rowText":"Zeile","PDFE.Views.DocumentHolder.selectText":"Auswählen","PDFE.Views.DocumentHolder.showEqToolbar":"Gleichungs-Symbolleiste anzeigen","PDFE.Views.DocumentHolder.splitCellsText":"Zelle teilen...","PDFE.Views.DocumentHolder.splitCellTitleText":"Zelle teilen","PDFE.Views.DocumentHolder.tableText":"Tabelle","PDFE.Views.DocumentHolder.textArrangeBack":"Zum Hintergrund senden","PDFE.Views.DocumentHolder.textArrangeBackward":"Nach hinten senden","PDFE.Views.DocumentHolder.textArrangeForward":"Vorwärts bringen","PDFE.Views.DocumentHolder.textArrangeFront":"In den Vordergrund bringen","PDFE.Views.DocumentHolder.textAxes":"Achsen","PDFE.Views.DocumentHolder.textAxisTitles":"Achsentitel","PDFE.Views.DocumentHolder.textBottom":"Unten","PDFE.Views.DocumentHolder.textCenter":"Zentriert","PDFE.Views.DocumentHolder.textChartTitle":"Diagrammtitel","PDFE.Views.DocumentHolder.textClearField":"Feld leeren","PDFE.Views.DocumentHolder.textCm":"cm","PDFE.Views.DocumentHolder.textColor":"Farbe","PDFE.Views.DocumentHolder.textCopy":"Kopieren","PDFE.Views.DocumentHolder.textCrop":"Zuschneiden","PDFE.Views.DocumentHolder.textCropFill":"Füllung","PDFE.Views.DocumentHolder.textCropFit":"Anpassen","PDFE.Views.DocumentHolder.textCustom":"Benutzerdefiniert","PDFE.Views.DocumentHolder.textCut":"Ausschneiden","PDFE.Views.DocumentHolder.textDataLabels":"Datenbeschriftungen","PDFE.Views.DocumentHolder.textDistributeCols":"Spalten verteilen","PDFE.Views.DocumentHolder.textDistributeRows":"Zeilen verteilen","PDFE.Views.DocumentHolder.textEditPoints":"Punkte bearbeiten","PDFE.Views.DocumentHolder.textErrorBars":"Fehlerbalken","PDFE.Views.DocumentHolder.textExponential":"Exponentiell ","PDFE.Views.DocumentHolder.textFit":"An Breite anpassen","PDFE.Views.DocumentHolder.textFlipH":"Horizontal kippen","PDFE.Views.DocumentHolder.textFlipV":"Vertikal kippen","PDFE.Views.DocumentHolder.textFontSizeErr":"Der eingegebene Wert ist falsch.
Geben Sie bitte einen numerischen Wert zwischen 1 und 300 ein","PDFE.Views.DocumentHolder.textFromFile":"Aus Datei","PDFE.Views.DocumentHolder.textFromStorage":"Aus dem Speicher","PDFE.Views.DocumentHolder.textFromUrl":"Aus URL","PDFE.Views.DocumentHolder.textGridLines":"Gitternetzlinien ","PDFE.Views.DocumentHolder.textHorAxis":"Horizontale Achse","PDFE.Views.DocumentHolder.textHorAxisSec":"Horizontale Sekundärachse","PDFE.Views.DocumentHolder.textHorizontalMajor":"Horizontal Major","PDFE.Views.DocumentHolder.textHorizontalMinor":"Horizontal Minor","PDFE.Views.DocumentHolder.textInnerBottom":"Innen unten","PDFE.Views.DocumentHolder.textInnerTop":"Innen oben","PDFE.Views.DocumentHolder.textLeft":"Links","PDFE.Views.DocumentHolder.textLeftData":"Links","PDFE.Views.DocumentHolder.textLeftOverlay":"Überlagerung links","PDFE.Views.DocumentHolder.textLegendPos":"Legende","PDFE.Views.DocumentHolder.textLinear":"Linear","PDFE.Views.DocumentHolder.textLinearForecast":"Lineare Prognose","PDFE.Views.DocumentHolder.textLines":"Linien","PDFE.Views.DocumentHolder.textMovingAverage":"Gleitender Durchschnitt (2)","PDFE.Views.DocumentHolder.textNone":"Kein(e)","PDFE.Views.DocumentHolder.textNoOverlay":"Ohne Überlagerung","PDFE.Views.DocumentHolder.textOuterTop":"Außen oben","PDFE.Views.DocumentHolder.textOverlay":"Überlagerung","PDFE.Views.DocumentHolder.textPaste":"Einfügen","PDFE.Views.DocumentHolder.textRecognize":"Text bearbeiten","PDFE.Views.DocumentHolder.textRedact":"Text schwärzen","PDFE.Views.DocumentHolder.textRedo":"Wiederholen","PDFE.Views.DocumentHolder.textReplace":"Bild ersetzen","PDFE.Views.DocumentHolder.textResetCrop":"Zuschneiden zurücksetzen","PDFE.Views.DocumentHolder.textRight":"Rechts","PDFE.Views.DocumentHolder.textRightOverlay":"Überlagerung rechts","PDFE.Views.DocumentHolder.textRotate":"Drehen","PDFE.Views.DocumentHolder.textRotate270":"Linksdrehung 90 Grad","PDFE.Views.DocumentHolder.textRotate90":"90° im UZS drehen","PDFE.Views.DocumentHolder.textSaveAsPicture":"Als Bild speichern","PDFE.Views.DocumentHolder.textShapeAlignBottom":"Unten ausrichten","PDFE.Views.DocumentHolder.textShapeAlignCenter":"Zentriert ausrichten","PDFE.Views.DocumentHolder.textShapeAlignLeft":"Linksbündig ausrichten","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"Mittig ausrichten","PDFE.Views.DocumentHolder.textShapeAlignRight":"Rechtsbündig ausrichten","PDFE.Views.DocumentHolder.textShapeAlignTop":"Oben ausrichten","PDFE.Views.DocumentHolder.textShapesMerge":"Formen zusammenführen","PDFE.Views.DocumentHolder.textShowLegendKeys":"Legendenschlüssel anzeigen","PDFE.Views.DocumentHolder.textShowUpDown":"Aufwärts-/Abwärtsbalken anzeigen","PDFE.Views.DocumentHolder.textStandardDeviation":"Standardabweichung","PDFE.Views.DocumentHolder.textStandardError":"Standardfehler","PDFE.Views.DocumentHolder.textTop":"Oben","PDFE.Views.DocumentHolder.textTrendline":"Trendlinie","PDFE.Views.DocumentHolder.textUndo":"Rückgängig machen","PDFE.Views.DocumentHolder.textUpDownBars":"Aufwärts-/Abwärtsbalken","PDFE.Views.DocumentHolder.textVertAxis":"Vertikale Achse","PDFE.Views.DocumentHolder.textVertAxisSec":"Vertikale Sekundärachse","PDFE.Views.DocumentHolder.textVerticalMajor":"Vertikale Major","PDFE.Views.DocumentHolder.textVerticalMinor":"Vertikale Minor","PDFE.Views.DocumentHolder.tipIsLocked":"Dieses Element wird gerade von einem anderen Benutzer bearbeitet.","PDFE.Views.DocumentHolder.tipRecognize":"Text bearbeiten","PDFE.Views.DocumentHolder.tipRedact":"Text schwärzen","PDFE.Views.DocumentHolder.txtAddBottom":"Unteren Rahmen hinzufügen","PDFE.Views.DocumentHolder.txtAddFractionBar":"Bruchstrich einfügen","PDFE.Views.DocumentHolder.txtAddHor":"Horizontale Linie einfügen","PDFE.Views.DocumentHolder.txtAddLB":"Linke untere Linie einfügen","PDFE.Views.DocumentHolder.txtAddLeft":"Linken Rahmen hinzufügen","PDFE.Views.DocumentHolder.txtAddLT":"Linke obere Linie einfügen","PDFE.Views.DocumentHolder.txtAddRight":"Rechten Rahmen hinzufügen","PDFE.Views.DocumentHolder.txtAddTop":"Oberen Rahmen hinzufügen","PDFE.Views.DocumentHolder.txtAddVer":"Vertikale Linie hinzufügen","PDFE.Views.DocumentHolder.txtAlign":"Ausrichtung","PDFE.Views.DocumentHolder.txtAlignToChar":"An einem Zeichen ausrichten","PDFE.Views.DocumentHolder.txtArrange":"Anordnen","PDFE.Views.DocumentHolder.txtBackground":"Hintergrund","PDFE.Views.DocumentHolder.txtBorderProps":"Rahmeneigenschaften","PDFE.Views.DocumentHolder.txtBottom":"Unten","PDFE.Views.DocumentHolder.txtColumnAlign":"Spaltenausrichtung","PDFE.Views.DocumentHolder.txtCopyPage":"Seite kopieren","PDFE.Views.DocumentHolder.txtCutPage":"Seite ausschneiden","PDFE.Views.DocumentHolder.txtDecreaseArg":"Argumentgröße reduzieren","PDFE.Views.DocumentHolder.txtDeleteArg":"Argument löschen","PDFE.Views.DocumentHolder.txtDeleteBreak":"Manuellen Umbruch löschen","PDFE.Views.DocumentHolder.txtDeleteChars":"Einschlusszeichen löschen","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Einschlusszeichen und Trennzeichen löschen","PDFE.Views.DocumentHolder.txtDeleteEq":"Formel löschen","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"Zeichen löschen","PDFE.Views.DocumentHolder.txtDeletePage":"Seite löschen","PDFE.Views.DocumentHolder.txtDeleteRadical":"Wurzel löschen","PDFE.Views.DocumentHolder.txtDistribHor":"Horizontal verteilen","PDFE.Views.DocumentHolder.txtDistribVert":"Vertikal verteilen","PDFE.Views.DocumentHolder.txtEmpty":"(Leer)","PDFE.Views.DocumentHolder.txtFractionLinear":"Zu linearer Bruchrechnung ändern","PDFE.Views.DocumentHolder.txtFractionSkewed":"Zu verzerrter Bruchrechnung ändern","PDFE.Views.DocumentHolder.txtFractionStacked":"Zu verzerrter Bruchrechnung ändern","PDFE.Views.DocumentHolder.txtGroup":"Gruppieren","PDFE.Views.DocumentHolder.txtGroupCharOver":"Zeichen über dem Text ","PDFE.Views.DocumentHolder.txtGroupCharUnder":"Zeichen unter dem Text ","PDFE.Views.DocumentHolder.txtHideBottom":"Untere Rahmenlinie verbergen","PDFE.Views.DocumentHolder.txtHideBottomLimit":"Untere Grenze verbergen","PDFE.Views.DocumentHolder.txtHideCloseBracket":"Schließende Klammer verbergen","PDFE.Views.DocumentHolder.txtHideDegree":"Grad verbergen","PDFE.Views.DocumentHolder.txtHideHor":"Horizontale Linie verbergen","PDFE.Views.DocumentHolder.txtHideLB":"Linke untere Zeile ausblenden","PDFE.Views.DocumentHolder.txtHideLeft":"Linken Rand ausblenden","PDFE.Views.DocumentHolder.txtHideLT":"Linke obere Zeile ausblenden","PDFE.Views.DocumentHolder.txtHideOpenBracket":"Öffnende Klammer verbergen","PDFE.Views.DocumentHolder.txtHidePlaceholder":"Platzhalter verbergen","PDFE.Views.DocumentHolder.txtHideRight":"Rahmenlinie rechts verbergen","PDFE.Views.DocumentHolder.txtHideTop":"Rahmenlinie oben verbergen","PDFE.Views.DocumentHolder.txtHideTopLimit":"Obergrenze verbergen","PDFE.Views.DocumentHolder.txtHideVer":"Vertikale Linie verbergen","PDFE.Views.DocumentHolder.txtIncreaseArg":"Argumentgröße erhöhen","PDFE.Views.DocumentHolder.txtInsertArgAfter":"Argument nachher einfügen","PDFE.Views.DocumentHolder.txtInsertArgBefore":"Argument vorher einfügen","PDFE.Views.DocumentHolder.txtInsertBreak":"Manuellen Umbruch einfügen","PDFE.Views.DocumentHolder.txtInsertEqAfter":"Formel nachher einfügen","PDFE.Views.DocumentHolder.txtInsertEqBefore":"Formel vorher einfügen","PDFE.Views.DocumentHolder.txtLimitChange":"Grenzwerten ändern ","PDFE.Views.DocumentHolder.txtLimitOver":"Grenzwert über den Text","PDFE.Views.DocumentHolder.txtLimitUnder":"Grenzwert unter den Text","PDFE.Views.DocumentHolder.txtMatchBrackets":"Eckige Klammern an Argumenthöhe anpassen","PDFE.Views.DocumentHolder.txtMatrixAlign":"Matrixausrichtung","PDFE.Views.DocumentHolder.txtNewPageAfter":"Leere Seite einfügen nach","PDFE.Views.DocumentHolder.txtNewPageBefore":"Leere Seite vorher einfügen","PDFE.Views.DocumentHolder.txtOpacity":"Undurchsichtigkeit","PDFE.Views.DocumentHolder.txtOverbar":"Balken über dem Text","PDFE.Views.DocumentHolder.txtPastePage":"Seite einfügen","PDFE.Views.DocumentHolder.txtPastePageAfter":"Seite einfügen nach","PDFE.Views.DocumentHolder.txtPastePageBefore":"Seite einfügen vor","PDFE.Views.DocumentHolder.txtPercentage":"Prozentsatz","PDFE.Views.DocumentHolder.txtPressLink":"Drücken Sie {0} und klicken Sie auf den Link","PDFE.Views.DocumentHolder.txtPrintSelection":"Auswahl drucken","PDFE.Views.DocumentHolder.txtRemFractionBar":"Bruchstrich entfernen","PDFE.Views.DocumentHolder.txtRemLimit":"Grenzwert entfernen","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"Akzentzeichen entfernen","PDFE.Views.DocumentHolder.txtRemoveBar":"Leiste entfernen","PDFE.Views.DocumentHolder.txtRemScripts":"Skripts entfernen","PDFE.Views.DocumentHolder.txtRemSubscript":"Tiefstellung entfernen","PDFE.Views.DocumentHolder.txtRemSuperscript":"Hochstellung entfernen","PDFE.Views.DocumentHolder.txtRotateLeft":"Nach links drehen","PDFE.Views.DocumentHolder.txtRotateRight":"Nach rechts drehen","PDFE.Views.DocumentHolder.txtScriptsAfter":"Scripts nach dem Text","PDFE.Views.DocumentHolder.txtScriptsBefore":"Scripts vor dem Text","PDFE.Views.DocumentHolder.txtSelectAll":"Alles auswählen","PDFE.Views.DocumentHolder.txtShowBottomLimit":"Untere Grenze zeigen","PDFE.Views.DocumentHolder.txtShowCloseBracket":"Schließende eckige Klammer anzeigen","PDFE.Views.DocumentHolder.txtShowDegree":"Grad anzeigen","PDFE.Views.DocumentHolder.txtShowOpenBracket":"Öffnende eckige Klammer anzeigen","PDFE.Views.DocumentHolder.txtShowPlaceholder":"Platzhaltertext anzeigen","PDFE.Views.DocumentHolder.txtShowTopLimit":"Höchstgrenze anzeigen","PDFE.Views.DocumentHolder.txtStretchBrackets":"Eckige Klammern dehnen","PDFE.Views.DocumentHolder.txtTop":"Oben","PDFE.Views.DocumentHolder.txtUnderbar":"Balken unter dem Text ","PDFE.Views.DocumentHolder.txtUngroup":"Gruppierung aufheben","PDFE.Views.DocumentHolder.txtWarnUrl":"Das Klicken auf diesen Link kann Ihrem Gerät und Ihren Daten schaden. Um Ihren Computer zu schützen, klicken Sie nur auf Links aus vertrauenswürdigen Quellen. Diese Seite ist möglicherweise unsicher:

{0}

Möchten Sie fortfahren?","PDFE.Views.DocumentHolder.unicodeText":"Unicode","PDFE.Views.DocumentHolder.vertAlignText":"Vertikale Ausrichtung","PDFE.Views.FileMenu.ariaFileMenu":"Dateimenü","PDFE.Views.FileMenu.btnBackCaption":"Dateispeicherort öffnen","PDFE.Views.FileMenu.btnCloseEditor":"Datei schließen","PDFE.Views.FileMenu.btnCloseMenuCaption":"Zurück","PDFE.Views.FileMenu.btnCreateNewCaption":"Neu erstellen","PDFE.Views.FileMenu.btnDownloadCaption":"Herunterladen als","PDFE.Views.FileMenu.btnExitCaption":"Schließen","PDFE.Views.FileMenu.btnFileOpenCaption":"Öffnen","PDFE.Views.FileMenu.btnHelpCaption":"Hilfe","PDFE.Views.FileMenu.btnHistoryCaption":"Versionsverlauf","PDFE.Views.FileMenu.btnInfoCaption":"Info","PDFE.Views.FileMenu.btnPrintCaption":"Drucken","PDFE.Views.FileMenu.btnProtectCaption":"Schützen","PDFE.Views.FileMenu.btnRecentFilesCaption":"Zuletzt verwendete öffnen","PDFE.Views.FileMenu.btnRenameCaption":"Umbenennen","PDFE.Views.FileMenu.btnReturnCaption":"Zurück zum Dokument","PDFE.Views.FileMenu.btnRightsCaption":"Zugriffsrechte","PDFE.Views.FileMenu.btnSaveAsCaption":"Speichern als","PDFE.Views.FileMenu.btnSaveCaption":"Speichern","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"Kopie speichern als","PDFE.Views.FileMenu.btnSettingsCaption":"Erweiterte Einstellungen","PDFE.Views.FileMenu.btnSuggestCaption":"Eine Funktion vorschlagen","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"In den Mobilmodus wechseln","PDFE.Views.FileMenu.btnToEditCaption":"Dokument bearbeiten","PDFE.Views.FileMenu.textDownload":"Herunterladen","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"Leeres Dokument","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Neu erstellen","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Anwenden","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Autor hinzufügen","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Text Hinzufügen","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Anwendung","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Zugriffsrechte ändern","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"Kommentar","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Allgemein","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Erstellt","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Dokumentinformation","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Schnelle Web-Anzeige","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Ladevorgang...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Zuletzt bearbeitet von","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Zuletzt bearbeitet","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"Nein","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Besitzer","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"Seiten","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Seitengröße","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Absätze","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF-Ersteller","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF mit Tags","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF-Version","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Standort","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personen mit Berechtigungen","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Buchstaben mit Leerzeichen","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Statistiken","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Betreff","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Buchstaben","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"Schlagwörter","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Titel","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Hochgeladen","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"Wörter","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"Ja","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Zugriffsrechte","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Zugriffsrechte ändern","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"Personen mit Berechtigungen","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Mit Kennwort","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"Datei schützen","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"Mit Signatur","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Dem Dokument wurden gültige Signaturen hinzugefügt.
Das Dokument ist vor Bearbeitung geschützt.","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Stellen Sie die Integrität des Dokuments durch Hinzufügen einer
unsichtbaren digitalen Signatur sicher.","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Dokument bearbeiten","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"Die Bearbeitung entfernt Signaturen aus diesem Dokument.
Möchten Sie trotzdem fortsetzen?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Dieses Dokument ist schreibgeschützt.","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Verschlüsseln Sie dieses Dokument mit einem Passwort","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Dieses Dokument muss signiert werden.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Gültige Signaturen wurden dem Dokument hinzugefügt. Das Dokument ist vor der Bearbeitung geschützt.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Einige der digitalen Signaturen im Dokument sind ungültig oder konnten nicht verifiziert werden. Das Dokument ist vor der Bearbeitung geschützt.","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"Signaturen anzeigen","PDFE.Views.FileMenuPanels.Settings.okButtonText":"Anwenden","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":" Modus \"Gemeinsame Bearbeitung\"","PDFE.Views.FileMenuPanels.Settings.strFast":"Schnell","PDFE.Views.FileMenuPanels.Settings.strFontRender":"Schriftglättung","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Tastenkombinationen","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"RTL-Schnittstelle","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"Echtzeit-Zusammenarbeit Änderungen ","PDFE.Views.FileMenuPanels.Settings.strShowComments":"Kommentare im Text anzeigen","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Änderungen von anderen Benutzern anzeigen","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Gelöste Kommentare anzeigen","PDFE.Views.FileMenuPanels.Settings.strStrict":"Formal","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"Stil der Registerkarte","PDFE.Views.FileMenuPanels.Settings.strTheme":"Thema der Benutzeroberfläche","PDFE.Views.FileMenuPanels.Settings.strUnit":"Maßeinheit","PDFE.Views.FileMenuPanels.Settings.strZoom":"Standard-Zoom-Wert","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"AutoWiederherstellen-Informationen speichern","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"Automatisches speichern","PDFE.Views.FileMenuPanels.Settings.textDisabled":"Deaktiviert","PDFE.Views.FileMenuPanels.Settings.textFill":"Füllung","PDFE.Views.FileMenuPanels.Settings.textForceSave":"Speichern von Zwischenversionen","PDFE.Views.FileMenuPanels.Settings.textLine":"Linie","PDFE.Views.FileMenuPanels.Settings.textMinute":"Jede Minute","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Erweiterte Einstellungen","PDFE.Views.FileMenuPanels.Settings.txtAll":"Alles anzeigen","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"Darstellung","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"Standard-Cache-Modus","PDFE.Views.FileMenuPanels.Settings.txtCm":"Zentimeter","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"Zusammenarbeit","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"Anpassen","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Schnellzugriff anpassen","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"Dunkelmodus aktivieren","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"Bearbeitung und Speicherung","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"Zusammenarbeit in Echtzeit. Alle Änderungen werden automatisch gespeichert","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"Seite anpassen","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"Breite anpassen","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Hieroglyphen","PDFE.Views.FileMenuPanels.Settings.txtInch":"Zoll","PDFE.Views.FileMenuPanels.Settings.txtLast":"Letztes anzeigen","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"Zuletzt benutzt","PDFE.Views.FileMenuPanels.Settings.txtMac":"wie OS X","PDFE.Views.FileMenuPanels.Settings.txtNative":"Native","PDFE.Views.FileMenuPanels.Settings.txtNone":"Keines anzeigen","PDFE.Views.FileMenuPanels.Settings.txtPt":"Punkt","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"Die Schaltfläche Schnelldruck in der Kopfzeile des Editors anzeigen","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"Unterstützung für Bildschirmleser einschalten","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"Verwenden Sie die Schaltfläche \"Speichern\", um die vorgenommenen Änderungen zu synchronisieren.","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"Farbe der Symbolleiste als Hintergrund für Registerkarten verwenden","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"Verwenden Sie die Alt-Taste, um über die Tastatur in der Benutzeroberfläche zu navigieren.","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"Beim Auswählen von Text die Minisymbolleiste verwenden","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Verwenden Sie die Options-Taste, um über die Tastatur in der Benutzeroberfläche zu navigieren.","PDFE.Views.FileMenuPanels.Settings.txtWin":"wie Windows","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"Arbeitsbereich","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"Schnellzugriff anpassen","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Herunterladen als","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Kopie speichern als","PDFE.Views.FormatSettingsDialog.textAfter":"Nachher ohne Leerzeichen","PDFE.Views.FormatSettingsDialog.textAfterSpace":"Nachher mit Leerzeichen","PDFE.Views.FormatSettingsDialog.textBefore":"Vorher ohne Leerzeichen","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"Vorher mit Leerzeichen","PDFE.Views.FormatSettingsDialog.textCategory":"Kategorie","PDFE.Views.FormatSettingsDialog.textDate":"Datum","PDFE.Views.FormatSettingsDialog.textDecimal":"Dezimalstellen","PDFE.Views.FormatSettingsDialog.textFormat":"Format","PDFE.Views.FormatSettingsDialog.textLocation":"Symbolposition","PDFE.Views.FormatSettingsDialog.textMask":"Beliebige Maske","PDFE.Views.FormatSettingsDialog.textNegative":"Negativer Zahlenstil","PDFE.Views.FormatSettingsDialog.textNone":"Kein(e)","PDFE.Views.FormatSettingsDialog.textNumber":"Nummer","PDFE.Views.FormatSettingsDialog.textParens":"Klammern anzeigen","PDFE.Views.FormatSettingsDialog.textPercent":"Prozentsatz","PDFE.Views.FormatSettingsDialog.textPhone":"Telefonnummer","PDFE.Views.FormatSettingsDialog.textRed":"Roten Text verwenden","PDFE.Views.FormatSettingsDialog.textReg":"Regulärer Ausdruck","PDFE.Views.FormatSettingsDialog.textSeparator":"Trennzeichenstil","PDFE.Views.FormatSettingsDialog.textSpecial":"Speziell","PDFE.Views.FormatSettingsDialog.textSSN":"Sozialversicherungsnummer","PDFE.Views.FormatSettingsDialog.textSymbol":"Währungssymbol","PDFE.Views.FormatSettingsDialog.textTime":"Zeit","PDFE.Views.FormatSettingsDialog.textTitle":"Formateinstellungen","PDFE.Views.FormatSettingsDialog.textZipCode":"Postleitzahl","PDFE.Views.FormatSettingsDialog.textZipCode4":"Postleitzahl + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"Benutzerdefiniert","PDFE.Views.FormatSettingsDialog.txtSample":"Beispiel:","PDFE.Views.FormSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.FormSettings.textAlways":"Immer","PDFE.Views.FormSettings.textAnamorphic":"Nicht proportional","PDFE.Views.FormSettings.textArabic":"Arabisch","PDFE.Views.FormSettings.textAutofit":"AutoFit","PDFE.Views.FormSettings.textBackgroundColor":"Hintergrundfarbe","PDFE.Views.FormSettings.textBehavior":"Verhalten","PDFE.Views.FormSettings.textBeveled":"Abgeschrägt","PDFE.Views.FormSettings.textBorder":"Rahmen","PDFE.Views.FormSettings.textButton":"Schaltfläche","PDFE.Views.FormSettings.textChbStyle":"Kontrollkästchenstil","PDFE.Views.FormSettings.textCheck":"Häkchen","PDFE.Views.FormSettings.textCheckbox":"Kontrollkästchen","PDFE.Views.FormSettings.textCheckDefault":"Das Kontrollkästchen ist standardmäßig aktiviert","PDFE.Views.FormSettings.textCircle":"Kreis","PDFE.Views.FormSettings.textClear":"Löschen","PDFE.Views.FormSettings.textColor":"Farbe","PDFE.Views.FormSettings.textComb":"Zeichenanzahl in Textfeld","PDFE.Views.FormSettings.textCombobox":"Kombinationsfeld","PDFE.Views.FormSettings.textCommit":"Ausgewählten Wert sofort festschreiben","PDFE.Views.FormSettings.textCross":"Kreuz","PDFE.Views.FormSettings.textCustomText":"Benutzerdefinierten Text zulassen","PDFE.Views.FormSettings.textDashed":"Gestrichelt","PDFE.Views.FormSettings.textDate":"Datum","PDFE.Views.FormSettings.textDateField":"Feld Datum & Uhrzeit","PDFE.Views.FormSettings.textDiamond":"Raute","PDFE.Views.FormSettings.textDown":"Unten","PDFE.Views.FormSettings.textExport":"Exportwert","PDFE.Views.FormSettings.textField":"Textfeld","PDFE.Views.FormSettings.textFitBounds":"An Grenzen anpassen","PDFE.Views.FormSettings.textFormat":"Format","PDFE.Views.FormSettings.textFromFile":"Aus Datei","PDFE.Views.FormSettings.textFromStorage":"Aus dem Speicher","PDFE.Views.FormSettings.textFromUrl":"Aus einer URL","PDFE.Views.FormSettings.textHindi":"Hindi","PDFE.Views.FormSettings.textHover":"Sich umdrehen","PDFE.Views.FormSettings.textHowScale":"Maßstab","PDFE.Views.FormSettings.textIcon":"Symbol","PDFE.Views.FormSettings.textIconLeft":"Symbol links, Beschriftung rechts","PDFE.Views.FormSettings.textIconOnly":"Nur Symbol","PDFE.Views.FormSettings.textIconTop":"Symbol oben, Beschriftung unten","PDFE.Views.FormSettings.textImage":"Bild","PDFE.Views.FormSettings.textInset":"Einsatz","PDFE.Views.FormSettings.textInvert":"Umkehren","PDFE.Views.FormSettings.textLabel":"Bezeichnung","PDFE.Views.FormSettings.textLabelLeft":"Beschriftung links, Symbol rechts","PDFE.Views.FormSettings.textLabelTop":"Beschriftung oben, Symbol unten","PDFE.Views.FormSettings.textLayout":"Layout","PDFE.Views.FormSettings.textListBox":"Listenfeld","PDFE.Views.FormSettings.textLock":"Sperren","PDFE.Views.FormSettings.textMask":"Beliebige Maske","PDFE.Views.FormSettings.textMaxChars":"Zeichengrenze","PDFE.Views.FormSettings.textMedium":"Medium","PDFE.Views.FormSettings.textMulti":"Mehrzeilig","PDFE.Views.FormSettings.textMultisel":"Mehrfachauswahl","PDFE.Views.FormSettings.textName":"Name","PDFE.Views.FormSettings.textNever":"Niemals","PDFE.Views.FormSettings.textNoBorder":"Keine Rahmen","PDFE.Views.FormSettings.textNoFill":"Ohne Füllung","PDFE.Views.FormSettings.textNone":"Kein(e)","PDFE.Views.FormSettings.textNormal":"Nach oben","PDFE.Views.FormSettings.textNumber":"Nummer","PDFE.Views.FormSettings.textNumeral":"Ziffer","PDFE.Views.FormSettings.textOrientation":"Orientierung","PDFE.Views.FormSettings.textOutline":"Gliederung","PDFE.Views.FormSettings.textOverlay":"Beschriftung über Symbol","PDFE.Views.FormSettings.textPassword":"Kennwort","PDFE.Views.FormSettings.textPercent":"Prozentsatz","PDFE.Views.FormSettings.textPhone":"Telefonnummer","PDFE.Views.FormSettings.textPlaceholder":"Platzhalter","PDFE.Views.FormSettings.textPlacement":"Symbolplatzierung","PDFE.Views.FormSettings.textProportional":"Proportional","PDFE.Views.FormSettings.textPush":"Schieben","PDFE.Views.FormSettings.textRadiobox":"Radiobutton","PDFE.Views.FormSettings.textRadioChoice":"Auswahl der Optionsschaltflächen","PDFE.Views.FormSettings.textRadioDefault":"Schaltfläche ist standardmäßig aktiviert","PDFE.Views.FormSettings.textRadioStyle":"Schaltflächenstil","PDFE.Views.FormSettings.textReadonly":"Schreibgeschützt","PDFE.Views.FormSettings.textReg":"Regulärer Ausdruck","PDFE.Views.FormSettings.textRequired":"Erforderlich","PDFE.Views.FormSettings.textScale":"Wann skalieren","PDFE.Views.FormSettings.textScroll":"Langen Text scrollen","PDFE.Views.FormSettings.textSelect":"Auswählen","PDFE.Views.FormSettings.textSolid":"Einfarbig","PDFE.Views.FormSettings.textSpecial":"Speziell","PDFE.Views.FormSettings.textSquare":"Quadrat","PDFE.Views.FormSettings.textSSN":"Sozialversicherungsnummer","PDFE.Views.FormSettings.textStar":"Stern","PDFE.Views.FormSettings.textState":"Zustand","PDFE.Views.FormSettings.textStyle":"Stil","PDFE.Views.FormSettings.textText":"Text","PDFE.Views.FormSettings.textTextOnly":"Nur Beschriftung","PDFE.Views.FormSettings.textThick":"Dick","PDFE.Views.FormSettings.textThickness":"Dicke","PDFE.Views.FormSettings.textThin":"Dünn","PDFE.Views.FormSettings.textTime":"Zeit","PDFE.Views.FormSettings.textTip":"Tipp","PDFE.Views.FormSettings.textTipAdd":"Neuen Wert hinzufügen","PDFE.Views.FormSettings.textTipDelete":"Wert löschen","PDFE.Views.FormSettings.textTipDown":"Nach unten bewegen","PDFE.Views.FormSettings.textTipUp":"Nach oben bewegen","PDFE.Views.FormSettings.textTooBig":"Das Bild ist zu groß","PDFE.Views.FormSettings.textTooSmall":"Das Bild ist zu klein","PDFE.Views.FormSettings.textUnderline":"Unterstrichen","PDFE.Views.FormSettings.textUnison":"Schaltflächen mit demselben Namen und derselben Auswahl werden gemeinsam ausgewählt","PDFE.Views.FormSettings.textUnlock":"Entsperren","PDFE.Views.FormSettings.textValue":"Wertoptionen","PDFE.Views.FormSettings.textZipCode":"Postleitzahl","PDFE.Views.FormSettings.textZipCode4":"Postleitzahl + 4","PDFE.Views.FormSettings.txtCustom":"Benutzerdefiniert","PDFE.Views.FormsTab.capBtnCheckBox":"Kontrollkästchen","PDFE.Views.FormsTab.capBtnComboBox":"Kombinationsfeld","PDFE.Views.FormsTab.capBtnDropDown":"Listenfeld","PDFE.Views.FormsTab.capBtnEmail":"E-Mail-Adresse","PDFE.Views.FormsTab.capBtnImage":"Bild","PDFE.Views.FormsTab.capBtnNext":"Nächstes Feld","PDFE.Views.FormsTab.capBtnPhone":"Telefonnummer","PDFE.Views.FormsTab.capBtnPrev":"Vorheriges Feld","PDFE.Views.FormsTab.capBtnRadioBox":"Radiobutton","PDFE.Views.FormsTab.capBtnText":"Textfeld","PDFE.Views.FormsTab.capCreditCard":"Kreditkarte","PDFE.Views.FormsTab.capDateTime":"Datum & Uhrzeit","PDFE.Views.FormsTab.capZipCode":"Postleitzahl","PDFE.Views.FormsTab.textAnyone":"Alle","PDFE.Views.FormsTab.textClear":"Felder löschen","PDFE.Views.FormsTab.textClearFields":"Alle Felder löschen","PDFE.Views.FormsTab.tipCheckBox":"Checkbox einfügen","PDFE.Views.FormsTab.tipComboBox":"Combobox einfügen","PDFE.Views.FormsTab.tipCreditCard":"Kreditkartennummer eingeben","PDFE.Views.FormsTab.tipDateTime":"Datum und Uhrzeit einfügen","PDFE.Views.FormsTab.tipDropDown":"Listenfeld einfügen","PDFE.Views.FormsTab.tipEmailField":"E-Mail Adresse einfügen","PDFE.Views.FormsTab.tipImageField":"Bild einfügen","PDFE.Views.FormsTab.tipNextForm":"Zum nächsten Feld wechseln","PDFE.Views.FormsTab.tipPhoneField":"Telefonnummer einfügen","PDFE.Views.FormsTab.tipPrevForm":"Zum vorherigen Feld wechseln","PDFE.Views.FormsTab.tipRadioBox":"Radiobutton einfügen","PDFE.Views.FormsTab.tipTextField":"Textfeld einfügen","PDFE.Views.FormsTab.tipZipCode":"Postleitzahl einfügen","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"Anzeigen","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"Verknüpfen mit","PDFE.Views.HyperlinkSettingsDialog.textDefault":"Gewählter Textabschnitt","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"Geben Sie die Überschrift hier ein","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"Geben Sie den Link hier ein","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"Geben Sie den QuickInfo-Text hier ein","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"Externer Link","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"Seite in diesem Dokument","PDFE.Views.HyperlinkSettingsDialog.textPages":"Seiten","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"Datei auswählen","PDFE.Views.HyperlinkSettingsDialog.textTipText":"QuickInfo-Text","PDFE.Views.HyperlinkSettingsDialog.textTitle":"Linkeinstellungen","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"Verwenden Sie die Bildlaufleisten, die Maus und die Zoomfunktion, um die Zielansicht auszuwählen, und klicken Sie dann auf „Link setzen“, um das Verknüpfungsziel zu erstellen.","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"Erstellen Zur Ansicht gehen","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"Dieses Feld ist erforderlich","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"Erste Seite","PDFE.Views.HyperlinkSettingsDialog.txtLast":"Letzte Seite","PDFE.Views.HyperlinkSettingsDialog.txtNext":"Nächste Seite","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"Dieses Feld muss eine URL im Format \"http://www.example.com\" enthalten","PDFE.Views.HyperlinkSettingsDialog.txtPage":"Seite","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"Zur Seitenansicht wechseln","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"Vorherige Seite","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"Link setzen","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Dieses Feld soll maximal 2083 Zeichen beinhalten","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Geben Sie die Webadresse ein oder wählen Sie eine Datei aus","PDFE.Views.ImageSettings.strTransparency":"Undurchsichtigkeit","PDFE.Views.ImageSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.ImageSettings.textCrop":"Zuschneiden","PDFE.Views.ImageSettings.textCropFill":"Füllung","PDFE.Views.ImageSettings.textCropFit":"Anpassen","PDFE.Views.ImageSettings.textCropToShape":"Auf Form zuschneiden","PDFE.Views.ImageSettings.textEdit":"Bearbeiten","PDFE.Views.ImageSettings.textEditObject":"Objekt bearbeiten","PDFE.Views.ImageSettings.textFitPage":"Seite anpassen","PDFE.Views.ImageSettings.textFlip":"Umdrehen","PDFE.Views.ImageSettings.textFromFile":"Aus Datei","PDFE.Views.ImageSettings.textFromStorage":"Aus dem Speicher","PDFE.Views.ImageSettings.textFromUrl":"Aus URL","PDFE.Views.ImageSettings.textHeight":"Höhe","PDFE.Views.ImageSettings.textHint270":"Linksdrehung 90 Grad","PDFE.Views.ImageSettings.textHint90":"90° im UZS drehen","PDFE.Views.ImageSettings.textHintFlipH":"Horizontal kippen","PDFE.Views.ImageSettings.textHintFlipV":"Vertikal kippen","PDFE.Views.ImageSettings.textInsert":"Bild ersetzen","PDFE.Views.ImageSettings.textOriginalSize":"Aktuelle Größe","PDFE.Views.ImageSettings.textRecentlyUsed":"Zuletzt verwendet","PDFE.Views.ImageSettings.textResetCrop":"Zuschneiden zurücksetzen","PDFE.Views.ImageSettings.textRotate90":"90 Grad drehen","PDFE.Views.ImageSettings.textRotation":"Rotation","PDFE.Views.ImageSettings.textSize":"Größe","PDFE.Views.ImageSettings.textWidth":"Breite","PDFE.Views.ImageSettingsAdvanced.textAlt":"Alternativer Text","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"Beschreibung","PDFE.Views.ImageSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"Titel","PDFE.Views.ImageSettingsAdvanced.textAngle":"Winkel","PDFE.Views.ImageSettingsAdvanced.textCenter":"Zentriert","PDFE.Views.ImageSettingsAdvanced.textFlipped":"Gekippt","PDFE.Views.ImageSettingsAdvanced.textFrom":"Ab","PDFE.Views.ImageSettingsAdvanced.textGeneral":"Allgemein","PDFE.Views.ImageSettingsAdvanced.textHeight":"Höhe","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontal","PDFE.Views.ImageSettingsAdvanced.textImageName":"Bildname","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"Seitenverhältnis beibehalten","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"Aktuelle Größe","PDFE.Views.ImageSettingsAdvanced.textPlacement":"Positionierung","PDFE.Views.ImageSettingsAdvanced.textPosition":"Position","PDFE.Views.ImageSettingsAdvanced.textRotation":"Rotation","PDFE.Views.ImageSettingsAdvanced.textSize":"Größe","PDFE.Views.ImageSettingsAdvanced.textTitle":"Bild - Erweiterte Einstellungen","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"Obere linke Ecke","PDFE.Views.ImageSettingsAdvanced.textVertical":"Vertikal","PDFE.Views.ImageSettingsAdvanced.textVertically":"Vertikal","PDFE.Views.ImageSettingsAdvanced.textWidth":"Breite","PDFE.Views.InsTab.capBlankPage":"Leere Seite","PDFE.Views.InsTab.capBtnDateTime":"Datum & Uhrzeit","PDFE.Views.InsTab.capBtnInsHeaderFooter":"Kopf- und Fußzeile","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"Symbol","PDFE.Views.InsTab.capBtnPageNum":"Seitenzahl","PDFE.Views.InsTab.capInsertChart":"Diagramm","PDFE.Views.InsTab.capInsertEquation":"Gleichung","PDFE.Views.InsTab.capInsertHyperlink":"Link","PDFE.Views.InsTab.capInsertImage":"Bild","PDFE.Views.InsTab.capInsertShape":"Form","PDFE.Views.InsTab.capInsertTable":"Tabelle","PDFE.Views.InsTab.capInsertText":"Textfeld","PDFE.Views.InsTab.capInsertTextArt":"Text Art","PDFE.Views.InsTab.capInsPage":"Seite einfügen","PDFE.Views.InsTab.mniCustomTable":"Benutzerdefinierte Tabelle einfügen","PDFE.Views.InsTab.mniImageFromFile":"Bild aus Datei","PDFE.Views.InsTab.mniImageFromStorage":"Bild aus dem Speicher","PDFE.Views.InsTab.mniImageFromUrl":"Bild aus URL","PDFE.Views.InsTab.mniInsertSSE":"Tabelle einfügen","PDFE.Views.InsTab.textAlpha":"Griechischer Kleinbuchstabe Alpha","PDFE.Views.InsTab.textBetta":"Griechischer Kleinbuchstabe Beta","PDFE.Views.InsTab.textBlackHeart":"Schwarzes Herz","PDFE.Views.InsTab.textBullet":"Aufzählungszeichen","PDFE.Views.InsTab.textCopyright":"Copyrightzeichen","PDFE.Views.InsTab.textDegree":"Gradzeichen","PDFE.Views.InsTab.textDelta":"Griechischer Kleinbuchstabe Delta","PDFE.Views.InsTab.textDivision":"Divisionszeichen","PDFE.Views.InsTab.textDollar":"Dollarzeichen","PDFE.Views.InsTab.textEuro":"Eurozeichen","PDFE.Views.InsTab.textGreaterEqual":"Größer als oder gleich wie ","PDFE.Views.InsTab.textInfinity":"Unendlichkeit","PDFE.Views.InsTab.textLessEqual":"Weniger als oder gleich wie","PDFE.Views.InsTab.textLetterPi":"Griechischer Kleinbuchstabe Pi","PDFE.Views.InsTab.textMoreSymbols":"Mehr Symbole","PDFE.Views.InsTab.textNotEqualTo":"Nicht gleich","PDFE.Views.InsTab.textOneHalf":"Vulgäre Fraktion Eine Hälfte","PDFE.Views.InsTab.textOneQuarter":"Vulgäre Fraktion Ganz","PDFE.Views.InsTab.textPlusMinus":"Plus-Minus-Zeichen","PDFE.Views.InsTab.textRecentlyUsed":"Zuletzt verwendet","PDFE.Views.InsTab.textRegistered":"Registrierte Handelsmarke","PDFE.Views.InsTab.textSection":"Paragraphenzeichen","PDFE.Views.InsTab.textSmile":"Weißes Lachendes Gesicht","PDFE.Views.InsTab.textSquareRoot":"Quadratwurzel","PDFE.Views.InsTab.textTilde":"Tilde","PDFE.Views.InsTab.textTradeMark":"Markenzeichen","PDFE.Views.InsTab.textYen":"Yen-Zeichen","PDFE.Views.InsTab.tipChangeChart":"Diagrammtyp ändern","PDFE.Views.InsTab.tipDateTime":"Das aktuelle Datum und die aktuelle Uhrzeit einfügen ","PDFE.Views.InsTab.tipEditHeaderFooter":"Kopf- oder Fußzeile bearbeiten","PDFE.Views.InsTab.tipInsertChart":"Diagramm einfügen","PDFE.Views.InsTab.tipInsertEquation":"Formel einfügen","PDFE.Views.InsTab.tipInsertHorizontalText":"Horizontales Textfeld einfügen","PDFE.Views.InsTab.tipInsertHyperlink":"Link hinzufügen","PDFE.Views.InsTab.tipInsertImage":"Bild einfügen","PDFE.Views.InsTab.tipInsertPage":"Leere Seite einfügen","PDFE.Views.InsTab.tipInsertPageAfter":"Leere Seite einfügen nach","PDFE.Views.InsTab.tipInsertShape":"Form einfügen","PDFE.Views.InsTab.tipInsertSmartArt":"SmartArt einfügen","PDFE.Views.InsTab.tipInsertSymbol":"Symbol einfügen","PDFE.Views.InsTab.tipInsertTable":"Tabelle einfügen","PDFE.Views.InsTab.tipInsertText":"Textfeld einfügen","PDFE.Views.InsTab.tipInsertTextArt":"TextArt einfügen","PDFE.Views.InsTab.tipInsertVerticalText":"Vertikales Textfeld einfügen","PDFE.Views.InsTab.tipPageNum":"Seitenzahl einfügen","PDFE.Views.InsTab.txtNewPageAfter":"Leere Seite einfügen nach","PDFE.Views.InsTab.txtNewPageBefore":"Leere Seite vorher einfügen","PDFE.Views.LeftMenu.ariaLeftMenu":"Linkes Menü","PDFE.Views.LeftMenu.tipAbout":"Über","PDFE.Views.LeftMenu.tipChat":"Plaudern","PDFE.Views.LeftMenu.tipComments":"Kommentare","PDFE.Views.LeftMenu.tipNavigation":"Navigation","PDFE.Views.LeftMenu.tipOutline":"Überschriften","PDFE.Views.LeftMenu.tipPageThumbnails":"Seitenminiaturansichten","PDFE.Views.LeftMenu.tipPlugins":"Plugins","PDFE.Views.LeftMenu.tipSearch":"Suchen","PDFE.Views.LeftMenu.tipSupport":"Rückmeldung und Unterstützung","PDFE.Views.LeftMenu.tipTitles":"Titel","PDFE.Views.LeftMenu.txtDeveloper":"ENTWICKLERMODUS","PDFE.Views.LeftMenu.txtEditor":"PDF Editor","PDFE.Views.LeftMenu.txtLimit":"Zugriffseinschränkung","PDFE.Views.LeftMenu.txtTrial":"Versuch-Modus","PDFE.Views.LeftMenu.txtTrialDev":"Testversion für Entwickler-Modus","PDFE.Views.Navigation.strNavigate":"Überschriften","PDFE.Views.Navigation.txtClosePanel":"Überschriften schließen","PDFE.Views.Navigation.txtCollapse":"Alle einklappen","PDFE.Views.Navigation.txtEmptyItem":"Leere Überschrift","PDFE.Views.Navigation.txtEmptyViewer":"Dieses Dokument enthält keine Überschriften.","PDFE.Views.Navigation.txtExpand":"Alle ausklappen","PDFE.Views.Navigation.txtExpandToLevel":"Auf Ebene erweitern","PDFE.Views.Navigation.txtFontSize":"Schriftgröße","PDFE.Views.Navigation.txtLarge":"Groß","PDFE.Views.Navigation.txtMedium":"Medium","PDFE.Views.Navigation.txtSettings":"Einstellungen von Überschriften","PDFE.Views.Navigation.txtSmall":"Klein","PDFE.Views.Navigation.txtWrapHeadings":"Lange Überschriften umbrechen","PDFE.Views.PageThumbnails.textClosePanel":"Miniaturansichten schließen","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"Markiere den sichtbaren Teil der Seite","PDFE.Views.PageThumbnails.textPageThumbnails":"Seitenminiaturansichten","PDFE.Views.PageThumbnails.textThumbnailsSettings":"Einstellungen von Miniaturansichten","PDFE.Views.PageThumbnails.textThumbnailsSize":"Größe von Miniaturansichten","PDFE.Views.ParagraphSettings.strLineHeight":"Zeilenabstand","PDFE.Views.ParagraphSettings.strParagraphSpacing":"Absatzabstand","PDFE.Views.ParagraphSettings.strSpacingAfter":"Nach","PDFE.Views.ParagraphSettings.strSpacingBefore":"Vor ","PDFE.Views.ParagraphSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.ParagraphSettings.textAt":"Auf","PDFE.Views.ParagraphSettings.textAtLeast":"Mindestens","PDFE.Views.ParagraphSettings.textAuto":"Mehrfach","PDFE.Views.ParagraphSettings.textExact":"Genau","PDFE.Views.ParagraphSettings.txtAutoText":"Auto","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"Die festgelegten Registerkarten werden in diesem Feld erscheinen","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"Alle Großbuchstaben","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"Richtung","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Doppelt durchgestrichen","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"Einzüge ","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Links","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Zeilenabstand","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Rechts","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Nach","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Vor ","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Speziell","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Schriftart","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Einzüge und Abstände","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Kapitälchen","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"Abstand","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"Durchgestrichen","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"Tiefgestellt","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"Hochgestellt","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"Tabulatoren","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"Ausrichtung","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"Mehrfach","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Zeichenabstand","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"Standardregisterkarte","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"Von links nach rechts","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"Von rechts nach links","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"Effekte","PDFE.Views.ParagraphSettingsAdvanced.textExact":"Genau","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"Erste Zeile","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"Hängend","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"Blocksatz","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(kein)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"Löschen","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Alle löschen","PDFE.Views.ParagraphSettingsAdvanced.textSet":"Angeben","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"Zentriert","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"Links","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"Tabulatorposition","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"Rechts","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"Absatz - Erweiterte Einstellungen","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"Auto","PDFE.Views.PrintWithPreview.textMarginsLast":"Letzte Benutzerdefinierung","PDFE.Views.PrintWithPreview.textMarginsModerate":"Mittelmäßig","PDFE.Views.PrintWithPreview.textMarginsNarrow":"Schmal","PDFE.Views.PrintWithPreview.textMarginsNormal":"Normal","PDFE.Views.PrintWithPreview.textMarginsWide":"Breit","PDFE.Views.PrintWithPreview.txtAllPages":"Alle Seiten","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Schwarzweißdruck","PDFE.Views.PrintWithPreview.txtBothSides":"Beidseitiger Druck","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"Seiten an der langen Seite umblättern","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"Seiten an der kurzen Seite umblättern","PDFE.Views.PrintWithPreview.txtBottom":"Unten","PDFE.Views.PrintWithPreview.txtColorPrinting":"Farbdruck","PDFE.Views.PrintWithPreview.txtContent":"Inhalt","PDFE.Views.PrintWithPreview.txtCopies":"Kopien","PDFE.Views.PrintWithPreview.txtCurrentPage":"Aktuelle Seite","PDFE.Views.PrintWithPreview.txtCustom":"Benutzerdefiniert","PDFE.Views.PrintWithPreview.txtCustomPages":"Benutzerdefinierter Druck","PDFE.Views.PrintWithPreview.txtDocument":"Dokument","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"Dokument und Markierungen","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"Dokument und Stempel","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"Nur Formularfelder","PDFE.Views.PrintWithPreview.txtLandscape":"Querformat","PDFE.Views.PrintWithPreview.txtLeft":"Links","PDFE.Views.PrintWithPreview.txtMargins":"Ränder","PDFE.Views.PrintWithPreview.txtOf":"von {0}","PDFE.Views.PrintWithPreview.txtOneSide":"Einseitiger Druck","PDFE.Views.PrintWithPreview.txtOneSideDesc":"Nur auf einer Seite drucken","PDFE.Views.PrintWithPreview.txtPage":"Seite","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"Ungültige Seitennummer","PDFE.Views.PrintWithPreview.txtPageOrientation":"Seitenorientierung","PDFE.Views.PrintWithPreview.txtPages":"Seiten","PDFE.Views.PrintWithPreview.txtPageSize":"Seitengröße","PDFE.Views.PrintWithPreview.txtPortrait":"Hochformat","PDFE.Views.PrintWithPreview.txtPrint":"Drucken","PDFE.Views.PrintWithPreview.txtPrinter":"Drucker","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"Drucker nicht ausgewählt","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"Drucker nicht gefunden","PDFE.Views.PrintWithPreview.txtPrintPdf":"Als PDF-Datei drucken","PDFE.Views.PrintWithPreview.txtPrintRange":"Druckbereich","PDFE.Views.PrintWithPreview.txtPrintSides":"Druckseiten","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Drucken über den Systemdialog","PDFE.Views.PrintWithPreview.txtRight":"Rechts","PDFE.Views.PrintWithPreview.txtSelection":"Auswahl","PDFE.Views.PrintWithPreview.txtTop":"Oben","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"Warten auf Drucker","PDFE.Views.RedactTab.capApplyRedactions":"Schwärzungen anwenden","PDFE.Views.RedactTab.capFindRedact":"Suchen und Schwärzen","PDFE.Views.RedactTab.capMarkRedact":"Zum Schwärzen markieren","PDFE.Views.RedactTab.capRedactPages":"Seiten schwärzen","PDFE.Views.RedactTab.tipApplyRedactions":"Schwärzungen anwenden","PDFE.Views.RedactTab.tipFindRedact":"Suchen und Schwärzen","PDFE.Views.RedactTab.tipMarkForRedact":"Zum Schwärzen markieren","PDFE.Views.RedactTab.tipRedactPages":"Seiten schwärzen","PDFE.Views.RedactTab.txtMarkCurrentPage":"Aktuelle Seite markieren","PDFE.Views.RedactTab.txtSelectRange":"Bereich auswählen","PDFE.Views.RightMenu.ariaRightMenu":"Rechtes Menü","PDFE.Views.RightMenu.txtChartSettings":"Diagrammeinstellungen","PDFE.Views.RightMenu.txtFormSettings":"Einstellungen des Formulars","PDFE.Views.RightMenu.txtImageSettings":"Bild-Einstellungen","PDFE.Views.RightMenu.txtParagraphSettings":"Absatzeinstellungen","PDFE.Views.RightMenu.txtShapeSettings":"Formeinstellungen","PDFE.Views.RightMenu.txtTableSettings":"Tabellen-Einstellungen","PDFE.Views.RightMenu.txtTextArtSettings":"TextArt-Einstellungen","PDFE.Views.ShapeSettings.strBackground":"Hintergrundfarbe","PDFE.Views.ShapeSettings.strChange":"Form ändern","PDFE.Views.ShapeSettings.strColor":"Farbe","PDFE.Views.ShapeSettings.strFill":"Füllung","PDFE.Views.ShapeSettings.strForeground":"Vordergrundfarbe","PDFE.Views.ShapeSettings.strPattern":"Muster","PDFE.Views.ShapeSettings.strShadow":"Schatten anzeigen","PDFE.Views.ShapeSettings.strSize":"Größe","PDFE.Views.ShapeSettings.strStroke":"Linie","PDFE.Views.ShapeSettings.strTransparency":"Undurchsichtigkeit","PDFE.Views.ShapeSettings.strType":"Typ","PDFE.Views.ShapeSettings.textAdjustShadow":"Schatten anpassen","PDFE.Views.ShapeSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.ShapeSettings.textAngle":"Winkel","PDFE.Views.ShapeSettings.textBorderSizeErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.","PDFE.Views.ShapeSettings.textColor":"Farbfüllung","PDFE.Views.ShapeSettings.textDirection":"Richtung","PDFE.Views.ShapeSettings.textEditPoints":"Punkte bearbeiten","PDFE.Views.ShapeSettings.textEditShape":"Form bearbeiten","PDFE.Views.ShapeSettings.textEmptyPattern":"Kein Muster","PDFE.Views.ShapeSettings.textEyedropper":"Pipette","PDFE.Views.ShapeSettings.textFlip":"Umdrehen","PDFE.Views.ShapeSettings.textFromFile":"Aus Datei","PDFE.Views.ShapeSettings.textFromStorage":"Aus dem Speicher","PDFE.Views.ShapeSettings.textFromUrl":"Aus URL","PDFE.Views.ShapeSettings.textGradient":"Farbverlauf","PDFE.Views.ShapeSettings.textGradientFill":"Füllung mit Farbverlauf","PDFE.Views.ShapeSettings.textHint270":"Linksdrehung 90 Grad","PDFE.Views.ShapeSettings.textHint90":"90° im UZS drehen","PDFE.Views.ShapeSettings.textHintFlipH":"Horizontal kippen","PDFE.Views.ShapeSettings.textHintFlipV":"Vertikal kippen","PDFE.Views.ShapeSettings.textImageTexture":"Bild oder Textur","PDFE.Views.ShapeSettings.textLinear":"Linear","PDFE.Views.ShapeSettings.textMoreColors":"Mehr Farben","PDFE.Views.ShapeSettings.textNoFill":"Ohne Füllung","PDFE.Views.ShapeSettings.textNoShadow":"Kein Schatten","PDFE.Views.ShapeSettings.textPatternFill":"Muster","PDFE.Views.ShapeSettings.textPosition":"Position","PDFE.Views.ShapeSettings.textRadial":"Radial","PDFE.Views.ShapeSettings.textRecentlyUsed":"Zuletzt verwendet","PDFE.Views.ShapeSettings.textRotate90":"90 Grad drehen","PDFE.Views.ShapeSettings.textRotation":"Rotation","PDFE.Views.ShapeSettings.textSelectImage":"Bild auswählen","PDFE.Views.ShapeSettings.textSelectTexture":"Auswählen","PDFE.Views.ShapeSettings.textShadow":"Schatten","PDFE.Views.ShapeSettings.textStretch":"Ausdehnung","PDFE.Views.ShapeSettings.textStyle":"Stil","PDFE.Views.ShapeSettings.textTexture":"Aus Textur","PDFE.Views.ShapeSettings.textTile":"Kachel","PDFE.Views.ShapeSettings.tipAddGradientPoint":"Punkt des Farbverlaufs einfügen","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"Punkt des Farbverlaufs entfernen","PDFE.Views.ShapeSettings.txtBrownPaper":"Kraftpapier","PDFE.Views.ShapeSettings.txtCanvas":"Canvas","PDFE.Views.ShapeSettings.txtCarton":"Pappe","PDFE.Views.ShapeSettings.txtDarkFabric":"Dunkler Stoff","PDFE.Views.ShapeSettings.txtGrain":"Korn","PDFE.Views.ShapeSettings.txtGranite":"Granit","PDFE.Views.ShapeSettings.txtGreyPaper":"Graues Papier","PDFE.Views.ShapeSettings.txtKnit":"Gestrickt","PDFE.Views.ShapeSettings.txtLeather":"Leder","PDFE.Views.ShapeSettings.txtNoBorders":"Keine Linie","PDFE.Views.ShapeSettings.txtOffsetBottom":"Versatz: Unten","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"Versatz: Unten links","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"Versatz: Unten rechts","PDFE.Views.ShapeSettings.txtOffsetCenter":"Versatz: Mitte","PDFE.Views.ShapeSettings.txtOffsetLeft":"Versatz: Links","PDFE.Views.ShapeSettings.txtOffsetRight":"Versatz: Rechts","PDFE.Views.ShapeSettings.txtOffsetTop":"Versatz: Oben","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"Versatz: Oben links","PDFE.Views.ShapeSettings.txtOffsetTopRight":"Versatz: Oben rechts","PDFE.Views.ShapeSettings.txtPapyrus":"Papyrus","PDFE.Views.ShapeSettings.txtWood":"Holz","PDFE.Views.ShapeSettingsAdvanced.strColumns":"Spalten","PDFE.Views.ShapeSettingsAdvanced.strMargins":"Ränder um den Text","PDFE.Views.ShapeSettingsAdvanced.textAlt":"Alternativer Text","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"Beschreibung","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"Titel","PDFE.Views.ShapeSettingsAdvanced.textAngle":"Winkel","PDFE.Views.ShapeSettingsAdvanced.textArrows":"Pfeile","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"AutoFit","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"Startgröße","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"Startlinienart","PDFE.Views.ShapeSettingsAdvanced.textBevel":"Schräge Kante","PDFE.Views.ShapeSettingsAdvanced.textBottom":"Unten","PDFE.Views.ShapeSettingsAdvanced.textCapType":"Abschlusstyp","PDFE.Views.ShapeSettingsAdvanced.textCenter":"Zentriert","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"Anzahl von Spalten","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"Endgröße","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"Endlinienart","PDFE.Views.ShapeSettingsAdvanced.textFlat":"Flach","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"Gekippt","PDFE.Views.ShapeSettingsAdvanced.textFrom":"Ab","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"Allgemein","PDFE.Views.ShapeSettingsAdvanced.textHeight":"Höhe","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"Horizontal","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"Verknüpfungstyp","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"Seitenverhältnis beibehalten","PDFE.Views.ShapeSettingsAdvanced.textLeft":"Links","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"Linienart","PDFE.Views.ShapeSettingsAdvanced.textMiter":"Winkel","PDFE.Views.ShapeSettingsAdvanced.textNofit":"Ohne automatische Anpassung","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"Positionierung","PDFE.Views.ShapeSettingsAdvanced.textPosition":"Position","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"Die Form am Text anpassen","PDFE.Views.ShapeSettingsAdvanced.textRight":"Rechts","PDFE.Views.ShapeSettingsAdvanced.textRotation":"Rotation","PDFE.Views.ShapeSettingsAdvanced.textRound":"Rund","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"Name der Form","PDFE.Views.ShapeSettingsAdvanced.textShrink":"Text bei Überlauf verkleinern","PDFE.Views.ShapeSettingsAdvanced.textSize":"Größe","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"Abstand zwischen Spalten","PDFE.Views.ShapeSettingsAdvanced.textSquare":"Quadrat","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"Textfeld","PDFE.Views.ShapeSettingsAdvanced.textTitle":"Form - Erweiterte Einstellungen","PDFE.Views.ShapeSettingsAdvanced.textTop":"Oben","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"Obere linke Ecke","PDFE.Views.ShapeSettingsAdvanced.textVertical":"Vertikal","PDFE.Views.ShapeSettingsAdvanced.textVertically":"Vertikal","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"Stärken & Pfeile","PDFE.Views.ShapeSettingsAdvanced.textWidth":"Breite","PDFE.Views.ShapeSettingsAdvanced.txtNone":"Nein","PDFE.Views.Statusbar.goToPageText":"Zur Seite gehen","PDFE.Views.Statusbar.pageIndexText":"Seite {0} von {1}","PDFE.Views.Statusbar.tipFitPage":"Seite anpassen","PDFE.Views.Statusbar.tipFitWidth":"Breite anpassen","PDFE.Views.Statusbar.tipHandTool":"Hand-Werkzeug","PDFE.Views.Statusbar.tipPageNext":"Zur nächsten Seite gehen","PDFE.Views.Statusbar.tipPagePrev":"Zur vorherigen Seite gehen.","PDFE.Views.Statusbar.tipSelectTool":"Auswählungfunktion","PDFE.Views.Statusbar.tipZoomFactor":"Zoom","PDFE.Views.Statusbar.tipZoomIn":"Vergrößern","PDFE.Views.Statusbar.tipZoomOut":"Verkleinern","PDFE.Views.Statusbar.txtPageNumInvalid":"Ungültige Seitennummer","PDFE.Views.TableSettings.deleteColumnText":"Spalte löschen","PDFE.Views.TableSettings.deleteRowText":"Zeile löschen","PDFE.Views.TableSettings.deleteTableText":"Tabelle löschen","PDFE.Views.TableSettings.insertColumnLeftText":"Spalte links einfügen","PDFE.Views.TableSettings.insertColumnRightText":"Spalte rechts einfügen","PDFE.Views.TableSettings.insertRowAboveText":"Zeile oberhalb einfügen","PDFE.Views.TableSettings.insertRowBelowText":"Zeile unterhalb einfügen","PDFE.Views.TableSettings.mergeCellsText":"Zellen verbinden","PDFE.Views.TableSettings.selectCellText":"Zelle auswählen","PDFE.Views.TableSettings.selectColumnText":"Spalte auswählen","PDFE.Views.TableSettings.selectRowText":"Zeile auswählen","PDFE.Views.TableSettings.selectTableText":"Tabelle auswählen","PDFE.Views.TableSettings.splitCellsText":"Zelle teilen...","PDFE.Views.TableSettings.splitCellTitleText":"Zelle teilen","PDFE.Views.TableSettings.textAdvanced":"Erweiterte Einstellungen anzeigen","PDFE.Views.TableSettings.textBackColor":"Hintergrundfarbe","PDFE.Views.TableSettings.textBanded":"Gestreift","PDFE.Views.TableSettings.textBorderColor":"Farbe","PDFE.Views.TableSettings.textBorders":"Stil des Rahmens","PDFE.Views.TableSettings.textCellSize":"Zellengröße","PDFE.Views.TableSettings.textColumns":"Spalten","PDFE.Views.TableSettings.textDistributeCols":"Spalten verteilen","PDFE.Views.TableSettings.textDistributeRows":"Zeilen verteilen","PDFE.Views.TableSettings.textEdit":"Zeilen & Spalten","PDFE.Views.TableSettings.textEmptyTemplate":"Keine Vorlagen","PDFE.Views.TableSettings.textFirst":"Erste","PDFE.Views.TableSettings.textHeader":"Kopfzeile","PDFE.Views.TableSettings.textHeight":"Höhe","PDFE.Views.TableSettings.textLast":"Zuletzt","PDFE.Views.TableSettings.textRows":"Zeilen","PDFE.Views.TableSettings.textSelectBorders":"Wählen Sie die Ränder aus, die Sie ändern möchten, indem Sie den oben gewählten Stil anwenden.","PDFE.Views.TableSettings.textTemplate":"Vorlage auswählen","PDFE.Views.TableSettings.textTotal":"Insgesamt","PDFE.Views.TableSettings.textWidth":"Breite","PDFE.Views.TableSettings.tipAll":"Äußere Rahmenlinie und alle inneren Linien festlegen","PDFE.Views.TableSettings.tipBottom":"Nur äußere untere Rahmenlinie festlegen","PDFE.Views.TableSettings.tipInner":"Nur innere Linien festlegen","PDFE.Views.TableSettings.tipInnerHor":"Nur innere horizontale Linien festlegen","PDFE.Views.TableSettings.tipInnerVert":"Nur vertikale innere Linien festlegen","PDFE.Views.TableSettings.tipLeft":"Nur äußere linke Rahmenlinie festlegen","PDFE.Views.TableSettings.tipNone":"Keine Rahmenlinien festlegen","PDFE.Views.TableSettings.tipOuter":"Nur äußere Rahmenlinie festlegen","PDFE.Views.TableSettings.tipRight":"Nur äußere rechte Rahmenlinie festlegen","PDFE.Views.TableSettings.tipTop":"Nur äußere obere Rahmenlinie festlegen","PDFE.Views.TableSettings.txtGroupTable_Custom":"Benutzerdefiniert","PDFE.Views.TableSettings.txtGroupTable_Dark":"Dunkel","PDFE.Views.TableSettings.txtGroupTable_Light":"Hell","PDFE.Views.TableSettings.txtGroupTable_Medium":"Mittelgroß","PDFE.Views.TableSettings.txtGroupTable_Optimal":"Optimal für das Dokument","PDFE.Views.TableSettings.txtNoBorders":"Keine Rahmen","PDFE.Views.TableSettings.txtTable_Accent":"Akzent","PDFE.Views.TableSettings.txtTable_DarkStyle":"Dunkle Formatvorlage","PDFE.Views.TableSettings.txtTable_LightStyle":"Helle Formatvorlage","PDFE.Views.TableSettings.txtTable_MediumStyle":"Mittlere Formatvorlage","PDFE.Views.TableSettings.txtTable_NoGrid":"Kein Raster","PDFE.Views.TableSettings.txtTable_NoStyle":"Keine Formatvorlage","PDFE.Views.TableSettings.txtTable_TableGrid":"Tabellenraster","PDFE.Views.TableSettings.txtTable_ThemedStyle":"Designformatvorlage","PDFE.Views.TableSettingsAdvanced.textAlt":"Alternativer Text","PDFE.Views.TableSettingsAdvanced.textAltDescription":"Beschreibung","PDFE.Views.TableSettingsAdvanced.textAltTip":"Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.","PDFE.Views.TableSettingsAdvanced.textAltTitle":"Titel","PDFE.Views.TableSettingsAdvanced.textBottom":"Unten","PDFE.Views.TableSettingsAdvanced.textCenter":"Zentriert","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"Standardränder nutzen","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"Standardränder","PDFE.Views.TableSettingsAdvanced.textFrom":"Ab","PDFE.Views.TableSettingsAdvanced.textGeneral":"Allgemein","PDFE.Views.TableSettingsAdvanced.textHeight":"Höhe","PDFE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"Seitenverhältnis beibehalten","PDFE.Views.TableSettingsAdvanced.textLeft":"Links","PDFE.Views.TableSettingsAdvanced.textMargins":"Zellenränder","PDFE.Views.TableSettingsAdvanced.textPlacement":"Positionierung","PDFE.Views.TableSettingsAdvanced.textPosition":"Position","PDFE.Views.TableSettingsAdvanced.textRight":"Rechts","PDFE.Views.TableSettingsAdvanced.textSize":"Größe","PDFE.Views.TableSettingsAdvanced.textTableName":"Tabellenname","PDFE.Views.TableSettingsAdvanced.textTitle":"Tabelle - Erweiterte Einstellungen","PDFE.Views.TableSettingsAdvanced.textTop":"Oben","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"Obere linke Ecke","PDFE.Views.TableSettingsAdvanced.textVertical":"Vertikal","PDFE.Views.TableSettingsAdvanced.textWidth":"Breite","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"Seitenränder","PDFE.Views.TextArtSettings.strBackground":"Hintergrundfarbe","PDFE.Views.TextArtSettings.strColor":"Farbe","PDFE.Views.TextArtSettings.strFill":"Füllung","PDFE.Views.TextArtSettings.strForeground":"Vordergrundfarbe","PDFE.Views.TextArtSettings.strPattern":"Muster","PDFE.Views.TextArtSettings.strSize":"Größe","PDFE.Views.TextArtSettings.strStroke":"Linie","PDFE.Views.TextArtSettings.strTransparency":"Undurchsichtigkeit","PDFE.Views.TextArtSettings.strType":"Typ","PDFE.Views.TextArtSettings.textAngle":"Winkel","PDFE.Views.TextArtSettings.textBorderSizeErr":"Der eingegebene Wert ist falsch.
Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.","PDFE.Views.TextArtSettings.textColor":"Farbfüllung","PDFE.Views.TextArtSettings.textDirection":"Richtung","PDFE.Views.TextArtSettings.textEmptyPattern":"Kein Muster","PDFE.Views.TextArtSettings.textFromFile":"Aus Datei","PDFE.Views.TextArtSettings.textFromUrl":"Aus URL","PDFE.Views.TextArtSettings.textGradient":"Farbverlauf","PDFE.Views.TextArtSettings.textGradientFill":"Füllung mit Farbverlauf","PDFE.Views.TextArtSettings.textImageTexture":"Bild oder Textur","PDFE.Views.TextArtSettings.textLinear":"Linear","PDFE.Views.TextArtSettings.textNoFill":"Ohne Füllung","PDFE.Views.TextArtSettings.textPatternFill":"Muster","PDFE.Views.TextArtSettings.textPosition":"Position","PDFE.Views.TextArtSettings.textRadial":"Radial","PDFE.Views.TextArtSettings.textSelectTexture":"Auswählen","PDFE.Views.TextArtSettings.textStretch":"Ausdehnung","PDFE.Views.TextArtSettings.textStyle":"Stil","PDFE.Views.TextArtSettings.textTemplate":"Vorlage","PDFE.Views.TextArtSettings.textTexture":"Aus Textur","PDFE.Views.TextArtSettings.textTile":"Kachel","PDFE.Views.TextArtSettings.textTransform":"Transformierung","PDFE.Views.TextArtSettings.tipAddGradientPoint":"Punkt des Farbverlaufs einfügen","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"Punkt des Farbverlaufs entfernen","PDFE.Views.TextArtSettings.txtBrownPaper":"Kraftpapier","PDFE.Views.TextArtSettings.txtCanvas":"Canvas","PDFE.Views.TextArtSettings.txtCarton":"Pappe","PDFE.Views.TextArtSettings.txtDarkFabric":"Dunkler Stoff","PDFE.Views.TextArtSettings.txtGrain":"Korn","PDFE.Views.TextArtSettings.txtGranite":"Granit","PDFE.Views.TextArtSettings.txtGreyPaper":"Graues Papier","PDFE.Views.TextArtSettings.txtKnit":"Gestrickt","PDFE.Views.TextArtSettings.txtLeather":"Leder","PDFE.Views.TextArtSettings.txtNoBorders":"Keine Linie","PDFE.Views.TextArtSettings.txtPapyrus":"Papyrus","PDFE.Views.TextArtSettings.txtWood":"Holz","PDFE.Views.Toolbar.capBtnAddComment":"Kommentar hinzufügen","PDFE.Views.Toolbar.capBtnArrowComment":"Pfeil","PDFE.Views.Toolbar.capBtnCircleComment":"Kreis","PDFE.Views.Toolbar.capBtnComment":"Kommentar","PDFE.Views.Toolbar.capBtnDelPage":"Seite löschen","PDFE.Views.Toolbar.capBtnDownloadForm":"Als PDF herunterladen","PDFE.Views.Toolbar.capBtnEditText":"Text bearbeiten","PDFE.Views.Toolbar.capBtnHand":"Hand","PDFE.Views.Toolbar.capBtnNext":"Nächstes Feld","PDFE.Views.Toolbar.capBtnPolyLineComment":"Verbundene Linien","PDFE.Views.Toolbar.capBtnPrev":"Vorheriges Feld","PDFE.Views.Toolbar.capBtnRecognize":"Text bearbeiten","PDFE.Views.Toolbar.capBtnRectComment":"Rechteck","PDFE.Views.Toolbar.capBtnRotate":"Drehen","PDFE.Views.Toolbar.capBtnRotatePage":"Seite drehen","PDFE.Views.Toolbar.capBtnSaveForm":"Als PDF speichern","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"Speichern als...","PDFE.Views.Toolbar.capBtnSelect":"Auswählen","PDFE.Views.Toolbar.capBtnShowComments":"Kommentare anzeigen","PDFE.Views.Toolbar.capBtnStamp":"Stempel","PDFE.Views.Toolbar.capBtnSubmit":"Senden","PDFE.Views.Toolbar.capBtnTextCallout":"Textaufruf","PDFE.Views.Toolbar.capBtnTextComment":"Textkommentar","PDFE.Views.Toolbar.mniCapitalizeWords":"Ersten Buchstaben im jedem Wort großschreiben","PDFE.Views.Toolbar.mniInsertSSE":"Tabelle einfügen","PDFE.Views.Toolbar.mniLowerCase":"Kleinbuchstaben","PDFE.Views.Toolbar.mniSentenceCase":"Ersten Buchstaben im Satz großschreiben.","PDFE.Views.Toolbar.mniToggleCase":"gROSS-/kLEINSCHREIBUNG","PDFE.Views.Toolbar.mniUpperCase":"GROSSBUCHSTABEN","PDFE.Views.Toolbar.strMenuNoFill":"Keine Füllung","PDFE.Views.Toolbar.textAlignBottom":"Text am unteren Rand ausrichten","PDFE.Views.Toolbar.textAlignCenter":"Text zentrieren","PDFE.Views.Toolbar.textAlignJust":"Im Blocksatz ausrichten","PDFE.Views.Toolbar.textAlignLeft":"Text linksbündig ausrichten","PDFE.Views.Toolbar.textAlignMiddle":"Text mittig ausrichten","PDFE.Views.Toolbar.textAlignRight":"Text rechtsbündig ausrichten","PDFE.Views.Toolbar.textAlignTop":"Text am oberen Rand ausrichten","PDFE.Views.Toolbar.textArrangeBack":"Zum Hintergrund senden","PDFE.Views.Toolbar.textArrangeBackward":"Nach hinten senden","PDFE.Views.Toolbar.textArrangeForward":"Vorwärts bringen","PDFE.Views.Toolbar.textArrangeFront":"In den Vordergrund bringen","PDFE.Views.Toolbar.textBold":"Fett","PDFE.Views.Toolbar.textClear":"Felder löschen","PDFE.Views.Toolbar.textClearFields":"Alle Felder leeren","PDFE.Views.Toolbar.textColumnsCustom":"Benutzerdefinierte Spalten","PDFE.Views.Toolbar.textColumnsOne":"Eine Spalte","PDFE.Views.Toolbar.textColumnsThree":"Drei Spalten","PDFE.Views.Toolbar.textColumnsTwo":"Zwei Spalten","PDFE.Views.Toolbar.textDirLtr":"Von links nach rechts","PDFE.Views.Toolbar.textDirRtl":"Von rechts nach links","PDFE.Views.Toolbar.textEditMode":"PDF bearbeiten","PDFE.Views.Toolbar.textHighlight":"Markieren","PDFE.Views.Toolbar.textItalic":"Kursiv","PDFE.Views.Toolbar.textListSettings":"Listeneinstellungen","PDFE.Views.Toolbar.textShapeAlignBottom":"Unten ausrichten","PDFE.Views.Toolbar.textShapeAlignCenter":"Zentriert ausrichten","PDFE.Views.Toolbar.textShapeAlignLeft":"Linksbündig ausrichten","PDFE.Views.Toolbar.textShapeAlignMiddle":"Mittig ausrichten","PDFE.Views.Toolbar.textShapeAlignRight":"Rechtsbündig ausrichten","PDFE.Views.Toolbar.textShapeAlignTop":"Oben ausrichten","PDFE.Views.Toolbar.textShapesCombine":"Kombinieren","PDFE.Views.Toolbar.textShapesFragment":"Fragment","PDFE.Views.Toolbar.textShapesIntersect":"Schneiden","PDFE.Views.Toolbar.textShapesSubstract":"Subtrahieren","PDFE.Views.Toolbar.textShapesUnion":"Vereinigung","PDFE.Views.Toolbar.textStrikeout":"Durchgestrichen","PDFE.Views.Toolbar.textSubmited":"Das Formular wurde erfolgreich versandt","PDFE.Views.Toolbar.textSubscript":"Tiefgestellt","PDFE.Views.Toolbar.textSuperscript":"Hochgestellt","PDFE.Views.Toolbar.textTabCollaboration":"Zusammenarbeit","PDFE.Views.Toolbar.textTabComment":"Kommentar","PDFE.Views.Toolbar.textTabEdit":"Bearbeiten","PDFE.Views.Toolbar.textTabFile":"Datei","PDFE.Views.Toolbar.textTabHome":"Startseite","PDFE.Views.Toolbar.textTabInsert":"Einfügen","PDFE.Views.Toolbar.textTabRedact":"Schwärzen","PDFE.Views.Toolbar.textTabView":"Anzeigen","PDFE.Views.Toolbar.textUnderline":"Unterstrichen","PDFE.Views.Toolbar.tipAddComment":"Kommentar hinzufügen","PDFE.Views.Toolbar.tipChangeCase":"Groß-/Kleinschreibung ändern","PDFE.Views.Toolbar.tipClearStyle":"Formatierung löschen","PDFE.Views.Toolbar.tipColumns":"Spalten einfügen","PDFE.Views.Toolbar.tipCopy":"Kopieren","PDFE.Views.Toolbar.tipCut":"Ausschneiden","PDFE.Views.Toolbar.tipDecFont":"Schriftart verkleinern","PDFE.Views.Toolbar.tipDecPrLeft":"Einzug verkleinern","PDFE.Views.Toolbar.tipDelPage":"Seite löschen","PDFE.Views.Toolbar.tipDownload":"Datei herunterladen","PDFE.Views.Toolbar.tipDownloadForm":"Die Datei als ausfüllbares PDF-Dokument herunterladen","PDFE.Views.Toolbar.tipEditMode":"Fügen Sie Text, Formen, Bilder usw. hinzu oder bearbeiten Sie sie.","PDFE.Views.Toolbar.tipEditText":"Text bearbeiten","PDFE.Views.Toolbar.tipFirstPage":"Zur ersten Seite gehen","PDFE.Views.Toolbar.tipFontColor":"Schriftfarbe","PDFE.Views.Toolbar.tipFontName":"Schriftart","PDFE.Views.Toolbar.tipFontSize":"Schriftgröße","PDFE.Views.Toolbar.tipHAligh":"Horizontale Ausrichtung","PDFE.Views.Toolbar.tipHandTool":"Hand-Werkzeug","PDFE.Views.Toolbar.tipHighlightColor":"Hervorhebungsfarbe","PDFE.Views.Toolbar.tipIncFont":"Schriftart vergrößern","PDFE.Views.Toolbar.tipIncPrLeft":"Einzug vergrößern","PDFE.Views.Toolbar.tipInsertArrowComment":"Einen Pfeil zeichnen","PDFE.Views.Toolbar.tipInsertCircleComment":"Einen Kreis oder ein Oval zeichnen","PDFE.Views.Toolbar.tipInsertPolyLineComment":"Linien zeichnen, die miteinander verbunden sind","PDFE.Views.Toolbar.tipInsertRectComment":"Ein Rechteck oder Quadrat zeichnen","PDFE.Views.Toolbar.tipInsertStamp":"Stempel einfügen","PDFE.Views.Toolbar.tipInsertTextCallout":"Textaufruf einfügen","PDFE.Views.Toolbar.tipInsertTextComment":"Textkommentar einfügen","PDFE.Views.Toolbar.tipLastPage":"Zur letzten Seite gehen","PDFE.Views.Toolbar.tipLineSpace":"Zeilenabstand","PDFE.Views.Toolbar.tipMarkers":"Aufzählung","PDFE.Views.Toolbar.tipMarkersArrow":"Pfeilförmige Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersCheckmark":"Häkchenaufzählungszeichen","PDFE.Views.Toolbar.tipMarkersDash":"Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersFRhombus":"Ausgefüllte karoförmige Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersFRound":"Ausgefüllte runde Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersFSquare":"Ausgefüllte quadratische Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersHRound":"Leere runde Aufzählungszeichen","PDFE.Views.Toolbar.tipMarkersStar":"Sternförmige Aufzählungszeichen","PDFE.Views.Toolbar.tipNextForm":"Zum nächsten Feld wechseln","PDFE.Views.Toolbar.tipNextPage":"Zur nächsten Seite gehen","PDFE.Views.Toolbar.tipNone":"Nein","PDFE.Views.Toolbar.tipNumbers":"Nummerierung","PDFE.Views.Toolbar.tipPaste":"Einfügen","PDFE.Views.Toolbar.tipPrevForm":"Zum vorherigen Feld wechseln","PDFE.Views.Toolbar.tipPrevPage":"Zur vorherigen Seite gehen","PDFE.Views.Toolbar.tipPrint":"Drucken","PDFE.Views.Toolbar.tipPrintQuick":"Schnelldruck","PDFE.Views.Toolbar.tipRecognize":"Text bearbeiten","PDFE.Views.Toolbar.tipRedo":"Wiederholen","PDFE.Views.Toolbar.tipRotate":"Seiten drehen","PDFE.Views.Toolbar.tipSave":"Speichern","PDFE.Views.Toolbar.tipSaveCoauth":"Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.","PDFE.Views.Toolbar.tipSaveForm":"Als eine ausfüllbare PDF-Datei speichern","PDFE.Views.Toolbar.tipSelectAll":"Alles auswählen","PDFE.Views.Toolbar.tipSelectTool":"Auswählungfunktion","PDFE.Views.Toolbar.tipShapeAlign":"Form ausrichten","PDFE.Views.Toolbar.tipShapeArrange":"Form anordnen","PDFE.Views.Toolbar.tipShapeMerge":"Formen zusammenführen","PDFE.Views.Toolbar.tipSubmit":"Formular senden","PDFE.Views.Toolbar.tipSynchronize":"Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.","PDFE.Views.Toolbar.tipTextDir":"Textrichtung","PDFE.Views.Toolbar.tipUndo":"Rückgängig machen","PDFE.Views.Toolbar.tipVAligh":"Vertikal ausrichten","PDFE.Views.Toolbar.txtArrowComment":"Pfeil","PDFE.Views.Toolbar.txtCircleComment":"Kreis","PDFE.Views.Toolbar.txtDistribHor":"Horizontal verteilen","PDFE.Views.Toolbar.txtDistribVert":"Vertikal verteilen","PDFE.Views.Toolbar.txtGroup":"Gruppieren","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"Ausgewählte Objekte ausrichten","PDFE.Views.Toolbar.txtOpacity":"Undurchsichtigkeit","PDFE.Views.Toolbar.txtPageAlign":"An Seite ausrichten","PDFE.Views.Toolbar.txtPolyLineComment":"Verbundene Linien","PDFE.Views.Toolbar.txtRectComment":"Rechteck","PDFE.Views.Toolbar.txtRotateLeft":"Nach links drehen","PDFE.Views.Toolbar.txtRotatePage":"Seite drehen","PDFE.Views.Toolbar.txtRotatePageRight":"Seite nach rechts drehen","PDFE.Views.Toolbar.txtRotateRight":"Nach rechts drehen","PDFE.Views.Toolbar.txtSize":"Größe","PDFE.Views.Toolbar.txtUngroup":"Gruppierung aufheben","PDFE.Views.ViewTab.capBtnRecognize":"Text bearbeiten","PDFE.Views.ViewTab.textAlwaysShowToolbar":"Symbolleiste immer anzeigen","PDFE.Views.ViewTab.textDarkDocument":"Dunkles Dokument","PDFE.Views.ViewTab.textEditMode":"PDF bearbeiten","PDFE.Views.ViewTab.textFill":"Füllung","PDFE.Views.ViewTab.textFitToPage":"Seite anpassen","PDFE.Views.ViewTab.textFitToWidth":"Breite anpassen","PDFE.Views.ViewTab.textInterfaceTheme":"Thema der Benutzeroberfläche","PDFE.Views.ViewTab.textLeftMenu":"Linkes Bedienfeld","PDFE.Views.ViewTab.textLine":"Linie","PDFE.Views.ViewTab.textNavigation":"Navigation","PDFE.Views.ViewTab.textOutline":"Überschriften","PDFE.Views.ViewTab.textRightMenu":"Rechtes Bedienungsfeld ","PDFE.Views.ViewTab.textStatusBar":"Statusleiste","PDFE.Views.ViewTab.textTabStyle":"Stil der Registerkarte","PDFE.Views.ViewTab.textZoom":"Zoom","PDFE.Views.ViewTab.tipDarkDocument":"Dunkles Dokument","PDFE.Views.ViewTab.tipEditMode":"Fügen Sie Text, Formen, Bilder usw. hinzu oder bearbeiten Sie sie.","PDFE.Views.ViewTab.tipFitToPage":"Seite anpassen","PDFE.Views.ViewTab.tipFitToWidth":"Breite anpassen","PDFE.Views.ViewTab.tipHeadings":"Überschriften","PDFE.Views.ViewTab.tipInterfaceTheme":"Thema der Benutzeroberfläche","PDFE.Views.ViewTab.tipRecognize":"Text bearbeiten","PDFE.Views.ViewTab.textMacros":"Macros","PDFE.Views.ViewTab.tipMacros":"Macros"} \ No newline at end of file diff --git a/public/web-apps/apps/pdfeditor/main/locale/es.json b/public/web-apps/apps/pdfeditor/main/locale/es.json index fd588756a..226824f0a 100644 --- a/public/web-apps/apps/pdfeditor/main/locale/es.json +++ b/public/web-apps/apps/pdfeditor/main/locale/es.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"Advertencia","Common.Controllers.Desktop.hintBtnHome":"Mostrar ventana principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Crear a partir de una plantilla","Common.Controllers.ExternalLinks.textAddExternalData":"Se ha añadido el enlace a un origen externo. Puede actualizar tales enlaces en la pestaña «Datos».","Common.Controllers.ExternalLinks.textDontUpdate":"No actualizar","Common.Controllers.ExternalLinks.textUpdate":"Actualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Se ha producido un error al actualizar","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Este libro de trabajo contiene enlaces a una o más fuentes externas que podrían ser inseguras.
Si confía en estos enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta presentación contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.History.notcriticalErrorTitle":"Advertencia","Common.Controllers.History.txtErrorLoadHistory":"Error al cargar el historial","Common.Controllers.Plugins.helpMoveMacros":"Para empezar a trabajar con macros, cambie a la pestaña Vista.","Common.Controllers.Plugins.helpMoveMacrosHeader":"El botón Macros desplazado","Common.Controllers.Plugins.helpUseMacros":"Encuentre el botón Macros aquí","Common.Controllers.Plugins.helpUseMacrosHeader":"Acceso actualizado a las macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Los plugins se han instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} se ha instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textRunInstalledPlugins":"Ejecutar plugins instalados","Common.Controllers.Plugins.textRunPlugin":"Ejecutar plugin","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Añadir una nueva fila al final de la tabla.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Aplicar el estilo del encabezado 1 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Aplicar el estilo del encabezado 2 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Aplicar el estilo del encabezado 3 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Crear una lista con viñetas sin ordenar a partir del fragmento de texto seleccionado, o comenzar una nueva.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia la izquierda.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia la derecha.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionBold":"Poner en negrita la fuente del fragmento de texto seleccionado, dándole un aspecto más marcado.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Cambiar un párrafo entre centrado y alineado a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Seleccionar la siguiente opción del cuadro combinado en el formulario.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Seleccionar la opción anterior del cuadro combinado en el formulario.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Cierrar la ventana de PDF actual.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Cerrar un menú o una ventana modal. Restablecer ventanas emergentes y globos con comentarios y revisar cambios. Restablecer el modo de dibujo y borrado de la tabla. Restablecer la función de arrastrar y soltar texto. Restablecer el modo de selección de marcadores. Restablecer el modo de copiar formato. Deseleccionar formas. Restablecer el modo de añadir formas. Salir del encabezado/pie de página. Salir del rellenado de formularios.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Enviar el fragmento de texto seleccionado al portapapeles del ordenador. El texto copiado se puede insertar posteriormente en otro lugar del mismo documento, en otro documento o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Copiar el formato del fragmento seleccionado del texto que se está editando actualmente. El formato copiado se puede aplicar posteriormente a otro fragmento de texto del mismo documento.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Insertar un símbolo de copyright a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionCut":"Eliminar el fragmento de texto seleccionado y enviarlo a la memoria del portapapeles del ordenador. El texto copiado se puede insertar posteriormente en otro lugar del mismo documento, en otro documento o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Reducir el tamaño de la fuente del fragmento de texto seleccionado en 1 punto.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Eliminar un carácter a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Eliminar una palabra/selección/objeto gráfico a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Eliminar un carácter a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Eliminar una palabra/selección/objeto gráfico a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Cuando se selecciona el título del gráfico, si el título está vacío, mover el cursor al principio de la línea; de lo contrario, seleccionar el texto.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repetir la última acción deshecha.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Seleccionar todo el texto del archivo PDF.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Cuando se seleccione la forma, si no contiene contenido, crear contenido y mover el cursor al principio de la línea. Si el contenido está vacío, mover el cursor hacia él; de lo contrario, seleccionar todo el contenido.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Revertir la última acción realizada.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Insertar un guión largo a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insertar un guión corto a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Terminar el párrafo actual y comenzar uno nuevo.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Iniciar un nuevo párrafo dentro de una celda.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Añadir un nuevo marcador de posición al argumento de la ecuación.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Cambiar el nivel de alineación del operador a la izquierda (para la segunda línea de la ecuación con un salto forzado).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Cambiar el nivel de alineación del operador a la derecha (para la segunda línea de la ecuación con un salto forzado).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Insertar el símbolo del euro en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Insertar el signo de elipsis en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar el tamaño de la fuente del fragmento de texto seleccionado en 1 punto.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Sangrar un párrafo desde la izquierda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Añadir un salto de columna.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Insertar una nota al final.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"Insertar una ecuación en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Insertar una nota al pie.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insertar un enlace que se puede utilizar para acceder a una dirección web.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Añadir un salto de línea sin comenzar un nuevo párrafo.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Añade un salto de línea en el formulario multilínea.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"Insertar un salto de página en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Añadir el número de página actual en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Añadir el carácter de tabulación a un párrafo (si el cursor no está al principio del párrafo).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Insertar un salto de tabla dentro de la tabla.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Hacer que la fuente del fragmento de texto seleccionado aparezca en cursiva y ligeramente inclinada.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Cambiar un párrafo entre justificado y alineado a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinear un párrafo a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia abajo un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la izquierda un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la derecha un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia arriba un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Aumentar la sangría de los párrafos seleccionados.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Disminuir la sangría de los párrafos seleccionados.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Mover el foco al siguiente objeto después del seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Mover el foco al objeto anterior al seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Mover el cursor una línea hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Colocar el cursor al final del archivo PDF que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Colocar el cursor al final de la línea que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Mover el cursor una palabra a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Mover el cursor un carácter a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Desplazarse al encabezado inferior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Desplazarse al encabezado/pie de página inferior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Ir a la siguiente celda en una fila de la tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Pasar al siguiente formulario.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Ir a la página siguiente del archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Ir a la siguiente fila de una tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Ir a la celda anterior en una fila de la tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Pasar al formulario anterior.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Ir a la página anterior del archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Ir a la fila anterior en una tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Mover el cursor un carácter a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Ir al principio del archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Colocar el cursor al principio de la línea que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Colocar el cursor al principio de la página siguiente a la que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Colocar el cursor al principio de la página anterior a la que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Mover el cursor al principio de una palabra o una palabra a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Mover el cursor una línea hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Desplazarse al encabezado superior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Desplazarse al encabezado/pie de página superior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Cambiar a la siguiente pestaña de archivo en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Navegar entre los controles para dar el foco al siguiente control en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Crear un guión entre caracteres, que no se puede utilizar para comenzar una nueva línea.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Crear un espacio entre caracteres que no se puede utilizar para comenzar una nueva línea.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abrir el panel Chat en los editores en línea y enviar un mensaje.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abrir un campo de entrada de datos donde se puede añadir el texto del comentario.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abrir el panel Comentarios para añadir su propio comentario o responder a los comentarios de otros usuarios.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abrir el menú contextual del elemento seleccionado.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abrir el cuadro de diálogo estándar que permite seleccionar un archivo existente. Si selecciona el archivo en este cuadro de diálogo y hace clic en Abrir, el archivo se abrirá en una nueva pestaña o ventana de los editores de escritorio.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abrir el panel Archivo para guardar, descargar, imprimir el archivo PDF actual, ver su información, crear un nuevo documento o abrir un PDF existente, acceder al Centro de ayuda del Editor de PDF o a la configuración avanzada.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abrir el menú (panel) Buscar y reemplazar con el campo de reemplazo para reemplazar una o más apariciones de los caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abrir el diálogo Buscar para comenzar a buscar un carácter/palabra/frase en el archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abrir el menú Ayuda del Editor de PDF.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insertar el fragmento de texto copiado previamente desde el portapapeles del ordenador en la posición actual del cursor. El texto puede haberse copiado previamente desde el mismo documento, desde otro documento o desde algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Aplicar el formato copiado anteriormente al texto del PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Insertar el fragmento de texto copiado previamente desde el portapapeles del ordenador en la posición actual del cursor sin conservar su formato original. El texto puede haberse copiado previamente desde el mismo documento, desde otro documento o desde algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Cambiar a la pestaña del archivo anterior en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Navegar entre los controles para dar el foco al control anterior en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprimir el archivo PDF con una de las impresoras disponibles o guardarlo como archivo.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Insertar el símbolo de marca registrada en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Reemplazar el código Unicode seleccionado con un símbolo.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Borrar el formato del fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Cambiar un párrafo entre alineación a la derecha y alineación a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionSave":"Guardar todos los cambios realizados en el archivo PDF que se está editando con el Editor de PDF. El archivo activo se guardará con su nombre, ubicación y formato de archivo actuales.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Abrir el panel Descargar como... para guardar el archivo PDF editado actualmente en el disco duro de su ordenador en uno de los formatos compatibles.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Desplazar el archivo PDF aproximadamente una página visible hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Desplazar el archivo PDF aproximadamente una página visible hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Seleccionar un carácter a la izquierda de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Seleccionar un fragmento de texto desde el cursor hasta el principio de una palabra.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mover el cursor una línea hacia abajo, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mover el cursor una línea hacia arriba, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Seleccionar la parte de la página desde la posición del cursor hasta la parte inferior de la pantalla.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Seleccionar la parte de la página desde la posición del cursor hasta la parte superior de la pantalla.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Seleccionar un carácter a la derecha de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Seleccionar un fragmento de texto desde el cursor hasta el final de una palabra.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Seleccionar un fragmento de texto desde el cursor hasta el comienzo de la página siguiente.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la página anterior.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Seleccionar un fragmento de texto desde el cursor hasta el final del archivo PDF.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Seleccionar un fragmento de texto desde el cursor hasta el final de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Seleccionar un fragmento de texto desde el cursor hasta el principio del archivo PDF.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Mostrar u ocultar la visualización de caracteres no imprimibles.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Insertar el signo de guión suave en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Mantener el formato original del texto copiado.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Pegar el texto sin su formato original.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Pegar la tabla copiada como una tabla anidada en la celda seleccionada de la tabla existente.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Reemplazar el contenido de la tabla existente con los datos copiados.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Activar/desactivar la transmisión de acciones realizadas en la aplicación para lectores de pantalla.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Aumentar el nivel de lista/sangría (con el cursor al principio de un párrafo).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Disminuir el nivel de lista/sangría (con el cursor al principio de un párrafo).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Hacer que se tache el fragmento de texto seleccionado con una línea que atraviese las letras.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte inferior de la línea de texto, por ejemplo, como en las fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte superior de la línea de texto, por ejemplo, como en las fracciones.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Insertar el símbolo de marca registrada en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Hacer que el fragmento de texto seleccionado aparezca subrayado con una línea debajo de las letras.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Eliminar la sangría de un párrafo desde la izquierda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Actualizar campos (por ejemplo, tabla de contenido).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visitar un hiperenlace (con el cursor sobre el hiperenlace).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Restablecer el parámetro «Ampliación» del archivo PDF actual al valor predeterminado del 100 %.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Ampliar el archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Alejar el archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área apilada","Common.define.chartData.textAreaStackedPer":"Área apilada 100% ","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Columna agrupada","Common.define.chartData.textBarNormal3d":"Columna 3D agrupada","Common.define.chartData.textBarNormal3dPerspective":"Columna 3D","Common.define.chartData.textBarStacked":"Columna apilada","Common.define.chartData.textBarStacked3d":"Columna 3D apilada","Common.define.chartData.textBarStackedPer":"Columna apilada 100%","Common.define.chartData.textBarStackedPer3d":"Columna 3D apilada 100%","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Columna","Common.define.chartData.textCombo":"Combinado","Common.define.chartData.textComboAreaBar":"Área apilada - Columna agrupada","Common.define.chartData.textComboBarLine":"Columna agrupada - Línea","Common.define.chartData.textComboBarLineSecondary":"Columna agrupada - Línea en eje secundario","Common.define.chartData.textComboCustom":"Combinación personalizada","Common.define.chartData.textDoughnut":"Anillo","Common.define.chartData.textHBarNormal":"Barra agrupada","Common.define.chartData.textHBarNormal3d":"Barra 3D agrupada","Common.define.chartData.textHBarStacked":"Barra apilada","Common.define.chartData.textHBarStacked3d":"Barra 3D apilada","Common.define.chartData.textHBarStackedPer":"Barra apilada 100%","Common.define.chartData.textHBarStackedPer3d":"Barra 3D apilada 100%","Common.define.chartData.textLine":"Línea","Common.define.chartData.textLine3d":"Línea 3D","Common.define.chartData.textLineMarker":"Línea con marcadores","Common.define.chartData.textLineStacked":"Línea apilada","Common.define.chartData.textLineStackedMarker":"Línea apilada con marcadores","Common.define.chartData.textLineStackedPer":"Línea apilada 100%","Common.define.chartData.textLineStackedPerMarker":"Línea apilada con marcadores 100%","Common.define.chartData.textPie":"Gráfico circular","Common.define.chartData.textPie3d":"Circular 3D","Common.define.chartData.textPoint":"XY (Dispersión)","Common.define.chartData.textRadar":"Radial","Common.define.chartData.textRadarFilled":"Radial relleno","Common.define.chartData.textRadarMarker":"Radial con marcadores","Common.define.chartData.textScatter":"Dispersión","Common.define.chartData.textScatterLine":"Dispersión con líneas rectas","Common.define.chartData.textScatterLineMarker":"Dispersión con líneas rectas y marcadores","Common.define.chartData.textScatterSmooth":"Dispersión con líneas suavizadas","Common.define.chartData.textScatterSmoothMarker":"Dispersión con líneas suavizadas y marcadores","Common.define.chartData.textStock":"De cotizaciones","Common.define.chartData.textSurface":"Superficie","Common.define.smartArt.textAccentedPicture":"Imagen destacada","Common.define.smartArt.textAccentProcess":"Proceso destacado","Common.define.smartArt.textAlternatingFlow":"Flujo alternativo","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternativos","Common.define.smartArt.textAlternatingPictureBlocks":"Bloques de imágenes alternativos","Common.define.smartArt.textAlternatingPictureCircles":"Círculos con imágenes alternativos","Common.define.smartArt.textArchitectureLayout":"Diseño de arquitectura","Common.define.smartArt.textArrowRibbon":"Cinta de flechas","Common.define.smartArt.textAscendingPictureAccentProcess":"Proceso de imágenes destacadas ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Proceso curvo básico","Common.define.smartArt.textBasicBlockList":"Lista de bloques básica","Common.define.smartArt.textBasicChevronProcess":"Proceso cheurón básico","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Circular básico","Common.define.smartArt.textBasicProcess":"Proceso básico","Common.define.smartArt.textBasicPyramid":"Pirámide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Objetivo básico","Common.define.smartArt.textBasicTimeline":"Escala de tiempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista destacada con círculos abajo","Common.define.smartArt.textBendingPictureBlocks":"Bloques de imágenes con cuadro","Common.define.smartArt.textBendingPictureCaption":"Imagen curvada con títulos","Common.define.smartArt.textBendingPictureCaptionList":"Lista de imágenes curvadas con títulos","Common.define.smartArt.textBendingPictureSemiTranparentText":"Imágenes curvadas con texto semitransparente","Common.define.smartArt.textBlockCycle":"Ciclo de bloques","Common.define.smartArt.textBubblePictureList":"Lista de imágenes con burbujas","Common.define.smartArt.textCaptionedPictures":"Imágenes con títulos","Common.define.smartArt.textChevronAccentProcess":"Proceso cheurón destacado","Common.define.smartArt.textChevronList":"Lista de cheurones","Common.define.smartArt.textCircleAccentTimeline":"Línea de tiempo con círculos","Common.define.smartArt.textCircleArrowProcess":"Proceso de círculos con flecha","Common.define.smartArt.textCirclePictureHierarchy":"Jerarquía con imágenes en círculos","Common.define.smartArt.textCircleProcess":"Proceso de círculos","Common.define.smartArt.textCircleRelationship":"Relación de círculo","Common.define.smartArt.textCircularBendingProcess":"Proceso curvo circular","Common.define.smartArt.textCircularPictureCallout":"Llamada de imagen circular","Common.define.smartArt.textClosedChevronProcess":"Proceso de cheurón cerrado","Common.define.smartArt.textContinuousArrowProcess":"Proceso de flechas continuo","Common.define.smartArt.textContinuousBlockProcess":"Proceso de bloque continuo","Common.define.smartArt.textContinuousCycle":"Ciclo continuo","Common.define.smartArt.textContinuousPictureList":"Lista de imágenes continua","Common.define.smartArt.textConvergingArrows":"Flechas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Flechas de contrapeso","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista de bloques descendente","Common.define.smartArt.textDescendingProcess":"Proceso descendente","Common.define.smartArt.textDetailedProcess":"Proceso detallado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Ecuación","Common.define.smartArt.textFramedTextPicture":"Imagen de texto enmarcado","Common.define.smartArt.textFunnel":"Embudo","Common.define.smartArt.textGear":"Engranaje","Common.define.smartArt.textGridMatrix":"Matriz de cuadrícula","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organigrama con semicírculos","Common.define.smartArt.textHexagonCluster":"Grupo de hexágonos","Common.define.smartArt.textHexagonRadial":"Radial con hexágonos","Common.define.smartArt.textHierarchy":"Jerarquía","Common.define.smartArt.textHierarchyList":"Lista de jerarquías","Common.define.smartArt.textHorizontalBulletList":"Lista de viñetas horizontal","Common.define.smartArt.textHorizontalHierarchy":"Jerarquía horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Jerarquía etiquetada horizontal","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Jerarquía horizontal de varios niveles","Common.define.smartArt.textHorizontalOrganizationChart":"Organigrama horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista horizontal de imágenes","Common.define.smartArt.textIncreasingArrowProcess":"Proceso de flechas crecientes","Common.define.smartArt.textIncreasingCircleProcess":"Proceso de círculos crecientes","Common.define.smartArt.textInterconnectedBlockProcess":"Proceso de bloques interconectados","Common.define.smartArt.textInterconnectedRings":"Anillos interconectados","Common.define.smartArt.textInvertedPyramid":"Pirámide invertida","Common.define.smartArt.textLabeledHierarchy":"Jerarquía etiquetada","Common.define.smartArt.textLinearVenn":"Venn lineal","Common.define.smartArt.textLinedList":"Lista alineada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidireccional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigrama con nombres y cargos","Common.define.smartArt.textNestedTarget":"Objetivo anidado","Common.define.smartArt.textNondirectionalCycle":"Ciclo sin dirección","Common.define.smartArt.textOpposingArrows":"Flechas opuestas","Common.define.smartArt.textOpposingIdeas":"Ideas opuestas","Common.define.smartArt.textOrganizationChart":"Organigrama","Common.define.smartArt.textOther":"Otro","Common.define.smartArt.textPhasedProcess":"Proceso en fases","Common.define.smartArt.textPicture":"Imagen","Common.define.smartArt.textPictureAccentBlocks":"Imágenes destacadas en bloques","Common.define.smartArt.textPictureAccentList":"Lista de imágenes destacadas","Common.define.smartArt.textPictureAccentProcess":"Proceso de imágenes destacadas","Common.define.smartArt.textPictureCaptionList":"Lista de títulos de imágenes","Common.define.smartArt.textPictureFrame":"Marco de fotos","Common.define.smartArt.textPictureGrid":"Imágenes en cuadrícula","Common.define.smartArt.textPictureLineup":"Imágenes en paralelo","Common.define.smartArt.textPictureOrganizationChart":"Organigrama con imágenes","Common.define.smartArt.textPictureStrips":"Tiras de imagen","Common.define.smartArt.textPieProcess":"Proceso circular","Common.define.smartArt.textPlusAndMinus":"Más y menos","Common.define.smartArt.textProcess":"Proceso","Common.define.smartArt.textProcessArrows":"Flechas de proceso","Common.define.smartArt.textProcessList":"Lista de procesos","Common.define.smartArt.textPyramid":"Pirámide","Common.define.smartArt.textPyramidList":"Lista en pirámide","Common.define.smartArt.textRadialCluster":"Diseño radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista radial con imágenes","Common.define.smartArt.textRadialVenn":"Venn radial","Common.define.smartArt.textRandomToResultProcess":"Proceso de azar a resultado","Common.define.smartArt.textRelationship":"Relación","Common.define.smartArt.textRepeatingBendingProcess":"Proceso curvo repetitivo","Common.define.smartArt.textReverseList":"Lista inversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Proceso segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirámide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de imágenes instantáneas","Common.define.smartArt.textSpiralPicture":"Imagen en espiral","Common.define.smartArt.textSquareAccentList":"Lista de imágenes con cuadrados","Common.define.smartArt.textStackedList":"Lista apilada","Common.define.smartArt.textStackedVenn":"Venn apilado","Common.define.smartArt.textStaggeredProcess":"Proceso escalonado","Common.define.smartArt.textStepDownProcess":"Proceso de nivel inferior","Common.define.smartArt.textStepUpProcess":"Proceso de nivel superior","Common.define.smartArt.textSubStepProcess":"Proceso de pasos secundarios","Common.define.smartArt.textTabbedArc":"Arco con pestañas","Common.define.smartArt.textTableHierarchy":"Jerarquía de tabla","Common.define.smartArt.textTableList":"Lista de tablas","Common.define.smartArt.textTabList":"Lista de pestañas","Common.define.smartArt.textTargetList":"Lista de objetivo","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Imágenes temáticas destacadas","Common.define.smartArt.textThemePictureAlternatingAccent":"Imágenes temáticas destacadas alternativas","Common.define.smartArt.textThemePictureGrid":"Imágenes temáticas en cuadrícula","Common.define.smartArt.textTitledMatrix":"Matriz con títulos","Common.define.smartArt.textTitledPictureAccentList":"Lista de imágenes destacadas con título","Common.define.smartArt.textTitledPictureBlocks":"Bloques de imágenes con títulos","Common.define.smartArt.textTitlePictureLineup":"Serie de imágenes con título","Common.define.smartArt.textTrapezoidList":"Lista de trapezoides","Common.define.smartArt.textUpwardArrow":"Flecha arriba","Common.define.smartArt.textVaryingWidthList":"Lista de ancho variable","Common.define.smartArt.textVerticalAccentList":"Lista con rectángulos en vertical","Common.define.smartArt.textVerticalArrowList":"Lista vertical de flechas","Common.define.smartArt.textVerticalBendingProcess":"Proceso curvo vertical","Common.define.smartArt.textVerticalBlockList":"Lista de bloques verticales","Common.define.smartArt.textVerticalBoxList":"Lista vertical de cuadros","Common.define.smartArt.textVerticalBracketList":"Lista vertical con corchetes","Common.define.smartArt.textVerticalBulletList":"Lista vertical de viñetas","Common.define.smartArt.textVerticalChevronList":"Lista vertical de cheurones","Common.define.smartArt.textVerticalCircleList":"Lista con círculos en vertical","Common.define.smartArt.textVerticalCurvedList":"Lista curvada vertical","Common.define.smartArt.textVerticalEquation":"Ecuación vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista con círculos a la izquierda","Common.define.smartArt.textVerticalPictureList":"Lista vertical de imágenes","Common.define.smartArt.textVerticalProcess":"Proceso vertical","Common.Translation.textMoreButton":"Más","Common.Translation.tipFileLocked":"El documento está bloqueado para su edición. Puede hacer cambios y guardarlo como copia local más tarde.","Common.Translation.tipFileReadOnly":"El archivo es de solo lectura. Para no perder los cambios, guarde el archivo con otro nombre o en otra ubicación.","Common.Translation.warnFileLocked":"No puede editar este archivo porque lo está editando otra aplicación.","Common.Translation.warnFileLockedBtnEdit":"Crear una copia","Common.Translation.warnFileLockedBtnView":"Abrir en solo lectura","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Cuentagotas","Common.UI.ButtonColored.textNewColor":"Más colores","Common.UI.Calendar.textApril":"Abril","Common.UI.Calendar.textAugust":"agosto","Common.UI.Calendar.textDecember":"diciembre","Common.UI.Calendar.textFebruary":"febrero","Common.UI.Calendar.textJanuary":"enero","Common.UI.Calendar.textJuly":"julio","Common.UI.Calendar.textJune":"junio","Common.UI.Calendar.textMarch":"marzo","Common.UI.Calendar.textMay":"mayo","Common.UI.Calendar.textMonths":"meses","Common.UI.Calendar.textNovember":"noviembre","Common.UI.Calendar.textOctober":"octubre","Common.UI.Calendar.textSeptember":"septiembre","Common.UI.Calendar.textShortApril":"Abr","Common.UI.Calendar.textShortAugust":"ago.","Common.UI.Calendar.textShortDecember":"dic.","Common.UI.Calendar.textShortFebruary":"feb.","Common.UI.Calendar.textShortFriday":"vie.","Common.UI.Calendar.textShortJanuary":"ene.","Common.UI.Calendar.textShortJuly":"jul.","Common.UI.Calendar.textShortJune":"jun.","Common.UI.Calendar.textShortMarch":"mar.","Common.UI.Calendar.textShortMay":"mayo","Common.UI.Calendar.textShortMonday":"lu.","Common.UI.Calendar.textShortNovember":"nov.","Common.UI.Calendar.textShortOctober":"oct.","Common.UI.Calendar.textShortSaturday":"sáb.","Common.UI.Calendar.textShortSeptember":"sep.","Common.UI.Calendar.textShortSunday":"dom.","Common.UI.Calendar.textShortThursday":"jue.","Common.UI.Calendar.textShortTuesday":"mar.","Common.UI.Calendar.textShortWednesday":"mie.","Common.UI.Calendar.textYears":"Años","Common.UI.ExtendedColorDialog.addButtonText":"Añadir","Common.UI.ExtendedColorDialog.textCurrent":"Actual","Common.UI.ExtendedColorDialog.textHexErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor de 000000 a FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Nuevo","Common.UI.ExtendedColorDialog.textRGBErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico de 0 a 225.","Common.UI.HSBColorPicker.textNoColor":"Sin color","Common.UI.InputFieldBtnCalendar.textDate":"Seleccionar fecha","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar la contraseña","Common.UI.InputFieldBtnPassword.textHintHold":"Manténgalo pulsado para mostrar la contraseña","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar la contraseña","Common.UI.SearchBar.capFind":"Buscar","Common.UI.SearchBar.capFindRedact":"Buscar y redactar","Common.UI.SearchBar.textFind":"Buscar","Common.UI.SearchBar.tipCloseSearch":"Cerrar búsqueda","Common.UI.SearchBar.tipNextResult":"Resultado siguiente","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abrir ajustes avanzados","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"Buscar y redactar","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Resaltar resultados","Common.UI.SearchDialog.textMatchCase":"Distinguir mayúsculas de minúsculas","Common.UI.SearchDialog.textReplaceDef":"Introduzca el texto de sustitución","Common.UI.SearchDialog.textSearchStart":"Introduzca su texto aquí","Common.UI.SearchDialog.textTitle":"Buscar y reemplazar","Common.UI.SearchDialog.textTitle2":"Buscar","Common.UI.SearchDialog.textWholeWords":"Solo palabras completas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar sustitución","Common.UI.SearchDialog.txtBtnReplace":"Reemplazar","Common.UI.SearchDialog.txtBtnReplaceAll":"Reemplazar todo","Common.UI.SynchronizeTip.textDontShow":"No volver a mostrar este mensaje","Common.UI.SynchronizeTip.textGotIt":"Entiendo","Common.UI.SynchronizeTip.textNew":"Nuevo","Common.UI.SynchronizeTip.textSynchronize":"El documento ha sido modificado por otro usuario.
Por favor, haga clic para guardar sus cambios y recargue el documento.","Common.UI.ThemeColorPalette.textRecentColors":"Colores recientes","Common.UI.ThemeColorPalette.textStandartColors":"Colores estándar","Common.UI.ThemeColorPalette.textThemeColors":"Colores del tema","Common.UI.ThemeColorPalette.textTransparent":"Transparente","Common.UI.Themes.txtThemeClassicLight":"Clásico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste oscuro","Common.UI.Themes.txtThemeDark":"Oscuro","Common.UI.Themes.txtThemeGray":"Gris","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Moderno oscuro","Common.UI.Themes.txtThemeModernLight":"Moderno claro","Common.UI.Themes.txtThemeSystem":"Igual que el sistema","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Cerrar","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Confirmación","Common.UI.Window.textDontShow":"No volver a mostrar este mensaje","Common.UI.Window.textError":"Error","Common.UI.Window.textInformation":"Información","Common.UI.Window.textWarning":"Advertencia","Common.UI.Window.yesButtonText":"Si","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Control","Common.Utils.String.textShift":"Mayús","Common.Utils.ThemeColor.txtaccent":"Acentuación","Common.Utils.ThemeColor.txtAqua":"Aguamarina","Common.Utils.ThemeColor.txtbackground":"Fondo","Common.Utils.ThemeColor.txtBlack":"Negro","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde vivo","Common.Utils.ThemeColor.txtBrown":"Marrón","Common.Utils.ThemeColor.txtDarkBlue":"Azul oscuro","Common.Utils.ThemeColor.txtDarker":"Más oscuro","Common.Utils.ThemeColor.txtDarkGray":"Gris oscuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde oscuro","Common.Utils.ThemeColor.txtDarkPurple":"Púrpura oscuro","Common.Utils.ThemeColor.txtDarkRed":"Rojo oscuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde azulado oscuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarillo oscuro","Common.Utils.ThemeColor.txtGold":"Oro","Common.Utils.ThemeColor.txtGray":"Gris","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Añil","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Más claro","Common.Utils.ThemeColor.txtLightGray":"Gris claro","Common.Utils.ThemeColor.txtLightGreen":"Verde claro","Common.Utils.ThemeColor.txtLightOrange":"Naranja claro","Common.Utils.ThemeColor.txtLightYellow":"Amarillo claro","Common.Utils.ThemeColor.txtOrange":"Naranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Púrpura","Common.Utils.ThemeColor.txtRed":"Rojo","Common.Utils.ThemeColor.txtRose":"Rosa claro","Common.Utils.ThemeColor.txtSkyBlue":"Azul cielo","Common.Utils.ThemeColor.txtTeal":"Verde azulado","Common.Utils.ThemeColor.txttext":"Texto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Blanco","Common.Utils.ThemeColor.txtYellow":"Amarillo","Common.Views.About.txtAddress":"dirección: ","Common.Views.About.txtLicensee":"LICENCIATARIO ","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"correo electrónico:","Common.Views.About.txtPoweredBy":"Con tecnología de","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versión","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Cerrar chat","Common.Views.Chat.textEnterMessage":"Introduzca su mensaje aquí","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor de Z a A","Common.Views.Comments.mniDateAsc":"Más antiguo","Common.Views.Comments.mniDateDesc":"Más reciente","Common.Views.Comments.mniFilterComments":"Mostrar comentarios","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"Desde arriba","Common.Views.Comments.mniPositionDesc":"Desde abajo","Common.Views.Comments.textAdd":"Añadir","Common.Views.Comments.textAddComment":"Añadir comentario","Common.Views.Comments.textAddCommentToDoc":"Añadir comentario al documento","Common.Views.Comments.textAddReply":"Añadir respuesta","Common.Views.Comments.textAll":"Todos","Common.Views.Comments.textAnonym":"Invitado","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Cerrar","Common.Views.Comments.textClosePanel":"Cerrar comentarios","Common.Views.Comments.textComment":"Comentario","Common.Views.Comments.textComments":"Comentarios","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Introduzca su comentario aquí","Common.Views.Comments.textHintAddComment":"Añadir comentario","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir de nuevo","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resuelto","Common.Views.Comments.textSort":"Ordenar comentarios","Common.Views.Comments.textSortFilter":"Ordenar y filtrar comentarios","Common.Views.Comments.textSortFilterMore":"Ordenar, filtrar y mucho más","Common.Views.Comments.textSortMore":"Ordenar y más","Common.Views.Comments.textViewResolved":"No tiene permiso para volver a abrir el comentario","Common.Views.Comments.txtEmpty":"No hay comentarios en el documento.","Common.Views.CopyWarningDialog.textDontShow":"No volver a mostrar este mensaje","Common.Views.CopyWarningDialog.textMsg":"Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y del menú contextual solo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, use las siguientes combinaciones de teclas:","Common.Views.CopyWarningDialog.textTitle":"Acciones de Copiar, Cortar y Pegar","Common.Views.CopyWarningDialog.textToCopy":"para copiar","Common.Views.CopyWarningDialog.textToCut":"para cortar","Common.Views.CopyWarningDialog.textToPaste":"para pegar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Descargar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Marque los comandos que se mostrarán en la barra de herramientas Acceso rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impresión rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Rehacer","Common.Views.CustomizeQuickAccessDialog.textSave":"Guardar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalizar acceso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Deshacer","Common.Views.DocumentAccessDialog.textLoading":"Cargando...","Common.Views.DocumentAccessDialog.textTitle":"Ajustes de uso compartido","Common.Views.Draw.hintEraser":"Borrador","Common.Views.Draw.hintSelect":"Seleccionar","Common.Views.Draw.txtEraser":"Borrador","Common.Views.Draw.txtHighlighter":"Marcador de resaltado","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Bolígrafo","Common.Views.Draw.txtSelect":"Seleccionar","Common.Views.Draw.txtSize":"Tamaño","Common.Views.ExternalDiagramEditor.textTitle":"Editor de gráficos","Common.Views.ExternalEditor.textClose":"Cerrar","Common.Views.ExternalEditor.textSave":"Guardar y salir","Common.Views.ExternalLinksDlg.closeButtonText":"Cerrar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Actualizar automáticamente los datos de las fuentes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Cambiar fuente","Common.Views.ExternalLinksDlg.textDelete":"Quitar enlaces","Common.Views.ExternalLinksDlg.textDeleteAll":"Quitar todos los enlaces","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Abrir fuente","Common.Views.ExternalLinksDlg.textSource":"Fuente","Common.Views.ExternalLinksDlg.textStatus":"Estado","Common.Views.ExternalLinksDlg.textUnknown":"Desconocido","Common.Views.ExternalLinksDlg.textUpdate":"Actualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Actualizar todo","Common.Views.ExternalLinksDlg.textUpdating":"Actualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Enlaces externos","Common.Views.Header.ariaQuickAccessToolbar":"Barra de herramientas de acceso rápido","Common.Views.Header.labelCoUsersDescr":"Usuarios que están editando el archivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Configuración avanzada","Common.Views.Header.textAnnotateDesc":"Rellenar formularios o anotar","Common.Views.Header.textBack":"Abrir ubicación del archivo","Common.Views.Header.textClose":"Cerrar archivo","Common.Views.Header.textComment":"Comentario","Common.Views.Header.textCommentDesc":"Todos los cambios se guardarán en el archivo. Colaboración en tiempo real","Common.Views.Header.textCompactView":"Ocultar barra de herramientas","Common.Views.Header.textDownload":"Descargar","Common.Views.Header.textEdit":"Edición","Common.Views.Header.textEditDesc":"Todos los cambios se guardarán en el archivo. Colaboración en tiempo real","Common.Views.Header.textEditDescNoCoedit":"Añada o edite texto, formas, imágenes, etc.","Common.Views.Header.textHideLines":"Ocultar reglas","Common.Views.Header.textHideStatusBar":"Ocultar barra de estado","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Solo lectura","Common.Views.Header.textRemoveFavorite":"Eliminar de Favoritos","Common.Views.Header.textShare":"Compartir","Common.Views.Header.textView":"Visualización","Common.Views.Header.textViewDesc":"Todos los cambios se guardarán localmente","Common.Views.Header.textViewDescNoCoedit":"Ver o hacer anotaciones","Common.Views.Header.textZoom":"Ampliación","Common.Views.Header.tipAccessRights":"Administrar los permisos de acceso de documentos","Common.Views.Header.tipComment":"Comentario","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalizar la barra de herramientas Acceso rápido","Common.Views.Header.tipDownload":"Descargar archivo","Common.Views.Header.tipEdit":"Edición","Common.Views.Header.tipGoEdit":"Editar el archivo actual","Common.Views.Header.tipPrint":"Imprimir archivo","Common.Views.Header.tipPrintQuick":"Impresión rápida","Common.Views.Header.tipRedo":"Rehacer","Common.Views.Header.tipSave":"Guardar","Common.Views.Header.tipSearch":"Buscar","Common.Views.Header.tipUndo":"Deshacer","Common.Views.Header.tipUsers":"Ver usuarios","Common.Views.Header.tipView":"Visualización","Common.Views.Header.tipViewSettings":"Mostrar ajustes","Common.Views.Header.tipViewUsers":"Ver usuarios y administrar permisos de acceso al documento","Common.Views.Header.txtAccessRights":"Cambiar permisos de acceso","Common.Views.Header.txtRename":"Renombrar","Common.Views.ImageFromUrlDialog.textUrl":"Pegue la URL de la imagen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo es obligatorio","Common.Views.ImageFromUrlDialog.txtNotUrl":"El campo debe ser una URL en el formato \"http://www.example.com\"","Common.Views.OpenDialog.closeButtonText":"Cerrar archivo","Common.Views.OpenDialog.txtEncoding":"Codificación","Common.Views.OpenDialog.txtIncorrectPwd":"La contraseña es incorrecta","Common.Views.OpenDialog.txtOpenFile":"Introduzca la contraseña para abrir el archivo","Common.Views.OpenDialog.txtPassword":"Contraseña","Common.Views.OpenDialog.txtPreview":"Vista previa","Common.Views.OpenDialog.txtProtected":"Una vez se haya introducido la contraseña y abierto el archivo, la contraseña actual del archivo se restablecerá.","Common.Views.OpenDialog.txtTitle":"Elegir opciones de %1","Common.Views.OpenDialog.txtTitleProtected":"Archivo protegido","Common.Views.PasswordDialog.txtDescription":"Establezca una contraseña para proteger este documento","Common.Views.PasswordDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","Common.Views.PasswordDialog.txtPassword":"Contraseña","Common.Views.PasswordDialog.txtRepeat":"Repetir contraseña","Common.Views.PasswordDialog.txtTitle":"Establecer contraseña","Common.Views.PasswordDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdelo en un lugar seguro.","Common.Views.PluginDlg.textDock":"Anclar plugin","Common.Views.PluginDlg.textLoading":"Cargando","Common.Views.PluginPanel.textClosePanel":"Cerrar plugin","Common.Views.PluginPanel.textHidePanel":"Contraer plugin","Common.Views.PluginPanel.textLoading":"Cargando","Common.Views.PluginPanel.textUndock":"Desanclar plugin","Common.Views.Plugins.groupCaption":"Extensiones","Common.Views.Plugins.strPlugins":"Extensiones","Common.Views.Plugins.textBackgroundPlugins":"Plugins de fondo","Common.Views.Plugins.textClosePanel":"Cerrar extensión","Common.Views.Plugins.textLoading":"Cargando","Common.Views.Plugins.textSettings":"Ajustes","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Detener","Common.Views.Plugins.textTheListOfBackgroundPlugins":"La lista de plugins de fondo","Common.Views.Protection.hintAddPwd":"Cifrar con contraseña","Common.Views.Protection.hintDelPwd":"Eliminar contraseña","Common.Views.Protection.hintPwd":"Cambiar o eliminar la contraseña","Common.Views.Protection.hintSignature":"Añadir firma digital o línea de firma","Common.Views.Protection.txtAddPwd":"Añadir contraseña","Common.Views.Protection.txtChangePwd":"Cambiar contraseña","Common.Views.Protection.txtDeletePwd":"Eliminar contraseña","Common.Views.Protection.txtEncrypt":"Cifrar","Common.Views.Protection.txtInvisibleSignature":"Añadir firma digital","Common.Views.Protection.txtSignature":"Firma","Common.Views.Protection.txtSignatureLine":"Añadir línea de firma","Common.Views.RecentFiles.txtOpenRecent":"Abrir recientes","Common.Views.RenameDialog.textName":"Nombre de archivo","Common.Views.RenameDialog.txtInvalidName":"El nombre del archivo no debe contener los símbolos siguientes:","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedición en tiempo real. Todos los cambios se guardan automáticamente.","Common.Views.ReviewChanges.strStrict":"Estricto","Common.Views.ReviewChanges.strStrictDesc":"Use el botón \"Guardar\" para sincronizar los cambios hechos por usted y por otros usuarios.","Common.Views.ReviewChanges.tipCoAuthMode":"Establecer modo de coedición","Common.Views.ReviewChanges.tipCommentRem":"Eliminar comentarios","Common.Views.ReviewChanges.tipCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentarios","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver comentarios actuales","Common.Views.ReviewChanges.tipHistory":"Mostrar historial de versiones","Common.Views.ReviewChanges.tipSharing":"Administrar los permisos de acceso de documentos","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Cerrar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedición","Common.Views.ReviewChanges.txtCommentRemAll":"Eliminar todos los comentarios","Common.Views.ReviewChanges.txtCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.txtCommentRemMy":"Eliminar mis comentarios","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Eliminar mis comentarios actuales","Common.Views.ReviewChanges.txtCommentRemove":"Eliminar","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos los comentarios","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentarios actuales","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver mis comentarios","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver mis comentarios actuales","Common.Views.ReviewChanges.txtHistory":"Historial de versiones","Common.Views.ReviewChanges.txtSharing":"Uso compartido","Common.Views.ReviewPopover.textAdd":"Añadir","Common.Views.ReviewPopover.textAddReply":"Añadir respuesta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Cerrar","Common.Views.ReviewPopover.textComment":"Comentario","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Introduzca su comentario aquí","Common.Views.ReviewPopover.textFollowMove":"Seguir movimiento","Common.Views.ReviewPopover.textMention":"+mención proporcionará acceso al documento y enviará un correo","Common.Views.ReviewPopover.textMentionNotify":"+mención notificará al usuario por correo","Common.Views.ReviewPopover.textOpenAgain":"Abrir de nuevo","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"No tiene permiso para volver a abrir el comentario","Common.Views.ReviewPopover.txtAccept":"Aceptar","Common.Views.ReviewPopover.txtDeleteTip":"Eliminar","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.ReviewPopover.txtReject":"Rechazar","Common.Views.SaveAsDlg.textLoading":"Cargando","Common.Views.SaveAsDlg.textTitle":"Carpeta para guardar","Common.Views.SearchPanel.textCaseSensitive":"Distinguir mayúsculas de minúsculas","Common.Views.SearchPanel.textCloseSearch":"Cerrar búsqueda","Common.Views.SearchPanel.textContentChanged":"Se ha modificado el documento","Common.Views.SearchPanel.textFind":"Buscar","Common.Views.SearchPanel.textFindAndRedact":"Buscar y redactar","Common.Views.SearchPanel.textFindAndReplace":"Buscar y reemplazar","Common.Views.SearchPanel.textFindRedact":"Buscar y redactar","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} elementos reemplazados correctamente.","Common.Views.SearchPanel.textMark":"Marcar para redacción","Common.Views.SearchPanel.textMarkAll":"Marcar todo","Common.Views.SearchPanel.textMatchUsingRegExp":"Buscar utilizando expresiones regulares","Common.Views.SearchPanel.textNoMatches":"No hay coincidencias","Common.Views.SearchPanel.textNoSearchResults":"No hay resultados de búsqueda","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} elementos reemplazados. Los {2} elementos restantes están bloqueados por otros usuarios.","Common.Views.SearchPanel.textReplace":"Reemplazar","Common.Views.SearchPanel.textReplaceAll":"Reemplazar todo","Common.Views.SearchPanel.textReplaceWith":"Reemplazar por","Common.Views.SearchPanel.textSearchAgain":"{0}Realice una nueva búsqueda{1} para obtener resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"La búsqueda se ha detenido","Common.Views.SearchPanel.textSearchResults":"Resultados de la búsqueda: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados de búsqueda","Common.Views.SearchPanel.textTooManyResults":"Hay demasiados resultados para mostrarlos aquí","Common.Views.SearchPanel.textWholeWords":"Solo palabras completas","Common.Views.SearchPanel.tipNextResult":"Resultado siguiente","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Cargando","Common.Views.SelectFileDlg.textTitle":"Seleccionar origen de datos","Common.Views.ShapeShadowDialog.txtAngle":"Ángulo","Common.Views.ShapeShadowDialog.txtDistance":"Distancia","Common.Views.ShapeShadowDialog.txtSize":"Tamaño","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparencia","Common.Views.ShortcutsDialog.txtDescription":"Descripción","Common.Views.ShortcutsDialog.txtEmpty":"No se han encontrado coincidencias. Ajuste su búsqueda.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restablecer todos los valores predeterminados","Common.Views.ShortcutsDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todos los ajustes de los accesos directos se restablecerán a los valores predeterminados.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsDialog.txtSearch":"Búsqueda","Common.Views.ShortcutsDialog.txtTitle":"Accesos directos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Acción","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Escriba el acceso directo deseado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"El acceso directo utilizado por las acciones %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"El acceso directo utilizado por las acciones %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"El acceso directo utilizado por la acción %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"El acceso directo utilizado por la acción %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Nuevo acceso directo","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos los accesos directos para la acción «%1» se restablecerán a los valores predeterminados.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsEditDialog.txtTitle":"Editar acceso directo","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Escriba el acceso directo deseado","Common.Views.UserNameDialog.textDontShow":"No volver a preguntarme","Common.Views.UserNameDialog.textLabel":"Etiqueta:","Common.Views.UserNameDialog.textLabelError":"La etiqueta no debe estar vacía.","PDFE.Controllers.InsTab.textAccent":"Acentos","PDFE.Controllers.InsTab.textBracket":"Corchetes","PDFE.Controllers.InsTab.textFraction":"Fracciones","PDFE.Controllers.InsTab.textFunction":"Funciones","PDFE.Controllers.InsTab.textInsert":"Insertar","PDFE.Controllers.InsTab.textIntegral":"Integrales","PDFE.Controllers.InsTab.textLargeOperator":"Operadores grandes","PDFE.Controllers.InsTab.textLimitAndLog":"Límites y logaritmos ","PDFE.Controllers.InsTab.textMatrix":"Matrices","PDFE.Controllers.InsTab.textOperator":"Operadores","PDFE.Controllers.InsTab.textRadical":"Radicales","PDFE.Controllers.InsTab.textScript":"Índices","PDFE.Controllers.InsTab.textShape":"Forma","PDFE.Controllers.InsTab.textSymbols":"Símbolos","PDFE.Controllers.InsTab.txtAccent_Accent":"Acento agudo","PDFE.Controllers.InsTab.txtAccent_ArrowD":"Flecha superior derecha e izquierda","PDFE.Controllers.InsTab.txtAccent_ArrowL":"Flecha superior hacia izquierda","PDFE.Controllers.InsTab.txtAccent_ArrowR":"Flecha superior hacia derecha","PDFE.Controllers.InsTab.txtAccent_Bar":"Barra","PDFE.Controllers.InsTab.txtAccent_BarBot":"Barra subyacente","PDFE.Controllers.InsTab.txtAccent_BarTop":"Barra superpuesta","PDFE.Controllers.InsTab.txtAccent_BorderBox":"Fórmula encuadrada (con marcador de posición)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"Fórmula encuadrada (ejemplo)","PDFE.Controllers.InsTab.txtAccent_Check":"Casilla","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"Llave subyacente","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"Llave superpuesta","PDFE.Controllers.InsTab.txtAccent_Custom_1":"Vector A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"ABC con barra superpuesta","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XOR y con barra superpuesta","PDFE.Controllers.InsTab.txtAccent_DDDot":"Tres puntos","PDFE.Controllers.InsTab.txtAccent_DDot":"Dos puntos","PDFE.Controllers.InsTab.txtAccent_Dot":"Punto","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"Barra doble superpuesta","PDFE.Controllers.InsTab.txtAccent_Grave":"Acento grave","PDFE.Controllers.InsTab.txtAccent_GroupBot":"Carácter de agrupación inferior","PDFE.Controllers.InsTab.txtAccent_GroupTop":"Carácter de agrupación superior","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"Arpón superior hacia izquierdo","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"Arpón superior hacia derecha","PDFE.Controllers.InsTab.txtAccent_Hat":"Circunflejo","PDFE.Controllers.InsTab.txtAccent_Smile":"Acento breve","PDFE.Controllers.InsTab.txtAccent_Tilde":"Tilde","PDFE.Controllers.InsTab.txtBasicShapes":"Formas básicas","PDFE.Controllers.InsTab.txtBracket_Angle":"Corchetes angulares","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"Corchetes angulares con separador","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"Corchetes angulares con dos separadores","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"Corchete angular de cierre","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"Corchete angular de apertura","PDFE.Controllers.InsTab.txtBracket_Curve":"Llaves","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"Llaves con separador","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"Llave de cierre","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"Llave de apertura","PDFE.Controllers.InsTab.txtBracket_Custom_1":"Casos (dos condiciones)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"Casos (tres condiciones)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"Objeto de pila","PDFE.Controllers.InsTab.txtBracket_Custom_4":"Objeto acotado entre paréntesis","PDFE.Controllers.InsTab.txtBracket_Custom_5":"Ejemplo de casos","PDFE.Controllers.InsTab.txtBracket_Custom_6":"Coeficiente binomial","PDFE.Controllers.InsTab.txtBracket_Custom_7":"Coeficiente binomial en corchetes angulares","PDFE.Controllers.InsTab.txtBracket_Line":"Plecas","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"Pleca de cierre","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"Pleca de apertura","PDFE.Controllers.InsTab.txtBracket_LineDouble":"Plecas dobles","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"Pleca doble de cierre","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"Pleca doble de apertura","PDFE.Controllers.InsTab.txtBracket_LowLim":"Corchete inferior","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"Corchete inferior de cierre","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"Corchete inferior de apertura","PDFE.Controllers.InsTab.txtBracket_Round":"Paréntesis","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"Paréntesis con separador","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"Paréntesis de cierre","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"Paréntesis de apertura","PDFE.Controllers.InsTab.txtBracket_Square":"Corchetes","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"Marcador de posición entre dos corchetes de cierre","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"Corchetes invertidos","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"Corchete de cierre","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"Corchete de apertura","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"Marcador de posición entre dos corchetes de apertura","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"Corchetes dobles","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"Corchete doble de cierre","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"Corchete doble de apertura","PDFE.Controllers.InsTab.txtBracket_UppLim":"Corchete de techo","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"Corchete de techo de cierre","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"Corchete de techo de apertura","PDFE.Controllers.InsTab.txtButtons":"Botones","PDFE.Controllers.InsTab.txtCallouts":"Llamadas","PDFE.Controllers.InsTab.txtCharts":"Gráficos","PDFE.Controllers.InsTab.txtFiguredArrows":"Flechas figuradas","PDFE.Controllers.InsTab.txtFractionDiagonal":"Fracción sesgada","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dx sobre dy","PDFE.Controllers.InsTab.txtFractionDifferential_2":"delta mayúscula y sobre delta mayúscula x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"y parcial sobre x parcial","PDFE.Controllers.InsTab.txtFractionDifferential_4":"delta y sobre delta x","PDFE.Controllers.InsTab.txtFractionHorizontal":"Fracción lineal","PDFE.Controllers.InsTab.txtFractionPi_2":"Pi dividir a 2","PDFE.Controllers.InsTab.txtFractionSmall":"Fracción pequeña","PDFE.Controllers.InsTab.txtFractionVertical":"Fracción apilada","PDFE.Controllers.InsTab.txtFunction_1_Cos":"Función de coseno inversa","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"Función de coseno inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Cot":"Función de cotangente inversa","PDFE.Controllers.InsTab.txtFunction_1_Coth":"Función de cotangente inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Csc":"Función de cosecante inversa","PDFE.Controllers.InsTab.txtFunction_1_Csch":"Función de cosecante inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Sec":"Función de secante inversa","PDFE.Controllers.InsTab.txtFunction_1_Sech":"Función de secante inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Sin":"Función de seno inversa","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"Función de seno inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Tan":"Función de tangente inversa","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"Función de tangente inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_Cos":"Función de coseno","PDFE.Controllers.InsTab.txtFunction_Cosh":"Función de coseno hiperbólica","PDFE.Controllers.InsTab.txtFunction_Cot":"Función de cotangente","PDFE.Controllers.InsTab.txtFunction_Coth":"Función de cotangente hiperbólica","PDFE.Controllers.InsTab.txtFunction_Csc":"Función de cosecante","PDFE.Controllers.InsTab.txtFunction_Csch":"Función de cosecante hiperbólica","PDFE.Controllers.InsTab.txtFunction_Custom_1":"Seno zeta","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Cos 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"Fórmula de tangente","PDFE.Controllers.InsTab.txtFunction_Sec":"Función de secante","PDFE.Controllers.InsTab.txtFunction_Sech":"Función de secante hiperbólica","PDFE.Controllers.InsTab.txtFunction_Sin":"Función de seno","PDFE.Controllers.InsTab.txtFunction_Sinh":"Función de seno hiperbólica","PDFE.Controllers.InsTab.txtFunction_Tan":"Función de tangente","PDFE.Controllers.InsTab.txtFunction_Tanh":"Función de tangente hiperbólica","PDFE.Controllers.InsTab.txtIntegral":"Integral","PDFE.Controllers.InsTab.txtIntegral_dtheta":"Diferencial zeta","PDFE.Controllers.InsTab.txtIntegral_dx":"Diferencial x","PDFE.Controllers.InsTab.txtIntegral_dy":"Diferencial y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"Integral con límites acotados","PDFE.Controllers.InsTab.txtIntegralDouble":"Integral doble","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"Integral doble con límites acotados","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"Integral doble con límites","PDFE.Controllers.InsTab.txtIntegralOriented":"Integral de contorno","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"Integral de contorno con límites acotados","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"Integral de superficie","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"Integral de superficie con límites acotados","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"Integral de superficie con límites","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"Integral de contorno con límites","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"Integral de volumen","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"Integral de volumen con límites acotados","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"Integral de volumen con límites","PDFE.Controllers.InsTab.txtIntegralSubSup":"Integral con límites","PDFE.Controllers.InsTab.txtIntegralTriple":"Integral triple","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"Integral triple con límites acotados","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"Integral triple con límites","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"Y lógico","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"Y lógico con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"Y lógico con límites","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"Y lógico con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"Y lógico con límites de subíndice/supraíndice","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"Coproducto","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"Coproducto con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"Coproducto con límites","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"Coproducto con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"Coproducto con límites de subíndice/supraíndice","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"Sumatoria sobre k de n sobre k","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"Sumatoria de i igual a cero a n","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"Ejemplo de suma con dos índices","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"Ejemplo del producto","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"Ejemplo de unión","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"O lógico","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"O lógico con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"O lógico con límites","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"O lógico con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"O lógico con límites de subíndice/supraíndice","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"Intersección","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"Intersección con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"Intersección con límites","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"Intersección con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"Intersección con límites de subíndice/superíndice","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"Producto","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"Producto con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"Producto con límites","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"Producto con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"Producto con límites de subíndice/superíndice","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"Suma","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"Sumatoria con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"Sumatoria con límites","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"Sumatoria con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"Sumatoria con límites de subíndice/supraíndice","PDFE.Controllers.InsTab.txtLargeOperator_Union":"Unión","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"Unión con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"Unión con límites","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"Unión con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"Unión con límites de subíndice/superíndice","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"Ejemplo de límite","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"Ejemplo de máximo","PDFE.Controllers.InsTab.txtLimitLog_Lim":"Límite","PDFE.Controllers.InsTab.txtLimitLog_Ln":"Logaritmo natural","PDFE.Controllers.InsTab.txtLimitLog_Log":"Logaritmo","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"Logaritmo","PDFE.Controllers.InsTab.txtLimitLog_Max":"Máximo","PDFE.Controllers.InsTab.txtLimitLog_Min":"Mínimo","PDFE.Controllers.InsTab.txtLines":"Líneas","PDFE.Controllers.InsTab.txtMath":"Matemáticas","PDFE.Controllers.InsTab.txtMatrix_1_2":"Matriz vacía 1x2","PDFE.Controllers.InsTab.txtMatrix_1_3":"Matriz vacía 1x3","PDFE.Controllers.InsTab.txtMatrix_2_1":"Matriz vacía 2x1","PDFE.Controllers.InsTab.txtMatrix_2_2":"Matriz vacía 2x2","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"Matriz de 2 por 2 vacía entre plecas dobles","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"Determinante de 2 por 2 vacío","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"Matriz de 2 por 2 vacía entre paréntesis","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"Matriz de 2 por 2 vacía entre paréntesis","PDFE.Controllers.InsTab.txtMatrix_2_3":"Matriz vacía 2x3","PDFE.Controllers.InsTab.txtMatrix_3_1":"Matriz vacía 3x1","PDFE.Controllers.InsTab.txtMatrix_3_2":"Matriz vacía 3x2","PDFE.Controllers.InsTab.txtMatrix_3_3":"Matriz vacía 3x3","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"Puntos en línea de base","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"Puntos en línea media","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"Puntos diagonales","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"Puntos verticales","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"Matriz dispersa entre paréntesis","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"Matriz dispersa entre corchetes","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"Matriz de identidad 2x2 con ceros","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"Matriz de identidad 2x2 con celdas en blanco que no están en la diagonal","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"Matriz de identidad 3x3 con ceros","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"Matriz de identidad 3x3 con celdas en blanco que no están en la diagonal","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"Flecha inferior derecha e izquierda","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"Flecha superior derecha e izquierda","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"Flecha inferior hacia izquierda","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"Flecha superior hacia izquierda","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"Flecha inferior hacia derecha","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"Flecha superior hacia derecha","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"Dos puntos igual","PDFE.Controllers.InsTab.txtOperator_Custom_1":"Produce","PDFE.Controllers.InsTab.txtOperator_Custom_2":"Produce con delta","PDFE.Controllers.InsTab.txtOperator_Definition":"Igual por definición","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"Delta igual a","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"Flecha doble inferior derecha e izquierda","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"Flecha doble superior derecha e izquierda","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"Flecha inferior hacia izquierda","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"Flecha superior hacia izquierda","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"Flecha inferior hacia derecha","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"Flecha superior hacia derecha","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"Igual igual","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"Menos igual","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"Más igual","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"Unidad de medida","PDFE.Controllers.InsTab.txtRadicalCustom_1":"Lado derecho de la fórmula cuadrática","PDFE.Controllers.InsTab.txtRadicalCustom_2":"Raíz cuadrada de un cuadrado más b al cuadrado","PDFE.Controllers.InsTab.txtRadicalRoot_2":"Raíz cuadrada con índice","PDFE.Controllers.InsTab.txtRadicalRoot_3":"Raíz cúbica","PDFE.Controllers.InsTab.txtRadicalRoot_n":"Radical con índice","PDFE.Controllers.InsTab.txtRadicalSqrt":"Raíz cuadrada","PDFE.Controllers.InsTab.txtRectangles":"Rectángulos","PDFE.Controllers.InsTab.txtScriptCustom_1":"x subíndice y al cuadrado","PDFE.Controllers.InsTab.txtScriptCustom_2":"e elevado a menos i omega t","PDFE.Controllers.InsTab.txtScriptCustom_3":"x al cuadrado","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y superíndice izquierdo n subíndice izquierdo uno","PDFE.Controllers.InsTab.txtScriptSub":"Subíndice","PDFE.Controllers.InsTab.txtScriptSubSup":"Subíndice-Superíndice","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"Subíndice-superíndice izquierdo","PDFE.Controllers.InsTab.txtScriptSup":"Superíndice","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"Llamada con línea 1 (borde y barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"Llamada con línea 2 (borde y barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"Llamada con línea 3 (borde y barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"Llamada con línea 1 (barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"Llamada con línea 2 (barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"Llamada con línea 3 (barra de énfasis)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"Botón de atrás o anterior","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"Botón de inicio","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"Botón en blanco","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"Botón de documento","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"Botón de final","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"Botón de adelante o siguiente","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"Botón de ayuda","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"Botón de inicio","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"Botón de información","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"Botón de vídeo","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"Botón de regreso","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"Botón de sonido","PDFE.Controllers.InsTab.txtShape_arc":"Arco","PDFE.Controllers.InsTab.txtShape_bentArrow":"Flecha doblada","PDFE.Controllers.InsTab.txtShape_bentConnector5":"Conector angular","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"Conector angular de flecha","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"Conector angular de flecha doble","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"Flecha doblada hacia arriba","PDFE.Controllers.InsTab.txtShape_bevel":"Bisel","PDFE.Controllers.InsTab.txtShape_blockArc":"Arco de bloque","PDFE.Controllers.InsTab.txtShape_borderCallout1":"Llamada con línea 1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"Llamada con línea 2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"Llamada con línea 3","PDFE.Controllers.InsTab.txtShape_bracePair":"Llaves","PDFE.Controllers.InsTab.txtShape_callout1":"Llamada con línea 1 (sin borde)","PDFE.Controllers.InsTab.txtShape_callout2":"Llamada con línea 2 (sin borde)","PDFE.Controllers.InsTab.txtShape_callout3":"Llamada con línea 3 (sin borde)","PDFE.Controllers.InsTab.txtShape_can":"Сilindro","PDFE.Controllers.InsTab.txtShape_chevron":"Cheurón","PDFE.Controllers.InsTab.txtShape_chord":"Acorde","PDFE.Controllers.InsTab.txtShape_circularArrow":"Flecha circular","PDFE.Controllers.InsTab.txtShape_cloud":"Nube","PDFE.Controllers.InsTab.txtShape_cloudCallout":"Llamada de nube","PDFE.Controllers.InsTab.txtShape_corner":"Esquina","PDFE.Controllers.InsTab.txtShape_cube":"Cubo","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"Conector curvado","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"Conector curvado de flecha","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"Conector curvado de flecha doble","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"Flecha curvada hacia abajo","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"Flecha curvada hacia la izquierda","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"Flecha curvada hacia la derecha","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"Flecha curvada hacia arriba","PDFE.Controllers.InsTab.txtShape_decagon":"Decágono","PDFE.Controllers.InsTab.txtShape_diagStripe":"Franja diagonal","PDFE.Controllers.InsTab.txtShape_diamond":"Rombo","PDFE.Controllers.InsTab.txtShape_dodecagon":"Dodecágono","PDFE.Controllers.InsTab.txtShape_donut":"Anillo","PDFE.Controllers.InsTab.txtShape_doubleWave":"Doble onda","PDFE.Controllers.InsTab.txtShape_downArrow":"Flecha hacia abajo","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"Llamada de flecha hacia abajo","PDFE.Controllers.InsTab.txtShape_ellipse":"Elipse","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"Cinta curvada hacia abajo","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"Cinta curvada hacia arriba","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"Diagrama de flujo: Proceso alternativo","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"Diagrama de flujo: Intercalar","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"Diagrama de flujo: Conector","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"Diagrama de flujo: Decisión","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"Diagrama de flujo: Retraso","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"Diagrama de flujo: Pantalla","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"Diagrama de flujo: Documento","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"Diagrama de flujo: Extracto","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"Diagrama de flujo: Datos","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"Diagrama de flujo: Almacenamiento interno","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"Diagrama de flujo: Disco magnético","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"Diagrama de flujo: Almacenamiento de acceso directo","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"Diagrama de flujo: Almacenamiento de acceso secuencial","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"Diagrama de flujo: Entrada manual","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"Diagrama de flujo: Operación manual","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"Diagrama de flujo: Combinar","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"Diagrama de flujo: Multidocumento","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"Diagrama de flujo: Conector fuera de página","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"Diagrama de flujo: Datos almacenados","PDFE.Controllers.InsTab.txtShape_flowChartOr":"Diagrama de flujo: O","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"Diagrama de flujo: Proceso predefinido","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"Diagrama de flujo: Preparación","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"Diagrama de flujo: Proceso","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"Diagrama de flujo: Tarjeta","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"Diagrama de flujo: Cinta perforada","PDFE.Controllers.InsTab.txtShape_flowChartSort":"Diagrama de flujo: Ordenar","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"Diagrama de flujo: Conexión sumadora","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"Diagrama de flujo: Terminador","PDFE.Controllers.InsTab.txtShape_foldedCorner":"Esquina doblada","PDFE.Controllers.InsTab.txtShape_frame":"Marco","PDFE.Controllers.InsTab.txtShape_halfFrame":"Medio marco","PDFE.Controllers.InsTab.txtShape_heart":"Corazón","PDFE.Controllers.InsTab.txtShape_heptagon":"Heptágono","PDFE.Controllers.InsTab.txtShape_hexagon":"Hexágono","PDFE.Controllers.InsTab.txtShape_homePlate":"Pentágono","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"Pergamino horizontal","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"Explosión 1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"Explosión 2","PDFE.Controllers.InsTab.txtShape_leftArrow":"Flecha izquierda","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"Llamada de flecha a la izquierda","PDFE.Controllers.InsTab.txtShape_leftBrace":"Abrir llave","PDFE.Controllers.InsTab.txtShape_leftBracket":"Abrir corchete","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"Flecha izquierda y derecha","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"Llamada de flecha izquierda y derecha","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"Flecha izquierda, derecha y arriba","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"Flecha izquierda y arriba","PDFE.Controllers.InsTab.txtShape_lightningBolt":"Rayo","PDFE.Controllers.InsTab.txtShape_line":"Línea","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"Flecha","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"Flecha doble","PDFE.Controllers.InsTab.txtShape_mathDivide":"División","PDFE.Controllers.InsTab.txtShape_mathEqual":"Igual","PDFE.Controllers.InsTab.txtShape_mathMinus":"Menos","PDFE.Controllers.InsTab.txtShape_mathMultiply":"Multiplicar","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"No igual","PDFE.Controllers.InsTab.txtShape_mathPlus":"Más","PDFE.Controllers.InsTab.txtShape_moon":"Luna","PDFE.Controllers.InsTab.txtShape_noSmoking":"Señal de prohibición","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"Flecha a la derecha con muesca","PDFE.Controllers.InsTab.txtShape_octagon":"Octágono","PDFE.Controllers.InsTab.txtShape_parallelogram":"Paralelogramo","PDFE.Controllers.InsTab.txtShape_pentagon":"Pentágono","PDFE.Controllers.InsTab.txtShape_pie":"Sector del círculo","PDFE.Controllers.InsTab.txtShape_plaque":"Signo","PDFE.Controllers.InsTab.txtShape_plus":"Más","PDFE.Controllers.InsTab.txtShape_polyline1":"A mano alzada","PDFE.Controllers.InsTab.txtShape_polyline2":"Forma libre","PDFE.Controllers.InsTab.txtShape_quadArrow":"Flecha cuádruple","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"Llamada de flecha cuádruple","PDFE.Controllers.InsTab.txtShape_rect":"Rectángulo","PDFE.Controllers.InsTab.txtShape_ribbon":"Cinta hacia abajo","PDFE.Controllers.InsTab.txtShape_ribbon2":"Cinta hacia arriba","PDFE.Controllers.InsTab.txtShape_rightArrow":"Flecha derecha","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"Llamada de flecha a la derecha","PDFE.Controllers.InsTab.txtShape_rightBrace":"Cerrar llave","PDFE.Controllers.InsTab.txtShape_rightBracket":"Cerrar corchete","PDFE.Controllers.InsTab.txtShape_round1Rect":"Rectángulo sencillo de esquina redondeada","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"Rectángulo de esquina redondeada en diagonal","PDFE.Controllers.InsTab.txtShape_round2SameRect":"Rectángulo de esquina redondeada del mismo lado","PDFE.Controllers.InsTab.txtShape_roundRect":"Rectángulo con esquinas redondeadas","PDFE.Controllers.InsTab.txtShape_rtTriangle":"Triángulo rectángulo","PDFE.Controllers.InsTab.txtShape_smileyFace":"Cara sonriente","PDFE.Controllers.InsTab.txtShape_snip1Rect":"Rectángulo de esquina sencilla recortada","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"Rectángulo de esquina diagonal recortada","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"Rectángulo de esquina recortada del mismo lado","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"Rectángulo de esquina sencilla redondeada y recortada","PDFE.Controllers.InsTab.txtShape_spline":"Curva","PDFE.Controllers.InsTab.txtShape_star10":"Estrella de 10 puntas","PDFE.Controllers.InsTab.txtShape_star12":"Estrella de 12 puntas","PDFE.Controllers.InsTab.txtShape_star16":"Estrella de 16 puntas","PDFE.Controllers.InsTab.txtShape_star24":"Estrella de 24 puntas","PDFE.Controllers.InsTab.txtShape_star32":"Estrella de 32 puntas","PDFE.Controllers.InsTab.txtShape_star4":"Estrella de 4 puntas","PDFE.Controllers.InsTab.txtShape_star5":"Estrella de 5 puntas","PDFE.Controllers.InsTab.txtShape_star6":"Estrella de 6 puntas","PDFE.Controllers.InsTab.txtShape_star7":"Estrella de 7 puntas","PDFE.Controllers.InsTab.txtShape_star8":"Estrella de 8 puntas","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"Flecha a la derecha con bandas","PDFE.Controllers.InsTab.txtShape_sun":"Sol","PDFE.Controllers.InsTab.txtShape_teardrop":"Lágrima","PDFE.Controllers.InsTab.txtShape_textRect":"Cuadro de texto","PDFE.Controllers.InsTab.txtShape_trapezoid":"Trapecio","PDFE.Controllers.InsTab.txtShape_triangle":"Triángulo","PDFE.Controllers.InsTab.txtShape_upArrow":"Flecha hacia arriba","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"Llamada de flecha hacia arriba","PDFE.Controllers.InsTab.txtShape_upDownArrow":"Flecha hacia arriba y abajo","PDFE.Controllers.InsTab.txtShape_uturnArrow":"Flecha en U","PDFE.Controllers.InsTab.txtShape_verticalScroll":"Pergamino vertical","PDFE.Controllers.InsTab.txtShape_wave":"Onda","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"Llamada ovalada","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"Llamada rectangular","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"Llamada rectangular redondeada","PDFE.Controllers.InsTab.txtStarsRibbons":"Cintas y estrellas","PDFE.Controllers.InsTab.txtSymbol_about":"Aproximadamente","PDFE.Controllers.InsTab.txtSymbol_additional":"Complemento","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Alfa","PDFE.Controllers.InsTab.txtSymbol_approx":"Casi igual a","PDFE.Controllers.InsTab.txtSymbol_ast":"Operador asterisco","PDFE.Controllers.InsTab.txtSymbol_beta":"Beta","PDFE.Controllers.InsTab.txtSymbol_beth":"Bet","PDFE.Controllers.InsTab.txtSymbol_bullet":"Operador de viñeta","PDFE.Controllers.InsTab.txtSymbol_cap":"Intersección","PDFE.Controllers.InsTab.txtSymbol_cbrt":"Raíz cúbica","PDFE.Controllers.InsTab.txtSymbol_cdots":"Elipsis horizontal de línea media","PDFE.Controllers.InsTab.txtSymbol_celsius":"Grados Celsius","PDFE.Controllers.InsTab.txtSymbol_chi":"Chi","PDFE.Controllers.InsTab.txtSymbol_cong":"Aproximadamente igual a","PDFE.Controllers.InsTab.txtSymbol_cup":"Unión","PDFE.Controllers.InsTab.txtSymbol_ddots":"Elipsis en diagonal de derecha a izquierda","PDFE.Controllers.InsTab.txtSymbol_degree":"Grados","PDFE.Controllers.InsTab.txtSymbol_delta":"Delta","PDFE.Controllers.InsTab.txtSymbol_div":"Signo de división","PDFE.Controllers.InsTab.txtSymbol_downarrow":"Flecha hacia abajo","PDFE.Controllers.InsTab.txtSymbol_emptyset":"Conjunto vacío","PDFE.Controllers.InsTab.txtSymbol_epsilon":"Épsilon","PDFE.Controllers.InsTab.txtSymbol_equals":"Igual","PDFE.Controllers.InsTab.txtSymbol_equiv":"Idéntico a","PDFE.Controllers.InsTab.txtSymbol_eta":"Eta","PDFE.Controllers.InsTab.txtSymbol_exists":"Existe","PDFE.Controllers.InsTab.txtSymbol_factorial":"Factorial","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"Grados Fahrenheit","PDFE.Controllers.InsTab.txtSymbol_forall":"Para todos","PDFE.Controllers.InsTab.txtSymbol_gamma":"Gamma","PDFE.Controllers.InsTab.txtSymbol_geq":"Mayor que o igual a","PDFE.Controllers.InsTab.txtSymbol_gg":"Mucho mayor que","PDFE.Controllers.InsTab.txtSymbol_greater":"Mayor que","PDFE.Controllers.InsTab.txtSymbol_in":"Elemento de","PDFE.Controllers.InsTab.txtSymbol_inc":"Incremento","PDFE.Controllers.InsTab.txtSymbol_infinity":"Infinito","PDFE.Controllers.InsTab.txtSymbol_iota":"Iota","PDFE.Controllers.InsTab.txtSymbol_kappa":"Kappa","PDFE.Controllers.InsTab.txtSymbol_lambda":"Lambda","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"Flecha izquierda","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"Flecha izquierda-derecha","PDFE.Controllers.InsTab.txtSymbol_leq":"Menor que o igual a","PDFE.Controllers.InsTab.txtSymbol_less":"Menor que","PDFE.Controllers.InsTab.txtSymbol_ll":"Mucho menor que","PDFE.Controllers.InsTab.txtSymbol_minus":"Menos","PDFE.Controllers.InsTab.txtSymbol_mp":"Menos más","PDFE.Controllers.InsTab.txtSymbol_mu":"Mi","PDFE.Controllers.InsTab.txtSymbol_nabla":"Nabla","PDFE.Controllers.InsTab.txtSymbol_neq":"No igual a","PDFE.Controllers.InsTab.txtSymbol_ni":"Contiene como miembro","PDFE.Controllers.InsTab.txtSymbol_not":"Signo de negación","PDFE.Controllers.InsTab.txtSymbol_notexists":"No existe","PDFE.Controllers.InsTab.txtSymbol_nu":"Ni","PDFE.Controllers.InsTab.txtSymbol_o":"Ómicron","PDFE.Controllers.InsTab.txtSymbol_omega":"Omega","PDFE.Controllers.InsTab.txtSymbol_partial":"Diferencial parcial","PDFE.Controllers.InsTab.txtSymbol_percent":"Porcentaje","PDFE.Controllers.InsTab.txtSymbol_phi":"Fi","PDFE.Controllers.InsTab.txtSymbol_pi":"Pi","PDFE.Controllers.InsTab.txtSymbol_plus":"Más","PDFE.Controllers.InsTab.txtSymbol_pm":"Más menos","PDFE.Controllers.InsTab.txtSymbol_propto":"Proporcional a","PDFE.Controllers.InsTab.txtSymbol_psi":"Psi","PDFE.Controllers.InsTab.txtSymbol_qdrt":"Raíz cuarta","PDFE.Controllers.InsTab.txtSymbol_qed":"Lo que era necesario demostrar","PDFE.Controllers.InsTab.txtSymbol_rddots":"Elipsis en diagonal de izquierda a derecha","PDFE.Controllers.InsTab.txtSymbol_rho":"Ro","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"Flecha derecha","PDFE.Controllers.InsTab.txtSymbol_sigma":"Sigma","PDFE.Controllers.InsTab.txtSymbol_sqrt":"Signo de radical","PDFE.Controllers.InsTab.txtSymbol_tau":"Tau","PDFE.Controllers.InsTab.txtSymbol_therefore":"Por lo tanto ","PDFE.Controllers.InsTab.txtSymbol_theta":"Zeta","PDFE.Controllers.InsTab.txtSymbol_times":"Signo de multiplicación","PDFE.Controllers.InsTab.txtSymbol_uparrow":"Flecha hacia arriba","PDFE.Controllers.InsTab.txtSymbol_upsilon":"Ípsilon","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"Épsilon (variante)","PDFE.Controllers.InsTab.txtSymbol_varphi":"Variante fi","PDFE.Controllers.InsTab.txtSymbol_varpi":"Variante pi","PDFE.Controllers.InsTab.txtSymbol_varrho":"Variante ro","PDFE.Controllers.InsTab.txtSymbol_varsigma":"Variante sigma","PDFE.Controllers.InsTab.txtSymbol_vartheta":"Variante zeta","PDFE.Controllers.InsTab.txtSymbol_vdots":"Elipsis vertical","PDFE.Controllers.InsTab.txtSymbol_xsi":"Csi","PDFE.Controllers.InsTab.txtSymbol_zeta":"Dseda","PDFE.Controllers.LeftMenu.leavePageText":"Todos los cambios no guardados de este documento se perderán.
Pulse \"Cancelar\", después \"Guardar\" para guardarlos. Pulse \"OK\" para deshacer todos los cambios no guardados.","PDFE.Controllers.LeftMenu.newDocumentTitle":"Documento sin título","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"Advertencia","PDFE.Controllers.LeftMenu.requestEditRightsText":"Solicitando permisos de edición...","PDFE.Controllers.LeftMenu.textLoadHistory":"Cargando historial de versiones...","PDFE.Controllers.LeftMenu.textNoTextFound":"No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","PDFE.Controllers.LeftMenu.textSelectPath":"Introduzca un nuevo nombre para guardar la copia del archivo","PDFE.Controllers.LeftMenu.txtCompatible":"El documento se guardará en el nuevo formato. Permitirá utilizar todas las características del editor, pero podría afectar al diseño del documento.
Utilice la opción 'Compatibilidad' de la configuración avanzada si quiere hacer que los archivos sean compatibles con versiones anteriores de MS Word.","PDFE.Controllers.LeftMenu.txtUntitled":"Sin título","PDFE.Controllers.LeftMenu.warnDownloadAs":"Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
¿Está seguro de que quiere continuar?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"Su {0} se convertirá en un formato editable. Esto puede llevar un tiempo. El documento resultante será optimizado para permitirle editar el texto, por lo que puede que no se vea exactamente como el {0} original, especialmente si el archivo original contenía muchos gráficos.","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"Si sigue guardando en este formato, una parte del formato puede perderse.
¿Está seguro de que desea continuar?","PDFE.Controllers.Main.applyChangesTextText":"Cargando cambios...","PDFE.Controllers.Main.applyChangesTitleText":"Cargando los cambios","PDFE.Controllers.Main.confirmMaxChangesSize":"El tamaño de las acciones excede la limitación establecida para su servidor.
Pulse \"Deshacer\" para cancelar su última acción o pulse \"Continuar\" para mantener la acción localmente (debe descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada).","PDFE.Controllers.Main.convertationTimeoutText":"Se ha superado el tiempo de conversión.","PDFE.Controllers.Main.criticalErrorExtText":"Pulse \"OK\" para regresar a la lista de documentos.","PDFE.Controllers.Main.criticalErrorExtTextClose":"Pulse \"OK\" para cerrar el editor.","PDFE.Controllers.Main.criticalErrorTitle":"Error","PDFE.Controllers.Main.downloadErrorText":"Error al descargar.","PDFE.Controllers.Main.downloadMergeText":"Descargando...","PDFE.Controllers.Main.downloadMergeTitle":"Descargando","PDFE.Controllers.Main.downloadTextText":"Descargando documento...","PDFE.Controllers.Main.downloadTitleText":"Descargando documento","PDFE.Controllers.Main.errorAccessDeny":"Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con el Administrador del Servidor de Documentos.","PDFE.Controllers.Main.errorBadImageUrl":"La URL de la imagen es incorrecta","PDFE.Controllers.Main.errorCannotPasteImg":"No es posible pegar esta imagen desde el portapapeles, pero puede guardarla en su dispositivo e \ninsertarla desde allí, o puede copiar la imagen sin texto y pegarla en el documento.","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"Se ha perdido la conexión con el servidor. No se puede editar el documento ahora.","PDFE.Controllers.Main.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","PDFE.Controllers.Main.errorConnectToServer":"No se ha podido guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.
Al hacer clic en el botón 'OK', se le solicitará que descargue el documento.","PDFE.Controllers.Main.errorCopyDisabled":"Por motivos de seguridad, el contenido de este documento no se puede copiar.","PDFE.Controllers.Main.errorDatabaseConnection":"Error externo.
Error de conexión a la base de datos. Por favor, póngase en contacto con atención al cliente si el error persiste.","PDFE.Controllers.Main.errorDataEncrypted":"Se han recibido cambios cifrados que no pueden descifrarse.","PDFE.Controllers.Main.errorDataRange":"Rango de datos incorrecto.","PDFE.Controllers.Main.errorDefaultMessage":"Código de error: %1","PDFE.Controllers.Main.errorDirectUrl":"Por favor, compruebe el enlace al documento.
Este enlace debe ser un enlace directo al archivo que descargar.","PDFE.Controllers.Main.errorEditingDownloadas":"Se ha producido 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.","PDFE.Controllers.Main.errorEditingSaveas":"Se ha producido un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro.","PDFE.Controllers.Main.errorEmailClient":"No se ha podido encontrar ningún cliente de correo","PDFE.Controllers.Main.errorFilePassProtect":"El archivo está protegido por una contraseña y no se puede abrir.","PDFE.Controllers.Main.errorFileSizeExceed":"El tamaño del archivo excede la limitación establecida para su servidor.
Por favor, póngase en contacto con el administrador del Servidor de documentos para obtener más detalles. ","PDFE.Controllers.Main.errorForceSave":"Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.","PDFE.Controllers.Main.errorInconsistentExt":"Se ha producido un error al abrir el archivo.
El contenido del archivo no coincide con la extensión del mismo.","PDFE.Controllers.Main.errorInconsistentExtDocx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde a documentos de texto (por ejemplo, docx), pero el archivo tiene extensión inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtPdf":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde a uno de los siguientes formatos: pdf/djvu/xps/oxps, pero el archivo tiene extensión inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtPptx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde a presentaciones (por ejemplo, pptx), pero el archivo tiene extensión inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtXlsx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde a hojas de cálculo (por ejemplo, xlsx), pero el archivo tiene extensión inconsistente: %1.","PDFE.Controllers.Main.errorKeyEncrypt":"Descriptor de clave desconocido","PDFE.Controllers.Main.errorKeyExpire":"El descriptor de la clave ha expirado","PDFE.Controllers.Main.errorLoadingFont":"Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del servidor de documentos.","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"La contraseña que ha proporcionado no es correcta.
Verifique que la tecla «Bloq Mayús» esté desactivada y asegúrese de utilizar las mayúsculas correctamente.","PDFE.Controllers.Main.errorPDFFormsLocked":"La acción no puede realizarse porque provoca cambios en los formularios bloqueados.","PDFE.Controllers.Main.errorSaveWatermark":"Este archivo contiene una imagen de marca de agua vinculada a otro dominio.
Para que sea visible en PDF, actualice la imagen de marca de agua para que se vincule desde el mismo dominio que su documento, o cárguela desde su ordenador.","PDFE.Controllers.Main.errorServerVersion":"La versión del editor se ha actualizado. La página se recargará para aplicar los cambios.","PDFE.Controllers.Main.errorSessionAbsolute":"La sesión de editar el documento ha expirado. Por favor, recargue la página.","PDFE.Controllers.Main.errorSessionIdle":"El documento no se ha editado durante bastante tiempo. Por favor, recargue la página.","PDFE.Controllers.Main.errorSessionToken":"La conexión al servidor ha sido interrumpido. Por favor, recargue la página.","PDFE.Controllers.Main.errorSetPassword":"No se ha podido establecer la contraseña.","PDFE.Controllers.Main.errorStockChart":"El orden de las filas es incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja en el orden siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","PDFE.Controllers.Main.errorTextFormWrongFormat":"El valor introducido no se corresponde con el formato del campo","PDFE.Controllers.Main.errorToken":"El token de seguridad del documento tiene un formato incorrecto.
Por favor, contacte con el Administrador del Servidor de Documentos.","PDFE.Controllers.Main.errorTokenExpire":"El token de seguridad del documento ha expirado.
Por favor, póngase en contacto con el administrador del Servidor de Documentos.","PDFE.Controllers.Main.errorUpdateVersion":"Se ha cambiado la versión del archivo. La página será actualizada.","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.","PDFE.Controllers.Main.errorUserDrop":"No se puede acceder al archivo ahora.","PDFE.Controllers.Main.errorUsersExceed":"Se ha excedido el número de usuarios permitido por su plan contratado","PDFE.Controllers.Main.errorViewerDisconnect":"Se ha perdido la conexión. Usted todavía puede visualizar el documento,
pero no puede descargar o imprimirlo hasta que la conexión sea restaurada y la página esté recargada.","PDFE.Controllers.Main.leavePageText":"Hay cambios no guardados en este documento. Haga clic en 'Permanecer en esta página', después 'Guardar' para guardarlos. Haga clic en 'Abandonar esta página' para descartar todos los cambios no guardados.","PDFE.Controllers.Main.leavePageTextOnClose":"Todos los cambios no guardados de este documento se perderán.
Pulse \"Cancelar\", después \"Guardar\" para guardarlos. Pulse \"OK\" para deshacer todos los cambios no guardados.","PDFE.Controllers.Main.loadFontsTextText":"Cargando datos...","PDFE.Controllers.Main.loadFontsTitleText":"Cargando datos","PDFE.Controllers.Main.loadFontTextText":"Cargando datos...","PDFE.Controllers.Main.loadFontTitleText":"Cargando datos","PDFE.Controllers.Main.loadImagesTextText":"Cargando imágenes...","PDFE.Controllers.Main.loadImagesTitleText":"Cargando imágenes","PDFE.Controllers.Main.loadImageTextText":"Cargando imagen...","PDFE.Controllers.Main.loadImageTitleText":"Cargando imagen","PDFE.Controllers.Main.loadingDocumentTextText":"Cargando documento...","PDFE.Controllers.Main.loadingDocumentTitleText":"Cargando documento","PDFE.Controllers.Main.notcriticalErrorTitle":"Advertencia","PDFE.Controllers.Main.openErrorText":"Se ha producido un error al abrir el archivo.","PDFE.Controllers.Main.openTextText":"Abriendo documento...","PDFE.Controllers.Main.openTitleText":"Abriendo documento","PDFE.Controllers.Main.printTextText":"Imprimiendo documento...","PDFE.Controllers.Main.printTitleText":"Imprimiendo documento","PDFE.Controllers.Main.reloadButtonText":"Volver a cargar página","PDFE.Controllers.Main.requestEditFailedMessageText":"Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.","PDFE.Controllers.Main.requestEditFailedTitleText":"Acceso denegado","PDFE.Controllers.Main.saveErrorText":"Se ha producido un error al guardar el archivo. ","PDFE.Controllers.Main.saveErrorTextDesktop":"Este archivo no se puede guardar o crear.
Las razones posibles son:
1. El archivo es de solo lectura.
2. El archivo está siendo editado por otros usuarios.
3. El disco está lleno o corrupto.","PDFE.Controllers.Main.saveTextText":"Guardando documento...","PDFE.Controllers.Main.saveTitleText":"Guardando documento","PDFE.Controllers.Main.scriptLoadError":"La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.","PDFE.Controllers.Main.splitDividerErrorText":"El número de filas debe ser un divisor de %1.","PDFE.Controllers.Main.splitMaxColsErrorText":"El número de columnas debe ser menor que %1.","PDFE.Controllers.Main.splitMaxRowsErrorText":"El número de filas debe ser menor que %1.","PDFE.Controllers.Main.textAnonymous":"Anónimo","PDFE.Controllers.Main.textAnyone":"Cualquiera","PDFE.Controllers.Main.textBuyNow":"Visitar sitio web","PDFE.Controllers.Main.textChangesSaved":"Se han guardado todos los cambios","PDFE.Controllers.Main.textClose":"Cerrar","PDFE.Controllers.Main.textCloseTip":"Pulse para cerrar el consejo","PDFE.Controllers.Main.textConnectionLost":"Intentando conectar. Por favor, compruebe los ajustes de conexión.","PDFE.Controllers.Main.textContactUs":"Contactar con el equipo de ventas","PDFE.Controllers.Main.textContinue":"Continuar","PDFE.Controllers.Main.textCustomLoader":"Tenga en cuenta que, según los términos de la licencia, usted no tiene permiso para cambiar el cargador.
Por favor, póngase en contacto con nuestro departamento de ventas para obtener más información.","PDFE.Controllers.Main.textDisconnect":"Se ha perdido la conexión","PDFE.Controllers.Main.textGuest":"Invitado","PDFE.Controllers.Main.textLearnMore":"Más información","PDFE.Controllers.Main.textLoadingDocument":"Cargando documento","PDFE.Controllers.Main.textLongName":"Escriba un nombre que tenga menos de 128 caracteres.","PDFE.Controllers.Main.textNoLicenseTitle":"Se ha alcanzado el límite de licencia","PDFE.Controllers.Main.textPaidFeature":"Característica de pago","PDFE.Controllers.Main.textReconnect":"Se ha restablecido la conexión","PDFE.Controllers.Main.textRemember":"Recordar mi elección para todos los archivos","PDFE.Controllers.Main.textRenameError":"El nombre de usuario no debe estar vacío.","PDFE.Controllers.Main.textRenameLabel":"Escriba un nombre que se utilizará para la colaboración","PDFE.Controllers.Main.textShape":"Forma","PDFE.Controllers.Main.textStrict":"Modo estricto","PDFE.Controllers.Main.textText":"Texto","PDFE.Controllers.Main.textTryQuickPrint":"Ha seleccionado «impresión rápida»: todo el documento se imprimirá en la última impresora seleccionada o predeterminada.
¿Desea continuar?","PDFE.Controllers.Main.textTryUndoRedo":"Las funciones Deshacer/Rehacer están desactivadas para el modo de co-edición Rápido.
Haga clic en el botón \"Modo estricto\" para cambiar al modo de co-edición al Estricto para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios solo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.","PDFE.Controllers.Main.textTryUndoRedoWarn":"Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.","PDFE.Controllers.Main.textUndo":"Deshacer","PDFE.Controllers.Main.textUpdateVersion":"El documento no se puede editar en este momento.
Tratando de actualizar el archivo, por favor espere...","PDFE.Controllers.Main.textUpdating":"Actualizando","PDFE.Controllers.Main.tipLicenseExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de conexiones simultáneas permitidas por la licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","PDFE.Controllers.Main.tipLicenseUsersExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de usuarios autorizados a editar documentos por licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","PDFE.Controllers.Main.titleLicenseExp":"Su licencia ha expirado","PDFE.Controllers.Main.titleLicenseNotActive":"Licencia no activa","PDFE.Controllers.Main.titleReadOnly":"Modo de sólo lectura","PDFE.Controllers.Main.titleServerVersion":"El editor se ha actualizado","PDFE.Controllers.Main.titleUpdateVersion":"La versión ha cambiado","PDFE.Controllers.Main.txtArt":"Su texto aquí","PDFE.Controllers.Main.txtButton":"Botón","PDFE.Controllers.Main.txtCheckbox":"Casilla","PDFE.Controllers.Main.txtChoose":"Elija un elemento","PDFE.Controllers.Main.txtClickToLoad":"Haga clic para cargar la imagen","PDFE.Controllers.Main.txtDiagramTitle":"Título de gráfico","PDFE.Controllers.Main.txtDocUnlockDescription":"Introduzca una contraseña para desbloquear el documento","PDFE.Controllers.Main.txtDropdown":"Lista desplegable","PDFE.Controllers.Main.txtEditingMode":"Establecer el modo de edición...","PDFE.Controllers.Main.txtEnterDate":"Introduzca una fecha","PDFE.Controllers.Main.txtErrorLoadHistory":"Error al cargar el historial","PDFE.Controllers.Main.txtGroup":"Grupo","PDFE.Controllers.Main.txtInvalidGreater":"Valor no válido para el campo \"{0}\": debe ser mayor o igual que {1}.","PDFE.Controllers.Main.txtInvalidGreaterLess":"Valor no válido para el campo \"{0}\": debe ser mayor o igual que {1} y menor o igual que {2}.","PDFE.Controllers.Main.txtInvalidLess":"Valor no válido para el campo \"{0}\": debe ser menor o igual que {1}.","PDFE.Controllers.Main.txtInvalidPdfFormat":"El valor introducido no coincide con el formato del campo \"{0}\".","PDFE.Controllers.Main.txtInvalidValue":"Valor no válido para el campo\"{0}\"","PDFE.Controllers.Main.txtListbox":"Lista","PDFE.Controllers.Main.txtNeedSynchronize":"Hay actualizaciones disponibles","PDFE.Controllers.Main.txtSaveCopyAsComplete":"La copia del archivo se ha guardado correctamente","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"Este documento está intentando conectarse a {0}.
Si confía en este sitio, pulse «OK».","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"Este documento está intentando abrir el diálogo de archivo, pulse \"OK\" para abrir.","PDFE.Controllers.Main.txtSeries":"Serie","PDFE.Controllers.Main.txtSignature":"Firma","PDFE.Controllers.Main.txtText":"Texto","PDFE.Controllers.Main.txtUnlockTitle":"Desbloquear documento","PDFE.Controllers.Main.txtValidPdfFormat":"El valor del campo debe coincidir con el formato \"{0}\".","PDFE.Controllers.Main.txtXAxis":"Eje X","PDFE.Controllers.Main.txtYAxis":"Eje Y","PDFE.Controllers.Main.unknownErrorText":"Error desconocido.","PDFE.Controllers.Main.unsupportedBrowserErrorText":"Su navegador no es compatible.","PDFE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconocido.","PDFE.Controllers.Main.uploadDocFileCountMessage":"No hay documentos subidos.","PDFE.Controllers.Main.uploadDocSizeMessage":"Se ha excedido el límite de tamaño máximo del documento.","PDFE.Controllers.Main.uploadImageExtMessage":"Formato de imagen desconocido.","PDFE.Controllers.Main.uploadImageFileCountMessage":"No hay imágenes subidas.","PDFE.Controllers.Main.uploadImageSizeMessage":"La imagen es demasiado grande. El tamaño máximo es de 25 MB.","PDFE.Controllers.Main.uploadImageTextText":"Cargando imagen...","PDFE.Controllers.Main.uploadImageTitleText":"Cargando imagen","PDFE.Controllers.Main.waitText":"Por favor, espere...","PDFE.Controllers.Main.warnBrowserIE9":"Esta aplicación tiene bajas capacidades en IE9. Utilice IE10 o superior","PDFE.Controllers.Main.warnBrowserZoom":"La configuración actual de 'zoom' de su navegador no es compatible por completo. Por favor, restablezca el 'zoom' predeterminado pulsando Ctrl+0.","PDFE.Controllers.Main.warnLicenseAnonymous":"Acceso denegado a usuarios anónimos.
Este documento se abrirá solo para su visualización.","PDFE.Controllers.Main.warnLicenseBefore":"Licencia no activa.
Por favor, póngase en contacto con su administrador.","PDFE.Controllers.Main.warnLicenseExp":"Su licencia ha expirado.
Por favor, actualice su licencia y después recargue la página.","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"Licencia expirada.
No tiene acceso a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador.","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"Se requiere que renueve su licencia.
Tiene un acceso limitado a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador para obtener un acceso completo","PDFE.Controllers.Main.warnNoLicense":"Usted ha alcanzado el límite de conexiones simultáneas con los editores %1. Este documento se abrirá solo para su visualización.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.","PDFE.Controllers.Main.warnNoLicenseUsers":"Usted ha alcanzado el límite de usuarios para los editores %1.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.","PDFE.Controllers.Main.warnProcessRightsChange":"Se le ha denegado el permiso para editar este archivo.","PDFE.Controllers.Navigation.txtBeginning":"Principio del documento","PDFE.Controllers.Navigation.txtGotoBeginning":"Ir al principio del documento","PDFE.Controllers.Print.textMarginsLast":"Último personalizado","PDFE.Controllers.Print.txtCustom":"Personalizado","PDFE.Controllers.Print.txtPrintRangeInvalid":"Intervalo de impresión no válido","PDFE.Controllers.RedactTab.applyButtonText":"Aplicar","PDFE.Controllers.RedactTab.doNotApplyButtonText":"No aplicar","PDFE.Controllers.RedactTab.textApplyRedact":"La información redactada se eliminará permanentemente de este documento. Una vez guardada, la información ya no podrá recuperarse.","PDFE.Controllers.RedactTab.textEnterPageRange":"Introduzca el rango de páginas para la redacción","PDFE.Controllers.RedactTab.textEnterRangeDescription":"por ejemplo, 1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"Redactar páginas","PDFE.Controllers.RedactTab.textUnappliedRedactions":"Este documento contiene marcas de redacción que aún no se han aplicado.

Hasta que seleccione «Aplicar redacciones», estas marcas se pueden eliminar y se puede recuperar la información.","PDFE.Controllers.RedactTab.tipApplyRedaction":"Aplique y guarde todas las redacciones. Las redacciones no guardadas aún se pueden deshacer.","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"Aplicar redacciones","PDFE.Controllers.RedactTab.tipMarkForRedaction":"Utilice estas herramientas para marcar, buscar y redactar contenido confidencial en su archivo PDF.","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"Marcar para redacciones","PDFE.Controllers.RedactTab.txtInvalidFormat":"Formato no válido. Utilice un solo número o un rango con guion, por ejemplo, 2 o 2-6","PDFE.Controllers.RedactTab.txtInvalidRange":"Las páginas deben tener entre 1 y {0}","PDFE.Controllers.RedactTab.txtReversedRange":"La página inicial debe ser menor o igual que la página final","PDFE.Controllers.Search.notcriticalErrorTitle":"Advertencia","PDFE.Controllers.Search.textNoTextFound":"No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","PDFE.Controllers.Search.textReplaceSkipped":"Se ha realizado el reemplazo. Se han omitido {0} coincidencias.","PDFE.Controllers.Search.textReplaceSuccess":"Se ha realizado la búsqueda. Se han sustituido {0} coincidencias","PDFE.Controllers.Search.warnReplaceString":"{0} no es un carácter especial válido para la casilla «Reemplazar con».","PDFE.Controllers.Statusbar.textDisconnect":"Se ha perdido la conexión
Intentando conectar. Compruebe la configuración de la conexión.","PDFE.Controllers.Statusbar.zoomText":"Ampliación {0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"La fuente que va a guardar no está disponible en el dispositivo actual.
El estilo de texto se mostrará utilizando una de las fuentes del dispositivo, la fuente guardada se utilizará cuando esté disponible.
¿Desea continuar?","PDFE.Controllers.Toolbar.errorAccessDeny":"Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del Servidor de documentos.","PDFE.Controllers.Toolbar.helpAnnotRect":"Descubra nuevas herramientas de anotación: rectángulo, círculo, flecha y líneas conectadas.","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"Nuevas anotaciones","PDFE.Controllers.Toolbar.helpPdfCharts":"Inserte y edite gráficos y SmartArt directamente en sus archivos PDF.","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"Gráficos y SmartArt en PDF","PDFE.Controllers.Toolbar.helpRedactTab":"Proteja la información confidencial con la función Redactar, que le permite eliminar de forma segura el contenido confidencial.","PDFE.Controllers.Toolbar.helpRedactTabHeader":"Redactar en PDF","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"Advertencia","PDFE.Controllers.Toolbar.textFontSizeErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico entre 1 y 300","PDFE.Controllers.Toolbar.textGotIt":"Entiendo","PDFE.Controllers.Toolbar.textRequired":"Rellene todos los campos obligatorios para enviar el formulario.","PDFE.Controllers.Toolbar.textSubmited":"Formulario enviado correctamente
Haga clic para cerrar el consejo.","PDFE.Controllers.Toolbar.textTabForms":"Formularios","PDFE.Controllers.Toolbar.textWarning":"Advertencia","PDFE.Controllers.Toolbar.txtDownload":"Descargar","PDFE.Controllers.Toolbar.txtNeedCommentMode":"Para guardar los cambios en el archivo, cambie al modo Сomentario. O puede descargar una copia del archivo modificado.","PDFE.Controllers.Toolbar.txtNeedDownload":"Por el momento, el visor de PDF solo puede guardar los nuevos cambios en copias separadas del archivo. No es compatible con la coedición y otros usuarios no verán sus cambios a menos que comparta una nueva versión del archivo.","PDFE.Controllers.Toolbar.txtSaveCopy":"Guardar copia","PDFE.Controllers.Toolbar.txtUntitled":"Sin título","PDFE.Controllers.Viewport.textFitPage":"Ajustar a la página","PDFE.Controllers.Viewport.textFitWidth":"Ajustar al ancho","PDFE.Controllers.Viewport.txtDarkMode":"Modo oscuro","PDFE.Views.ChartSettings.text3dDepth":"Profundidad (% de la base)","PDFE.Views.ChartSettings.text3dHeight":"Altura (% de la base)","PDFE.Views.ChartSettings.text3dRotation":"Rotación 3D","PDFE.Views.ChartSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.ChartSettings.textAutoscale":"Escalado automático","PDFE.Views.ChartSettings.textChartType":"Cambiar tipo de gráfico","PDFE.Views.ChartSettings.textData":"Datos","PDFE.Views.ChartSettings.textDefault":"Rotación predeterminada","PDFE.Views.ChartSettings.textDown":"Abajo","PDFE.Views.ChartSettings.textEditData":"Editar datos","PDFE.Views.ChartSettings.textEditLinks":"Editar enlaces","PDFE.Views.ChartSettings.textHeight":"Altura","PDFE.Views.ChartSettings.textKeepRatio":"Proporciones constantes","PDFE.Views.ChartSettings.textLeft":"A la izquierda","PDFE.Views.ChartSettings.textLinkedData":"Datos vinculados","PDFE.Views.ChartSettings.textNarrow":"Campo de visión estrecho","PDFE.Views.ChartSettings.textPerspective":"Perspectiva","PDFE.Views.ChartSettings.textRight":"A la derecha","PDFE.Views.ChartSettings.textRightAngle":"Ejes en ángulo recto","PDFE.Views.ChartSettings.textSelectData":"Seleccionar datos","PDFE.Views.ChartSettings.textSize":"Tamaño","PDFE.Views.ChartSettings.textStyle":"Estilo","PDFE.Views.ChartSettings.textUp":"Arriba","PDFE.Views.ChartSettings.textUpdateData":"Actualizar datos","PDFE.Views.ChartSettings.textWiden":"Campo de visión ancho","PDFE.Views.ChartSettings.textWidth":"Ancho","PDFE.Views.ChartSettings.textX":"Rotación X","PDFE.Views.ChartSettings.textY":"Rotación Y","PDFE.Views.ChartSettingsAdvanced.textAlt":"Texto alternativo","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"Descripción","PDFE.Views.ChartSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ChartSettingsAdvanced.textAuto":"Automático","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"Intersección con el eje","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"Posición de eje","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"Título","PDFE.Views.ChartSettingsAdvanced.textBase":"Base","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"Entre marcas de graduación","PDFE.Views.ChartSettingsAdvanced.textBillions":"Miles de millones","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"Nombre de categoría","PDFE.Views.ChartSettingsAdvanced.textCenter":"Centro","PDFE.Views.ChartSettingsAdvanced.textChartName":"Nombre de gráfico","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"Título de gráfico","PDFE.Views.ChartSettingsAdvanced.textCross":"Intersección","PDFE.Views.ChartSettingsAdvanced.textCustom":"Personalizado","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"Etiquetas de datos","PDFE.Views.ChartSettingsAdvanced.textFit":"Ajustar al ancho","PDFE.Views.ChartSettingsAdvanced.textFixed":"Fijado","PDFE.Views.ChartSettingsAdvanced.textFormat":"Formato de etiqueta","PDFE.Views.ChartSettingsAdvanced.textFrom":"De","PDFE.Views.ChartSettingsAdvanced.textGeneral":"General","PDFE.Views.ChartSettingsAdvanced.textGridLines":"Líneas de cuadrícula","PDFE.Views.ChartSettingsAdvanced.textHeight":"Altura","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"Ocultar eje","PDFE.Views.ChartSettingsAdvanced.textHigh":"Más arriba","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"Eje horizontal","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"Eje horizontal secundario","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"Horizontal ","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100.000.000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"Cientos","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100.000","PDFE.Views.ChartSettingsAdvanced.textIn":"En","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"Abajo en el interior","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"Arriba en el interior","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"Proporciones constantes","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"Distancia entre eje y etiqueta","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"Intervalo entre etiquetas","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"Parámetros de etiqueta","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"Posición de etiqueta","PDFE.Views.ChartSettingsAdvanced.textLayout":"Diseño","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"Superposición a la izquierda","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"Abajo ","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"A la izquierda","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"Leyenda","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"A la derecha","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"Arriba","PDFE.Views.ChartSettingsAdvanced.textLines":"Líneas","PDFE.Views.ChartSettingsAdvanced.textLogScale":"Escala logarítmica","PDFE.Views.ChartSettingsAdvanced.textLow":"Más abajo","PDFE.Views.ChartSettingsAdvanced.textMajor":"Principal","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"Principales y secundarios","PDFE.Views.ChartSettingsAdvanced.textMajorType":"Tipo principal","PDFE.Views.ChartSettingsAdvanced.textManual":"Manualmente","PDFE.Views.ChartSettingsAdvanced.textMarkers":"Marcadores","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"Intervalo entre marcas","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"Valor máximo","PDFE.Views.ChartSettingsAdvanced.textMillions":"Millones","PDFE.Views.ChartSettingsAdvanced.textMinor":"Secundario","PDFE.Views.ChartSettingsAdvanced.textMinorType":"Tipo secundario","PDFE.Views.ChartSettingsAdvanced.textMinValue":"Valor mínimo","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"Junto al eje","PDFE.Views.ChartSettingsAdvanced.textNone":"No","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"Sin superposición","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"Marcas de graduación","PDFE.Views.ChartSettingsAdvanced.textOut":"Fuera","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"Arriba en el exterior","PDFE.Views.ChartSettingsAdvanced.textOverlay":"Superposición","PDFE.Views.ChartSettingsAdvanced.textPlacement":"Ubicación","PDFE.Views.ChartSettingsAdvanced.textPosition":"Posición","PDFE.Views.ChartSettingsAdvanced.textReverse":"Valores en orden inverso","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"Superposición a la derecha","PDFE.Views.ChartSettingsAdvanced.textRotated":"Girado","PDFE.Views.ChartSettingsAdvanced.textSeparator":"Separador de etiquetas de datos","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"Nombre de serie","PDFE.Views.ChartSettingsAdvanced.textSize":"Tamaño","PDFE.Views.ChartSettingsAdvanced.textSmooth":"Suave","PDFE.Views.ChartSettingsAdvanced.textStraight":"Recto","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10.000.000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10.000","PDFE.Views.ChartSettingsAdvanced.textThousands":"Miles","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"Parámetros de marcas de graduación","PDFE.Views.ChartSettingsAdvanced.textTitle":"Gráfico - Ajustes avanzados","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"Esquina superior izquierda","PDFE.Views.ChartSettingsAdvanced.textTrillions":"Billones","PDFE.Views.ChartSettingsAdvanced.textUnits":"Unidades de visualización","PDFE.Views.ChartSettingsAdvanced.textValue":"Valor","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"Eje vertical","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"Eje vertical secundario","PDFE.Views.ChartSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ChartSettingsAdvanced.textWidth":"Ancho","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"Superposición a la izquierda","PDFE.Views.DocumentHolder.aboveText":"Arriba","PDFE.Views.DocumentHolder.addCommentText":"Añadir comentario","PDFE.Views.DocumentHolder.advancedChartText":"Ajustes avanzados de gráfico","PDFE.Views.DocumentHolder.advancedEquationText":"Ajustes de ecuaciones","PDFE.Views.DocumentHolder.advancedImageText":"Ajustes avanzados de imagen","PDFE.Views.DocumentHolder.advancedParagraphText":"Ajustes avanzados de párrafo","PDFE.Views.DocumentHolder.advancedShapeText":"Ajustes avanzados de forma","PDFE.Views.DocumentHolder.advancedTableText":"Ajustes avanzados de tabla","PDFE.Views.DocumentHolder.AlignBottom":"Inferior","PDFE.Views.DocumentHolder.AlignCenter":"Centro","PDFE.Views.DocumentHolder.AlignJust":"Justificar","PDFE.Views.DocumentHolder.AlignLeft":"A la izquierda","PDFE.Views.DocumentHolder.alignmentText":"Alineación","PDFE.Views.DocumentHolder.AlignMiddle":"Medio","PDFE.Views.DocumentHolder.AlignRight":"A la derecha","PDFE.Views.DocumentHolder.AlignText":"Alineación de texto","PDFE.Views.DocumentHolder.AlignTop":"Arriba","PDFE.Views.DocumentHolder.allLinearText":"Lineal (todos)","PDFE.Views.DocumentHolder.allProfText":"Profesional (todos)","PDFE.Views.DocumentHolder.belowText":"Abajo","PDFE.Views.DocumentHolder.btnChart":"Añada, elimine o modifique elementos de gráficos como el título, la leyenda, las líneas de cuadrícula y las etiquetas de datos.","PDFE.Views.DocumentHolder.cellAlignText":"Alineación vertical de celda","PDFE.Views.DocumentHolder.cellText":"Celda","PDFE.Views.DocumentHolder.centerText":"Centro","PDFE.Views.DocumentHolder.columnText":"Columna","PDFE.Views.DocumentHolder.confirmAddFontName":"La fuente que va a guardar no está disponible en el dispositivo actual.
El estilo de texto se mostrará utilizando una de las fuentes del dispositivo, la fuente guardada se utilizará cuando esté disponible.
¿Desea continuar?","PDFE.Views.DocumentHolder.currLinearText":"Lineal (actual)","PDFE.Views.DocumentHolder.currProfText":"Profesional (actual)","PDFE.Views.DocumentHolder.deleteColumnText":"Eliminar columna","PDFE.Views.DocumentHolder.deleteRowText":"Eliminar fila","PDFE.Views.DocumentHolder.deleteTableText":"Eliminar tabla","PDFE.Views.DocumentHolder.deleteText":"Eliminar","PDFE.Views.DocumentHolder.DepthAxis":"Eje Z","PDFE.Views.DocumentHolder.direct270Text":"Girar texto hacia arriba","PDFE.Views.DocumentHolder.direct90Text":"Girar texto hacia abajo","PDFE.Views.DocumentHolder.directHText":"Horizontal ","PDFE.Views.DocumentHolder.directionText":"Dirección de texto","PDFE.Views.DocumentHolder.editChartText":"Editar datos","PDFE.Views.DocumentHolder.editHyperlinkText":"Editar enlace","PDFE.Views.DocumentHolder.guestText":"Invitado","PDFE.Views.DocumentHolder.hideEqToolbar":"Ocultar la barra de herramientas de ecuaciones","PDFE.Views.DocumentHolder.hyperlinkText":"Enlace","PDFE.Views.DocumentHolder.insertColumnLeftText":"Columna izquierda","PDFE.Views.DocumentHolder.insertColumnRightText":"Columna derecha","PDFE.Views.DocumentHolder.insertColumnText":"Insertar columna","PDFE.Views.DocumentHolder.insertRowAboveText":"Fila arriba","PDFE.Views.DocumentHolder.insertRowBelowText":"Fila debajo","PDFE.Views.DocumentHolder.insertRowText":"Insertar fila","PDFE.Views.DocumentHolder.insertText":"Insertar","PDFE.Views.DocumentHolder.latexText":"LaTeX","PDFE.Views.DocumentHolder.leftText":"A la izquierda","PDFE.Views.DocumentHolder.mergeCellsText":"Unir celdas","PDFE.Views.DocumentHolder.mniImageFromFile":"Imagen desde archivo","PDFE.Views.DocumentHolder.mniImageFromStorage":"Imagen desde almacenamiento","PDFE.Views.DocumentHolder.mniImageFromUrl":"Imagen de URL","PDFE.Views.DocumentHolder.originalSizeText":"Tamaño actual","PDFE.Views.DocumentHolder.removeCommentText":"Eliminar","PDFE.Views.DocumentHolder.removeHyperlinkText":"Eliminar enlace","PDFE.Views.DocumentHolder.rightText":"A la derecha","PDFE.Views.DocumentHolder.rowText":"Fila","PDFE.Views.DocumentHolder.selectText":"Seleccionar","PDFE.Views.DocumentHolder.showEqToolbar":"Mostrar la barra de herramientas de ecuaciones","PDFE.Views.DocumentHolder.splitCellsText":"Dividir celda...","PDFE.Views.DocumentHolder.splitCellTitleText":"Dividir celda","PDFE.Views.DocumentHolder.tableText":"Tabla","PDFE.Views.DocumentHolder.textArrangeBack":"Enviar al fondo","PDFE.Views.DocumentHolder.textArrangeBackward":"Enviar atrás","PDFE.Views.DocumentHolder.textArrangeForward":"Traer al frente","PDFE.Views.DocumentHolder.textArrangeFront":"Traer al primer plano","PDFE.Views.DocumentHolder.textAxes":"Ejes","PDFE.Views.DocumentHolder.textAxisTitles":"Títulos de eje","PDFE.Views.DocumentHolder.textBottom":"Abajo ","PDFE.Views.DocumentHolder.textCenter":"Centro","PDFE.Views.DocumentHolder.textChartTitle":"Título de gráfico","PDFE.Views.DocumentHolder.textClearField":"Borrar campo","PDFE.Views.DocumentHolder.textCm":"cm","PDFE.Views.DocumentHolder.textColor":"Color","PDFE.Views.DocumentHolder.textCopy":"Copiar","PDFE.Views.DocumentHolder.textCrop":"Recortar","PDFE.Views.DocumentHolder.textCropFill":"Relleno","PDFE.Views.DocumentHolder.textCropFit":"Ajustar","PDFE.Views.DocumentHolder.textCustom":"Personalizado","PDFE.Views.DocumentHolder.textCut":"Cortar","PDFE.Views.DocumentHolder.textDataLabels":"Etiquetas de datos","PDFE.Views.DocumentHolder.textDistributeCols":"Distribuir columnas","PDFE.Views.DocumentHolder.textDistributeRows":"Distribuir filas","PDFE.Views.DocumentHolder.textEditPoints":"Modificar puntos","PDFE.Views.DocumentHolder.textErrorBars":"Barras de error","PDFE.Views.DocumentHolder.textExponential":"Exponencial","PDFE.Views.DocumentHolder.textFit":"Ajustar al ancho","PDFE.Views.DocumentHolder.textFlipH":"Voltear horizontalmente","PDFE.Views.DocumentHolder.textFlipV":"Voltear verticalmente","PDFE.Views.DocumentHolder.textFontSizeErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico entre 1 y 300","PDFE.Views.DocumentHolder.textFromFile":"Desde archivo","PDFE.Views.DocumentHolder.textFromStorage":"Desde almacenamiento","PDFE.Views.DocumentHolder.textFromUrl":"Desde URL","PDFE.Views.DocumentHolder.textGridLines":"Líneas de cuadrícula","PDFE.Views.DocumentHolder.textHorAxis":"Eje horizontal","PDFE.Views.DocumentHolder.textHorAxisSec":"Eje horizontal secundario","PDFE.Views.DocumentHolder.textHorizontalMajor":"Horizontal principal","PDFE.Views.DocumentHolder.textHorizontalMinor":"Horizontal secundario","PDFE.Views.DocumentHolder.textInnerBottom":"Abajo en el interior","PDFE.Views.DocumentHolder.textInnerTop":"Arriba en el interior","PDFE.Views.DocumentHolder.textLeft":"A la izquierda","PDFE.Views.DocumentHolder.textLeftData":"A la izquierda","PDFE.Views.DocumentHolder.textLeftOverlay":"Superposición a la izquierda","PDFE.Views.DocumentHolder.textLegendPos":"Leyenda","PDFE.Views.DocumentHolder.textLinear":"Lineal","PDFE.Views.DocumentHolder.textLinearForecast":"Pronóstico lineal","PDFE.Views.DocumentHolder.textLines":"Líneas","PDFE.Views.DocumentHolder.textMovingAverage":"Media móvil (2)","PDFE.Views.DocumentHolder.textNone":"No","PDFE.Views.DocumentHolder.textNoOverlay":"Sin superposición","PDFE.Views.DocumentHolder.textOuterTop":"Arriba en el exterior","PDFE.Views.DocumentHolder.textOverlay":"Superposición","PDFE.Views.DocumentHolder.textPaste":"Pegar","PDFE.Views.DocumentHolder.textRecognize":"Editar texto","PDFE.Views.DocumentHolder.textRedact":"Redactar texto","PDFE.Views.DocumentHolder.textRedo":"Rehacer","PDFE.Views.DocumentHolder.textReplace":"Reemplazar imagen","PDFE.Views.DocumentHolder.textResetCrop":"Restablecer recorte","PDFE.Views.DocumentHolder.textRight":"A la derecha","PDFE.Views.DocumentHolder.textRightOverlay":"Superposición a la derecha","PDFE.Views.DocumentHolder.textRotate":"Girar","PDFE.Views.DocumentHolder.textRotate270":"Girar 90° a la izquierda","PDFE.Views.DocumentHolder.textRotate90":"Girar 90° a la derecha","PDFE.Views.DocumentHolder.textSaveAsPicture":"Guardar como imagen","PDFE.Views.DocumentHolder.textShapeAlignBottom":"Alinear hacia abajo","PDFE.Views.DocumentHolder.textShapeAlignCenter":"Alinear al centro","PDFE.Views.DocumentHolder.textShapeAlignLeft":"Alinear a la izquierda","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"Alinear al medio","PDFE.Views.DocumentHolder.textShapeAlignRight":"Alinear a la derecha","PDFE.Views.DocumentHolder.textShapeAlignTop":"Alinear hacia arriba","PDFE.Views.DocumentHolder.textShapesMerge":"Fusionar formas","PDFE.Views.DocumentHolder.textShowLegendKeys":"Mostrar claves de leyenda","PDFE.Views.DocumentHolder.textShowUpDown":"Mostrar barras arriba/abajo","PDFE.Views.DocumentHolder.textStandardDeviation":"Desviación estándar","PDFE.Views.DocumentHolder.textStandardError":"Error estándar","PDFE.Views.DocumentHolder.textTop":"Arriba","PDFE.Views.DocumentHolder.textTrendline":"Línea de tendencia","PDFE.Views.DocumentHolder.textUndo":"Deshacer","PDFE.Views.DocumentHolder.textUpDownBars":"Barras arriba/abajo","PDFE.Views.DocumentHolder.textVertAxis":"Eje vertical","PDFE.Views.DocumentHolder.textVertAxisSec":"Eje vertical secundario","PDFE.Views.DocumentHolder.textVerticalMajor":"Vertical principal","PDFE.Views.DocumentHolder.textVerticalMinor":"Vertical secundario","PDFE.Views.DocumentHolder.tipIsLocked":"Otro usuario está editando este elemento ahora.","PDFE.Views.DocumentHolder.tipRecognize":"Editar texto","PDFE.Views.DocumentHolder.tipRedact":"Redactar texto","PDFE.Views.DocumentHolder.txtAddBottom":"Añadir borde inferior","PDFE.Views.DocumentHolder.txtAddFractionBar":"Añadir barra de fracción","PDFE.Views.DocumentHolder.txtAddHor":"Añadir línea horizontal","PDFE.Views.DocumentHolder.txtAddLB":"Añadir línea inferior izquierda","PDFE.Views.DocumentHolder.txtAddLeft":"Añadir borde izquierdo","PDFE.Views.DocumentHolder.txtAddLT":"Añadir línea superior izquierda","PDFE.Views.DocumentHolder.txtAddRight":"Añadir borde derecho","PDFE.Views.DocumentHolder.txtAddTop":"Añadir borde superior","PDFE.Views.DocumentHolder.txtAddVer":"Añadir línea vertical","PDFE.Views.DocumentHolder.txtAlign":"Alinear","PDFE.Views.DocumentHolder.txtAlignToChar":"Alinear a carácter","PDFE.Views.DocumentHolder.txtArrange":"Arreglar","PDFE.Views.DocumentHolder.txtBackground":"Fondo","PDFE.Views.DocumentHolder.txtBorderProps":"Propiedades de borde","PDFE.Views.DocumentHolder.txtBottom":"Abajo ","PDFE.Views.DocumentHolder.txtColumnAlign":"Alineación de columna","PDFE.Views.DocumentHolder.txtCopyPage":"Copiar página","PDFE.Views.DocumentHolder.txtCutPage":"Cortar página","PDFE.Views.DocumentHolder.txtDecreaseArg":"Disminuir tamaño de argumento","PDFE.Views.DocumentHolder.txtDeleteArg":"Eliminar argumento","PDFE.Views.DocumentHolder.txtDeleteBreak":"Eliminar salto manual","PDFE.Views.DocumentHolder.txtDeleteChars":"Eliminar carácteres encerrados","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Eliminar caracteres encerrados y separadores","PDFE.Views.DocumentHolder.txtDeleteEq":"Eliminar ecuación","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"Eliminar carácter","PDFE.Views.DocumentHolder.txtDeletePage":"Eliminar página","PDFE.Views.DocumentHolder.txtDeleteRadical":"Eliminar radical","PDFE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","PDFE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","PDFE.Views.DocumentHolder.txtEmpty":"(Vacío)","PDFE.Views.DocumentHolder.txtFractionLinear":"Cambiar a fracción lineal","PDFE.Views.DocumentHolder.txtFractionSkewed":"Cambiar a fracción sesgada","PDFE.Views.DocumentHolder.txtFractionStacked":"Cambiar a fracción apilada","PDFE.Views.DocumentHolder.txtGroup":"Agrupar","PDFE.Views.DocumentHolder.txtGroupCharOver":"Carácter por encima del texto","PDFE.Views.DocumentHolder.txtGroupCharUnder":"Carácter por debajo del texto","PDFE.Views.DocumentHolder.txtHideBottom":"Ocultar borde inferior","PDFE.Views.DocumentHolder.txtHideBottomLimit":"Ocultar límite inferior","PDFE.Views.DocumentHolder.txtHideCloseBracket":"Ocultar corchete de cierre","PDFE.Views.DocumentHolder.txtHideDegree":"Ocultar grado","PDFE.Views.DocumentHolder.txtHideHor":"Ocultar línea horizontal","PDFE.Views.DocumentHolder.txtHideLB":"Ocultar línea inferior izquierda ","PDFE.Views.DocumentHolder.txtHideLeft":"Ocultar borde izquierdo","PDFE.Views.DocumentHolder.txtHideLT":"Ocultar línea superior izquierda","PDFE.Views.DocumentHolder.txtHideOpenBracket":"Ocultar corchete de apertura","PDFE.Views.DocumentHolder.txtHidePlaceholder":"Ocultar marcador de posición","PDFE.Views.DocumentHolder.txtHideRight":"Ocultar borde derecho","PDFE.Views.DocumentHolder.txtHideTop":"Ocultar borde superior","PDFE.Views.DocumentHolder.txtHideTopLimit":"Ocultar límite superior","PDFE.Views.DocumentHolder.txtHideVer":"Ocultar línea vertical","PDFE.Views.DocumentHolder.txtIncreaseArg":"Aumentar el tamaño del argumento","PDFE.Views.DocumentHolder.txtInsertArgAfter":"Insertar argumento después","PDFE.Views.DocumentHolder.txtInsertArgBefore":"Insertar argumento antes","PDFE.Views.DocumentHolder.txtInsertBreak":"Insertar salto manual","PDFE.Views.DocumentHolder.txtInsertEqAfter":"Insertar ecuación después","PDFE.Views.DocumentHolder.txtInsertEqBefore":"Insertar ecuación antes","PDFE.Views.DocumentHolder.txtLimitChange":"Cambiar ubicación de límites","PDFE.Views.DocumentHolder.txtLimitOver":"Límite sobre el texto","PDFE.Views.DocumentHolder.txtLimitUnder":"Límite debajo del texto","PDFE.Views.DocumentHolder.txtMatchBrackets":"Situar cochetes a la altura del argumento","PDFE.Views.DocumentHolder.txtMatrixAlign":"Alineación de la matriz","PDFE.Views.DocumentHolder.txtNewPageAfter":"Insertar página en blanco después","PDFE.Views.DocumentHolder.txtNewPageBefore":"Insertar página en blanco antes","PDFE.Views.DocumentHolder.txtOpacity":"Opacidad ","PDFE.Views.DocumentHolder.txtOverbar":"Barra sobre texto","PDFE.Views.DocumentHolder.txtPastePage":"Pegar página","PDFE.Views.DocumentHolder.txtPastePageAfter":"Pegar página después de","PDFE.Views.DocumentHolder.txtPastePageBefore":"Pegar página antes de","PDFE.Views.DocumentHolder.txtPercentage":"Porcentaje","PDFE.Views.DocumentHolder.txtPressLink":"Pulse {0} y haga clic en el enlace","PDFE.Views.DocumentHolder.txtPrintSelection":"Imprimir selección","PDFE.Views.DocumentHolder.txtRemFractionBar":"Quitar la barra de fracción","PDFE.Views.DocumentHolder.txtRemLimit":"Eliminar límite","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"Eliminar carácter de acento","PDFE.Views.DocumentHolder.txtRemoveBar":"Eliminar barra","PDFE.Views.DocumentHolder.txtRemScripts":"Eliminar índices","PDFE.Views.DocumentHolder.txtRemSubscript":"Eliminar subíndice","PDFE.Views.DocumentHolder.txtRemSuperscript":"Eliminar superíndice","PDFE.Views.DocumentHolder.txtRotateLeft":"Girar a la izquierda","PDFE.Views.DocumentHolder.txtRotateRight":"Girar a la derecha","PDFE.Views.DocumentHolder.txtScriptsAfter":"Índices después de texto","PDFE.Views.DocumentHolder.txtScriptsBefore":"Índices antes de texto","PDFE.Views.DocumentHolder.txtSelectAll":"Seleccionar todo","PDFE.Views.DocumentHolder.txtShowBottomLimit":"Mostrar límite inferior","PDFE.Views.DocumentHolder.txtShowCloseBracket":"Mostrar corchete de cierre","PDFE.Views.DocumentHolder.txtShowDegree":"Mostrar grado","PDFE.Views.DocumentHolder.txtShowOpenBracket":"Mostrar corchete de apertura","PDFE.Views.DocumentHolder.txtShowPlaceholder":"Mostrar marcador de posición","PDFE.Views.DocumentHolder.txtShowTopLimit":"Mostrar límite superior","PDFE.Views.DocumentHolder.txtStretchBrackets":"Estirar corchetes","PDFE.Views.DocumentHolder.txtTop":"Arriba","PDFE.Views.DocumentHolder.txtUnderbar":"Barra debajo de texto","PDFE.Views.DocumentHolder.txtUngroup":"Desagrupar","PDFE.Views.DocumentHolder.txtWarnUrl":"Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. Para proteger su ordenador, haga clic solo en los hiperenlaces de fuentes fiables. Esta ubicación puede ser insegura:

{0}

¿Está seguro de que desea continuar?","PDFE.Views.DocumentHolder.unicodeText":"Unicode","PDFE.Views.DocumentHolder.vertAlignText":"Alineación vertical","PDFE.Views.FileMenu.ariaFileMenu":"Menú Archivo","PDFE.Views.FileMenu.btnBackCaption":"Abrir ubicación del archivo","PDFE.Views.FileMenu.btnCloseEditor":"Cerrar archivo","PDFE.Views.FileMenu.btnCloseMenuCaption":"Atrás","PDFE.Views.FileMenu.btnCreateNewCaption":"Crear nuevo","PDFE.Views.FileMenu.btnDownloadCaption":"Descargar como","PDFE.Views.FileMenu.btnExitCaption":"Cerrar","PDFE.Views.FileMenu.btnFileOpenCaption":"Abrir","PDFE.Views.FileMenu.btnHelpCaption":"Ayuda","PDFE.Views.FileMenu.btnHistoryCaption":"Historial de versiones","PDFE.Views.FileMenu.btnInfoCaption":"Info sobre el documento","PDFE.Views.FileMenu.btnPrintCaption":"Imprimir","PDFE.Views.FileMenu.btnProtectCaption":"Proteger","PDFE.Views.FileMenu.btnRecentFilesCaption":"Abrir recientes","PDFE.Views.FileMenu.btnRenameCaption":"Renombrar","PDFE.Views.FileMenu.btnReturnCaption":"Volver a Documento","PDFE.Views.FileMenu.btnRightsCaption":"Permisos de acceso","PDFE.Views.FileMenu.btnSaveAsCaption":"Guardar como","PDFE.Views.FileMenu.btnSaveCaption":"Guardar","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"Guardar copia como","PDFE.Views.FileMenu.btnSettingsCaption":"Configuración avanzada","PDFE.Views.FileMenu.btnSuggestCaption":"Sugerir una función","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"Cambiar a móvil","PDFE.Views.FileMenu.btnToEditCaption":"Editar documento","PDFE.Views.FileMenu.textDownload":"Descargar","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"Documento en blanco","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Crear nuevo","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Añadir autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Añadir texto","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicación","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Cambiar permisos de acceso","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentario","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comunes","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Creado","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Información del documento","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Vista web rápida","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Cargando...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última modificación por","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificación","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"No","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Propietario","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"Páginas","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Tamaño de la página","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Párrafos","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"Generador de PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF etiquetado","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"Versión de PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Ubicación","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personas que tienen permisos","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Caracteres con espacios","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Estadísticas","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Asunto","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Caracteres","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Cargado","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"Palabras","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"Si","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Permisos de acceso","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Cambiar permisos de acceso","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"Personas que tienen permisos","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Con contraseña","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger documento","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"Con firma","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Se han añadido firmas válidas al documento.
El documento está protegido contra la edición.","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garantizar la integridad del documento añadiendo una
firma digital invisible","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar documento","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"La edición eliminará las firmas del documento.
¿Continuar?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Este documento se ha protegido con una contraseña","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Cifrar este documento con una contraseña","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Este documento necesita ser firmado","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Se han añadido firmas válidas al documento. El documento está protegido contra la edición.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algunas de las firmas digitales del documento no son válidas o no se han podido verificar. El documento está protegido contra la edición.","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"Ver firmas","PDFE.Views.FileMenuPanels.Settings.okButtonText":"Aplicar","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modo de coedición","PDFE.Views.FileMenuPanels.Settings.strFast":"Rápido","PDFE.Views.FileMenuPanels.Settings.strFontRender":"Renderizado de las fuentes","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Accesos directos de teclado","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"Interfaz RTL","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"Cambios de colaboración en tiempo real","PDFE.Views.FileMenuPanels.Settings.strShowComments":"Mostrar comentarios en el texto","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Mostrar los cambios de otros usuarios","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Mostrar comentarios resueltos","PDFE.Views.FileMenuPanels.Settings.strStrict":"Estricto","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"Estilo de pestaña","PDFE.Views.FileMenuPanels.Settings.strTheme":"Tema de la interfaz","PDFE.Views.FileMenuPanels.Settings.strUnit":"Unidad de medida","PDFE.Views.FileMenuPanels.Settings.strZoom":"Valor de zoom predeterminado","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"Guardar información de autorrecuperación","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"Guardar automáticamente","PDFE.Views.FileMenuPanels.Settings.textDisabled":"Desactivado","PDFE.Views.FileMenuPanels.Settings.textFill":"Rellenar","PDFE.Views.FileMenuPanels.Settings.textForceSave":"Guardar versiones intermedias","PDFE.Views.FileMenuPanels.Settings.textLine":"Línea","PDFE.Views.FileMenuPanels.Settings.textMinute":"Cada minuto","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Configuración avanzada","PDFE.Views.FileMenuPanels.Settings.txtAll":"Ver todo","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"Aspecto","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"Modo de caché predeterminado","PDFE.Views.FileMenuPanels.Settings.txtCm":"Centímetro","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"Colaboración","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"Personalizar","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Personalizar acceso rápido","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"Activar el modo oscuro para los documentos","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"Editar y guardar","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"Coedición en tiempo real. Todos los cambios se guardan automáticamente","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"Ajustar a la página","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"Ajustar al ancho","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Jeroglíficos","PDFE.Views.FileMenuPanels.Settings.txtInch":"Pulgada","PDFE.Views.FileMenuPanels.Settings.txtLast":"Ver últimos","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"Utilizados recientemente","PDFE.Views.FileMenuPanels.Settings.txtMac":"como OS X","PDFE.Views.FileMenuPanels.Settings.txtNative":"Nativo","PDFE.Views.FileMenuPanels.Settings.txtNone":"No ver ninguno","PDFE.Views.FileMenuPanels.Settings.txtPt":"Punto","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"Mostrar el botón «Impresión rápida» en el encabezado del editor","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"El documento se imprimirá en la última impresora seleccionada o predeterminada","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"Activar el soporte para lectores de pantalla","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"Utilizar el botón \"Guardar\" para sincronizar los cambios que usted y los demás realicen","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"Utilizar el color de la barra de herramientas como fondo de las pestañas","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"Utilizar la tecla «Alt» para navegar por la interfaz de usuario mediante el teclado","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"Utilizar la minibarra de herramientas al seleccionar texto","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Utilizar la tecla «Opción» para navegar por la interfaz de usuario mediante el teclado","PDFE.Views.FileMenuPanels.Settings.txtWin":"como Windows","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"Área de trabajo","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"Personalizar acceso rápido","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Descargar como","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Guardar copia como","PDFE.Views.FormatSettingsDialog.textAfter":"Después sin espacio","PDFE.Views.FormatSettingsDialog.textAfterSpace":"Después con espacio","PDFE.Views.FormatSettingsDialog.textBefore":"Antes sin espacio","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"Antes con espacio","PDFE.Views.FormatSettingsDialog.textCategory":"Categoría","PDFE.Views.FormatSettingsDialog.textDate":"Fecha","PDFE.Views.FormatSettingsDialog.textDecimal":"Decimales","PDFE.Views.FormatSettingsDialog.textFormat":"Formato","PDFE.Views.FormatSettingsDialog.textLocation":"Ubicación del símbolo","PDFE.Views.FormatSettingsDialog.textMask":"Máscara arbitraria","PDFE.Views.FormatSettingsDialog.textNegative":"Estilo de número negativo","PDFE.Views.FormatSettingsDialog.textNone":"No","PDFE.Views.FormatSettingsDialog.textNumber":"Número","PDFE.Views.FormatSettingsDialog.textParens":"Mostrar paréntesis","PDFE.Views.FormatSettingsDialog.textPercent":"Porcentaje","PDFE.Views.FormatSettingsDialog.textPhone":"Número de teléfono","PDFE.Views.FormatSettingsDialog.textRed":"Utilizar texto rojo","PDFE.Views.FormatSettingsDialog.textReg":"Expresión regular","PDFE.Views.FormatSettingsDialog.textSeparator":"Estilo de separador","PDFE.Views.FormatSettingsDialog.textSpecial":"Especial","PDFE.Views.FormatSettingsDialog.textSSN":"Número de seguridad social","PDFE.Views.FormatSettingsDialog.textSymbol":"Símbolo de moneda","PDFE.Views.FormatSettingsDialog.textTime":"Hora","PDFE.Views.FormatSettingsDialog.textTitle":"Configuración de formato","PDFE.Views.FormatSettingsDialog.textZipCode":"Código postal","PDFE.Views.FormatSettingsDialog.textZipCode4":"Código postal + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"Personalizado","PDFE.Views.FormatSettingsDialog.txtSample":"Ejemplo:","PDFE.Views.FormSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.FormSettings.textAlways":"Siempre","PDFE.Views.FormSettings.textAnamorphic":"No proporcionalmente","PDFE.Views.FormSettings.textArabic":"Árabe","PDFE.Views.FormSettings.textAutofit":"Ajuste automático","PDFE.Views.FormSettings.textBackgroundColor":"Color del fondo","PDFE.Views.FormSettings.textBehavior":"Comportamiento","PDFE.Views.FormSettings.textBeveled":"Biselado","PDFE.Views.FormSettings.textBorder":"Borde","PDFE.Views.FormSettings.textButton":"Botón","PDFE.Views.FormSettings.textChbStyle":"Estilo de casilla de verificación","PDFE.Views.FormSettings.textCheck":"Casilla","PDFE.Views.FormSettings.textCheckbox":"Casilla","PDFE.Views.FormSettings.textCheckDefault":"La casilla de verificación está marcada de forma predeterminada","PDFE.Views.FormSettings.textCircle":"Círculo","PDFE.Views.FormSettings.textClear":"Limpiar","PDFE.Views.FormSettings.textColor":"Color","PDFE.Views.FormSettings.textComb":"Peine de caracteres","PDFE.Views.FormSettings.textCombobox":"Cuadro combinado","PDFE.Views.FormSettings.textCommit":"Confirmar inmediatamente el valor seleccionado","PDFE.Views.FormSettings.textCross":"Cruz","PDFE.Views.FormSettings.textCustomText":"Permitir texto personalizado","PDFE.Views.FormSettings.textDashed":"Con guiones","PDFE.Views.FormSettings.textDate":"Fecha","PDFE.Views.FormSettings.textDateField":"Campo Fecha y hora","PDFE.Views.FormSettings.textDiamond":"Rombo","PDFE.Views.FormSettings.textDown":"Abajo","PDFE.Views.FormSettings.textExport":"Valor de exportación","PDFE.Views.FormSettings.textField":"Campo de texto","PDFE.Views.FormSettings.textFitBounds":"Ajustar a los bordes","PDFE.Views.FormSettings.textFormat":"Formato","PDFE.Views.FormSettings.textFromFile":"Desde archivo","PDFE.Views.FormSettings.textFromStorage":"Desde almacenamiento","PDFE.Views.FormSettings.textFromUrl":"Desde URL","PDFE.Views.FormSettings.textHindi":"Hindi","PDFE.Views.FormSettings.textHover":"Volteo","PDFE.Views.FormSettings.textHowScale":"Escala","PDFE.Views.FormSettings.textIcon":"Icono","PDFE.Views.FormSettings.textIconLeft":"Icono izquierda, etiqueta derecha","PDFE.Views.FormSettings.textIconOnly":"Solo icono","PDFE.Views.FormSettings.textIconTop":"Icono arriba, etiqueta abajo","PDFE.Views.FormSettings.textImage":"Imagen","PDFE.Views.FormSettings.textInset":"Recuadro","PDFE.Views.FormSettings.textInvert":"Invertir","PDFE.Views.FormSettings.textLabel":"Etiqueta","PDFE.Views.FormSettings.textLabelLeft":"Etiqueta izquierda, icono derecha","PDFE.Views.FormSettings.textLabelTop":"Etiqueta arriba, icono abajo","PDFE.Views.FormSettings.textLayout":"Diseño","PDFE.Views.FormSettings.textListBox":"Cuadro de lista","PDFE.Views.FormSettings.textLock":"Bloquear","PDFE.Views.FormSettings.textMask":"Máscara arbitraria","PDFE.Views.FormSettings.textMaxChars":"Límite de caracteres","PDFE.Views.FormSettings.textMedium":"Medio","PDFE.Views.FormSettings.textMulti":"Multilínea","PDFE.Views.FormSettings.textMultisel":"Selección múltiple","PDFE.Views.FormSettings.textName":"Nombre","PDFE.Views.FormSettings.textNever":"Nunca","PDFE.Views.FormSettings.textNoBorder":"Sin bordes","PDFE.Views.FormSettings.textNoFill":"Sin relleno","PDFE.Views.FormSettings.textNone":"No","PDFE.Views.FormSettings.textNormal":"Arriba","PDFE.Views.FormSettings.textNumber":"Número","PDFE.Views.FormSettings.textNumeral":"Numeral","PDFE.Views.FormSettings.textOrientation":"Orientación ","PDFE.Views.FormSettings.textOutline":"Esquema","PDFE.Views.FormSettings.textOverlay":"Etiqueta sobre icono","PDFE.Views.FormSettings.textPassword":"Contraseña","PDFE.Views.FormSettings.textPercent":"Porcentaje","PDFE.Views.FormSettings.textPhone":"Número de teléfono","PDFE.Views.FormSettings.textPlaceholder":"Marcador de posición","PDFE.Views.FormSettings.textPlacement":"Ubicación del icono","PDFE.Views.FormSettings.textProportional":"Proporcionalmente","PDFE.Views.FormSettings.textPush":"Empuje","PDFE.Views.FormSettings.textRadiobox":"Botón de opción","PDFE.Views.FormSettings.textRadioChoice":"Botón de radio","PDFE.Views.FormSettings.textRadioDefault":"El botón está marcado de forma predeterminada","PDFE.Views.FormSettings.textRadioStyle":"Estilo de botón","PDFE.Views.FormSettings.textReadonly":"Sólo lectura","PDFE.Views.FormSettings.textReg":"Expresión regular","PDFE.Views.FormSettings.textRequired":"Requerido","PDFE.Views.FormSettings.textScale":"Cuándo escalar","PDFE.Views.FormSettings.textScroll":"Desplazar texto largo","PDFE.Views.FormSettings.textSelect":"Seleccionar","PDFE.Views.FormSettings.textSolid":"Sólido","PDFE.Views.FormSettings.textSpecial":"Especial","PDFE.Views.FormSettings.textSquare":"Cuadrado","PDFE.Views.FormSettings.textSSN":"Número de seguridad social","PDFE.Views.FormSettings.textStar":"Estrella","PDFE.Views.FormSettings.textState":"Estado","PDFE.Views.FormSettings.textStyle":"Estilo","PDFE.Views.FormSettings.textText":"Texto","PDFE.Views.FormSettings.textTextOnly":"Solo etiqueta","PDFE.Views.FormSettings.textThick":"Grueso","PDFE.Views.FormSettings.textThickness":"Grosor","PDFE.Views.FormSettings.textThin":"Fino","PDFE.Views.FormSettings.textTime":"Hora","PDFE.Views.FormSettings.textTip":"Sugerencia","PDFE.Views.FormSettings.textTipAdd":"Añadir valor nuevo","PDFE.Views.FormSettings.textTipDelete":"Eliminar valor","PDFE.Views.FormSettings.textTipDown":"Mover hacia abajo","PDFE.Views.FormSettings.textTipUp":"Mover hacia arriba","PDFE.Views.FormSettings.textTooBig":"La imagen es demasiado grande","PDFE.Views.FormSettings.textTooSmall":"La imagen es demasiado pequeña","PDFE.Views.FormSettings.textUnderline":"Subrayado","PDFE.Views.FormSettings.textUnison":"Los botones con el mismo nombre y elección se seleccionan al unísono","PDFE.Views.FormSettings.textUnlock":"Desbloquear","PDFE.Views.FormSettings.textValue":"Opciones de valor","PDFE.Views.FormSettings.textZipCode":"Código postal","PDFE.Views.FormSettings.textZipCode4":"Código postal + 4","PDFE.Views.FormSettings.txtCustom":"Personalizado","PDFE.Views.FormsTab.capBtnCheckBox":"Casilla","PDFE.Views.FormsTab.capBtnComboBox":"Cuadro combinado","PDFE.Views.FormsTab.capBtnDropDown":"Cuadro de lista","PDFE.Views.FormsTab.capBtnEmail":"Dirección de correo electrónico","PDFE.Views.FormsTab.capBtnImage":"Imagen","PDFE.Views.FormsTab.capBtnNext":"Campo siguiente","PDFE.Views.FormsTab.capBtnPhone":"Número de teléfono","PDFE.Views.FormsTab.capBtnPrev":"Campo anterior","PDFE.Views.FormsTab.capBtnRadioBox":"Botón de opción","PDFE.Views.FormsTab.capBtnText":"Campo de texto","PDFE.Views.FormsTab.capCreditCard":"Tarjeta de crédito","PDFE.Views.FormsTab.capDateTime":"Fecha y hora","PDFE.Views.FormsTab.capZipCode":"Código postal","PDFE.Views.FormsTab.textAnyone":"Cualquiera","PDFE.Views.FormsTab.textClear":"Borrar campos","PDFE.Views.FormsTab.textClearFields":"Borrar todos los campos","PDFE.Views.FormsTab.tipCheckBox":"Insertar casilla","PDFE.Views.FormsTab.tipComboBox":"Insertar cuadro combinado","PDFE.Views.FormsTab.tipCreditCard":"Insertar el número de tarjeta de crédito","PDFE.Views.FormsTab.tipDateTime":"Insertar fecha y hora","PDFE.Views.FormsTab.tipDropDown":"Insertar cuadro de lista","PDFE.Views.FormsTab.tipEmailField":"Insertar dirección de correo electrónico","PDFE.Views.FormsTab.tipImageField":"Insertar imagen","PDFE.Views.FormsTab.tipNextForm":"Ir al campo siguiente","PDFE.Views.FormsTab.tipPhoneField":"Insertar número de teléfono","PDFE.Views.FormsTab.tipPrevForm":"Ir al campo anterior","PDFE.Views.FormsTab.tipRadioBox":"Insertar botón de opción","PDFE.Views.FormsTab.tipTextField":"Insertar campo de texto","PDFE.Views.FormsTab.tipZipCode":"Insertar código postal","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"Mostrar","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"Vincular a","PDFE.Views.HyperlinkSettingsDialog.textDefault":"Fragmento de texto seleccionado","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"Introduzca título aquí","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"Introduzca enlace aquí","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"Introduzca informacíon sobre herramientas aquí","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"Enlace externo","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"Página en este documento","PDFE.Views.HyperlinkSettingsDialog.textPages":"Páginas","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"Seleccionar archivo","PDFE.Views.HyperlinkSettingsDialog.textTipText":"Información en pantalla","PDFE.Views.HyperlinkSettingsDialog.textTitle":"Ajustes de enlace","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"Utilice las barras de desplazamiento, el ratón y el zoom para seleccionar la vista de destino y, a continuación, pulse Establecer enlace para crear el destino del enlace.","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"Crear Ir a ver","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo es obligatorio","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"Primera página","PDFE.Views.HyperlinkSettingsDialog.txtLast":"Última página","PDFE.Views.HyperlinkSettingsDialog.txtNext":"Página siguiente","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"El campo debe ser una URL en el formato \"http://www.example.com\"","PDFE.Views.HyperlinkSettingsDialog.txtPage":"Página","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"Ir a una vista de página","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"Página anterior","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"Establecer enlace","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo está limitado a 2083 caracteres","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Introduzca la dirección web o seleccione un archivo","PDFE.Views.ImageSettings.strTransparency":"Opacidad ","PDFE.Views.ImageSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.ImageSettings.textCrop":"Recortar","PDFE.Views.ImageSettings.textCropFill":"Relleno","PDFE.Views.ImageSettings.textCropFit":"Ajustar","PDFE.Views.ImageSettings.textCropToShape":"Recortar a la forma","PDFE.Views.ImageSettings.textEdit":"Editar","PDFE.Views.ImageSettings.textEditObject":"Editar objeto","PDFE.Views.ImageSettings.textFitPage":"Ajustar a la página","PDFE.Views.ImageSettings.textFlip":"Voltear","PDFE.Views.ImageSettings.textFromFile":"Desde archivo","PDFE.Views.ImageSettings.textFromStorage":"Desde almacenamiento","PDFE.Views.ImageSettings.textFromUrl":"Desde URL","PDFE.Views.ImageSettings.textHeight":"Altura","PDFE.Views.ImageSettings.textHint270":"Girar 90° a la izquierda","PDFE.Views.ImageSettings.textHint90":"Girar 90° a la derecha","PDFE.Views.ImageSettings.textHintFlipH":"Voltear horizontalmente","PDFE.Views.ImageSettings.textHintFlipV":"Voltear verticalmente","PDFE.Views.ImageSettings.textInsert":"Reemplazar imagen","PDFE.Views.ImageSettings.textOriginalSize":"Tamaño actual","PDFE.Views.ImageSettings.textRecentlyUsed":"Usados recientemente","PDFE.Views.ImageSettings.textResetCrop":"Restablecer recorte","PDFE.Views.ImageSettings.textRotate90":"Girar 90°","PDFE.Views.ImageSettings.textRotation":"Rotación","PDFE.Views.ImageSettings.textSize":"Tamaño","PDFE.Views.ImageSettings.textWidth":"Ancho","PDFE.Views.ImageSettingsAdvanced.textAlt":"Texto alternativo","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"Descripción","PDFE.Views.ImageSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ImageSettingsAdvanced.textAngle":"Ángulo","PDFE.Views.ImageSettingsAdvanced.textCenter":"Centro","PDFE.Views.ImageSettingsAdvanced.textFlipped":"Volteado","PDFE.Views.ImageSettingsAdvanced.textFrom":"De","PDFE.Views.ImageSettingsAdvanced.textGeneral":"General","PDFE.Views.ImageSettingsAdvanced.textHeight":"Altura","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal ","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","PDFE.Views.ImageSettingsAdvanced.textImageName":"Nombre de imagen","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"Proporciones constantes","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"Tamaño actual","PDFE.Views.ImageSettingsAdvanced.textPlacement":"Ubicación","PDFE.Views.ImageSettingsAdvanced.textPosition":"Posición","PDFE.Views.ImageSettingsAdvanced.textRotation":"Rotación","PDFE.Views.ImageSettingsAdvanced.textSize":"Tamaño","PDFE.Views.ImageSettingsAdvanced.textTitle":"Imagen - Ajustes avanzados","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"Esquina superior izquierda","PDFE.Views.ImageSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","PDFE.Views.ImageSettingsAdvanced.textWidth":"Ancho","PDFE.Views.InsTab.capBlankPage":"Página en blanco","PDFE.Views.InsTab.capBtnDateTime":"Fecha y hora","PDFE.Views.InsTab.capBtnInsHeaderFooter":"Encabezado y pie de página","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"Símbolo","PDFE.Views.InsTab.capBtnPageNum":"Número de página","PDFE.Views.InsTab.capInsertChart":"Gráfico","PDFE.Views.InsTab.capInsertEquation":"Ecuación","PDFE.Views.InsTab.capInsertHyperlink":"Enlace","PDFE.Views.InsTab.capInsertImage":"Imagen","PDFE.Views.InsTab.capInsertShape":"Forma","PDFE.Views.InsTab.capInsertTable":"Tabla","PDFE.Views.InsTab.capInsertText":"Cuadro de texto","PDFE.Views.InsTab.capInsertTextArt":"Text Art","PDFE.Views.InsTab.capInsPage":"Insertar página","PDFE.Views.InsTab.mniCustomTable":"Insertar tabla personalizada","PDFE.Views.InsTab.mniImageFromFile":"Imagen desde archivo","PDFE.Views.InsTab.mniImageFromStorage":"Imagen desde almacenamiento","PDFE.Views.InsTab.mniImageFromUrl":"Imagen desde URL","PDFE.Views.InsTab.mniInsertSSE":"Insertar hoja de cálculo","PDFE.Views.InsTab.textAlpha":"Letra minúscula griega Alfa","PDFE.Views.InsTab.textBetta":"Letra minúscula griega Beta","PDFE.Views.InsTab.textBlackHeart":"Corazón negro","PDFE.Views.InsTab.textBullet":"Viñeta","PDFE.Views.InsTab.textCopyright":"Signo de «copyright»","PDFE.Views.InsTab.textDegree":"Símbolo de grado","PDFE.Views.InsTab.textDelta":"Letra minúscula griega Delta","PDFE.Views.InsTab.textDivision":"Signo de división","PDFE.Views.InsTab.textDollar":"Signo de dólar","PDFE.Views.InsTab.textEuro":"Signo de euro","PDFE.Views.InsTab.textGreaterEqual":"Mayor que o igual a","PDFE.Views.InsTab.textInfinity":"Infinito","PDFE.Views.InsTab.textLessEqual":"Menor que o igual a","PDFE.Views.InsTab.textLetterPi":"Letra minúscula griega Pi","PDFE.Views.InsTab.textMoreSymbols":"Más símbolos","PDFE.Views.InsTab.textNotEqualTo":"No igual a","PDFE.Views.InsTab.textOneHalf":"Fracción vulgar a la mitad","PDFE.Views.InsTab.textOneQuarter":"Fracción vulgar de un cuarto","PDFE.Views.InsTab.textPlusMinus":"Signo de más-menos","PDFE.Views.InsTab.textRecentlyUsed":"Usados recientemente","PDFE.Views.InsTab.textRegistered":"Signo de marca registrada","PDFE.Views.InsTab.textSection":"Signo de sección","PDFE.Views.InsTab.textSmile":"Cara blanca sonriente","PDFE.Views.InsTab.textSquareRoot":"Raíz cuadrada","PDFE.Views.InsTab.textTilde":"Tilde","PDFE.Views.InsTab.textTradeMark":"Signo de marca comercial","PDFE.Views.InsTab.textYen":"Signo de yen","PDFE.Views.InsTab.tipChangeChart":"Cambiar tipo de gráfico","PDFE.Views.InsTab.tipDateTime":"Insertar la fecha y hora actuales","PDFE.Views.InsTab.tipEditHeaderFooter":"Editar encabezado o pie de página","PDFE.Views.InsTab.tipInsertChart":"Insertar gráfico","PDFE.Views.InsTab.tipInsertEquation":"Insertar ecuación","PDFE.Views.InsTab.tipInsertHorizontalText":"Insertar cuadro de texto horizontal","PDFE.Views.InsTab.tipInsertHyperlink":"Añadir enlace ","PDFE.Views.InsTab.tipInsertImage":"Insertar imagen","PDFE.Views.InsTab.tipInsertPage":"Insertar página en blanco","PDFE.Views.InsTab.tipInsertPageAfter":"Insertar página en blanco después","PDFE.Views.InsTab.tipInsertShape":"Insertar forma","PDFE.Views.InsTab.tipInsertSmartArt":"Insertar SmartArt","PDFE.Views.InsTab.tipInsertSymbol":"Insertar símbolo","PDFE.Views.InsTab.tipInsertTable":"Insertar tabla","PDFE.Views.InsTab.tipInsertText":"Insertar cuadro de texto","PDFE.Views.InsTab.tipInsertTextArt":"Insertar Text Art","PDFE.Views.InsTab.tipInsertVerticalText":"Insertar cuadro de texto vertical","PDFE.Views.InsTab.tipPageNum":"Insertar número de página","PDFE.Views.InsTab.txtNewPageAfter":"Insertar página en blanco después","PDFE.Views.InsTab.txtNewPageBefore":"Insertar página en blanco antes","PDFE.Views.LeftMenu.ariaLeftMenu":"Menú de la izquierda","PDFE.Views.LeftMenu.tipAbout":"Acerca de","PDFE.Views.LeftMenu.tipChat":"Chat","PDFE.Views.LeftMenu.tipComments":"Comentarios","PDFE.Views.LeftMenu.tipNavigation":"Navegación","PDFE.Views.LeftMenu.tipOutline":"Encabezados","PDFE.Views.LeftMenu.tipPageThumbnails":"Miniaturas de página","PDFE.Views.LeftMenu.tipPlugins":"Extensiones","PDFE.Views.LeftMenu.tipSearch":"Buscar","PDFE.Views.LeftMenu.tipSupport":"Sugerencias y ayuda","PDFE.Views.LeftMenu.tipTitles":"Títulos","PDFE.Views.LeftMenu.txtDeveloper":"MODO DE DESARROLLO","PDFE.Views.LeftMenu.txtEditor":"Editor de PDF","PDFE.Views.LeftMenu.txtLimit":"Limitar acceso","PDFE.Views.LeftMenu.txtTrial":"MODO DE PRUEBA","PDFE.Views.LeftMenu.txtTrialDev":"Modo desarrollador de prueba","PDFE.Views.Navigation.strNavigate":"Encabezados","PDFE.Views.Navigation.txtClosePanel":"Cerrar encabezados","PDFE.Views.Navigation.txtCollapse":"Desplegar todo","PDFE.Views.Navigation.txtEmptyItem":"Encabezado vacío","PDFE.Views.Navigation.txtEmptyViewer":"No hay títulos en el documento.","PDFE.Views.Navigation.txtExpand":"Expandir todo","PDFE.Views.Navigation.txtExpandToLevel":"Expandir a nivel","PDFE.Views.Navigation.txtFontSize":"Tamaño de la fuente","PDFE.Views.Navigation.txtLarge":"Grande","PDFE.Views.Navigation.txtMedium":"Medio","PDFE.Views.Navigation.txtSettings":"Ajustes de los títulos","PDFE.Views.Navigation.txtSmall":"Pequeño","PDFE.Views.Navigation.txtWrapHeadings":"Ajustar títulos largos","PDFE.Views.PageThumbnails.textClosePanel":"Cerrar las miniaturas de las páginas","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"Resaltar la parte visible de la página","PDFE.Views.PageThumbnails.textPageThumbnails":"Miniaturas de página","PDFE.Views.PageThumbnails.textThumbnailsSettings":"Configuración de las miniaturas","PDFE.Views.PageThumbnails.textThumbnailsSize":"Tamaño de las miniaturas","PDFE.Views.ParagraphSettings.strLineHeight":"Interlineado","PDFE.Views.ParagraphSettings.strParagraphSpacing":"Espaciado de párrafo","PDFE.Views.ParagraphSettings.strSpacingAfter":"Después","PDFE.Views.ParagraphSettings.strSpacingBefore":"Antes","PDFE.Views.ParagraphSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.ParagraphSettings.textAt":"En","PDFE.Views.ParagraphSettings.textAtLeast":"Al menos","PDFE.Views.ParagraphSettings.textAuto":"Multiplicador","PDFE.Views.ParagraphSettings.textExact":"Exactamente","PDFE.Views.ParagraphSettings.txtAutoText":"Auto","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"Los tabuladores especificados aparecerán en este campo","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"Mayúsculas","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"Dirección ","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Tachado doble","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"Sangrías","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"A la izquierda","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Interlineado","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"A la derecha","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Después","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Fuente","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Sangría y espaciado","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versalitas","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaciado","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"Tachado","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"Subíndice","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"Superíndice","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"Tabuladores","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"Alineación","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"Multiplicador","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaciado entre caracteres","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"Tabulador predeterminado","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"De izquierda a derecha","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"De derecha a izquierda","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"Efectos","PDFE.Views.ParagraphSettingsAdvanced.textExact":"Exactamente","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primera línea","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"Sangría francesa","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"Alineado","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(ninguno)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"Eliminar","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Eliminar todo","PDFE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"Centro","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"A la izquierda","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posición del tabulador","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"A la derecha","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"Párrafo - Ajustes avanzados","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"Auto","PDFE.Views.PrintWithPreview.textMarginsLast":"Último personalizado","PDFE.Views.PrintWithPreview.textMarginsModerate":"Moderado","PDFE.Views.PrintWithPreview.textMarginsNarrow":"Estrecho","PDFE.Views.PrintWithPreview.textMarginsNormal":"Normal","PDFE.Views.PrintWithPreview.textMarginsWide":"Amplio","PDFE.Views.PrintWithPreview.txtAllPages":"Todas las páginas","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impresión en blanco y negro","PDFE.Views.PrintWithPreview.txtBothSides":"Imprimir por ambos lados","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"Girar páginas por borde largo","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"Girar páginas por borde corto","PDFE.Views.PrintWithPreview.txtBottom":"Parte inferior","PDFE.Views.PrintWithPreview.txtColorPrinting":"Impresión en color","PDFE.Views.PrintWithPreview.txtContent":"Contenido","PDFE.Views.PrintWithPreview.txtCopies":"Copias","PDFE.Views.PrintWithPreview.txtCurrentPage":"Página actual","PDFE.Views.PrintWithPreview.txtCustom":"Personalizado","PDFE.Views.PrintWithPreview.txtCustomPages":"Impresión personalizada","PDFE.Views.PrintWithPreview.txtDocument":"Documento","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"Documento y revisiones","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"Documento y sellos","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"Solo campos de formulario","PDFE.Views.PrintWithPreview.txtLandscape":"Horizontal","PDFE.Views.PrintWithPreview.txtLeft":"A la izquierda","PDFE.Views.PrintWithPreview.txtMargins":"Márgenes","PDFE.Views.PrintWithPreview.txtOf":"de {0}","PDFE.Views.PrintWithPreview.txtOneSide":"Imprimir a una cara","PDFE.Views.PrintWithPreview.txtOneSideDesc":"Imprimir solo en una cara de la página","PDFE.Views.PrintWithPreview.txtPage":"Página","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"Número de página no válido","PDFE.Views.PrintWithPreview.txtPageOrientation":"Orientación de la página","PDFE.Views.PrintWithPreview.txtPages":"Páginas","PDFE.Views.PrintWithPreview.txtPageSize":"Tamaño de la página","PDFE.Views.PrintWithPreview.txtPortrait":"Vertical","PDFE.Views.PrintWithPreview.txtPrint":"Imprimir","PDFE.Views.PrintWithPreview.txtPrinter":"Impresora","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"Impresora no seleccionada","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"Impresoras no encontradas","PDFE.Views.PrintWithPreview.txtPrintPdf":"Imprimir en PDF","PDFE.Views.PrintWithPreview.txtPrintRange":"Intervalo de impresión","PDFE.Views.PrintWithPreview.txtPrintSides":"Caras de impresión","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir utilizando el diálogo del sistema","PDFE.Views.PrintWithPreview.txtRight":"A la derecha","PDFE.Views.PrintWithPreview.txtSelection":"Selección ","PDFE.Views.PrintWithPreview.txtTop":"Parte superior","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"Esperando impresoras","PDFE.Views.RedactTab.capApplyRedactions":"Aplicar redacciones","PDFE.Views.RedactTab.capFindRedact":"Buscar y redactar","PDFE.Views.RedactTab.capMarkRedact":"Marcar para redacción","PDFE.Views.RedactTab.capRedactPages":"Redactar páginas","PDFE.Views.RedactTab.tipApplyRedactions":"Aplicar redacciones","PDFE.Views.RedactTab.tipFindRedact":"Buscar y redactar","PDFE.Views.RedactTab.tipMarkForRedact":"Marque para redacción","PDFE.Views.RedactTab.tipRedactPages":"Redactar páginas","PDFE.Views.RedactTab.txtMarkCurrentPage":"Marcar página actual","PDFE.Views.RedactTab.txtSelectRange":"Seleccionar rango","PDFE.Views.RightMenu.ariaRightMenu":"Menú de la derecha","PDFE.Views.RightMenu.txtChartSettings":"Ajustes de gráfico","PDFE.Views.RightMenu.txtFormSettings":"Ajustes de formulario","PDFE.Views.RightMenu.txtImageSettings":"Ajustes de imagen","PDFE.Views.RightMenu.txtParagraphSettings":"Ajustes de párrafo","PDFE.Views.RightMenu.txtShapeSettings":"Ajustes de forma","PDFE.Views.RightMenu.txtTableSettings":"Ajustes de tabla","PDFE.Views.RightMenu.txtTextArtSettings":"Ajustes de Text Art","PDFE.Views.ShapeSettings.strBackground":"Color de fondo","PDFE.Views.ShapeSettings.strChange":"Cambiar forma","PDFE.Views.ShapeSettings.strColor":"Color","PDFE.Views.ShapeSettings.strFill":"Relleno","PDFE.Views.ShapeSettings.strForeground":"Color de primer plano","PDFE.Views.ShapeSettings.strPattern":"Patrón","PDFE.Views.ShapeSettings.strShadow":"Mostrar sombra","PDFE.Views.ShapeSettings.strSize":"Tamaño","PDFE.Views.ShapeSettings.strStroke":"Línea","PDFE.Views.ShapeSettings.strTransparency":"Opacidad ","PDFE.Views.ShapeSettings.strType":"Tipo","PDFE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","PDFE.Views.ShapeSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.ShapeSettings.textAngle":"Ángulo","PDFE.Views.ShapeSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","PDFE.Views.ShapeSettings.textColor":"Relleno de color","PDFE.Views.ShapeSettings.textDirection":"Dirección ","PDFE.Views.ShapeSettings.textEditPoints":"Modificar puntos","PDFE.Views.ShapeSettings.textEditShape":"Editar forma","PDFE.Views.ShapeSettings.textEmptyPattern":"Sin patrón","PDFE.Views.ShapeSettings.textEyedropper":"Cuentagotas","PDFE.Views.ShapeSettings.textFlip":"Voltear","PDFE.Views.ShapeSettings.textFromFile":"Desde archivo","PDFE.Views.ShapeSettings.textFromStorage":"Desde almacenamiento","PDFE.Views.ShapeSettings.textFromUrl":"Desde URL","PDFE.Views.ShapeSettings.textGradient":"Puntos de degradado ","PDFE.Views.ShapeSettings.textGradientFill":"Relleno degradado","PDFE.Views.ShapeSettings.textHint270":"Girar 90° a la izquierda","PDFE.Views.ShapeSettings.textHint90":"Girar 90° a la derecha","PDFE.Views.ShapeSettings.textHintFlipH":"Voltear horizontalmente","PDFE.Views.ShapeSettings.textHintFlipV":"Voltear verticalmente","PDFE.Views.ShapeSettings.textImageTexture":"Imagen o textura","PDFE.Views.ShapeSettings.textLinear":"Lineal","PDFE.Views.ShapeSettings.textMoreColors":"Más colores","PDFE.Views.ShapeSettings.textNoFill":"Sin relleno","PDFE.Views.ShapeSettings.textNoShadow":"Sin sombra","PDFE.Views.ShapeSettings.textPatternFill":"Patrón","PDFE.Views.ShapeSettings.textPosition":"Posición","PDFE.Views.ShapeSettings.textRadial":"Radial","PDFE.Views.ShapeSettings.textRecentlyUsed":"Usados recientemente","PDFE.Views.ShapeSettings.textRotate90":"Girar 90°","PDFE.Views.ShapeSettings.textRotation":"Rotación","PDFE.Views.ShapeSettings.textSelectImage":"Seleccionar imagen","PDFE.Views.ShapeSettings.textSelectTexture":"Seleccionar","PDFE.Views.ShapeSettings.textShadow":"Sombra","PDFE.Views.ShapeSettings.textStretch":"Estirar","PDFE.Views.ShapeSettings.textStyle":"Estilo","PDFE.Views.ShapeSettings.textTexture":"Desde textura","PDFE.Views.ShapeSettings.textTile":"Mosaico","PDFE.Views.ShapeSettings.tipAddGradientPoint":"Añadir punto de degradado","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"Eliminar punto de degradado","PDFE.Views.ShapeSettings.txtBrownPaper":"Papel marrón","PDFE.Views.ShapeSettings.txtCanvas":"Lienzo","PDFE.Views.ShapeSettings.txtCarton":"Cartón","PDFE.Views.ShapeSettings.txtDarkFabric":"Tela oscura","PDFE.Views.ShapeSettings.txtGrain":"Grano","PDFE.Views.ShapeSettings.txtGranite":"Granito","PDFE.Views.ShapeSettings.txtGreyPaper":"Papel gris","PDFE.Views.ShapeSettings.txtKnit":"Tejido","PDFE.Views.ShapeSettings.txtLeather":"Cuero","PDFE.Views.ShapeSettings.txtNoBorders":"Sin línea","PDFE.Views.ShapeSettings.txtOffsetBottom":"Desplazamiento: Abajo","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"Desplazamiento: Abajo a la izquierda","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"Desplazamiento: Abajo a la derecha","PDFE.Views.ShapeSettings.txtOffsetCenter":"Desplazamiento: Al centro","PDFE.Views.ShapeSettings.txtOffsetLeft":"Desplazamiento: A la izquierda","PDFE.Views.ShapeSettings.txtOffsetRight":"Desplazamiento: A la derecha","PDFE.Views.ShapeSettings.txtOffsetTop":"Desplazamiento: Arriba","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"Desplazamiento: Arriba a la izquierda","PDFE.Views.ShapeSettings.txtOffsetTopRight":"Desplazamiento: Arriba a la derecha","PDFE.Views.ShapeSettings.txtPapyrus":"Papiro","PDFE.Views.ShapeSettings.txtWood":"Madera","PDFE.Views.ShapeSettingsAdvanced.strColumns":"Columnas","PDFE.Views.ShapeSettingsAdvanced.strMargins":"Márgenes interiores","PDFE.Views.ShapeSettingsAdvanced.textAlt":"Texto alternativo","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"Descripción","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ShapeSettingsAdvanced.textAngle":"Ángulo","PDFE.Views.ShapeSettingsAdvanced.textArrows":"Flechas","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"Ajuste automático","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"Tamaño inicial","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"Estilo inicial","PDFE.Views.ShapeSettingsAdvanced.textBevel":"Biselado","PDFE.Views.ShapeSettingsAdvanced.textBottom":"Abajo ","PDFE.Views.ShapeSettingsAdvanced.textCapType":"Tipo de letra capital","PDFE.Views.ShapeSettingsAdvanced.textCenter":"Centro","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"Número de columnas","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"Tamaño final","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"Estilo final","PDFE.Views.ShapeSettingsAdvanced.textFlat":"Plano","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"Volteado","PDFE.Views.ShapeSettingsAdvanced.textFrom":"De","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"General","PDFE.Views.ShapeSettingsAdvanced.textHeight":"Altura","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"Horizontal ","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"Horizontalmente","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"Tipo de combinación","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"Proporciones constantes","PDFE.Views.ShapeSettingsAdvanced.textLeft":"A la izquierda","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"Estilo de línea","PDFE.Views.ShapeSettingsAdvanced.textMiter":"Ángulo","PDFE.Views.ShapeSettingsAdvanced.textNofit":"No autoajustar","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"Ubicación","PDFE.Views.ShapeSettingsAdvanced.textPosition":"Posición","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"Ajustar tamaño de la forma al texto","PDFE.Views.ShapeSettingsAdvanced.textRight":"A la derecha","PDFE.Views.ShapeSettingsAdvanced.textRotation":"Rotación","PDFE.Views.ShapeSettingsAdvanced.textRound":"Redondeado","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"Nombre de la forma","PDFE.Views.ShapeSettingsAdvanced.textShrink":"Comprimir el texto al desbordarse","PDFE.Views.ShapeSettingsAdvanced.textSize":"Tamaño","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"Espacio entre columnas","PDFE.Views.ShapeSettingsAdvanced.textSquare":"Cuadrado","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"Cuadro de texto","PDFE.Views.ShapeSettingsAdvanced.textTitle":"Forma - Ajustes avanzados","PDFE.Views.ShapeSettingsAdvanced.textTop":"Arriba","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"Esquina superior izquierda","PDFE.Views.ShapeSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ShapeSettingsAdvanced.textVertically":"Verticalmente","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"Grosores y flechas","PDFE.Views.ShapeSettingsAdvanced.textWidth":"Ancho","PDFE.Views.ShapeSettingsAdvanced.txtNone":"No","PDFE.Views.Statusbar.goToPageText":"Ir a Página","PDFE.Views.Statusbar.pageIndexText":"Página {0} de {1}","PDFE.Views.Statusbar.tipFitPage":"Ajustar a la página","PDFE.Views.Statusbar.tipFitWidth":"Ajustar al ancho","PDFE.Views.Statusbar.tipHandTool":"Herramienta de mano","PDFE.Views.Statusbar.tipPageNext":"Ir a la página siguiente","PDFE.Views.Statusbar.tipPagePrev":"Ir a la página anterior","PDFE.Views.Statusbar.tipSelectTool":"Herramienta de selección","PDFE.Views.Statusbar.tipZoomFactor":"Ampliación","PDFE.Views.Statusbar.tipZoomIn":"Acercar","PDFE.Views.Statusbar.tipZoomOut":"Alejar","PDFE.Views.Statusbar.txtPageNumInvalid":"Número de página no válido","PDFE.Views.TableSettings.deleteColumnText":"Eliminar columna","PDFE.Views.TableSettings.deleteRowText":"Eliminar fila","PDFE.Views.TableSettings.deleteTableText":"Eliminar tabla","PDFE.Views.TableSettings.insertColumnLeftText":"Insertar columna a la izquierda","PDFE.Views.TableSettings.insertColumnRightText":"Insertar columna a la derecha","PDFE.Views.TableSettings.insertRowAboveText":"Insertar fila arriba","PDFE.Views.TableSettings.insertRowBelowText":"Insertar fila abajo","PDFE.Views.TableSettings.mergeCellsText":"Unir celdas","PDFE.Views.TableSettings.selectCellText":"Seleccionar celda","PDFE.Views.TableSettings.selectColumnText":"Seleccionar columna","PDFE.Views.TableSettings.selectRowText":"Seleccionar fila","PDFE.Views.TableSettings.selectTableText":"Seleccionar tabla","PDFE.Views.TableSettings.splitCellsText":"Dividir celda...","PDFE.Views.TableSettings.splitCellTitleText":"Dividir celda","PDFE.Views.TableSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.TableSettings.textBackColor":"Color de fondo","PDFE.Views.TableSettings.textBanded":"Con bandas","PDFE.Views.TableSettings.textBorderColor":"Color","PDFE.Views.TableSettings.textBorders":"Estilo de bordes","PDFE.Views.TableSettings.textCellSize":"Tamaño de la сelda","PDFE.Views.TableSettings.textColumns":"Columnas","PDFE.Views.TableSettings.textDistributeCols":"Distribuir columnas","PDFE.Views.TableSettings.textDistributeRows":"Distribuir filas","PDFE.Views.TableSettings.textEdit":"Filas y columnas","PDFE.Views.TableSettings.textEmptyTemplate":"Sin plantillas","PDFE.Views.TableSettings.textFirst":"Primero","PDFE.Views.TableSettings.textHeader":"Encabezado","PDFE.Views.TableSettings.textHeight":"Altura","PDFE.Views.TableSettings.textLast":"Último","PDFE.Views.TableSettings.textRows":"Filas","PDFE.Views.TableSettings.textSelectBorders":"Seleccione los bordes que desea cambiar aplicando el estilo seleccionado arriba","PDFE.Views.TableSettings.textTemplate":"Seleccionar desde plantilla","PDFE.Views.TableSettings.textTotal":"Total","PDFE.Views.TableSettings.textWidth":"Ancho","PDFE.Views.TableSettings.tipAll":"Establecer borde exterior y todas las líneas interiores ","PDFE.Views.TableSettings.tipBottom":"Establecer solo borde exterior inferior","PDFE.Views.TableSettings.tipInner":"Establecer solo líneas interiores","PDFE.Views.TableSettings.tipInnerHor":"Establecer solo líneas horizontales interiores","PDFE.Views.TableSettings.tipInnerVert":"Establecer solo líneas verticales interiores","PDFE.Views.TableSettings.tipLeft":"Establecer solo borde exterior izquierdo","PDFE.Views.TableSettings.tipNone":"No establecer bordes","PDFE.Views.TableSettings.tipOuter":"Establecer solo borde exterior","PDFE.Views.TableSettings.tipRight":"Establecer solo borde exterior derecho","PDFE.Views.TableSettings.tipTop":"Establecer solo borde exterior superior","PDFE.Views.TableSettings.txtGroupTable_Custom":"Personalizado","PDFE.Views.TableSettings.txtGroupTable_Dark":"Oscuro","PDFE.Views.TableSettings.txtGroupTable_Light":"Claro","PDFE.Views.TableSettings.txtGroupTable_Medium":"Medio","PDFE.Views.TableSettings.txtGroupTable_Optimal":"Mejor coincidencia de documento","PDFE.Views.TableSettings.txtNoBorders":"Sin bordes","PDFE.Views.TableSettings.txtTable_Accent":"Acento","PDFE.Views.TableSettings.txtTable_DarkStyle":"Estilo oscuro","PDFE.Views.TableSettings.txtTable_LightStyle":"Estilo claro","PDFE.Views.TableSettings.txtTable_MediumStyle":"Estilo medio","PDFE.Views.TableSettings.txtTable_NoGrid":"Sin cuadrícula","PDFE.Views.TableSettings.txtTable_NoStyle":"Sin estilo","PDFE.Views.TableSettings.txtTable_TableGrid":"Cuadrícula de tabla","PDFE.Views.TableSettings.txtTable_ThemedStyle":"Estilo temático","PDFE.Views.TableSettingsAdvanced.textAlt":"Texto alternativo","PDFE.Views.TableSettingsAdvanced.textAltDescription":"Descripción","PDFE.Views.TableSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","PDFE.Views.TableSettingsAdvanced.textAltTitle":"Título","PDFE.Views.TableSettingsAdvanced.textBottom":"Abajo ","PDFE.Views.TableSettingsAdvanced.textCenter":"Centro","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"Usar márgenes predeterminados","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"Márgenes predeterminados","PDFE.Views.TableSettingsAdvanced.textFrom":"De","PDFE.Views.TableSettingsAdvanced.textGeneral":"General","PDFE.Views.TableSettingsAdvanced.textHeight":"Altura","PDFE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal ","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"Proporciones constantes","PDFE.Views.TableSettingsAdvanced.textLeft":"A la izquierda","PDFE.Views.TableSettingsAdvanced.textMargins":"Márgenes de celda","PDFE.Views.TableSettingsAdvanced.textPlacement":"Ubicación","PDFE.Views.TableSettingsAdvanced.textPosition":"Posición","PDFE.Views.TableSettingsAdvanced.textRight":"A la derecha","PDFE.Views.TableSettingsAdvanced.textSize":"Tamaño","PDFE.Views.TableSettingsAdvanced.textTableName":"Nombre de la tabla","PDFE.Views.TableSettingsAdvanced.textTitle":"Tabla - Ajustes avanzados","PDFE.Views.TableSettingsAdvanced.textTop":"Arriba","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"Esquina superior izquierda","PDFE.Views.TableSettingsAdvanced.textVertical":"Vertical","PDFE.Views.TableSettingsAdvanced.textWidth":"Ancho","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"Márgenes","PDFE.Views.TextArtSettings.strBackground":"Color de fondo","PDFE.Views.TextArtSettings.strColor":"Color","PDFE.Views.TextArtSettings.strFill":"Relleno","PDFE.Views.TextArtSettings.strForeground":"Color de primer plano","PDFE.Views.TextArtSettings.strPattern":"Patrón","PDFE.Views.TextArtSettings.strSize":"Tamaño","PDFE.Views.TextArtSettings.strStroke":"Línea","PDFE.Views.TextArtSettings.strTransparency":"Opacidad ","PDFE.Views.TextArtSettings.strType":"Tipo","PDFE.Views.TextArtSettings.textAngle":"Ángulo","PDFE.Views.TextArtSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","PDFE.Views.TextArtSettings.textColor":"Relleno de color","PDFE.Views.TextArtSettings.textDirection":"Dirección ","PDFE.Views.TextArtSettings.textEmptyPattern":"Sin patrón","PDFE.Views.TextArtSettings.textFromFile":"Desde archivo","PDFE.Views.TextArtSettings.textFromUrl":"Desde URL","PDFE.Views.TextArtSettings.textGradient":"Puntos de degradado ","PDFE.Views.TextArtSettings.textGradientFill":"Relleno degradado","PDFE.Views.TextArtSettings.textImageTexture":"Imagen o textura","PDFE.Views.TextArtSettings.textLinear":"Lineal","PDFE.Views.TextArtSettings.textNoFill":"Sin relleno","PDFE.Views.TextArtSettings.textPatternFill":"Patrón","PDFE.Views.TextArtSettings.textPosition":"Posición","PDFE.Views.TextArtSettings.textRadial":"Radial","PDFE.Views.TextArtSettings.textSelectTexture":"Seleccionar","PDFE.Views.TextArtSettings.textStretch":"Estirar","PDFE.Views.TextArtSettings.textStyle":"Estilo","PDFE.Views.TextArtSettings.textTemplate":"Plantilla","PDFE.Views.TextArtSettings.textTexture":"Desde textura","PDFE.Views.TextArtSettings.textTile":"Mosaico","PDFE.Views.TextArtSettings.textTransform":"Transformar","PDFE.Views.TextArtSettings.tipAddGradientPoint":"Añadir punto de degradado","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"Eliminar punto de degradado","PDFE.Views.TextArtSettings.txtBrownPaper":"Papel marrón","PDFE.Views.TextArtSettings.txtCanvas":"Lienzo","PDFE.Views.TextArtSettings.txtCarton":"Cartón","PDFE.Views.TextArtSettings.txtDarkFabric":"Tela oscura","PDFE.Views.TextArtSettings.txtGrain":"Grano","PDFE.Views.TextArtSettings.txtGranite":"Granito","PDFE.Views.TextArtSettings.txtGreyPaper":"Papel gris","PDFE.Views.TextArtSettings.txtKnit":"Tejido","PDFE.Views.TextArtSettings.txtLeather":"Cuero","PDFE.Views.TextArtSettings.txtNoBorders":"Sin línea","PDFE.Views.TextArtSettings.txtPapyrus":"Papiro","PDFE.Views.TextArtSettings.txtWood":"Madera","PDFE.Views.Toolbar.capBtnAddComment":"Añadir comentario","PDFE.Views.Toolbar.capBtnArrowComment":"Flecha","PDFE.Views.Toolbar.capBtnCircleComment":"Círculo","PDFE.Views.Toolbar.capBtnComment":"Comentario","PDFE.Views.Toolbar.capBtnDelPage":"Eliminar página","PDFE.Views.Toolbar.capBtnDownloadForm":"Descargar como PDF","PDFE.Views.Toolbar.capBtnEditText":"Editar texto","PDFE.Views.Toolbar.capBtnHand":"Mano","PDFE.Views.Toolbar.capBtnNext":"Campo siguiente","PDFE.Views.Toolbar.capBtnPolyLineComment":"Líneas conectadas","PDFE.Views.Toolbar.capBtnPrev":"Campo anterior","PDFE.Views.Toolbar.capBtnRecognize":"Editar texto","PDFE.Views.Toolbar.capBtnRectComment":"Rectángulo","PDFE.Views.Toolbar.capBtnRotate":"Girar","PDFE.Views.Toolbar.capBtnRotatePage":"Girar página","PDFE.Views.Toolbar.capBtnSaveForm":"Guardar como PDF","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"Guardar como...","PDFE.Views.Toolbar.capBtnSelect":"Seleccionar","PDFE.Views.Toolbar.capBtnShowComments":"Mostrar comentarios","PDFE.Views.Toolbar.capBtnStamp":"Sello","PDFE.Views.Toolbar.capBtnSubmit":"Enviar","PDFE.Views.Toolbar.capBtnTextCallout":"Llamada de texto","PDFE.Views.Toolbar.capBtnTextComment":"Comentario de texto","PDFE.Views.Toolbar.mniCapitalizeWords":"Poner en mayúsculas cada palabra","PDFE.Views.Toolbar.mniInsertSSE":"Insertar hoja de cálculo","PDFE.Views.Toolbar.mniLowerCase":"minúsculas","PDFE.Views.Toolbar.mniSentenceCase":"Tipo oración.","PDFE.Views.Toolbar.mniToggleCase":"tIPO iNVERSO","PDFE.Views.Toolbar.mniUpperCase":"MAYÚSCULAS","PDFE.Views.Toolbar.strMenuNoFill":"Sin relleno","PDFE.Views.Toolbar.textAlignBottom":"Alinear texto hacia abajo","PDFE.Views.Toolbar.textAlignCenter":"Centrar texto","PDFE.Views.Toolbar.textAlignJust":"Alinear","PDFE.Views.Toolbar.textAlignLeft":"Alinear texto a la izquierda","PDFE.Views.Toolbar.textAlignMiddle":"Alinear texto al medio","PDFE.Views.Toolbar.textAlignRight":"Alinear texto a la derecha","PDFE.Views.Toolbar.textAlignTop":"Alinear texto hacia arriba","PDFE.Views.Toolbar.textArrangeBack":"Enviar al fondo","PDFE.Views.Toolbar.textArrangeBackward":"Enviar atrás","PDFE.Views.Toolbar.textArrangeForward":"Traer al frente","PDFE.Views.Toolbar.textArrangeFront":"Traer al primer plano","PDFE.Views.Toolbar.textBold":"Negrita","PDFE.Views.Toolbar.textClear":"Borrar campos","PDFE.Views.Toolbar.textClearFields":"Borrar todos los campos","PDFE.Views.Toolbar.textColumnsCustom":"Columnas personalizadas","PDFE.Views.Toolbar.textColumnsOne":"Una columna","PDFE.Views.Toolbar.textColumnsThree":"Tres columnas","PDFE.Views.Toolbar.textColumnsTwo":"Dos columnas","PDFE.Views.Toolbar.textDirLtr":"De izquierda a derecha","PDFE.Views.Toolbar.textDirRtl":"De derecha a izquierda","PDFE.Views.Toolbar.textEditMode":"Editar PDF","PDFE.Views.Toolbar.textHighlight":"Resaltar","PDFE.Views.Toolbar.textItalic":"Cursiva","PDFE.Views.Toolbar.textListSettings":"Ajustes de lista","PDFE.Views.Toolbar.textShapeAlignBottom":"Alinear hacia abajo","PDFE.Views.Toolbar.textShapeAlignCenter":"Alinear al centro","PDFE.Views.Toolbar.textShapeAlignLeft":"Alinear a la izquierda","PDFE.Views.Toolbar.textShapeAlignMiddle":"Alinear al medio","PDFE.Views.Toolbar.textShapeAlignRight":"Alinear a la derecha","PDFE.Views.Toolbar.textShapeAlignTop":"Alinear hacia arriba","PDFE.Views.Toolbar.textShapesCombine":"Combinar","PDFE.Views.Toolbar.textShapesFragment":"Fragmento","PDFE.Views.Toolbar.textShapesIntersect":"Formar intersección","PDFE.Views.Toolbar.textShapesSubstract":"Restar","PDFE.Views.Toolbar.textShapesUnion":"Unión","PDFE.Views.Toolbar.textStrikeout":"Tachado","PDFE.Views.Toolbar.textSubmited":"El formulario se ha enviado correctamente","PDFE.Views.Toolbar.textSubscript":"Subíndice","PDFE.Views.Toolbar.textSuperscript":"Superíndice","PDFE.Views.Toolbar.textTabCollaboration":"Colaboración","PDFE.Views.Toolbar.textTabComment":"Comentario","PDFE.Views.Toolbar.textTabEdit":"Editar","PDFE.Views.Toolbar.textTabFile":"Archivo","PDFE.Views.Toolbar.textTabHome":"Inicio","PDFE.Views.Toolbar.textTabInsert":"Insertar","PDFE.Views.Toolbar.textTabRedact":"Redactar","PDFE.Views.Toolbar.textTabView":"Vista","PDFE.Views.Toolbar.textUnderline":"Subrayar","PDFE.Views.Toolbar.tipAddComment":"Añadir comentario","PDFE.Views.Toolbar.tipChangeCase":"Cambiar mayúsculas y minúsculas","PDFE.Views.Toolbar.tipClearStyle":"Borrar estilo","PDFE.Views.Toolbar.tipColumns":"Insertar columnas","PDFE.Views.Toolbar.tipCopy":"Copiar","PDFE.Views.Toolbar.tipCut":"Cortar","PDFE.Views.Toolbar.tipDecFont":"Reducir tamaño de letra","PDFE.Views.Toolbar.tipDecPrLeft":"Reducir sangría","PDFE.Views.Toolbar.tipDelPage":"Eliminar página","PDFE.Views.Toolbar.tipDownload":"Descargar archivo","PDFE.Views.Toolbar.tipDownloadForm":"Descargar el archivo como documento PDF rellenable","PDFE.Views.Toolbar.tipEditMode":"Añada o edite texto, formas, imágenes, etc.","PDFE.Views.Toolbar.tipEditText":"Editar texto","PDFE.Views.Toolbar.tipFirstPage":"Ir a la primera página","PDFE.Views.Toolbar.tipFontColor":"Color de la fuente","PDFE.Views.Toolbar.tipFontName":"Fuente","PDFE.Views.Toolbar.tipFontSize":"Tamaño de la fuente","PDFE.Views.Toolbar.tipHAligh":"Alineación horizontal","PDFE.Views.Toolbar.tipHandTool":"Herramienta de mano","PDFE.Views.Toolbar.tipHighlightColor":"Color de resaltado","PDFE.Views.Toolbar.tipIncFont":"Aumentar tamaño de la fuente","PDFE.Views.Toolbar.tipIncPrLeft":"Aumentar sangría","PDFE.Views.Toolbar.tipInsertArrowComment":"Dibujar una flecha","PDFE.Views.Toolbar.tipInsertCircleComment":"Dibujar un círculo o un óvalo","PDFE.Views.Toolbar.tipInsertPolyLineComment":"Dibujar líneas que se conecten entre sí","PDFE.Views.Toolbar.tipInsertRectComment":"Dibujar un rectángulo o un cuadrado","PDFE.Views.Toolbar.tipInsertStamp":"Insertar sello","PDFE.Views.Toolbar.tipInsertTextCallout":"Insertar llamada de texto","PDFE.Views.Toolbar.tipInsertTextComment":"Insertar comentario de texto","PDFE.Views.Toolbar.tipLastPage":"Ir a la última página","PDFE.Views.Toolbar.tipLineSpace":"Interlineado","PDFE.Views.Toolbar.tipMarkers":"Viñetas","PDFE.Views.Toolbar.tipMarkersArrow":"Viñetas de flecha","PDFE.Views.Toolbar.tipMarkersCheckmark":"Viñetas de marca de verificación","PDFE.Views.Toolbar.tipMarkersDash":"Viñetas guión","PDFE.Views.Toolbar.tipMarkersFRhombus":"Rombos rellenos","PDFE.Views.Toolbar.tipMarkersFRound":"Viñetas redondas rellenas","PDFE.Views.Toolbar.tipMarkersFSquare":"Viñetas cuadradas rellenas","PDFE.Views.Toolbar.tipMarkersHRound":"Viñetas redondas huecas","PDFE.Views.Toolbar.tipMarkersStar":"Viñetas de estrella","PDFE.Views.Toolbar.tipNextForm":"Ir al campo siguiente","PDFE.Views.Toolbar.tipNextPage":"Ir a la página siguiente","PDFE.Views.Toolbar.tipNone":"No","PDFE.Views.Toolbar.tipNumbers":"Numeración","PDFE.Views.Toolbar.tipPaste":"Pegar","PDFE.Views.Toolbar.tipPrevForm":"Ir al campo anterior","PDFE.Views.Toolbar.tipPrevPage":"Ir a la página anterior","PDFE.Views.Toolbar.tipPrint":"Imprimir","PDFE.Views.Toolbar.tipPrintQuick":"Impresión rápida","PDFE.Views.Toolbar.tipRecognize":"Editar texto","PDFE.Views.Toolbar.tipRedo":"Rehacer","PDFE.Views.Toolbar.tipRotate":"Girar páginas","PDFE.Views.Toolbar.tipSave":"Guardar","PDFE.Views.Toolbar.tipSaveCoauth":"Guarde los cambios para que otros usuarios los puedan ver.","PDFE.Views.Toolbar.tipSaveForm":"Guardar el archivo como un documento PDF rellenable","PDFE.Views.Toolbar.tipSelectAll":"Seleccionar todo","PDFE.Views.Toolbar.tipSelectTool":"Herramienta de selección","PDFE.Views.Toolbar.tipShapeAlign":"Alinear forma","PDFE.Views.Toolbar.tipShapeArrange":"Arreglar forma","PDFE.Views.Toolbar.tipShapeMerge":"Fusionar formas","PDFE.Views.Toolbar.tipSubmit":"Enviar formulario","PDFE.Views.Toolbar.tipSynchronize":"El documento ha sido modificado por otro usuario. Por favor haga clic para guardar sus cambios y recargue el documento.","PDFE.Views.Toolbar.tipTextDir":"Dirección del texto","PDFE.Views.Toolbar.tipUndo":"Deshacer","PDFE.Views.Toolbar.tipVAligh":"Alineación vertical","PDFE.Views.Toolbar.txtArrowComment":"Flecha","PDFE.Views.Toolbar.txtCircleComment":"Círculo","PDFE.Views.Toolbar.txtDistribHor":"Distribuir horizontalmente","PDFE.Views.Toolbar.txtDistribVert":"Distribuir verticalmente","PDFE.Views.Toolbar.txtGroup":"Agrupar","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"Alinear objetos seleccionados","PDFE.Views.Toolbar.txtOpacity":"Opacidad ","PDFE.Views.Toolbar.txtPageAlign":"Alinear a la página","PDFE.Views.Toolbar.txtPolyLineComment":"Líneas conectadas","PDFE.Views.Toolbar.txtRectComment":"Rectángulo","PDFE.Views.Toolbar.txtRotateLeft":"Girar a la izquierda","PDFE.Views.Toolbar.txtRotatePage":"Girar página","PDFE.Views.Toolbar.txtRotatePageRight":"Girar página a la derecha","PDFE.Views.Toolbar.txtRotateRight":"Girar a la derecha","PDFE.Views.Toolbar.txtSize":"Tamaño","PDFE.Views.Toolbar.txtUngroup":"Desagrupar","PDFE.Views.ViewTab.capBtnRecognize":"Editar texto","PDFE.Views.ViewTab.textAlwaysShowToolbar":"Siempre mostrar la barra de herramientas","PDFE.Views.ViewTab.textDarkDocument":"Documento oscuro","PDFE.Views.ViewTab.textEditMode":"Editar PDF","PDFE.Views.ViewTab.textFill":"Rellenar","PDFE.Views.ViewTab.textFitToPage":"Ajustar a la página","PDFE.Views.ViewTab.textFitToWidth":"Ajustar al ancho","PDFE.Views.ViewTab.textInterfaceTheme":"Tema de la interfaz","PDFE.Views.ViewTab.textLeftMenu":"Panel izquierdo","PDFE.Views.ViewTab.textLine":"Línea","PDFE.Views.ViewTab.textNavigation":"Navegación","PDFE.Views.ViewTab.textOutline":"Encabezados","PDFE.Views.ViewTab.textRightMenu":"Panel derecho","PDFE.Views.ViewTab.textStatusBar":"Barra de estado","PDFE.Views.ViewTab.textTabStyle":"Estilo de pestaña","PDFE.Views.ViewTab.textZoom":"Ampliación","PDFE.Views.ViewTab.tipDarkDocument":"Documento oscuro","PDFE.Views.ViewTab.tipEditMode":"Añada o edite texto, formas, imágenes, etc.","PDFE.Views.ViewTab.tipFitToPage":"Ajustar a la página","PDFE.Views.ViewTab.tipFitToWidth":"Ajustar al ancho","PDFE.Views.ViewTab.tipHeadings":"Encabezados","PDFE.Views.ViewTab.tipInterfaceTheme":"Tema de la interfaz","PDFE.Views.ViewTab.tipRecognize":"Editar texto"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":"Advertencia","Common.Controllers.Desktop.hintBtnHome":"Mostrar ventana principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Crear a partir de una plantilla","Common.Controllers.ExternalLinks.textAddExternalData":"Se ha añadido el enlace a un origen externo. Puede actualizar tales enlaces en la pestaña «Datos».","Common.Controllers.ExternalLinks.textDontUpdate":"No actualizar","Common.Controllers.ExternalLinks.textUpdate":"Actualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Se ha producido un error al actualizar","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Este libro de trabajo contiene enlaces a una o más fuentes externas que podrían ser inseguras.
Si confía en estos enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta presentación contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.History.notcriticalErrorTitle":"Advertencia","Common.Controllers.History.txtErrorLoadHistory":"Error al cargar el historial","Common.Controllers.Plugins.helpMoveMacros":"Para empezar a trabajar con macros, cambie a la pestaña Vista.","Common.Controllers.Plugins.helpMoveMacrosHeader":"El botón Macros desplazado","Common.Controllers.Plugins.helpUseMacros":"Encuentre el botón Macros aquí","Common.Controllers.Plugins.helpUseMacrosHeader":"Acceso actualizado a las macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Los plugins se han instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} se ha instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textRunInstalledPlugins":"Ejecutar plugins instalados","Common.Controllers.Plugins.textRunPlugin":"Ejecutar plugin","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Añadir una nueva fila al final de la tabla.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Aplicar el estilo del encabezado 1 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Aplicar el estilo del encabezado 2 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Aplicar el estilo del encabezado 3 al fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Crear una lista con viñetas sin ordenar a partir del fragmento de texto seleccionado, o comenzar una nueva.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia la izquierda.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia la derecha.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Utilice la flecha del teclado para mover el objeto seleccionado un paso grande hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionBold":"Poner en negrita la fuente del fragmento de texto seleccionado, dándole un aspecto más marcado.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Cambiar un párrafo entre centrado y alineado a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Seleccionar la siguiente opción del cuadro combinado en el formulario.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Seleccionar la opción anterior del cuadro combinado en el formulario.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Cierrar la ventana de PDF actual.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Cerrar un menú o una ventana modal. Restablecer ventanas emergentes y globos con comentarios y revisar cambios. Restablecer el modo de dibujo y borrado de la tabla. Restablecer la función de arrastrar y soltar texto. Restablecer el modo de selección de marcadores. Restablecer el modo de copiar formato. Deseleccionar formas. Restablecer el modo de añadir formas. Salir del encabezado/pie de página. Salir del rellenado de formularios.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Enviar el fragmento de texto seleccionado al portapapeles del ordenador. El texto copiado se puede insertar posteriormente en otro lugar del mismo documento, en otro documento o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Copiar el formato del fragmento seleccionado del texto que se está editando actualmente. El formato copiado se puede aplicar posteriormente a otro fragmento de texto del mismo documento.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Insertar un símbolo de copyright a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionCut":"Eliminar el fragmento de texto seleccionado y enviarlo a la memoria del portapapeles del ordenador. El texto copiado se puede insertar posteriormente en otro lugar del mismo documento, en otro documento o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Reducir el tamaño de la fuente del fragmento de texto seleccionado en 1 punto.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Eliminar un carácter a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Eliminar una palabra/selección/objeto gráfico a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Eliminar un carácter a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Eliminar una palabra/selección/objeto gráfico a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Cuando se selecciona el título del gráfico, si el título está vacío, mover el cursor al principio de la línea; de lo contrario, seleccionar el texto.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repetir la última acción deshecha.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Seleccionar todo el texto del archivo PDF.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Cuando se seleccione la forma, si no contiene contenido, crear contenido y mover el cursor al principio de la línea. Si el contenido está vacío, mover el cursor hacia él; de lo contrario, seleccionar todo el contenido.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Revertir la última acción realizada.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Insertar un guión largo a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insertar un guión corto a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Terminar el párrafo actual y comenzar uno nuevo.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Iniciar un nuevo párrafo dentro de una celda.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Añadir un nuevo marcador de posición al argumento de la ecuación.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Cambiar el nivel de alineación del operador a la izquierda (para la segunda línea de la ecuación con un salto forzado).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Cambiar el nivel de alineación del operador a la derecha (para la segunda línea de la ecuación con un salto forzado).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Insertar el símbolo del euro en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Insertar el signo de elipsis en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar el tamaño de la fuente del fragmento de texto seleccionado en 1 punto.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Sangrar un párrafo desde la izquierda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Añadir un salto de columna.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Insertar una nota al final.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"Insertar una ecuación en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Insertar una nota al pie.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insertar un enlace que se puede utilizar para acceder a una dirección web.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Añadir un salto de línea sin comenzar un nuevo párrafo.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Añade un salto de línea en el formulario multilínea.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"Insertar un salto de página en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Añadir el número de página actual en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Añadir el carácter de tabulación a un párrafo (si el cursor no está al principio del párrafo).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Insertar un salto de tabla dentro de la tabla.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Hacer que la fuente del fragmento de texto seleccionado aparezca en cursiva y ligeramente inclinada.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Cambiar un párrafo entre justificado y alineado a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinear un párrafo a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia abajo un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la izquierda un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la derecha un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia arriba un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Aumentar la sangría de los párrafos seleccionados.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Disminuir la sangría de los párrafos seleccionados.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Mover el foco al siguiente objeto después del seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Mover el foco al objeto anterior al seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Mover el cursor una línea hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Colocar el cursor al final del archivo PDF que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Colocar el cursor al final de la línea que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Mover el cursor una palabra a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Mover el cursor un carácter a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Desplazarse al encabezado inferior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Desplazarse al encabezado/pie de página inferior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Ir a la siguiente celda en una fila de la tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Pasar al siguiente formulario.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Ir a la página siguiente del archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Ir a la siguiente fila de una tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Ir a la celda anterior en una fila de la tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Pasar al formulario anterior.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Ir a la página anterior del archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Ir a la fila anterior en una tabla.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Mover el cursor un carácter a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Ir al principio del archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Colocar el cursor al principio de la línea que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Colocar el cursor al principio de la página siguiente a la que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Colocar el cursor al principio de la página anterior a la que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Mover el cursor al principio de una palabra o una palabra a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Mover el cursor una línea hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Desplazarse al encabezado superior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Desplazarse al encabezado/pie de página superior (si el cursor se encuentra en el encabezado/pie de página).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Cambiar a la siguiente pestaña de archivo en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Navegar entre los controles para dar el foco al siguiente control en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Crear un guión entre caracteres, que no se puede utilizar para comenzar una nueva línea.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Crear un espacio entre caracteres que no se puede utilizar para comenzar una nueva línea.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abrir el panel Chat en los editores en línea y enviar un mensaje.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abrir un campo de entrada de datos donde se puede añadir el texto del comentario.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abrir el panel Comentarios para añadir su propio comentario o responder a los comentarios de otros usuarios.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abrir el menú contextual del elemento seleccionado.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abrir el cuadro de diálogo estándar que permite seleccionar un archivo existente. Si selecciona el archivo en este cuadro de diálogo y hace clic en Abrir, el archivo se abrirá en una nueva pestaña o ventana de los editores de escritorio.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abrir el panel Archivo para guardar, descargar, imprimir el archivo PDF actual, ver su información, crear un nuevo documento o abrir un PDF existente, acceder al Centro de ayuda del Editor de PDF o a la configuración avanzada.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abrir el menú (panel) Buscar y reemplazar con el campo de reemplazo para reemplazar una o más apariciones de los caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abrir el diálogo Buscar para comenzar a buscar un carácter/palabra/frase en el archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abrir el menú Ayuda del Editor de PDF.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insertar el fragmento de texto copiado previamente desde el portapapeles del ordenador en la posición actual del cursor. El texto puede haberse copiado previamente desde el mismo documento, desde otro documento o desde algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Aplicar el formato copiado anteriormente al texto del PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Insertar el fragmento de texto copiado previamente desde el portapapeles del ordenador en la posición actual del cursor sin conservar su formato original. El texto puede haberse copiado previamente desde el mismo documento, desde otro documento o desde algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Cambiar a la pestaña del archivo anterior en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Navegar entre los controles para dar el foco al control anterior en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprimir el archivo PDF con una de las impresoras disponibles o guardarlo como archivo.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Insertar el símbolo de marca registrada en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Reemplazar el código Unicode seleccionado con un símbolo.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Borrar el formato del fragmento de texto seleccionado.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Cambiar un párrafo entre alineación a la derecha y alineación a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionSave":"Guardar todos los cambios realizados en el archivo PDF que se está editando con el Editor de PDF. El archivo activo se guardará con su nombre, ubicación y formato de archivo actuales.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Abrir el panel Descargar como... para guardar el archivo PDF editado actualmente en el disco duro de su ordenador en uno de los formatos compatibles.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Desplazar el archivo PDF aproximadamente una página visible hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Desplazar el archivo PDF aproximadamente una página visible hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Seleccionar un carácter a la izquierda de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Seleccionar un fragmento de texto desde el cursor hasta el principio de una palabra.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mover el cursor una línea hacia abajo, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mover el cursor una línea hacia arriba, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Seleccionar la parte de la página desde la posición del cursor hasta la parte inferior de la pantalla.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Seleccionar la parte de la página desde la posición del cursor hasta la parte superior de la pantalla.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Seleccionar un carácter a la derecha de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Seleccionar un fragmento de texto desde el cursor hasta el final de una palabra.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Seleccionar un fragmento de texto desde el cursor hasta el comienzo de la página siguiente.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la página anterior.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Seleccionar un fragmento de texto desde el cursor hasta el final del archivo PDF.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Seleccionar un fragmento de texto desde el cursor hasta el final de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Seleccionar un fragmento de texto desde el cursor hasta el principio del archivo PDF.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Mostrar u ocultar la visualización de caracteres no imprimibles.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Insertar el signo de guión suave en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Mantener el formato original del texto copiado.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Pegar el texto sin su formato original.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Pegar la tabla copiada como una tabla anidada en la celda seleccionada de la tabla existente.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Reemplazar el contenido de la tabla existente con los datos copiados.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Activar/desactivar la transmisión de acciones realizadas en la aplicación para lectores de pantalla.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Aumentar el nivel de lista/sangría (con el cursor al principio de un párrafo).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Disminuir el nivel de lista/sangría (con el cursor al principio de un párrafo).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Hacer que se tache el fragmento de texto seleccionado con una línea que atraviese las letras.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte inferior de la línea de texto, por ejemplo, como en las fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte superior de la línea de texto, por ejemplo, como en las fracciones.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Insertar el símbolo de marca registrada en la posición actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Hacer que el fragmento de texto seleccionado aparezca subrayado con una línea debajo de las letras.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Eliminar la sangría de un párrafo desde la izquierda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Actualizar campos (por ejemplo, tabla de contenido).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visitar un hiperenlace (con el cursor sobre el hiperenlace).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Restablecer el parámetro «Ampliación» del archivo PDF actual al valor predeterminado del 100 %.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Ampliar el archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Alejar el archivo PDF que se está editando actualmente.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área apilada","Common.define.chartData.textAreaStackedPer":"Área apilada 100% ","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Columna agrupada","Common.define.chartData.textBarNormal3d":"Columna 3D agrupada","Common.define.chartData.textBarNormal3dPerspective":"Columna 3D","Common.define.chartData.textBarStacked":"Columna apilada","Common.define.chartData.textBarStacked3d":"Columna 3D apilada","Common.define.chartData.textBarStackedPer":"Columna apilada 100%","Common.define.chartData.textBarStackedPer3d":"Columna 3D apilada 100%","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Columna","Common.define.chartData.textCombo":"Combinado","Common.define.chartData.textComboAreaBar":"Área apilada - Columna agrupada","Common.define.chartData.textComboBarLine":"Columna agrupada - Línea","Common.define.chartData.textComboBarLineSecondary":"Columna agrupada - Línea en eje secundario","Common.define.chartData.textComboCustom":"Combinación personalizada","Common.define.chartData.textDoughnut":"Anillo","Common.define.chartData.textHBarNormal":"Barra agrupada","Common.define.chartData.textHBarNormal3d":"Barra 3D agrupada","Common.define.chartData.textHBarStacked":"Barra apilada","Common.define.chartData.textHBarStacked3d":"Barra 3D apilada","Common.define.chartData.textHBarStackedPer":"Barra apilada 100%","Common.define.chartData.textHBarStackedPer3d":"Barra 3D apilada 100%","Common.define.chartData.textLine":"Línea","Common.define.chartData.textLine3d":"Línea 3D","Common.define.chartData.textLineMarker":"Línea con marcadores","Common.define.chartData.textLineStacked":"Línea apilada","Common.define.chartData.textLineStackedMarker":"Línea apilada con marcadores","Common.define.chartData.textLineStackedPer":"Línea apilada 100%","Common.define.chartData.textLineStackedPerMarker":"Línea apilada con marcadores 100%","Common.define.chartData.textPie":"Gráfico circular","Common.define.chartData.textPie3d":"Circular 3D","Common.define.chartData.textPoint":"XY (Dispersión)","Common.define.chartData.textRadar":"Radial","Common.define.chartData.textRadarFilled":"Radial relleno","Common.define.chartData.textRadarMarker":"Radial con marcadores","Common.define.chartData.textScatter":"Dispersión","Common.define.chartData.textScatterLine":"Dispersión con líneas rectas","Common.define.chartData.textScatterLineMarker":"Dispersión con líneas rectas y marcadores","Common.define.chartData.textScatterSmooth":"Dispersión con líneas suavizadas","Common.define.chartData.textScatterSmoothMarker":"Dispersión con líneas suavizadas y marcadores","Common.define.chartData.textStock":"De cotizaciones","Common.define.chartData.textSurface":"Superficie","Common.define.smartArt.textAccentedPicture":"Imagen destacada","Common.define.smartArt.textAccentProcess":"Proceso destacado","Common.define.smartArt.textAlternatingFlow":"Flujo alternativo","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternativos","Common.define.smartArt.textAlternatingPictureBlocks":"Bloques de imágenes alternativos","Common.define.smartArt.textAlternatingPictureCircles":"Círculos con imágenes alternativos","Common.define.smartArt.textArchitectureLayout":"Diseño de arquitectura","Common.define.smartArt.textArrowRibbon":"Cinta de flechas","Common.define.smartArt.textAscendingPictureAccentProcess":"Proceso de imágenes destacadas ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Proceso curvo básico","Common.define.smartArt.textBasicBlockList":"Lista de bloques básica","Common.define.smartArt.textBasicChevronProcess":"Proceso cheurón básico","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Circular básico","Common.define.smartArt.textBasicProcess":"Proceso básico","Common.define.smartArt.textBasicPyramid":"Pirámide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Objetivo básico","Common.define.smartArt.textBasicTimeline":"Escala de tiempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista destacada con círculos abajo","Common.define.smartArt.textBendingPictureBlocks":"Bloques de imágenes con cuadro","Common.define.smartArt.textBendingPictureCaption":"Imagen curvada con títulos","Common.define.smartArt.textBendingPictureCaptionList":"Lista de imágenes curvadas con títulos","Common.define.smartArt.textBendingPictureSemiTranparentText":"Imágenes curvadas con texto semitransparente","Common.define.smartArt.textBlockCycle":"Ciclo de bloques","Common.define.smartArt.textBubblePictureList":"Lista de imágenes con burbujas","Common.define.smartArt.textCaptionedPictures":"Imágenes con títulos","Common.define.smartArt.textChevronAccentProcess":"Proceso cheurón destacado","Common.define.smartArt.textChevronList":"Lista de cheurones","Common.define.smartArt.textCircleAccentTimeline":"Línea de tiempo con círculos","Common.define.smartArt.textCircleArrowProcess":"Proceso de círculos con flecha","Common.define.smartArt.textCirclePictureHierarchy":"Jerarquía con imágenes en círculos","Common.define.smartArt.textCircleProcess":"Proceso de círculos","Common.define.smartArt.textCircleRelationship":"Relación de círculo","Common.define.smartArt.textCircularBendingProcess":"Proceso curvo circular","Common.define.smartArt.textCircularPictureCallout":"Llamada de imagen circular","Common.define.smartArt.textClosedChevronProcess":"Proceso de cheurón cerrado","Common.define.smartArt.textContinuousArrowProcess":"Proceso de flechas continuo","Common.define.smartArt.textContinuousBlockProcess":"Proceso de bloque continuo","Common.define.smartArt.textContinuousCycle":"Ciclo continuo","Common.define.smartArt.textContinuousPictureList":"Lista de imágenes continua","Common.define.smartArt.textConvergingArrows":"Flechas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Flechas de contrapeso","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista de bloques descendente","Common.define.smartArt.textDescendingProcess":"Proceso descendente","Common.define.smartArt.textDetailedProcess":"Proceso detallado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Ecuación","Common.define.smartArt.textFramedTextPicture":"Imagen de texto enmarcado","Common.define.smartArt.textFunnel":"Embudo","Common.define.smartArt.textGear":"Engranaje","Common.define.smartArt.textGridMatrix":"Matriz de cuadrícula","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organigrama con semicírculos","Common.define.smartArt.textHexagonCluster":"Grupo de hexágonos","Common.define.smartArt.textHexagonRadial":"Radial con hexágonos","Common.define.smartArt.textHierarchy":"Jerarquía","Common.define.smartArt.textHierarchyList":"Lista de jerarquías","Common.define.smartArt.textHorizontalBulletList":"Lista de viñetas horizontal","Common.define.smartArt.textHorizontalHierarchy":"Jerarquía horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Jerarquía etiquetada horizontal","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Jerarquía horizontal de varios niveles","Common.define.smartArt.textHorizontalOrganizationChart":"Organigrama horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista horizontal de imágenes","Common.define.smartArt.textIncreasingArrowProcess":"Proceso de flechas crecientes","Common.define.smartArt.textIncreasingCircleProcess":"Proceso de círculos crecientes","Common.define.smartArt.textInterconnectedBlockProcess":"Proceso de bloques interconectados","Common.define.smartArt.textInterconnectedRings":"Anillos interconectados","Common.define.smartArt.textInvertedPyramid":"Pirámide invertida","Common.define.smartArt.textLabeledHierarchy":"Jerarquía etiquetada","Common.define.smartArt.textLinearVenn":"Venn lineal","Common.define.smartArt.textLinedList":"Lista alineada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidireccional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigrama con nombres y cargos","Common.define.smartArt.textNestedTarget":"Objetivo anidado","Common.define.smartArt.textNondirectionalCycle":"Ciclo sin dirección","Common.define.smartArt.textOpposingArrows":"Flechas opuestas","Common.define.smartArt.textOpposingIdeas":"Ideas opuestas","Common.define.smartArt.textOrganizationChart":"Organigrama","Common.define.smartArt.textOther":"Otro","Common.define.smartArt.textPhasedProcess":"Proceso en fases","Common.define.smartArt.textPicture":"Imagen","Common.define.smartArt.textPictureAccentBlocks":"Imágenes destacadas en bloques","Common.define.smartArt.textPictureAccentList":"Lista de imágenes destacadas","Common.define.smartArt.textPictureAccentProcess":"Proceso de imágenes destacadas","Common.define.smartArt.textPictureCaptionList":"Lista de títulos de imágenes","Common.define.smartArt.textPictureFrame":"Marco de fotos","Common.define.smartArt.textPictureGrid":"Imágenes en cuadrícula","Common.define.smartArt.textPictureLineup":"Imágenes en paralelo","Common.define.smartArt.textPictureOrganizationChart":"Organigrama con imágenes","Common.define.smartArt.textPictureStrips":"Tiras de imagen","Common.define.smartArt.textPieProcess":"Proceso circular","Common.define.smartArt.textPlusAndMinus":"Más y menos","Common.define.smartArt.textProcess":"Proceso","Common.define.smartArt.textProcessArrows":"Flechas de proceso","Common.define.smartArt.textProcessList":"Lista de procesos","Common.define.smartArt.textPyramid":"Pirámide","Common.define.smartArt.textPyramidList":"Lista en pirámide","Common.define.smartArt.textRadialCluster":"Diseño radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista radial con imágenes","Common.define.smartArt.textRadialVenn":"Venn radial","Common.define.smartArt.textRandomToResultProcess":"Proceso de azar a resultado","Common.define.smartArt.textRelationship":"Relación","Common.define.smartArt.textRepeatingBendingProcess":"Proceso curvo repetitivo","Common.define.smartArt.textReverseList":"Lista inversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Proceso segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirámide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de imágenes instantáneas","Common.define.smartArt.textSpiralPicture":"Imagen en espiral","Common.define.smartArt.textSquareAccentList":"Lista de imágenes con cuadrados","Common.define.smartArt.textStackedList":"Lista apilada","Common.define.smartArt.textStackedVenn":"Venn apilado","Common.define.smartArt.textStaggeredProcess":"Proceso escalonado","Common.define.smartArt.textStepDownProcess":"Proceso de nivel inferior","Common.define.smartArt.textStepUpProcess":"Proceso de nivel superior","Common.define.smartArt.textSubStepProcess":"Proceso de pasos secundarios","Common.define.smartArt.textTabbedArc":"Arco con pestañas","Common.define.smartArt.textTableHierarchy":"Jerarquía de tabla","Common.define.smartArt.textTableList":"Lista de tablas","Common.define.smartArt.textTabList":"Lista de pestañas","Common.define.smartArt.textTargetList":"Lista de objetivo","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Imágenes temáticas destacadas","Common.define.smartArt.textThemePictureAlternatingAccent":"Imágenes temáticas destacadas alternativas","Common.define.smartArt.textThemePictureGrid":"Imágenes temáticas en cuadrícula","Common.define.smartArt.textTitledMatrix":"Matriz con títulos","Common.define.smartArt.textTitledPictureAccentList":"Lista de imágenes destacadas con título","Common.define.smartArt.textTitledPictureBlocks":"Bloques de imágenes con títulos","Common.define.smartArt.textTitlePictureLineup":"Serie de imágenes con título","Common.define.smartArt.textTrapezoidList":"Lista de trapezoides","Common.define.smartArt.textUpwardArrow":"Flecha arriba","Common.define.smartArt.textVaryingWidthList":"Lista de ancho variable","Common.define.smartArt.textVerticalAccentList":"Lista con rectángulos en vertical","Common.define.smartArt.textVerticalArrowList":"Lista vertical de flechas","Common.define.smartArt.textVerticalBendingProcess":"Proceso curvo vertical","Common.define.smartArt.textVerticalBlockList":"Lista de bloques verticales","Common.define.smartArt.textVerticalBoxList":"Lista vertical de cuadros","Common.define.smartArt.textVerticalBracketList":"Lista vertical con corchetes","Common.define.smartArt.textVerticalBulletList":"Lista vertical de viñetas","Common.define.smartArt.textVerticalChevronList":"Lista vertical de cheurones","Common.define.smartArt.textVerticalCircleList":"Lista con círculos en vertical","Common.define.smartArt.textVerticalCurvedList":"Lista curvada vertical","Common.define.smartArt.textVerticalEquation":"Ecuación vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista con círculos a la izquierda","Common.define.smartArt.textVerticalPictureList":"Lista vertical de imágenes","Common.define.smartArt.textVerticalProcess":"Proceso vertical","Common.Translation.textMoreButton":"Más","Common.Translation.tipFileLocked":"El documento está bloqueado para su edición. Puede hacer cambios y guardarlo como copia local más tarde.","Common.Translation.tipFileReadOnly":"El archivo es de solo lectura. Para no perder los cambios, guarde el archivo con otro nombre o en otra ubicación.","Common.Translation.warnFileLocked":"No puede editar este archivo porque lo está editando otra aplicación.","Common.Translation.warnFileLockedBtnEdit":"Crear una copia","Common.Translation.warnFileLockedBtnView":"Abrir en solo lectura","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Cuentagotas","Common.UI.ButtonColored.textNewColor":"Más colores","Common.UI.Calendar.textApril":"Abril","Common.UI.Calendar.textAugust":"agosto","Common.UI.Calendar.textDecember":"diciembre","Common.UI.Calendar.textFebruary":"febrero","Common.UI.Calendar.textJanuary":"enero","Common.UI.Calendar.textJuly":"julio","Common.UI.Calendar.textJune":"junio","Common.UI.Calendar.textMarch":"marzo","Common.UI.Calendar.textMay":"mayo","Common.UI.Calendar.textMonths":"meses","Common.UI.Calendar.textNovember":"noviembre","Common.UI.Calendar.textOctober":"octubre","Common.UI.Calendar.textSeptember":"septiembre","Common.UI.Calendar.textShortApril":"Abr","Common.UI.Calendar.textShortAugust":"ago.","Common.UI.Calendar.textShortDecember":"dic.","Common.UI.Calendar.textShortFebruary":"feb.","Common.UI.Calendar.textShortFriday":"vie.","Common.UI.Calendar.textShortJanuary":"ene.","Common.UI.Calendar.textShortJuly":"jul.","Common.UI.Calendar.textShortJune":"jun.","Common.UI.Calendar.textShortMarch":"mar.","Common.UI.Calendar.textShortMay":"mayo","Common.UI.Calendar.textShortMonday":"lu.","Common.UI.Calendar.textShortNovember":"nov.","Common.UI.Calendar.textShortOctober":"oct.","Common.UI.Calendar.textShortSaturday":"sáb.","Common.UI.Calendar.textShortSeptember":"sep.","Common.UI.Calendar.textShortSunday":"dom.","Common.UI.Calendar.textShortThursday":"jue.","Common.UI.Calendar.textShortTuesday":"mar.","Common.UI.Calendar.textShortWednesday":"mie.","Common.UI.Calendar.textYears":"Años","Common.UI.ExtendedColorDialog.addButtonText":"Añadir","Common.UI.ExtendedColorDialog.textCurrent":"Actual","Common.UI.ExtendedColorDialog.textHexErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor de 000000 a FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Nuevo","Common.UI.ExtendedColorDialog.textRGBErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico de 0 a 225.","Common.UI.HSBColorPicker.textNoColor":"Sin color","Common.UI.InputFieldBtnCalendar.textDate":"Seleccionar fecha","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar la contraseña","Common.UI.InputFieldBtnPassword.textHintHold":"Manténgalo pulsado para mostrar la contraseña","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar la contraseña","Common.UI.SearchBar.capFind":"Buscar","Common.UI.SearchBar.capFindRedact":"Buscar y redactar","Common.UI.SearchBar.textFind":"Buscar","Common.UI.SearchBar.tipCloseSearch":"Cerrar búsqueda","Common.UI.SearchBar.tipNextResult":"Resultado siguiente","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abrir ajustes avanzados","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"Buscar y redactar","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Resaltar resultados","Common.UI.SearchDialog.textMatchCase":"Distinguir mayúsculas de minúsculas","Common.UI.SearchDialog.textReplaceDef":"Introduzca el texto de sustitución","Common.UI.SearchDialog.textSearchStart":"Introduzca su texto aquí","Common.UI.SearchDialog.textTitle":"Buscar y reemplazar","Common.UI.SearchDialog.textTitle2":"Buscar","Common.UI.SearchDialog.textWholeWords":"Solo palabras completas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar sustitución","Common.UI.SearchDialog.txtBtnReplace":"Reemplazar","Common.UI.SearchDialog.txtBtnReplaceAll":"Reemplazar todo","Common.UI.SynchronizeTip.textDontShow":"No volver a mostrar este mensaje","Common.UI.SynchronizeTip.textGotIt":"Entiendo","Common.UI.SynchronizeTip.textNew":"Nuevo","Common.UI.SynchronizeTip.textSynchronize":"El documento ha sido modificado por otro usuario.
Por favor, haga clic para guardar sus cambios y recargue el documento.","Common.UI.ThemeColorPalette.textRecentColors":"Colores recientes","Common.UI.ThemeColorPalette.textStandartColors":"Colores estándar","Common.UI.ThemeColorPalette.textThemeColors":"Colores del tema","Common.UI.ThemeColorPalette.textTransparent":"Transparente","Common.UI.Themes.txtThemeClassicLight":"Clásico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste oscuro","Common.UI.Themes.txtThemeDark":"Oscuro","Common.UI.Themes.txtThemeGray":"Gris","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Moderno oscuro","Common.UI.Themes.txtThemeModernLight":"Moderno claro","Common.UI.Themes.txtThemeSystem":"Igual que el sistema","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Cerrar","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Confirmación","Common.UI.Window.textDontShow":"No volver a mostrar este mensaje","Common.UI.Window.textError":"Error","Common.UI.Window.textInformation":"Información","Common.UI.Window.textWarning":"Advertencia","Common.UI.Window.yesButtonText":"Si","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Control","Common.Utils.String.textShift":"Mayús","Common.Utils.ThemeColor.txtaccent":"Acentuación","Common.Utils.ThemeColor.txtAqua":"Aguamarina","Common.Utils.ThemeColor.txtbackground":"Fondo","Common.Utils.ThemeColor.txtBlack":"Negro","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde vivo","Common.Utils.ThemeColor.txtBrown":"Marrón","Common.Utils.ThemeColor.txtDarkBlue":"Azul oscuro","Common.Utils.ThemeColor.txtDarker":"Más oscuro","Common.Utils.ThemeColor.txtDarkGray":"Gris oscuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde oscuro","Common.Utils.ThemeColor.txtDarkPurple":"Púrpura oscuro","Common.Utils.ThemeColor.txtDarkRed":"Rojo oscuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde azulado oscuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarillo oscuro","Common.Utils.ThemeColor.txtGold":"Oro","Common.Utils.ThemeColor.txtGray":"Gris","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Añil","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Más claro","Common.Utils.ThemeColor.txtLightGray":"Gris claro","Common.Utils.ThemeColor.txtLightGreen":"Verde claro","Common.Utils.ThemeColor.txtLightOrange":"Naranja claro","Common.Utils.ThemeColor.txtLightYellow":"Amarillo claro","Common.Utils.ThemeColor.txtOrange":"Naranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Púrpura","Common.Utils.ThemeColor.txtRed":"Rojo","Common.Utils.ThemeColor.txtRose":"Rosa claro","Common.Utils.ThemeColor.txtSkyBlue":"Azul cielo","Common.Utils.ThemeColor.txtTeal":"Verde azulado","Common.Utils.ThemeColor.txttext":"Texto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Blanco","Common.Utils.ThemeColor.txtYellow":"Amarillo","Common.Views.About.txtAddress":"dirección: ","Common.Views.About.txtLicensee":"LICENCIATARIO ","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"correo electrónico:","Common.Views.About.txtPoweredBy":"Con tecnología de","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versión","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Cerrar chat","Common.Views.Chat.textEnterMessage":"Introduzca su mensaje aquí","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor de Z a A","Common.Views.Comments.mniDateAsc":"Más antiguo","Common.Views.Comments.mniDateDesc":"Más reciente","Common.Views.Comments.mniFilterComments":"Mostrar comentarios","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"Desde arriba","Common.Views.Comments.mniPositionDesc":"Desde abajo","Common.Views.Comments.textAdd":"Añadir","Common.Views.Comments.textAddComment":"Añadir comentario","Common.Views.Comments.textAddCommentToDoc":"Añadir comentario al documento","Common.Views.Comments.textAddReply":"Añadir respuesta","Common.Views.Comments.textAll":"Todos","Common.Views.Comments.textAnonym":"Invitado","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Cerrar","Common.Views.Comments.textClosePanel":"Cerrar comentarios","Common.Views.Comments.textComment":"Comentario","Common.Views.Comments.textComments":"Comentarios","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Introduzca su comentario aquí","Common.Views.Comments.textHintAddComment":"Añadir comentario","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir de nuevo","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resuelto","Common.Views.Comments.textSort":"Ordenar comentarios","Common.Views.Comments.textSortFilter":"Ordenar y filtrar comentarios","Common.Views.Comments.textSortFilterMore":"Ordenar, filtrar y mucho más","Common.Views.Comments.textSortMore":"Ordenar y más","Common.Views.Comments.textViewResolved":"No tiene permiso para volver a abrir el comentario","Common.Views.Comments.txtEmpty":"No hay comentarios en el documento.","Common.Views.CopyWarningDialog.textDontShow":"No volver a mostrar este mensaje","Common.Views.CopyWarningDialog.textMsg":"Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y del menú contextual solo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, use las siguientes combinaciones de teclas:","Common.Views.CopyWarningDialog.textTitle":"Acciones de Copiar, Cortar y Pegar","Common.Views.CopyWarningDialog.textToCopy":"para copiar","Common.Views.CopyWarningDialog.textToCut":"para cortar","Common.Views.CopyWarningDialog.textToPaste":"para pegar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Descargar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Marque los comandos que se mostrarán en la barra de herramientas Acceso rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impresión rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Rehacer","Common.Views.CustomizeQuickAccessDialog.textSave":"Guardar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalizar acceso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Deshacer","Common.Views.DocumentAccessDialog.textLoading":"Cargando...","Common.Views.DocumentAccessDialog.textTitle":"Ajustes de uso compartido","Common.Views.Draw.hintEraser":"Borrador","Common.Views.Draw.hintSelect":"Seleccionar","Common.Views.Draw.txtEraser":"Borrador","Common.Views.Draw.txtHighlighter":"Marcador de resaltado","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Bolígrafo","Common.Views.Draw.txtSelect":"Seleccionar","Common.Views.Draw.txtSize":"Tamaño","Common.Views.ExternalDiagramEditor.textTitle":"Editor de gráficos","Common.Views.ExternalEditor.textClose":"Cerrar","Common.Views.ExternalEditor.textSave":"Guardar y salir","Common.Views.ExternalLinksDlg.closeButtonText":"Cerrar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Actualizar automáticamente los datos de las fuentes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Cambiar fuente","Common.Views.ExternalLinksDlg.textDelete":"Quitar enlaces","Common.Views.ExternalLinksDlg.textDeleteAll":"Quitar todos los enlaces","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Abrir fuente","Common.Views.ExternalLinksDlg.textSource":"Fuente","Common.Views.ExternalLinksDlg.textStatus":"Estado","Common.Views.ExternalLinksDlg.textUnknown":"Desconocido","Common.Views.ExternalLinksDlg.textUpdate":"Actualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Actualizar todo","Common.Views.ExternalLinksDlg.textUpdating":"Actualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Enlaces externos","Common.Views.Header.ariaQuickAccessToolbar":"Barra de herramientas de acceso rápido","Common.Views.Header.labelCoUsersDescr":"Usuarios que están editando el archivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Configuración avanzada","Common.Views.Header.textAnnotateDesc":"Rellenar formularios o anotar","Common.Views.Header.textBack":"Abrir ubicación del archivo","Common.Views.Header.textClose":"Cerrar archivo","Common.Views.Header.textComment":"Comentario","Common.Views.Header.textCommentDesc":"Todos los cambios se guardarán en el archivo. Colaboración en tiempo real","Common.Views.Header.textCompactView":"Ocultar barra de herramientas","Common.Views.Header.textDownload":"Descargar","Common.Views.Header.textEdit":"Edición","Common.Views.Header.textEditDesc":"Todos los cambios se guardarán en el archivo. Colaboración en tiempo real","Common.Views.Header.textEditDescNoCoedit":"Añada o edite texto, formas, imágenes, etc.","Common.Views.Header.textHideLines":"Ocultar reglas","Common.Views.Header.textHideStatusBar":"Ocultar barra de estado","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Solo lectura","Common.Views.Header.textRemoveFavorite":"Eliminar de Favoritos","Common.Views.Header.textShare":"Compartir","Common.Views.Header.textView":"Visualización","Common.Views.Header.textViewDesc":"Todos los cambios se guardarán localmente","Common.Views.Header.textViewDescNoCoedit":"Ver o hacer anotaciones","Common.Views.Header.textZoom":"Ampliación","Common.Views.Header.tipAccessRights":"Administrar los permisos de acceso de documentos","Common.Views.Header.tipComment":"Comentario","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalizar la barra de herramientas Acceso rápido","Common.Views.Header.tipDownload":"Descargar archivo","Common.Views.Header.tipEdit":"Edición","Common.Views.Header.tipGoEdit":"Editar el archivo actual","Common.Views.Header.tipPrint":"Imprimir archivo","Common.Views.Header.tipPrintQuick":"Impresión rápida","Common.Views.Header.tipRedo":"Rehacer","Common.Views.Header.tipSave":"Guardar","Common.Views.Header.tipSearch":"Buscar","Common.Views.Header.tipUndo":"Deshacer","Common.Views.Header.tipUsers":"Ver usuarios","Common.Views.Header.tipView":"Visualización","Common.Views.Header.tipViewSettings":"Mostrar ajustes","Common.Views.Header.tipViewUsers":"Ver usuarios y administrar permisos de acceso al documento","Common.Views.Header.txtAccessRights":"Cambiar permisos de acceso","Common.Views.Header.txtRename":"Renombrar","Common.Views.ImageFromUrlDialog.textUrl":"Pegue la URL de la imagen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo es obligatorio","Common.Views.ImageFromUrlDialog.txtNotUrl":"El campo debe ser una URL en el formato \"http://www.example.com\"","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Input a prompt for the query","Common.Views.MacrosAiDialog.textCreate":"Create","Common.Views.MacrosDialog.textAutostart":"Autostart","Common.Views.MacrosDialog.textConvertFromVBA":"Convert from VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convert macros from VBA","Common.Views.MacrosDialog.textCopy":"Copy","Common.Views.MacrosDialog.textCreateFromDesc":"Create from description","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Create macros from description","Common.Views.MacrosDialog.textCustomFunction":"Custom function","Common.Views.MacrosDialog.textCustomFunctions":"Custom functions","Common.Views.MacrosDialog.textDebug":"Debug","Common.Views.MacrosDialog.textDelete":"Delete","Common.Views.MacrosDialog.textFunctions":"Functions","Common.Views.MacrosDialog.textLoading":"Loading...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Make autostart","Common.Views.MacrosDialog.textRename":"Rename","Common.Views.MacrosDialog.textRun":"Run","Common.Views.MacrosDialog.textSave":"Save","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Unmake autostart","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"Add custom function","Common.Views.MacrosDialog.tipFunctionCopy":"Copy custom function","Common.Views.MacrosDialog.tipFunctionDelete":"Delete custom function","Common.Views.MacrosDialog.tipFunctionRename":"Rename custom function","Common.Views.MacrosDialog.tipMacrosAdd":"Add macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copy macros","Common.Views.MacrosDialog.tipMacrosDebug":"Debug macros","Common.Views.MacrosDialog.tipMacrosRename":"Rename macros","Common.Views.MacrosDialog.tipMacrosRun":"Run macros","Common.Views.MacrosDialog.tipRedo":"Redo","Common.Views.MacrosDialog.tipUndo":"Undo","Common.Views.OpenDialog.closeButtonText":"Cerrar archivo","Common.Views.OpenDialog.txtEncoding":"Codificación","Common.Views.OpenDialog.txtIncorrectPwd":"La contraseña es incorrecta","Common.Views.OpenDialog.txtOpenFile":"Introduzca la contraseña para abrir el archivo","Common.Views.OpenDialog.txtPassword":"Contraseña","Common.Views.OpenDialog.txtPreview":"Vista previa","Common.Views.OpenDialog.txtProtected":"Una vez se haya introducido la contraseña y abierto el archivo, la contraseña actual del archivo se restablecerá.","Common.Views.OpenDialog.txtTitle":"Elegir opciones de %1","Common.Views.OpenDialog.txtTitleProtected":"Archivo protegido","Common.Views.PasswordDialog.txtDescription":"Establezca una contraseña para proteger este documento","Common.Views.PasswordDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","Common.Views.PasswordDialog.txtPassword":"Contraseña","Common.Views.PasswordDialog.txtRepeat":"Repetir contraseña","Common.Views.PasswordDialog.txtTitle":"Establecer contraseña","Common.Views.PasswordDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdelo en un lugar seguro.","Common.Views.PluginDlg.textDock":"Anclar plugin","Common.Views.PluginDlg.textLoading":"Cargando","Common.Views.PluginPanel.textClosePanel":"Cerrar plugin","Common.Views.PluginPanel.textHidePanel":"Contraer plugin","Common.Views.PluginPanel.textLoading":"Cargando","Common.Views.PluginPanel.textUndock":"Desanclar plugin","Common.Views.Plugins.groupCaption":"Extensiones","Common.Views.Plugins.strPlugins":"Extensiones","Common.Views.Plugins.textBackgroundPlugins":"Plugins de fondo","Common.Views.Plugins.textClosePanel":"Cerrar extensión","Common.Views.Plugins.textLoading":"Cargando","Common.Views.Plugins.textSettings":"Ajustes","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Detener","Common.Views.Plugins.textTheListOfBackgroundPlugins":"La lista de plugins de fondo","Common.Views.Protection.hintAddPwd":"Cifrar con contraseña","Common.Views.Protection.hintDelPwd":"Eliminar contraseña","Common.Views.Protection.hintPwd":"Cambiar o eliminar la contraseña","Common.Views.Protection.hintSignature":"Añadir firma digital o línea de firma","Common.Views.Protection.txtAddPwd":"Añadir contraseña","Common.Views.Protection.txtChangePwd":"Cambiar contraseña","Common.Views.Protection.txtDeletePwd":"Eliminar contraseña","Common.Views.Protection.txtEncrypt":"Cifrar","Common.Views.Protection.txtInvisibleSignature":"Añadir firma digital","Common.Views.Protection.txtSignature":"Firma","Common.Views.Protection.txtSignatureLine":"Añadir línea de firma","Common.Views.RecentFiles.txtOpenRecent":"Abrir recientes","Common.Views.RenameDialog.textName":"Nombre de archivo","Common.Views.RenameDialog.txtInvalidName":"El nombre del archivo no debe contener los símbolos siguientes:","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedición en tiempo real. Todos los cambios se guardan automáticamente.","Common.Views.ReviewChanges.strStrict":"Estricto","Common.Views.ReviewChanges.strStrictDesc":"Use el botón \"Guardar\" para sincronizar los cambios hechos por usted y por otros usuarios.","Common.Views.ReviewChanges.tipCoAuthMode":"Establecer modo de coedición","Common.Views.ReviewChanges.tipCommentRem":"Eliminar comentarios","Common.Views.ReviewChanges.tipCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentarios","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver comentarios actuales","Common.Views.ReviewChanges.tipHistory":"Mostrar historial de versiones","Common.Views.ReviewChanges.tipSharing":"Administrar los permisos de acceso de documentos","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Cerrar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedición","Common.Views.ReviewChanges.txtCommentRemAll":"Eliminar todos los comentarios","Common.Views.ReviewChanges.txtCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.txtCommentRemMy":"Eliminar mis comentarios","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Eliminar mis comentarios actuales","Common.Views.ReviewChanges.txtCommentRemove":"Eliminar","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos los comentarios","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentarios actuales","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver mis comentarios","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver mis comentarios actuales","Common.Views.ReviewChanges.txtHistory":"Historial de versiones","Common.Views.ReviewChanges.txtSharing":"Uso compartido","Common.Views.ReviewPopover.textAdd":"Añadir","Common.Views.ReviewPopover.textAddReply":"Añadir respuesta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Cerrar","Common.Views.ReviewPopover.textComment":"Comentario","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Introduzca su comentario aquí","Common.Views.ReviewPopover.textFollowMove":"Seguir movimiento","Common.Views.ReviewPopover.textMention":"+mención proporcionará acceso al documento y enviará un correo","Common.Views.ReviewPopover.textMentionNotify":"+mención notificará al usuario por correo","Common.Views.ReviewPopover.textOpenAgain":"Abrir de nuevo","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"No tiene permiso para volver a abrir el comentario","Common.Views.ReviewPopover.txtAccept":"Aceptar","Common.Views.ReviewPopover.txtDeleteTip":"Eliminar","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.ReviewPopover.txtReject":"Rechazar","Common.Views.SaveAsDlg.textLoading":"Cargando","Common.Views.SaveAsDlg.textTitle":"Carpeta para guardar","Common.Views.SearchPanel.textCaseSensitive":"Distinguir mayúsculas de minúsculas","Common.Views.SearchPanel.textCloseSearch":"Cerrar búsqueda","Common.Views.SearchPanel.textContentChanged":"Se ha modificado el documento","Common.Views.SearchPanel.textFind":"Buscar","Common.Views.SearchPanel.textFindAndRedact":"Buscar y redactar","Common.Views.SearchPanel.textFindAndReplace":"Buscar y reemplazar","Common.Views.SearchPanel.textFindRedact":"Buscar y redactar","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} elementos reemplazados correctamente.","Common.Views.SearchPanel.textMark":"Marcar para redacción","Common.Views.SearchPanel.textMarkAll":"Marcar todo","Common.Views.SearchPanel.textMatchUsingRegExp":"Buscar utilizando expresiones regulares","Common.Views.SearchPanel.textNoMatches":"No hay coincidencias","Common.Views.SearchPanel.textNoSearchResults":"No hay resultados de búsqueda","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} elementos reemplazados. Los {2} elementos restantes están bloqueados por otros usuarios.","Common.Views.SearchPanel.textReplace":"Reemplazar","Common.Views.SearchPanel.textReplaceAll":"Reemplazar todo","Common.Views.SearchPanel.textReplaceWith":"Reemplazar por","Common.Views.SearchPanel.textSearchAgain":"{0}Realice una nueva búsqueda{1} para obtener resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"La búsqueda se ha detenido","Common.Views.SearchPanel.textSearchResults":"Resultados de la búsqueda: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados de búsqueda","Common.Views.SearchPanel.textTooManyResults":"Hay demasiados resultados para mostrarlos aquí","Common.Views.SearchPanel.textWholeWords":"Solo palabras completas","Common.Views.SearchPanel.tipNextResult":"Resultado siguiente","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Cargando","Common.Views.SelectFileDlg.textTitle":"Seleccionar origen de datos","Common.Views.ShapeShadowDialog.txtAngle":"Ángulo","Common.Views.ShapeShadowDialog.txtDistance":"Distancia","Common.Views.ShapeShadowDialog.txtSize":"Tamaño","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparencia","Common.Views.ShortcutsDialog.txtDescription":"Descripción","Common.Views.ShortcutsDialog.txtEmpty":"No se han encontrado coincidencias. Ajuste su búsqueda.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restablecer todos los valores predeterminados","Common.Views.ShortcutsDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todos los ajustes de los accesos directos se restablecerán a los valores predeterminados.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsDialog.txtSearch":"Búsqueda","Common.Views.ShortcutsDialog.txtTitle":"Accesos directos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Acción","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Escriba el acceso directo deseado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"El acceso directo utilizado por las acciones %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"El acceso directo utilizado por las acciones %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"El acceso directo utilizado por la acción %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"El acceso directo utilizado por la acción %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Nuevo acceso directo","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos los accesos directos para la acción «%1» se restablecerán a los valores predeterminados.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsEditDialog.txtTitle":"Editar acceso directo","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Escriba el acceso directo deseado","Common.Views.UserNameDialog.textDontShow":"No volver a preguntarme","Common.Views.UserNameDialog.textLabel":"Etiqueta:","Common.Views.UserNameDialog.textLabelError":"La etiqueta no debe estar vacía.","PDFE.Controllers.InsTab.textAccent":"Acentos","PDFE.Controllers.InsTab.textBracket":"Corchetes","PDFE.Controllers.InsTab.textFraction":"Fracciones","PDFE.Controllers.InsTab.textFunction":"Funciones","PDFE.Controllers.InsTab.textInsert":"Insertar","PDFE.Controllers.InsTab.textIntegral":"Integrales","PDFE.Controllers.InsTab.textLargeOperator":"Operadores grandes","PDFE.Controllers.InsTab.textLimitAndLog":"Límites y logaritmos ","PDFE.Controllers.InsTab.textMatrix":"Matrices","PDFE.Controllers.InsTab.textOperator":"Operadores","PDFE.Controllers.InsTab.textRadical":"Radicales","PDFE.Controllers.InsTab.textScript":"Índices","PDFE.Controllers.InsTab.textShape":"Forma","PDFE.Controllers.InsTab.textSymbols":"Símbolos","PDFE.Controllers.InsTab.txtAccent_Accent":"Acento agudo","PDFE.Controllers.InsTab.txtAccent_ArrowD":"Flecha superior derecha e izquierda","PDFE.Controllers.InsTab.txtAccent_ArrowL":"Flecha superior hacia izquierda","PDFE.Controllers.InsTab.txtAccent_ArrowR":"Flecha superior hacia derecha","PDFE.Controllers.InsTab.txtAccent_Bar":"Barra","PDFE.Controllers.InsTab.txtAccent_BarBot":"Barra subyacente","PDFE.Controllers.InsTab.txtAccent_BarTop":"Barra superpuesta","PDFE.Controllers.InsTab.txtAccent_BorderBox":"Fórmula encuadrada (con marcador de posición)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"Fórmula encuadrada (ejemplo)","PDFE.Controllers.InsTab.txtAccent_Check":"Casilla","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"Llave subyacente","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"Llave superpuesta","PDFE.Controllers.InsTab.txtAccent_Custom_1":"Vector A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"ABC con barra superpuesta","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XOR y con barra superpuesta","PDFE.Controllers.InsTab.txtAccent_DDDot":"Tres puntos","PDFE.Controllers.InsTab.txtAccent_DDot":"Dos puntos","PDFE.Controllers.InsTab.txtAccent_Dot":"Punto","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"Barra doble superpuesta","PDFE.Controllers.InsTab.txtAccent_Grave":"Acento grave","PDFE.Controllers.InsTab.txtAccent_GroupBot":"Carácter de agrupación inferior","PDFE.Controllers.InsTab.txtAccent_GroupTop":"Carácter de agrupación superior","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"Arpón superior hacia izquierdo","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"Arpón superior hacia derecha","PDFE.Controllers.InsTab.txtAccent_Hat":"Circunflejo","PDFE.Controllers.InsTab.txtAccent_Smile":"Acento breve","PDFE.Controllers.InsTab.txtAccent_Tilde":"Tilde","PDFE.Controllers.InsTab.txtBasicShapes":"Formas básicas","PDFE.Controllers.InsTab.txtBracket_Angle":"Corchetes angulares","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"Corchetes angulares con separador","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"Corchetes angulares con dos separadores","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"Corchete angular de cierre","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"Corchete angular de apertura","PDFE.Controllers.InsTab.txtBracket_Curve":"Llaves","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"Llaves con separador","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"Llave de cierre","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"Llave de apertura","PDFE.Controllers.InsTab.txtBracket_Custom_1":"Casos (dos condiciones)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"Casos (tres condiciones)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"Objeto de pila","PDFE.Controllers.InsTab.txtBracket_Custom_4":"Objeto acotado entre paréntesis","PDFE.Controllers.InsTab.txtBracket_Custom_5":"Ejemplo de casos","PDFE.Controllers.InsTab.txtBracket_Custom_6":"Coeficiente binomial","PDFE.Controllers.InsTab.txtBracket_Custom_7":"Coeficiente binomial en corchetes angulares","PDFE.Controllers.InsTab.txtBracket_Line":"Plecas","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"Pleca de cierre","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"Pleca de apertura","PDFE.Controllers.InsTab.txtBracket_LineDouble":"Plecas dobles","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"Pleca doble de cierre","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"Pleca doble de apertura","PDFE.Controllers.InsTab.txtBracket_LowLim":"Corchete inferior","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"Corchete inferior de cierre","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"Corchete inferior de apertura","PDFE.Controllers.InsTab.txtBracket_Round":"Paréntesis","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"Paréntesis con separador","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"Paréntesis de cierre","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"Paréntesis de apertura","PDFE.Controllers.InsTab.txtBracket_Square":"Corchetes","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"Marcador de posición entre dos corchetes de cierre","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"Corchetes invertidos","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"Corchete de cierre","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"Corchete de apertura","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"Marcador de posición entre dos corchetes de apertura","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"Corchetes dobles","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"Corchete doble de cierre","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"Corchete doble de apertura","PDFE.Controllers.InsTab.txtBracket_UppLim":"Corchete de techo","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"Corchete de techo de cierre","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"Corchete de techo de apertura","PDFE.Controllers.InsTab.txtButtons":"Botones","PDFE.Controllers.InsTab.txtCallouts":"Llamadas","PDFE.Controllers.InsTab.txtCharts":"Gráficos","PDFE.Controllers.InsTab.txtFiguredArrows":"Flechas figuradas","PDFE.Controllers.InsTab.txtFractionDiagonal":"Fracción sesgada","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dx sobre dy","PDFE.Controllers.InsTab.txtFractionDifferential_2":"delta mayúscula y sobre delta mayúscula x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"y parcial sobre x parcial","PDFE.Controllers.InsTab.txtFractionDifferential_4":"delta y sobre delta x","PDFE.Controllers.InsTab.txtFractionHorizontal":"Fracción lineal","PDFE.Controllers.InsTab.txtFractionPi_2":"Pi dividir a 2","PDFE.Controllers.InsTab.txtFractionSmall":"Fracción pequeña","PDFE.Controllers.InsTab.txtFractionVertical":"Fracción apilada","PDFE.Controllers.InsTab.txtFunction_1_Cos":"Función de coseno inversa","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"Función de coseno inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Cot":"Función de cotangente inversa","PDFE.Controllers.InsTab.txtFunction_1_Coth":"Función de cotangente inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Csc":"Función de cosecante inversa","PDFE.Controllers.InsTab.txtFunction_1_Csch":"Función de cosecante inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Sec":"Función de secante inversa","PDFE.Controllers.InsTab.txtFunction_1_Sech":"Función de secante inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Sin":"Función de seno inversa","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"Función de seno inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Tan":"Función de tangente inversa","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"Función de tangente inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_Cos":"Función de coseno","PDFE.Controllers.InsTab.txtFunction_Cosh":"Función de coseno hiperbólica","PDFE.Controllers.InsTab.txtFunction_Cot":"Función de cotangente","PDFE.Controllers.InsTab.txtFunction_Coth":"Función de cotangente hiperbólica","PDFE.Controllers.InsTab.txtFunction_Csc":"Función de cosecante","PDFE.Controllers.InsTab.txtFunction_Csch":"Función de cosecante hiperbólica","PDFE.Controllers.InsTab.txtFunction_Custom_1":"Seno zeta","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Cos 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"Fórmula de tangente","PDFE.Controllers.InsTab.txtFunction_Sec":"Función de secante","PDFE.Controllers.InsTab.txtFunction_Sech":"Función de secante hiperbólica","PDFE.Controllers.InsTab.txtFunction_Sin":"Función de seno","PDFE.Controllers.InsTab.txtFunction_Sinh":"Función de seno hiperbólica","PDFE.Controllers.InsTab.txtFunction_Tan":"Función de tangente","PDFE.Controllers.InsTab.txtFunction_Tanh":"Función de tangente hiperbólica","PDFE.Controllers.InsTab.txtIntegral":"Integral","PDFE.Controllers.InsTab.txtIntegral_dtheta":"Diferencial zeta","PDFE.Controllers.InsTab.txtIntegral_dx":"Diferencial x","PDFE.Controllers.InsTab.txtIntegral_dy":"Diferencial y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"Integral con límites acotados","PDFE.Controllers.InsTab.txtIntegralDouble":"Integral doble","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"Integral doble con límites acotados","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"Integral doble con límites","PDFE.Controllers.InsTab.txtIntegralOriented":"Integral de contorno","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"Integral de contorno con límites acotados","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"Integral de superficie","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"Integral de superficie con límites acotados","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"Integral de superficie con límites","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"Integral de contorno con límites","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"Integral de volumen","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"Integral de volumen con límites acotados","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"Integral de volumen con límites","PDFE.Controllers.InsTab.txtIntegralSubSup":"Integral con límites","PDFE.Controllers.InsTab.txtIntegralTriple":"Integral triple","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"Integral triple con límites acotados","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"Integral triple con límites","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"Y lógico","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"Y lógico con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"Y lógico con límites","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"Y lógico con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"Y lógico con límites de subíndice/supraíndice","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"Coproducto","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"Coproducto con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"Coproducto con límites","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"Coproducto con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"Coproducto con límites de subíndice/supraíndice","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"Sumatoria sobre k de n sobre k","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"Sumatoria de i igual a cero a n","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"Ejemplo de suma con dos índices","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"Ejemplo del producto","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"Ejemplo de unión","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"O lógico","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"O lógico con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"O lógico con límites","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"O lógico con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"O lógico con límites de subíndice/supraíndice","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"Intersección","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"Intersección con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"Intersección con límites","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"Intersección con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"Intersección con límites de subíndice/superíndice","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"Producto","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"Producto con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"Producto con límites","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"Producto con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"Producto con límites de subíndice/superíndice","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"Suma","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"Sumatoria con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"Sumatoria con límites","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"Sumatoria con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"Sumatoria con límites de subíndice/supraíndice","PDFE.Controllers.InsTab.txtLargeOperator_Union":"Unión","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"Unión con límite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"Unión con límites","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"Unión con límite inferior en subíndice","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"Unión con límites de subíndice/superíndice","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"Ejemplo de límite","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"Ejemplo de máximo","PDFE.Controllers.InsTab.txtLimitLog_Lim":"Límite","PDFE.Controllers.InsTab.txtLimitLog_Ln":"Logaritmo natural","PDFE.Controllers.InsTab.txtLimitLog_Log":"Logaritmo","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"Logaritmo","PDFE.Controllers.InsTab.txtLimitLog_Max":"Máximo","PDFE.Controllers.InsTab.txtLimitLog_Min":"Mínimo","PDFE.Controllers.InsTab.txtLines":"Líneas","PDFE.Controllers.InsTab.txtMath":"Matemáticas","PDFE.Controllers.InsTab.txtMatrix_1_2":"Matriz vacía 1x2","PDFE.Controllers.InsTab.txtMatrix_1_3":"Matriz vacía 1x3","PDFE.Controllers.InsTab.txtMatrix_2_1":"Matriz vacía 2x1","PDFE.Controllers.InsTab.txtMatrix_2_2":"Matriz vacía 2x2","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"Matriz de 2 por 2 vacía entre plecas dobles","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"Determinante de 2 por 2 vacío","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"Matriz de 2 por 2 vacía entre paréntesis","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"Matriz de 2 por 2 vacía entre paréntesis","PDFE.Controllers.InsTab.txtMatrix_2_3":"Matriz vacía 2x3","PDFE.Controllers.InsTab.txtMatrix_3_1":"Matriz vacía 3x1","PDFE.Controllers.InsTab.txtMatrix_3_2":"Matriz vacía 3x2","PDFE.Controllers.InsTab.txtMatrix_3_3":"Matriz vacía 3x3","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"Puntos en línea de base","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"Puntos en línea media","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"Puntos diagonales","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"Puntos verticales","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"Matriz dispersa entre paréntesis","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"Matriz dispersa entre corchetes","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"Matriz de identidad 2x2 con ceros","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"Matriz de identidad 2x2 con celdas en blanco que no están en la diagonal","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"Matriz de identidad 3x3 con ceros","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"Matriz de identidad 3x3 con celdas en blanco que no están en la diagonal","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"Flecha inferior derecha e izquierda","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"Flecha superior derecha e izquierda","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"Flecha inferior hacia izquierda","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"Flecha superior hacia izquierda","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"Flecha inferior hacia derecha","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"Flecha superior hacia derecha","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"Dos puntos igual","PDFE.Controllers.InsTab.txtOperator_Custom_1":"Produce","PDFE.Controllers.InsTab.txtOperator_Custom_2":"Produce con delta","PDFE.Controllers.InsTab.txtOperator_Definition":"Igual por definición","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"Delta igual a","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"Flecha doble inferior derecha e izquierda","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"Flecha doble superior derecha e izquierda","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"Flecha inferior hacia izquierda","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"Flecha superior hacia izquierda","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"Flecha inferior hacia derecha","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"Flecha superior hacia derecha","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"Igual igual","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"Menos igual","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"Más igual","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"Unidad de medida","PDFE.Controllers.InsTab.txtRadicalCustom_1":"Lado derecho de la fórmula cuadrática","PDFE.Controllers.InsTab.txtRadicalCustom_2":"Raíz cuadrada de un cuadrado más b al cuadrado","PDFE.Controllers.InsTab.txtRadicalRoot_2":"Raíz cuadrada con índice","PDFE.Controllers.InsTab.txtRadicalRoot_3":"Raíz cúbica","PDFE.Controllers.InsTab.txtRadicalRoot_n":"Radical con índice","PDFE.Controllers.InsTab.txtRadicalSqrt":"Raíz cuadrada","PDFE.Controllers.InsTab.txtRectangles":"Rectángulos","PDFE.Controllers.InsTab.txtScriptCustom_1":"x subíndice y al cuadrado","PDFE.Controllers.InsTab.txtScriptCustom_2":"e elevado a menos i omega t","PDFE.Controllers.InsTab.txtScriptCustom_3":"x al cuadrado","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y superíndice izquierdo n subíndice izquierdo uno","PDFE.Controllers.InsTab.txtScriptSub":"Subíndice","PDFE.Controllers.InsTab.txtScriptSubSup":"Subíndice-Superíndice","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"Subíndice-superíndice izquierdo","PDFE.Controllers.InsTab.txtScriptSup":"Superíndice","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"Llamada con línea 1 (borde y barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"Llamada con línea 2 (borde y barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"Llamada con línea 3 (borde y barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"Llamada con línea 1 (barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"Llamada con línea 2 (barra de énfasis)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"Llamada con línea 3 (barra de énfasis)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"Botón de atrás o anterior","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"Botón de inicio","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"Botón en blanco","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"Botón de documento","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"Botón de final","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"Botón de adelante o siguiente","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"Botón de ayuda","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"Botón de inicio","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"Botón de información","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"Botón de vídeo","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"Botón de regreso","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"Botón de sonido","PDFE.Controllers.InsTab.txtShape_arc":"Arco","PDFE.Controllers.InsTab.txtShape_bentArrow":"Flecha doblada","PDFE.Controllers.InsTab.txtShape_bentConnector5":"Conector angular","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"Conector angular de flecha","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"Conector angular de flecha doble","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"Flecha doblada hacia arriba","PDFE.Controllers.InsTab.txtShape_bevel":"Bisel","PDFE.Controllers.InsTab.txtShape_blockArc":"Arco de bloque","PDFE.Controllers.InsTab.txtShape_borderCallout1":"Llamada con línea 1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"Llamada con línea 2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"Llamada con línea 3","PDFE.Controllers.InsTab.txtShape_bracePair":"Llaves","PDFE.Controllers.InsTab.txtShape_callout1":"Llamada con línea 1 (sin borde)","PDFE.Controllers.InsTab.txtShape_callout2":"Llamada con línea 2 (sin borde)","PDFE.Controllers.InsTab.txtShape_callout3":"Llamada con línea 3 (sin borde)","PDFE.Controllers.InsTab.txtShape_can":"Сilindro","PDFE.Controllers.InsTab.txtShape_chevron":"Cheurón","PDFE.Controllers.InsTab.txtShape_chord":"Acorde","PDFE.Controllers.InsTab.txtShape_circularArrow":"Flecha circular","PDFE.Controllers.InsTab.txtShape_cloud":"Nube","PDFE.Controllers.InsTab.txtShape_cloudCallout":"Llamada de nube","PDFE.Controllers.InsTab.txtShape_corner":"Esquina","PDFE.Controllers.InsTab.txtShape_cube":"Cubo","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"Conector curvado","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"Conector curvado de flecha","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"Conector curvado de flecha doble","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"Flecha curvada hacia abajo","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"Flecha curvada hacia la izquierda","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"Flecha curvada hacia la derecha","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"Flecha curvada hacia arriba","PDFE.Controllers.InsTab.txtShape_decagon":"Decágono","PDFE.Controllers.InsTab.txtShape_diagStripe":"Franja diagonal","PDFE.Controllers.InsTab.txtShape_diamond":"Rombo","PDFE.Controllers.InsTab.txtShape_dodecagon":"Dodecágono","PDFE.Controllers.InsTab.txtShape_donut":"Anillo","PDFE.Controllers.InsTab.txtShape_doubleWave":"Doble onda","PDFE.Controllers.InsTab.txtShape_downArrow":"Flecha hacia abajo","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"Llamada de flecha hacia abajo","PDFE.Controllers.InsTab.txtShape_ellipse":"Elipse","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"Cinta curvada hacia abajo","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"Cinta curvada hacia arriba","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"Diagrama de flujo: Proceso alternativo","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"Diagrama de flujo: Intercalar","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"Diagrama de flujo: Conector","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"Diagrama de flujo: Decisión","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"Diagrama de flujo: Retraso","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"Diagrama de flujo: Pantalla","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"Diagrama de flujo: Documento","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"Diagrama de flujo: Extracto","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"Diagrama de flujo: Datos","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"Diagrama de flujo: Almacenamiento interno","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"Diagrama de flujo: Disco magnético","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"Diagrama de flujo: Almacenamiento de acceso directo","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"Diagrama de flujo: Almacenamiento de acceso secuencial","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"Diagrama de flujo: Entrada manual","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"Diagrama de flujo: Operación manual","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"Diagrama de flujo: Combinar","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"Diagrama de flujo: Multidocumento","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"Diagrama de flujo: Conector fuera de página","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"Diagrama de flujo: Datos almacenados","PDFE.Controllers.InsTab.txtShape_flowChartOr":"Diagrama de flujo: O","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"Diagrama de flujo: Proceso predefinido","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"Diagrama de flujo: Preparación","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"Diagrama de flujo: Proceso","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"Diagrama de flujo: Tarjeta","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"Diagrama de flujo: Cinta perforada","PDFE.Controllers.InsTab.txtShape_flowChartSort":"Diagrama de flujo: Ordenar","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"Diagrama de flujo: Conexión sumadora","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"Diagrama de flujo: Terminador","PDFE.Controllers.InsTab.txtShape_foldedCorner":"Esquina doblada","PDFE.Controllers.InsTab.txtShape_frame":"Marco","PDFE.Controllers.InsTab.txtShape_halfFrame":"Medio marco","PDFE.Controllers.InsTab.txtShape_heart":"Corazón","PDFE.Controllers.InsTab.txtShape_heptagon":"Heptágono","PDFE.Controllers.InsTab.txtShape_hexagon":"Hexágono","PDFE.Controllers.InsTab.txtShape_homePlate":"Pentágono","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"Pergamino horizontal","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"Explosión 1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"Explosión 2","PDFE.Controllers.InsTab.txtShape_leftArrow":"Flecha izquierda","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"Llamada de flecha a la izquierda","PDFE.Controllers.InsTab.txtShape_leftBrace":"Abrir llave","PDFE.Controllers.InsTab.txtShape_leftBracket":"Abrir corchete","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"Flecha izquierda y derecha","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"Llamada de flecha izquierda y derecha","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"Flecha izquierda, derecha y arriba","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"Flecha izquierda y arriba","PDFE.Controllers.InsTab.txtShape_lightningBolt":"Rayo","PDFE.Controllers.InsTab.txtShape_line":"Línea","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"Flecha","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"Flecha doble","PDFE.Controllers.InsTab.txtShape_mathDivide":"División","PDFE.Controllers.InsTab.txtShape_mathEqual":"Igual","PDFE.Controllers.InsTab.txtShape_mathMinus":"Menos","PDFE.Controllers.InsTab.txtShape_mathMultiply":"Multiplicar","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"No igual","PDFE.Controllers.InsTab.txtShape_mathPlus":"Más","PDFE.Controllers.InsTab.txtShape_moon":"Luna","PDFE.Controllers.InsTab.txtShape_noSmoking":"Señal de prohibición","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"Flecha a la derecha con muesca","PDFE.Controllers.InsTab.txtShape_octagon":"Octágono","PDFE.Controllers.InsTab.txtShape_parallelogram":"Paralelogramo","PDFE.Controllers.InsTab.txtShape_pentagon":"Pentágono","PDFE.Controllers.InsTab.txtShape_pie":"Sector del círculo","PDFE.Controllers.InsTab.txtShape_plaque":"Signo","PDFE.Controllers.InsTab.txtShape_plus":"Más","PDFE.Controllers.InsTab.txtShape_polyline1":"A mano alzada","PDFE.Controllers.InsTab.txtShape_polyline2":"Forma libre","PDFE.Controllers.InsTab.txtShape_quadArrow":"Flecha cuádruple","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"Llamada de flecha cuádruple","PDFE.Controllers.InsTab.txtShape_rect":"Rectángulo","PDFE.Controllers.InsTab.txtShape_ribbon":"Cinta hacia abajo","PDFE.Controllers.InsTab.txtShape_ribbon2":"Cinta hacia arriba","PDFE.Controllers.InsTab.txtShape_rightArrow":"Flecha derecha","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"Llamada de flecha a la derecha","PDFE.Controllers.InsTab.txtShape_rightBrace":"Cerrar llave","PDFE.Controllers.InsTab.txtShape_rightBracket":"Cerrar corchete","PDFE.Controllers.InsTab.txtShape_round1Rect":"Rectángulo sencillo de esquina redondeada","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"Rectángulo de esquina redondeada en diagonal","PDFE.Controllers.InsTab.txtShape_round2SameRect":"Rectángulo de esquina redondeada del mismo lado","PDFE.Controllers.InsTab.txtShape_roundRect":"Rectángulo con esquinas redondeadas","PDFE.Controllers.InsTab.txtShape_rtTriangle":"Triángulo rectángulo","PDFE.Controllers.InsTab.txtShape_smileyFace":"Cara sonriente","PDFE.Controllers.InsTab.txtShape_snip1Rect":"Rectángulo de esquina sencilla recortada","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"Rectángulo de esquina diagonal recortada","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"Rectángulo de esquina recortada del mismo lado","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"Rectángulo de esquina sencilla redondeada y recortada","PDFE.Controllers.InsTab.txtShape_spline":"Curva","PDFE.Controllers.InsTab.txtShape_star10":"Estrella de 10 puntas","PDFE.Controllers.InsTab.txtShape_star12":"Estrella de 12 puntas","PDFE.Controllers.InsTab.txtShape_star16":"Estrella de 16 puntas","PDFE.Controllers.InsTab.txtShape_star24":"Estrella de 24 puntas","PDFE.Controllers.InsTab.txtShape_star32":"Estrella de 32 puntas","PDFE.Controllers.InsTab.txtShape_star4":"Estrella de 4 puntas","PDFE.Controllers.InsTab.txtShape_star5":"Estrella de 5 puntas","PDFE.Controllers.InsTab.txtShape_star6":"Estrella de 6 puntas","PDFE.Controllers.InsTab.txtShape_star7":"Estrella de 7 puntas","PDFE.Controllers.InsTab.txtShape_star8":"Estrella de 8 puntas","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"Flecha a la derecha con bandas","PDFE.Controllers.InsTab.txtShape_sun":"Sol","PDFE.Controllers.InsTab.txtShape_teardrop":"Lágrima","PDFE.Controllers.InsTab.txtShape_textRect":"Cuadro de texto","PDFE.Controllers.InsTab.txtShape_trapezoid":"Trapecio","PDFE.Controllers.InsTab.txtShape_triangle":"Triángulo","PDFE.Controllers.InsTab.txtShape_upArrow":"Flecha hacia arriba","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"Llamada de flecha hacia arriba","PDFE.Controllers.InsTab.txtShape_upDownArrow":"Flecha hacia arriba y abajo","PDFE.Controllers.InsTab.txtShape_uturnArrow":"Flecha en U","PDFE.Controllers.InsTab.txtShape_verticalScroll":"Pergamino vertical","PDFE.Controllers.InsTab.txtShape_wave":"Onda","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"Llamada ovalada","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"Llamada rectangular","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"Llamada rectangular redondeada","PDFE.Controllers.InsTab.txtStarsRibbons":"Cintas y estrellas","PDFE.Controllers.InsTab.txtSymbol_about":"Aproximadamente","PDFE.Controllers.InsTab.txtSymbol_additional":"Complemento","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Alfa","PDFE.Controllers.InsTab.txtSymbol_approx":"Casi igual a","PDFE.Controllers.InsTab.txtSymbol_ast":"Operador asterisco","PDFE.Controllers.InsTab.txtSymbol_beta":"Beta","PDFE.Controllers.InsTab.txtSymbol_beth":"Bet","PDFE.Controllers.InsTab.txtSymbol_bullet":"Operador de viñeta","PDFE.Controllers.InsTab.txtSymbol_cap":"Intersección","PDFE.Controllers.InsTab.txtSymbol_cbrt":"Raíz cúbica","PDFE.Controllers.InsTab.txtSymbol_cdots":"Elipsis horizontal de línea media","PDFE.Controllers.InsTab.txtSymbol_celsius":"Grados Celsius","PDFE.Controllers.InsTab.txtSymbol_chi":"Chi","PDFE.Controllers.InsTab.txtSymbol_cong":"Aproximadamente igual a","PDFE.Controllers.InsTab.txtSymbol_cup":"Unión","PDFE.Controllers.InsTab.txtSymbol_ddots":"Elipsis en diagonal de derecha a izquierda","PDFE.Controllers.InsTab.txtSymbol_degree":"Grados","PDFE.Controllers.InsTab.txtSymbol_delta":"Delta","PDFE.Controllers.InsTab.txtSymbol_div":"Signo de división","PDFE.Controllers.InsTab.txtSymbol_downarrow":"Flecha hacia abajo","PDFE.Controllers.InsTab.txtSymbol_emptyset":"Conjunto vacío","PDFE.Controllers.InsTab.txtSymbol_epsilon":"Épsilon","PDFE.Controllers.InsTab.txtSymbol_equals":"Igual","PDFE.Controllers.InsTab.txtSymbol_equiv":"Idéntico a","PDFE.Controllers.InsTab.txtSymbol_eta":"Eta","PDFE.Controllers.InsTab.txtSymbol_exists":"Existe","PDFE.Controllers.InsTab.txtSymbol_factorial":"Factorial","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"Grados Fahrenheit","PDFE.Controllers.InsTab.txtSymbol_forall":"Para todos","PDFE.Controllers.InsTab.txtSymbol_gamma":"Gamma","PDFE.Controllers.InsTab.txtSymbol_geq":"Mayor que o igual a","PDFE.Controllers.InsTab.txtSymbol_gg":"Mucho mayor que","PDFE.Controllers.InsTab.txtSymbol_greater":"Mayor que","PDFE.Controllers.InsTab.txtSymbol_in":"Elemento de","PDFE.Controllers.InsTab.txtSymbol_inc":"Incremento","PDFE.Controllers.InsTab.txtSymbol_infinity":"Infinito","PDFE.Controllers.InsTab.txtSymbol_iota":"Iota","PDFE.Controllers.InsTab.txtSymbol_kappa":"Kappa","PDFE.Controllers.InsTab.txtSymbol_lambda":"Lambda","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"Flecha izquierda","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"Flecha izquierda-derecha","PDFE.Controllers.InsTab.txtSymbol_leq":"Menor que o igual a","PDFE.Controllers.InsTab.txtSymbol_less":"Menor que","PDFE.Controllers.InsTab.txtSymbol_ll":"Mucho menor que","PDFE.Controllers.InsTab.txtSymbol_minus":"Menos","PDFE.Controllers.InsTab.txtSymbol_mp":"Menos más","PDFE.Controllers.InsTab.txtSymbol_mu":"Mi","PDFE.Controllers.InsTab.txtSymbol_nabla":"Nabla","PDFE.Controllers.InsTab.txtSymbol_neq":"No igual a","PDFE.Controllers.InsTab.txtSymbol_ni":"Contiene como miembro","PDFE.Controllers.InsTab.txtSymbol_not":"Signo de negación","PDFE.Controllers.InsTab.txtSymbol_notexists":"No existe","PDFE.Controllers.InsTab.txtSymbol_nu":"Ni","PDFE.Controllers.InsTab.txtSymbol_o":"Ómicron","PDFE.Controllers.InsTab.txtSymbol_omega":"Omega","PDFE.Controllers.InsTab.txtSymbol_partial":"Diferencial parcial","PDFE.Controllers.InsTab.txtSymbol_percent":"Porcentaje","PDFE.Controllers.InsTab.txtSymbol_phi":"Fi","PDFE.Controllers.InsTab.txtSymbol_pi":"Pi","PDFE.Controllers.InsTab.txtSymbol_plus":"Más","PDFE.Controllers.InsTab.txtSymbol_pm":"Más menos","PDFE.Controllers.InsTab.txtSymbol_propto":"Proporcional a","PDFE.Controllers.InsTab.txtSymbol_psi":"Psi","PDFE.Controllers.InsTab.txtSymbol_qdrt":"Raíz cuarta","PDFE.Controllers.InsTab.txtSymbol_qed":"Lo que era necesario demostrar","PDFE.Controllers.InsTab.txtSymbol_rddots":"Elipsis en diagonal de izquierda a derecha","PDFE.Controllers.InsTab.txtSymbol_rho":"Ro","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"Flecha derecha","PDFE.Controllers.InsTab.txtSymbol_sigma":"Sigma","PDFE.Controllers.InsTab.txtSymbol_sqrt":"Signo de radical","PDFE.Controllers.InsTab.txtSymbol_tau":"Tau","PDFE.Controllers.InsTab.txtSymbol_therefore":"Por lo tanto ","PDFE.Controllers.InsTab.txtSymbol_theta":"Zeta","PDFE.Controllers.InsTab.txtSymbol_times":"Signo de multiplicación","PDFE.Controllers.InsTab.txtSymbol_uparrow":"Flecha hacia arriba","PDFE.Controllers.InsTab.txtSymbol_upsilon":"Ípsilon","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"Épsilon (variante)","PDFE.Controllers.InsTab.txtSymbol_varphi":"Variante fi","PDFE.Controllers.InsTab.txtSymbol_varpi":"Variante pi","PDFE.Controllers.InsTab.txtSymbol_varrho":"Variante ro","PDFE.Controllers.InsTab.txtSymbol_varsigma":"Variante sigma","PDFE.Controllers.InsTab.txtSymbol_vartheta":"Variante zeta","PDFE.Controllers.InsTab.txtSymbol_vdots":"Elipsis vertical","PDFE.Controllers.InsTab.txtSymbol_xsi":"Csi","PDFE.Controllers.InsTab.txtSymbol_zeta":"Dseda","PDFE.Controllers.LeftMenu.leavePageText":"Todos los cambios no guardados de este documento se perderán.
Pulse \"Cancelar\", después \"Guardar\" para guardarlos. Pulse \"OK\" para deshacer todos los cambios no guardados.","PDFE.Controllers.LeftMenu.newDocumentTitle":"Documento sin título","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"Advertencia","PDFE.Controllers.LeftMenu.requestEditRightsText":"Solicitando permisos de edición...","PDFE.Controllers.LeftMenu.textLoadHistory":"Cargando historial de versiones...","PDFE.Controllers.LeftMenu.textNoTextFound":"No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","PDFE.Controllers.LeftMenu.textSelectPath":"Introduzca un nuevo nombre para guardar la copia del archivo","PDFE.Controllers.LeftMenu.txtCompatible":"El documento se guardará en el nuevo formato. Permitirá utilizar todas las características del editor, pero podría afectar al diseño del documento.
Utilice la opción 'Compatibilidad' de la configuración avanzada si quiere hacer que los archivos sean compatibles con versiones anteriores de MS Word.","PDFE.Controllers.LeftMenu.txtUntitled":"Sin título","PDFE.Controllers.LeftMenu.warnDownloadAs":"Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
¿Está seguro de que quiere continuar?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"Su {0} se convertirá en un formato editable. Esto puede llevar un tiempo. El documento resultante será optimizado para permitirle editar el texto, por lo que puede que no se vea exactamente como el {0} original, especialmente si el archivo original contenía muchos gráficos.","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"Si sigue guardando en este formato, una parte del formato puede perderse.
¿Está seguro de que desea continuar?","PDFE.Controllers.Main.applyChangesTextText":"Cargando cambios...","PDFE.Controllers.Main.applyChangesTitleText":"Cargando los cambios","PDFE.Controllers.Main.confirmMaxChangesSize":"El tamaño de las acciones excede la limitación establecida para su servidor.
Pulse \"Deshacer\" para cancelar su última acción o pulse \"Continuar\" para mantener la acción localmente (debe descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada).","PDFE.Controllers.Main.convertationTimeoutText":"Se ha superado el tiempo de conversión.","PDFE.Controllers.Main.criticalErrorExtText":"Pulse \"OK\" para regresar a la lista de documentos.","PDFE.Controllers.Main.criticalErrorExtTextClose":"Pulse \"OK\" para cerrar el editor.","PDFE.Controllers.Main.criticalErrorTitle":"Error","PDFE.Controllers.Main.downloadErrorText":"Error al descargar.","PDFE.Controllers.Main.downloadMergeText":"Descargando...","PDFE.Controllers.Main.downloadMergeTitle":"Descargando","PDFE.Controllers.Main.downloadTextText":"Descargando documento...","PDFE.Controllers.Main.downloadTitleText":"Descargando documento","PDFE.Controllers.Main.errorAccessDeny":"Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con el Administrador del Servidor de Documentos.","PDFE.Controllers.Main.errorBadImageUrl":"La URL de la imagen es incorrecta","PDFE.Controllers.Main.errorCannotPasteImg":"No es posible pegar esta imagen desde el portapapeles, pero puede guardarla en su dispositivo e \ninsertarla desde allí, o puede copiar la imagen sin texto y pegarla en el documento.","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"Se ha perdido la conexión con el servidor. No se puede editar el documento ahora.","PDFE.Controllers.Main.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","PDFE.Controllers.Main.errorConnectToServer":"No se ha podido guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.
Al hacer clic en el botón 'OK', se le solicitará que descargue el documento.","PDFE.Controllers.Main.errorCopyDisabled":"Por motivos de seguridad, el contenido de este documento no se puede copiar.","PDFE.Controllers.Main.errorDatabaseConnection":"Error externo.
Error de conexión a la base de datos. Por favor, póngase en contacto con atención al cliente si el error persiste.","PDFE.Controllers.Main.errorDataEncrypted":"Se han recibido cambios cifrados que no pueden descifrarse.","PDFE.Controllers.Main.errorDataRange":"Rango de datos incorrecto.","PDFE.Controllers.Main.errorDefaultMessage":"Código de error: %1","PDFE.Controllers.Main.errorDirectUrl":"Por favor, compruebe el enlace al documento.
Este enlace debe ser un enlace directo al archivo que descargar.","PDFE.Controllers.Main.errorEditingDownloadas":"Se ha producido 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.","PDFE.Controllers.Main.errorEditingSaveas":"Se ha producido un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro.","PDFE.Controllers.Main.errorEmailClient":"No se ha podido encontrar ningún cliente de correo","PDFE.Controllers.Main.errorFilePassProtect":"El archivo está protegido por una contraseña y no se puede abrir.","PDFE.Controllers.Main.errorFileSizeExceed":"El tamaño del archivo excede la limitación establecida para su servidor.
Por favor, póngase en contacto con el administrador del Servidor de documentos para obtener más detalles. ","PDFE.Controllers.Main.errorForceSave":"Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.","PDFE.Controllers.Main.errorInconsistentExt":"Se ha producido un error al abrir el archivo.
El contenido del archivo no coincide con la extensión del mismo.","PDFE.Controllers.Main.errorInconsistentExtDocx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde a documentos de texto (por ejemplo, docx), pero el archivo tiene extensión inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtPdf":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde a uno de los siguientes formatos: pdf/djvu/xps/oxps, pero el archivo tiene extensión inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtPptx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde a presentaciones (por ejemplo, pptx), pero el archivo tiene extensión inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtXlsx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde a hojas de cálculo (por ejemplo, xlsx), pero el archivo tiene extensión inconsistente: %1.","PDFE.Controllers.Main.errorKeyEncrypt":"Descriptor de clave desconocido","PDFE.Controllers.Main.errorKeyExpire":"El descriptor de la clave ha expirado","PDFE.Controllers.Main.errorLoadingFont":"Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del servidor de documentos.","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"La contraseña que ha proporcionado no es correcta.
Verifique que la tecla «Bloq Mayús» esté desactivada y asegúrese de utilizar las mayúsculas correctamente.","PDFE.Controllers.Main.errorPDFFormsLocked":"La acción no puede realizarse porque provoca cambios en los formularios bloqueados.","PDFE.Controllers.Main.errorSaveWatermark":"Este archivo contiene una imagen de marca de agua vinculada a otro dominio.
Para que sea visible en PDF, actualice la imagen de marca de agua para que se vincule desde el mismo dominio que su documento, o cárguela desde su ordenador.","PDFE.Controllers.Main.errorServerVersion":"La versión del editor se ha actualizado. La página se recargará para aplicar los cambios.","PDFE.Controllers.Main.errorSessionAbsolute":"La sesión de editar el documento ha expirado. Por favor, recargue la página.","PDFE.Controllers.Main.errorSessionIdle":"El documento no se ha editado durante bastante tiempo. Por favor, recargue la página.","PDFE.Controllers.Main.errorSessionToken":"La conexión al servidor ha sido interrumpido. Por favor, recargue la página.","PDFE.Controllers.Main.errorSetPassword":"No se ha podido establecer la contraseña.","PDFE.Controllers.Main.errorStockChart":"El orden de las filas es incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja en el orden siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","PDFE.Controllers.Main.errorTextFormWrongFormat":"El valor introducido no se corresponde con el formato del campo","PDFE.Controllers.Main.errorToken":"El token de seguridad del documento tiene un formato incorrecto.
Por favor, contacte con el Administrador del Servidor de Documentos.","PDFE.Controllers.Main.errorTokenExpire":"El token de seguridad del documento ha expirado.
Por favor, póngase en contacto con el administrador del Servidor de Documentos.","PDFE.Controllers.Main.errorUpdateVersion":"Se ha cambiado la versión del archivo. La página será actualizada.","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.","PDFE.Controllers.Main.errorUserDrop":"No se puede acceder al archivo ahora.","PDFE.Controllers.Main.errorUsersExceed":"Se ha excedido el número de usuarios permitido por su plan contratado","PDFE.Controllers.Main.errorViewerDisconnect":"Se ha perdido la conexión. Usted todavía puede visualizar el documento,
pero no puede descargar o imprimirlo hasta que la conexión sea restaurada y la página esté recargada.","PDFE.Controllers.Main.leavePageText":"Hay cambios no guardados en este documento. Haga clic en 'Permanecer en esta página', después 'Guardar' para guardarlos. Haga clic en 'Abandonar esta página' para descartar todos los cambios no guardados.","PDFE.Controllers.Main.leavePageTextOnClose":"Todos los cambios no guardados de este documento se perderán.
Pulse \"Cancelar\", después \"Guardar\" para guardarlos. Pulse \"OK\" para deshacer todos los cambios no guardados.","PDFE.Controllers.Main.loadFontsTextText":"Cargando datos...","PDFE.Controllers.Main.loadFontsTitleText":"Cargando datos","PDFE.Controllers.Main.loadFontTextText":"Cargando datos...","PDFE.Controllers.Main.loadFontTitleText":"Cargando datos","PDFE.Controllers.Main.loadImagesTextText":"Cargando imágenes...","PDFE.Controllers.Main.loadImagesTitleText":"Cargando imágenes","PDFE.Controllers.Main.loadImageTextText":"Cargando imagen...","PDFE.Controllers.Main.loadImageTitleText":"Cargando imagen","PDFE.Controllers.Main.loadingDocumentTextText":"Cargando documento...","PDFE.Controllers.Main.loadingDocumentTitleText":"Cargando documento","PDFE.Controllers.Main.notcriticalErrorTitle":"Advertencia","PDFE.Controllers.Main.openErrorText":"Se ha producido un error al abrir el archivo.","PDFE.Controllers.Main.openTextText":"Abriendo documento...","PDFE.Controllers.Main.openTitleText":"Abriendo documento","PDFE.Controllers.Main.printTextText":"Imprimiendo documento...","PDFE.Controllers.Main.printTitleText":"Imprimiendo documento","PDFE.Controllers.Main.reloadButtonText":"Volver a cargar página","PDFE.Controllers.Main.requestEditFailedMessageText":"Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.","PDFE.Controllers.Main.requestEditFailedTitleText":"Acceso denegado","PDFE.Controllers.Main.saveErrorText":"Se ha producido un error al guardar el archivo. ","PDFE.Controllers.Main.saveErrorTextDesktop":"Este archivo no se puede guardar o crear.
Las razones posibles son:
1. El archivo es de solo lectura.
2. El archivo está siendo editado por otros usuarios.
3. El disco está lleno o corrupto.","PDFE.Controllers.Main.saveTextText":"Guardando documento...","PDFE.Controllers.Main.saveTitleText":"Guardando documento","PDFE.Controllers.Main.scriptLoadError":"La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.","PDFE.Controllers.Main.splitDividerErrorText":"El número de filas debe ser un divisor de %1.","PDFE.Controllers.Main.splitMaxColsErrorText":"El número de columnas debe ser menor que %1.","PDFE.Controllers.Main.splitMaxRowsErrorText":"El número de filas debe ser menor que %1.","PDFE.Controllers.Main.textAnonymous":"Anónimo","PDFE.Controllers.Main.textAnyone":"Cualquiera","PDFE.Controllers.Main.textBuyNow":"Visitar sitio web","PDFE.Controllers.Main.textChangesSaved":"Se han guardado todos los cambios","PDFE.Controllers.Main.textClose":"Cerrar","PDFE.Controllers.Main.textCloseTip":"Pulse para cerrar el consejo","PDFE.Controllers.Main.textConnectionLost":"Intentando conectar. Por favor, compruebe los ajustes de conexión.","PDFE.Controllers.Main.textContactUs":"Contactar con el equipo de ventas","PDFE.Controllers.Main.textContinue":"Continuar","PDFE.Controllers.Main.textCustomLoader":"Tenga en cuenta que, según los términos de la licencia, usted no tiene permiso para cambiar el cargador.
Por favor, póngase en contacto con nuestro departamento de ventas para obtener más información.","PDFE.Controllers.Main.textDisconnect":"Se ha perdido la conexión","PDFE.Controllers.Main.textGuest":"Invitado","PDFE.Controllers.Main.textLearnMore":"Más información","PDFE.Controllers.Main.textLoadingDocument":"Cargando documento","PDFE.Controllers.Main.textLongName":"Escriba un nombre que tenga menos de 128 caracteres.","PDFE.Controllers.Main.textNoLicenseTitle":"Se ha alcanzado el límite de licencia","PDFE.Controllers.Main.textPaidFeature":"Característica de pago","PDFE.Controllers.Main.textReconnect":"Se ha restablecido la conexión","PDFE.Controllers.Main.textRemember":"Recordar mi elección para todos los archivos","PDFE.Controllers.Main.textRenameError":"El nombre de usuario no debe estar vacío.","PDFE.Controllers.Main.textRenameLabel":"Escriba un nombre que se utilizará para la colaboración","PDFE.Controllers.Main.textShape":"Forma","PDFE.Controllers.Main.textStrict":"Modo estricto","PDFE.Controllers.Main.textText":"Texto","PDFE.Controllers.Main.textTryQuickPrint":"Ha seleccionado «impresión rápida»: todo el documento se imprimirá en la última impresora seleccionada o predeterminada.
¿Desea continuar?","PDFE.Controllers.Main.textTryUndoRedo":"Las funciones Deshacer/Rehacer están desactivadas para el modo de co-edición Rápido.
Haga clic en el botón \"Modo estricto\" para cambiar al modo de co-edición al Estricto para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios solo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.","PDFE.Controllers.Main.textTryUndoRedoWarn":"Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.","PDFE.Controllers.Main.textUndo":"Deshacer","PDFE.Controllers.Main.textUpdateVersion":"El documento no se puede editar en este momento.
Tratando de actualizar el archivo, por favor espere...","PDFE.Controllers.Main.textUpdating":"Actualizando","PDFE.Controllers.Main.tipLicenseExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de conexiones simultáneas permitidas por la licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","PDFE.Controllers.Main.tipLicenseUsersExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de usuarios autorizados a editar documentos por licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","PDFE.Controllers.Main.titleLicenseExp":"Su licencia ha expirado","PDFE.Controllers.Main.titleLicenseNotActive":"Licencia no activa","PDFE.Controllers.Main.titleReadOnly":"Modo de sólo lectura","PDFE.Controllers.Main.titleServerVersion":"El editor se ha actualizado","PDFE.Controllers.Main.titleUpdateVersion":"La versión ha cambiado","PDFE.Controllers.Main.txtArt":"Su texto aquí","PDFE.Controllers.Main.txtButton":"Botón","PDFE.Controllers.Main.txtCheckbox":"Casilla","PDFE.Controllers.Main.txtChoose":"Elija un elemento","PDFE.Controllers.Main.txtClickToLoad":"Haga clic para cargar la imagen","PDFE.Controllers.Main.txtDiagramTitle":"Título de gráfico","PDFE.Controllers.Main.txtDocUnlockDescription":"Introduzca una contraseña para desbloquear el documento","PDFE.Controllers.Main.txtDropdown":"Lista desplegable","PDFE.Controllers.Main.txtEditingMode":"Establecer el modo de edición...","PDFE.Controllers.Main.txtEnterDate":"Introduzca una fecha","PDFE.Controllers.Main.txtErrorLoadHistory":"Error al cargar el historial","PDFE.Controllers.Main.txtGroup":"Grupo","PDFE.Controllers.Main.txtInvalidGreater":"Valor no válido para el campo \"{0}\": debe ser mayor o igual que {1}.","PDFE.Controllers.Main.txtInvalidGreaterLess":"Valor no válido para el campo \"{0}\": debe ser mayor o igual que {1} y menor o igual que {2}.","PDFE.Controllers.Main.txtInvalidLess":"Valor no válido para el campo \"{0}\": debe ser menor o igual que {1}.","PDFE.Controllers.Main.txtInvalidPdfFormat":"El valor introducido no coincide con el formato del campo \"{0}\".","PDFE.Controllers.Main.txtInvalidValue":"Valor no válido para el campo\"{0}\"","PDFE.Controllers.Main.txtListbox":"Lista","PDFE.Controllers.Main.txtNeedSynchronize":"Hay actualizaciones disponibles","PDFE.Controllers.Main.txtSaveCopyAsComplete":"La copia del archivo se ha guardado correctamente","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"Este documento está intentando conectarse a {0}.
Si confía en este sitio, pulse «OK».","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"Este documento está intentando abrir el diálogo de archivo, pulse \"OK\" para abrir.","PDFE.Controllers.Main.txtSeries":"Serie","PDFE.Controllers.Main.txtSignature":"Firma","PDFE.Controllers.Main.txtText":"Texto","PDFE.Controllers.Main.txtUnlockTitle":"Desbloquear documento","PDFE.Controllers.Main.txtValidPdfFormat":"El valor del campo debe coincidir con el formato \"{0}\".","PDFE.Controllers.Main.txtXAxis":"Eje X","PDFE.Controllers.Main.txtYAxis":"Eje Y","PDFE.Controllers.Main.unknownErrorText":"Error desconocido.","PDFE.Controllers.Main.unsupportedBrowserErrorText":"Su navegador no es compatible.","PDFE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconocido.","PDFE.Controllers.Main.uploadDocFileCountMessage":"No hay documentos subidos.","PDFE.Controllers.Main.uploadDocSizeMessage":"Se ha excedido el límite de tamaño máximo del documento.","PDFE.Controllers.Main.uploadImageExtMessage":"Formato de imagen desconocido.","PDFE.Controllers.Main.uploadImageFileCountMessage":"No hay imágenes subidas.","PDFE.Controllers.Main.uploadImageSizeMessage":"La imagen es demasiado grande. El tamaño máximo es de 25 MB.","PDFE.Controllers.Main.uploadImageTextText":"Cargando imagen...","PDFE.Controllers.Main.uploadImageTitleText":"Cargando imagen","PDFE.Controllers.Main.waitText":"Por favor, espere...","PDFE.Controllers.Main.warnBrowserIE9":"Esta aplicación tiene bajas capacidades en IE9. Utilice IE10 o superior","PDFE.Controllers.Main.warnBrowserZoom":"La configuración actual de 'zoom' de su navegador no es compatible por completo. Por favor, restablezca el 'zoom' predeterminado pulsando Ctrl+0.","PDFE.Controllers.Main.warnLicenseAnonymous":"Acceso denegado a usuarios anónimos.
Este documento se abrirá solo para su visualización.","PDFE.Controllers.Main.warnLicenseBefore":"Licencia no activa.
Por favor, póngase en contacto con su administrador.","PDFE.Controllers.Main.warnLicenseExp":"Su licencia ha expirado.
Por favor, actualice su licencia y después recargue la página.","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"Licencia expirada.
No tiene acceso a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador.","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"Se requiere que renueve su licencia.
Tiene un acceso limitado a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador para obtener un acceso completo","PDFE.Controllers.Main.warnNoLicense":"Usted ha alcanzado el límite de conexiones simultáneas con los editores %1. Este documento se abrirá solo para su visualización.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.","PDFE.Controllers.Main.warnNoLicenseUsers":"Usted ha alcanzado el límite de usuarios para los editores %1.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.","PDFE.Controllers.Main.warnProcessRightsChange":"Se le ha denegado el permiso para editar este archivo.","PDFE.Controllers.Navigation.txtBeginning":"Principio del documento","PDFE.Controllers.Navigation.txtGotoBeginning":"Ir al principio del documento","PDFE.Controllers.Print.textMarginsLast":"Último personalizado","PDFE.Controllers.Print.txtCustom":"Personalizado","PDFE.Controllers.Print.txtPrintRangeInvalid":"Intervalo de impresión no válido","PDFE.Controllers.RedactTab.applyButtonText":"Aplicar","PDFE.Controllers.RedactTab.doNotApplyButtonText":"No aplicar","PDFE.Controllers.RedactTab.textApplyRedact":"La información redactada se eliminará permanentemente de este documento. Una vez guardada, la información ya no podrá recuperarse.","PDFE.Controllers.RedactTab.textEnterPageRange":"Introduzca el rango de páginas para la redacción","PDFE.Controllers.RedactTab.textEnterRangeDescription":"por ejemplo, 1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"Redactar páginas","PDFE.Controllers.RedactTab.textUnappliedRedactions":"Este documento contiene marcas de redacción que aún no se han aplicado.

Hasta que seleccione «Aplicar redacciones», estas marcas se pueden eliminar y se puede recuperar la información.","PDFE.Controllers.RedactTab.tipApplyRedaction":"Aplique y guarde todas las redacciones. Las redacciones no guardadas aún se pueden deshacer.","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"Aplicar redacciones","PDFE.Controllers.RedactTab.tipMarkForRedaction":"Utilice estas herramientas para marcar, buscar y redactar contenido confidencial en su archivo PDF.","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"Marcar para redacciones","PDFE.Controllers.RedactTab.txtInvalidFormat":"Formato no válido. Utilice un solo número o un rango con guion, por ejemplo, 2 o 2-6","PDFE.Controllers.RedactTab.txtInvalidRange":"Las páginas deben tener entre 1 y {0}","PDFE.Controllers.RedactTab.txtReversedRange":"La página inicial debe ser menor o igual que la página final","PDFE.Controllers.Search.notcriticalErrorTitle":"Advertencia","PDFE.Controllers.Search.textNoTextFound":"No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","PDFE.Controllers.Search.textReplaceSkipped":"Se ha realizado el reemplazo. Se han omitido {0} coincidencias.","PDFE.Controllers.Search.textReplaceSuccess":"Se ha realizado la búsqueda. Se han sustituido {0} coincidencias","PDFE.Controllers.Search.warnReplaceString":"{0} no es un carácter especial válido para la casilla «Reemplazar con».","PDFE.Controllers.Statusbar.textDisconnect":"Se ha perdido la conexión
Intentando conectar. Compruebe la configuración de la conexión.","PDFE.Controllers.Statusbar.zoomText":"Ampliación {0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"La fuente que va a guardar no está disponible en el dispositivo actual.
El estilo de texto se mostrará utilizando una de las fuentes del dispositivo, la fuente guardada se utilizará cuando esté disponible.
¿Desea continuar?","PDFE.Controllers.Toolbar.errorAccessDeny":"Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del Servidor de documentos.","PDFE.Controllers.Toolbar.helpAnnotRect":"Descubra nuevas herramientas de anotación: rectángulo, círculo, flecha y líneas conectadas.","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"Nuevas anotaciones","PDFE.Controllers.Toolbar.helpPdfCharts":"Inserte y edite gráficos y SmartArt directamente en sus archivos PDF.","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"Gráficos y SmartArt en PDF","PDFE.Controllers.Toolbar.helpRedactTab":"Proteja la información confidencial con la función Redactar, que le permite eliminar de forma segura el contenido confidencial.","PDFE.Controllers.Toolbar.helpRedactTabHeader":"Redactar en PDF","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"Advertencia","PDFE.Controllers.Toolbar.textFontSizeErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico entre 1 y 300","PDFE.Controllers.Toolbar.textGotIt":"Entiendo","PDFE.Controllers.Toolbar.textRequired":"Rellene todos los campos obligatorios para enviar el formulario.","PDFE.Controllers.Toolbar.textSubmited":"Formulario enviado correctamente
Haga clic para cerrar el consejo.","PDFE.Controllers.Toolbar.textTabForms":"Formularios","PDFE.Controllers.Toolbar.textWarning":"Advertencia","PDFE.Controllers.Toolbar.txtDownload":"Descargar","PDFE.Controllers.Toolbar.txtNeedCommentMode":"Para guardar los cambios en el archivo, cambie al modo Сomentario. O puede descargar una copia del archivo modificado.","PDFE.Controllers.Toolbar.txtNeedDownload":"Por el momento, el visor de PDF solo puede guardar los nuevos cambios en copias separadas del archivo. No es compatible con la coedición y otros usuarios no verán sus cambios a menos que comparta una nueva versión del archivo.","PDFE.Controllers.Toolbar.txtSaveCopy":"Guardar copia","PDFE.Controllers.Toolbar.txtUntitled":"Sin título","PDFE.Controllers.Viewport.textFitPage":"Ajustar a la página","PDFE.Controllers.Viewport.textFitWidth":"Ajustar al ancho","PDFE.Controllers.Viewport.txtDarkMode":"Modo oscuro","PDFE.Views.ChartSettings.text3dDepth":"Profundidad (% de la base)","PDFE.Views.ChartSettings.text3dHeight":"Altura (% de la base)","PDFE.Views.ChartSettings.text3dRotation":"Rotación 3D","PDFE.Views.ChartSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.ChartSettings.textAutoscale":"Escalado automático","PDFE.Views.ChartSettings.textChartType":"Cambiar tipo de gráfico","PDFE.Views.ChartSettings.textData":"Datos","PDFE.Views.ChartSettings.textDefault":"Rotación predeterminada","PDFE.Views.ChartSettings.textDown":"Abajo","PDFE.Views.ChartSettings.textEditData":"Editar datos","PDFE.Views.ChartSettings.textEditLinks":"Editar enlaces","PDFE.Views.ChartSettings.textHeight":"Altura","PDFE.Views.ChartSettings.textKeepRatio":"Proporciones constantes","PDFE.Views.ChartSettings.textLeft":"A la izquierda","PDFE.Views.ChartSettings.textLinkedData":"Datos vinculados","PDFE.Views.ChartSettings.textNarrow":"Campo de visión estrecho","PDFE.Views.ChartSettings.textPerspective":"Perspectiva","PDFE.Views.ChartSettings.textRight":"A la derecha","PDFE.Views.ChartSettings.textRightAngle":"Ejes en ángulo recto","PDFE.Views.ChartSettings.textSelectData":"Seleccionar datos","PDFE.Views.ChartSettings.textSize":"Tamaño","PDFE.Views.ChartSettings.textStyle":"Estilo","PDFE.Views.ChartSettings.textUp":"Arriba","PDFE.Views.ChartSettings.textUpdateData":"Actualizar datos","PDFE.Views.ChartSettings.textWiden":"Campo de visión ancho","PDFE.Views.ChartSettings.textWidth":"Ancho","PDFE.Views.ChartSettings.textX":"Rotación X","PDFE.Views.ChartSettings.textY":"Rotación Y","PDFE.Views.ChartSettingsAdvanced.textAlt":"Texto alternativo","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"Descripción","PDFE.Views.ChartSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ChartSettingsAdvanced.textAuto":"Automático","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"Intersección con el eje","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"Posición de eje","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"Título","PDFE.Views.ChartSettingsAdvanced.textBase":"Base","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"Entre marcas de graduación","PDFE.Views.ChartSettingsAdvanced.textBillions":"Miles de millones","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"Nombre de categoría","PDFE.Views.ChartSettingsAdvanced.textCenter":"Centro","PDFE.Views.ChartSettingsAdvanced.textChartName":"Nombre de gráfico","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"Título de gráfico","PDFE.Views.ChartSettingsAdvanced.textCross":"Intersección","PDFE.Views.ChartSettingsAdvanced.textCustom":"Personalizado","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"Etiquetas de datos","PDFE.Views.ChartSettingsAdvanced.textFit":"Ajustar al ancho","PDFE.Views.ChartSettingsAdvanced.textFixed":"Fijado","PDFE.Views.ChartSettingsAdvanced.textFormat":"Formato de etiqueta","PDFE.Views.ChartSettingsAdvanced.textFrom":"De","PDFE.Views.ChartSettingsAdvanced.textGeneral":"General","PDFE.Views.ChartSettingsAdvanced.textGridLines":"Líneas de cuadrícula","PDFE.Views.ChartSettingsAdvanced.textHeight":"Altura","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"Ocultar eje","PDFE.Views.ChartSettingsAdvanced.textHigh":"Más arriba","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"Eje horizontal","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"Eje horizontal secundario","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"Horizontal ","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100.000.000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"Cientos","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100.000","PDFE.Views.ChartSettingsAdvanced.textIn":"En","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"Abajo en el interior","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"Arriba en el interior","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"Proporciones constantes","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"Distancia entre eje y etiqueta","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"Intervalo entre etiquetas","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"Parámetros de etiqueta","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"Posición de etiqueta","PDFE.Views.ChartSettingsAdvanced.textLayout":"Diseño","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"Superposición a la izquierda","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"Abajo ","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"A la izquierda","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"Leyenda","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"A la derecha","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"Arriba","PDFE.Views.ChartSettingsAdvanced.textLines":"Líneas","PDFE.Views.ChartSettingsAdvanced.textLogScale":"Escala logarítmica","PDFE.Views.ChartSettingsAdvanced.textLow":"Más abajo","PDFE.Views.ChartSettingsAdvanced.textMajor":"Principal","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"Principales y secundarios","PDFE.Views.ChartSettingsAdvanced.textMajorType":"Tipo principal","PDFE.Views.ChartSettingsAdvanced.textManual":"Manualmente","PDFE.Views.ChartSettingsAdvanced.textMarkers":"Marcadores","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"Intervalo entre marcas","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"Valor máximo","PDFE.Views.ChartSettingsAdvanced.textMillions":"Millones","PDFE.Views.ChartSettingsAdvanced.textMinor":"Secundario","PDFE.Views.ChartSettingsAdvanced.textMinorType":"Tipo secundario","PDFE.Views.ChartSettingsAdvanced.textMinValue":"Valor mínimo","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"Junto al eje","PDFE.Views.ChartSettingsAdvanced.textNone":"No","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"Sin superposición","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"Marcas de graduación","PDFE.Views.ChartSettingsAdvanced.textOut":"Fuera","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"Arriba en el exterior","PDFE.Views.ChartSettingsAdvanced.textOverlay":"Superposición","PDFE.Views.ChartSettingsAdvanced.textPlacement":"Ubicación","PDFE.Views.ChartSettingsAdvanced.textPosition":"Posición","PDFE.Views.ChartSettingsAdvanced.textReverse":"Valores en orden inverso","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"Superposición a la derecha","PDFE.Views.ChartSettingsAdvanced.textRotated":"Girado","PDFE.Views.ChartSettingsAdvanced.textSeparator":"Separador de etiquetas de datos","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"Nombre de serie","PDFE.Views.ChartSettingsAdvanced.textSize":"Tamaño","PDFE.Views.ChartSettingsAdvanced.textSmooth":"Suave","PDFE.Views.ChartSettingsAdvanced.textStraight":"Recto","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10.000.000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10.000","PDFE.Views.ChartSettingsAdvanced.textThousands":"Miles","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"Parámetros de marcas de graduación","PDFE.Views.ChartSettingsAdvanced.textTitle":"Gráfico - Ajustes avanzados","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"Esquina superior izquierda","PDFE.Views.ChartSettingsAdvanced.textTrillions":"Billones","PDFE.Views.ChartSettingsAdvanced.textUnits":"Unidades de visualización","PDFE.Views.ChartSettingsAdvanced.textValue":"Valor","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"Eje vertical","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"Eje vertical secundario","PDFE.Views.ChartSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ChartSettingsAdvanced.textWidth":"Ancho","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"Superposición a la izquierda","PDFE.Views.DocumentHolder.aboveText":"Arriba","PDFE.Views.DocumentHolder.addCommentText":"Añadir comentario","PDFE.Views.DocumentHolder.advancedChartText":"Ajustes avanzados de gráfico","PDFE.Views.DocumentHolder.advancedEquationText":"Ajustes de ecuaciones","PDFE.Views.DocumentHolder.advancedImageText":"Ajustes avanzados de imagen","PDFE.Views.DocumentHolder.advancedParagraphText":"Ajustes avanzados de párrafo","PDFE.Views.DocumentHolder.advancedShapeText":"Ajustes avanzados de forma","PDFE.Views.DocumentHolder.advancedTableText":"Ajustes avanzados de tabla","PDFE.Views.DocumentHolder.AlignBottom":"Inferior","PDFE.Views.DocumentHolder.AlignCenter":"Centro","PDFE.Views.DocumentHolder.AlignJust":"Justificar","PDFE.Views.DocumentHolder.AlignLeft":"A la izquierda","PDFE.Views.DocumentHolder.alignmentText":"Alineación","PDFE.Views.DocumentHolder.AlignMiddle":"Medio","PDFE.Views.DocumentHolder.AlignRight":"A la derecha","PDFE.Views.DocumentHolder.AlignText":"Alineación de texto","PDFE.Views.DocumentHolder.AlignTop":"Arriba","PDFE.Views.DocumentHolder.allLinearText":"Lineal (todos)","PDFE.Views.DocumentHolder.allProfText":"Profesional (todos)","PDFE.Views.DocumentHolder.belowText":"Abajo","PDFE.Views.DocumentHolder.btnChart":"Añada, elimine o modifique elementos de gráficos como el título, la leyenda, las líneas de cuadrícula y las etiquetas de datos.","PDFE.Views.DocumentHolder.cellAlignText":"Alineación vertical de celda","PDFE.Views.DocumentHolder.cellText":"Celda","PDFE.Views.DocumentHolder.centerText":"Centro","PDFE.Views.DocumentHolder.columnText":"Columna","PDFE.Views.DocumentHolder.confirmAddFontName":"La fuente que va a guardar no está disponible en el dispositivo actual.
El estilo de texto se mostrará utilizando una de las fuentes del dispositivo, la fuente guardada se utilizará cuando esté disponible.
¿Desea continuar?","PDFE.Views.DocumentHolder.currLinearText":"Lineal (actual)","PDFE.Views.DocumentHolder.currProfText":"Profesional (actual)","PDFE.Views.DocumentHolder.deleteColumnText":"Eliminar columna","PDFE.Views.DocumentHolder.deleteRowText":"Eliminar fila","PDFE.Views.DocumentHolder.deleteTableText":"Eliminar tabla","PDFE.Views.DocumentHolder.deleteText":"Eliminar","PDFE.Views.DocumentHolder.DepthAxis":"Eje Z","PDFE.Views.DocumentHolder.direct270Text":"Girar texto hacia arriba","PDFE.Views.DocumentHolder.direct90Text":"Girar texto hacia abajo","PDFE.Views.DocumentHolder.directHText":"Horizontal ","PDFE.Views.DocumentHolder.directionText":"Dirección de texto","PDFE.Views.DocumentHolder.editChartText":"Editar datos","PDFE.Views.DocumentHolder.editHyperlinkText":"Editar enlace","PDFE.Views.DocumentHolder.guestText":"Invitado","PDFE.Views.DocumentHolder.hideEqToolbar":"Ocultar la barra de herramientas de ecuaciones","PDFE.Views.DocumentHolder.hyperlinkText":"Enlace","PDFE.Views.DocumentHolder.insertColumnLeftText":"Columna izquierda","PDFE.Views.DocumentHolder.insertColumnRightText":"Columna derecha","PDFE.Views.DocumentHolder.insertColumnText":"Insertar columna","PDFE.Views.DocumentHolder.insertRowAboveText":"Fila arriba","PDFE.Views.DocumentHolder.insertRowBelowText":"Fila debajo","PDFE.Views.DocumentHolder.insertRowText":"Insertar fila","PDFE.Views.DocumentHolder.insertText":"Insertar","PDFE.Views.DocumentHolder.latexText":"LaTeX","PDFE.Views.DocumentHolder.leftText":"A la izquierda","PDFE.Views.DocumentHolder.mergeCellsText":"Unir celdas","PDFE.Views.DocumentHolder.mniImageFromFile":"Imagen desde archivo","PDFE.Views.DocumentHolder.mniImageFromStorage":"Imagen desde almacenamiento","PDFE.Views.DocumentHolder.mniImageFromUrl":"Imagen de URL","PDFE.Views.DocumentHolder.originalSizeText":"Tamaño actual","PDFE.Views.DocumentHolder.removeCommentText":"Eliminar","PDFE.Views.DocumentHolder.removeHyperlinkText":"Eliminar enlace","PDFE.Views.DocumentHolder.rightText":"A la derecha","PDFE.Views.DocumentHolder.rowText":"Fila","PDFE.Views.DocumentHolder.selectText":"Seleccionar","PDFE.Views.DocumentHolder.showEqToolbar":"Mostrar la barra de herramientas de ecuaciones","PDFE.Views.DocumentHolder.splitCellsText":"Dividir celda...","PDFE.Views.DocumentHolder.splitCellTitleText":"Dividir celda","PDFE.Views.DocumentHolder.tableText":"Tabla","PDFE.Views.DocumentHolder.textArrangeBack":"Enviar al fondo","PDFE.Views.DocumentHolder.textArrangeBackward":"Enviar atrás","PDFE.Views.DocumentHolder.textArrangeForward":"Traer al frente","PDFE.Views.DocumentHolder.textArrangeFront":"Traer al primer plano","PDFE.Views.DocumentHolder.textAxes":"Ejes","PDFE.Views.DocumentHolder.textAxisTitles":"Títulos de eje","PDFE.Views.DocumentHolder.textBottom":"Abajo ","PDFE.Views.DocumentHolder.textCenter":"Centro","PDFE.Views.DocumentHolder.textChartTitle":"Título de gráfico","PDFE.Views.DocumentHolder.textClearField":"Borrar campo","PDFE.Views.DocumentHolder.textCm":"cm","PDFE.Views.DocumentHolder.textColor":"Color","PDFE.Views.DocumentHolder.textCopy":"Copiar","PDFE.Views.DocumentHolder.textCrop":"Recortar","PDFE.Views.DocumentHolder.textCropFill":"Relleno","PDFE.Views.DocumentHolder.textCropFit":"Ajustar","PDFE.Views.DocumentHolder.textCustom":"Personalizado","PDFE.Views.DocumentHolder.textCut":"Cortar","PDFE.Views.DocumentHolder.textDataLabels":"Etiquetas de datos","PDFE.Views.DocumentHolder.textDistributeCols":"Distribuir columnas","PDFE.Views.DocumentHolder.textDistributeRows":"Distribuir filas","PDFE.Views.DocumentHolder.textEditPoints":"Modificar puntos","PDFE.Views.DocumentHolder.textErrorBars":"Barras de error","PDFE.Views.DocumentHolder.textExponential":"Exponencial","PDFE.Views.DocumentHolder.textFit":"Ajustar al ancho","PDFE.Views.DocumentHolder.textFlipH":"Voltear horizontalmente","PDFE.Views.DocumentHolder.textFlipV":"Voltear verticalmente","PDFE.Views.DocumentHolder.textFontSizeErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico entre 1 y 300","PDFE.Views.DocumentHolder.textFromFile":"Desde archivo","PDFE.Views.DocumentHolder.textFromStorage":"Desde almacenamiento","PDFE.Views.DocumentHolder.textFromUrl":"Desde URL","PDFE.Views.DocumentHolder.textGridLines":"Líneas de cuadrícula","PDFE.Views.DocumentHolder.textHorAxis":"Eje horizontal","PDFE.Views.DocumentHolder.textHorAxisSec":"Eje horizontal secundario","PDFE.Views.DocumentHolder.textHorizontalMajor":"Horizontal principal","PDFE.Views.DocumentHolder.textHorizontalMinor":"Horizontal secundario","PDFE.Views.DocumentHolder.textInnerBottom":"Abajo en el interior","PDFE.Views.DocumentHolder.textInnerTop":"Arriba en el interior","PDFE.Views.DocumentHolder.textLeft":"A la izquierda","PDFE.Views.DocumentHolder.textLeftData":"A la izquierda","PDFE.Views.DocumentHolder.textLeftOverlay":"Superposición a la izquierda","PDFE.Views.DocumentHolder.textLegendPos":"Leyenda","PDFE.Views.DocumentHolder.textLinear":"Lineal","PDFE.Views.DocumentHolder.textLinearForecast":"Pronóstico lineal","PDFE.Views.DocumentHolder.textLines":"Líneas","PDFE.Views.DocumentHolder.textMovingAverage":"Media móvil (2)","PDFE.Views.DocumentHolder.textNone":"No","PDFE.Views.DocumentHolder.textNoOverlay":"Sin superposición","PDFE.Views.DocumentHolder.textOuterTop":"Arriba en el exterior","PDFE.Views.DocumentHolder.textOverlay":"Superposición","PDFE.Views.DocumentHolder.textPaste":"Pegar","PDFE.Views.DocumentHolder.textRecognize":"Editar texto","PDFE.Views.DocumentHolder.textRedact":"Redactar texto","PDFE.Views.DocumentHolder.textRedo":"Rehacer","PDFE.Views.DocumentHolder.textReplace":"Reemplazar imagen","PDFE.Views.DocumentHolder.textResetCrop":"Restablecer recorte","PDFE.Views.DocumentHolder.textRight":"A la derecha","PDFE.Views.DocumentHolder.textRightOverlay":"Superposición a la derecha","PDFE.Views.DocumentHolder.textRotate":"Girar","PDFE.Views.DocumentHolder.textRotate270":"Girar 90° a la izquierda","PDFE.Views.DocumentHolder.textRotate90":"Girar 90° a la derecha","PDFE.Views.DocumentHolder.textSaveAsPicture":"Guardar como imagen","PDFE.Views.DocumentHolder.textShapeAlignBottom":"Alinear hacia abajo","PDFE.Views.DocumentHolder.textShapeAlignCenter":"Alinear al centro","PDFE.Views.DocumentHolder.textShapeAlignLeft":"Alinear a la izquierda","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"Alinear al medio","PDFE.Views.DocumentHolder.textShapeAlignRight":"Alinear a la derecha","PDFE.Views.DocumentHolder.textShapeAlignTop":"Alinear hacia arriba","PDFE.Views.DocumentHolder.textShapesMerge":"Fusionar formas","PDFE.Views.DocumentHolder.textShowLegendKeys":"Mostrar claves de leyenda","PDFE.Views.DocumentHolder.textShowUpDown":"Mostrar barras arriba/abajo","PDFE.Views.DocumentHolder.textStandardDeviation":"Desviación estándar","PDFE.Views.DocumentHolder.textStandardError":"Error estándar","PDFE.Views.DocumentHolder.textTop":"Arriba","PDFE.Views.DocumentHolder.textTrendline":"Línea de tendencia","PDFE.Views.DocumentHolder.textUndo":"Deshacer","PDFE.Views.DocumentHolder.textUpDownBars":"Barras arriba/abajo","PDFE.Views.DocumentHolder.textVertAxis":"Eje vertical","PDFE.Views.DocumentHolder.textVertAxisSec":"Eje vertical secundario","PDFE.Views.DocumentHolder.textVerticalMajor":"Vertical principal","PDFE.Views.DocumentHolder.textVerticalMinor":"Vertical secundario","PDFE.Views.DocumentHolder.tipIsLocked":"Otro usuario está editando este elemento ahora.","PDFE.Views.DocumentHolder.tipRecognize":"Editar texto","PDFE.Views.DocumentHolder.tipRedact":"Redactar texto","PDFE.Views.DocumentHolder.txtAddBottom":"Añadir borde inferior","PDFE.Views.DocumentHolder.txtAddFractionBar":"Añadir barra de fracción","PDFE.Views.DocumentHolder.txtAddHor":"Añadir línea horizontal","PDFE.Views.DocumentHolder.txtAddLB":"Añadir línea inferior izquierda","PDFE.Views.DocumentHolder.txtAddLeft":"Añadir borde izquierdo","PDFE.Views.DocumentHolder.txtAddLT":"Añadir línea superior izquierda","PDFE.Views.DocumentHolder.txtAddRight":"Añadir borde derecho","PDFE.Views.DocumentHolder.txtAddTop":"Añadir borde superior","PDFE.Views.DocumentHolder.txtAddVer":"Añadir línea vertical","PDFE.Views.DocumentHolder.txtAlign":"Alinear","PDFE.Views.DocumentHolder.txtAlignToChar":"Alinear a carácter","PDFE.Views.DocumentHolder.txtArrange":"Arreglar","PDFE.Views.DocumentHolder.txtBackground":"Fondo","PDFE.Views.DocumentHolder.txtBorderProps":"Propiedades de borde","PDFE.Views.DocumentHolder.txtBottom":"Abajo ","PDFE.Views.DocumentHolder.txtColumnAlign":"Alineación de columna","PDFE.Views.DocumentHolder.txtCopyPage":"Copiar página","PDFE.Views.DocumentHolder.txtCutPage":"Cortar página","PDFE.Views.DocumentHolder.txtDecreaseArg":"Disminuir tamaño de argumento","PDFE.Views.DocumentHolder.txtDeleteArg":"Eliminar argumento","PDFE.Views.DocumentHolder.txtDeleteBreak":"Eliminar salto manual","PDFE.Views.DocumentHolder.txtDeleteChars":"Eliminar carácteres encerrados","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Eliminar caracteres encerrados y separadores","PDFE.Views.DocumentHolder.txtDeleteEq":"Eliminar ecuación","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"Eliminar carácter","PDFE.Views.DocumentHolder.txtDeletePage":"Eliminar página","PDFE.Views.DocumentHolder.txtDeleteRadical":"Eliminar radical","PDFE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","PDFE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","PDFE.Views.DocumentHolder.txtEmpty":"(Vacío)","PDFE.Views.DocumentHolder.txtFractionLinear":"Cambiar a fracción lineal","PDFE.Views.DocumentHolder.txtFractionSkewed":"Cambiar a fracción sesgada","PDFE.Views.DocumentHolder.txtFractionStacked":"Cambiar a fracción apilada","PDFE.Views.DocumentHolder.txtGroup":"Agrupar","PDFE.Views.DocumentHolder.txtGroupCharOver":"Carácter por encima del texto","PDFE.Views.DocumentHolder.txtGroupCharUnder":"Carácter por debajo del texto","PDFE.Views.DocumentHolder.txtHideBottom":"Ocultar borde inferior","PDFE.Views.DocumentHolder.txtHideBottomLimit":"Ocultar límite inferior","PDFE.Views.DocumentHolder.txtHideCloseBracket":"Ocultar corchete de cierre","PDFE.Views.DocumentHolder.txtHideDegree":"Ocultar grado","PDFE.Views.DocumentHolder.txtHideHor":"Ocultar línea horizontal","PDFE.Views.DocumentHolder.txtHideLB":"Ocultar línea inferior izquierda ","PDFE.Views.DocumentHolder.txtHideLeft":"Ocultar borde izquierdo","PDFE.Views.DocumentHolder.txtHideLT":"Ocultar línea superior izquierda","PDFE.Views.DocumentHolder.txtHideOpenBracket":"Ocultar corchete de apertura","PDFE.Views.DocumentHolder.txtHidePlaceholder":"Ocultar marcador de posición","PDFE.Views.DocumentHolder.txtHideRight":"Ocultar borde derecho","PDFE.Views.DocumentHolder.txtHideTop":"Ocultar borde superior","PDFE.Views.DocumentHolder.txtHideTopLimit":"Ocultar límite superior","PDFE.Views.DocumentHolder.txtHideVer":"Ocultar línea vertical","PDFE.Views.DocumentHolder.txtIncreaseArg":"Aumentar el tamaño del argumento","PDFE.Views.DocumentHolder.txtInsertArgAfter":"Insertar argumento después","PDFE.Views.DocumentHolder.txtInsertArgBefore":"Insertar argumento antes","PDFE.Views.DocumentHolder.txtInsertBreak":"Insertar salto manual","PDFE.Views.DocumentHolder.txtInsertEqAfter":"Insertar ecuación después","PDFE.Views.DocumentHolder.txtInsertEqBefore":"Insertar ecuación antes","PDFE.Views.DocumentHolder.txtLimitChange":"Cambiar ubicación de límites","PDFE.Views.DocumentHolder.txtLimitOver":"Límite sobre el texto","PDFE.Views.DocumentHolder.txtLimitUnder":"Límite debajo del texto","PDFE.Views.DocumentHolder.txtMatchBrackets":"Situar cochetes a la altura del argumento","PDFE.Views.DocumentHolder.txtMatrixAlign":"Alineación de la matriz","PDFE.Views.DocumentHolder.txtNewPageAfter":"Insertar página en blanco después","PDFE.Views.DocumentHolder.txtNewPageBefore":"Insertar página en blanco antes","PDFE.Views.DocumentHolder.txtOpacity":"Opacidad ","PDFE.Views.DocumentHolder.txtOverbar":"Barra sobre texto","PDFE.Views.DocumentHolder.txtPastePage":"Pegar página","PDFE.Views.DocumentHolder.txtPastePageAfter":"Pegar página después de","PDFE.Views.DocumentHolder.txtPastePageBefore":"Pegar página antes de","PDFE.Views.DocumentHolder.txtPercentage":"Porcentaje","PDFE.Views.DocumentHolder.txtPressLink":"Pulse {0} y haga clic en el enlace","PDFE.Views.DocumentHolder.txtPrintSelection":"Imprimir selección","PDFE.Views.DocumentHolder.txtRemFractionBar":"Quitar la barra de fracción","PDFE.Views.DocumentHolder.txtRemLimit":"Eliminar límite","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"Eliminar carácter de acento","PDFE.Views.DocumentHolder.txtRemoveBar":"Eliminar barra","PDFE.Views.DocumentHolder.txtRemScripts":"Eliminar índices","PDFE.Views.DocumentHolder.txtRemSubscript":"Eliminar subíndice","PDFE.Views.DocumentHolder.txtRemSuperscript":"Eliminar superíndice","PDFE.Views.DocumentHolder.txtRotateLeft":"Girar a la izquierda","PDFE.Views.DocumentHolder.txtRotateRight":"Girar a la derecha","PDFE.Views.DocumentHolder.txtScriptsAfter":"Índices después de texto","PDFE.Views.DocumentHolder.txtScriptsBefore":"Índices antes de texto","PDFE.Views.DocumentHolder.txtSelectAll":"Seleccionar todo","PDFE.Views.DocumentHolder.txtShowBottomLimit":"Mostrar límite inferior","PDFE.Views.DocumentHolder.txtShowCloseBracket":"Mostrar corchete de cierre","PDFE.Views.DocumentHolder.txtShowDegree":"Mostrar grado","PDFE.Views.DocumentHolder.txtShowOpenBracket":"Mostrar corchete de apertura","PDFE.Views.DocumentHolder.txtShowPlaceholder":"Mostrar marcador de posición","PDFE.Views.DocumentHolder.txtShowTopLimit":"Mostrar límite superior","PDFE.Views.DocumentHolder.txtStretchBrackets":"Estirar corchetes","PDFE.Views.DocumentHolder.txtTop":"Arriba","PDFE.Views.DocumentHolder.txtUnderbar":"Barra debajo de texto","PDFE.Views.DocumentHolder.txtUngroup":"Desagrupar","PDFE.Views.DocumentHolder.txtWarnUrl":"Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. Para proteger su ordenador, haga clic solo en los hiperenlaces de fuentes fiables. Esta ubicación puede ser insegura:

{0}

¿Está seguro de que desea continuar?","PDFE.Views.DocumentHolder.unicodeText":"Unicode","PDFE.Views.DocumentHolder.vertAlignText":"Alineación vertical","PDFE.Views.FileMenu.ariaFileMenu":"Menú Archivo","PDFE.Views.FileMenu.btnBackCaption":"Abrir ubicación del archivo","PDFE.Views.FileMenu.btnCloseEditor":"Cerrar archivo","PDFE.Views.FileMenu.btnCloseMenuCaption":"Atrás","PDFE.Views.FileMenu.btnCreateNewCaption":"Crear nuevo","PDFE.Views.FileMenu.btnDownloadCaption":"Descargar como","PDFE.Views.FileMenu.btnExitCaption":"Cerrar","PDFE.Views.FileMenu.btnFileOpenCaption":"Abrir","PDFE.Views.FileMenu.btnHelpCaption":"Ayuda","PDFE.Views.FileMenu.btnHistoryCaption":"Historial de versiones","PDFE.Views.FileMenu.btnInfoCaption":"Info sobre el documento","PDFE.Views.FileMenu.btnPrintCaption":"Imprimir","PDFE.Views.FileMenu.btnProtectCaption":"Proteger","PDFE.Views.FileMenu.btnRecentFilesCaption":"Abrir recientes","PDFE.Views.FileMenu.btnRenameCaption":"Renombrar","PDFE.Views.FileMenu.btnReturnCaption":"Volver a Documento","PDFE.Views.FileMenu.btnRightsCaption":"Permisos de acceso","PDFE.Views.FileMenu.btnSaveAsCaption":"Guardar como","PDFE.Views.FileMenu.btnSaveCaption":"Guardar","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"Guardar copia como","PDFE.Views.FileMenu.btnSettingsCaption":"Configuración avanzada","PDFE.Views.FileMenu.btnSuggestCaption":"Sugerir una función","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"Cambiar a móvil","PDFE.Views.FileMenu.btnToEditCaption":"Editar documento","PDFE.Views.FileMenu.textDownload":"Descargar","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"Documento en blanco","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Crear nuevo","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Añadir autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Añadir texto","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicación","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Cambiar permisos de acceso","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentario","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comunes","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Creado","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Información del documento","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Vista web rápida","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Cargando...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última modificación por","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificación","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"No","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Propietario","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"Páginas","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Tamaño de la página","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Párrafos","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"Generador de PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF etiquetado","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"Versión de PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Ubicación","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personas que tienen permisos","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Caracteres con espacios","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Estadísticas","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Asunto","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Caracteres","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Cargado","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"Palabras","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"Si","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Permisos de acceso","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Cambiar permisos de acceso","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"Personas que tienen permisos","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Con contraseña","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger documento","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"Con firma","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Se han añadido firmas válidas al documento.
El documento está protegido contra la edición.","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garantizar la integridad del documento añadiendo una
firma digital invisible","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar documento","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"La edición eliminará las firmas del documento.
¿Continuar?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Este documento se ha protegido con una contraseña","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Cifrar este documento con una contraseña","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Este documento necesita ser firmado","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Se han añadido firmas válidas al documento. El documento está protegido contra la edición.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algunas de las firmas digitales del documento no son válidas o no se han podido verificar. El documento está protegido contra la edición.","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"Ver firmas","PDFE.Views.FileMenuPanels.Settings.okButtonText":"Aplicar","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modo de coedición","PDFE.Views.FileMenuPanels.Settings.strFast":"Rápido","PDFE.Views.FileMenuPanels.Settings.strFontRender":"Renderizado de las fuentes","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Accesos directos de teclado","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"Interfaz RTL","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"Cambios de colaboración en tiempo real","PDFE.Views.FileMenuPanels.Settings.strShowComments":"Mostrar comentarios en el texto","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Mostrar los cambios de otros usuarios","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Mostrar comentarios resueltos","PDFE.Views.FileMenuPanels.Settings.strStrict":"Estricto","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"Estilo de pestaña","PDFE.Views.FileMenuPanels.Settings.strTheme":"Tema de la interfaz","PDFE.Views.FileMenuPanels.Settings.strUnit":"Unidad de medida","PDFE.Views.FileMenuPanels.Settings.strZoom":"Valor de zoom predeterminado","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"Guardar información de autorrecuperación","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"Guardar automáticamente","PDFE.Views.FileMenuPanels.Settings.textDisabled":"Desactivado","PDFE.Views.FileMenuPanels.Settings.textFill":"Rellenar","PDFE.Views.FileMenuPanels.Settings.textForceSave":"Guardar versiones intermedias","PDFE.Views.FileMenuPanels.Settings.textLine":"Línea","PDFE.Views.FileMenuPanels.Settings.textMinute":"Cada minuto","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Configuración avanzada","PDFE.Views.FileMenuPanels.Settings.txtAll":"Ver todo","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"Aspecto","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"Modo de caché predeterminado","PDFE.Views.FileMenuPanels.Settings.txtCm":"Centímetro","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"Colaboración","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"Personalizar","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Personalizar acceso rápido","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"Activar el modo oscuro para los documentos","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"Editar y guardar","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"Coedición en tiempo real. Todos los cambios se guardan automáticamente","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"Ajustar a la página","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"Ajustar al ancho","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Jeroglíficos","PDFE.Views.FileMenuPanels.Settings.txtInch":"Pulgada","PDFE.Views.FileMenuPanels.Settings.txtLast":"Ver últimos","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"Utilizados recientemente","PDFE.Views.FileMenuPanels.Settings.txtMac":"como OS X","PDFE.Views.FileMenuPanels.Settings.txtNative":"Nativo","PDFE.Views.FileMenuPanels.Settings.txtNone":"No ver ninguno","PDFE.Views.FileMenuPanels.Settings.txtPt":"Punto","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"Mostrar el botón «Impresión rápida» en el encabezado del editor","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"El documento se imprimirá en la última impresora seleccionada o predeterminada","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"Activar el soporte para lectores de pantalla","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"Utilizar el botón \"Guardar\" para sincronizar los cambios que usted y los demás realicen","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"Utilizar el color de la barra de herramientas como fondo de las pestañas","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"Utilizar la tecla «Alt» para navegar por la interfaz de usuario mediante el teclado","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"Utilizar la minibarra de herramientas al seleccionar texto","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Utilizar la tecla «Opción» para navegar por la interfaz de usuario mediante el teclado","PDFE.Views.FileMenuPanels.Settings.txtWin":"como Windows","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"Área de trabajo","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"Personalizar acceso rápido","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Descargar como","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Guardar copia como","PDFE.Views.FormatSettingsDialog.textAfter":"Después sin espacio","PDFE.Views.FormatSettingsDialog.textAfterSpace":"Después con espacio","PDFE.Views.FormatSettingsDialog.textBefore":"Antes sin espacio","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"Antes con espacio","PDFE.Views.FormatSettingsDialog.textCategory":"Categoría","PDFE.Views.FormatSettingsDialog.textDate":"Fecha","PDFE.Views.FormatSettingsDialog.textDecimal":"Decimales","PDFE.Views.FormatSettingsDialog.textFormat":"Formato","PDFE.Views.FormatSettingsDialog.textLocation":"Ubicación del símbolo","PDFE.Views.FormatSettingsDialog.textMask":"Máscara arbitraria","PDFE.Views.FormatSettingsDialog.textNegative":"Estilo de número negativo","PDFE.Views.FormatSettingsDialog.textNone":"No","PDFE.Views.FormatSettingsDialog.textNumber":"Número","PDFE.Views.FormatSettingsDialog.textParens":"Mostrar paréntesis","PDFE.Views.FormatSettingsDialog.textPercent":"Porcentaje","PDFE.Views.FormatSettingsDialog.textPhone":"Número de teléfono","PDFE.Views.FormatSettingsDialog.textRed":"Utilizar texto rojo","PDFE.Views.FormatSettingsDialog.textReg":"Expresión regular","PDFE.Views.FormatSettingsDialog.textSeparator":"Estilo de separador","PDFE.Views.FormatSettingsDialog.textSpecial":"Especial","PDFE.Views.FormatSettingsDialog.textSSN":"Número de seguridad social","PDFE.Views.FormatSettingsDialog.textSymbol":"Símbolo de moneda","PDFE.Views.FormatSettingsDialog.textTime":"Hora","PDFE.Views.FormatSettingsDialog.textTitle":"Configuración de formato","PDFE.Views.FormatSettingsDialog.textZipCode":"Código postal","PDFE.Views.FormatSettingsDialog.textZipCode4":"Código postal + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"Personalizado","PDFE.Views.FormatSettingsDialog.txtSample":"Ejemplo:","PDFE.Views.FormSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.FormSettings.textAlways":"Siempre","PDFE.Views.FormSettings.textAnamorphic":"No proporcionalmente","PDFE.Views.FormSettings.textArabic":"Árabe","PDFE.Views.FormSettings.textAutofit":"Ajuste automático","PDFE.Views.FormSettings.textBackgroundColor":"Color del fondo","PDFE.Views.FormSettings.textBehavior":"Comportamiento","PDFE.Views.FormSettings.textBeveled":"Biselado","PDFE.Views.FormSettings.textBorder":"Borde","PDFE.Views.FormSettings.textButton":"Botón","PDFE.Views.FormSettings.textChbStyle":"Estilo de casilla de verificación","PDFE.Views.FormSettings.textCheck":"Casilla","PDFE.Views.FormSettings.textCheckbox":"Casilla","PDFE.Views.FormSettings.textCheckDefault":"La casilla de verificación está marcada de forma predeterminada","PDFE.Views.FormSettings.textCircle":"Círculo","PDFE.Views.FormSettings.textClear":"Limpiar","PDFE.Views.FormSettings.textColor":"Color","PDFE.Views.FormSettings.textComb":"Peine de caracteres","PDFE.Views.FormSettings.textCombobox":"Cuadro combinado","PDFE.Views.FormSettings.textCommit":"Confirmar inmediatamente el valor seleccionado","PDFE.Views.FormSettings.textCross":"Cruz","PDFE.Views.FormSettings.textCustomText":"Permitir texto personalizado","PDFE.Views.FormSettings.textDashed":"Con guiones","PDFE.Views.FormSettings.textDate":"Fecha","PDFE.Views.FormSettings.textDateField":"Campo Fecha y hora","PDFE.Views.FormSettings.textDiamond":"Rombo","PDFE.Views.FormSettings.textDown":"Abajo","PDFE.Views.FormSettings.textExport":"Valor de exportación","PDFE.Views.FormSettings.textField":"Campo de texto","PDFE.Views.FormSettings.textFitBounds":"Ajustar a los bordes","PDFE.Views.FormSettings.textFormat":"Formato","PDFE.Views.FormSettings.textFromFile":"Desde archivo","PDFE.Views.FormSettings.textFromStorage":"Desde almacenamiento","PDFE.Views.FormSettings.textFromUrl":"Desde URL","PDFE.Views.FormSettings.textHindi":"Hindi","PDFE.Views.FormSettings.textHover":"Volteo","PDFE.Views.FormSettings.textHowScale":"Escala","PDFE.Views.FormSettings.textIcon":"Icono","PDFE.Views.FormSettings.textIconLeft":"Icono izquierda, etiqueta derecha","PDFE.Views.FormSettings.textIconOnly":"Solo icono","PDFE.Views.FormSettings.textIconTop":"Icono arriba, etiqueta abajo","PDFE.Views.FormSettings.textImage":"Imagen","PDFE.Views.FormSettings.textInset":"Recuadro","PDFE.Views.FormSettings.textInvert":"Invertir","PDFE.Views.FormSettings.textLabel":"Etiqueta","PDFE.Views.FormSettings.textLabelLeft":"Etiqueta izquierda, icono derecha","PDFE.Views.FormSettings.textLabelTop":"Etiqueta arriba, icono abajo","PDFE.Views.FormSettings.textLayout":"Diseño","PDFE.Views.FormSettings.textListBox":"Cuadro de lista","PDFE.Views.FormSettings.textLock":"Bloquear","PDFE.Views.FormSettings.textMask":"Máscara arbitraria","PDFE.Views.FormSettings.textMaxChars":"Límite de caracteres","PDFE.Views.FormSettings.textMedium":"Medio","PDFE.Views.FormSettings.textMulti":"Multilínea","PDFE.Views.FormSettings.textMultisel":"Selección múltiple","PDFE.Views.FormSettings.textName":"Nombre","PDFE.Views.FormSettings.textNever":"Nunca","PDFE.Views.FormSettings.textNoBorder":"Sin bordes","PDFE.Views.FormSettings.textNoFill":"Sin relleno","PDFE.Views.FormSettings.textNone":"No","PDFE.Views.FormSettings.textNormal":"Arriba","PDFE.Views.FormSettings.textNumber":"Número","PDFE.Views.FormSettings.textNumeral":"Numeral","PDFE.Views.FormSettings.textOrientation":"Orientación ","PDFE.Views.FormSettings.textOutline":"Esquema","PDFE.Views.FormSettings.textOverlay":"Etiqueta sobre icono","PDFE.Views.FormSettings.textPassword":"Contraseña","PDFE.Views.FormSettings.textPercent":"Porcentaje","PDFE.Views.FormSettings.textPhone":"Número de teléfono","PDFE.Views.FormSettings.textPlaceholder":"Marcador de posición","PDFE.Views.FormSettings.textPlacement":"Ubicación del icono","PDFE.Views.FormSettings.textProportional":"Proporcionalmente","PDFE.Views.FormSettings.textPush":"Empuje","PDFE.Views.FormSettings.textRadiobox":"Botón de opción","PDFE.Views.FormSettings.textRadioChoice":"Botón de radio","PDFE.Views.FormSettings.textRadioDefault":"El botón está marcado de forma predeterminada","PDFE.Views.FormSettings.textRadioStyle":"Estilo de botón","PDFE.Views.FormSettings.textReadonly":"Sólo lectura","PDFE.Views.FormSettings.textReg":"Expresión regular","PDFE.Views.FormSettings.textRequired":"Requerido","PDFE.Views.FormSettings.textScale":"Cuándo escalar","PDFE.Views.FormSettings.textScroll":"Desplazar texto largo","PDFE.Views.FormSettings.textSelect":"Seleccionar","PDFE.Views.FormSettings.textSolid":"Sólido","PDFE.Views.FormSettings.textSpecial":"Especial","PDFE.Views.FormSettings.textSquare":"Cuadrado","PDFE.Views.FormSettings.textSSN":"Número de seguridad social","PDFE.Views.FormSettings.textStar":"Estrella","PDFE.Views.FormSettings.textState":"Estado","PDFE.Views.FormSettings.textStyle":"Estilo","PDFE.Views.FormSettings.textText":"Texto","PDFE.Views.FormSettings.textTextOnly":"Solo etiqueta","PDFE.Views.FormSettings.textThick":"Grueso","PDFE.Views.FormSettings.textThickness":"Grosor","PDFE.Views.FormSettings.textThin":"Fino","PDFE.Views.FormSettings.textTime":"Hora","PDFE.Views.FormSettings.textTip":"Sugerencia","PDFE.Views.FormSettings.textTipAdd":"Añadir valor nuevo","PDFE.Views.FormSettings.textTipDelete":"Eliminar valor","PDFE.Views.FormSettings.textTipDown":"Mover hacia abajo","PDFE.Views.FormSettings.textTipUp":"Mover hacia arriba","PDFE.Views.FormSettings.textTooBig":"La imagen es demasiado grande","PDFE.Views.FormSettings.textTooSmall":"La imagen es demasiado pequeña","PDFE.Views.FormSettings.textUnderline":"Subrayado","PDFE.Views.FormSettings.textUnison":"Los botones con el mismo nombre y elección se seleccionan al unísono","PDFE.Views.FormSettings.textUnlock":"Desbloquear","PDFE.Views.FormSettings.textValue":"Opciones de valor","PDFE.Views.FormSettings.textZipCode":"Código postal","PDFE.Views.FormSettings.textZipCode4":"Código postal + 4","PDFE.Views.FormSettings.txtCustom":"Personalizado","PDFE.Views.FormsTab.capBtnCheckBox":"Casilla","PDFE.Views.FormsTab.capBtnComboBox":"Cuadro combinado","PDFE.Views.FormsTab.capBtnDropDown":"Cuadro de lista","PDFE.Views.FormsTab.capBtnEmail":"Dirección de correo electrónico","PDFE.Views.FormsTab.capBtnImage":"Imagen","PDFE.Views.FormsTab.capBtnNext":"Campo siguiente","PDFE.Views.FormsTab.capBtnPhone":"Número de teléfono","PDFE.Views.FormsTab.capBtnPrev":"Campo anterior","PDFE.Views.FormsTab.capBtnRadioBox":"Botón de opción","PDFE.Views.FormsTab.capBtnText":"Campo de texto","PDFE.Views.FormsTab.capCreditCard":"Tarjeta de crédito","PDFE.Views.FormsTab.capDateTime":"Fecha y hora","PDFE.Views.FormsTab.capZipCode":"Código postal","PDFE.Views.FormsTab.textAnyone":"Cualquiera","PDFE.Views.FormsTab.textClear":"Borrar campos","PDFE.Views.FormsTab.textClearFields":"Borrar todos los campos","PDFE.Views.FormsTab.tipCheckBox":"Insertar casilla","PDFE.Views.FormsTab.tipComboBox":"Insertar cuadro combinado","PDFE.Views.FormsTab.tipCreditCard":"Insertar el número de tarjeta de crédito","PDFE.Views.FormsTab.tipDateTime":"Insertar fecha y hora","PDFE.Views.FormsTab.tipDropDown":"Insertar cuadro de lista","PDFE.Views.FormsTab.tipEmailField":"Insertar dirección de correo electrónico","PDFE.Views.FormsTab.tipImageField":"Insertar imagen","PDFE.Views.FormsTab.tipNextForm":"Ir al campo siguiente","PDFE.Views.FormsTab.tipPhoneField":"Insertar número de teléfono","PDFE.Views.FormsTab.tipPrevForm":"Ir al campo anterior","PDFE.Views.FormsTab.tipRadioBox":"Insertar botón de opción","PDFE.Views.FormsTab.tipTextField":"Insertar campo de texto","PDFE.Views.FormsTab.tipZipCode":"Insertar código postal","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"Mostrar","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"Vincular a","PDFE.Views.HyperlinkSettingsDialog.textDefault":"Fragmento de texto seleccionado","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"Introduzca título aquí","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"Introduzca enlace aquí","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"Introduzca informacíon sobre herramientas aquí","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"Enlace externo","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"Página en este documento","PDFE.Views.HyperlinkSettingsDialog.textPages":"Páginas","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"Seleccionar archivo","PDFE.Views.HyperlinkSettingsDialog.textTipText":"Información en pantalla","PDFE.Views.HyperlinkSettingsDialog.textTitle":"Ajustes de enlace","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"Utilice las barras de desplazamiento, el ratón y el zoom para seleccionar la vista de destino y, a continuación, pulse Establecer enlace para crear el destino del enlace.","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"Crear Ir a ver","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo es obligatorio","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"Primera página","PDFE.Views.HyperlinkSettingsDialog.txtLast":"Última página","PDFE.Views.HyperlinkSettingsDialog.txtNext":"Página siguiente","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"El campo debe ser una URL en el formato \"http://www.example.com\"","PDFE.Views.HyperlinkSettingsDialog.txtPage":"Página","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"Ir a una vista de página","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"Página anterior","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"Establecer enlace","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo está limitado a 2083 caracteres","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Introduzca la dirección web o seleccione un archivo","PDFE.Views.ImageSettings.strTransparency":"Opacidad ","PDFE.Views.ImageSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.ImageSettings.textCrop":"Recortar","PDFE.Views.ImageSettings.textCropFill":"Relleno","PDFE.Views.ImageSettings.textCropFit":"Ajustar","PDFE.Views.ImageSettings.textCropToShape":"Recortar a la forma","PDFE.Views.ImageSettings.textEdit":"Editar","PDFE.Views.ImageSettings.textEditObject":"Editar objeto","PDFE.Views.ImageSettings.textFitPage":"Ajustar a la página","PDFE.Views.ImageSettings.textFlip":"Voltear","PDFE.Views.ImageSettings.textFromFile":"Desde archivo","PDFE.Views.ImageSettings.textFromStorage":"Desde almacenamiento","PDFE.Views.ImageSettings.textFromUrl":"Desde URL","PDFE.Views.ImageSettings.textHeight":"Altura","PDFE.Views.ImageSettings.textHint270":"Girar 90° a la izquierda","PDFE.Views.ImageSettings.textHint90":"Girar 90° a la derecha","PDFE.Views.ImageSettings.textHintFlipH":"Voltear horizontalmente","PDFE.Views.ImageSettings.textHintFlipV":"Voltear verticalmente","PDFE.Views.ImageSettings.textInsert":"Reemplazar imagen","PDFE.Views.ImageSettings.textOriginalSize":"Tamaño actual","PDFE.Views.ImageSettings.textRecentlyUsed":"Usados recientemente","PDFE.Views.ImageSettings.textResetCrop":"Restablecer recorte","PDFE.Views.ImageSettings.textRotate90":"Girar 90°","PDFE.Views.ImageSettings.textRotation":"Rotación","PDFE.Views.ImageSettings.textSize":"Tamaño","PDFE.Views.ImageSettings.textWidth":"Ancho","PDFE.Views.ImageSettingsAdvanced.textAlt":"Texto alternativo","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"Descripción","PDFE.Views.ImageSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ImageSettingsAdvanced.textAngle":"Ángulo","PDFE.Views.ImageSettingsAdvanced.textCenter":"Centro","PDFE.Views.ImageSettingsAdvanced.textFlipped":"Volteado","PDFE.Views.ImageSettingsAdvanced.textFrom":"De","PDFE.Views.ImageSettingsAdvanced.textGeneral":"General","PDFE.Views.ImageSettingsAdvanced.textHeight":"Altura","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal ","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","PDFE.Views.ImageSettingsAdvanced.textImageName":"Nombre de imagen","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"Proporciones constantes","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"Tamaño actual","PDFE.Views.ImageSettingsAdvanced.textPlacement":"Ubicación","PDFE.Views.ImageSettingsAdvanced.textPosition":"Posición","PDFE.Views.ImageSettingsAdvanced.textRotation":"Rotación","PDFE.Views.ImageSettingsAdvanced.textSize":"Tamaño","PDFE.Views.ImageSettingsAdvanced.textTitle":"Imagen - Ajustes avanzados","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"Esquina superior izquierda","PDFE.Views.ImageSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","PDFE.Views.ImageSettingsAdvanced.textWidth":"Ancho","PDFE.Views.InsTab.capBlankPage":"Página en blanco","PDFE.Views.InsTab.capBtnDateTime":"Fecha y hora","PDFE.Views.InsTab.capBtnInsHeaderFooter":"Encabezado y pie de página","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"Símbolo","PDFE.Views.InsTab.capBtnPageNum":"Número de página","PDFE.Views.InsTab.capInsertChart":"Gráfico","PDFE.Views.InsTab.capInsertEquation":"Ecuación","PDFE.Views.InsTab.capInsertHyperlink":"Enlace","PDFE.Views.InsTab.capInsertImage":"Imagen","PDFE.Views.InsTab.capInsertShape":"Forma","PDFE.Views.InsTab.capInsertTable":"Tabla","PDFE.Views.InsTab.capInsertText":"Cuadro de texto","PDFE.Views.InsTab.capInsertTextArt":"Text Art","PDFE.Views.InsTab.capInsPage":"Insertar página","PDFE.Views.InsTab.mniCustomTable":"Insertar tabla personalizada","PDFE.Views.InsTab.mniImageFromFile":"Imagen desde archivo","PDFE.Views.InsTab.mniImageFromStorage":"Imagen desde almacenamiento","PDFE.Views.InsTab.mniImageFromUrl":"Imagen desde URL","PDFE.Views.InsTab.mniInsertSSE":"Insertar hoja de cálculo","PDFE.Views.InsTab.textAlpha":"Letra minúscula griega Alfa","PDFE.Views.InsTab.textBetta":"Letra minúscula griega Beta","PDFE.Views.InsTab.textBlackHeart":"Corazón negro","PDFE.Views.InsTab.textBullet":"Viñeta","PDFE.Views.InsTab.textCopyright":"Signo de «copyright»","PDFE.Views.InsTab.textDegree":"Símbolo de grado","PDFE.Views.InsTab.textDelta":"Letra minúscula griega Delta","PDFE.Views.InsTab.textDivision":"Signo de división","PDFE.Views.InsTab.textDollar":"Signo de dólar","PDFE.Views.InsTab.textEuro":"Signo de euro","PDFE.Views.InsTab.textGreaterEqual":"Mayor que o igual a","PDFE.Views.InsTab.textInfinity":"Infinito","PDFE.Views.InsTab.textLessEqual":"Menor que o igual a","PDFE.Views.InsTab.textLetterPi":"Letra minúscula griega Pi","PDFE.Views.InsTab.textMoreSymbols":"Más símbolos","PDFE.Views.InsTab.textNotEqualTo":"No igual a","PDFE.Views.InsTab.textOneHalf":"Fracción vulgar a la mitad","PDFE.Views.InsTab.textOneQuarter":"Fracción vulgar de un cuarto","PDFE.Views.InsTab.textPlusMinus":"Signo de más-menos","PDFE.Views.InsTab.textRecentlyUsed":"Usados recientemente","PDFE.Views.InsTab.textRegistered":"Signo de marca registrada","PDFE.Views.InsTab.textSection":"Signo de sección","PDFE.Views.InsTab.textSmile":"Cara blanca sonriente","PDFE.Views.InsTab.textSquareRoot":"Raíz cuadrada","PDFE.Views.InsTab.textTilde":"Tilde","PDFE.Views.InsTab.textTradeMark":"Signo de marca comercial","PDFE.Views.InsTab.textYen":"Signo de yen","PDFE.Views.InsTab.tipChangeChart":"Cambiar tipo de gráfico","PDFE.Views.InsTab.tipDateTime":"Insertar la fecha y hora actuales","PDFE.Views.InsTab.tipEditHeaderFooter":"Editar encabezado o pie de página","PDFE.Views.InsTab.tipInsertChart":"Insertar gráfico","PDFE.Views.InsTab.tipInsertEquation":"Insertar ecuación","PDFE.Views.InsTab.tipInsertHorizontalText":"Insertar cuadro de texto horizontal","PDFE.Views.InsTab.tipInsertHyperlink":"Añadir enlace ","PDFE.Views.InsTab.tipInsertImage":"Insertar imagen","PDFE.Views.InsTab.tipInsertPage":"Insertar página en blanco","PDFE.Views.InsTab.tipInsertPageAfter":"Insertar página en blanco después","PDFE.Views.InsTab.tipInsertShape":"Insertar forma","PDFE.Views.InsTab.tipInsertSmartArt":"Insertar SmartArt","PDFE.Views.InsTab.tipInsertSymbol":"Insertar símbolo","PDFE.Views.InsTab.tipInsertTable":"Insertar tabla","PDFE.Views.InsTab.tipInsertText":"Insertar cuadro de texto","PDFE.Views.InsTab.tipInsertTextArt":"Insertar Text Art","PDFE.Views.InsTab.tipInsertVerticalText":"Insertar cuadro de texto vertical","PDFE.Views.InsTab.tipPageNum":"Insertar número de página","PDFE.Views.InsTab.txtNewPageAfter":"Insertar página en blanco después","PDFE.Views.InsTab.txtNewPageBefore":"Insertar página en blanco antes","PDFE.Views.LeftMenu.ariaLeftMenu":"Menú de la izquierda","PDFE.Views.LeftMenu.tipAbout":"Acerca de","PDFE.Views.LeftMenu.tipChat":"Chat","PDFE.Views.LeftMenu.tipComments":"Comentarios","PDFE.Views.LeftMenu.tipNavigation":"Navegación","PDFE.Views.LeftMenu.tipOutline":"Encabezados","PDFE.Views.LeftMenu.tipPageThumbnails":"Miniaturas de página","PDFE.Views.LeftMenu.tipPlugins":"Extensiones","PDFE.Views.LeftMenu.tipSearch":"Buscar","PDFE.Views.LeftMenu.tipSupport":"Sugerencias y ayuda","PDFE.Views.LeftMenu.tipTitles":"Títulos","PDFE.Views.LeftMenu.txtDeveloper":"MODO DE DESARROLLO","PDFE.Views.LeftMenu.txtEditor":"Editor de PDF","PDFE.Views.LeftMenu.txtLimit":"Limitar acceso","PDFE.Views.LeftMenu.txtTrial":"MODO DE PRUEBA","PDFE.Views.LeftMenu.txtTrialDev":"Modo desarrollador de prueba","PDFE.Views.Navigation.strNavigate":"Encabezados","PDFE.Views.Navigation.txtClosePanel":"Cerrar encabezados","PDFE.Views.Navigation.txtCollapse":"Desplegar todo","PDFE.Views.Navigation.txtEmptyItem":"Encabezado vacío","PDFE.Views.Navigation.txtEmptyViewer":"No hay títulos en el documento.","PDFE.Views.Navigation.txtExpand":"Expandir todo","PDFE.Views.Navigation.txtExpandToLevel":"Expandir a nivel","PDFE.Views.Navigation.txtFontSize":"Tamaño de la fuente","PDFE.Views.Navigation.txtLarge":"Grande","PDFE.Views.Navigation.txtMedium":"Medio","PDFE.Views.Navigation.txtSettings":"Ajustes de los títulos","PDFE.Views.Navigation.txtSmall":"Pequeño","PDFE.Views.Navigation.txtWrapHeadings":"Ajustar títulos largos","PDFE.Views.PageThumbnails.textClosePanel":"Cerrar las miniaturas de las páginas","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"Resaltar la parte visible de la página","PDFE.Views.PageThumbnails.textPageThumbnails":"Miniaturas de página","PDFE.Views.PageThumbnails.textThumbnailsSettings":"Configuración de las miniaturas","PDFE.Views.PageThumbnails.textThumbnailsSize":"Tamaño de las miniaturas","PDFE.Views.ParagraphSettings.strLineHeight":"Interlineado","PDFE.Views.ParagraphSettings.strParagraphSpacing":"Espaciado de párrafo","PDFE.Views.ParagraphSettings.strSpacingAfter":"Después","PDFE.Views.ParagraphSettings.strSpacingBefore":"Antes","PDFE.Views.ParagraphSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.ParagraphSettings.textAt":"En","PDFE.Views.ParagraphSettings.textAtLeast":"Al menos","PDFE.Views.ParagraphSettings.textAuto":"Multiplicador","PDFE.Views.ParagraphSettings.textExact":"Exactamente","PDFE.Views.ParagraphSettings.txtAutoText":"Auto","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"Los tabuladores especificados aparecerán en este campo","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"Mayúsculas","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"Dirección ","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Tachado doble","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"Sangrías","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"A la izquierda","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Interlineado","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"A la derecha","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Después","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Fuente","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Sangría y espaciado","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versalitas","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaciado","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"Tachado","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"Subíndice","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"Superíndice","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"Tabuladores","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"Alineación","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"Multiplicador","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaciado entre caracteres","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"Tabulador predeterminado","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"De izquierda a derecha","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"De derecha a izquierda","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"Efectos","PDFE.Views.ParagraphSettingsAdvanced.textExact":"Exactamente","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primera línea","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"Sangría francesa","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"Alineado","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(ninguno)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"Eliminar","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Eliminar todo","PDFE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"Centro","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"A la izquierda","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posición del tabulador","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"A la derecha","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"Párrafo - Ajustes avanzados","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"Auto","PDFE.Views.PrintWithPreview.textMarginsLast":"Último personalizado","PDFE.Views.PrintWithPreview.textMarginsModerate":"Moderado","PDFE.Views.PrintWithPreview.textMarginsNarrow":"Estrecho","PDFE.Views.PrintWithPreview.textMarginsNormal":"Normal","PDFE.Views.PrintWithPreview.textMarginsWide":"Amplio","PDFE.Views.PrintWithPreview.txtAllPages":"Todas las páginas","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impresión en blanco y negro","PDFE.Views.PrintWithPreview.txtBothSides":"Imprimir por ambos lados","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"Girar páginas por borde largo","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"Girar páginas por borde corto","PDFE.Views.PrintWithPreview.txtBottom":"Parte inferior","PDFE.Views.PrintWithPreview.txtColorPrinting":"Impresión en color","PDFE.Views.PrintWithPreview.txtContent":"Contenido","PDFE.Views.PrintWithPreview.txtCopies":"Copias","PDFE.Views.PrintWithPreview.txtCurrentPage":"Página actual","PDFE.Views.PrintWithPreview.txtCustom":"Personalizado","PDFE.Views.PrintWithPreview.txtCustomPages":"Impresión personalizada","PDFE.Views.PrintWithPreview.txtDocument":"Documento","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"Documento y revisiones","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"Documento y sellos","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"Solo campos de formulario","PDFE.Views.PrintWithPreview.txtLandscape":"Horizontal","PDFE.Views.PrintWithPreview.txtLeft":"A la izquierda","PDFE.Views.PrintWithPreview.txtMargins":"Márgenes","PDFE.Views.PrintWithPreview.txtOf":"de {0}","PDFE.Views.PrintWithPreview.txtOneSide":"Imprimir a una cara","PDFE.Views.PrintWithPreview.txtOneSideDesc":"Imprimir solo en una cara de la página","PDFE.Views.PrintWithPreview.txtPage":"Página","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"Número de página no válido","PDFE.Views.PrintWithPreview.txtPageOrientation":"Orientación de la página","PDFE.Views.PrintWithPreview.txtPages":"Páginas","PDFE.Views.PrintWithPreview.txtPageSize":"Tamaño de la página","PDFE.Views.PrintWithPreview.txtPortrait":"Vertical","PDFE.Views.PrintWithPreview.txtPrint":"Imprimir","PDFE.Views.PrintWithPreview.txtPrinter":"Impresora","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"Impresora no seleccionada","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"Impresoras no encontradas","PDFE.Views.PrintWithPreview.txtPrintPdf":"Imprimir en PDF","PDFE.Views.PrintWithPreview.txtPrintRange":"Intervalo de impresión","PDFE.Views.PrintWithPreview.txtPrintSides":"Caras de impresión","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir utilizando el diálogo del sistema","PDFE.Views.PrintWithPreview.txtRight":"A la derecha","PDFE.Views.PrintWithPreview.txtSelection":"Selección ","PDFE.Views.PrintWithPreview.txtTop":"Parte superior","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"Esperando impresoras","PDFE.Views.RedactTab.capApplyRedactions":"Aplicar redacciones","PDFE.Views.RedactTab.capFindRedact":"Buscar y redactar","PDFE.Views.RedactTab.capMarkRedact":"Marcar para redacción","PDFE.Views.RedactTab.capRedactPages":"Redactar páginas","PDFE.Views.RedactTab.tipApplyRedactions":"Aplicar redacciones","PDFE.Views.RedactTab.tipFindRedact":"Buscar y redactar","PDFE.Views.RedactTab.tipMarkForRedact":"Marque para redacción","PDFE.Views.RedactTab.tipRedactPages":"Redactar páginas","PDFE.Views.RedactTab.txtMarkCurrentPage":"Marcar página actual","PDFE.Views.RedactTab.txtSelectRange":"Seleccionar rango","PDFE.Views.RightMenu.ariaRightMenu":"Menú de la derecha","PDFE.Views.RightMenu.txtChartSettings":"Ajustes de gráfico","PDFE.Views.RightMenu.txtFormSettings":"Ajustes de formulario","PDFE.Views.RightMenu.txtImageSettings":"Ajustes de imagen","PDFE.Views.RightMenu.txtParagraphSettings":"Ajustes de párrafo","PDFE.Views.RightMenu.txtShapeSettings":"Ajustes de forma","PDFE.Views.RightMenu.txtTableSettings":"Ajustes de tabla","PDFE.Views.RightMenu.txtTextArtSettings":"Ajustes de Text Art","PDFE.Views.ShapeSettings.strBackground":"Color de fondo","PDFE.Views.ShapeSettings.strChange":"Cambiar forma","PDFE.Views.ShapeSettings.strColor":"Color","PDFE.Views.ShapeSettings.strFill":"Relleno","PDFE.Views.ShapeSettings.strForeground":"Color de primer plano","PDFE.Views.ShapeSettings.strPattern":"Patrón","PDFE.Views.ShapeSettings.strShadow":"Mostrar sombra","PDFE.Views.ShapeSettings.strSize":"Tamaño","PDFE.Views.ShapeSettings.strStroke":"Línea","PDFE.Views.ShapeSettings.strTransparency":"Opacidad ","PDFE.Views.ShapeSettings.strType":"Tipo","PDFE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","PDFE.Views.ShapeSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.ShapeSettings.textAngle":"Ángulo","PDFE.Views.ShapeSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","PDFE.Views.ShapeSettings.textColor":"Relleno de color","PDFE.Views.ShapeSettings.textDirection":"Dirección ","PDFE.Views.ShapeSettings.textEditPoints":"Modificar puntos","PDFE.Views.ShapeSettings.textEditShape":"Editar forma","PDFE.Views.ShapeSettings.textEmptyPattern":"Sin patrón","PDFE.Views.ShapeSettings.textEyedropper":"Cuentagotas","PDFE.Views.ShapeSettings.textFlip":"Voltear","PDFE.Views.ShapeSettings.textFromFile":"Desde archivo","PDFE.Views.ShapeSettings.textFromStorage":"Desde almacenamiento","PDFE.Views.ShapeSettings.textFromUrl":"Desde URL","PDFE.Views.ShapeSettings.textGradient":"Puntos de degradado ","PDFE.Views.ShapeSettings.textGradientFill":"Relleno degradado","PDFE.Views.ShapeSettings.textHint270":"Girar 90° a la izquierda","PDFE.Views.ShapeSettings.textHint90":"Girar 90° a la derecha","PDFE.Views.ShapeSettings.textHintFlipH":"Voltear horizontalmente","PDFE.Views.ShapeSettings.textHintFlipV":"Voltear verticalmente","PDFE.Views.ShapeSettings.textImageTexture":"Imagen o textura","PDFE.Views.ShapeSettings.textLinear":"Lineal","PDFE.Views.ShapeSettings.textMoreColors":"Más colores","PDFE.Views.ShapeSettings.textNoFill":"Sin relleno","PDFE.Views.ShapeSettings.textNoShadow":"Sin sombra","PDFE.Views.ShapeSettings.textPatternFill":"Patrón","PDFE.Views.ShapeSettings.textPosition":"Posición","PDFE.Views.ShapeSettings.textRadial":"Radial","PDFE.Views.ShapeSettings.textRecentlyUsed":"Usados recientemente","PDFE.Views.ShapeSettings.textRotate90":"Girar 90°","PDFE.Views.ShapeSettings.textRotation":"Rotación","PDFE.Views.ShapeSettings.textSelectImage":"Seleccionar imagen","PDFE.Views.ShapeSettings.textSelectTexture":"Seleccionar","PDFE.Views.ShapeSettings.textShadow":"Sombra","PDFE.Views.ShapeSettings.textStretch":"Estirar","PDFE.Views.ShapeSettings.textStyle":"Estilo","PDFE.Views.ShapeSettings.textTexture":"Desde textura","PDFE.Views.ShapeSettings.textTile":"Mosaico","PDFE.Views.ShapeSettings.tipAddGradientPoint":"Añadir punto de degradado","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"Eliminar punto de degradado","PDFE.Views.ShapeSettings.txtBrownPaper":"Papel marrón","PDFE.Views.ShapeSettings.txtCanvas":"Lienzo","PDFE.Views.ShapeSettings.txtCarton":"Cartón","PDFE.Views.ShapeSettings.txtDarkFabric":"Tela oscura","PDFE.Views.ShapeSettings.txtGrain":"Grano","PDFE.Views.ShapeSettings.txtGranite":"Granito","PDFE.Views.ShapeSettings.txtGreyPaper":"Papel gris","PDFE.Views.ShapeSettings.txtKnit":"Tejido","PDFE.Views.ShapeSettings.txtLeather":"Cuero","PDFE.Views.ShapeSettings.txtNoBorders":"Sin línea","PDFE.Views.ShapeSettings.txtOffsetBottom":"Desplazamiento: Abajo","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"Desplazamiento: Abajo a la izquierda","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"Desplazamiento: Abajo a la derecha","PDFE.Views.ShapeSettings.txtOffsetCenter":"Desplazamiento: Al centro","PDFE.Views.ShapeSettings.txtOffsetLeft":"Desplazamiento: A la izquierda","PDFE.Views.ShapeSettings.txtOffsetRight":"Desplazamiento: A la derecha","PDFE.Views.ShapeSettings.txtOffsetTop":"Desplazamiento: Arriba","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"Desplazamiento: Arriba a la izquierda","PDFE.Views.ShapeSettings.txtOffsetTopRight":"Desplazamiento: Arriba a la derecha","PDFE.Views.ShapeSettings.txtPapyrus":"Papiro","PDFE.Views.ShapeSettings.txtWood":"Madera","PDFE.Views.ShapeSettingsAdvanced.strColumns":"Columnas","PDFE.Views.ShapeSettingsAdvanced.strMargins":"Márgenes interiores","PDFE.Views.ShapeSettingsAdvanced.textAlt":"Texto alternativo","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"Descripción","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ShapeSettingsAdvanced.textAngle":"Ángulo","PDFE.Views.ShapeSettingsAdvanced.textArrows":"Flechas","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"Ajuste automático","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"Tamaño inicial","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"Estilo inicial","PDFE.Views.ShapeSettingsAdvanced.textBevel":"Biselado","PDFE.Views.ShapeSettingsAdvanced.textBottom":"Abajo ","PDFE.Views.ShapeSettingsAdvanced.textCapType":"Tipo de letra capital","PDFE.Views.ShapeSettingsAdvanced.textCenter":"Centro","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"Número de columnas","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"Tamaño final","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"Estilo final","PDFE.Views.ShapeSettingsAdvanced.textFlat":"Plano","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"Volteado","PDFE.Views.ShapeSettingsAdvanced.textFrom":"De","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"General","PDFE.Views.ShapeSettingsAdvanced.textHeight":"Altura","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"Horizontal ","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"Horizontalmente","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"Tipo de combinación","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"Proporciones constantes","PDFE.Views.ShapeSettingsAdvanced.textLeft":"A la izquierda","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"Estilo de línea","PDFE.Views.ShapeSettingsAdvanced.textMiter":"Ángulo","PDFE.Views.ShapeSettingsAdvanced.textNofit":"No autoajustar","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"Ubicación","PDFE.Views.ShapeSettingsAdvanced.textPosition":"Posición","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"Ajustar tamaño de la forma al texto","PDFE.Views.ShapeSettingsAdvanced.textRight":"A la derecha","PDFE.Views.ShapeSettingsAdvanced.textRotation":"Rotación","PDFE.Views.ShapeSettingsAdvanced.textRound":"Redondeado","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"Nombre de la forma","PDFE.Views.ShapeSettingsAdvanced.textShrink":"Comprimir el texto al desbordarse","PDFE.Views.ShapeSettingsAdvanced.textSize":"Tamaño","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"Espacio entre columnas","PDFE.Views.ShapeSettingsAdvanced.textSquare":"Cuadrado","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"Cuadro de texto","PDFE.Views.ShapeSettingsAdvanced.textTitle":"Forma - Ajustes avanzados","PDFE.Views.ShapeSettingsAdvanced.textTop":"Arriba","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"Esquina superior izquierda","PDFE.Views.ShapeSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ShapeSettingsAdvanced.textVertically":"Verticalmente","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"Grosores y flechas","PDFE.Views.ShapeSettingsAdvanced.textWidth":"Ancho","PDFE.Views.ShapeSettingsAdvanced.txtNone":"No","PDFE.Views.Statusbar.goToPageText":"Ir a Página","PDFE.Views.Statusbar.pageIndexText":"Página {0} de {1}","PDFE.Views.Statusbar.tipFitPage":"Ajustar a la página","PDFE.Views.Statusbar.tipFitWidth":"Ajustar al ancho","PDFE.Views.Statusbar.tipHandTool":"Herramienta de mano","PDFE.Views.Statusbar.tipPageNext":"Ir a la página siguiente","PDFE.Views.Statusbar.tipPagePrev":"Ir a la página anterior","PDFE.Views.Statusbar.tipSelectTool":"Herramienta de selección","PDFE.Views.Statusbar.tipZoomFactor":"Ampliación","PDFE.Views.Statusbar.tipZoomIn":"Acercar","PDFE.Views.Statusbar.tipZoomOut":"Alejar","PDFE.Views.Statusbar.txtPageNumInvalid":"Número de página no válido","PDFE.Views.TableSettings.deleteColumnText":"Eliminar columna","PDFE.Views.TableSettings.deleteRowText":"Eliminar fila","PDFE.Views.TableSettings.deleteTableText":"Eliminar tabla","PDFE.Views.TableSettings.insertColumnLeftText":"Insertar columna a la izquierda","PDFE.Views.TableSettings.insertColumnRightText":"Insertar columna a la derecha","PDFE.Views.TableSettings.insertRowAboveText":"Insertar fila arriba","PDFE.Views.TableSettings.insertRowBelowText":"Insertar fila abajo","PDFE.Views.TableSettings.mergeCellsText":"Unir celdas","PDFE.Views.TableSettings.selectCellText":"Seleccionar celda","PDFE.Views.TableSettings.selectColumnText":"Seleccionar columna","PDFE.Views.TableSettings.selectRowText":"Seleccionar fila","PDFE.Views.TableSettings.selectTableText":"Seleccionar tabla","PDFE.Views.TableSettings.splitCellsText":"Dividir celda...","PDFE.Views.TableSettings.splitCellTitleText":"Dividir celda","PDFE.Views.TableSettings.textAdvanced":"Mostrar ajustes avanzados","PDFE.Views.TableSettings.textBackColor":"Color de fondo","PDFE.Views.TableSettings.textBanded":"Con bandas","PDFE.Views.TableSettings.textBorderColor":"Color","PDFE.Views.TableSettings.textBorders":"Estilo de bordes","PDFE.Views.TableSettings.textCellSize":"Tamaño de la сelda","PDFE.Views.TableSettings.textColumns":"Columnas","PDFE.Views.TableSettings.textDistributeCols":"Distribuir columnas","PDFE.Views.TableSettings.textDistributeRows":"Distribuir filas","PDFE.Views.TableSettings.textEdit":"Filas y columnas","PDFE.Views.TableSettings.textEmptyTemplate":"Sin plantillas","PDFE.Views.TableSettings.textFirst":"Primero","PDFE.Views.TableSettings.textHeader":"Encabezado","PDFE.Views.TableSettings.textHeight":"Altura","PDFE.Views.TableSettings.textLast":"Último","PDFE.Views.TableSettings.textRows":"Filas","PDFE.Views.TableSettings.textSelectBorders":"Seleccione los bordes que desea cambiar aplicando el estilo seleccionado arriba","PDFE.Views.TableSettings.textTemplate":"Seleccionar desde plantilla","PDFE.Views.TableSettings.textTotal":"Total","PDFE.Views.TableSettings.textWidth":"Ancho","PDFE.Views.TableSettings.tipAll":"Establecer borde exterior y todas las líneas interiores ","PDFE.Views.TableSettings.tipBottom":"Establecer solo borde exterior inferior","PDFE.Views.TableSettings.tipInner":"Establecer solo líneas interiores","PDFE.Views.TableSettings.tipInnerHor":"Establecer solo líneas horizontales interiores","PDFE.Views.TableSettings.tipInnerVert":"Establecer solo líneas verticales interiores","PDFE.Views.TableSettings.tipLeft":"Establecer solo borde exterior izquierdo","PDFE.Views.TableSettings.tipNone":"No establecer bordes","PDFE.Views.TableSettings.tipOuter":"Establecer solo borde exterior","PDFE.Views.TableSettings.tipRight":"Establecer solo borde exterior derecho","PDFE.Views.TableSettings.tipTop":"Establecer solo borde exterior superior","PDFE.Views.TableSettings.txtGroupTable_Custom":"Personalizado","PDFE.Views.TableSettings.txtGroupTable_Dark":"Oscuro","PDFE.Views.TableSettings.txtGroupTable_Light":"Claro","PDFE.Views.TableSettings.txtGroupTable_Medium":"Medio","PDFE.Views.TableSettings.txtGroupTable_Optimal":"Mejor coincidencia de documento","PDFE.Views.TableSettings.txtNoBorders":"Sin bordes","PDFE.Views.TableSettings.txtTable_Accent":"Acento","PDFE.Views.TableSettings.txtTable_DarkStyle":"Estilo oscuro","PDFE.Views.TableSettings.txtTable_LightStyle":"Estilo claro","PDFE.Views.TableSettings.txtTable_MediumStyle":"Estilo medio","PDFE.Views.TableSettings.txtTable_NoGrid":"Sin cuadrícula","PDFE.Views.TableSettings.txtTable_NoStyle":"Sin estilo","PDFE.Views.TableSettings.txtTable_TableGrid":"Cuadrícula de tabla","PDFE.Views.TableSettings.txtTable_ThemedStyle":"Estilo temático","PDFE.Views.TableSettingsAdvanced.textAlt":"Texto alternativo","PDFE.Views.TableSettingsAdvanced.textAltDescription":"Descripción","PDFE.Views.TableSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","PDFE.Views.TableSettingsAdvanced.textAltTitle":"Título","PDFE.Views.TableSettingsAdvanced.textBottom":"Abajo ","PDFE.Views.TableSettingsAdvanced.textCenter":"Centro","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"Usar márgenes predeterminados","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"Márgenes predeterminados","PDFE.Views.TableSettingsAdvanced.textFrom":"De","PDFE.Views.TableSettingsAdvanced.textGeneral":"General","PDFE.Views.TableSettingsAdvanced.textHeight":"Altura","PDFE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal ","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"Proporciones constantes","PDFE.Views.TableSettingsAdvanced.textLeft":"A la izquierda","PDFE.Views.TableSettingsAdvanced.textMargins":"Márgenes de celda","PDFE.Views.TableSettingsAdvanced.textPlacement":"Ubicación","PDFE.Views.TableSettingsAdvanced.textPosition":"Posición","PDFE.Views.TableSettingsAdvanced.textRight":"A la derecha","PDFE.Views.TableSettingsAdvanced.textSize":"Tamaño","PDFE.Views.TableSettingsAdvanced.textTableName":"Nombre de la tabla","PDFE.Views.TableSettingsAdvanced.textTitle":"Tabla - Ajustes avanzados","PDFE.Views.TableSettingsAdvanced.textTop":"Arriba","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"Esquina superior izquierda","PDFE.Views.TableSettingsAdvanced.textVertical":"Vertical","PDFE.Views.TableSettingsAdvanced.textWidth":"Ancho","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"Márgenes","PDFE.Views.TextArtSettings.strBackground":"Color de fondo","PDFE.Views.TextArtSettings.strColor":"Color","PDFE.Views.TextArtSettings.strFill":"Relleno","PDFE.Views.TextArtSettings.strForeground":"Color de primer plano","PDFE.Views.TextArtSettings.strPattern":"Patrón","PDFE.Views.TextArtSettings.strSize":"Tamaño","PDFE.Views.TextArtSettings.strStroke":"Línea","PDFE.Views.TextArtSettings.strTransparency":"Opacidad ","PDFE.Views.TextArtSettings.strType":"Tipo","PDFE.Views.TextArtSettings.textAngle":"Ángulo","PDFE.Views.TextArtSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","PDFE.Views.TextArtSettings.textColor":"Relleno de color","PDFE.Views.TextArtSettings.textDirection":"Dirección ","PDFE.Views.TextArtSettings.textEmptyPattern":"Sin patrón","PDFE.Views.TextArtSettings.textFromFile":"Desde archivo","PDFE.Views.TextArtSettings.textFromUrl":"Desde URL","PDFE.Views.TextArtSettings.textGradient":"Puntos de degradado ","PDFE.Views.TextArtSettings.textGradientFill":"Relleno degradado","PDFE.Views.TextArtSettings.textImageTexture":"Imagen o textura","PDFE.Views.TextArtSettings.textLinear":"Lineal","PDFE.Views.TextArtSettings.textNoFill":"Sin relleno","PDFE.Views.TextArtSettings.textPatternFill":"Patrón","PDFE.Views.TextArtSettings.textPosition":"Posición","PDFE.Views.TextArtSettings.textRadial":"Radial","PDFE.Views.TextArtSettings.textSelectTexture":"Seleccionar","PDFE.Views.TextArtSettings.textStretch":"Estirar","PDFE.Views.TextArtSettings.textStyle":"Estilo","PDFE.Views.TextArtSettings.textTemplate":"Plantilla","PDFE.Views.TextArtSettings.textTexture":"Desde textura","PDFE.Views.TextArtSettings.textTile":"Mosaico","PDFE.Views.TextArtSettings.textTransform":"Transformar","PDFE.Views.TextArtSettings.tipAddGradientPoint":"Añadir punto de degradado","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"Eliminar punto de degradado","PDFE.Views.TextArtSettings.txtBrownPaper":"Papel marrón","PDFE.Views.TextArtSettings.txtCanvas":"Lienzo","PDFE.Views.TextArtSettings.txtCarton":"Cartón","PDFE.Views.TextArtSettings.txtDarkFabric":"Tela oscura","PDFE.Views.TextArtSettings.txtGrain":"Grano","PDFE.Views.TextArtSettings.txtGranite":"Granito","PDFE.Views.TextArtSettings.txtGreyPaper":"Papel gris","PDFE.Views.TextArtSettings.txtKnit":"Tejido","PDFE.Views.TextArtSettings.txtLeather":"Cuero","PDFE.Views.TextArtSettings.txtNoBorders":"Sin línea","PDFE.Views.TextArtSettings.txtPapyrus":"Papiro","PDFE.Views.TextArtSettings.txtWood":"Madera","PDFE.Views.Toolbar.capBtnAddComment":"Añadir comentario","PDFE.Views.Toolbar.capBtnArrowComment":"Flecha","PDFE.Views.Toolbar.capBtnCircleComment":"Círculo","PDFE.Views.Toolbar.capBtnComment":"Comentario","PDFE.Views.Toolbar.capBtnDelPage":"Eliminar página","PDFE.Views.Toolbar.capBtnDownloadForm":"Descargar como PDF","PDFE.Views.Toolbar.capBtnEditText":"Editar texto","PDFE.Views.Toolbar.capBtnHand":"Mano","PDFE.Views.Toolbar.capBtnNext":"Campo siguiente","PDFE.Views.Toolbar.capBtnPolyLineComment":"Líneas conectadas","PDFE.Views.Toolbar.capBtnPrev":"Campo anterior","PDFE.Views.Toolbar.capBtnRecognize":"Editar texto","PDFE.Views.Toolbar.capBtnRectComment":"Rectángulo","PDFE.Views.Toolbar.capBtnRotate":"Girar","PDFE.Views.Toolbar.capBtnRotatePage":"Girar página","PDFE.Views.Toolbar.capBtnSaveForm":"Guardar como PDF","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"Guardar como...","PDFE.Views.Toolbar.capBtnSelect":"Seleccionar","PDFE.Views.Toolbar.capBtnShowComments":"Mostrar comentarios","PDFE.Views.Toolbar.capBtnStamp":"Sello","PDFE.Views.Toolbar.capBtnSubmit":"Enviar","PDFE.Views.Toolbar.capBtnTextCallout":"Llamada de texto","PDFE.Views.Toolbar.capBtnTextComment":"Comentario de texto","PDFE.Views.Toolbar.mniCapitalizeWords":"Poner en mayúsculas cada palabra","PDFE.Views.Toolbar.mniInsertSSE":"Insertar hoja de cálculo","PDFE.Views.Toolbar.mniLowerCase":"minúsculas","PDFE.Views.Toolbar.mniSentenceCase":"Tipo oración.","PDFE.Views.Toolbar.mniToggleCase":"tIPO iNVERSO","PDFE.Views.Toolbar.mniUpperCase":"MAYÚSCULAS","PDFE.Views.Toolbar.strMenuNoFill":"Sin relleno","PDFE.Views.Toolbar.textAlignBottom":"Alinear texto hacia abajo","PDFE.Views.Toolbar.textAlignCenter":"Centrar texto","PDFE.Views.Toolbar.textAlignJust":"Alinear","PDFE.Views.Toolbar.textAlignLeft":"Alinear texto a la izquierda","PDFE.Views.Toolbar.textAlignMiddle":"Alinear texto al medio","PDFE.Views.Toolbar.textAlignRight":"Alinear texto a la derecha","PDFE.Views.Toolbar.textAlignTop":"Alinear texto hacia arriba","PDFE.Views.Toolbar.textArrangeBack":"Enviar al fondo","PDFE.Views.Toolbar.textArrangeBackward":"Enviar atrás","PDFE.Views.Toolbar.textArrangeForward":"Traer al frente","PDFE.Views.Toolbar.textArrangeFront":"Traer al primer plano","PDFE.Views.Toolbar.textBold":"Negrita","PDFE.Views.Toolbar.textClear":"Borrar campos","PDFE.Views.Toolbar.textClearFields":"Borrar todos los campos","PDFE.Views.Toolbar.textColumnsCustom":"Columnas personalizadas","PDFE.Views.Toolbar.textColumnsOne":"Una columna","PDFE.Views.Toolbar.textColumnsThree":"Tres columnas","PDFE.Views.Toolbar.textColumnsTwo":"Dos columnas","PDFE.Views.Toolbar.textDirLtr":"De izquierda a derecha","PDFE.Views.Toolbar.textDirRtl":"De derecha a izquierda","PDFE.Views.Toolbar.textEditMode":"Editar PDF","PDFE.Views.Toolbar.textHighlight":"Resaltar","PDFE.Views.Toolbar.textItalic":"Cursiva","PDFE.Views.Toolbar.textListSettings":"Ajustes de lista","PDFE.Views.Toolbar.textShapeAlignBottom":"Alinear hacia abajo","PDFE.Views.Toolbar.textShapeAlignCenter":"Alinear al centro","PDFE.Views.Toolbar.textShapeAlignLeft":"Alinear a la izquierda","PDFE.Views.Toolbar.textShapeAlignMiddle":"Alinear al medio","PDFE.Views.Toolbar.textShapeAlignRight":"Alinear a la derecha","PDFE.Views.Toolbar.textShapeAlignTop":"Alinear hacia arriba","PDFE.Views.Toolbar.textShapesCombine":"Combinar","PDFE.Views.Toolbar.textShapesFragment":"Fragmento","PDFE.Views.Toolbar.textShapesIntersect":"Formar intersección","PDFE.Views.Toolbar.textShapesSubstract":"Restar","PDFE.Views.Toolbar.textShapesUnion":"Unión","PDFE.Views.Toolbar.textStrikeout":"Tachado","PDFE.Views.Toolbar.textSubmited":"El formulario se ha enviado correctamente","PDFE.Views.Toolbar.textSubscript":"Subíndice","PDFE.Views.Toolbar.textSuperscript":"Superíndice","PDFE.Views.Toolbar.textTabCollaboration":"Colaboración","PDFE.Views.Toolbar.textTabComment":"Comentario","PDFE.Views.Toolbar.textTabEdit":"Editar","PDFE.Views.Toolbar.textTabFile":"Archivo","PDFE.Views.Toolbar.textTabHome":"Inicio","PDFE.Views.Toolbar.textTabInsert":"Insertar","PDFE.Views.Toolbar.textTabRedact":"Redactar","PDFE.Views.Toolbar.textTabView":"Vista","PDFE.Views.Toolbar.textUnderline":"Subrayar","PDFE.Views.Toolbar.tipAddComment":"Añadir comentario","PDFE.Views.Toolbar.tipChangeCase":"Cambiar mayúsculas y minúsculas","PDFE.Views.Toolbar.tipClearStyle":"Borrar estilo","PDFE.Views.Toolbar.tipColumns":"Insertar columnas","PDFE.Views.Toolbar.tipCopy":"Copiar","PDFE.Views.Toolbar.tipCut":"Cortar","PDFE.Views.Toolbar.tipDecFont":"Reducir tamaño de letra","PDFE.Views.Toolbar.tipDecPrLeft":"Reducir sangría","PDFE.Views.Toolbar.tipDelPage":"Eliminar página","PDFE.Views.Toolbar.tipDownload":"Descargar archivo","PDFE.Views.Toolbar.tipDownloadForm":"Descargar el archivo como documento PDF rellenable","PDFE.Views.Toolbar.tipEditMode":"Añada o edite texto, formas, imágenes, etc.","PDFE.Views.Toolbar.tipEditText":"Editar texto","PDFE.Views.Toolbar.tipFirstPage":"Ir a la primera página","PDFE.Views.Toolbar.tipFontColor":"Color de la fuente","PDFE.Views.Toolbar.tipFontName":"Fuente","PDFE.Views.Toolbar.tipFontSize":"Tamaño de la fuente","PDFE.Views.Toolbar.tipHAligh":"Alineación horizontal","PDFE.Views.Toolbar.tipHandTool":"Herramienta de mano","PDFE.Views.Toolbar.tipHighlightColor":"Color de resaltado","PDFE.Views.Toolbar.tipIncFont":"Aumentar tamaño de la fuente","PDFE.Views.Toolbar.tipIncPrLeft":"Aumentar sangría","PDFE.Views.Toolbar.tipInsertArrowComment":"Dibujar una flecha","PDFE.Views.Toolbar.tipInsertCircleComment":"Dibujar un círculo o un óvalo","PDFE.Views.Toolbar.tipInsertPolyLineComment":"Dibujar líneas que se conecten entre sí","PDFE.Views.Toolbar.tipInsertRectComment":"Dibujar un rectángulo o un cuadrado","PDFE.Views.Toolbar.tipInsertStamp":"Insertar sello","PDFE.Views.Toolbar.tipInsertTextCallout":"Insertar llamada de texto","PDFE.Views.Toolbar.tipInsertTextComment":"Insertar comentario de texto","PDFE.Views.Toolbar.tipLastPage":"Ir a la última página","PDFE.Views.Toolbar.tipLineSpace":"Interlineado","PDFE.Views.Toolbar.tipMarkers":"Viñetas","PDFE.Views.Toolbar.tipMarkersArrow":"Viñetas de flecha","PDFE.Views.Toolbar.tipMarkersCheckmark":"Viñetas de marca de verificación","PDFE.Views.Toolbar.tipMarkersDash":"Viñetas guión","PDFE.Views.Toolbar.tipMarkersFRhombus":"Rombos rellenos","PDFE.Views.Toolbar.tipMarkersFRound":"Viñetas redondas rellenas","PDFE.Views.Toolbar.tipMarkersFSquare":"Viñetas cuadradas rellenas","PDFE.Views.Toolbar.tipMarkersHRound":"Viñetas redondas huecas","PDFE.Views.Toolbar.tipMarkersStar":"Viñetas de estrella","PDFE.Views.Toolbar.tipNextForm":"Ir al campo siguiente","PDFE.Views.Toolbar.tipNextPage":"Ir a la página siguiente","PDFE.Views.Toolbar.tipNone":"No","PDFE.Views.Toolbar.tipNumbers":"Numeración","PDFE.Views.Toolbar.tipPaste":"Pegar","PDFE.Views.Toolbar.tipPrevForm":"Ir al campo anterior","PDFE.Views.Toolbar.tipPrevPage":"Ir a la página anterior","PDFE.Views.Toolbar.tipPrint":"Imprimir","PDFE.Views.Toolbar.tipPrintQuick":"Impresión rápida","PDFE.Views.Toolbar.tipRecognize":"Editar texto","PDFE.Views.Toolbar.tipRedo":"Rehacer","PDFE.Views.Toolbar.tipRotate":"Girar páginas","PDFE.Views.Toolbar.tipSave":"Guardar","PDFE.Views.Toolbar.tipSaveCoauth":"Guarde los cambios para que otros usuarios los puedan ver.","PDFE.Views.Toolbar.tipSaveForm":"Guardar el archivo como un documento PDF rellenable","PDFE.Views.Toolbar.tipSelectAll":"Seleccionar todo","PDFE.Views.Toolbar.tipSelectTool":"Herramienta de selección","PDFE.Views.Toolbar.tipShapeAlign":"Alinear forma","PDFE.Views.Toolbar.tipShapeArrange":"Arreglar forma","PDFE.Views.Toolbar.tipShapeMerge":"Fusionar formas","PDFE.Views.Toolbar.tipSubmit":"Enviar formulario","PDFE.Views.Toolbar.tipSynchronize":"El documento ha sido modificado por otro usuario. Por favor haga clic para guardar sus cambios y recargue el documento.","PDFE.Views.Toolbar.tipTextDir":"Dirección del texto","PDFE.Views.Toolbar.tipUndo":"Deshacer","PDFE.Views.Toolbar.tipVAligh":"Alineación vertical","PDFE.Views.Toolbar.txtArrowComment":"Flecha","PDFE.Views.Toolbar.txtCircleComment":"Círculo","PDFE.Views.Toolbar.txtDistribHor":"Distribuir horizontalmente","PDFE.Views.Toolbar.txtDistribVert":"Distribuir verticalmente","PDFE.Views.Toolbar.txtGroup":"Agrupar","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"Alinear objetos seleccionados","PDFE.Views.Toolbar.txtOpacity":"Opacidad ","PDFE.Views.Toolbar.txtPageAlign":"Alinear a la página","PDFE.Views.Toolbar.txtPolyLineComment":"Líneas conectadas","PDFE.Views.Toolbar.txtRectComment":"Rectángulo","PDFE.Views.Toolbar.txtRotateLeft":"Girar a la izquierda","PDFE.Views.Toolbar.txtRotatePage":"Girar página","PDFE.Views.Toolbar.txtRotatePageRight":"Girar página a la derecha","PDFE.Views.Toolbar.txtRotateRight":"Girar a la derecha","PDFE.Views.Toolbar.txtSize":"Tamaño","PDFE.Views.Toolbar.txtUngroup":"Desagrupar","PDFE.Views.ViewTab.capBtnRecognize":"Editar texto","PDFE.Views.ViewTab.textAlwaysShowToolbar":"Siempre mostrar la barra de herramientas","PDFE.Views.ViewTab.textDarkDocument":"Documento oscuro","PDFE.Views.ViewTab.textEditMode":"Editar PDF","PDFE.Views.ViewTab.textFill":"Rellenar","PDFE.Views.ViewTab.textFitToPage":"Ajustar a la página","PDFE.Views.ViewTab.textFitToWidth":"Ajustar al ancho","PDFE.Views.ViewTab.textInterfaceTheme":"Tema de la interfaz","PDFE.Views.ViewTab.textLeftMenu":"Panel izquierdo","PDFE.Views.ViewTab.textLine":"Línea","PDFE.Views.ViewTab.textNavigation":"Navegación","PDFE.Views.ViewTab.textOutline":"Encabezados","PDFE.Views.ViewTab.textRightMenu":"Panel derecho","PDFE.Views.ViewTab.textStatusBar":"Barra de estado","PDFE.Views.ViewTab.textTabStyle":"Estilo de pestaña","PDFE.Views.ViewTab.textZoom":"Ampliación","PDFE.Views.ViewTab.tipDarkDocument":"Documento oscuro","PDFE.Views.ViewTab.tipEditMode":"Añada o edite texto, formas, imágenes, etc.","PDFE.Views.ViewTab.tipFitToPage":"Ajustar a la página","PDFE.Views.ViewTab.tipFitToWidth":"Ajustar al ancho","PDFE.Views.ViewTab.tipHeadings":"Encabezados","PDFE.Views.ViewTab.tipInterfaceTheme":"Tema de la interfaz","PDFE.Views.ViewTab.tipRecognize":"Editar texto","PDFE.Views.ViewTab.textMacros":"Macros","PDFE.Views.ViewTab.tipMacros":"Macros"} \ No newline at end of file diff --git a/public/web-apps/apps/pdfeditor/main/locale/ja.json b/public/web-apps/apps/pdfeditor/main/locale/ja.json index d6645e195..c8d843680 100644 --- a/public/web-apps/apps/pdfeditor/main/locale/ja.json +++ b/public/web-apps/apps/pdfeditor/main/locale/ja.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":" 警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.ExternalLinks.textAddExternalData":"外部ソースへのリンクが追加されました。このようなリンクは、「データ」タブで更新することができます。","Common.Controllers.ExternalLinks.textDontUpdate":"アップデートしない","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"エラー:アップデートに失敗しました","Common.Controllers.ExternalLinks.warnUpdateExternalData":"このワークブックには、安全でない可能性のある1つまたは複数の外部ソースへのリンクが含まれています。
リンクを信頼する場合は、最新のデータを取得するためにそれらを更新してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"このドキュメントには、安全でない可能性のある外部ソースへのリンクが1つ以上含まれています。
リンクを信頼できる場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"このプレゼンテーションには、安全でない可能性のある外部ソースへのリンクが含まれています。
リンクを信頼する場合は、更新して最新のデータを取得してください。","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"履歴の読み込みに失敗しました","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"テーブルの一番下に新しい行を追加する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"選択したテキスト部分に見出し1のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"選択したテキスト部分に見出し2のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"選択されたテキスト部分に見出し3のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"選択したテキスト断片から順不同の箇条書きリストを作成するか、新しいリストを開始する。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"キーボードの矢印キーを使って、選択したオブジェクトを大きく下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"キーボードの矢印キーを使って、選択したオブジェクトを大きく左に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"キーボードの矢印キーを使って、選択したオブジェクトを大きく右に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"キーボードの矢印キーを使って、選択したオブジェクトを大きく上に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBold":"選択したテキストのフォントを太字にして、より太く見えるようにする。","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"段落の配置を中央揃えと左揃えの間で切り替える。","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"フォームで次のコンボボックスオプションを選択する。","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"フォームの前のコンボボックスオプションを選択する。","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"現在のPDFウィンドウを閉じる。","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"メニューやモーダルウィンドウを閉じる。コメントや変更履歴のポップアップやバルーンをリセットする。表の描画や消去モードをリセットする。テキストのドラッグ&ドロップをリセットする。マーカー選択モードをリセットする。書式のコピー/貼り付けモードをリセットする。図形の選択を解除する。図形追加モードをリセットする。ヘッダー/フッターから出る。フォーム入力を終了する。","Common.Controllers.Shortcuts.txtDescriptionCopy":"選択したテキストの断片をコンピューターのクリップボードメモリに送る。コピーしたテキストは後で、同じドキュメント内の別の場所や別のドキュメント、あるいは他のプログラムに貼り付けることができる。","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"現在編集中のテキストの選択された部分から書式をコピーします。コピーした書式は、同じドキュメント内の別のテキスト部分に後から適用することができます。","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"カーソルの右側に著作権記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionCut":"選択したテキスト部分を削除し、コンピューターのクリップボードメモリに送信する。コピーされたテキストは、後で同じ文書内の別の場所、別の文書、または他のプログラムに挿入することができます。","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"選択したテキスト部分のフォントサイズを1ポイント小さくする。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"カーソルの左側にある1文字を削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"カーソルの左側にある単語/選択部分/グラフィカルオブジェクトを1つ削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"カーソルの右側の文字を1文字削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"カーソルの右側にある単語/選択範囲/グラフィカルオブジェクトを1つ削除する。","Common.Controllers.Shortcuts.txtDescriptionEditChart":"チャートタイトルが選択された時、タイトルが空欄ならカーソルを行頭へ移動させる。そうでない場合はテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"直前に取り消した操作を繰り返す。","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"PDF内のすべてのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionEditShape":"図形が選択された時、内容が含まれていない場合は内容を作成し、カーソルを行の先頭に移動させる。内容が空の場合はカーソルをその内容に移動させ、そうでない場合は内容全体を選択する。","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"直近の操作を元に戻す。","Common.Controllers.Shortcuts.txtDescriptionEmDash":"カーソルの右側に長横線(長ダッシュ)を挿入する。","Common.Controllers.Shortcuts.txtDescriptionEnDash":"カーソルの右側にエンダッシュを挿入する。","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"現在の段落を終了し、新しい段落を始める。","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"セル内で新しい段落を始める。","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"方程式の引数に新しいプレースホルダーを追加する。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"演算子の整列レベルを左に変更する(強制改行のある方程式の2行目の場合)。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"強制改行のある方程式の2行目に対して、演算子の位置揃えレベルを右に変更する。","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"現在のカーソル位置にユーロ記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"現在のカーソル位置に省略記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"選択したテキスト部分のフォントサイズを1ポイント大きくする。","Common.Controllers.Shortcuts.txtDescriptionIndent":"段落を左から徐々にインデントする。","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"列の区切りを追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"脚注を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"現在のカーソル位置に数式を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"脚注を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"ウェブアドレスに移動できるリンクを挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"新しい段落を始めずに改行を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"複数行フォームに改行を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"現在のカーソル位置に改ページを挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"現在のカーソル位置に現在のページ番号を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"カーソルが段落の先頭にない場合、段落にタブ文字を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"テーブル内に改行を挿入する。","Common.Controllers.Shortcuts.txtDescriptionItalic":"選択したテキストのフォントを斜体にし、わずかに傾ける。","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"段落の揃え方を両端揃えから左揃えに変更する。","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"段落を左揃えにする。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"指定されたキーを押しながらキーボードの矢印キーを使用して、選択したオブジェクトを一度に1ピクセルずつ下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"指定されたキーを押しながらキーボードの矢印キーを使用して、選択したオブジェクトを一度に1ピクセルずつ左に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"指定されたキーを押しながらキーボードの矢印を使用して、選択されたオブジェクトを一度に1ピクセルずつ右に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"指定されたキーを押しながらキーボードの矢印を使用して、選択したオブジェクトを一度に1ピクセルずつ上に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"選択した段落のインデントを増やす。","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"選択した段落のインデントを減らす。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"現在選択されているオブジェクトの次のオブジェクトにフォーカスを移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"現在選択されているオブジェクトの直前のオブジェクトにフォーカスを移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"カーソルを1行下に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"現在編集中のPDFの末尾にカーソルを置く。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"カーソルを現在編集中の行の末尾に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"カーソルを1語右に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"カーソルを1文字左に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"カーソルがヘッダー/フッター内にある場合、下部のヘッダーに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"カーソルがヘッダー/フッター内にある場合、下部のヘッダー/フッターに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"テーブルの行で次のセルに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"次のフォームに進む。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"現在編集中のPDFの次のページに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"表の次の行に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"テーブル行内の前のセルに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"前のフォームに進む。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"現在編集中のPDFで前のページに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"テーブル内で前の行に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"カーソルを1文字右に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"現在編集中のPDFの最初へ移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"カーソルを現在編集中の行の先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"カーソルを現在編集中のページの直後のページの先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"カーソルを現在編集中のページの直前のページの先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"カーソルを単語の先頭か、左の単語に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"カーソルを1行上に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"カーソルがヘッダー/フッター内にある場合、上部のヘッダーに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"カーソルがヘッダー/フッターにある場合、ヘッダー/フッターの上部に移動する。","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"デスクトップエディターでは次のファイルタブに、オンラインエディターでは次のブラウザタブに切り替える。","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"モーダルダイアログ内で、次のコントロールにフォーカスを移すためにコントロール間を移動する。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"文字間にハイフンを作成し、新しい行の先頭に使用できないようにする。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"改行の始まりとして使用できないような文字間にスペースを作成する。","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"オンラインエディターでチャットパネルを開き、メッセージを送る。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"コメントのテキストを追加できるデータ入力フィールドを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"コメントパネルを開いて、自分のコメントを追加したり、他のユーザーのコメントに返信したりできる。","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"選択した要素のコンテキストメニューを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"既存のファイルを選択できる標準のダイアログボックスを開く。このダイアログボックスでファイルを選択し「開く」をクリックすると、そのファイルはデスクトップエディターの新しいタブまたはウィンドウで開かれる。","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"ファイルパネルを開いて、現在のPDFを保存、ダウンロード、印刷したり、情報を表示したり、新しい文書を作成したり、既存のPDFを開いたり、PDFエディターのヘルプセンターや詳細設定にアクセスしたりできる。","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"検索と置換メニュー(パネル)を開き、置換フィールドを使用して、見つかった文字列を一つ以上置き換える。","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"現在編集中のPDF内で文字・単語・フレーズを検索するには、検索ダイアログウィンドウを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"PDFエディターのヘルプメニューを開く。","Common.Controllers.Shortcuts.txtDescriptionPaste":"クリップボードメモリから以前にコピーしたテキスト断片を、現在のカーソル位置に挿入する。テキストは、同じ文書、別の文書、または他のプログラムから以前にコピーされたものである可能性があります。","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"以前にコピーした書式設定を、現在編集中のPDF内のテキストに適用します。","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"クリップボードメモリから以前にコピーしたテキスト断片を、元の書式を保持せずに現在のカーソル位置に挿入する。テキストは、同じ文書、別の文書、または他のプログラムから以前にコピーされたものである可能性があります。","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"デスクトップエディターでは前のファイルタブに、オンラインエディターでは前のブラウザタブに切り替える。","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"モーダルダイアログ内で、前のコントロールにフォーカスを移すためにコントロール間を移動する。","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"利用可能なプリンターでPDFを印刷するか、ファイルとして保存する。","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"現在のカーソル位置に登録商標記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"選択したUnicodeコードを記号に置き換える。","Common.Controllers.Shortcuts.txtDescriptionResetChar":"選択したテキスト断片の書式を解除する。","Common.Controllers.Shortcuts.txtDescriptionRightPara":"段落の配置を右揃えと左揃えの間で切り替える。","Common.Controllers.Shortcuts.txtDescriptionSave":"PDFエディターで現在編集中のPDFファイルへの変更をすべて保存する。アクティブなファイルは、現在のファイル名、保存場所、ファイル形式で保存される。","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"「名前を付けて保存…」パネルを開き、現在編集中のPDFを、サポートされている形式のいずれかでコンピュータのハードディスクドライブに保存する。","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"PDFを約1ページ分スクロールして下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"PDFを約1ページ分上にスクロールさせる。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"カーソル位置の左側にある文字を一つ選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"カーソル位置から単語の先頭までテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"カーソルを1行下に移動し、前のカーソル位置と現在のカーソル位置の間にあるすべての記号を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"カーソルを1行上に移動し、前のカーソル位置と現在のカーソル位置の間にあるすべての記号を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"カーソルの位置から画面の下端までのページ部分を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"カーソルの位置から画面の上部まで、ページの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"カーソル位置の右側にある文字を一つ選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"カーソル位置から単語の終わりまでテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"カーソル位置から次のページの先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"カーソル位置から前のページの先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"カーソル位置からPDFの末尾までのテキスト部分を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"カーソル位置から現在の行の終わりまでのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"カーソル位置からPDFの先頭までテキストの断片を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"カーソル位置から現在の行の先頭までのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionShowAll":"非表示文字の表示をオンまたはオフにする。","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"現在のカーソル位置にソフトハイフン記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"コピーしたテキストの元の書式を維持する。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"元の書式なしでテキストを貼り付ける。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"コピーした表を、既存の表の選択したセルにネストされた表として貼り付ける。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"既存のテーブルの内容を、コピーしたデータで置き換える。","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"スクリーンリーダー向けにアプリケーション内で実行されたアクションの送信を有効/無効にする。","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"リストのレベル/インデントを上げる(段落の先頭にカーソルを置いた状態で)。","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"リスト/インデントレベルを下げる(段落の先頭にカーソルを置いた状態で)。","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"選択したテキストの断片を、文字を貫通する線で取り消し線付きにする。","Common.Controllers.Shortcuts.txtDescriptionSubscript":"選択したテキスト断片を小さくし、化学式のようにテキスト行の下部に配置する。","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"選択したテキストの断片を小さくし、テキスト行の上部に配置する(例えば分数のように)。","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"現在のカーソル位置に商標記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionUnderline":"選択したテキストの断片を、文字の下に線を引き下線を引く。","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"段落の左側のインデントを段階的に削除する。","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"フィールドを更新する(例:目次)。","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"リンクをクリックする(カーソルをリンクの上に置いて)。","Common.Controllers.Shortcuts.txtDescriptionZoom100":"現在のPDFの「拡大」パラメータをデフォルトの100%にリセットする。","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"現在編集中のPDFを拡大表示する。","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"現在編集中のPDFを縮小表示する。","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"太字","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"コピー","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"切り取り","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"インデント","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"斜体","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"貼り付け","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"保存","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"取り消し線","Common.Controllers.Shortcuts.txtLabelSubscript":"下付き文字","Common.Controllers.Shortcuts.txtLabelSuperscript":"上付き文字","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"下線","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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":"集合縦棒 - 第2軸の折れ線","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.textRadar":"レーダーチャート","Common.define.chartData.textRadarFilled":"塗りつぶしレーダー","Common.define.chartData.textRadarMarker":"マーカー付きレーダー","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.define.smartArt.textAccentedPicture":"アクセント付きの図","Common.define.smartArt.textAccentProcess":"アクセントプロセス","Common.define.smartArt.textAlternatingFlow":"波型ステップ","Common.define.smartArt.textAlternatingHexagons":"左右交替積み上げ六角形","Common.define.smartArt.textAlternatingPictureBlocks":"左右交替積み上げ画像ブロック","Common.define.smartArt.textAlternatingPictureCircles":"円形付き画像ジグザグ表示","Common.define.smartArt.textArchitectureLayout":"アーキテクチャ レイアウト","Common.define.smartArt.textArrowRibbon":"リボン状の矢印","Common.define.smartArt.textAscendingPictureAccentProcess":"アクセント画像付き上昇ステップ","Common.define.smartArt.textBalance":"バランス","Common.define.smartArt.textBasicBendingProcess":"基本蛇行ステップ","Common.define.smartArt.textBasicBlockList":"カード型リスト","Common.define.smartArt.textBasicChevronProcess":"プロセス","Common.define.smartArt.textBasicCycle":"基本の循環","Common.define.smartArt.textBasicMatrix":"基本マトリックス","Common.define.smartArt.textBasicPie":"円グラフ","Common.define.smartArt.textBasicProcess":"基本ステップ","Common.define.smartArt.textBasicPyramid":"基本ピラミッド","Common.define.smartArt.textBasicRadial":"基本放射","Common.define.smartArt.textBasicTarget":"ターゲット","Common.define.smartArt.textBasicTimeline":"タイムライン","Common.define.smartArt.textBasicVenn":"基本ベン図","Common.define.smartArt.textBendingPictureAccentList":"画像付きカード型リスト","Common.define.smartArt.textBendingPictureBlocks":"自動配置の画像ブロック","Common.define.smartArt.textBendingPictureCaption":"自動配置の表題付き画像","Common.define.smartArt.textBendingPictureCaptionList":"自動配置の表題付き画像レイアウト","Common.define.smartArt.textBendingPictureSemiTranparentText":"自動配置の半透明テキスト付き画像","Common.define.smartArt.textBlockCycle":"ボックス循環","Common.define.smartArt.textBubblePictureList":"バブル状画像リスト","Common.define.smartArt.textCaptionedPictures":"表題付き画像","Common.define.smartArt.textChevronAccentProcess":"アクセントステップ","Common.define.smartArt.textChevronList":"プロセス リスト","Common.define.smartArt.textCircleAccentTimeline":"円形組み合わせタイムライン","Common.define.smartArt.textCircleArrowProcess":"円形矢印プロセス","Common.define.smartArt.textCirclePictureHierarchy":"円形画像を使用した階層","Common.define.smartArt.textCircleProcess":"円形プロセス","Common.define.smartArt.textCircleRelationship":"円の関連付け","Common.define.smartArt.textCircularBendingProcess":"円形蛇行ステップ","Common.define.smartArt.textCircularPictureCallout":"円形画像を使った吹き出し","Common.define.smartArt.textClosedChevronProcess":"開始点強調型プロセス","Common.define.smartArt.textContinuousArrowProcess":"大きな矢印のプロセス","Common.define.smartArt.textContinuousBlockProcess":"矢印と長方形のプロセス","Common.define.smartArt.textContinuousCycle":"連続性強調循環","Common.define.smartArt.textContinuousPictureList":"矢印付き画像リスト","Common.define.smartArt.textConvergingArrows":"内向き矢印","Common.define.smartArt.textConvergingRadial":"収束ラジアル","Common.define.smartArt.textConvergingText":"内向きテキスト","Common.define.smartArt.textCounterbalanceArrows":"対立とバランスの矢印","Common.define.smartArt.textCycle":"循環","Common.define.smartArt.textCycleMatrix":"循環マトリックス","Common.define.smartArt.textDescendingBlockList":"ブロックの降順リスト","Common.define.smartArt.textDescendingProcess":"降順プロセス","Common.define.smartArt.textDetailedProcess":"詳述プロセス","Common.define.smartArt.textDivergingArrows":"左右逆方向矢印","Common.define.smartArt.textDivergingRadial":"矢印付き放射","Common.define.smartArt.textEquation":"方程式\t","Common.define.smartArt.textFramedTextPicture":"フレームに表示されるテキスト画像","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"歯車","Common.define.smartArt.textGridMatrix":"グリッド マトリックス","Common.define.smartArt.textGroupedList":"グループ リスト","Common.define.smartArt.textHalfCircleOrganizationChart":"アーチ型線で飾られた組織図","Common.define.smartArt.textHexagonCluster":"蜂の巣状の六角形","Common.define.smartArt.textHexagonRadial":"六角形放射","Common.define.smartArt.textHierarchy":"階層","Common.define.smartArt.textHierarchyList":"階層リスト","Common.define.smartArt.textHorizontalBulletList":"横方向箇条書きリスト","Common.define.smartArt.textHorizontalHierarchy":"横方向階層","Common.define.smartArt.textHorizontalLabeledHierarchy":"ラベル付き横方向階層","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"複数レベル対応の横方向階層","Common.define.smartArt.textHorizontalOrganizationChart":"水平方向の組織図","Common.define.smartArt.textHorizontalPictureList":"横方向画像リスト","Common.define.smartArt.textIncreasingArrowProcess":"上昇矢印のプロセス","Common.define.smartArt.textIncreasingCircleProcess":"上昇円プロセス","Common.define.smartArt.textInterconnectedBlockProcess":"相互接続された長方形のプロセス","Common.define.smartArt.textInterconnectedRings":"互いにつながったリング","Common.define.smartArt.textInvertedPyramid":"反転ピラミッド","Common.define.smartArt.textLabeledHierarchy":"ラベル付き階層","Common.define.smartArt.textLinearVenn":"横方向ベン図","Common.define.smartArt.textLinedList":"線区切りリスト","Common.define.smartArt.textList":"リスト","Common.define.smartArt.textMatrix":"マトリックス","Common.define.smartArt.textMultidirectionalCycle":"双方向循環","Common.define.smartArt.textNameAndTitleOrganizationChart":"氏名/役職名付き組織図","Common.define.smartArt.textNestedTarget":"包含","Common.define.smartArt.textNondirectionalCycle":"矢印無し循環","Common.define.smartArt.textOpposingArrows":"上下逆方向矢印","Common.define.smartArt.textOpposingIdeas":"対立する案","Common.define.smartArt.textOrganizationChart":"組織図","Common.define.smartArt.textOther":"その他","Common.define.smartArt.textPhasedProcess":"フェーズ プロセス","Common.define.smartArt.textPicture":"画像","Common.define.smartArt.textPictureAccentBlocks":"画像アクセントのブロック","Common.define.smartArt.textPictureAccentList":"画像アクセントのリスト","Common.define.smartArt.textPictureAccentProcess":"画像アクセントのプロセス","Common.define.smartArt.textPictureCaptionList":"画像キャプションのリスト","Common.define.smartArt.textPictureFrame":"フォトフレーム","Common.define.smartArt.textPictureGrid":"画像グリッド","Common.define.smartArt.textPictureLineup":"画像ラインアップ","Common.define.smartArt.textPictureOrganizationChart":"画像付き組織図","Common.define.smartArt.textPictureStrips":"画像付きラベル","Common.define.smartArt.textPieProcess":"円グラフのプロセス","Common.define.smartArt.textPlusAndMinus":"プラスとマイナス","Common.define.smartArt.textProcess":"プロセス","Common.define.smartArt.textProcessArrows":"矢印型ステップ","Common.define.smartArt.textProcessList":"プロセスのリスト","Common.define.smartArt.textPyramid":"ピラミッド","Common.define.smartArt.textPyramidList":"ピラミッドのリスト","Common.define.smartArt.textRadialCluster":"放射ブロック","Common.define.smartArt.textRadialCycle":"中心付き循環","Common.define.smartArt.textRadialList":"放射リスト","Common.define.smartArt.textRadialPictureList":"放射画像リスト","Common.define.smartArt.textRadialVenn":"放射型ベン図","Common.define.smartArt.textRandomToResultProcess":"複数案をまとめるステップ","Common.define.smartArt.textRelationship":"関係","Common.define.smartArt.textRepeatingBendingProcess":"改行型蛇行ステップ","Common.define.smartArt.textReverseList":"逆順リスト","Common.define.smartArt.textSegmentedCycle":"円型循環","Common.define.smartArt.textSegmentedProcess":"分割ステップ","Common.define.smartArt.textSegmentedPyramid":"分割ピラミッド","Common.define.smartArt.textSnapshotPictureList":"スナップショット画像リスト","Common.define.smartArt.textSpiralPicture":"渦巻き画像","Common.define.smartArt.textSquareAccentList":"箇条書き記号アクセントのリスト","Common.define.smartArt.textStackedList":"積み上げリスト","Common.define.smartArt.textStackedVenn":"包含型ベン図","Common.define.smartArt.textStaggeredProcess":"段違いステップ","Common.define.smartArt.textStepDownProcess":"ステップ ダウンのプロセス","Common.define.smartArt.textStepUpProcess":"ステップアップのプロセス","Common.define.smartArt.textSubStepProcess":"サブステップのプロセス","Common.define.smartArt.textTabbedArc":"円弧状タブ","Common.define.smartArt.textTableHierarchy":"積み木型の階層","Common.define.smartArt.textTableList":"表型リスト","Common.define.smartArt.textTabList":"タブ付きリスト","Common.define.smartArt.textTargetList":"ターゲットのリスト","Common.define.smartArt.textTextCycle":"テキスト循環","Common.define.smartArt.textThemePictureAccent":"テーマ画像アクセント","Common.define.smartArt.textThemePictureAlternatingAccent":"テーマ画像交互のアクセント","Common.define.smartArt.textThemePictureGrid":"テーマ画像グリッド","Common.define.smartArt.textTitledMatrix":"タイトル付きマトリックス","Common.define.smartArt.textTitledPictureAccentList":"画像付き横方向リスト","Common.define.smartArt.textTitledPictureBlocks":"タイトル付き画像ブロック","Common.define.smartArt.textTitlePictureLineup":"タイトル付き画像ラインアップ","Common.define.smartArt.textTrapezoidList":"台形リスト","Common.define.smartArt.textUpwardArrow":"上向き矢印","Common.define.smartArt.textVaryingWidthList":"可変幅リスト","Common.define.smartArt.textVerticalAccentList":"縦方向アクセントのリスト","Common.define.smartArt.textVerticalArrowList":"縦方向矢印リスト","Common.define.smartArt.textVerticalBendingProcess":"縦型蛇行ステップ","Common.define.smartArt.textVerticalBlockList":"縦方向ボックス リスト","Common.define.smartArt.textVerticalBoxList":"縦方向リスト","Common.define.smartArt.textVerticalBracketList":"縦方向ブラケット リスト","Common.define.smartArt.textVerticalBulletList":"縦方向箇条書きリスト","Common.define.smartArt.textVerticalChevronList":"縦方向プロセス","Common.define.smartArt.textVerticalCircleList":"縦方向円リスト","Common.define.smartArt.textVerticalCurvedList":"縦方向カーブのリスト","Common.define.smartArt.textVerticalEquation":"縦型の数式","Common.define.smartArt.textVerticalPictureAccentList":"縦方向円形画像リスト","Common.define.smartArt.textVerticalPictureList":"縦方向画像リスト","Common.define.smartArt.textVerticalProcess":"縦方向ステップ","Common.Translation.textMoreButton":"もっと","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"このファイルは他のアプリで編集されているので、編集できません。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"閲覧するために開く","Common.UI.ButtonColored.textAutoColor":"自動​","Common.UI.ButtonColored.textEyedropper":"スポイト","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":"金","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":"木","Common.UI.Calendar.textShortTuesday":"火","Common.UI.Calendar.textShortWednesday":"水","Common.UI.Calendar.textYears":"年","Common.UI.ExtendedColorDialog.addButtonText":"追加","Common.UI.ExtendedColorDialog.textCurrent":"現在","Common.UI.ExtendedColorDialog.textHexErr":"入力された値が正しくありません。
000000〜FFFFFFの数値を入力してください。","Common.UI.ExtendedColorDialog.textNew":"新しい","Common.UI.ExtendedColorDialog.textRGBErr":"入力された値が正しくありません。
0〜255の数値を入力してください。","Common.UI.HSBColorPicker.textNoColor":"色なし","Common.UI.InputFieldBtnCalendar.textDate":"日付の選択","Common.UI.InputFieldBtnPassword.textHintHidePwd":"パスワードを表示しない","Common.UI.InputFieldBtnPassword.textHintHold":"長押しでパスワード表示","Common.UI.InputFieldBtnPassword.textHintShowPwd":"パスワードを表示","Common.UI.SearchBar.capFind":"検索","Common.UI.SearchBar.capFindRedact":"検索&黒消し","Common.UI.SearchBar.textFind":"検索","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"検索&黒消し","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果のハイライト","Common.UI.SearchDialog.textMatchCase":"大文字と小文字を区別する","Common.UI.SearchDialog.textReplaceDef":"代替テキストの挿入","Common.UI.SearchDialog.textSearchStart":"ここにテキストを挿入してください","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索","Common.UI.SearchDialog.textWholeWords":"単語全体のみ","Common.UI.SearchDialog.txtBtnHideReplace":"置換を表示しない","Common.UI.SearchDialog.txtBtnReplace":"置き換え","Common.UI.SearchDialog.txtBtnReplaceAll":"全ての置き換え","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"ドキュメントは他のユーザーによって変更されました。
変更を保存するためにここでクリックし、アップデートを再ロードしてください。","Common.UI.ThemeColorPalette.textRecentColors":"最近使った色","Common.UI.ThemeColorPalette.textStandartColors":"標準色","Common.UI.ThemeColorPalette.textThemeColors":"テーマカラー","Common.UI.ThemeColorPalette.textTransparent":"透明","Common.UI.Themes.txtThemeClassicLight":"ライト(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"ダーク","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"ライト","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":" 警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"アクセント","Common.Utils.ThemeColor.txtAqua":"水色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黒色","Common.Utils.ThemeColor.txtBlue":"青色","Common.Utils.ThemeColor.txtBrightGreen":"明るい緑","Common.Utils.ThemeColor.txtBrown":"茶色","Common.Utils.ThemeColor.txtDarkBlue":"濃い青色","Common.Utils.ThemeColor.txtDarker":"より濃い","Common.Utils.ThemeColor.txtDarkGray":"濃い灰色","Common.Utils.ThemeColor.txtDarkGreen":"濃い緑色","Common.Utils.ThemeColor.txtDarkPurple":"濃い紫色","Common.Utils.ThemeColor.txtDarkRed":"濃い赤色","Common.Utils.ThemeColor.txtDarkTeal":"濃い青緑色","Common.Utils.ThemeColor.txtDarkYellow":"濃い黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"緑色","Common.Utils.ThemeColor.txtIndigo":"インディゴ","Common.Utils.ThemeColor.txtLavender":"ラベンダー","Common.Utils.ThemeColor.txtLightBlue":"明るい青色","Common.Utils.ThemeColor.txtLighter":"より明るい","Common.Utils.ThemeColor.txtLightGray":"明るい灰色","Common.Utils.ThemeColor.txtLightGreen":"明るい緑色","Common.Utils.ThemeColor.txtLightOrange":"明るいオレンジ色","Common.Utils.ThemeColor.txtLightYellow":"明るい黄色","Common.Utils.ThemeColor.txtOrange":"オレンジ色","Common.Utils.ThemeColor.txtPink":"ピンク色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"赤色","Common.Utils.ThemeColor.txtRose":"ローズ色","Common.Utils.ThemeColor.txtSkyBlue":"スカイブルー色","Common.Utils.ThemeColor.txtTeal":"青緑色","Common.Utils.ThemeColor.txttext":"テキスト","Common.Utils.ThemeColor.txtTurquosie":"ターコイズ色","Common.Utils.ThemeColor.txtViolet":"バイオレット色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"住所:","Common.Views.About.txtLicensee":"ライセンス所有者","Common.Views.About.txtLicensor":"ライセンサー","Common.Views.About.txtMail":"メール:","Common.Views.About.txtPoweredBy":"Powered by","Common.Views.About.txtTel":"電話番号:","Common.Views.About.txtVersion":"バージョン","Common.Views.Chat.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"ここにメッセージを挿入する","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.mniFilterComments":"コメントの表示","Common.Views.Comments.mniFilterGroups":"グループでフィルター","Common.Views.Comments.mniPositionAsc":"上から","Common.Views.Comments.mniPositionDesc":"下から","Common.Views.Comments.textAdd":"追加","Common.Views.Comments.textAddComment":"コメントを追加","Common.Views.Comments.textAddCommentToDoc":"ドキュメントにコメントを追加","Common.Views.Comments.textAddReply":"返信を追加","Common.Views.Comments.textAll":"すべて","Common.Views.Comments.textAnonym":"ゲスト","Common.Views.Comments.textCancel":"キャンセル","Common.Views.Comments.textClose":"閉じる","Common.Views.Comments.textClosePanel":"コメントを閉じる","Common.Views.Comments.textComment":"コメント","Common.Views.Comments.textComments":"コメント","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"ここにコメントを入力してください","Common.Views.Comments.textHintAddComment":"コメントを追加","Common.Views.Comments.textOpen":"開く","Common.Views.Comments.textOpenAgain":"もう一度開く","Common.Views.Comments.textReply":"返信","Common.Views.Comments.textResolve":"解決","Common.Views.Comments.textResolved":"解決済み","Common.Views.Comments.textSort":"コメントを並べ替える","Common.Views.Comments.textSortFilter":"コメントの並べ替えとフィルター","Common.Views.Comments.textSortFilterMore":"並び替え、フィルター、その他","Common.Views.Comments.textSortMore":"並び替えなど","Common.Views.Comments.textViewResolved":"コメントを再開する権限がありません","Common.Views.Comments.txtEmpty":"ドキュメントにはコメントがありません。","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"エディターツールバーのボタンやコンテキストメニューの操作によるコピー、カット、ペーストの動作は、このエディタータブ内でのみ実行されます。

エディタータブ以外のアプリケーションとの間でコピーまたは貼り付けを行うには、次のキーボードの組み合わせを使用して下さい:","Common.Views.CopyWarningDialog.textTitle":"コピー、カット、ペーストのアクション","Common.Views.CopyWarningDialog.textToCopy":"コピー用","Common.Views.CopyWarningDialog.textToCut":"切り取り用","Common.Views.CopyWarningDialog.textToPaste":"貼り付用","Common.Views.CustomizeQuickAccessDialog.textDownload":"ダウンロード","Common.Views.CustomizeQuickAccessDialog.textMsg":"クイックアクセスツールバーに表示されるコマンドをチェックしてください","Common.Views.CustomizeQuickAccessDialog.textPrint":"印刷","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"クイックプリント","Common.Views.CustomizeQuickAccessDialog.textRedo":"やり直し","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"クイックアクセスのカスタマイズ","Common.Views.CustomizeQuickAccessDialog.textUndo":"元に戻す","Common.Views.DocumentAccessDialog.textLoading":"読み込んでいます...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.Draw.hintEraser":"消しゴム","Common.Views.Draw.hintSelect":"選択","Common.Views.Draw.txtEraser":"消しゴム","Common.Views.Draw.txtHighlighter":"蛍光ペン","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"ペン","Common.Views.Draw.txtSelect":"選択","Common.Views.Draw.txtSize":"サイズ","Common.Views.ExternalDiagramEditor.textTitle":"グラフのエディタ","Common.Views.ExternalEditor.textClose":"閉じる","Common.Views.ExternalEditor.textSave":"保存&終了","Common.Views.ExternalLinksDlg.closeButtonText":"閉じる","Common.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","Common.Views.ExternalLinksDlg.textChange":"変更元","Common.Views.ExternalLinksDlg.textDelete":"リンクの解除","Common.Views.ExternalLinksDlg.textDeleteAll":"すべてのリンクを解除","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"オープンソース","Common.Views.ExternalLinksDlg.textSource":"ソース","Common.Views.ExternalLinksDlg.textStatus":"ステータス","Common.Views.ExternalLinksDlg.textUnknown":"不明","Common.Views.ExternalLinksDlg.textUpdate":"値を更新","Common.Views.ExternalLinksDlg.textUpdateAll":"すべて更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部リンク","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りとしてマークする","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textAnnotateDesc":"フォームに記入または注釈を付ける","Common.Views.Header.textBack":"ファイルを開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textComment":"コメント","Common.Views.Header.textCommentDesc":"すべての変更はファイルに保存されます。リアルタイムコラボレーション","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textDownload":"ダウンロード","Common.Views.Header.textEdit":"編集","Common.Views.Header.textEditDesc":"すべての変更はファイルに保存されます。リアルタイムコラボレーション","Common.Views.Header.textEditDescNoCoedit":"テキスト、図形、画像などを追加または編集する","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideStatusBar":"ステータスバーを表示しない","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textShare":"共有","Common.Views.Header.textView":"閲覧","Common.Views.Header.textViewDesc":"すべての変更はローカルに保存されます","Common.Views.Header.textViewDescNoCoedit":"表示または注釈","Common.Views.Header.textZoom":"拡大図","Common.Views.Header.tipAccessRights":"文書のアクセス許可の管理","Common.Views.Header.tipComment":"コメント","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDownload":"ファイルをダウンロード","Common.Views.Header.tipEdit":"編集","Common.Views.Header.tipGoEdit":"現在のファイルを編集する","Common.Views.Header.tipPrint":"印刷","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直す","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUsers":"ユーザーを表示する","Common.Views.Header.tipView":"閲覧","Common.Views.Header.tipViewSettings":"表示の設定","Common.Views.Header.tipViewUsers":"ユーザーの表示と文書のアクセス権の管理","Common.Views.Header.txtAccessRights":"アクセス権の変更","Common.Views.Header.txtRename":"名前の変更","Common.Views.ImageFromUrlDialog.textUrl":"画像URLの貼り付け","Common.Views.ImageFromUrlDialog.txtEmpty":"この項目は必須です","Common.Views.ImageFromUrlDialog.txtNotUrl":"リンクの入力内容は「http://www.example.com」形式のURLである必要があります。","Common.Views.OpenDialog.closeButtonText":"ファイルを閉じる","Common.Views.OpenDialog.txtEncoding":"文字コード","Common.Views.OpenDialog.txtIncorrectPwd":"パスワードが正しくありません。","Common.Views.OpenDialog.txtOpenFile":"ファイルを開くためにパスワードを入力してください。","Common.Views.OpenDialog.txtPassword":"パスワード","Common.Views.OpenDialog.txtPreview":"プレビュー","Common.Views.OpenDialog.txtProtected":"パスワードを入力してファイルを開くと、既存のパスワードがリセットされます。","Common.Views.OpenDialog.txtTitle":"%1オプションの選択","Common.Views.OpenDialog.txtTitleProtected":"保護されたファイル","Common.Views.PasswordDialog.txtDescription":"この文書を保護するためのパスワードを設定してください。","Common.Views.PasswordDialog.txtIncorrectPwd":"確認用パスワードと一致しません。","Common.Views.PasswordDialog.txtPassword":"パスワード","Common.Views.PasswordDialog.txtRepeat":"パスワードを再入力","Common.Views.PasswordDialog.txtTitle":"パスワードの設定","Common.Views.PasswordDialog.txtWarning":"ご注意:パスワードを紛失したり、忘れたりした場合は、復旧できません。安全な場所に保管してください。","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"開始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.Protection.hintAddPwd":"パスワードを使用して暗号化する","Common.Views.Protection.hintDelPwd":"パスワードを削除する","Common.Views.Protection.hintPwd":"パスワードを変更するか削除する","Common.Views.Protection.hintSignature":"デジタル署名かデジタル署名行を追加する","Common.Views.Protection.txtAddPwd":"パスワードを追加","Common.Views.Protection.txtChangePwd":"パスワードを変更する","Common.Views.Protection.txtDeletePwd":"パスワードを削除する","Common.Views.Protection.txtEncrypt":"暗号化する","Common.Views.Protection.txtInvisibleSignature":"デジタル署名を追加","Common.Views.Protection.txtSignature":"署名","Common.Views.Protection.txtSignatureLine":"署名欄の追加","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","Common.Views.RenameDialog.textName":"ファイル名","Common.Views.RenameDialog.txtInvalidName":"ファイル名に次の文字を使うことはできません。","Common.Views.ReviewChanges.strFast":"高速","Common.Views.ReviewChanges.strFastDesc":"リアルタイム共同編集モードです。すべての変更は自動的に保存されます。","Common.Views.ReviewChanges.strStrict":"厳格","Common.Views.ReviewChanges.strStrictDesc":"「保存」ボタンを使って、自分や他の人が行った変更を同期させる。","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.tipSharing":"文書のアクセス許可のの管理","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.txtHistory":"バージョン履歴","Common.Views.ReviewChanges.txtSharing":"共有","Common.Views.ReviewPopover.textAdd":"追加","Common.Views.ReviewPopover.textAddReply":"返信を追加","Common.Views.ReviewPopover.textCancel":"キャンセル","Common.Views.ReviewPopover.textClose":"閉じる","Common.Views.ReviewPopover.textComment":"コメント","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"ここにコメントを入力してください","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.ReviewPopover.textViewResolved":"コメントを再開する権限がありません","Common.Views.ReviewPopover.txtAccept":"承諾","Common.Views.ReviewPopover.txtDeleteTip":"削除","Common.Views.ReviewPopover.txtEditTip":"編集","Common.Views.ReviewPopover.txtReject":"拒否する","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字を区別する","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索","Common.Views.SearchPanel.textFindAndRedact":"検索&黒消し","Common.Views.SearchPanel.textFindAndReplace":"検索と置換","Common.Views.SearchPanel.textFindRedact":"検索&黒消し","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textMark":"黒消し対象としてマークする","Common.Views.SearchPanel.textMarkAll":"すべてをマークする","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textNoMatches":"一致するメッセージはありません。","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"置き換え","Common.Views.SearchPanel.textReplaceAll":"全ての置き換え","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.ShapeShadowDialog.txtAngle":"角度","Common.Views.ShapeShadowDialog.txtDistance":"距離","Common.Views.ShapeShadowDialog.txtSize":"サイズ","Common.Views.ShapeShadowDialog.txtTitle":"影の調整","Common.Views.ShapeShadowDialog.txtTransparency":"透過性","Common.Views.ShortcutsDialog.txtDescription":"説明","Common.Views.ShortcutsDialog.txtEmpty":"該当する項目が見つかりませんでした。検索条件を調整してください。","Common.Views.ShortcutsDialog.txtRestoreAll":"すべてをデフォルトに戻す","Common.Views.ShortcutsDialog.txtRestoreContinue":"続行してよろしいですか?","Common.Views.ShortcutsDialog.txtRestoreDescription":"すべてのショートカット設定がデフォルトに戻されます。","Common.Views.ShortcutsDialog.txtRestoreToDefault":"デフォルトに戻す","Common.Views.ShortcutsDialog.txtSearch":"検索","Common.Views.ShortcutsDialog.txtTitle":"キーボードショートカット","Common.Views.ShortcutsEditDialog.txtAction":"アクション","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"必要なショートカットを入力する","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"「%1」アクションが使用するショートカット","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"「%1」アクションが使用するショートカットは変更できません","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"「%1」アクションが使用するショートカット","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"「%1」アクションが使用するショートカットであり、変更することはできません。","Common.Views.ShortcutsEditDialog.txtNewShortcut":"新規ショートカット","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"続行してよろしいですか。","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"「%1」アクションのすべてのショートカットはデフォルトに復元されます。","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"デフォルトに戻す","Common.Views.ShortcutsEditDialog.txtTitle":"ショートカットを編集","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"必要なショートカットを入力する","Common.Views.UserNameDialog.textDontShow":"二度と表示しない","Common.Views.UserNameDialog.textLabel":"ラベル:","Common.Views.UserNameDialog.textLabelError":"ラベルは空白にできません。","PDFE.Controllers.InsTab.textAccent":"ダイアクリティカル・マーク","PDFE.Controllers.InsTab.textBracket":"かっこ","PDFE.Controllers.InsTab.textFraction":"分数","PDFE.Controllers.InsTab.textFunction":"関数","PDFE.Controllers.InsTab.textInsert":"挿入","PDFE.Controllers.InsTab.textIntegral":"積分","PDFE.Controllers.InsTab.textLargeOperator":"大型演算子","PDFE.Controllers.InsTab.textLimitAndLog":"極限と対数","PDFE.Controllers.InsTab.textMatrix":"行列","PDFE.Controllers.InsTab.textOperator":"演算子","PDFE.Controllers.InsTab.textRadical":"根基","PDFE.Controllers.InsTab.textScript":"スクリプト","PDFE.Controllers.InsTab.textShape":"図形","PDFE.Controllers.InsTab.textSymbols":"記号","PDFE.Controllers.InsTab.txtAccent_Accent":"アキュート","PDFE.Controllers.InsTab.txtAccent_ArrowD":"左右双方向矢印 (上)","PDFE.Controllers.InsTab.txtAccent_ArrowL":"左に矢印 (上)","PDFE.Controllers.InsTab.txtAccent_ArrowR":"右向き矢印 (上)","PDFE.Controllers.InsTab.txtAccent_Bar":"横棒グラフ","PDFE.Controllers.InsTab.txtAccent_BarBot":"アンダーライン","PDFE.Controllers.InsTab.txtAccent_BarTop":"オーバーライン","PDFE.Controllers.InsTab.txtAccent_BorderBox":"四角囲み数式 (プレースホルダ付き)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"四角囲み数式 (例)","PDFE.Controllers.InsTab.txtAccent_Check":"チェック","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"下かっこ","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"上かっこ","PDFE.Controllers.InsTab.txtAccent_Custom_1":"ベクトルA","PDFE.Controllers.InsTab.txtAccent_Custom_2":"上線付きABC","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XORと上線","PDFE.Controllers.InsTab.txtAccent_DDDot":"3重ドット","PDFE.Controllers.InsTab.txtAccent_DDot":"ダブルドット","PDFE.Controllers.InsTab.txtAccent_Dot":"点","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"二重上線","PDFE.Controllers.InsTab.txtAccent_Grave":"グレーブ・アクセント","PDFE.Controllers.InsTab.txtAccent_GroupBot":"グループ文字 (下)","PDFE.Controllers.InsTab.txtAccent_GroupTop":"グループ文字 (上)","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"左半矢印(上)","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"右向き半矢印 (上)","PDFE.Controllers.InsTab.txtAccent_Hat":"ハット","PDFE.Controllers.InsTab.txtAccent_Smile":"短音記号","PDFE.Controllers.InsTab.txtAccent_Tilde":"チルダ","PDFE.Controllers.InsTab.txtBasicShapes":"基本図形","PDFE.Controllers.InsTab.txtBracket_Angle":"括弧","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"括弧と区切り記号","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"括弧と2区切り記号","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"終わり山かっこ","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"始め山かっこ","PDFE.Controllers.InsTab.txtBracket_Curve":"中かっこ","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"中かっこと区切り記号","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"右中かっこ","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"左中かっこ","PDFE.Controllers.InsTab.txtBracket_Custom_1":"場合分け(条件2つ)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"場合分け (条件3つ)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"縦並びオブジェクト","PDFE.Controllers.InsTab.txtBracket_Custom_4":"縦並びオブジェクト (かっこ付き)","PDFE.Controllers.InsTab.txtBracket_Custom_5":"場合分けの例","PDFE.Controllers.InsTab.txtBracket_Custom_6":"二項係数","PDFE.Controllers.InsTab.txtBracket_Custom_7":"二項係数 (山かっこ付き)","PDFE.Controllers.InsTab.txtBracket_Line":"縦棒","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"縦棒 (右のみ)","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"縦棒 (左のみ)","PDFE.Controllers.InsTab.txtBracket_LineDouble":"二重縦棒","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"二重縦棒 (右のみ)","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"二重縦棒 (左のみ)","PDFE.Controllers.InsTab.txtBracket_LowLim":"終わりかっこ","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"床関数 (右記号)","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"床関数 (左記号)","PDFE.Controllers.InsTab.txtBracket_Round":"小かっこ","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"括弧と区切り線","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"右かっこ","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"左かっこ","PDFE.Controllers.InsTab.txtBracket_Square":"大かっこ","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"右の角括弧の間のプレースホルダー","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"反転した角括弧","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"右角かっこ","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"左角かっこ","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"左の角括弧の間のプレースホルダー","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"二重の角括弧","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"右ダブル角型かっこ","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"左ダブル角型かっこ","PDFE.Controllers.InsTab.txtBracket_UppLim":"天井大かっこ","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"天井関数 (右記号)","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"単一かっこ","PDFE.Controllers.InsTab.txtButtons":"ボタン","PDFE.Controllers.InsTab.txtCallouts":"吹き出し","PDFE.Controllers.InsTab.txtCharts":"グラフ","PDFE.Controllers.InsTab.txtFiguredArrows":"図形矢印","PDFE.Controllers.InsTab.txtFractionDiagonal":"分数 (斜め)","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dyの上にdx","PDFE.Controllers.InsTab.txtFractionDifferential_2":"大文字デルタ y/大文字デルタ x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"部分的なxに対する部分的なy","PDFE.Controllers.InsTab.txtFractionDifferential_4":"デルタ y/デルタ x","PDFE.Controllers.InsTab.txtFractionHorizontal":"分数 (横)","PDFE.Controllers.InsTab.txtFractionPi_2":"円周率を2で割る","PDFE.Controllers.InsTab.txtFractionSmall":"分数 (小)","PDFE.Controllers.InsTab.txtFractionVertical":"分数 (縦)","PDFE.Controllers.InsTab.txtFunction_1_Cos":"逆余弦関数","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"逆双曲線余弦","PDFE.Controllers.InsTab.txtFunction_1_Cot":"逆余接関数","PDFE.Controllers.InsTab.txtFunction_1_Coth":"双曲線逆余接","PDFE.Controllers.InsTab.txtFunction_1_Csc":"逆余割関数","PDFE.Controllers.InsTab.txtFunction_1_Csch":"逆双曲線余割関数","PDFE.Controllers.InsTab.txtFunction_1_Sec":"逆正割関数","PDFE.Controllers.InsTab.txtFunction_1_Sech":"逆双曲線正割","PDFE.Controllers.InsTab.txtFunction_1_Sin":"逆正弦関数","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"双曲線逆サイン","PDFE.Controllers.InsTab.txtFunction_1_Tan":"逆正接関数","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"双曲線逆正接","PDFE.Controllers.InsTab.txtFunction_Cos":"余弦関数","PDFE.Controllers.InsTab.txtFunction_Cosh":"双曲線余弦関数","PDFE.Controllers.InsTab.txtFunction_Cot":"余接関数","PDFE.Controllers.InsTab.txtFunction_Coth":"双曲線余接関数","PDFE.Controllers.InsTab.txtFunction_Csc":"余割関数\t","PDFE.Controllers.InsTab.txtFunction_Csch":"逆双曲線余割関数","PDFE.Controllers.InsTab.txtFunction_Custom_1":"Sin θ","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Cos 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"正接数式","PDFE.Controllers.InsTab.txtFunction_Sec":"正割関数","PDFE.Controllers.InsTab.txtFunction_Sech":"双曲線正割","PDFE.Controllers.InsTab.txtFunction_Sin":"正弦関数","PDFE.Controllers.InsTab.txtFunction_Sinh":"双曲線正弦","PDFE.Controllers.InsTab.txtFunction_Tan":"逆正接関数","PDFE.Controllers.InsTab.txtFunction_Tanh":"双曲線正接","PDFE.Controllers.InsTab.txtIntegral":"積分","PDFE.Controllers.InsTab.txtIntegral_dtheta":"微分 dθ","PDFE.Controllers.InsTab.txtIntegral_dx":"微分x","PDFE.Controllers.InsTab.txtIntegral_dy":"微分 y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralDouble":"二重積分","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"二重積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"二重積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralOriented":"線積分","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"線積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"面積分","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"面積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"面積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"線積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"体積積分","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"体積積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"体積積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralSubSup":"積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralTriple":"3 重積分","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"三重積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"三重積分 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"論理積","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"論理積 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"論理積 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"論理積 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"論理積 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"余積","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"余積(最低限あり)","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"余積(制限あり)","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"余積(添え字が下限あり)","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"余積(添え字/上付き文字制限あり)","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"n から k を選ぶ場合の k の総和","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"総和 (i = 0 から n まで)","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"添え字 2 個を使う総和の例","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"積の例","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"和集合の例","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"論理和","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"論理和 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"論理和 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"論理和 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"論理和 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"共通集合","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"積集合 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"積集合 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"積集合 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"積集合 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"乗積","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"積 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"積 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"積 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"積 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"合計","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"総和 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"総和 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"総和 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"総和 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Union":"和集合","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"和集合 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"和集合 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"和集合 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"和集合 (下付き/上付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"極限の例","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"最大値の例","PDFE.Controllers.InsTab.txtLimitLog_Lim":"極限","PDFE.Controllers.InsTab.txtLimitLog_Ln":"自然対数","PDFE.Controllers.InsTab.txtLimitLog_Log":"対数","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"対数","PDFE.Controllers.InsTab.txtLimitLog_Max":"最大","PDFE.Controllers.InsTab.txtLimitLog_Min":"最小","PDFE.Controllers.InsTab.txtLines":"線","PDFE.Controllers.InsTab.txtMath":"数学","PDFE.Controllers.InsTab.txtMatrix_1_2":"1x2空行列","PDFE.Controllers.InsTab.txtMatrix_1_3":"1x3空行列","PDFE.Controllers.InsTab.txtMatrix_2_1":"2x1 空行列","PDFE.Controllers.InsTab.txtMatrix_2_2":"2x2 空行列","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"空の 2x2 行列 (二重縦棒付き)","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"空の 2x2 行列式","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"空の 2x2 行列 (かっこ付き)","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"空の 2x2 行列 (大かっこ付き)","PDFE.Controllers.InsTab.txtMatrix_2_3":"2x3 空行列","PDFE.Controllers.InsTab.txtMatrix_3_1":"3x1 空行列","PDFE.Controllers.InsTab.txtMatrix_3_2":"3x2 空行列","PDFE.Controllers.InsTab.txtMatrix_3_3":"3x3 空行列","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"基準線点","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"ミッドラインドット","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"斜めドット","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"縦向きドット","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"疎行列 (かっこ付き)","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"疎行列 (大かっこ付き)","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"2x2 単位行列","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"空白の対角セルを持つ 2x2 の単位行列","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"3x3 単位行列","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"3x3 単位行列 (対角線上以外のセルは空白)","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"左右双方向矢印 (下)","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"左右双方向矢印 (上)","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"左に矢印 (下)","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"左に矢印 (上)","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"右向き矢印 (下)","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"右向き矢印 (上)","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"コロン付き等号","PDFE.Controllers.InsTab.txtOperator_Custom_1":"導出","PDFE.Controllers.InsTab.txtOperator_Custom_2":"デルタ収量","PDFE.Controllers.InsTab.txtOperator_Definition":"定義により等しい","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"デルタは等しい","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"左右双方向矢印 (下)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"左右双方向矢印 (上)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"左に矢印 (下)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"左に矢印 (上)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"右向き矢印 (下)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"右向き矢印 (上)","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"等号等号","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"マイナス付き等号","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"プラス付き等号","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"測度","PDFE.Controllers.InsTab.txtRadicalCustom_1":"二次方程式の解の公式の右辺","PDFE.Controllers.InsTab.txtRadicalCustom_2":"a の 2 乗と b の 2 乗の和の平方根","PDFE.Controllers.InsTab.txtRadicalRoot_2":"次数付き平方根","PDFE.Controllers.InsTab.txtRadicalRoot_3":"立方根","PDFE.Controllers.InsTab.txtRadicalRoot_n":"次数付きべき乗根","PDFE.Controllers.InsTab.txtRadicalSqrt":"平方根","PDFE.Controllers.InsTab.txtRectangles":"四角形","PDFE.Controllers.InsTab.txtScriptCustom_1":"x 下付き文字 y の 2 乗","PDFE.Controllers.InsTab.txtScriptCustom_2":"eをマイナスiにωt","PDFE.Controllers.InsTab.txtScriptCustom_3":"x の 2 乗","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y 左上付き文字 n 左下付き文字 1","PDFE.Controllers.InsTab.txtScriptSub":"下付き文字","PDFE.Controllers.InsTab.txtScriptSubSup":"下付き文字 - 上付き文字","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"左下付き文字 - 上付き文字","PDFE.Controllers.InsTab.txtScriptSup":"上付き文字","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"線吹き出し1(枠付きと強調線)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"線吹き出し2(枠付きと強調線)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"線吹き出し3(枠付きと強調線)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"線吹き出し1(強調線)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"線吹き出し2(強調線)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"線吹き出し3(強調線)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"「戻る」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"「始めに」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"「空白」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"「文書」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"「最後に」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"「次へ」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"「ヘルプ」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"「ホーム」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"「情報」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"「動画」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"「戻る」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"「音」ボタン","PDFE.Controllers.InsTab.txtShape_arc":"円弧","PDFE.Controllers.InsTab.txtShape_bentArrow":"曲げ矢印","PDFE.Controllers.InsTab.txtShape_bentConnector5":"カギ線コネクター","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"カギ線矢印コネクター","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"カギ線の二重矢印コネクター","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"曲線の矢印(上)","PDFE.Controllers.InsTab.txtShape_bevel":"斜角","PDFE.Controllers.InsTab.txtShape_blockArc":"アーチ","PDFE.Controllers.InsTab.txtShape_borderCallout1":"線吹き出し1 ","PDFE.Controllers.InsTab.txtShape_borderCallout2":"線吹き出し2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"線吹き出し3","PDFE.Controllers.InsTab.txtShape_bracePair":"中かっこ","PDFE.Controllers.InsTab.txtShape_callout1":"線吹き出し1(枠付き無し)","PDFE.Controllers.InsTab.txtShape_callout2":"線吹き出し2(枠付き無し)","PDFE.Controllers.InsTab.txtShape_callout3":"線吹き出し3(枠付き無し)","PDFE.Controllers.InsTab.txtShape_can":"円柱","PDFE.Controllers.InsTab.txtShape_chevron":"シェブロン","PDFE.Controllers.InsTab.txtShape_chord":"コード","PDFE.Controllers.InsTab.txtShape_circularArrow":"円弧の矢印","PDFE.Controllers.InsTab.txtShape_cloud":"クラウド","PDFE.Controllers.InsTab.txtShape_cloudCallout":"雲形吹き出し","PDFE.Controllers.InsTab.txtShape_corner":"角","PDFE.Controllers.InsTab.txtShape_cube":"立方体","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"曲線コネクタ","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"曲線矢印コネクタ","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"曲線の二重矢印コネクタ","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"曲線の下向き矢印","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"曲線の左矢印","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"曲線の右矢印","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"曲線の上矢印","PDFE.Controllers.InsTab.txtShape_decagon":"十角形","PDFE.Controllers.InsTab.txtShape_diagStripe":"斜め縞","PDFE.Controllers.InsTab.txtShape_diamond":"ひし型","PDFE.Controllers.InsTab.txtShape_dodecagon":"12角形","PDFE.Controllers.InsTab.txtShape_donut":"ドーナツグラフ","PDFE.Controllers.InsTab.txtShape_doubleWave":"二重波","PDFE.Controllers.InsTab.txtShape_downArrow":"下矢印","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"下矢印引き出し","PDFE.Controllers.InsTab.txtShape_ellipse":"楕円","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"曲線下向けのリボン","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"曲線上向けのリボン","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"フローチャート:代替処理","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"フローチャート:照合","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"フローチャート:結合子","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"フローチャート:判断","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"フローチャート:遅延","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"フローチャート:表示","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"フローチャート:文書","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"フローチャート:抜き出し","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"フローチャート:データ","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"フローチャート:内部ストレージ","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"フローチャート:磁気ディスク","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"フローチャート:直接アクセスストレージ","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"フローチャート:順次アクセス記憶","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"フローチャート:手動入力","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"フローチャート:手作業","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"フローチャート:統合","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"フローチャート:複数文書","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"フローチャート:他ページ結合子","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"フローチャート:保存されたデータ","PDFE.Controllers.InsTab.txtShape_flowChartOr":"フローチャート:論理和","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"フローチャート:事前定義されたプロセス","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"フローチャート:準備","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"フローチャート:プロセス","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"フローチャート:カード","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"フローチャート:せん孔テープ","PDFE.Controllers.InsTab.txtShape_flowChartSort":"フローチャート:並べ替え","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"フローチャート:和接合","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"フローチャート:ターミネーター","PDFE.Controllers.InsTab.txtShape_foldedCorner":"折り曲げコーナー","PDFE.Controllers.InsTab.txtShape_frame":"フレーム","PDFE.Controllers.InsTab.txtShape_halfFrame":"半フレーム","PDFE.Controllers.InsTab.txtShape_heart":"ハート","PDFE.Controllers.InsTab.txtShape_heptagon":"七角形","PDFE.Controllers.InsTab.txtShape_hexagon":"六角形","PDFE.Controllers.InsTab.txtShape_homePlate":"五角形","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"水平スクロール","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"爆発 1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"爆発 2","PDFE.Controllers.InsTab.txtShape_leftArrow":"左矢印","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"左矢印吹き出し","PDFE.Controllers.InsTab.txtShape_leftBrace":"左中かっこ","PDFE.Controllers.InsTab.txtShape_leftBracket":"左かっこ","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"左右矢印","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"左右矢印吹き出し","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"三方向矢印(左・右・上)","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"左上矢印","PDFE.Controllers.InsTab.txtShape_lightningBolt":"稲妻","PDFE.Controllers.InsTab.txtShape_line":"線","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"矢印","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"二重矢印","PDFE.Controllers.InsTab.txtShape_mathDivide":"分割","PDFE.Controllers.InsTab.txtShape_mathEqual":"等しい","PDFE.Controllers.InsTab.txtShape_mathMinus":"マイナス","PDFE.Controllers.InsTab.txtShape_mathMultiply":"乗算","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"等しくない","PDFE.Controllers.InsTab.txtShape_mathPlus":"プラス","PDFE.Controllers.InsTab.txtShape_moon":"月形","PDFE.Controllers.InsTab.txtShape_noSmoking":"「禁止」マーク","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"切り欠き右矢印","PDFE.Controllers.InsTab.txtShape_octagon":"八角形","PDFE.Controllers.InsTab.txtShape_parallelogram":"平行四辺形","PDFE.Controllers.InsTab.txtShape_pentagon":"五角形","PDFE.Controllers.InsTab.txtShape_pie":"円グラフ","PDFE.Controllers.InsTab.txtShape_plaque":"署名する","PDFE.Controllers.InsTab.txtShape_plus":"プラス","PDFE.Controllers.InsTab.txtShape_polyline1":"走り書き","PDFE.Controllers.InsTab.txtShape_polyline2":"フリーフォーム","PDFE.Controllers.InsTab.txtShape_quadArrow":"四方向矢印","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"四方向矢印の吹き出し","PDFE.Controllers.InsTab.txtShape_rect":"矩形","PDFE.Controllers.InsTab.txtShape_ribbon":"下リボン","PDFE.Controllers.InsTab.txtShape_ribbon2":"上リボン","PDFE.Controllers.InsTab.txtShape_rightArrow":"右矢印","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"右矢印吹き出し","PDFE.Controllers.InsTab.txtShape_rightBrace":"右中かっこ","PDFE.Controllers.InsTab.txtShape_rightBracket":"右かっこ","PDFE.Controllers.InsTab.txtShape_round1Rect":"1つの角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"対角する 2 つの角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_round2SameRect":"片側の 2 つの角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_roundRect":"角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_rtTriangle":"直角三角形","PDFE.Controllers.InsTab.txtShape_smileyFace":"スマイル","PDFE.Controllers.InsTab.txtShape_snip1Rect":"1つの角を切り取った四角形","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"対角する2つの角を切り取った四角形","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"片側の2つの角を切り取った四角形","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"1つの角を切り取り1つの角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_spline":"曲線","PDFE.Controllers.InsTab.txtShape_star10":"星10","PDFE.Controllers.InsTab.txtShape_star12":"星12","PDFE.Controllers.InsTab.txtShape_star16":"星16","PDFE.Controllers.InsTab.txtShape_star24":"星24","PDFE.Controllers.InsTab.txtShape_star32":"星32","PDFE.Controllers.InsTab.txtShape_star4":"星4","PDFE.Controllers.InsTab.txtShape_star5":"星5","PDFE.Controllers.InsTab.txtShape_star6":"星6","PDFE.Controllers.InsTab.txtShape_star7":"星7","PDFE.Controllers.InsTab.txtShape_star8":"星8","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"ストライプの右矢印","PDFE.Controllers.InsTab.txtShape_sun":"太陽形","PDFE.Controllers.InsTab.txtShape_teardrop":"滴","PDFE.Controllers.InsTab.txtShape_textRect":"テキストボックス","PDFE.Controllers.InsTab.txtShape_trapezoid":"台形","PDFE.Controllers.InsTab.txtShape_triangle":"三角","PDFE.Controllers.InsTab.txtShape_upArrow":"上矢印","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"上矢印吹き出し","PDFE.Controllers.InsTab.txtShape_upDownArrow":"上下矢印","PDFE.Controllers.InsTab.txtShape_uturnArrow":"U形矢印","PDFE.Controllers.InsTab.txtShape_verticalScroll":"縦スクロール","PDFE.Controllers.InsTab.txtShape_wave":"波","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"円形吹き出し","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"矩形の吹き出し","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"角丸長方形の吹き出し","PDFE.Controllers.InsTab.txtStarsRibbons":"スター&リボン","PDFE.Controllers.InsTab.txtSymbol_about":"約","PDFE.Controllers.InsTab.txtSymbol_additional":"補集合","PDFE.Controllers.InsTab.txtSymbol_aleph":"アレフ","PDFE.Controllers.InsTab.txtSymbol_alpha":"アルファ","PDFE.Controllers.InsTab.txtSymbol_approx":"ほぼ等しい","PDFE.Controllers.InsTab.txtSymbol_ast":"アスタリスク","PDFE.Controllers.InsTab.txtSymbol_beta":"ベータ","PDFE.Controllers.InsTab.txtSymbol_beth":"ベート","PDFE.Controllers.InsTab.txtSymbol_bullet":"箇条書きの演算子","PDFE.Controllers.InsTab.txtSymbol_cap":"共通集合","PDFE.Controllers.InsTab.txtSymbol_cbrt":"立方根","PDFE.Controllers.InsTab.txtSymbol_cdots":"水平中央の省略記号","PDFE.Controllers.InsTab.txtSymbol_celsius":"摂氏","PDFE.Controllers.InsTab.txtSymbol_chi":"カイ","PDFE.Controllers.InsTab.txtSymbol_cong":"ほぼ等しい","PDFE.Controllers.InsTab.txtSymbol_cup":"和集合","PDFE.Controllers.InsTab.txtSymbol_ddots":"右斜め下の楕円","PDFE.Controllers.InsTab.txtSymbol_degree":"度","PDFE.Controllers.InsTab.txtSymbol_delta":"デルタ","PDFE.Controllers.InsTab.txtSymbol_div":"「除算」記号","PDFE.Controllers.InsTab.txtSymbol_downarrow":"下矢印","PDFE.Controllers.InsTab.txtSymbol_emptyset":"空集合","PDFE.Controllers.InsTab.txtSymbol_epsilon":"イプシロン","PDFE.Controllers.InsTab.txtSymbol_equals":"等しい","PDFE.Controllers.InsTab.txtSymbol_equiv":"恒等","PDFE.Controllers.InsTab.txtSymbol_eta":"エータ","PDFE.Controllers.InsTab.txtSymbol_exists":"存在する\t","PDFE.Controllers.InsTab.txtSymbol_factorial":"階乗","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"華氏","PDFE.Controllers.InsTab.txtSymbol_forall":"全てに","PDFE.Controllers.InsTab.txtSymbol_gamma":"ガンマ","PDFE.Controllers.InsTab.txtSymbol_geq":"次の値より大きいか等しい","PDFE.Controllers.InsTab.txtSymbol_gg":"次の値よりはるかに大きい","PDFE.Controllers.InsTab.txtSymbol_greater":"次の値より大きい","PDFE.Controllers.InsTab.txtSymbol_in":"属する","PDFE.Controllers.InsTab.txtSymbol_inc":"増分","PDFE.Controllers.InsTab.txtSymbol_infinity":"無限","PDFE.Controllers.InsTab.txtSymbol_iota":"イオタ","PDFE.Controllers.InsTab.txtSymbol_kappa":"カッパ","PDFE.Controllers.InsTab.txtSymbol_lambda":"ラムダ","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"左矢印","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"左右矢印","PDFE.Controllers.InsTab.txtSymbol_leq":"次の値より小さいか等しい","PDFE.Controllers.InsTab.txtSymbol_less":"次の値より小さい","PDFE.Controllers.InsTab.txtSymbol_ll":"より小さい","PDFE.Controllers.InsTab.txtSymbol_minus":"マイナス","PDFE.Controllers.InsTab.txtSymbol_mp":"マイナスプラス\t","PDFE.Controllers.InsTab.txtSymbol_mu":"ミュー","PDFE.Controllers.InsTab.txtSymbol_nabla":"ナブラ","PDFE.Controllers.InsTab.txtSymbol_neq":"等しくない","PDFE.Controllers.InsTab.txtSymbol_ni":"含む","PDFE.Controllers.InsTab.txtSymbol_not":"「否定」記号","PDFE.Controllers.InsTab.txtSymbol_notexists":"存在しない","PDFE.Controllers.InsTab.txtSymbol_nu":"ニュー","PDFE.Controllers.InsTab.txtSymbol_o":"オミクロン","PDFE.Controllers.InsTab.txtSymbol_omega":"オメガ","PDFE.Controllers.InsTab.txtSymbol_partial":"偏微分方程式","PDFE.Controllers.InsTab.txtSymbol_percent":"パーセンテージ","PDFE.Controllers.InsTab.txtSymbol_phi":"ファイ","PDFE.Controllers.InsTab.txtSymbol_pi":"パイ","PDFE.Controllers.InsTab.txtSymbol_plus":"プラス","PDFE.Controllers.InsTab.txtSymbol_pm":"マイナスプラス","PDFE.Controllers.InsTab.txtSymbol_propto":"比例","PDFE.Controllers.InsTab.txtSymbol_psi":"プサイ","PDFE.Controllers.InsTab.txtSymbol_qdrt":"四乗根","PDFE.Controllers.InsTab.txtSymbol_qed":"証明終了","PDFE.Controllers.InsTab.txtSymbol_rddots":"斜め(右上)の省略記号","PDFE.Controllers.InsTab.txtSymbol_rho":"ロー","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"右矢印","PDFE.Controllers.InsTab.txtSymbol_sigma":"シグマ","PDFE.Controllers.InsTab.txtSymbol_sqrt":"根号","PDFE.Controllers.InsTab.txtSymbol_tau":"タウ","PDFE.Controllers.InsTab.txtSymbol_therefore":"従って","PDFE.Controllers.InsTab.txtSymbol_theta":"シータ","PDFE.Controllers.InsTab.txtSymbol_times":"「乗算」記号","PDFE.Controllers.InsTab.txtSymbol_uparrow":"上矢印","PDFE.Controllers.InsTab.txtSymbol_upsilon":"ウプシロン","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"イプシロン (別形)","PDFE.Controllers.InsTab.txtSymbol_varphi":"ファイ (別形)","PDFE.Controllers.InsTab.txtSymbol_varpi":"パイ 別形","PDFE.Controllers.InsTab.txtSymbol_varrho":"ロー (別形)","PDFE.Controllers.InsTab.txtSymbol_varsigma":"シグマ (別形)","PDFE.Controllers.InsTab.txtSymbol_vartheta":"シータ (別形)","PDFE.Controllers.InsTab.txtSymbol_vdots":"垂直線の省略記号","PDFE.Controllers.InsTab.txtSymbol_xsi":"グザイ","PDFE.Controllers.InsTab.txtSymbol_zeta":"ゼータ","PDFE.Controllers.LeftMenu.leavePageText":"変更を保存せずにドキュメントを閉じると変更が失われます。
「キャンセル」をクリックし、「保存」をクリックして保存してください。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","PDFE.Controllers.LeftMenu.newDocumentTitle":"無名のドキュメント","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":" 警告","PDFE.Controllers.LeftMenu.requestEditRightsText":"アクセス権の編集の要求中...","PDFE.Controllers.LeftMenu.textLoadHistory":"バージョン履歴の読み込み中...","PDFE.Controllers.LeftMenu.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","PDFE.Controllers.LeftMenu.textSelectPath":"ファイルのコピーを保存するために新しいタイトルを入力してください","PDFE.Controllers.LeftMenu.txtCompatible":"ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。","PDFE.Controllers.LeftMenu.txtUntitled":"タイトルなし","PDFE.Controllers.LeftMenu.warnDownloadAs":"この形式で保存する続けば、テクスト除いて全てが失います。
続けてもよろしいですか?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"あなたの{0}は編集可能な形式に変換されます。これには時間がかかる場合があります。変換後のドキュメントは、テキストを編集できるように最適化されるため、特に元のファイルに多くのグラフィックが含まれている場合、元の {0} と全く同じようには見えないかもしれません。","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"この形式で保存を続けると、一部の書式が失われる可能性があります。
本当に続行しますか?","PDFE.Controllers.Main.applyChangesTextText":"変更の読み込み中...","PDFE.Controllers.Main.applyChangesTitleText":"変更の読み込み中","PDFE.Controllers.Main.confirmMaxChangesSize":"アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。","PDFE.Controllers.Main.convertationTimeoutText":"変換のタイムアウトを超過しました。","PDFE.Controllers.Main.criticalErrorExtText":"OKボタンを押すと文書リストに戻ります","PDFE.Controllers.Main.criticalErrorExtTextClose":"[OK]を押してエディターを閉じます。","PDFE.Controllers.Main.criticalErrorTitle":"エラー","PDFE.Controllers.Main.downloadErrorText":"ダウンロードに失敗しました。","PDFE.Controllers.Main.downloadMergeText":"ダウンロード中...","PDFE.Controllers.Main.downloadMergeTitle":"ダウンロード中","PDFE.Controllers.Main.downloadTextText":"ドキュメントのダウンロード中...","PDFE.Controllers.Main.downloadTitleText":"ドキュメントのダウンロード中","PDFE.Controllers.Main.errorAccessDeny":"利用権限がない操作をしようとしました。
Documentサーバー管理者に連絡してください。","PDFE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません","PDFE.Controllers.Main.errorCannotPasteImg":"この画像をクリップボードから貼り付けることはできませんが、お使いのデバイスに保存して、 \nそこから挿入するか、テキストを含まない画像をコピーしてドキュメントに貼り付けることができます。","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。現在、文書を編集することができません。","PDFE.Controllers.Main.errorComboSeries":"組み合わせチャートを作成するには、最低2つのデータを選択してください。","PDFE.Controllers.Main.errorConnectToServer":"ドキュメントを保存できませんでした。接続設定を確認するか、管理者に連絡してください。
「OK」ボタンをクリックすると、ドキュメントのダウンロードを促すプロンプトが表示されます。","PDFE.Controllers.Main.errorCopyDisabled":"セキュリティ上の理由により、この文書の内容はコピーできません。","PDFE.Controllers.Main.errorDatabaseConnection":"外部エラーです。
データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。","PDFE.Controllers.Main.errorDataEncrypted":"暗号化された変更を受信しましたが、復号化できません。","PDFE.Controllers.Main.errorDataRange":"データの範囲は正しくありません。","PDFE.Controllers.Main.errorDefaultMessage":"エラーコード:%1","PDFE.Controllers.Main.errorDirectUrl":"ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。","PDFE.Controllers.Main.errorEditingDownloadas":"文書の処理中にエラーが発生しました。
コンピューターにファイルのバックアップコピーを保存するために、「名前を付けてダウンロード」をご使用ください。","PDFE.Controllers.Main.errorEditingSaveas":"文書の処理中にエラーが発生しました。
コンピューターにファイルのバックアップを保存するために、「名前を付けてダウンロード」をご使用ください。","PDFE.Controllers.Main.errorEmailClient":"メールクライアントが見つかりませんでした。","PDFE.Controllers.Main.errorFilePassProtect":"ドキュメントがパスワードで保護されているため開くことができません","PDFE.Controllers.Main.errorFileSizeExceed":"ファイルサイズがサーバーで設定された制限を超過しています。
ドキュメントサーバー管理者に詳細をお問い合わせください。","PDFE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。コンピューターにファイルを保存するために、「名前を付けてダウンロード」を使用し、または後で再お試しください。","PDFE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","PDFE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","PDFE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","PDFE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","PDFE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","PDFE.Controllers.Main.errorKeyEncrypt":"不明なキーの記述子","PDFE.Controllers.Main.errorKeyExpire":"キー記述子の有効期限が切れました","PDFE.Controllers.Main.errorLoadingFont":"フォントがダウンロードしませんでした。
文書のサーバのアドミ二ストレータを連絡してください。","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"入力されたパスワードが間違っています。
CapsLock キーがオフになっていること、大文字と小文字が正しく使われていることを確認してください。 ","PDFE.Controllers.Main.errorPDFFormsLocked":"ロックされたフォームに変更が加わるため、この操作は実行できません。","PDFE.Controllers.Main.errorSaveWatermark":"このファイルには、別のドメインにリンクされた透かし画像が含まれています。
PDFで見えるようにするには、文書と同じドメインからリンクされるように透かし画像を更新するか、コンピュータからアップロードしてください。","PDFE.Controllers.Main.errorServerVersion":"エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。","PDFE.Controllers.Main.errorSessionAbsolute":"ドキュメント編集セッションが終了しました。 ページを再ロードしてください。","PDFE.Controllers.Main.errorSessionIdle":"このドキュメントはかなり長い間編集されていませんでした。このページをリロードしてください。","PDFE.Controllers.Main.errorSessionToken":"サーバーとの接続が中断されました。このページをリロードしてください。","PDFE.Controllers.Main.errorSetPassword":"パスワードを設定できませんでした。","PDFE.Controllers.Main.errorStockChart":"行の順序は正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","PDFE.Controllers.Main.errorTextFormWrongFormat":"入力された値がフィールドのフォーマットと一致しません。","PDFE.Controllers.Main.errorToken":"ドキュメントセキュリティトークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。","PDFE.Controllers.Main.errorTokenExpire":"ドキュメントセキュリティトークンの有効期限が切れています。
ドキュメントサーバーの管理者に連絡してください。","PDFE.Controllers.Main.errorUpdateVersion":"ファイルが変更されました。ページがリロードされます。","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"インターネット接続が復旧し、ファイルのバージョンが更新されました。
作業を継続する前に、ファイルをダウンロードするか、内容をコピーして、変更が消えてしまわないように確認してから、ページを再びお読み込みください。","PDFE.Controllers.Main.errorUserDrop":"現在、このファイルにはアクセスできません。","PDFE.Controllers.Main.errorUsersExceed":"料金プランによってユーザ数を超過しました。","PDFE.Controllers.Main.errorViewerDisconnect":"接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。","PDFE.Controllers.Main.leavePageText":"この文書の保存されていない変更があります。保存するために「このページにとどまる」をクリックし、その後「保存」をクリックしてください。「このページを離れる」をクリックすると、未保存の変更がすべて破棄されます。","PDFE.Controllers.Main.leavePageTextOnClose":"変更を保存せずにドキュメントを閉じると変更が失われます。
「キャンセル」をクリックし、「保存」をクリックして保存してください。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","PDFE.Controllers.Main.loadFontsTextText":"データを読み込んでいます…","PDFE.Controllers.Main.loadFontsTitleText":"データの読み込み中","PDFE.Controllers.Main.loadFontTextText":"データを読み込んでいます…","PDFE.Controllers.Main.loadFontTitleText":"データの読み込み中","PDFE.Controllers.Main.loadImagesTextText":"画像を読み込んでいます…","PDFE.Controllers.Main.loadImagesTitleText":"画像を読み込んでいます","PDFE.Controllers.Main.loadImageTextText":"画像を読み込んでいます…","PDFE.Controllers.Main.loadImageTitleText":"画像を読み込んでいます","PDFE.Controllers.Main.loadingDocumentTextText":"文書の読み込み中...","PDFE.Controllers.Main.loadingDocumentTitleText":"文書の読み込み中","PDFE.Controllers.Main.notcriticalErrorTitle":" 警告","PDFE.Controllers.Main.openErrorText":"ファイルの読み込み中にエラーが発生しました。","PDFE.Controllers.Main.openTextText":"ドキュメントを開いています...","PDFE.Controllers.Main.openTitleText":"ドキュメントを開いています","PDFE.Controllers.Main.printTextText":"文書の印刷中...","PDFE.Controllers.Main.printTitleText":"文書の印刷中","PDFE.Controllers.Main.reloadButtonText":"ページの再読み込み","PDFE.Controllers.Main.requestEditFailedMessageText":"この文書は他のユーザによって編集しています。後でもう一度試してみてください。","PDFE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","PDFE.Controllers.Main.saveErrorText":"ファイルの保存中にエラーが発生しました。","PDFE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","PDFE.Controllers.Main.saveTextText":"ドキュメントの保存中...","PDFE.Controllers.Main.saveTitleText":"ドキュメントの保存中","PDFE.Controllers.Main.scriptLoadError":"接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。","PDFE.Controllers.Main.splitDividerErrorText":"行数は%1の除数になければなりません。","PDFE.Controllers.Main.splitMaxColsErrorText":"列の数は%1より小さくなければなりません。","PDFE.Controllers.Main.splitMaxRowsErrorText":"行数は%1より小さくなければなりません。","PDFE.Controllers.Main.textAnonymous":"匿名","PDFE.Controllers.Main.textAnyone":"誰でも","PDFE.Controllers.Main.textBuyNow":"ウェブサイトにアクセス","PDFE.Controllers.Main.textChangesSaved":"全ての変更点が保存されました","PDFE.Controllers.Main.textClose":"閉じる","PDFE.Controllers.Main.textCloseTip":"ヒントを閉じるためにクリックください","PDFE.Controllers.Main.textConnectionLost":"接続中です。接続設定をご確認ください。","PDFE.Controllers.Main.textContactUs":"営業部に連絡する","PDFE.Controllers.Main.textContinue":"続ける","PDFE.Controllers.Main.textCustomLoader":"ライセンス条項により、ローダーを変更する権利がないことにご注意ください。
見積もりについては、弊社営業部門にお問い合わせください。","PDFE.Controllers.Main.textDisconnect":"接続が切断されました","PDFE.Controllers.Main.textGuest":"ゲスト","PDFE.Controllers.Main.textLearnMore":"更に詳しく","PDFE.Controllers.Main.textLoadingDocument":"文書の読み込み中","PDFE.Controllers.Main.textLongName":"128文字未満の名前を入力してください。","PDFE.Controllers.Main.textNoLicenseTitle":"ライセンス制限に達しました","PDFE.Controllers.Main.textPaidFeature":"有料機能","PDFE.Controllers.Main.textReconnect":"接続が回復しました","PDFE.Controllers.Main.textRemember":"すべてのファイルに選択を保存する","PDFE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","PDFE.Controllers.Main.textRenameLabel":"コラボレーションに使用する名前を入力して下さい。","PDFE.Controllers.Main.textShape":"図形","PDFE.Controllers.Main.textStrict":"厳密モード","PDFE.Controllers.Main.textText":"テキスト","PDFE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","PDFE.Controllers.Main.textTryUndoRedo":"即時反映共同編集モードでは元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳密モード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。","PDFE.Controllers.Main.textTryUndoRedoWarn":"高速で共同な編集モードでは、元に戻す/やり直し機能が無効になります。","PDFE.Controllers.Main.textUndo":"元に戻す","PDFE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","PDFE.Controllers.Main.textUpdating":"アップデート中","PDFE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","PDFE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","PDFE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","PDFE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","PDFE.Controllers.Main.titleReadOnly":"閲覧専用モード","PDFE.Controllers.Main.titleServerVersion":"エディターが更新された","PDFE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","PDFE.Controllers.Main.txtArt":"テキストを入力…","PDFE.Controllers.Main.txtButton":"ボタン","PDFE.Controllers.Main.txtCheckbox":"チェックボックス","PDFE.Controllers.Main.txtChoose":"アイテムを選択してください","PDFE.Controllers.Main.txtClickToLoad":"クリックして画像を読み込む","PDFE.Controllers.Main.txtDiagramTitle":"グラフのタイトル","PDFE.Controllers.Main.txtDocUnlockDescription":"パスワードを入力すると、文書の保護が解除されます","PDFE.Controllers.Main.txtDropdown":"ドロップダウン","PDFE.Controllers.Main.txtEditingMode":"編集モードを設定する","PDFE.Controllers.Main.txtEnterDate":"日付を入力してください","PDFE.Controllers.Main.txtErrorLoadHistory":"履歴の読み込みに失敗しました","PDFE.Controllers.Main.txtGroup":"グループ","PDFE.Controllers.Main.txtInvalidGreater":"フィールド \"{0}\" の有効値: {1} 以上でなければなりません。","PDFE.Controllers.Main.txtInvalidGreaterLess":"フィールド \"{0}\" の有効値: {1} 以上 {2} 以下でなければなりません。","PDFE.Controllers.Main.txtInvalidLess":"フィールド \"{0}\" の有効値:{1} 以下でなければなりません。","PDFE.Controllers.Main.txtInvalidPdfFormat":"入力された値がフィールド\"{0}\"のフォーマットと一致しません。","PDFE.Controllers.Main.txtInvalidValue":"フィールド \"{0}\" の値が無効です","PDFE.Controllers.Main.txtListbox":"リストボックス","PDFE.Controllers.Main.txtNeedSynchronize":"アップデートがあります","PDFE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"このドキュメントは{0}に接続しようとしています。このサイトを信頼する場合は「OK」を押してください。","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"このドキュメントはファイルダイアログを開こうとしています。開くには、OKを押してください。","PDFE.Controllers.Main.txtSeries":"系列","PDFE.Controllers.Main.txtSignature":"署名","PDFE.Controllers.Main.txtText":"テキスト","PDFE.Controllers.Main.txtUnlockTitle":"文書保護の解除","PDFE.Controllers.Main.txtValidPdfFormat":"フィールドの値はフォーマット\"{0}\"と一致しなければなりません。","PDFE.Controllers.Main.txtXAxis":"X 軸","PDFE.Controllers.Main.txtYAxis":"Y軸","PDFE.Controllers.Main.unknownErrorText":"不明なエラーです。","PDFE.Controllers.Main.unsupportedBrowserErrorText":"お使いのブラウザはサポートされていません。","PDFE.Controllers.Main.uploadDocExtMessage":"不明な文書形式","PDFE.Controllers.Main.uploadDocFileCountMessage":"アップロードされた文書がありません。","PDFE.Controllers.Main.uploadDocSizeMessage":"文書の最大サイズ制限を超えています。","PDFE.Controllers.Main.uploadImageExtMessage":"不明な画像形式です。","PDFE.Controllers.Main.uploadImageFileCountMessage":"画像のアップロードはありません。","PDFE.Controllers.Main.uploadImageSizeMessage":"画像サイズの上限を超えました。サイズの上限は25MBです。","PDFE.Controllers.Main.uploadImageTextText":"画像のアップロード中...","PDFE.Controllers.Main.uploadImageTitleText":"画像のアップロード中","PDFE.Controllers.Main.waitText":"少々お待ちください...","PDFE.Controllers.Main.warnBrowserIE9":"このアプリケーションはIE9では低機能です。IE10以上のバージョンをご利用ください。","PDFE.Controllers.Main.warnBrowserZoom":"お使いのブラウザの現在のZoomの設定は完全にはサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。","PDFE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","PDFE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","PDFE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページを再読み込みしてください。","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください。","PDFE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","PDFE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー数制限に達しました。 アップグレード条件については、%1営業チームにお問い合わせください。","PDFE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","PDFE.Controllers.Navigation.txtBeginning":"文書の先頭","PDFE.Controllers.Navigation.txtGotoBeginning":"文書の先頭に移動する","PDFE.Controllers.Print.textMarginsLast":"最後に適用した設定","PDFE.Controllers.Print.txtCustom":"カスタム","PDFE.Controllers.Print.txtPrintRangeInvalid":"無効な印刷範囲","PDFE.Controllers.RedactTab.applyButtonText":"適用","PDFE.Controllers.RedactTab.doNotApplyButtonText":"適用しない","PDFE.Controllers.RedactTab.textApplyRedact":"黒消し済みの情報は、このドキュメントから永久に削除されます。保存した後は、情報を復元することはできなくなります。","PDFE.Controllers.RedactTab.textEnterPageRange":"編集対象のページ範囲を入力してください","PDFE.Controllers.RedactTab.textEnterRangeDescription":"例:1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"ページを黒消し","PDFE.Controllers.RedactTab.textUnappliedRedactions":"このドキュメントには、まだ適用されていない編集マークが含まれています。

「編集を適用」を選択するまでは、これらのマークは削除可能であり、情報は復元できます。","PDFE.Controllers.RedactTab.tipApplyRedaction":"すべての編集を適用して保存してください。保存されていない編集は元に戻せます。","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"編集を適用する","PDFE.Controllers.RedactTab.tipMarkForRedaction":"これらのツールを使って、PDF内の機密情報をマークし、検索し、編集する。","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"黒消し対象としてマークする","PDFE.Controllers.RedactTab.txtInvalidFormat":"不正形式です。単一の数値か、ハイフン付きの範囲を使用してください。例:2 または 2-6","PDFE.Controllers.RedactTab.txtInvalidRange":"ページ数は1から{0}の間でなければなりません","PDFE.Controllers.RedactTab.txtReversedRange":"開始ページは終了ページ以下でなければなりません","PDFE.Controllers.Search.notcriticalErrorTitle":" 警告","PDFE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","PDFE.Controllers.Search.textReplaceSkipped":"置換が完了しました。{0}つスキップされました。","PDFE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました","PDFE.Controllers.Search.warnReplaceString":"{0}は、「置換」ボックスで有効な特殊文字ではありません。","PDFE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","PDFE.Controllers.Statusbar.zoomText":"ズーム{0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"保存しようとしているフォントは、現在のデバイスでは使用できません。
テキストスタイルは、デバイスのフォントのいずれかを使用して表示され、保存されたフォントは、それが使用可能になったときに使用されます。
続けますか?","PDFE.Controllers.Toolbar.errorAccessDeny":"利用権限がない操作をしようとしました。
文書サーバーの管理者までご連絡ください。","PDFE.Controllers.Toolbar.helpAnnotRect":"新しい注釈ツールを発見:長方形、円、矢印、および接続線。","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"新規注釈","PDFE.Controllers.Toolbar.helpPdfCharts":"PDFファイル内で直接、図表やSmartArtを挿入・編集する。","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"PDF内のチャートとSmartArt","PDFE.Controllers.Toolbar.helpRedactTab":"機密情報を保護するには、編集機能を使って安全に機密コンテンツを削除できる。","PDFE.Controllers.Toolbar.helpRedactTabHeader":"PDFでの黒消し","PDFE.Controllers.Toolbar.notcriticalErrorTitle":" 警告","PDFE.Controllers.Toolbar.textFontSizeErr":"入力された値が正しくありません。
1〜300の数値を入力してください。","PDFE.Controllers.Toolbar.textGotIt":"OK","PDFE.Controllers.Toolbar.textRequired":"必須事項をすべて入力し、送信してください。","PDFE.Controllers.Toolbar.textSubmited":"フォームは正常に送信されました
クリックしてヒントを閉じてください","PDFE.Controllers.Toolbar.textTabForms":"フォーム","PDFE.Controllers.Toolbar.textWarning":" 警告","PDFE.Controllers.Toolbar.txtDownload":"ダウンロード","PDFE.Controllers.Toolbar.txtNeedCommentMode":"ファイルへの変更を保存するには、「コメント」モードに切り替える。または、変更したファイルのコピーをダウンロードすることもできます。","PDFE.Controllers.Toolbar.txtNeedDownload":"現時点では、PDFビューアは新しい変更を別々のファイルコピーに保存することができます。共同編集はサポートしていないため、新しいファイルバージョンを共有しない限り、他のユーザーには変更が見えません。","PDFE.Controllers.Toolbar.txtSaveCopy":"コピーを保存","PDFE.Controllers.Toolbar.txtUntitled":"無題","PDFE.Controllers.Viewport.textFitPage":"ページに合わせる","PDFE.Controllers.Viewport.textFitWidth":"幅に合わせる","PDFE.Controllers.Viewport.txtDarkMode":"ダークモード","PDFE.Views.ChartSettings.text3dDepth":"深さ(ベースに対する割合)","PDFE.Views.ChartSettings.text3dHeight":"高さ(ベースに対する割合)","PDFE.Views.ChartSettings.text3dRotation":"3D回転","PDFE.Views.ChartSettings.textAdvanced":"詳細設定の表示","PDFE.Views.ChartSettings.textAutoscale":"自動スケーリング","PDFE.Views.ChartSettings.textChartType":"グラフ種類の変更","PDFE.Views.ChartSettings.textData":"データ","PDFE.Views.ChartSettings.textDefault":"デフォルト回転","PDFE.Views.ChartSettings.textDown":"下","PDFE.Views.ChartSettings.textEditData":"データの編集","PDFE.Views.ChartSettings.textEditLinks":"リンクの編集","PDFE.Views.ChartSettings.textHeight":"高さ","PDFE.Views.ChartSettings.textKeepRatio":"一定の比率","PDFE.Views.ChartSettings.textLeft":"左","PDFE.Views.ChartSettings.textLinkedData":"リンク済みのデータ","PDFE.Views.ChartSettings.textNarrow":"狭角","PDFE.Views.ChartSettings.textPerspective":"分析観点","PDFE.Views.ChartSettings.textRight":"右揃え","PDFE.Views.ChartSettings.textRightAngle":"軸の直交","PDFE.Views.ChartSettings.textSelectData":"データの選択","PDFE.Views.ChartSettings.textSize":"サイズ","PDFE.Views.ChartSettings.textStyle":"スタイル","PDFE.Views.ChartSettings.textUp":"上","PDFE.Views.ChartSettings.textUpdateData":"データの更新","PDFE.Views.ChartSettings.textWiden":"広角","PDFE.Views.ChartSettings.textWidth":"幅","PDFE.Views.ChartSettings.textX":"X 回転","PDFE.Views.ChartSettings.textY":"Y 回転","PDFE.Views.ChartSettingsAdvanced.textAlt":"代替テキスト","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"説明","PDFE.Views.ChartSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"タイトル","PDFE.Views.ChartSettingsAdvanced.textAuto":"自動","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"軸との交点","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"軸位置","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"タイトル","PDFE.Views.ChartSettingsAdvanced.textBase":"ベース","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"目盛りの間","PDFE.Views.ChartSettingsAdvanced.textBillions":"十億","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"カテゴリ名","PDFE.Views.ChartSettingsAdvanced.textCenter":"中央揃え","PDFE.Views.ChartSettingsAdvanced.textChartName":"チャート名","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"グラフのタイトル","PDFE.Views.ChartSettingsAdvanced.textCross":"十字","PDFE.Views.ChartSettingsAdvanced.textCustom":"カスタム","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"データラベル","PDFE.Views.ChartSettingsAdvanced.textFit":"幅に合わせる","PDFE.Views.ChartSettingsAdvanced.textFixed":"固定","PDFE.Views.ChartSettingsAdvanced.textFormat":"ラベルの書式","PDFE.Views.ChartSettingsAdvanced.textFrom":"から","PDFE.Views.ChartSettingsAdvanced.textGeneral":"一般","PDFE.Views.ChartSettingsAdvanced.textGridLines":"グリッド線","PDFE.Views.ChartSettingsAdvanced.textHeight":"高さ","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"軸を非表示","PDFE.Views.ChartSettingsAdvanced.textHigh":"高い","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"横軸","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"二次横軸","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"水平","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"百","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PDFE.Views.ChartSettingsAdvanced.textIn":"中","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"内部(下)","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"内部(上)","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"一定の比率","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"軸ラベルの距離","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"ラベルの間の間隔","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"ラベルのオプション","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"ラベルの位置","PDFE.Views.ChartSettingsAdvanced.textLayout":"レイアウト","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"左の重ね合わせ","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"最下部","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"左","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"凡例","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"右揃え","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"上","PDFE.Views.ChartSettingsAdvanced.textLines":"線","PDFE.Views.ChartSettingsAdvanced.textLogScale":"対数目盛","PDFE.Views.ChartSettingsAdvanced.textLow":"低い","PDFE.Views.ChartSettingsAdvanced.textMajor":"メジャー","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"メジャーとマイナー","PDFE.Views.ChartSettingsAdvanced.textMajorType":"メジャータイプ","PDFE.Views.ChartSettingsAdvanced.textManual":"手動","PDFE.Views.ChartSettingsAdvanced.textMarkers":"マーカー","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"マークの間の間隔","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"最大値","PDFE.Views.ChartSettingsAdvanced.textMillions":"百万","PDFE.Views.ChartSettingsAdvanced.textMinor":"マイナー","PDFE.Views.ChartSettingsAdvanced.textMinorType":"マイナータイプ","PDFE.Views.ChartSettingsAdvanced.textMinValue":"最小値","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"軸の隣","PDFE.Views.ChartSettingsAdvanced.textNone":"なし","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"重ね合わせなし","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"目盛り","PDFE.Views.ChartSettingsAdvanced.textOut":"外","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"外側上部","PDFE.Views.ChartSettingsAdvanced.textOverlay":"重ね合わせ","PDFE.Views.ChartSettingsAdvanced.textPlacement":"位置","PDFE.Views.ChartSettingsAdvanced.textPosition":"位置","PDFE.Views.ChartSettingsAdvanced.textReverse":"逆順の値","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"右の重ね合わせ","PDFE.Views.ChartSettingsAdvanced.textRotated":"回転済み","PDFE.Views.ChartSettingsAdvanced.textSeparator":"日付のラベルの区切り記号","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"系列の名前","PDFE.Views.ChartSettingsAdvanced.textSize":"サイズ","PDFE.Views.ChartSettingsAdvanced.textSmooth":"スムーズ","PDFE.Views.ChartSettingsAdvanced.textStraight":"直線","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PDFE.Views.ChartSettingsAdvanced.textThousands":"千","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"ティックのオプション","PDFE.Views.ChartSettingsAdvanced.textTitle":"グラフ - 詳細設定","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"左上隅","PDFE.Views.ChartSettingsAdvanced.textTrillions":"兆","PDFE.Views.ChartSettingsAdvanced.textUnits":"表示単位","PDFE.Views.ChartSettingsAdvanced.textValue":"値","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"縦軸","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"二次縦軸","PDFE.Views.ChartSettingsAdvanced.textVertical":"縦","PDFE.Views.ChartSettingsAdvanced.textWidth":"幅","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"左の重ね合わせ","PDFE.Views.DocumentHolder.aboveText":"上","PDFE.Views.DocumentHolder.addCommentText":"コメントを追加","PDFE.Views.DocumentHolder.advancedChartText":"グラフの詳細設定","PDFE.Views.DocumentHolder.advancedEquationText":"方程式設定","PDFE.Views.DocumentHolder.advancedImageText":"画像の詳細設定","PDFE.Views.DocumentHolder.advancedParagraphText":"段落の詳細設定","PDFE.Views.DocumentHolder.advancedShapeText":"図形の詳細設定","PDFE.Views.DocumentHolder.advancedTableText":"表の詳細設定","PDFE.Views.DocumentHolder.AlignBottom":"最下部","PDFE.Views.DocumentHolder.AlignCenter":"中央揃え","PDFE.Views.DocumentHolder.AlignJust":"両端揃え","PDFE.Views.DocumentHolder.AlignLeft":"左","PDFE.Views.DocumentHolder.alignmentText":"配置","PDFE.Views.DocumentHolder.AlignMiddle":"中央","PDFE.Views.DocumentHolder.AlignRight":"右","PDFE.Views.DocumentHolder.AlignText":"テキストの揃え","PDFE.Views.DocumentHolder.AlignTop":"トップ","PDFE.Views.DocumentHolder.allLinearText":"すべて - 線形","PDFE.Views.DocumentHolder.allProfText":"すべて - プロフェッショナル","PDFE.Views.DocumentHolder.belowText":"下","PDFE.Views.DocumentHolder.btnChart":"タイトル、凡例、目盛線、データ ラベルなどのグラフ要素を追加、削除、または変更します","PDFE.Views.DocumentHolder.cellAlignText":"セルの縦方向の配置","PDFE.Views.DocumentHolder.cellText":"セル","PDFE.Views.DocumentHolder.centerText":"中央揃え","PDFE.Views.DocumentHolder.columnText":"列","PDFE.Views.DocumentHolder.confirmAddFontName":"保存しようとしているフォントは、現在のデバイスでは使用できません。
テキストスタイルは、デバイスのフォントのいずれかを使用して表示され、保存されたフォントは、それが使用可能になったときに使用されます。
続けますか?","PDFE.Views.DocumentHolder.currLinearText":"現在 - 線形","PDFE.Views.DocumentHolder.currProfText":"現在 - プロフェッショナル","PDFE.Views.DocumentHolder.deleteColumnText":"列の削除","PDFE.Views.DocumentHolder.deleteRowText":"行の削除","PDFE.Views.DocumentHolder.deleteTableText":"表の削除","PDFE.Views.DocumentHolder.deleteText":"削除","PDFE.Views.DocumentHolder.DepthAxis":"Z軸","PDFE.Views.DocumentHolder.direct270Text":"テキストを上に回転","PDFE.Views.DocumentHolder.direct90Text":"テキストを下に回転","PDFE.Views.DocumentHolder.directHText":"水平","PDFE.Views.DocumentHolder.directionText":"文字の方向","PDFE.Views.DocumentHolder.editChartText":"データの編集","PDFE.Views.DocumentHolder.editHyperlinkText":"リンクを編集する","PDFE.Views.DocumentHolder.guestText":"ゲスト","PDFE.Views.DocumentHolder.hideEqToolbar":"方程式ツールバーを非表示にする","PDFE.Views.DocumentHolder.hyperlinkText":"リンク","PDFE.Views.DocumentHolder.insertColumnLeftText":"左の列","PDFE.Views.DocumentHolder.insertColumnRightText":"右の列","PDFE.Views.DocumentHolder.insertColumnText":"列の挿入","PDFE.Views.DocumentHolder.insertRowAboveText":"行 (上)","PDFE.Views.DocumentHolder.insertRowBelowText":"行(下)","PDFE.Views.DocumentHolder.insertRowText":"行の挿入","PDFE.Views.DocumentHolder.insertText":"挿入","PDFE.Views.DocumentHolder.latexText":"LaTeX","PDFE.Views.DocumentHolder.leftText":"左","PDFE.Views.DocumentHolder.mergeCellsText":"セルの結合","PDFE.Views.DocumentHolder.mniImageFromFile":"ファイルから画像","PDFE.Views.DocumentHolder.mniImageFromStorage":"ストレージから画像","PDFE.Views.DocumentHolder.mniImageFromUrl":"URLから画像","PDFE.Views.DocumentHolder.originalSizeText":"実際のサイズ","PDFE.Views.DocumentHolder.removeCommentText":"削除","PDFE.Views.DocumentHolder.removeHyperlinkText":"リンクを削除する","PDFE.Views.DocumentHolder.rightText":"右揃え","PDFE.Views.DocumentHolder.rowText":"行","PDFE.Views.DocumentHolder.selectText":"選択","PDFE.Views.DocumentHolder.showEqToolbar":"方程式ツールバーの表示","PDFE.Views.DocumentHolder.splitCellsText":"セルを分割...","PDFE.Views.DocumentHolder.splitCellTitleText":"セルを分割","PDFE.Views.DocumentHolder.tableText":"表","PDFE.Views.DocumentHolder.textArrangeBack":"背景へ移動","PDFE.Views.DocumentHolder.textArrangeBackward":"背面ヘ移動","PDFE.Views.DocumentHolder.textArrangeForward":"前面ヘ移動","PDFE.Views.DocumentHolder.textArrangeFront":"前景に移動","PDFE.Views.DocumentHolder.textAxes":"座標軸","PDFE.Views.DocumentHolder.textAxisTitles":"軸のタイトル","PDFE.Views.DocumentHolder.textBottom":"最下部","PDFE.Views.DocumentHolder.textCenter":"中央揃え","PDFE.Views.DocumentHolder.textChartTitle":"グラフのタイトル","PDFE.Views.DocumentHolder.textClearField":"フィールドのクリア","PDFE.Views.DocumentHolder.textCm":"センチ","PDFE.Views.DocumentHolder.textColor":"色","PDFE.Views.DocumentHolder.textCopy":"コピー","PDFE.Views.DocumentHolder.textCrop":"トリミング","PDFE.Views.DocumentHolder.textCropFill":"塗りつぶし","PDFE.Views.DocumentHolder.textCropFit":"合わせる","PDFE.Views.DocumentHolder.textCustom":"ユーザー設定","PDFE.Views.DocumentHolder.textCut":"切り取り","PDFE.Views.DocumentHolder.textDataLabels":"データラベル","PDFE.Views.DocumentHolder.textDistributeCols":"列の幅を揃える","PDFE.Views.DocumentHolder.textDistributeRows":"行の高さを揃える","PDFE.Views.DocumentHolder.textEditPoints":"頂点の編集","PDFE.Views.DocumentHolder.textErrorBars":"誤差範囲","PDFE.Views.DocumentHolder.textExponential":"指数","PDFE.Views.DocumentHolder.textFit":"幅に合わせる","PDFE.Views.DocumentHolder.textFlipH":"左右に反転","PDFE.Views.DocumentHolder.textFlipV":"上下に反転","PDFE.Views.DocumentHolder.textFontSizeErr":"入力された値が正しくありません。
1〜300の数値を入力してください。","PDFE.Views.DocumentHolder.textFromFile":"ファイルから","PDFE.Views.DocumentHolder.textFromStorage":"ストレージから","PDFE.Views.DocumentHolder.textFromUrl":"URLから","PDFE.Views.DocumentHolder.textGridLines":"グリッド線","PDFE.Views.DocumentHolder.textHorAxis":"横軸","PDFE.Views.DocumentHolder.textHorAxisSec":"二次横軸","PDFE.Views.DocumentHolder.textHorizontalMajor":"主要な水平線","PDFE.Views.DocumentHolder.textHorizontalMinor":"二次的な水平線","PDFE.Views.DocumentHolder.textInnerBottom":"内部(下)","PDFE.Views.DocumentHolder.textInnerTop":"内部(上)","PDFE.Views.DocumentHolder.textLeft":"左","PDFE.Views.DocumentHolder.textLeftData":"左","PDFE.Views.DocumentHolder.textLeftOverlay":"左の重ね合わせ","PDFE.Views.DocumentHolder.textLegendPos":"凡例","PDFE.Views.DocumentHolder.textLinear":"線形","PDFE.Views.DocumentHolder.textLinearForecast":"線形予測","PDFE.Views.DocumentHolder.textLines":"線","PDFE.Views.DocumentHolder.textMovingAverage":"移動平均 (2)","PDFE.Views.DocumentHolder.textNone":"なし","PDFE.Views.DocumentHolder.textNoOverlay":"重ね合わせなし","PDFE.Views.DocumentHolder.textOuterTop":"外側上部","PDFE.Views.DocumentHolder.textOverlay":"重ね合わせ","PDFE.Views.DocumentHolder.textPaste":"貼り付け","PDFE.Views.DocumentHolder.textRecognize":"テキストの編集","PDFE.Views.DocumentHolder.textRedact":"テキストを黒消し","PDFE.Views.DocumentHolder.textRedo":"やり直し","PDFE.Views.DocumentHolder.textReplace":"画像の置き換え","PDFE.Views.DocumentHolder.textResetCrop":"トリミングをリセット","PDFE.Views.DocumentHolder.textRight":"右揃え","PDFE.Views.DocumentHolder.textRightOverlay":"右の重ね合わせ","PDFE.Views.DocumentHolder.textRotate":"回転","PDFE.Views.DocumentHolder.textRotate270":"反時計回りに90度回転","PDFE.Views.DocumentHolder.textRotate90":"時計回りに90度回転","PDFE.Views.DocumentHolder.textSaveAsPicture":"画像として保存","PDFE.Views.DocumentHolder.textShapeAlignBottom":"下揃え","PDFE.Views.DocumentHolder.textShapeAlignCenter":"中央揃え","PDFE.Views.DocumentHolder.textShapeAlignLeft":"左揃え","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"中央揃え","PDFE.Views.DocumentHolder.textShapeAlignRight":"右揃え","PDFE.Views.DocumentHolder.textShapeAlignTop":"上揃え","PDFE.Views.DocumentHolder.textShapesMerge":"図形を結合","PDFE.Views.DocumentHolder.textShowLegendKeys":"凡例キーの表示","PDFE.Views.DocumentHolder.textShowUpDown":"上昇/下降バーを表示","PDFE.Views.DocumentHolder.textStandardDeviation":"標準偏差","PDFE.Views.DocumentHolder.textStandardError":"標準誤差","PDFE.Views.DocumentHolder.textTop":"上","PDFE.Views.DocumentHolder.textTrendline":"トレンドライン","PDFE.Views.DocumentHolder.textUndo":"元に戻す","PDFE.Views.DocumentHolder.textUpDownBars":"上下スクロールバー","PDFE.Views.DocumentHolder.textVertAxis":"縦軸","PDFE.Views.DocumentHolder.textVertAxisSec":"二次縦軸","PDFE.Views.DocumentHolder.textVerticalMajor":"主要の縦軸","PDFE.Views.DocumentHolder.textVerticalMinor":"二次的な縦軸","PDFE.Views.DocumentHolder.tipIsLocked":"今、この要素が他のユーザによって編集されています。","PDFE.Views.DocumentHolder.tipRecognize":"テキストの編集","PDFE.Views.DocumentHolder.tipRedact":"テキストを黒消し","PDFE.Views.DocumentHolder.txtAddBottom":"下罫線の追加","PDFE.Views.DocumentHolder.txtAddFractionBar":"分数罫の追加","PDFE.Views.DocumentHolder.txtAddHor":"水平線の追加","PDFE.Views.DocumentHolder.txtAddLB":"左下線の追加","PDFE.Views.DocumentHolder.txtAddLeft":"左罫線の追加","PDFE.Views.DocumentHolder.txtAddLT":"左上線の追加","PDFE.Views.DocumentHolder.txtAddRight":"右罫線を追加","PDFE.Views.DocumentHolder.txtAddTop":"上罫線を追加","PDFE.Views.DocumentHolder.txtAddVer":"縦線を追加","PDFE.Views.DocumentHolder.txtAlign":"配置","PDFE.Views.DocumentHolder.txtAlignToChar":"文字に合わせる","PDFE.Views.DocumentHolder.txtArrange":"整列","PDFE.Views.DocumentHolder.txtBackground":"背景","PDFE.Views.DocumentHolder.txtBorderProps":"罫線の​​プロパティ","PDFE.Views.DocumentHolder.txtBottom":"下","PDFE.Views.DocumentHolder.txtColumnAlign":"列の配置","PDFE.Views.DocumentHolder.txtCopyPage":"ページのコピー","PDFE.Views.DocumentHolder.txtCutPage":"ページの切り取り","PDFE.Views.DocumentHolder.txtDecreaseArg":"引数のサイズの縮小","PDFE.Views.DocumentHolder.txtDeleteArg":"引数の削除","PDFE.Views.DocumentHolder.txtDeleteBreak":"任意指定の改行を削除","PDFE.Views.DocumentHolder.txtDeleteChars":"開始文字と終了文字の削除","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"囲み文字と区切り文字の削除","PDFE.Views.DocumentHolder.txtDeleteEq":"数式の削除","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"文字の削除","PDFE.Views.DocumentHolder.txtDeletePage":"ページを削除","PDFE.Views.DocumentHolder.txtDeleteRadical":"べき乗根の削除","PDFE.Views.DocumentHolder.txtDistribHor":"左右に整列","PDFE.Views.DocumentHolder.txtDistribVert":"上下に整列","PDFE.Views.DocumentHolder.txtEmpty":"(空白)","PDFE.Views.DocumentHolder.txtFractionLinear":"分数(横)に変更","PDFE.Views.DocumentHolder.txtFractionSkewed":"斜めの分数罫に変更","PDFE.Views.DocumentHolder.txtFractionStacked":"分数(縦)に変更\t","PDFE.Views.DocumentHolder.txtGroup":"グループ","PDFE.Views.DocumentHolder.txtGroupCharOver":"テキストの上の文字","PDFE.Views.DocumentHolder.txtGroupCharUnder":"テキストの下の文字","PDFE.Views.DocumentHolder.txtHideBottom":"下罫線を表示しない","PDFE.Views.DocumentHolder.txtHideBottomLimit":"下極限を表示しない","PDFE.Views.DocumentHolder.txtHideCloseBracket":"右かっこを表示しない","PDFE.Views.DocumentHolder.txtHideDegree":"次数を表示しない","PDFE.Views.DocumentHolder.txtHideHor":"水平線を表示しない","PDFE.Views.DocumentHolder.txtHideLB":"左詰め(下)のラインを表示しない","PDFE.Views.DocumentHolder.txtHideLeft":"左罫線を表示しない","PDFE.Views.DocumentHolder.txtHideLT":"左詰め(上)のラインを表示しない","PDFE.Views.DocumentHolder.txtHideOpenBracket":"左かっこを表示しない","PDFE.Views.DocumentHolder.txtHidePlaceholder":"プレースホルダを表示しない","PDFE.Views.DocumentHolder.txtHideRight":"右罫線を枠線表示しない","PDFE.Views.DocumentHolder.txtHideTop":"上罫線を表示しない","PDFE.Views.DocumentHolder.txtHideTopLimit":"上極限を表示しない","PDFE.Views.DocumentHolder.txtHideVer":"縦線を表示しない","PDFE.Views.DocumentHolder.txtIncreaseArg":"引数のサイズの拡大","PDFE.Views.DocumentHolder.txtInsertArgAfter":"後に引数を挿入","PDFE.Views.DocumentHolder.txtInsertArgBefore":"前に引数を挿入","PDFE.Views.DocumentHolder.txtInsertBreak":"手動ブレークを挿入","PDFE.Views.DocumentHolder.txtInsertEqAfter":"後に方程式を挿入","PDFE.Views.DocumentHolder.txtInsertEqBefore":"前に方程式を挿入","PDFE.Views.DocumentHolder.txtLimitChange":"制限位置の変更","PDFE.Views.DocumentHolder.txtLimitOver":"テキストの上に制限する","PDFE.Views.DocumentHolder.txtLimitUnder":"テキストの下に制限する","PDFE.Views.DocumentHolder.txtMatchBrackets":"かっこを引数の高さに合わせる","PDFE.Views.DocumentHolder.txtMatrixAlign":"行列の配置","PDFE.Views.DocumentHolder.txtNewPageAfter":"後に空白ページを挿入","PDFE.Views.DocumentHolder.txtNewPageBefore":"前に空白ページを挿入","PDFE.Views.DocumentHolder.txtOpacity":"不透明度","PDFE.Views.DocumentHolder.txtOverbar":"テキストの上にバー","PDFE.Views.DocumentHolder.txtPastePage":"ページの貼り付け","PDFE.Views.DocumentHolder.txtPastePageAfter":"次のページの後で貼り付ける","PDFE.Views.DocumentHolder.txtPastePageBefore":"ページの前で貼り付ける","PDFE.Views.DocumentHolder.txtPercentage":"パーセンテージ","PDFE.Views.DocumentHolder.txtPressLink":"{0}キーを押しながらリンクをクリックしてください","PDFE.Views.DocumentHolder.txtPrintSelection":"選択範囲の印刷","PDFE.Views.DocumentHolder.txtRemFractionBar":"分数線の削除","PDFE.Views.DocumentHolder.txtRemLimit":"制限を削除する","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"アクセント記号の削除","PDFE.Views.DocumentHolder.txtRemoveBar":"線を削除する","PDFE.Views.DocumentHolder.txtRemScripts":"スクリプトの削除","PDFE.Views.DocumentHolder.txtRemSubscript":"下付き文字の削除","PDFE.Views.DocumentHolder.txtRemSuperscript":"上付き文字の削除","PDFE.Views.DocumentHolder.txtRotateLeft":"ページの左回転","PDFE.Views.DocumentHolder.txtRotateRight":"ページの右回転","PDFE.Views.DocumentHolder.txtScriptsAfter":"テキストの後のスクリプト","PDFE.Views.DocumentHolder.txtScriptsBefore":"テキストの前のスクリプト","PDFE.Views.DocumentHolder.txtSelectAll":"すべてを選択","PDFE.Views.DocumentHolder.txtShowBottomLimit":"下限を表示する","PDFE.Views.DocumentHolder.txtShowCloseBracket":"右かっこを表示","PDFE.Views.DocumentHolder.txtShowDegree":"次数を表示","PDFE.Views.DocumentHolder.txtShowOpenBracket":"左かっこを表示","PDFE.Views.DocumentHolder.txtShowPlaceholder":"プレースホルダーの表示","PDFE.Views.DocumentHolder.txtShowTopLimit":"上限を表示","PDFE.Views.DocumentHolder.txtStretchBrackets":"かっこの拡大","PDFE.Views.DocumentHolder.txtTop":"上","PDFE.Views.DocumentHolder.txtUnderbar":"テキストの下にバー","PDFE.Views.DocumentHolder.txtUngroup":"グループ化解除","PDFE.Views.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、端末やデータに損害を与える可能性があります。コンピュータを保護するため、信頼できるソースからのリンクのみをクリックしてください。この場所は安全でない可能性があります:

{0}

続行しますか?","PDFE.Views.DocumentHolder.unicodeText":"Unicode","PDFE.Views.DocumentHolder.vertAlignText":"垂直方向の配置","PDFE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","PDFE.Views.FileMenu.btnBackCaption":"ファイルを開く","PDFE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","PDFE.Views.FileMenu.btnCloseMenuCaption":"戻る","PDFE.Views.FileMenu.btnCreateNewCaption":"新規作成","PDFE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","PDFE.Views.FileMenu.btnExitCaption":"閉じる","PDFE.Views.FileMenu.btnFileOpenCaption":"開く","PDFE.Views.FileMenu.btnHelpCaption":"ヘルプ","PDFE.Views.FileMenu.btnHistoryCaption":"バージョン履歴","PDFE.Views.FileMenu.btnInfoCaption":"情報","PDFE.Views.FileMenu.btnPrintCaption":"印刷","PDFE.Views.FileMenu.btnProtectCaption":"保護","PDFE.Views.FileMenu.btnRecentFilesCaption":"最近使ったファイルを開く","PDFE.Views.FileMenu.btnRenameCaption":"名前の変更","PDFE.Views.FileMenu.btnReturnCaption":"文書に戻る","PDFE.Views.FileMenu.btnRightsCaption":"アクセス権","PDFE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","PDFE.Views.FileMenu.btnSaveCaption":"保存","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"コピーを別名で保存する","PDFE.Views.FileMenu.btnSettingsCaption":"詳細設定","PDFE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","PDFE.Views.FileMenu.btnToEditCaption":"ドキュメントの編集","PDFE.Views.FileMenu.textDownload":"ダウンロード","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"空の文書","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"新規作成","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"適用","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"著者を追加","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"テキストを追加","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"アプリケーション","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"作成者","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"アクセス権の変更","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"コメント","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"共通","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成済み","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文書の情報","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Web表示用に最適化","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"読み込み中...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"所有者","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"ページ","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"ページのサイズ","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"段落","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDFメーカー","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"タグ付きPDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDFのバージョン","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"位置","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"権利を持っている者","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"文字数 (スペースを含む)","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"統計","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"件名","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"文字","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"タグ","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロード済み","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"言葉","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス権","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス権の変更","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"権利を持っている者","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"パスワード付きで","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"文書を保護する","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"サインで","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有効な署名が追加されています。
文書は編集から保護されています。","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"
見えないデジタル署名を追加することで、文書の整合性を確保します。","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"文書を編集する","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"編集すると、文書から署名が削除されます。
続行しますか?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"この文書はパスワードで保護されています","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"このドキュメントをパスワードで暗号化する","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"この文書には署名が必要です。","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有効な署名が文書に追加されました。 文書は編集されないように保護されています。","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"署名の表示","PDFE.Views.FileMenuPanels.Settings.okButtonText":"適用","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同編集モード","PDFE.Views.FileMenuPanels.Settings.strFast":"高速","PDFE.Views.FileMenuPanels.Settings.strFontRender":"フォントのヒント","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"キーボードショートカット","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"RTLインターフェース","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"リアルタイム共同編集モードの変更表示","PDFE.Views.FileMenuPanels.Settings.strShowComments":"テキストにコメントを表示する","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"他のユーザーの変更点を表示する","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"解決済みコメントを表示する","PDFE.Views.FileMenuPanels.Settings.strStrict":"厳格","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"タブのスタイル","PDFE.Views.FileMenuPanels.Settings.strTheme":"インターフェイスのテーマ","PDFE.Views.FileMenuPanels.Settings.strUnit":"測定単位","PDFE.Views.FileMenuPanels.Settings.strZoom":"デフォルトのズーム値","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"自動回復情報を保存する","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"自動保存","PDFE.Views.FileMenuPanels.Settings.textDisabled":"無効","PDFE.Views.FileMenuPanels.Settings.textFill":"塗りつぶし","PDFE.Views.FileMenuPanels.Settings.textForceSave":"中間バージョンの保存","PDFE.Views.FileMenuPanels.Settings.textLine":"線","PDFE.Views.FileMenuPanels.Settings.textMinute":"1 分ごと","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"詳細設定","PDFE.Views.FileMenuPanels.Settings.txtAll":"全ての表示","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"外観","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"デフォルトのキャッシュモード","PDFE.Views.FileMenuPanels.Settings.txtCm":"センチ","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"共同編集","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"カスタマイズ","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"ドキュメントをダークモードに変更","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"編集と保存","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"リアルタイムの共同編集。すべての変更は自動的に保存されます","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"ページに合わせる","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"幅に合わせる","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"漢字","PDFE.Views.FileMenuPanels.Settings.txtInch":"インチ","PDFE.Views.FileMenuPanels.Settings.txtLast":"最後に閲覧したファイル","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"最後に使用した項目","PDFE.Views.FileMenuPanels.Settings.txtMac":"OSXのように","PDFE.Views.FileMenuPanels.Settings.txtNative":"ネイティブ","PDFE.Views.FileMenuPanels.Settings.txtNone":"表示なし","PDFE.Views.FileMenuPanels.Settings.txtPt":"ポイント","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"クイックプリントボタンをエディタヘッダーに表示","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"スクリーンリーダーのサポートをオンにする","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"「保存」ボタンを使用して、あなたや他人が行った変更を同期させることができます","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"ツールバーの色をタブの背景に使う","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーをご使用ください","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"テキスト選択時にミニツールバーを使用する","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","PDFE.Views.FileMenuPanels.Settings.txtWin":"Windowsのように","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"ワークスペース","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","PDFE.Views.FormatSettingsDialog.textAfter":"スペースなしで","PDFE.Views.FormatSettingsDialog.textAfterSpace":"スペースの後で","PDFE.Views.FormatSettingsDialog.textBefore":"スペースがない前に","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"スペースがある前に","PDFE.Views.FormatSettingsDialog.textCategory":"カテゴリー","PDFE.Views.FormatSettingsDialog.textDate":"日付","PDFE.Views.FormatSettingsDialog.textDecimal":"小数点以下の桁数","PDFE.Views.FormatSettingsDialog.textFormat":"フォーマット","PDFE.Views.FormatSettingsDialog.textLocation":"記号の配置","PDFE.Views.FormatSettingsDialog.textMask":"任意のマスク","PDFE.Views.FormatSettingsDialog.textNegative":"負の数式のスタイル","PDFE.Views.FormatSettingsDialog.textNone":"なし","PDFE.Views.FormatSettingsDialog.textNumber":"数値","PDFE.Views.FormatSettingsDialog.textParens":"かっこを表示","PDFE.Views.FormatSettingsDialog.textPercent":"パーセンテージ","PDFE.Views.FormatSettingsDialog.textPhone":"電話番号","PDFE.Views.FormatSettingsDialog.textRed":"赤いテキストを使用","PDFE.Views.FormatSettingsDialog.textReg":"正規表現","PDFE.Views.FormatSettingsDialog.textSeparator":"セパレーターのスタイル","PDFE.Views.FormatSettingsDialog.textSpecial":"特殊","PDFE.Views.FormatSettingsDialog.textSSN":"社会保障番号","PDFE.Views.FormatSettingsDialog.textSymbol":"通貨記号","PDFE.Views.FormatSettingsDialog.textTime":"時間","PDFE.Views.FormatSettingsDialog.textTitle":"フォーマット設定","PDFE.Views.FormatSettingsDialog.textZipCode":"郵便番号","PDFE.Views.FormatSettingsDialog.textZipCode4":"郵便番号 + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"カスタム","PDFE.Views.FormatSettingsDialog.txtSample":"例えば:","PDFE.Views.FormSettings.textAdvanced":"詳細設定を表示","PDFE.Views.FormSettings.textAlways":"常に","PDFE.Views.FormSettings.textAnamorphic":"不比例に","PDFE.Views.FormSettings.textArabic":"アラビア語","PDFE.Views.FormSettings.textAutofit":"自動調整","PDFE.Views.FormSettings.textBackgroundColor":"背景色","PDFE.Views.FormSettings.textBehavior":"行動","PDFE.Views.FormSettings.textBeveled":"斜め","PDFE.Views.FormSettings.textBorder":"罫線","PDFE.Views.FormSettings.textButton":"ボタン","PDFE.Views.FormSettings.textChbStyle":"チェックボックスのスタイル","PDFE.Views.FormSettings.textCheck":"チェック","PDFE.Views.FormSettings.textCheckbox":"チェックボックス","PDFE.Views.FormSettings.textCheckDefault":"チェックボックスは既定でチェックされている","PDFE.Views.FormSettings.textCircle":"丸","PDFE.Views.FormSettings.textClear":"クリア","PDFE.Views.FormSettings.textColor":"色","PDFE.Views.FormSettings.textComb":"文字の組み合わせ","PDFE.Views.FormSettings.textCombobox":"コンボボックス","PDFE.Views.FormSettings.textCommit":"選択した値をすぐに確定する","PDFE.Views.FormSettings.textCross":"十字","PDFE.Views.FormSettings.textCustomText":"カスタムテキストを有効にする","PDFE.Views.FormSettings.textDashed":"破線","PDFE.Views.FormSettings.textDate":"日付","PDFE.Views.FormSettings.textDateField":"「日付&時間」フィールド","PDFE.Views.FormSettings.textDiamond":"ひし型","PDFE.Views.FormSettings.textDown":"下","PDFE.Views.FormSettings.textExport":"エクスポート値","PDFE.Views.FormSettings.textField":"テキストフィールド","PDFE.Views.FormSettings.textFitBounds":"罫線に合わせる","PDFE.Views.FormSettings.textFormat":"フォーマット","PDFE.Views.FormSettings.textFromFile":"ファイルから","PDFE.Views.FormSettings.textFromStorage":"ストレージから","PDFE.Views.FormSettings.textFromUrl":"URLから","PDFE.Views.FormSettings.textHindi":"ヒンディー語","PDFE.Views.FormSettings.textHover":"ロールオーバー","PDFE.Views.FormSettings.textHowScale":"規模","PDFE.Views.FormSettings.textIcon":"アイコン","PDFE.Views.FormSettings.textIconLeft":"アイコンを左に、ラベルを右に","PDFE.Views.FormSettings.textIconOnly":"アイコンのみ","PDFE.Views.FormSettings.textIconTop":"アイコンを上に、ラベルを下に","PDFE.Views.FormSettings.textImage":"画像","PDFE.Views.FormSettings.textInset":"インセット","PDFE.Views.FormSettings.textInvert":"反転","PDFE.Views.FormSettings.textLabel":"ラベル","PDFE.Views.FormSettings.textLabelLeft":"ラベルを左に、アイコンを右に","PDFE.Views.FormSettings.textLabelTop":"ラベルを上に、アイコンを下に","PDFE.Views.FormSettings.textLayout":"レイアウト","PDFE.Views.FormSettings.textListBox":"リストボックス","PDFE.Views.FormSettings.textLock":"ロックする","PDFE.Views.FormSettings.textMask":"任意のマスク","PDFE.Views.FormSettings.textMaxChars":"文字の制限","PDFE.Views.FormSettings.textMedium":"中","PDFE.Views.FormSettings.textMulti":"マルチライン","PDFE.Views.FormSettings.textMultisel":"複数選択","PDFE.Views.FormSettings.textName":"名前","PDFE.Views.FormSettings.textNever":"一度もない","PDFE.Views.FormSettings.textNoBorder":"罫線なし","PDFE.Views.FormSettings.textNoFill":"塗りつぶしなし","PDFE.Views.FormSettings.textNone":"なし","PDFE.Views.FormSettings.textNormal":"上","PDFE.Views.FormSettings.textNumber":"数値","PDFE.Views.FormSettings.textNumeral":"数字形式","PDFE.Views.FormSettings.textOrientation":"向き","PDFE.Views.FormSettings.textOutline":"アウトライン","PDFE.Views.FormSettings.textOverlay":"アイコンの上にラベル","PDFE.Views.FormSettings.textPassword":"パスワード","PDFE.Views.FormSettings.textPercent":"パーセンテージ","PDFE.Views.FormSettings.textPhone":"電話番号","PDFE.Views.FormSettings.textPlaceholder":"プレースホルダ","PDFE.Views.FormSettings.textPlacement":"アイコンの配置","PDFE.Views.FormSettings.textProportional":"比例的に","PDFE.Views.FormSettings.textPush":"プッシュ","PDFE.Views.FormSettings.textRadiobox":"ラジオボタン","PDFE.Views.FormSettings.textRadioChoice":"ラジオボタンの選択","PDFE.Views.FormSettings.textRadioDefault":"ボタンが既定でチェックされている","PDFE.Views.FormSettings.textRadioStyle":"ボタンのスタイル","PDFE.Views.FormSettings.textReadonly":"閲覧のみ","PDFE.Views.FormSettings.textReg":"正規表現","PDFE.Views.FormSettings.textRequired":"必須","PDFE.Views.FormSettings.textScale":"スケーリングのタイミング","PDFE.Views.FormSettings.textScroll":"長いテキストのスクロール","PDFE.Views.FormSettings.textSelect":"選択","PDFE.Views.FormSettings.textSolid":"実線","PDFE.Views.FormSettings.textSpecial":"特殊","PDFE.Views.FormSettings.textSquare":"四角","PDFE.Views.FormSettings.textSSN":"社会保障番号","PDFE.Views.FormSettings.textStar":"星","PDFE.Views.FormSettings.textState":"状態","PDFE.Views.FormSettings.textStyle":"スタイル","PDFE.Views.FormSettings.textText":"テキスト","PDFE.Views.FormSettings.textTextOnly":"ラベルのみ","PDFE.Views.FormSettings.textThick":"太い","PDFE.Views.FormSettings.textThickness":"太さ","PDFE.Views.FormSettings.textThin":"細い","PDFE.Views.FormSettings.textTime":"時間","PDFE.Views.FormSettings.textTip":"ヒント","PDFE.Views.FormSettings.textTipAdd":"新しい値を追加する","PDFE.Views.FormSettings.textTipDelete":"値を削除する","PDFE.Views.FormSettings.textTipDown":"下に移動","PDFE.Views.FormSettings.textTipUp":"上に移動","PDFE.Views.FormSettings.textTooBig":"画像が大きすぎます","PDFE.Views.FormSettings.textTooSmall":"画像が小さすぎます","PDFE.Views.FormSettings.textUnderline":"下線","PDFE.Views.FormSettings.textUnison":"同じ名前と選択内容を持つボタンが同時に選択されます","PDFE.Views.FormSettings.textUnlock":"ロックを解除","PDFE.Views.FormSettings.textValue":"値のオプション","PDFE.Views.FormSettings.textZipCode":"郵便番号","PDFE.Views.FormSettings.textZipCode4":"郵便番号 + 4","PDFE.Views.FormSettings.txtCustom":"カスタム","PDFE.Views.FormsTab.capBtnCheckBox":"チェックボックス","PDFE.Views.FormsTab.capBtnComboBox":"コンボボックス","PDFE.Views.FormsTab.capBtnDropDown":"リストボックス","PDFE.Views.FormsTab.capBtnEmail":"メールアドレス","PDFE.Views.FormsTab.capBtnImage":"画像","PDFE.Views.FormsTab.capBtnNext":"次のフィールド","PDFE.Views.FormsTab.capBtnPhone":"電話番号","PDFE.Views.FormsTab.capBtnPrev":"前のフィールド","PDFE.Views.FormsTab.capBtnRadioBox":"ラジオボタン","PDFE.Views.FormsTab.capBtnText":"テキストフィールド","PDFE.Views.FormsTab.capCreditCard":"クレジットカード","PDFE.Views.FormsTab.capDateTime":"日付&時刻","PDFE.Views.FormsTab.capZipCode":"郵便番号","PDFE.Views.FormsTab.textAnyone":"誰でも","PDFE.Views.FormsTab.textClear":"フィールドをクリアする","PDFE.Views.FormsTab.textClearFields":"すべてのフィールドをクリアする","PDFE.Views.FormsTab.tipCheckBox":"チェックボックスを挿入","PDFE.Views.FormsTab.tipComboBox":"コンボボックスを挿入","PDFE.Views.FormsTab.tipCreditCard":"クレジットカード番号を入力","PDFE.Views.FormsTab.tipDateTime":"日付と時間の入力","PDFE.Views.FormsTab.tipDropDown":"リストボックスを挿入","PDFE.Views.FormsTab.tipEmailField":"メールアドレスを挿入","PDFE.Views.FormsTab.tipImageField":"画像を挿入","PDFE.Views.FormsTab.tipNextForm":"次のフィールドに移動する","PDFE.Views.FormsTab.tipPhoneField":"電話番号を挿入","PDFE.Views.FormsTab.tipPrevForm":"前のフィールドに移動する","PDFE.Views.FormsTab.tipRadioBox":"ラジオボタンを挿入","PDFE.Views.FormsTab.tipTextField":"テキストフィールドを挿入","PDFE.Views.FormsTab.tipZipCode":"郵便番号を挿入","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"表示","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"リンク先","PDFE.Views.HyperlinkSettingsDialog.textDefault":"選択されたテキストフラグメント","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"ここにキャプションを入力してください","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"ここにリンクを入力してください","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"ここにヒントを入力してください","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"外部リンク","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"この文書のページ","PDFE.Views.HyperlinkSettingsDialog.textPages":"ページ","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"ファイルの選択","PDFE.Views.HyperlinkSettingsDialog.textTipText":"ヒントのテキスト:","PDFE.Views.HyperlinkSettingsDialog.textTitle":"リンク設定","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"スクロールバー、マウス、ズームを使って目的のビューを選択し、リンク設定を押してリンク先を作成する。","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"作成 閲覧する","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"このフィールドは必須項目","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"最初のページ","PDFE.Views.HyperlinkSettingsDialog.txtLast":"最後のページ","PDFE.Views.HyperlinkSettingsDialog.txtNext":"次のページ","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"リンクの入力内容は「http://www.example.com」形式のURLである必要があります。","PDFE.Views.HyperlinkSettingsDialog.txtPage":"ページ","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"ページビューに移動する","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"前のページ","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"リンクを設定する","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"このフィールドは2083文字に制限されている","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"ウェブアドレスを入力するか、ファイルを選択してください","PDFE.Views.ImageSettings.strTransparency":"不透明度","PDFE.Views.ImageSettings.textAdvanced":"詳細設定を表示","PDFE.Views.ImageSettings.textCrop":"トリミング","PDFE.Views.ImageSettings.textCropFill":"塗りつぶし","PDFE.Views.ImageSettings.textCropFit":"合わせる","PDFE.Views.ImageSettings.textCropToShape":"図形に合わせてトリミング","PDFE.Views.ImageSettings.textEdit":"編集","PDFE.Views.ImageSettings.textEditObject":"オブジェクトを編集する","PDFE.Views.ImageSettings.textFitPage":"ページに合わせる","PDFE.Views.ImageSettings.textFlip":"反転する","PDFE.Views.ImageSettings.textFromFile":"ファイルから","PDFE.Views.ImageSettings.textFromStorage":"ストレージから","PDFE.Views.ImageSettings.textFromUrl":"URLから","PDFE.Views.ImageSettings.textHeight":"高さ","PDFE.Views.ImageSettings.textHint270":"反時計回りに90度回転","PDFE.Views.ImageSettings.textHint90":"時計回りに90度回転","PDFE.Views.ImageSettings.textHintFlipH":"左右に反転","PDFE.Views.ImageSettings.textHintFlipV":"上下に反転","PDFE.Views.ImageSettings.textInsert":"画像の置き換え","PDFE.Views.ImageSettings.textOriginalSize":"実際のサイズ","PDFE.Views.ImageSettings.textRecentlyUsed":"最近使った項目","PDFE.Views.ImageSettings.textResetCrop":"トリミングをリセット","PDFE.Views.ImageSettings.textRotate90":"90度回転","PDFE.Views.ImageSettings.textRotation":"回転","PDFE.Views.ImageSettings.textSize":"サイズ","PDFE.Views.ImageSettings.textWidth":"幅","PDFE.Views.ImageSettingsAdvanced.textAlt":"代替テキスト","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"説明","PDFE.Views.ImageSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"タイトル","PDFE.Views.ImageSettingsAdvanced.textAngle":"角度","PDFE.Views.ImageSettingsAdvanced.textCenter":"中央揃え","PDFE.Views.ImageSettingsAdvanced.textFlipped":"反転","PDFE.Views.ImageSettingsAdvanced.textFrom":"基準","PDFE.Views.ImageSettingsAdvanced.textGeneral":"標準","PDFE.Views.ImageSettingsAdvanced.textHeight":"高さ","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"水平","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"水平に","PDFE.Views.ImageSettingsAdvanced.textImageName":"画像名","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"比例の一定","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"実際のサイズ","PDFE.Views.ImageSettingsAdvanced.textPlacement":"位置","PDFE.Views.ImageSettingsAdvanced.textPosition":"位置","PDFE.Views.ImageSettingsAdvanced.textRotation":"回転","PDFE.Views.ImageSettingsAdvanced.textSize":"サイズ","PDFE.Views.ImageSettingsAdvanced.textTitle":"画像 - 詳細設定","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"左上隅","PDFE.Views.ImageSettingsAdvanced.textVertical":"縦","PDFE.Views.ImageSettingsAdvanced.textVertically":"縦","PDFE.Views.ImageSettingsAdvanced.textWidth":"幅","PDFE.Views.InsTab.capBlankPage":"空白ページ","PDFE.Views.InsTab.capBtnDateTime":"日付と時間","PDFE.Views.InsTab.capBtnInsHeaderFooter":"ヘッダー/フッター","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"記号","PDFE.Views.InsTab.capBtnPageNum":"ページ番号","PDFE.Views.InsTab.capInsertChart":"グラフ","PDFE.Views.InsTab.capInsertEquation":"方程式","PDFE.Views.InsTab.capInsertHyperlink":"リンク","PDFE.Views.InsTab.capInsertImage":"画像","PDFE.Views.InsTab.capInsertShape":"図形","PDFE.Views.InsTab.capInsertTable":"表","PDFE.Views.InsTab.capInsertText":"テキストボックス","PDFE.Views.InsTab.capInsertTextArt":"テキストアート","PDFE.Views.InsTab.capInsPage":"ページを挿入","PDFE.Views.InsTab.mniCustomTable":"ユーザー設定​​の表の挿入","PDFE.Views.InsTab.mniImageFromFile":"ファイルから画像","PDFE.Views.InsTab.mniImageFromStorage":"ストレージから画像","PDFE.Views.InsTab.mniImageFromUrl":"URLから画像","PDFE.Views.InsTab.mniInsertSSE":"スプレッドシートを挿入","PDFE.Views.InsTab.textAlpha":"ギリシャ小文字アルファ","PDFE.Views.InsTab.textBetta":"ギリシャ小文字ベータ","PDFE.Views.InsTab.textBlackHeart":"ブラック・ハート・スーツ","PDFE.Views.InsTab.textBullet":"箇条書き","PDFE.Views.InsTab.textCopyright":"著作権マーク","PDFE.Views.InsTab.textDegree":"度記号","PDFE.Views.InsTab.textDelta":"ギリシャ小文字デルタ","PDFE.Views.InsTab.textDivision":"「除算」記号","PDFE.Views.InsTab.textDollar":"ドル記号","PDFE.Views.InsTab.textEuro":"ユーロ記号","PDFE.Views.InsTab.textGreaterEqual":"次の値より大きいか等しい","PDFE.Views.InsTab.textInfinity":"無限","PDFE.Views.InsTab.textLessEqual":"次の値より小さいか等しい","PDFE.Views.InsTab.textLetterPi":"ギリシャの小文字ピー","PDFE.Views.InsTab.textMoreSymbols":"その他の記号","PDFE.Views.InsTab.textNotEqualTo":"等しくない","PDFE.Views.InsTab.textOneHalf":"普通分数の1/2","PDFE.Views.InsTab.textOneQuarter":"普通分数の1/4","PDFE.Views.InsTab.textPlusMinus":"プラスマイナス記号","PDFE.Views.InsTab.textRecentlyUsed":"最近使った項目","PDFE.Views.InsTab.textRegistered":"登録商標マーク","PDFE.Views.InsTab.textSection":"「節」記号","PDFE.Views.InsTab.textSmile":"白い笑顔","PDFE.Views.InsTab.textSquareRoot":"平方根","PDFE.Views.InsTab.textTilde":"チルダ","PDFE.Views.InsTab.textTradeMark":"商標マーク","PDFE.Views.InsTab.textYen":"円記号","PDFE.Views.InsTab.tipChangeChart":"グラフ種類の変更","PDFE.Views.InsTab.tipDateTime":"現在の日付と時刻を挿入","PDFE.Views.InsTab.tipEditHeaderFooter":"ヘッダーまたはフッターの編集","PDFE.Views.InsTab.tipInsertChart":"グラフを挿入","PDFE.Views.InsTab.tipInsertEquation":"方程式を挿入","PDFE.Views.InsTab.tipInsertHorizontalText":"横書きテキストボックスの挿入","PDFE.Views.InsTab.tipInsertHyperlink":"リンクを追加する","PDFE.Views.InsTab.tipInsertImage":"画像の挿入","PDFE.Views.InsTab.tipInsertPage":"空白ページの挿入","PDFE.Views.InsTab.tipInsertPageAfter":"後に空白ページを挿入","PDFE.Views.InsTab.tipInsertShape":"図形を挿入","PDFE.Views.InsTab.tipInsertSmartArt":"SmartArtの挿入","PDFE.Views.InsTab.tipInsertSymbol":"記号を挿入","PDFE.Views.InsTab.tipInsertTable":"表の挿入","PDFE.Views.InsTab.tipInsertText":"テキストボックスを挿入","PDFE.Views.InsTab.tipInsertTextArt":"テキストアートの挿入","PDFE.Views.InsTab.tipInsertVerticalText":"縦書きテキストボックスの挿入","PDFE.Views.InsTab.tipPageNum":"ページ番号を挿入","PDFE.Views.InsTab.txtNewPageAfter":"後に空白ページを挿入","PDFE.Views.InsTab.txtNewPageBefore":"前に空白ページを挿入","PDFE.Views.LeftMenu.ariaLeftMenu":"左メニュー","PDFE.Views.LeftMenu.tipAbout":"詳細情報","PDFE.Views.LeftMenu.tipChat":"チャット","PDFE.Views.LeftMenu.tipComments":"コメント","PDFE.Views.LeftMenu.tipNavigation":"ナビゲーション","PDFE.Views.LeftMenu.tipOutline":"見出し","PDFE.Views.LeftMenu.tipPageThumbnails":"ページサムネイル","PDFE.Views.LeftMenu.tipPlugins":"プラグイン","PDFE.Views.LeftMenu.tipSearch":"検索","PDFE.Views.LeftMenu.tipSupport":"フィードバック&サポート","PDFE.Views.LeftMenu.tipTitles":"タイトル","PDFE.Views.LeftMenu.txtDeveloper":"開発者モード","PDFE.Views.LeftMenu.txtEditor":"PDFエディター","PDFE.Views.LeftMenu.txtLimit":"制限されたアクセス","PDFE.Views.LeftMenu.txtTrial":"試用モード","PDFE.Views.LeftMenu.txtTrialDev":"試用開発者モード","PDFE.Views.Navigation.strNavigate":"見出し","PDFE.Views.Navigation.txtClosePanel":"見出しを閉じる","PDFE.Views.Navigation.txtCollapse":"すべてを折りたたむ","PDFE.Views.Navigation.txtEmptyItem":"空白の見出し","PDFE.Views.Navigation.txtEmptyViewer":"ドキュメントに見出しがありません。","PDFE.Views.Navigation.txtExpand":"すべてを展開","PDFE.Views.Navigation.txtExpandToLevel":"レベルまで拡張する","PDFE.Views.Navigation.txtFontSize":"フォントのサイズ","PDFE.Views.Navigation.txtLarge":"大","PDFE.Views.Navigation.txtMedium":"中","PDFE.Views.Navigation.txtSettings":"見出しの設定","PDFE.Views.Navigation.txtSmall":"小","PDFE.Views.Navigation.txtWrapHeadings":"長い見出しを折り返す","PDFE.Views.PageThumbnails.textClosePanel":"ページサムネイルを閉じる","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"表示されているページをハイライト","PDFE.Views.PageThumbnails.textPageThumbnails":"ページサムネイル","PDFE.Views.PageThumbnails.textThumbnailsSettings":"サムネイルの設定","PDFE.Views.PageThumbnails.textThumbnailsSize":"サムネイルサイズ","PDFE.Views.ParagraphSettings.strLineHeight":"行間","PDFE.Views.ParagraphSettings.strParagraphSpacing":"段落の間隔","PDFE.Views.ParagraphSettings.strSpacingAfter":"後に","PDFE.Views.ParagraphSettings.strSpacingBefore":"前","PDFE.Views.ParagraphSettings.textAdvanced":"詳細設定を表示","PDFE.Views.ParagraphSettings.textAt":"値","PDFE.Views.ParagraphSettings.textAtLeast":"最小","PDFE.Views.ParagraphSettings.textAuto":"倍数","PDFE.Views.ParagraphSettings.textExact":"固定値","PDFE.Views.ParagraphSettings.txtAutoText":"自動","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"指定されたタブは、このフィールドに表示されます。","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"全ての英大文字","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"方向","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"二重取り消し線","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"インデント","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"行間","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"右揃え","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"後に","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"前","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"特殊","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"フォント","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"インデント&行間隔","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型英大文字\t","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"間隔","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"取り消し線","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"下付き文字","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"上付き文字","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"タブ","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"配置","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"倍数","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"文字間のスペース","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"デフォルトのタブ","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"左から右へ","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"右から左へ","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"効果","PDFE.Views.ParagraphSettingsAdvanced.textExact":"固定値","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"先頭行","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"ぶら下げ","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"両端揃え","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(なし)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"削除","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"全てを削除","PDFE.Views.ParagraphSettingsAdvanced.textSet":"指定","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"中央揃え","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"タブの位置","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"右揃え","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 詳細設定","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"自動","PDFE.Views.PrintWithPreview.textMarginsLast":"最後に適用した設定","PDFE.Views.PrintWithPreview.textMarginsModerate":"中","PDFE.Views.PrintWithPreview.textMarginsNarrow":"狭い","PDFE.Views.PrintWithPreview.textMarginsNormal":"標準","PDFE.Views.PrintWithPreview.textMarginsWide":"広い","PDFE.Views.PrintWithPreview.txtAllPages":"全ページ","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"白黒印刷","PDFE.Views.PrintWithPreview.txtBothSides":"両面印刷","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"長辺を綴じる","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"短辺を綴じる","PDFE.Views.PrintWithPreview.txtBottom":"最下部","PDFE.Views.PrintWithPreview.txtColorPrinting":"カラー印刷","PDFE.Views.PrintWithPreview.txtContent":"コンテンツ","PDFE.Views.PrintWithPreview.txtCopies":"コピー","PDFE.Views.PrintWithPreview.txtCurrentPage":"現在のページ","PDFE.Views.PrintWithPreview.txtCustom":"カスタム","PDFE.Views.PrintWithPreview.txtCustomPages":"カスタム印刷","PDFE.Views.PrintWithPreview.txtDocument":"ドキュメント","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"ドキュメントとマークアップ","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"ドキュメントとスタンプ","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"フォームフィールドのみ","PDFE.Views.PrintWithPreview.txtLandscape":"横向き","PDFE.Views.PrintWithPreview.txtLeft":"左","PDFE.Views.PrintWithPreview.txtMargins":"余白","PDFE.Views.PrintWithPreview.txtOf":"{0}から","PDFE.Views.PrintWithPreview.txtOneSide":"片面印刷","PDFE.Views.PrintWithPreview.txtOneSideDesc":"ページの片面のみを印刷する","PDFE.Views.PrintWithPreview.txtPage":"ページ","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"ページ番号が正しくありません。","PDFE.Views.PrintWithPreview.txtPageOrientation":"印刷の向き","PDFE.Views.PrintWithPreview.txtPages":"ページ","PDFE.Views.PrintWithPreview.txtPageSize":"ページのサイズ","PDFE.Views.PrintWithPreview.txtPortrait":"縦向き","PDFE.Views.PrintWithPreview.txtPrint":"印刷","PDFE.Views.PrintWithPreview.txtPrinter":"プリンター","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"プリンターが選択されていない","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"プリンターが見つかりません","PDFE.Views.PrintWithPreview.txtPrintPdf":"PDFに印刷","PDFE.Views.PrintWithPreview.txtPrintRange":"印刷範囲\t","PDFE.Views.PrintWithPreview.txtPrintSides":"両面印刷","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"システムダイアログで印刷する","PDFE.Views.PrintWithPreview.txtRight":"右揃え","PDFE.Views.PrintWithPreview.txtSelection":"選択","PDFE.Views.PrintWithPreview.txtTop":"上","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"プリンターを待っています","PDFE.Views.RedactTab.capApplyRedactions":"編集を適用する","PDFE.Views.RedactTab.capFindRedact":"検索&黒消し","PDFE.Views.RedactTab.capMarkRedact":"黒消し対象としてマークする","PDFE.Views.RedactTab.capRedactPages":"ページを黒消し","PDFE.Views.RedactTab.tipApplyRedactions":"編集を適用する","PDFE.Views.RedactTab.tipFindRedact":"検索&黒消し","PDFE.Views.RedactTab.tipMarkForRedact":"黒消し対象としてマークする","PDFE.Views.RedactTab.tipRedactPages":"ページを黒消し","PDFE.Views.RedactTab.txtMarkCurrentPage":"現在のページをマークする","PDFE.Views.RedactTab.txtSelectRange":"範囲の選択","PDFE.Views.RightMenu.ariaRightMenu":"右メニュー","PDFE.Views.RightMenu.txtChartSettings":"グラフの設定","PDFE.Views.RightMenu.txtFormSettings":"フォーム設定","PDFE.Views.RightMenu.txtImageSettings":"画像の設定","PDFE.Views.RightMenu.txtParagraphSettings":"段落の設定","PDFE.Views.RightMenu.txtShapeSettings":"図形の設定","PDFE.Views.RightMenu.txtTableSettings":"表の設定","PDFE.Views.RightMenu.txtTextArtSettings":"テキストアートの設定","PDFE.Views.ShapeSettings.strBackground":"背景色","PDFE.Views.ShapeSettings.strChange":"図形の変更","PDFE.Views.ShapeSettings.strColor":"色","PDFE.Views.ShapeSettings.strFill":"塗りつぶし","PDFE.Views.ShapeSettings.strForeground":"前景色","PDFE.Views.ShapeSettings.strPattern":"パターン","PDFE.Views.ShapeSettings.strShadow":"影を表示する","PDFE.Views.ShapeSettings.strSize":"サイズ","PDFE.Views.ShapeSettings.strStroke":"線","PDFE.Views.ShapeSettings.strTransparency":"不透明度","PDFE.Views.ShapeSettings.strType":"タイプ","PDFE.Views.ShapeSettings.textAdjustShadow":"影の調整","PDFE.Views.ShapeSettings.textAdvanced":"詳細設定を表示","PDFE.Views.ShapeSettings.textAngle":"角度","PDFE.Views.ShapeSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","PDFE.Views.ShapeSettings.textColor":"色で塗りつぶし","PDFE.Views.ShapeSettings.textDirection":"方向","PDFE.Views.ShapeSettings.textEditPoints":"頂点の編集","PDFE.Views.ShapeSettings.textEditShape":"図形の編集","PDFE.Views.ShapeSettings.textEmptyPattern":"パターンなし","PDFE.Views.ShapeSettings.textEyedropper":"スポイト","PDFE.Views.ShapeSettings.textFlip":"反転する","PDFE.Views.ShapeSettings.textFromFile":"ファイルから","PDFE.Views.ShapeSettings.textFromStorage":"ストレージから","PDFE.Views.ShapeSettings.textFromUrl":"URLから","PDFE.Views.ShapeSettings.textGradient":"グラデーションポイント","PDFE.Views.ShapeSettings.textGradientFill":"塗りつぶし (グラデーション)","PDFE.Views.ShapeSettings.textHint270":"反時計回りに90度回転","PDFE.Views.ShapeSettings.textHint90":"時計回りに90度回転","PDFE.Views.ShapeSettings.textHintFlipH":"左右に反転","PDFE.Views.ShapeSettings.textHintFlipV":"上下に反転","PDFE.Views.ShapeSettings.textImageTexture":"画像またはテクスチャ","PDFE.Views.ShapeSettings.textLinear":"線形","PDFE.Views.ShapeSettings.textMoreColors":"その他の色","PDFE.Views.ShapeSettings.textNoFill":"塗りつぶしなし","PDFE.Views.ShapeSettings.textNoShadow":"影なし","PDFE.Views.ShapeSettings.textPatternFill":"パターン","PDFE.Views.ShapeSettings.textPosition":"位置","PDFE.Views.ShapeSettings.textRadial":"放射状","PDFE.Views.ShapeSettings.textRecentlyUsed":"最近使った項目","PDFE.Views.ShapeSettings.textRotate90":"90度回転","PDFE.Views.ShapeSettings.textRotation":"回転","PDFE.Views.ShapeSettings.textSelectImage":"画像の選択","PDFE.Views.ShapeSettings.textSelectTexture":"選択","PDFE.Views.ShapeSettings.textShadow":"影","PDFE.Views.ShapeSettings.textStretch":"ストレッチ","PDFE.Views.ShapeSettings.textStyle":"スタイル","PDFE.Views.ShapeSettings.textTexture":"テクスチャから","PDFE.Views.ShapeSettings.textTile":"タイル","PDFE.Views.ShapeSettings.tipAddGradientPoint":"グラデーションポイントの追加","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"グラデーションポイントを削除する","PDFE.Views.ShapeSettings.txtBrownPaper":"クラフト紙","PDFE.Views.ShapeSettings.txtCanvas":"キャンバス","PDFE.Views.ShapeSettings.txtCarton":"カートン","PDFE.Views.ShapeSettings.txtDarkFabric":"ダークファブリック","PDFE.Views.ShapeSettings.txtGrain":"粒子","PDFE.Views.ShapeSettings.txtGranite":"花崗岩","PDFE.Views.ShapeSettings.txtGreyPaper":"グレー紙","PDFE.Views.ShapeSettings.txtKnit":"ニット","PDFE.Views.ShapeSettings.txtLeather":"レザー","PDFE.Views.ShapeSettings.txtNoBorders":"線なし","PDFE.Views.ShapeSettings.txtOffsetBottom":"オフセット:下","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"オフセット:左下","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"オフセット:右下","PDFE.Views.ShapeSettings.txtOffsetCenter":"オフセット:中央","PDFE.Views.ShapeSettings.txtOffsetLeft":"オフセット:左","PDFE.Views.ShapeSettings.txtOffsetRight":"オフセット:右","PDFE.Views.ShapeSettings.txtOffsetTop":"オフセット:上","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"オフセット:左上","PDFE.Views.ShapeSettings.txtOffsetTopRight":"オフセット:右上","PDFE.Views.ShapeSettings.txtPapyrus":"パピルス","PDFE.Views.ShapeSettings.txtWood":"木","PDFE.Views.ShapeSettingsAdvanced.strColumns":"列","PDFE.Views.ShapeSettingsAdvanced.strMargins":"テキストの埋め込み文字","PDFE.Views.ShapeSettingsAdvanced.textAlt":"代替テキスト","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"説明","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"タイトル","PDFE.Views.ShapeSettingsAdvanced.textAngle":"角度","PDFE.Views.ShapeSettingsAdvanced.textArrows":"矢印","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"自動調整","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"始点のサイズ","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"始点のスタイル","PDFE.Views.ShapeSettingsAdvanced.textBevel":"斜角","PDFE.Views.ShapeSettingsAdvanced.textBottom":"下","PDFE.Views.ShapeSettingsAdvanced.textCapType":"大文字スタイル","PDFE.Views.ShapeSettingsAdvanced.textCenter":"中央揃え","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"列数","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"終点のサイズ","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"終点のスタイル","PDFE.Views.ShapeSettingsAdvanced.textFlat":"フラット","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"反転","PDFE.Views.ShapeSettingsAdvanced.textFrom":"基準","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"標準","PDFE.Views.ShapeSettingsAdvanced.textHeight":"高さ","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"水平","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"水平に","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"結合の種類","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"比例の一定","PDFE.Views.ShapeSettingsAdvanced.textLeft":"左","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"線のスタイル","PDFE.Views.ShapeSettingsAdvanced.textMiter":"角","PDFE.Views.ShapeSettingsAdvanced.textNofit":"自動調整なし","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"位置","PDFE.Views.ShapeSettingsAdvanced.textPosition":"位置","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"テキストに合わせて図形を調整","PDFE.Views.ShapeSettingsAdvanced.textRight":"右揃え","PDFE.Views.ShapeSettingsAdvanced.textRotation":"回転","PDFE.Views.ShapeSettingsAdvanced.textRound":"円い","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"図形名","PDFE.Views.ShapeSettingsAdvanced.textShrink":"はみ出す場合だけ自動調整する","PDFE.Views.ShapeSettingsAdvanced.textSize":"サイズ","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"列の間隔","PDFE.Views.ShapeSettingsAdvanced.textSquare":"四角","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"テキストボックス","PDFE.Views.ShapeSettingsAdvanced.textTitle":"図形 - 詳細設定","PDFE.Views.ShapeSettingsAdvanced.textTop":"上","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"左上隅","PDFE.Views.ShapeSettingsAdvanced.textVertical":"縦","PDFE.Views.ShapeSettingsAdvanced.textVertically":"縦","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"太さ&矢印","PDFE.Views.ShapeSettingsAdvanced.textWidth":"幅","PDFE.Views.ShapeSettingsAdvanced.txtNone":"なし","PDFE.Views.Statusbar.goToPageText":"ページに移動","PDFE.Views.Statusbar.pageIndexText":"{0}/{1} ページ","PDFE.Views.Statusbar.tipFitPage":"ページに合わせる","PDFE.Views.Statusbar.tipFitWidth":"幅に合わせる","PDFE.Views.Statusbar.tipHandTool":"「手のひら」ツール","PDFE.Views.Statusbar.tipPageNext":"次のページへ","PDFE.Views.Statusbar.tipPagePrev":"前のページへ","PDFE.Views.Statusbar.tipSelectTool":"選択ツール","PDFE.Views.Statusbar.tipZoomFactor":"拡大図","PDFE.Views.Statusbar.tipZoomIn":"拡大","PDFE.Views.Statusbar.tipZoomOut":"縮小","PDFE.Views.Statusbar.txtPageNumInvalid":"ページ番号が正しくありません。","PDFE.Views.TableSettings.deleteColumnText":"列の削除","PDFE.Views.TableSettings.deleteRowText":"行の削除","PDFE.Views.TableSettings.deleteTableText":"表の削除","PDFE.Views.TableSettings.insertColumnLeftText":"左に列を挿入","PDFE.Views.TableSettings.insertColumnRightText":"右に列を挿入","PDFE.Views.TableSettings.insertRowAboveText":"上に行を挿入","PDFE.Views.TableSettings.insertRowBelowText":"下に行を挿入","PDFE.Views.TableSettings.mergeCellsText":"セルの結合","PDFE.Views.TableSettings.selectCellText":"セルの選択","PDFE.Views.TableSettings.selectColumnText":"列の選択","PDFE.Views.TableSettings.selectRowText":"行の選択","PDFE.Views.TableSettings.selectTableText":"テーブルの選択","PDFE.Views.TableSettings.splitCellsText":"セルを分割...","PDFE.Views.TableSettings.splitCellTitleText":"セルを分割","PDFE.Views.TableSettings.textAdvanced":"詳細設定を表示","PDFE.Views.TableSettings.textBackColor":"背景色","PDFE.Views.TableSettings.textBanded":"縞模様","PDFE.Views.TableSettings.textBorderColor":"色","PDFE.Views.TableSettings.textBorders":"罫線のスタイル","PDFE.Views.TableSettings.textCellSize":"セルのサイズ","PDFE.Views.TableSettings.textColumns":"列","PDFE.Views.TableSettings.textDistributeCols":"列の幅を揃える","PDFE.Views.TableSettings.textDistributeRows":"行の高さを揃える","PDFE.Views.TableSettings.textEdit":"行&列","PDFE.Views.TableSettings.textEmptyTemplate":"テンプレートなし","PDFE.Views.TableSettings.textFirst":"第一","PDFE.Views.TableSettings.textHeader":"ヘッダー","PDFE.Views.TableSettings.textHeight":"高さ","PDFE.Views.TableSettings.textLast":"最後","PDFE.Views.TableSettings.textRows":"行","PDFE.Views.TableSettings.textSelectBorders":"選択したスタイルを適用する罫線を選択してください","PDFE.Views.TableSettings.textTemplate":"テンプレートから選択","PDFE.Views.TableSettings.textTotal":"合計","PDFE.Views.TableSettings.textWidth":"幅","PDFE.Views.TableSettings.tipAll":"外枠とすべての内枠の線を設定","PDFE.Views.TableSettings.tipBottom":"外部の罫線(下)だけを設定する","PDFE.Views.TableSettings.tipInner":"内側の線のみを設定する","PDFE.Views.TableSettings.tipInnerHor":"水平方向の内側の線のみを設定する","PDFE.Views.TableSettings.tipInnerVert":"垂直の内側の線のみを設定する","PDFE.Views.TableSettings.tipLeft":"外部の罫線(左)だけを設定する","PDFE.Views.TableSettings.tipNone":"罫線の設定なし","PDFE.Views.TableSettings.tipOuter":"外部の罫線のみを設定する","PDFE.Views.TableSettings.tipRight":"外部の罫線(右)のみを設定する","PDFE.Views.TableSettings.tipTop":"外部の罫線(上)のみを設定する","PDFE.Views.TableSettings.txtGroupTable_Custom":"ユーザー設定","PDFE.Views.TableSettings.txtGroupTable_Dark":"ダーク","PDFE.Views.TableSettings.txtGroupTable_Light":"明るい","PDFE.Views.TableSettings.txtGroupTable_Medium":"中","PDFE.Views.TableSettings.txtGroupTable_Optimal":"ドキュメントに最適なスタイル","PDFE.Views.TableSettings.txtNoBorders":"枠線なし","PDFE.Views.TableSettings.txtTable_Accent":"アクセント","PDFE.Views.TableSettings.txtTable_DarkStyle":"ダークスタイル","PDFE.Views.TableSettings.txtTable_LightStyle":"ライトスタイル","PDFE.Views.TableSettings.txtTable_MediumStyle":"ミディアムスタイル","PDFE.Views.TableSettings.txtTable_NoGrid":"枠線なし","PDFE.Views.TableSettings.txtTable_NoStyle":"スタイルなし","PDFE.Views.TableSettings.txtTable_TableGrid":"表の枠線","PDFE.Views.TableSettings.txtTable_ThemedStyle":"テーマのスタイル","PDFE.Views.TableSettingsAdvanced.textAlt":"代替テキスト","PDFE.Views.TableSettingsAdvanced.textAltDescription":"説明","PDFE.Views.TableSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","PDFE.Views.TableSettingsAdvanced.textAltTitle":"タイトル","PDFE.Views.TableSettingsAdvanced.textBottom":"下","PDFE.Views.TableSettingsAdvanced.textCenter":"中央揃え","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"既定の余白を使用","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"既定の余白","PDFE.Views.TableSettingsAdvanced.textFrom":"基準","PDFE.Views.TableSettingsAdvanced.textGeneral":"標準","PDFE.Views.TableSettingsAdvanced.textHeight":"高さ","PDFE.Views.TableSettingsAdvanced.textHorizontal":"水平","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"比例の一定","PDFE.Views.TableSettingsAdvanced.textLeft":"左","PDFE.Views.TableSettingsAdvanced.textMargins":"セルの余白","PDFE.Views.TableSettingsAdvanced.textPlacement":"位置","PDFE.Views.TableSettingsAdvanced.textPosition":"位置","PDFE.Views.TableSettingsAdvanced.textRight":"右揃え","PDFE.Views.TableSettingsAdvanced.textSize":"サイズ","PDFE.Views.TableSettingsAdvanced.textTableName":"表の名前","PDFE.Views.TableSettingsAdvanced.textTitle":"表 - 詳細設定","PDFE.Views.TableSettingsAdvanced.textTop":"上","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"左上隅","PDFE.Views.TableSettingsAdvanced.textVertical":"縦","PDFE.Views.TableSettingsAdvanced.textWidth":"幅","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"余白","PDFE.Views.TextArtSettings.strBackground":"背景色","PDFE.Views.TextArtSettings.strColor":"色","PDFE.Views.TextArtSettings.strFill":"塗りつぶし","PDFE.Views.TextArtSettings.strForeground":"前景色","PDFE.Views.TextArtSettings.strPattern":"パターン","PDFE.Views.TextArtSettings.strSize":"サイズ","PDFE.Views.TextArtSettings.strStroke":"線","PDFE.Views.TextArtSettings.strTransparency":"不透明度","PDFE.Views.TextArtSettings.strType":"タイプ","PDFE.Views.TextArtSettings.textAngle":"角度","PDFE.Views.TextArtSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","PDFE.Views.TextArtSettings.textColor":"色で塗りつぶし","PDFE.Views.TextArtSettings.textDirection":"方向","PDFE.Views.TextArtSettings.textEmptyPattern":"パターンなし","PDFE.Views.TextArtSettings.textFromFile":"ファイルから","PDFE.Views.TextArtSettings.textFromUrl":"URLから","PDFE.Views.TextArtSettings.textGradient":"グラデーションポイント","PDFE.Views.TextArtSettings.textGradientFill":"塗りつぶし (グラデーション)","PDFE.Views.TextArtSettings.textImageTexture":"画像またはテクスチャ","PDFE.Views.TextArtSettings.textLinear":"線形","PDFE.Views.TextArtSettings.textNoFill":"塗りつぶしなし","PDFE.Views.TextArtSettings.textPatternFill":"パターン","PDFE.Views.TextArtSettings.textPosition":"位置","PDFE.Views.TextArtSettings.textRadial":"放射状","PDFE.Views.TextArtSettings.textSelectTexture":"選択","PDFE.Views.TextArtSettings.textStretch":"ストレッチ","PDFE.Views.TextArtSettings.textStyle":"スタイル","PDFE.Views.TextArtSettings.textTemplate":"テンプレート","PDFE.Views.TextArtSettings.textTexture":"テクスチャから","PDFE.Views.TextArtSettings.textTile":"タイル","PDFE.Views.TextArtSettings.textTransform":"変換","PDFE.Views.TextArtSettings.tipAddGradientPoint":"グラデーションポイントの追加","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"グラデーションポイントを削除する","PDFE.Views.TextArtSettings.txtBrownPaper":"クラフト紙","PDFE.Views.TextArtSettings.txtCanvas":"キャンバス","PDFE.Views.TextArtSettings.txtCarton":"カートン","PDFE.Views.TextArtSettings.txtDarkFabric":"ダークファブリック","PDFE.Views.TextArtSettings.txtGrain":"粒子","PDFE.Views.TextArtSettings.txtGranite":"花崗岩","PDFE.Views.TextArtSettings.txtGreyPaper":"グレー紙","PDFE.Views.TextArtSettings.txtKnit":"ニット","PDFE.Views.TextArtSettings.txtLeather":"レザー","PDFE.Views.TextArtSettings.txtNoBorders":"線なし","PDFE.Views.TextArtSettings.txtPapyrus":"パピルス","PDFE.Views.TextArtSettings.txtWood":"木","PDFE.Views.Toolbar.capBtnAddComment":"コメントを追加","PDFE.Views.Toolbar.capBtnArrowComment":"矢印","PDFE.Views.Toolbar.capBtnCircleComment":"丸","PDFE.Views.Toolbar.capBtnComment":"コメント","PDFE.Views.Toolbar.capBtnDelPage":"ページを削除","PDFE.Views.Toolbar.capBtnDownloadForm":"PDFとして保存","PDFE.Views.Toolbar.capBtnEditText":"テキストの編集","PDFE.Views.Toolbar.capBtnHand":"手のひら","PDFE.Views.Toolbar.capBtnNext":"次のフィールド","PDFE.Views.Toolbar.capBtnPolyLineComment":"接続された線","PDFE.Views.Toolbar.capBtnPrev":"前のフィールド","PDFE.Views.Toolbar.capBtnRecognize":"テキストの編集","PDFE.Views.Toolbar.capBtnRectComment":"矩形","PDFE.Views.Toolbar.capBtnRotate":"回転","PDFE.Views.Toolbar.capBtnRotatePage":"ページの回転","PDFE.Views.Toolbar.capBtnSaveForm":"PDFとして保存","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"名前を付けて保存","PDFE.Views.Toolbar.capBtnSelect":"選択","PDFE.Views.Toolbar.capBtnShowComments":"コメントの表示","PDFE.Views.Toolbar.capBtnStamp":"スタンプ","PDFE.Views.Toolbar.capBtnSubmit":"送信","PDFE.Views.Toolbar.capBtnTextCallout":"テキスト吹き出し","PDFE.Views.Toolbar.capBtnTextComment":"テキストコメント","PDFE.Views.Toolbar.mniCapitalizeWords":"各単語を大文字にする","PDFE.Views.Toolbar.mniInsertSSE":"スプレッドシートを挿入","PDFE.Views.Toolbar.mniLowerCase":"小文字","PDFE.Views.Toolbar.mniSentenceCase":"センテンスケース","PDFE.Views.Toolbar.mniToggleCase":"大文字と小文字を入れ替える","PDFE.Views.Toolbar.mniUpperCase":"大文字","PDFE.Views.Toolbar.strMenuNoFill":"塗りつぶしなし","PDFE.Views.Toolbar.textAlignBottom":"テキストの下揃え","PDFE.Views.Toolbar.textAlignCenter":"テキストを中央に揃える","PDFE.Views.Toolbar.textAlignJust":"両端揃え","PDFE.Views.Toolbar.textAlignLeft":"テキストの左揃え","PDFE.Views.Toolbar.textAlignMiddle":"テキストを中央揃え","PDFE.Views.Toolbar.textAlignRight":"テキストの右揃え","PDFE.Views.Toolbar.textAlignTop":"テキストの上揃え","PDFE.Views.Toolbar.textArrangeBack":"背景へ移動","PDFE.Views.Toolbar.textArrangeBackward":"背面ヘ移動","PDFE.Views.Toolbar.textArrangeForward":"前面ヘ移動","PDFE.Views.Toolbar.textArrangeFront":"前景に移動","PDFE.Views.Toolbar.textBold":"太字","PDFE.Views.Toolbar.textClear":"フィールドをクリアする","PDFE.Views.Toolbar.textClearFields":"すべてのフィールドをクリアする","PDFE.Views.Toolbar.textColumnsCustom":"カスタム設定の列","PDFE.Views.Toolbar.textColumnsOne":"1列","PDFE.Views.Toolbar.textColumnsThree":"3列","PDFE.Views.Toolbar.textColumnsTwo":"2列","PDFE.Views.Toolbar.textDirLtr":"左から右へ","PDFE.Views.Toolbar.textDirRtl":"右から左へ","PDFE.Views.Toolbar.textEditMode":"PDFの編集","PDFE.Views.Toolbar.textHighlight":"ハイライト","PDFE.Views.Toolbar.textItalic":"イタリック","PDFE.Views.Toolbar.textListSettings":"リストの設定","PDFE.Views.Toolbar.textShapeAlignBottom":"下揃え","PDFE.Views.Toolbar.textShapeAlignCenter":"中央揃え","PDFE.Views.Toolbar.textShapeAlignLeft":"左揃え","PDFE.Views.Toolbar.textShapeAlignMiddle":"中央揃え","PDFE.Views.Toolbar.textShapeAlignRight":"右揃え","PDFE.Views.Toolbar.textShapeAlignTop":"上揃え","PDFE.Views.Toolbar.textShapesCombine":"結合","PDFE.Views.Toolbar.textShapesFragment":"断片","PDFE.Views.Toolbar.textShapesIntersect":"交差","PDFE.Views.Toolbar.textShapesSubstract":"減算","PDFE.Views.Toolbar.textShapesUnion":"連合","PDFE.Views.Toolbar.textStrikeout":"取り消し線","PDFE.Views.Toolbar.textSubmited":"フォームの送信成功","PDFE.Views.Toolbar.textSubscript":"下付き文字","PDFE.Views.Toolbar.textSuperscript":"上付き文字","PDFE.Views.Toolbar.textTabCollaboration":"共同編集","PDFE.Views.Toolbar.textTabComment":"コメント","PDFE.Views.Toolbar.textTabEdit":"編集","PDFE.Views.Toolbar.textTabFile":"ファイル","PDFE.Views.Toolbar.textTabHome":"ホーム","PDFE.Views.Toolbar.textTabInsert":"挿入","PDFE.Views.Toolbar.textTabRedact":"黒消し","PDFE.Views.Toolbar.textTabView":"表示","PDFE.Views.Toolbar.textUnderline":"下線","PDFE.Views.Toolbar.tipAddComment":"コメントを追加","PDFE.Views.Toolbar.tipChangeCase":"大文字小文字を変更","PDFE.Views.Toolbar.tipClearStyle":"スタイルのクリア","PDFE.Views.Toolbar.tipColumns":"列の挿入","PDFE.Views.Toolbar.tipCopy":"コピー","PDFE.Views.Toolbar.tipCut":"切り取り","PDFE.Views.Toolbar.tipDecFont":"フォントサイズの縮小","PDFE.Views.Toolbar.tipDecPrLeft":"インデントを減らす","PDFE.Views.Toolbar.tipDelPage":"ページを削除","PDFE.Views.Toolbar.tipDownload":"ファイルをダウンロード","PDFE.Views.Toolbar.tipDownloadForm":"記入可能なPDF文書としてファイルをダウンロードする","PDFE.Views.Toolbar.tipEditMode":"テキスト、図形、画像などを追加または編集する","PDFE.Views.Toolbar.tipEditText":"テキストの編集","PDFE.Views.Toolbar.tipFirstPage":"最初のページへ","PDFE.Views.Toolbar.tipFontColor":"フォントの色","PDFE.Views.Toolbar.tipFontName":"フォント","PDFE.Views.Toolbar.tipFontSize":"フォントのサイズ","PDFE.Views.Toolbar.tipHAligh":"左右の整列","PDFE.Views.Toolbar.tipHandTool":"「手のひら」ツール","PDFE.Views.Toolbar.tipHighlightColor":"蛍光ペンの色","PDFE.Views.Toolbar.tipIncFont":"フォントサイズの拡大","PDFE.Views.Toolbar.tipIncPrLeft":"インデントを増やす","PDFE.Views.Toolbar.tipInsertArrowComment":"矢印を描く","PDFE.Views.Toolbar.tipInsertCircleComment":"円または楕円を描く","PDFE.Views.Toolbar.tipInsertPolyLineComment":"互いに接続する線を描く","PDFE.Views.Toolbar.tipInsertRectComment":"長方形または正方形を描く","PDFE.Views.Toolbar.tipInsertStamp":"スタンプを貼り付ける","PDFE.Views.Toolbar.tipInsertTextCallout":"テキストの吹き出しを挿入","PDFE.Views.Toolbar.tipInsertTextComment":"テキストコメントを挿入","PDFE.Views.Toolbar.tipLastPage":"最後のページへ","PDFE.Views.Toolbar.tipLineSpace":"行間","PDFE.Views.Toolbar.tipMarkers":"箇条書き","PDFE.Views.Toolbar.tipMarkersArrow":"箇条書き(矢印)","PDFE.Views.Toolbar.tipMarkersCheckmark":"箇条書き(チェックマーク)","PDFE.Views.Toolbar.tipMarkersDash":"「ダッシュ」記号","PDFE.Views.Toolbar.tipMarkersFRhombus":"箇条書き(ひし形)","PDFE.Views.Toolbar.tipMarkersFRound":"箇条書き(丸)","PDFE.Views.Toolbar.tipMarkersFSquare":"箇条書き(四角)","PDFE.Views.Toolbar.tipMarkersHRound":"箇条書き(円)","PDFE.Views.Toolbar.tipMarkersStar":"箇条書き(星)","PDFE.Views.Toolbar.tipNextForm":"次のフィールドに移動する","PDFE.Views.Toolbar.tipNextPage":"次のページへ","PDFE.Views.Toolbar.tipNone":"なし","PDFE.Views.Toolbar.tipNumbers":"番号付け","PDFE.Views.Toolbar.tipPaste":"貼り付け","PDFE.Views.Toolbar.tipPrevForm":"前のフィールドに移動する","PDFE.Views.Toolbar.tipPrevPage":"前のページへ","PDFE.Views.Toolbar.tipPrint":"印刷","PDFE.Views.Toolbar.tipPrintQuick":"クイックプリント","PDFE.Views.Toolbar.tipRecognize":"テキストの編集","PDFE.Views.Toolbar.tipRedo":"やり直す","PDFE.Views.Toolbar.tipRotate":"ページの回転","PDFE.Views.Toolbar.tipSave":"保存","PDFE.Views.Toolbar.tipSaveCoauth":"他のユーザが変更を見れるために変更を保存します。","PDFE.Views.Toolbar.tipSaveForm":"ファイルをPDFの記入式ドキュメントとして保存","PDFE.Views.Toolbar.tipSelectAll":"すべてを選択","PDFE.Views.Toolbar.tipSelectTool":"選択ツール","PDFE.Views.Toolbar.tipShapeAlign":"図形の配置","PDFE.Views.Toolbar.tipShapeArrange":"配置","PDFE.Views.Toolbar.tipShapeMerge":"図形を結合","PDFE.Views.Toolbar.tipSubmit":"フォームを送信","PDFE.Views.Toolbar.tipSynchronize":"このドキュメントは他のユーザーによって変更されました。クリックして変更を保存し、更新を再読み込みしてください。","PDFE.Views.Toolbar.tipTextDir":"文字方向","PDFE.Views.Toolbar.tipUndo":"元に戻す","PDFE.Views.Toolbar.tipVAligh":"垂直揃え","PDFE.Views.Toolbar.txtArrowComment":"矢印","PDFE.Views.Toolbar.txtCircleComment":"丸","PDFE.Views.Toolbar.txtDistribHor":"左右に整列","PDFE.Views.Toolbar.txtDistribVert":"上下に整列","PDFE.Views.Toolbar.txtGroup":"グループ","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"選択したオブジェクトを整列する","PDFE.Views.Toolbar.txtOpacity":"不透明度","PDFE.Views.Toolbar.txtPageAlign":"ページに揃え","PDFE.Views.Toolbar.txtPolyLineComment":"接続された線","PDFE.Views.Toolbar.txtRectComment":"矩形","PDFE.Views.Toolbar.txtRotateLeft":"左に回転する","PDFE.Views.Toolbar.txtRotatePage":"ページの回転","PDFE.Views.Toolbar.txtRotatePageRight":"ページの右回転","PDFE.Views.Toolbar.txtRotateRight":"右に回転する","PDFE.Views.Toolbar.txtSize":"サイズ","PDFE.Views.Toolbar.txtUngroup":"グループ化解除","PDFE.Views.ViewTab.capBtnRecognize":"テキストの編集","PDFE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","PDFE.Views.ViewTab.textDarkDocument":"ダークドキュメント","PDFE.Views.ViewTab.textEditMode":"PDFの編集","PDFE.Views.ViewTab.textFill":"塗りつぶし","PDFE.Views.ViewTab.textFitToPage":"ページに合わせる","PDFE.Views.ViewTab.textFitToWidth":"幅に合わせる","PDFE.Views.ViewTab.textInterfaceTheme":"インターフェイスのテーマ","PDFE.Views.ViewTab.textLeftMenu":"左パネル","PDFE.Views.ViewTab.textLine":"線","PDFE.Views.ViewTab.textNavigation":"ナビゲーション","PDFE.Views.ViewTab.textOutline":"見出し","PDFE.Views.ViewTab.textRightMenu":"右パネル","PDFE.Views.ViewTab.textStatusBar":"ステータスバー","PDFE.Views.ViewTab.textTabStyle":"タブのスタイル","PDFE.Views.ViewTab.textZoom":"拡大図","PDFE.Views.ViewTab.tipDarkDocument":"ダークドキュメント","PDFE.Views.ViewTab.tipEditMode":"テキスト、図形、画像などを追加または編集する","PDFE.Views.ViewTab.tipFitToPage":"ページに合わせる","PDFE.Views.ViewTab.tipFitToWidth":"幅に合わせる","PDFE.Views.ViewTab.tipHeadings":"見出し","PDFE.Views.ViewTab.tipInterfaceTheme":"インターフェイスのテーマ","PDFE.Views.ViewTab.tipRecognize":"テキストの編集"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":" 警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.ExternalLinks.textAddExternalData":"外部ソースへのリンクが追加されました。このようなリンクは、「データ」タブで更新することができます。","Common.Controllers.ExternalLinks.textDontUpdate":"アップデートしない","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"エラー:アップデートに失敗しました","Common.Controllers.ExternalLinks.warnUpdateExternalData":"このワークブックには、安全でない可能性のある1つまたは複数の外部ソースへのリンクが含まれています。
リンクを信頼する場合は、最新のデータを取得するためにそれらを更新してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"このドキュメントには、安全でない可能性のある外部ソースへのリンクが1つ以上含まれています。
リンクを信頼できる場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"このプレゼンテーションには、安全でない可能性のある外部ソースへのリンクが含まれています。
リンクを信頼する場合は、更新して最新のデータを取得してください。","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"履歴の読み込みに失敗しました","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"テーブルの一番下に新しい行を追加する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"選択したテキスト部分に見出し1のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"選択したテキスト部分に見出し2のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"選択されたテキスト部分に見出し3のスタイルを適用する。","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"選択したテキスト断片から順不同の箇条書きリストを作成するか、新しいリストを開始する。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"キーボードの矢印キーを使って、選択したオブジェクトを大きく下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"キーボードの矢印キーを使って、選択したオブジェクトを大きく左に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"キーボードの矢印キーを使って、選択したオブジェクトを大きく右に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"キーボードの矢印キーを使って、選択したオブジェクトを大きく上に移動させる。","Common.Controllers.Shortcuts.txtDescriptionBold":"選択したテキストのフォントを太字にして、より太く見えるようにする。","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"段落の配置を中央揃えと左揃えの間で切り替える。","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"フォームで次のコンボボックスオプションを選択する。","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"フォームの前のコンボボックスオプションを選択する。","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"現在のPDFウィンドウを閉じる。","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"メニューやモーダルウィンドウを閉じる。コメントや変更履歴のポップアップやバルーンをリセットする。表の描画や消去モードをリセットする。テキストのドラッグ&ドロップをリセットする。マーカー選択モードをリセットする。書式のコピー/貼り付けモードをリセットする。図形の選択を解除する。図形追加モードをリセットする。ヘッダー/フッターから出る。フォーム入力を終了する。","Common.Controllers.Shortcuts.txtDescriptionCopy":"選択したテキストの断片をコンピューターのクリップボードメモリに送る。コピーしたテキストは後で、同じドキュメント内の別の場所や別のドキュメント、あるいは他のプログラムに貼り付けることができる。","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"現在編集中のテキストの選択された部分から書式をコピーします。コピーした書式は、同じドキュメント内の別のテキスト部分に後から適用することができます。","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"カーソルの右側に著作権記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionCut":"選択したテキスト部分を削除し、コンピューターのクリップボードメモリに送信する。コピーされたテキストは、後で同じ文書内の別の場所、別の文書、または他のプログラムに挿入することができます。","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"選択したテキスト部分のフォントサイズを1ポイント小さくする。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"カーソルの左側にある1文字を削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"カーソルの左側にある単語/選択部分/グラフィカルオブジェクトを1つ削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"カーソルの右側の文字を1文字削除する。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"カーソルの右側にある単語/選択範囲/グラフィカルオブジェクトを1つ削除する。","Common.Controllers.Shortcuts.txtDescriptionEditChart":"チャートタイトルが選択された時、タイトルが空欄ならカーソルを行頭へ移動させる。そうでない場合はテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"直前に取り消した操作を繰り返す。","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"PDF内のすべてのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionEditShape":"図形が選択された時、内容が含まれていない場合は内容を作成し、カーソルを行の先頭に移動させる。内容が空の場合はカーソルをその内容に移動させ、そうでない場合は内容全体を選択する。","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"直近の操作を元に戻す。","Common.Controllers.Shortcuts.txtDescriptionEmDash":"カーソルの右側に長横線(長ダッシュ)を挿入する。","Common.Controllers.Shortcuts.txtDescriptionEnDash":"カーソルの右側にエンダッシュを挿入する。","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"現在の段落を終了し、新しい段落を始める。","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"セル内で新しい段落を始める。","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"方程式の引数に新しいプレースホルダーを追加する。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"演算子の整列レベルを左に変更する(強制改行のある方程式の2行目の場合)。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"強制改行のある方程式の2行目に対して、演算子の位置揃えレベルを右に変更する。","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"現在のカーソル位置にユーロ記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"現在のカーソル位置に省略記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"選択したテキスト部分のフォントサイズを1ポイント大きくする。","Common.Controllers.Shortcuts.txtDescriptionIndent":"段落を左から徐々にインデントする。","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"列の区切りを追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"脚注を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"現在のカーソル位置に数式を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"脚注を挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"ウェブアドレスに移動できるリンクを挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"新しい段落を始めずに改行を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"複数行フォームに改行を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"現在のカーソル位置に改ページを挿入する。","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"現在のカーソル位置に現在のページ番号を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"カーソルが段落の先頭にない場合、段落にタブ文字を追加する。","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"テーブル内に改行を挿入する。","Common.Controllers.Shortcuts.txtDescriptionItalic":"選択したテキストのフォントを斜体にし、わずかに傾ける。","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"段落の揃え方を両端揃えから左揃えに変更する。","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"段落を左揃えにする。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"指定されたキーを押しながらキーボードの矢印キーを使用して、選択したオブジェクトを一度に1ピクセルずつ下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"指定されたキーを押しながらキーボードの矢印キーを使用して、選択したオブジェクトを一度に1ピクセルずつ左に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"指定されたキーを押しながらキーボードの矢印を使用して、選択されたオブジェクトを一度に1ピクセルずつ右に移動させる。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"指定されたキーを押しながらキーボードの矢印を使用して、選択したオブジェクトを一度に1ピクセルずつ上に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"選択した段落のインデントを増やす。","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"選択した段落のインデントを減らす。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"現在選択されているオブジェクトの次のオブジェクトにフォーカスを移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"現在選択されているオブジェクトの直前のオブジェクトにフォーカスを移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"カーソルを1行下に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"現在編集中のPDFの末尾にカーソルを置く。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"カーソルを現在編集中の行の末尾に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"カーソルを1語右に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"カーソルを1文字左に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"カーソルがヘッダー/フッター内にある場合、下部のヘッダーに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"カーソルがヘッダー/フッター内にある場合、下部のヘッダー/フッターに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"テーブルの行で次のセルに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"次のフォームに進む。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"現在編集中のPDFの次のページに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"表の次の行に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"テーブル行内の前のセルに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"前のフォームに進む。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"現在編集中のPDFで前のページに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"テーブル内で前の行に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"カーソルを1文字右に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"現在編集中のPDFの最初へ移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"カーソルを現在編集中の行の先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"カーソルを現在編集中のページの直後のページの先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"カーソルを現在編集中のページの直前のページの先頭に移動させる。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"カーソルを単語の先頭か、左の単語に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"カーソルを1行上に移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"カーソルがヘッダー/フッター内にある場合、上部のヘッダーに移動する。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"カーソルがヘッダー/フッターにある場合、ヘッダー/フッターの上部に移動する。","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"デスクトップエディターでは次のファイルタブに、オンラインエディターでは次のブラウザタブに切り替える。","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"モーダルダイアログ内で、次のコントロールにフォーカスを移すためにコントロール間を移動する。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"文字間にハイフンを作成し、新しい行の先頭に使用できないようにする。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"改行の始まりとして使用できないような文字間にスペースを作成する。","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"オンラインエディターでチャットパネルを開き、メッセージを送る。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"コメントのテキストを追加できるデータ入力フィールドを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"コメントパネルを開いて、自分のコメントを追加したり、他のユーザーのコメントに返信したりできる。","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"選択した要素のコンテキストメニューを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"既存のファイルを選択できる標準のダイアログボックスを開く。このダイアログボックスでファイルを選択し「開く」をクリックすると、そのファイルはデスクトップエディターの新しいタブまたはウィンドウで開かれる。","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"ファイルパネルを開いて、現在のPDFを保存、ダウンロード、印刷したり、情報を表示したり、新しい文書を作成したり、既存のPDFを開いたり、PDFエディターのヘルプセンターや詳細設定にアクセスしたりできる。","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"検索と置換メニュー(パネル)を開き、置換フィールドを使用して、見つかった文字列を一つ以上置き換える。","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"現在編集中のPDF内で文字・単語・フレーズを検索するには、検索ダイアログウィンドウを開く。","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"PDFエディターのヘルプメニューを開く。","Common.Controllers.Shortcuts.txtDescriptionPaste":"クリップボードメモリから以前にコピーしたテキスト断片を、現在のカーソル位置に挿入する。テキストは、同じ文書、別の文書、または他のプログラムから以前にコピーされたものである可能性があります。","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"以前にコピーした書式設定を、現在編集中のPDF内のテキストに適用します。","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"クリップボードメモリから以前にコピーしたテキスト断片を、元の書式を保持せずに現在のカーソル位置に挿入する。テキストは、同じ文書、別の文書、または他のプログラムから以前にコピーされたものである可能性があります。","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"デスクトップエディターでは前のファイルタブに、オンラインエディターでは前のブラウザタブに切り替える。","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"モーダルダイアログ内で、前のコントロールにフォーカスを移すためにコントロール間を移動する。","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"利用可能なプリンターでPDFを印刷するか、ファイルとして保存する。","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"現在のカーソル位置に登録商標記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"選択したUnicodeコードを記号に置き換える。","Common.Controllers.Shortcuts.txtDescriptionResetChar":"選択したテキスト断片の書式を解除する。","Common.Controllers.Shortcuts.txtDescriptionRightPara":"段落の配置を右揃えと左揃えの間で切り替える。","Common.Controllers.Shortcuts.txtDescriptionSave":"PDFエディターで現在編集中のPDFファイルへの変更をすべて保存する。アクティブなファイルは、現在のファイル名、保存場所、ファイル形式で保存される。","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"「名前を付けて保存…」パネルを開き、現在編集中のPDFを、サポートされている形式のいずれかでコンピュータのハードディスクドライブに保存する。","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"PDFを約1ページ分スクロールして下に移動させる。","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"PDFを約1ページ分上にスクロールさせる。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"カーソル位置の左側にある文字を一つ選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"カーソル位置から単語の先頭までテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"カーソルを1行下に移動し、前のカーソル位置と現在のカーソル位置の間にあるすべての記号を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"カーソルを1行上に移動し、前のカーソル位置と現在のカーソル位置の間にあるすべての記号を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"カーソルの位置から画面の下端までのページ部分を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"カーソルの位置から画面の上部まで、ページの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"カーソル位置の右側にある文字を一つ選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"カーソル位置から単語の終わりまでテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"カーソル位置から次のページの先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"カーソル位置から前のページの先頭まで、テキストの一部を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"カーソル位置からPDFの末尾までのテキスト部分を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"カーソル位置から現在の行の終わりまでのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"カーソル位置からPDFの先頭までテキストの断片を選択する。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"カーソル位置から現在の行の先頭までのテキストを選択する。","Common.Controllers.Shortcuts.txtDescriptionShowAll":"非表示文字の表示をオンまたはオフにする。","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"現在のカーソル位置にソフトハイフン記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"コピーしたテキストの元の書式を維持する。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"元の書式なしでテキストを貼り付ける。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"コピーした表を、既存の表の選択したセルにネストされた表として貼り付ける。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"既存のテーブルの内容を、コピーしたデータで置き換える。","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"スクリーンリーダー向けにアプリケーション内で実行されたアクションの送信を有効/無効にする。","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"リストのレベル/インデントを上げる(段落の先頭にカーソルを置いた状態で)。","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"リスト/インデントレベルを下げる(段落の先頭にカーソルを置いた状態で)。","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"選択したテキストの断片を、文字を貫通する線で取り消し線付きにする。","Common.Controllers.Shortcuts.txtDescriptionSubscript":"選択したテキスト断片を小さくし、化学式のようにテキスト行の下部に配置する。","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"選択したテキストの断片を小さくし、テキスト行の上部に配置する(例えば分数のように)。","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"現在のカーソル位置に商標記号を挿入する。","Common.Controllers.Shortcuts.txtDescriptionUnderline":"選択したテキストの断片を、文字の下に線を引き下線を引く。","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"段落の左側のインデントを段階的に削除する。","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"フィールドを更新する(例:目次)。","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"リンクをクリックする(カーソルをリンクの上に置いて)。","Common.Controllers.Shortcuts.txtDescriptionZoom100":"現在のPDFの「拡大」パラメータをデフォルトの100%にリセットする。","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"現在編集中のPDFを拡大表示する。","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"現在編集中のPDFを縮小表示する。","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"太字","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"コピー","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"切り取り","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"インデント","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"斜体","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"貼り付け","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"保存","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"取り消し線","Common.Controllers.Shortcuts.txtLabelSubscript":"下付き文字","Common.Controllers.Shortcuts.txtLabelSuperscript":"上付き文字","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"下線","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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":"集合縦棒 - 第2軸の折れ線","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.textRadar":"レーダーチャート","Common.define.chartData.textRadarFilled":"塗りつぶしレーダー","Common.define.chartData.textRadarMarker":"マーカー付きレーダー","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.define.smartArt.textAccentedPicture":"アクセント付きの図","Common.define.smartArt.textAccentProcess":"アクセントプロセス","Common.define.smartArt.textAlternatingFlow":"波型ステップ","Common.define.smartArt.textAlternatingHexagons":"左右交替積み上げ六角形","Common.define.smartArt.textAlternatingPictureBlocks":"左右交替積み上げ画像ブロック","Common.define.smartArt.textAlternatingPictureCircles":"円形付き画像ジグザグ表示","Common.define.smartArt.textArchitectureLayout":"アーキテクチャ レイアウト","Common.define.smartArt.textArrowRibbon":"リボン状の矢印","Common.define.smartArt.textAscendingPictureAccentProcess":"アクセント画像付き上昇ステップ","Common.define.smartArt.textBalance":"バランス","Common.define.smartArt.textBasicBendingProcess":"基本蛇行ステップ","Common.define.smartArt.textBasicBlockList":"カード型リスト","Common.define.smartArt.textBasicChevronProcess":"プロセス","Common.define.smartArt.textBasicCycle":"基本の循環","Common.define.smartArt.textBasicMatrix":"基本マトリックス","Common.define.smartArt.textBasicPie":"円グラフ","Common.define.smartArt.textBasicProcess":"基本ステップ","Common.define.smartArt.textBasicPyramid":"基本ピラミッド","Common.define.smartArt.textBasicRadial":"基本放射","Common.define.smartArt.textBasicTarget":"ターゲット","Common.define.smartArt.textBasicTimeline":"タイムライン","Common.define.smartArt.textBasicVenn":"基本ベン図","Common.define.smartArt.textBendingPictureAccentList":"画像付きカード型リスト","Common.define.smartArt.textBendingPictureBlocks":"自動配置の画像ブロック","Common.define.smartArt.textBendingPictureCaption":"自動配置の表題付き画像","Common.define.smartArt.textBendingPictureCaptionList":"自動配置の表題付き画像レイアウト","Common.define.smartArt.textBendingPictureSemiTranparentText":"自動配置の半透明テキスト付き画像","Common.define.smartArt.textBlockCycle":"ボックス循環","Common.define.smartArt.textBubblePictureList":"バブル状画像リスト","Common.define.smartArt.textCaptionedPictures":"表題付き画像","Common.define.smartArt.textChevronAccentProcess":"アクセントステップ","Common.define.smartArt.textChevronList":"プロセス リスト","Common.define.smartArt.textCircleAccentTimeline":"円形組み合わせタイムライン","Common.define.smartArt.textCircleArrowProcess":"円形矢印プロセス","Common.define.smartArt.textCirclePictureHierarchy":"円形画像を使用した階層","Common.define.smartArt.textCircleProcess":"円形プロセス","Common.define.smartArt.textCircleRelationship":"円の関連付け","Common.define.smartArt.textCircularBendingProcess":"円形蛇行ステップ","Common.define.smartArt.textCircularPictureCallout":"円形画像を使った吹き出し","Common.define.smartArt.textClosedChevronProcess":"開始点強調型プロセス","Common.define.smartArt.textContinuousArrowProcess":"大きな矢印のプロセス","Common.define.smartArt.textContinuousBlockProcess":"矢印と長方形のプロセス","Common.define.smartArt.textContinuousCycle":"連続性強調循環","Common.define.smartArt.textContinuousPictureList":"矢印付き画像リスト","Common.define.smartArt.textConvergingArrows":"内向き矢印","Common.define.smartArt.textConvergingRadial":"収束ラジアル","Common.define.smartArt.textConvergingText":"内向きテキスト","Common.define.smartArt.textCounterbalanceArrows":"対立とバランスの矢印","Common.define.smartArt.textCycle":"循環","Common.define.smartArt.textCycleMatrix":"循環マトリックス","Common.define.smartArt.textDescendingBlockList":"ブロックの降順リスト","Common.define.smartArt.textDescendingProcess":"降順プロセス","Common.define.smartArt.textDetailedProcess":"詳述プロセス","Common.define.smartArt.textDivergingArrows":"左右逆方向矢印","Common.define.smartArt.textDivergingRadial":"矢印付き放射","Common.define.smartArt.textEquation":"方程式\t","Common.define.smartArt.textFramedTextPicture":"フレームに表示されるテキスト画像","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"歯車","Common.define.smartArt.textGridMatrix":"グリッド マトリックス","Common.define.smartArt.textGroupedList":"グループ リスト","Common.define.smartArt.textHalfCircleOrganizationChart":"アーチ型線で飾られた組織図","Common.define.smartArt.textHexagonCluster":"蜂の巣状の六角形","Common.define.smartArt.textHexagonRadial":"六角形放射","Common.define.smartArt.textHierarchy":"階層","Common.define.smartArt.textHierarchyList":"階層リスト","Common.define.smartArt.textHorizontalBulletList":"横方向箇条書きリスト","Common.define.smartArt.textHorizontalHierarchy":"横方向階層","Common.define.smartArt.textHorizontalLabeledHierarchy":"ラベル付き横方向階層","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"複数レベル対応の横方向階層","Common.define.smartArt.textHorizontalOrganizationChart":"水平方向の組織図","Common.define.smartArt.textHorizontalPictureList":"横方向画像リスト","Common.define.smartArt.textIncreasingArrowProcess":"上昇矢印のプロセス","Common.define.smartArt.textIncreasingCircleProcess":"上昇円プロセス","Common.define.smartArt.textInterconnectedBlockProcess":"相互接続された長方形のプロセス","Common.define.smartArt.textInterconnectedRings":"互いにつながったリング","Common.define.smartArt.textInvertedPyramid":"反転ピラミッド","Common.define.smartArt.textLabeledHierarchy":"ラベル付き階層","Common.define.smartArt.textLinearVenn":"横方向ベン図","Common.define.smartArt.textLinedList":"線区切りリスト","Common.define.smartArt.textList":"リスト","Common.define.smartArt.textMatrix":"マトリックス","Common.define.smartArt.textMultidirectionalCycle":"双方向循環","Common.define.smartArt.textNameAndTitleOrganizationChart":"氏名/役職名付き組織図","Common.define.smartArt.textNestedTarget":"包含","Common.define.smartArt.textNondirectionalCycle":"矢印無し循環","Common.define.smartArt.textOpposingArrows":"上下逆方向矢印","Common.define.smartArt.textOpposingIdeas":"対立する案","Common.define.smartArt.textOrganizationChart":"組織図","Common.define.smartArt.textOther":"その他","Common.define.smartArt.textPhasedProcess":"フェーズ プロセス","Common.define.smartArt.textPicture":"画像","Common.define.smartArt.textPictureAccentBlocks":"画像アクセントのブロック","Common.define.smartArt.textPictureAccentList":"画像アクセントのリスト","Common.define.smartArt.textPictureAccentProcess":"画像アクセントのプロセス","Common.define.smartArt.textPictureCaptionList":"画像キャプションのリスト","Common.define.smartArt.textPictureFrame":"フォトフレーム","Common.define.smartArt.textPictureGrid":"画像グリッド","Common.define.smartArt.textPictureLineup":"画像ラインアップ","Common.define.smartArt.textPictureOrganizationChart":"画像付き組織図","Common.define.smartArt.textPictureStrips":"画像付きラベル","Common.define.smartArt.textPieProcess":"円グラフのプロセス","Common.define.smartArt.textPlusAndMinus":"プラスとマイナス","Common.define.smartArt.textProcess":"プロセス","Common.define.smartArt.textProcessArrows":"矢印型ステップ","Common.define.smartArt.textProcessList":"プロセスのリスト","Common.define.smartArt.textPyramid":"ピラミッド","Common.define.smartArt.textPyramidList":"ピラミッドのリスト","Common.define.smartArt.textRadialCluster":"放射ブロック","Common.define.smartArt.textRadialCycle":"中心付き循環","Common.define.smartArt.textRadialList":"放射リスト","Common.define.smartArt.textRadialPictureList":"放射画像リスト","Common.define.smartArt.textRadialVenn":"放射型ベン図","Common.define.smartArt.textRandomToResultProcess":"複数案をまとめるステップ","Common.define.smartArt.textRelationship":"関係","Common.define.smartArt.textRepeatingBendingProcess":"改行型蛇行ステップ","Common.define.smartArt.textReverseList":"逆順リスト","Common.define.smartArt.textSegmentedCycle":"円型循環","Common.define.smartArt.textSegmentedProcess":"分割ステップ","Common.define.smartArt.textSegmentedPyramid":"分割ピラミッド","Common.define.smartArt.textSnapshotPictureList":"スナップショット画像リスト","Common.define.smartArt.textSpiralPicture":"渦巻き画像","Common.define.smartArt.textSquareAccentList":"箇条書き記号アクセントのリスト","Common.define.smartArt.textStackedList":"積み上げリスト","Common.define.smartArt.textStackedVenn":"包含型ベン図","Common.define.smartArt.textStaggeredProcess":"段違いステップ","Common.define.smartArt.textStepDownProcess":"ステップ ダウンのプロセス","Common.define.smartArt.textStepUpProcess":"ステップアップのプロセス","Common.define.smartArt.textSubStepProcess":"サブステップのプロセス","Common.define.smartArt.textTabbedArc":"円弧状タブ","Common.define.smartArt.textTableHierarchy":"積み木型の階層","Common.define.smartArt.textTableList":"表型リスト","Common.define.smartArt.textTabList":"タブ付きリスト","Common.define.smartArt.textTargetList":"ターゲットのリスト","Common.define.smartArt.textTextCycle":"テキスト循環","Common.define.smartArt.textThemePictureAccent":"テーマ画像アクセント","Common.define.smartArt.textThemePictureAlternatingAccent":"テーマ画像交互のアクセント","Common.define.smartArt.textThemePictureGrid":"テーマ画像グリッド","Common.define.smartArt.textTitledMatrix":"タイトル付きマトリックス","Common.define.smartArt.textTitledPictureAccentList":"画像付き横方向リスト","Common.define.smartArt.textTitledPictureBlocks":"タイトル付き画像ブロック","Common.define.smartArt.textTitlePictureLineup":"タイトル付き画像ラインアップ","Common.define.smartArt.textTrapezoidList":"台形リスト","Common.define.smartArt.textUpwardArrow":"上向き矢印","Common.define.smartArt.textVaryingWidthList":"可変幅リスト","Common.define.smartArt.textVerticalAccentList":"縦方向アクセントのリスト","Common.define.smartArt.textVerticalArrowList":"縦方向矢印リスト","Common.define.smartArt.textVerticalBendingProcess":"縦型蛇行ステップ","Common.define.smartArt.textVerticalBlockList":"縦方向ボックス リスト","Common.define.smartArt.textVerticalBoxList":"縦方向リスト","Common.define.smartArt.textVerticalBracketList":"縦方向ブラケット リスト","Common.define.smartArt.textVerticalBulletList":"縦方向箇条書きリスト","Common.define.smartArt.textVerticalChevronList":"縦方向プロセス","Common.define.smartArt.textVerticalCircleList":"縦方向円リスト","Common.define.smartArt.textVerticalCurvedList":"縦方向カーブのリスト","Common.define.smartArt.textVerticalEquation":"縦型の数式","Common.define.smartArt.textVerticalPictureAccentList":"縦方向円形画像リスト","Common.define.smartArt.textVerticalPictureList":"縦方向画像リスト","Common.define.smartArt.textVerticalProcess":"縦方向ステップ","Common.Translation.textMoreButton":"もっと","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"このファイルは他のアプリで編集されているので、編集できません。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"閲覧するために開く","Common.UI.ButtonColored.textAutoColor":"自動​","Common.UI.ButtonColored.textEyedropper":"スポイト","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":"金","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":"木","Common.UI.Calendar.textShortTuesday":"火","Common.UI.Calendar.textShortWednesday":"水","Common.UI.Calendar.textYears":"年","Common.UI.ExtendedColorDialog.addButtonText":"追加","Common.UI.ExtendedColorDialog.textCurrent":"現在","Common.UI.ExtendedColorDialog.textHexErr":"入力された値が正しくありません。
000000〜FFFFFFの数値を入力してください。","Common.UI.ExtendedColorDialog.textNew":"新しい","Common.UI.ExtendedColorDialog.textRGBErr":"入力された値が正しくありません。
0〜255の数値を入力してください。","Common.UI.HSBColorPicker.textNoColor":"色なし","Common.UI.InputFieldBtnCalendar.textDate":"日付の選択","Common.UI.InputFieldBtnPassword.textHintHidePwd":"パスワードを表示しない","Common.UI.InputFieldBtnPassword.textHintHold":"長押しでパスワード表示","Common.UI.InputFieldBtnPassword.textHintShowPwd":"パスワードを表示","Common.UI.SearchBar.capFind":"検索","Common.UI.SearchBar.capFindRedact":"検索&黒消し","Common.UI.SearchBar.textFind":"検索","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"検索&黒消し","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果のハイライト","Common.UI.SearchDialog.textMatchCase":"大文字と小文字を区別する","Common.UI.SearchDialog.textReplaceDef":"代替テキストの挿入","Common.UI.SearchDialog.textSearchStart":"ここにテキストを挿入してください","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索","Common.UI.SearchDialog.textWholeWords":"単語全体のみ","Common.UI.SearchDialog.txtBtnHideReplace":"置換を表示しない","Common.UI.SearchDialog.txtBtnReplace":"置き換え","Common.UI.SearchDialog.txtBtnReplaceAll":"全ての置き換え","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"ドキュメントは他のユーザーによって変更されました。
変更を保存するためにここでクリックし、アップデートを再ロードしてください。","Common.UI.ThemeColorPalette.textRecentColors":"最近使った色","Common.UI.ThemeColorPalette.textStandartColors":"標準色","Common.UI.ThemeColorPalette.textThemeColors":"テーマカラー","Common.UI.ThemeColorPalette.textTransparent":"透明","Common.UI.Themes.txtThemeClassicLight":"ライト(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"ダーク","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"ライト","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":" 警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"アクセント","Common.Utils.ThemeColor.txtAqua":"水色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黒色","Common.Utils.ThemeColor.txtBlue":"青色","Common.Utils.ThemeColor.txtBrightGreen":"明るい緑","Common.Utils.ThemeColor.txtBrown":"茶色","Common.Utils.ThemeColor.txtDarkBlue":"濃い青色","Common.Utils.ThemeColor.txtDarker":"より濃い","Common.Utils.ThemeColor.txtDarkGray":"濃い灰色","Common.Utils.ThemeColor.txtDarkGreen":"濃い緑色","Common.Utils.ThemeColor.txtDarkPurple":"濃い紫色","Common.Utils.ThemeColor.txtDarkRed":"濃い赤色","Common.Utils.ThemeColor.txtDarkTeal":"濃い青緑色","Common.Utils.ThemeColor.txtDarkYellow":"濃い黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"緑色","Common.Utils.ThemeColor.txtIndigo":"インディゴ","Common.Utils.ThemeColor.txtLavender":"ラベンダー","Common.Utils.ThemeColor.txtLightBlue":"明るい青色","Common.Utils.ThemeColor.txtLighter":"より明るい","Common.Utils.ThemeColor.txtLightGray":"明るい灰色","Common.Utils.ThemeColor.txtLightGreen":"明るい緑色","Common.Utils.ThemeColor.txtLightOrange":"明るいオレンジ色","Common.Utils.ThemeColor.txtLightYellow":"明るい黄色","Common.Utils.ThemeColor.txtOrange":"オレンジ色","Common.Utils.ThemeColor.txtPink":"ピンク色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"赤色","Common.Utils.ThemeColor.txtRose":"ローズ色","Common.Utils.ThemeColor.txtSkyBlue":"スカイブルー色","Common.Utils.ThemeColor.txtTeal":"青緑色","Common.Utils.ThemeColor.txttext":"テキスト","Common.Utils.ThemeColor.txtTurquosie":"ターコイズ色","Common.Utils.ThemeColor.txtViolet":"バイオレット色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"住所:","Common.Views.About.txtLicensee":"ライセンス所有者","Common.Views.About.txtLicensor":"ライセンサー","Common.Views.About.txtMail":"メール:","Common.Views.About.txtPoweredBy":"Powered by","Common.Views.About.txtTel":"電話番号:","Common.Views.About.txtVersion":"バージョン","Common.Views.Chat.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"ここにメッセージを挿入する","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.mniFilterComments":"コメントの表示","Common.Views.Comments.mniFilterGroups":"グループでフィルター","Common.Views.Comments.mniPositionAsc":"上から","Common.Views.Comments.mniPositionDesc":"下から","Common.Views.Comments.textAdd":"追加","Common.Views.Comments.textAddComment":"コメントを追加","Common.Views.Comments.textAddCommentToDoc":"ドキュメントにコメントを追加","Common.Views.Comments.textAddReply":"返信を追加","Common.Views.Comments.textAll":"すべて","Common.Views.Comments.textAnonym":"ゲスト","Common.Views.Comments.textCancel":"キャンセル","Common.Views.Comments.textClose":"閉じる","Common.Views.Comments.textClosePanel":"コメントを閉じる","Common.Views.Comments.textComment":"コメント","Common.Views.Comments.textComments":"コメント","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"ここにコメントを入力してください","Common.Views.Comments.textHintAddComment":"コメントを追加","Common.Views.Comments.textOpen":"開く","Common.Views.Comments.textOpenAgain":"もう一度開く","Common.Views.Comments.textReply":"返信","Common.Views.Comments.textResolve":"解決","Common.Views.Comments.textResolved":"解決済み","Common.Views.Comments.textSort":"コメントを並べ替える","Common.Views.Comments.textSortFilter":"コメントの並べ替えとフィルター","Common.Views.Comments.textSortFilterMore":"並び替え、フィルター、その他","Common.Views.Comments.textSortMore":"並び替えなど","Common.Views.Comments.textViewResolved":"コメントを再開する権限がありません","Common.Views.Comments.txtEmpty":"ドキュメントにはコメントがありません。","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"エディターツールバーのボタンやコンテキストメニューの操作によるコピー、カット、ペーストの動作は、このエディタータブ内でのみ実行されます。

エディタータブ以外のアプリケーションとの間でコピーまたは貼り付けを行うには、次のキーボードの組み合わせを使用して下さい:","Common.Views.CopyWarningDialog.textTitle":"コピー、カット、ペーストのアクション","Common.Views.CopyWarningDialog.textToCopy":"コピー用","Common.Views.CopyWarningDialog.textToCut":"切り取り用","Common.Views.CopyWarningDialog.textToPaste":"貼り付用","Common.Views.CustomizeQuickAccessDialog.textDownload":"ダウンロード","Common.Views.CustomizeQuickAccessDialog.textMsg":"クイックアクセスツールバーに表示されるコマンドをチェックしてください","Common.Views.CustomizeQuickAccessDialog.textPrint":"印刷","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"クイックプリント","Common.Views.CustomizeQuickAccessDialog.textRedo":"やり直し","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"クイックアクセスのカスタマイズ","Common.Views.CustomizeQuickAccessDialog.textUndo":"元に戻す","Common.Views.DocumentAccessDialog.textLoading":"読み込んでいます...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.Draw.hintEraser":"消しゴム","Common.Views.Draw.hintSelect":"選択","Common.Views.Draw.txtEraser":"消しゴム","Common.Views.Draw.txtHighlighter":"蛍光ペン","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"ペン","Common.Views.Draw.txtSelect":"選択","Common.Views.Draw.txtSize":"サイズ","Common.Views.ExternalDiagramEditor.textTitle":"グラフのエディタ","Common.Views.ExternalEditor.textClose":"閉じる","Common.Views.ExternalEditor.textSave":"保存&終了","Common.Views.ExternalLinksDlg.closeButtonText":"閉じる","Common.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","Common.Views.ExternalLinksDlg.textChange":"変更元","Common.Views.ExternalLinksDlg.textDelete":"リンクの解除","Common.Views.ExternalLinksDlg.textDeleteAll":"すべてのリンクを解除","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"オープンソース","Common.Views.ExternalLinksDlg.textSource":"ソース","Common.Views.ExternalLinksDlg.textStatus":"ステータス","Common.Views.ExternalLinksDlg.textUnknown":"不明","Common.Views.ExternalLinksDlg.textUpdate":"値を更新","Common.Views.ExternalLinksDlg.textUpdateAll":"すべて更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部リンク","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りとしてマークする","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textAnnotateDesc":"フォームに記入または注釈を付ける","Common.Views.Header.textBack":"ファイルを開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textComment":"コメント","Common.Views.Header.textCommentDesc":"すべての変更はファイルに保存されます。リアルタイムコラボレーション","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textDownload":"ダウンロード","Common.Views.Header.textEdit":"編集","Common.Views.Header.textEditDesc":"すべての変更はファイルに保存されます。リアルタイムコラボレーション","Common.Views.Header.textEditDescNoCoedit":"テキスト、図形、画像などを追加または編集する","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideStatusBar":"ステータスバーを表示しない","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textShare":"共有","Common.Views.Header.textView":"閲覧","Common.Views.Header.textViewDesc":"すべての変更はローカルに保存されます","Common.Views.Header.textViewDescNoCoedit":"表示または注釈","Common.Views.Header.textZoom":"拡大図","Common.Views.Header.tipAccessRights":"文書のアクセス許可の管理","Common.Views.Header.tipComment":"コメント","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDownload":"ファイルをダウンロード","Common.Views.Header.tipEdit":"編集","Common.Views.Header.tipGoEdit":"現在のファイルを編集する","Common.Views.Header.tipPrint":"印刷","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直す","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUsers":"ユーザーを表示する","Common.Views.Header.tipView":"閲覧","Common.Views.Header.tipViewSettings":"表示の設定","Common.Views.Header.tipViewUsers":"ユーザーの表示と文書のアクセス権の管理","Common.Views.Header.txtAccessRights":"アクセス権の変更","Common.Views.Header.txtRename":"名前の変更","Common.Views.ImageFromUrlDialog.textUrl":"画像URLの貼り付け","Common.Views.ImageFromUrlDialog.txtEmpty":"この項目は必須です","Common.Views.ImageFromUrlDialog.txtNotUrl":"リンクの入力内容は「http://www.example.com」形式のURLである必要があります。","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Input a prompt for the query","Common.Views.MacrosAiDialog.textCreate":"Create","Common.Views.MacrosDialog.textAutostart":"Autostart","Common.Views.MacrosDialog.textConvertFromVBA":"Convert from VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convert macros from VBA","Common.Views.MacrosDialog.textCopy":"Copy","Common.Views.MacrosDialog.textCreateFromDesc":"Create from description","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Create macros from description","Common.Views.MacrosDialog.textCustomFunction":"Custom function","Common.Views.MacrosDialog.textCustomFunctions":"Custom functions","Common.Views.MacrosDialog.textDebug":"Debug","Common.Views.MacrosDialog.textDelete":"Delete","Common.Views.MacrosDialog.textFunctions":"Functions","Common.Views.MacrosDialog.textLoading":"Loading...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Make autostart","Common.Views.MacrosDialog.textRename":"Rename","Common.Views.MacrosDialog.textRun":"Run","Common.Views.MacrosDialog.textSave":"Save","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Unmake autostart","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"Add custom function","Common.Views.MacrosDialog.tipFunctionCopy":"Copy custom function","Common.Views.MacrosDialog.tipFunctionDelete":"Delete custom function","Common.Views.MacrosDialog.tipFunctionRename":"Rename custom function","Common.Views.MacrosDialog.tipMacrosAdd":"Add macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copy macros","Common.Views.MacrosDialog.tipMacrosDebug":"Debug macros","Common.Views.MacrosDialog.tipMacrosRename":"Rename macros","Common.Views.MacrosDialog.tipMacrosRun":"Run macros","Common.Views.MacrosDialog.tipRedo":"Redo","Common.Views.MacrosDialog.tipUndo":"Undo","Common.Views.OpenDialog.closeButtonText":"ファイルを閉じる","Common.Views.OpenDialog.txtEncoding":"文字コード","Common.Views.OpenDialog.txtIncorrectPwd":"パスワードが正しくありません。","Common.Views.OpenDialog.txtOpenFile":"ファイルを開くためにパスワードを入力してください。","Common.Views.OpenDialog.txtPassword":"パスワード","Common.Views.OpenDialog.txtPreview":"プレビュー","Common.Views.OpenDialog.txtProtected":"パスワードを入力してファイルを開くと、既存のパスワードがリセットされます。","Common.Views.OpenDialog.txtTitle":"%1オプションの選択","Common.Views.OpenDialog.txtTitleProtected":"保護されたファイル","Common.Views.PasswordDialog.txtDescription":"この文書を保護するためのパスワードを設定してください。","Common.Views.PasswordDialog.txtIncorrectPwd":"確認用パスワードと一致しません。","Common.Views.PasswordDialog.txtPassword":"パスワード","Common.Views.PasswordDialog.txtRepeat":"パスワードを再入力","Common.Views.PasswordDialog.txtTitle":"パスワードの設定","Common.Views.PasswordDialog.txtWarning":"ご注意:パスワードを紛失したり、忘れたりした場合は、復旧できません。安全な場所に保管してください。","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"開始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.Protection.hintAddPwd":"パスワードを使用して暗号化する","Common.Views.Protection.hintDelPwd":"パスワードを削除する","Common.Views.Protection.hintPwd":"パスワードを変更するか削除する","Common.Views.Protection.hintSignature":"デジタル署名かデジタル署名行を追加する","Common.Views.Protection.txtAddPwd":"パスワードを追加","Common.Views.Protection.txtChangePwd":"パスワードを変更する","Common.Views.Protection.txtDeletePwd":"パスワードを削除する","Common.Views.Protection.txtEncrypt":"暗号化する","Common.Views.Protection.txtInvisibleSignature":"デジタル署名を追加","Common.Views.Protection.txtSignature":"署名","Common.Views.Protection.txtSignatureLine":"署名欄の追加","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","Common.Views.RenameDialog.textName":"ファイル名","Common.Views.RenameDialog.txtInvalidName":"ファイル名に次の文字を使うことはできません。","Common.Views.ReviewChanges.strFast":"高速","Common.Views.ReviewChanges.strFastDesc":"リアルタイム共同編集モードです。すべての変更は自動的に保存されます。","Common.Views.ReviewChanges.strStrict":"厳格","Common.Views.ReviewChanges.strStrictDesc":"「保存」ボタンを使って、自分や他の人が行った変更を同期させる。","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.tipSharing":"文書のアクセス許可のの管理","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.txtHistory":"バージョン履歴","Common.Views.ReviewChanges.txtSharing":"共有","Common.Views.ReviewPopover.textAdd":"追加","Common.Views.ReviewPopover.textAddReply":"返信を追加","Common.Views.ReviewPopover.textCancel":"キャンセル","Common.Views.ReviewPopover.textClose":"閉じる","Common.Views.ReviewPopover.textComment":"コメント","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"ここにコメントを入力してください","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.ReviewPopover.textViewResolved":"コメントを再開する権限がありません","Common.Views.ReviewPopover.txtAccept":"承諾","Common.Views.ReviewPopover.txtDeleteTip":"削除","Common.Views.ReviewPopover.txtEditTip":"編集","Common.Views.ReviewPopover.txtReject":"拒否する","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字を区別する","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索","Common.Views.SearchPanel.textFindAndRedact":"検索&黒消し","Common.Views.SearchPanel.textFindAndReplace":"検索と置換","Common.Views.SearchPanel.textFindRedact":"検索&黒消し","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textMark":"黒消し対象としてマークする","Common.Views.SearchPanel.textMarkAll":"すべてをマークする","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textNoMatches":"一致するメッセージはありません。","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"置き換え","Common.Views.SearchPanel.textReplaceAll":"全ての置き換え","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.ShapeShadowDialog.txtAngle":"角度","Common.Views.ShapeShadowDialog.txtDistance":"距離","Common.Views.ShapeShadowDialog.txtSize":"サイズ","Common.Views.ShapeShadowDialog.txtTitle":"影の調整","Common.Views.ShapeShadowDialog.txtTransparency":"透過性","Common.Views.ShortcutsDialog.txtDescription":"説明","Common.Views.ShortcutsDialog.txtEmpty":"該当する項目が見つかりませんでした。検索条件を調整してください。","Common.Views.ShortcutsDialog.txtRestoreAll":"すべてをデフォルトに戻す","Common.Views.ShortcutsDialog.txtRestoreContinue":"続行してよろしいですか?","Common.Views.ShortcutsDialog.txtRestoreDescription":"すべてのショートカット設定がデフォルトに戻されます。","Common.Views.ShortcutsDialog.txtRestoreToDefault":"デフォルトに戻す","Common.Views.ShortcutsDialog.txtSearch":"検索","Common.Views.ShortcutsDialog.txtTitle":"キーボードショートカット","Common.Views.ShortcutsEditDialog.txtAction":"アクション","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"必要なショートカットを入力する","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"「%1」アクションが使用するショートカット","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"「%1」アクションが使用するショートカットは変更できません","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"「%1」アクションが使用するショートカット","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"「%1」アクションが使用するショートカットであり、変更することはできません。","Common.Views.ShortcutsEditDialog.txtNewShortcut":"新規ショートカット","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"続行してよろしいですか。","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"「%1」アクションのすべてのショートカットはデフォルトに復元されます。","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"デフォルトに戻す","Common.Views.ShortcutsEditDialog.txtTitle":"ショートカットを編集","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"必要なショートカットを入力する","Common.Views.UserNameDialog.textDontShow":"二度と表示しない","Common.Views.UserNameDialog.textLabel":"ラベル:","Common.Views.UserNameDialog.textLabelError":"ラベルは空白にできません。","PDFE.Controllers.InsTab.textAccent":"ダイアクリティカル・マーク","PDFE.Controllers.InsTab.textBracket":"かっこ","PDFE.Controllers.InsTab.textFraction":"分数","PDFE.Controllers.InsTab.textFunction":"関数","PDFE.Controllers.InsTab.textInsert":"挿入","PDFE.Controllers.InsTab.textIntegral":"積分","PDFE.Controllers.InsTab.textLargeOperator":"大型演算子","PDFE.Controllers.InsTab.textLimitAndLog":"極限と対数","PDFE.Controllers.InsTab.textMatrix":"行列","PDFE.Controllers.InsTab.textOperator":"演算子","PDFE.Controllers.InsTab.textRadical":"根基","PDFE.Controllers.InsTab.textScript":"スクリプト","PDFE.Controllers.InsTab.textShape":"図形","PDFE.Controllers.InsTab.textSymbols":"記号","PDFE.Controllers.InsTab.txtAccent_Accent":"アキュート","PDFE.Controllers.InsTab.txtAccent_ArrowD":"左右双方向矢印 (上)","PDFE.Controllers.InsTab.txtAccent_ArrowL":"左に矢印 (上)","PDFE.Controllers.InsTab.txtAccent_ArrowR":"右向き矢印 (上)","PDFE.Controllers.InsTab.txtAccent_Bar":"横棒グラフ","PDFE.Controllers.InsTab.txtAccent_BarBot":"アンダーライン","PDFE.Controllers.InsTab.txtAccent_BarTop":"オーバーライン","PDFE.Controllers.InsTab.txtAccent_BorderBox":"四角囲み数式 (プレースホルダ付き)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"四角囲み数式 (例)","PDFE.Controllers.InsTab.txtAccent_Check":"チェック","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"下かっこ","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"上かっこ","PDFE.Controllers.InsTab.txtAccent_Custom_1":"ベクトルA","PDFE.Controllers.InsTab.txtAccent_Custom_2":"上線付きABC","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XORと上線","PDFE.Controllers.InsTab.txtAccent_DDDot":"3重ドット","PDFE.Controllers.InsTab.txtAccent_DDot":"ダブルドット","PDFE.Controllers.InsTab.txtAccent_Dot":"点","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"二重上線","PDFE.Controllers.InsTab.txtAccent_Grave":"グレーブ・アクセント","PDFE.Controllers.InsTab.txtAccent_GroupBot":"グループ文字 (下)","PDFE.Controllers.InsTab.txtAccent_GroupTop":"グループ文字 (上)","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"左半矢印(上)","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"右向き半矢印 (上)","PDFE.Controllers.InsTab.txtAccent_Hat":"ハット","PDFE.Controllers.InsTab.txtAccent_Smile":"短音記号","PDFE.Controllers.InsTab.txtAccent_Tilde":"チルダ","PDFE.Controllers.InsTab.txtBasicShapes":"基本図形","PDFE.Controllers.InsTab.txtBracket_Angle":"括弧","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"括弧と区切り記号","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"括弧と2区切り記号","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"終わり山かっこ","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"始め山かっこ","PDFE.Controllers.InsTab.txtBracket_Curve":"中かっこ","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"中かっこと区切り記号","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"右中かっこ","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"左中かっこ","PDFE.Controllers.InsTab.txtBracket_Custom_1":"場合分け(条件2つ)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"場合分け (条件3つ)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"縦並びオブジェクト","PDFE.Controllers.InsTab.txtBracket_Custom_4":"縦並びオブジェクト (かっこ付き)","PDFE.Controllers.InsTab.txtBracket_Custom_5":"場合分けの例","PDFE.Controllers.InsTab.txtBracket_Custom_6":"二項係数","PDFE.Controllers.InsTab.txtBracket_Custom_7":"二項係数 (山かっこ付き)","PDFE.Controllers.InsTab.txtBracket_Line":"縦棒","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"縦棒 (右のみ)","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"縦棒 (左のみ)","PDFE.Controllers.InsTab.txtBracket_LineDouble":"二重縦棒","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"二重縦棒 (右のみ)","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"二重縦棒 (左のみ)","PDFE.Controllers.InsTab.txtBracket_LowLim":"終わりかっこ","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"床関数 (右記号)","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"床関数 (左記号)","PDFE.Controllers.InsTab.txtBracket_Round":"小かっこ","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"括弧と区切り線","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"右かっこ","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"左かっこ","PDFE.Controllers.InsTab.txtBracket_Square":"大かっこ","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"右の角括弧の間のプレースホルダー","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"反転した角括弧","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"右角かっこ","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"左角かっこ","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"左の角括弧の間のプレースホルダー","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"二重の角括弧","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"右ダブル角型かっこ","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"左ダブル角型かっこ","PDFE.Controllers.InsTab.txtBracket_UppLim":"天井大かっこ","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"天井関数 (右記号)","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"単一かっこ","PDFE.Controllers.InsTab.txtButtons":"ボタン","PDFE.Controllers.InsTab.txtCallouts":"吹き出し","PDFE.Controllers.InsTab.txtCharts":"グラフ","PDFE.Controllers.InsTab.txtFiguredArrows":"図形矢印","PDFE.Controllers.InsTab.txtFractionDiagonal":"分数 (斜め)","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dyの上にdx","PDFE.Controllers.InsTab.txtFractionDifferential_2":"大文字デルタ y/大文字デルタ x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"部分的なxに対する部分的なy","PDFE.Controllers.InsTab.txtFractionDifferential_4":"デルタ y/デルタ x","PDFE.Controllers.InsTab.txtFractionHorizontal":"分数 (横)","PDFE.Controllers.InsTab.txtFractionPi_2":"円周率を2で割る","PDFE.Controllers.InsTab.txtFractionSmall":"分数 (小)","PDFE.Controllers.InsTab.txtFractionVertical":"分数 (縦)","PDFE.Controllers.InsTab.txtFunction_1_Cos":"逆余弦関数","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"逆双曲線余弦","PDFE.Controllers.InsTab.txtFunction_1_Cot":"逆余接関数","PDFE.Controllers.InsTab.txtFunction_1_Coth":"双曲線逆余接","PDFE.Controllers.InsTab.txtFunction_1_Csc":"逆余割関数","PDFE.Controllers.InsTab.txtFunction_1_Csch":"逆双曲線余割関数","PDFE.Controllers.InsTab.txtFunction_1_Sec":"逆正割関数","PDFE.Controllers.InsTab.txtFunction_1_Sech":"逆双曲線正割","PDFE.Controllers.InsTab.txtFunction_1_Sin":"逆正弦関数","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"双曲線逆サイン","PDFE.Controllers.InsTab.txtFunction_1_Tan":"逆正接関数","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"双曲線逆正接","PDFE.Controllers.InsTab.txtFunction_Cos":"余弦関数","PDFE.Controllers.InsTab.txtFunction_Cosh":"双曲線余弦関数","PDFE.Controllers.InsTab.txtFunction_Cot":"余接関数","PDFE.Controllers.InsTab.txtFunction_Coth":"双曲線余接関数","PDFE.Controllers.InsTab.txtFunction_Csc":"余割関数\t","PDFE.Controllers.InsTab.txtFunction_Csch":"逆双曲線余割関数","PDFE.Controllers.InsTab.txtFunction_Custom_1":"Sin θ","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Cos 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"正接数式","PDFE.Controllers.InsTab.txtFunction_Sec":"正割関数","PDFE.Controllers.InsTab.txtFunction_Sech":"双曲線正割","PDFE.Controllers.InsTab.txtFunction_Sin":"正弦関数","PDFE.Controllers.InsTab.txtFunction_Sinh":"双曲線正弦","PDFE.Controllers.InsTab.txtFunction_Tan":"逆正接関数","PDFE.Controllers.InsTab.txtFunction_Tanh":"双曲線正接","PDFE.Controllers.InsTab.txtIntegral":"積分","PDFE.Controllers.InsTab.txtIntegral_dtheta":"微分 dθ","PDFE.Controllers.InsTab.txtIntegral_dx":"微分x","PDFE.Controllers.InsTab.txtIntegral_dy":"微分 y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralDouble":"二重積分","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"二重積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"二重積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralOriented":"線積分","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"線積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"面積分","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"面積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"面積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"線積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"体積積分","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"体積積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"体積積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralSubSup":"積分 (上下端値あり)","PDFE.Controllers.InsTab.txtIntegralTriple":"3 重積分","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"三重積分 (上下端値を上下に配置)","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"三重積分 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"論理積","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"論理積 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"論理積 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"論理積 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"論理積 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"余積","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"余積(最低限あり)","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"余積(制限あり)","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"余積(添え字が下限あり)","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"余積(添え字/上付き文字制限あり)","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"n から k を選ぶ場合の k の総和","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"総和 (i = 0 から n まで)","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"添え字 2 個を使う総和の例","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"積の例","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"和集合の例","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"論理和","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"論理和 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"論理和 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"論理和 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"論理和 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"共通集合","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"積集合 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"積集合 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"積集合 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"積集合 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"乗積","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"積 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"積 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"積 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"積 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"合計","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"総和 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"総和 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"総和 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"総和 (上付き/下付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Union":"和集合","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"和集合 (下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"和集合 (上下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"和集合 (下付き文字の下端値あり)","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"和集合 (下付き/上付き文字の上下端値あり)","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"極限の例","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"最大値の例","PDFE.Controllers.InsTab.txtLimitLog_Lim":"極限","PDFE.Controllers.InsTab.txtLimitLog_Ln":"自然対数","PDFE.Controllers.InsTab.txtLimitLog_Log":"対数","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"対数","PDFE.Controllers.InsTab.txtLimitLog_Max":"最大","PDFE.Controllers.InsTab.txtLimitLog_Min":"最小","PDFE.Controllers.InsTab.txtLines":"線","PDFE.Controllers.InsTab.txtMath":"数学","PDFE.Controllers.InsTab.txtMatrix_1_2":"1x2空行列","PDFE.Controllers.InsTab.txtMatrix_1_3":"1x3空行列","PDFE.Controllers.InsTab.txtMatrix_2_1":"2x1 空行列","PDFE.Controllers.InsTab.txtMatrix_2_2":"2x2 空行列","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"空の 2x2 行列 (二重縦棒付き)","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"空の 2x2 行列式","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"空の 2x2 行列 (かっこ付き)","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"空の 2x2 行列 (大かっこ付き)","PDFE.Controllers.InsTab.txtMatrix_2_3":"2x3 空行列","PDFE.Controllers.InsTab.txtMatrix_3_1":"3x1 空行列","PDFE.Controllers.InsTab.txtMatrix_3_2":"3x2 空行列","PDFE.Controllers.InsTab.txtMatrix_3_3":"3x3 空行列","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"基準線点","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"ミッドラインドット","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"斜めドット","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"縦向きドット","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"疎行列 (かっこ付き)","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"疎行列 (大かっこ付き)","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"2x2 単位行列","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"空白の対角セルを持つ 2x2 の単位行列","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"3x3 単位行列","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"3x3 単位行列 (対角線上以外のセルは空白)","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"左右双方向矢印 (下)","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"左右双方向矢印 (上)","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"左に矢印 (下)","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"左に矢印 (上)","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"右向き矢印 (下)","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"右向き矢印 (上)","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"コロン付き等号","PDFE.Controllers.InsTab.txtOperator_Custom_1":"導出","PDFE.Controllers.InsTab.txtOperator_Custom_2":"デルタ収量","PDFE.Controllers.InsTab.txtOperator_Definition":"定義により等しい","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"デルタは等しい","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"左右双方向矢印 (下)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"左右双方向矢印 (上)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"左に矢印 (下)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"左に矢印 (上)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"右向き矢印 (下)","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"右向き矢印 (上)","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"等号等号","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"マイナス付き等号","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"プラス付き等号","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"測度","PDFE.Controllers.InsTab.txtRadicalCustom_1":"二次方程式の解の公式の右辺","PDFE.Controllers.InsTab.txtRadicalCustom_2":"a の 2 乗と b の 2 乗の和の平方根","PDFE.Controllers.InsTab.txtRadicalRoot_2":"次数付き平方根","PDFE.Controllers.InsTab.txtRadicalRoot_3":"立方根","PDFE.Controllers.InsTab.txtRadicalRoot_n":"次数付きべき乗根","PDFE.Controllers.InsTab.txtRadicalSqrt":"平方根","PDFE.Controllers.InsTab.txtRectangles":"四角形","PDFE.Controllers.InsTab.txtScriptCustom_1":"x 下付き文字 y の 2 乗","PDFE.Controllers.InsTab.txtScriptCustom_2":"eをマイナスiにωt","PDFE.Controllers.InsTab.txtScriptCustom_3":"x の 2 乗","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y 左上付き文字 n 左下付き文字 1","PDFE.Controllers.InsTab.txtScriptSub":"下付き文字","PDFE.Controllers.InsTab.txtScriptSubSup":"下付き文字 - 上付き文字","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"左下付き文字 - 上付き文字","PDFE.Controllers.InsTab.txtScriptSup":"上付き文字","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"線吹き出し1(枠付きと強調線)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"線吹き出し2(枠付きと強調線)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"線吹き出し3(枠付きと強調線)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"線吹き出し1(強調線)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"線吹き出し2(強調線)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"線吹き出し3(強調線)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"「戻る」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"「始めに」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"「空白」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"「文書」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"「最後に」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"「次へ」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"「ヘルプ」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"「ホーム」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"「情報」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"「動画」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"「戻る」ボタン","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"「音」ボタン","PDFE.Controllers.InsTab.txtShape_arc":"円弧","PDFE.Controllers.InsTab.txtShape_bentArrow":"曲げ矢印","PDFE.Controllers.InsTab.txtShape_bentConnector5":"カギ線コネクター","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"カギ線矢印コネクター","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"カギ線の二重矢印コネクター","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"曲線の矢印(上)","PDFE.Controllers.InsTab.txtShape_bevel":"斜角","PDFE.Controllers.InsTab.txtShape_blockArc":"アーチ","PDFE.Controllers.InsTab.txtShape_borderCallout1":"線吹き出し1 ","PDFE.Controllers.InsTab.txtShape_borderCallout2":"線吹き出し2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"線吹き出し3","PDFE.Controllers.InsTab.txtShape_bracePair":"中かっこ","PDFE.Controllers.InsTab.txtShape_callout1":"線吹き出し1(枠付き無し)","PDFE.Controllers.InsTab.txtShape_callout2":"線吹き出し2(枠付き無し)","PDFE.Controllers.InsTab.txtShape_callout3":"線吹き出し3(枠付き無し)","PDFE.Controllers.InsTab.txtShape_can":"円柱","PDFE.Controllers.InsTab.txtShape_chevron":"シェブロン","PDFE.Controllers.InsTab.txtShape_chord":"コード","PDFE.Controllers.InsTab.txtShape_circularArrow":"円弧の矢印","PDFE.Controllers.InsTab.txtShape_cloud":"クラウド","PDFE.Controllers.InsTab.txtShape_cloudCallout":"雲形吹き出し","PDFE.Controllers.InsTab.txtShape_corner":"角","PDFE.Controllers.InsTab.txtShape_cube":"立方体","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"曲線コネクタ","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"曲線矢印コネクタ","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"曲線の二重矢印コネクタ","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"曲線の下向き矢印","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"曲線の左矢印","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"曲線の右矢印","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"曲線の上矢印","PDFE.Controllers.InsTab.txtShape_decagon":"十角形","PDFE.Controllers.InsTab.txtShape_diagStripe":"斜め縞","PDFE.Controllers.InsTab.txtShape_diamond":"ひし型","PDFE.Controllers.InsTab.txtShape_dodecagon":"12角形","PDFE.Controllers.InsTab.txtShape_donut":"ドーナツグラフ","PDFE.Controllers.InsTab.txtShape_doubleWave":"二重波","PDFE.Controllers.InsTab.txtShape_downArrow":"下矢印","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"下矢印引き出し","PDFE.Controllers.InsTab.txtShape_ellipse":"楕円","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"曲線下向けのリボン","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"曲線上向けのリボン","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"フローチャート:代替処理","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"フローチャート:照合","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"フローチャート:結合子","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"フローチャート:判断","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"フローチャート:遅延","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"フローチャート:表示","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"フローチャート:文書","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"フローチャート:抜き出し","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"フローチャート:データ","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"フローチャート:内部ストレージ","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"フローチャート:磁気ディスク","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"フローチャート:直接アクセスストレージ","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"フローチャート:順次アクセス記憶","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"フローチャート:手動入力","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"フローチャート:手作業","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"フローチャート:統合","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"フローチャート:複数文書","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"フローチャート:他ページ結合子","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"フローチャート:保存されたデータ","PDFE.Controllers.InsTab.txtShape_flowChartOr":"フローチャート:論理和","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"フローチャート:事前定義されたプロセス","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"フローチャート:準備","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"フローチャート:プロセス","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"フローチャート:カード","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"フローチャート:せん孔テープ","PDFE.Controllers.InsTab.txtShape_flowChartSort":"フローチャート:並べ替え","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"フローチャート:和接合","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"フローチャート:ターミネーター","PDFE.Controllers.InsTab.txtShape_foldedCorner":"折り曲げコーナー","PDFE.Controllers.InsTab.txtShape_frame":"フレーム","PDFE.Controllers.InsTab.txtShape_halfFrame":"半フレーム","PDFE.Controllers.InsTab.txtShape_heart":"ハート","PDFE.Controllers.InsTab.txtShape_heptagon":"七角形","PDFE.Controllers.InsTab.txtShape_hexagon":"六角形","PDFE.Controllers.InsTab.txtShape_homePlate":"五角形","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"水平スクロール","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"爆発 1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"爆発 2","PDFE.Controllers.InsTab.txtShape_leftArrow":"左矢印","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"左矢印吹き出し","PDFE.Controllers.InsTab.txtShape_leftBrace":"左中かっこ","PDFE.Controllers.InsTab.txtShape_leftBracket":"左かっこ","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"左右矢印","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"左右矢印吹き出し","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"三方向矢印(左・右・上)","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"左上矢印","PDFE.Controllers.InsTab.txtShape_lightningBolt":"稲妻","PDFE.Controllers.InsTab.txtShape_line":"線","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"矢印","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"二重矢印","PDFE.Controllers.InsTab.txtShape_mathDivide":"分割","PDFE.Controllers.InsTab.txtShape_mathEqual":"等しい","PDFE.Controllers.InsTab.txtShape_mathMinus":"マイナス","PDFE.Controllers.InsTab.txtShape_mathMultiply":"乗算","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"等しくない","PDFE.Controllers.InsTab.txtShape_mathPlus":"プラス","PDFE.Controllers.InsTab.txtShape_moon":"月形","PDFE.Controllers.InsTab.txtShape_noSmoking":"「禁止」マーク","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"切り欠き右矢印","PDFE.Controllers.InsTab.txtShape_octagon":"八角形","PDFE.Controllers.InsTab.txtShape_parallelogram":"平行四辺形","PDFE.Controllers.InsTab.txtShape_pentagon":"五角形","PDFE.Controllers.InsTab.txtShape_pie":"円グラフ","PDFE.Controllers.InsTab.txtShape_plaque":"署名する","PDFE.Controllers.InsTab.txtShape_plus":"プラス","PDFE.Controllers.InsTab.txtShape_polyline1":"走り書き","PDFE.Controllers.InsTab.txtShape_polyline2":"フリーフォーム","PDFE.Controllers.InsTab.txtShape_quadArrow":"四方向矢印","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"四方向矢印の吹き出し","PDFE.Controllers.InsTab.txtShape_rect":"矩形","PDFE.Controllers.InsTab.txtShape_ribbon":"下リボン","PDFE.Controllers.InsTab.txtShape_ribbon2":"上リボン","PDFE.Controllers.InsTab.txtShape_rightArrow":"右矢印","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"右矢印吹き出し","PDFE.Controllers.InsTab.txtShape_rightBrace":"右中かっこ","PDFE.Controllers.InsTab.txtShape_rightBracket":"右かっこ","PDFE.Controllers.InsTab.txtShape_round1Rect":"1つの角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"対角する 2 つの角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_round2SameRect":"片側の 2 つの角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_roundRect":"角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_rtTriangle":"直角三角形","PDFE.Controllers.InsTab.txtShape_smileyFace":"スマイル","PDFE.Controllers.InsTab.txtShape_snip1Rect":"1つの角を切り取った四角形","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"対角する2つの角を切り取った四角形","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"片側の2つの角を切り取った四角形","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"1つの角を切り取り1つの角を丸めた四角形","PDFE.Controllers.InsTab.txtShape_spline":"曲線","PDFE.Controllers.InsTab.txtShape_star10":"星10","PDFE.Controllers.InsTab.txtShape_star12":"星12","PDFE.Controllers.InsTab.txtShape_star16":"星16","PDFE.Controllers.InsTab.txtShape_star24":"星24","PDFE.Controllers.InsTab.txtShape_star32":"星32","PDFE.Controllers.InsTab.txtShape_star4":"星4","PDFE.Controllers.InsTab.txtShape_star5":"星5","PDFE.Controllers.InsTab.txtShape_star6":"星6","PDFE.Controllers.InsTab.txtShape_star7":"星7","PDFE.Controllers.InsTab.txtShape_star8":"星8","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"ストライプの右矢印","PDFE.Controllers.InsTab.txtShape_sun":"太陽形","PDFE.Controllers.InsTab.txtShape_teardrop":"滴","PDFE.Controllers.InsTab.txtShape_textRect":"テキストボックス","PDFE.Controllers.InsTab.txtShape_trapezoid":"台形","PDFE.Controllers.InsTab.txtShape_triangle":"三角","PDFE.Controllers.InsTab.txtShape_upArrow":"上矢印","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"上矢印吹き出し","PDFE.Controllers.InsTab.txtShape_upDownArrow":"上下矢印","PDFE.Controllers.InsTab.txtShape_uturnArrow":"U形矢印","PDFE.Controllers.InsTab.txtShape_verticalScroll":"縦スクロール","PDFE.Controllers.InsTab.txtShape_wave":"波","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"円形吹き出し","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"矩形の吹き出し","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"角丸長方形の吹き出し","PDFE.Controllers.InsTab.txtStarsRibbons":"スター&リボン","PDFE.Controllers.InsTab.txtSymbol_about":"約","PDFE.Controllers.InsTab.txtSymbol_additional":"補集合","PDFE.Controllers.InsTab.txtSymbol_aleph":"アレフ","PDFE.Controllers.InsTab.txtSymbol_alpha":"アルファ","PDFE.Controllers.InsTab.txtSymbol_approx":"ほぼ等しい","PDFE.Controllers.InsTab.txtSymbol_ast":"アスタリスク","PDFE.Controllers.InsTab.txtSymbol_beta":"ベータ","PDFE.Controllers.InsTab.txtSymbol_beth":"ベート","PDFE.Controllers.InsTab.txtSymbol_bullet":"箇条書きの演算子","PDFE.Controllers.InsTab.txtSymbol_cap":"共通集合","PDFE.Controllers.InsTab.txtSymbol_cbrt":"立方根","PDFE.Controllers.InsTab.txtSymbol_cdots":"水平中央の省略記号","PDFE.Controllers.InsTab.txtSymbol_celsius":"摂氏","PDFE.Controllers.InsTab.txtSymbol_chi":"カイ","PDFE.Controllers.InsTab.txtSymbol_cong":"ほぼ等しい","PDFE.Controllers.InsTab.txtSymbol_cup":"和集合","PDFE.Controllers.InsTab.txtSymbol_ddots":"右斜め下の楕円","PDFE.Controllers.InsTab.txtSymbol_degree":"度","PDFE.Controllers.InsTab.txtSymbol_delta":"デルタ","PDFE.Controllers.InsTab.txtSymbol_div":"「除算」記号","PDFE.Controllers.InsTab.txtSymbol_downarrow":"下矢印","PDFE.Controllers.InsTab.txtSymbol_emptyset":"空集合","PDFE.Controllers.InsTab.txtSymbol_epsilon":"イプシロン","PDFE.Controllers.InsTab.txtSymbol_equals":"等しい","PDFE.Controllers.InsTab.txtSymbol_equiv":"恒等","PDFE.Controllers.InsTab.txtSymbol_eta":"エータ","PDFE.Controllers.InsTab.txtSymbol_exists":"存在する\t","PDFE.Controllers.InsTab.txtSymbol_factorial":"階乗","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"華氏","PDFE.Controllers.InsTab.txtSymbol_forall":"全てに","PDFE.Controllers.InsTab.txtSymbol_gamma":"ガンマ","PDFE.Controllers.InsTab.txtSymbol_geq":"次の値より大きいか等しい","PDFE.Controllers.InsTab.txtSymbol_gg":"次の値よりはるかに大きい","PDFE.Controllers.InsTab.txtSymbol_greater":"次の値より大きい","PDFE.Controllers.InsTab.txtSymbol_in":"属する","PDFE.Controllers.InsTab.txtSymbol_inc":"増分","PDFE.Controllers.InsTab.txtSymbol_infinity":"無限","PDFE.Controllers.InsTab.txtSymbol_iota":"イオタ","PDFE.Controllers.InsTab.txtSymbol_kappa":"カッパ","PDFE.Controllers.InsTab.txtSymbol_lambda":"ラムダ","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"左矢印","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"左右矢印","PDFE.Controllers.InsTab.txtSymbol_leq":"次の値より小さいか等しい","PDFE.Controllers.InsTab.txtSymbol_less":"次の値より小さい","PDFE.Controllers.InsTab.txtSymbol_ll":"より小さい","PDFE.Controllers.InsTab.txtSymbol_minus":"マイナス","PDFE.Controllers.InsTab.txtSymbol_mp":"マイナスプラス\t","PDFE.Controllers.InsTab.txtSymbol_mu":"ミュー","PDFE.Controllers.InsTab.txtSymbol_nabla":"ナブラ","PDFE.Controllers.InsTab.txtSymbol_neq":"等しくない","PDFE.Controllers.InsTab.txtSymbol_ni":"含む","PDFE.Controllers.InsTab.txtSymbol_not":"「否定」記号","PDFE.Controllers.InsTab.txtSymbol_notexists":"存在しない","PDFE.Controllers.InsTab.txtSymbol_nu":"ニュー","PDFE.Controllers.InsTab.txtSymbol_o":"オミクロン","PDFE.Controllers.InsTab.txtSymbol_omega":"オメガ","PDFE.Controllers.InsTab.txtSymbol_partial":"偏微分方程式","PDFE.Controllers.InsTab.txtSymbol_percent":"パーセンテージ","PDFE.Controllers.InsTab.txtSymbol_phi":"ファイ","PDFE.Controllers.InsTab.txtSymbol_pi":"パイ","PDFE.Controllers.InsTab.txtSymbol_plus":"プラス","PDFE.Controllers.InsTab.txtSymbol_pm":"マイナスプラス","PDFE.Controllers.InsTab.txtSymbol_propto":"比例","PDFE.Controllers.InsTab.txtSymbol_psi":"プサイ","PDFE.Controllers.InsTab.txtSymbol_qdrt":"四乗根","PDFE.Controllers.InsTab.txtSymbol_qed":"証明終了","PDFE.Controllers.InsTab.txtSymbol_rddots":"斜め(右上)の省略記号","PDFE.Controllers.InsTab.txtSymbol_rho":"ロー","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"右矢印","PDFE.Controllers.InsTab.txtSymbol_sigma":"シグマ","PDFE.Controllers.InsTab.txtSymbol_sqrt":"根号","PDFE.Controllers.InsTab.txtSymbol_tau":"タウ","PDFE.Controllers.InsTab.txtSymbol_therefore":"従って","PDFE.Controllers.InsTab.txtSymbol_theta":"シータ","PDFE.Controllers.InsTab.txtSymbol_times":"「乗算」記号","PDFE.Controllers.InsTab.txtSymbol_uparrow":"上矢印","PDFE.Controllers.InsTab.txtSymbol_upsilon":"ウプシロン","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"イプシロン (別形)","PDFE.Controllers.InsTab.txtSymbol_varphi":"ファイ (別形)","PDFE.Controllers.InsTab.txtSymbol_varpi":"パイ 別形","PDFE.Controllers.InsTab.txtSymbol_varrho":"ロー (別形)","PDFE.Controllers.InsTab.txtSymbol_varsigma":"シグマ (別形)","PDFE.Controllers.InsTab.txtSymbol_vartheta":"シータ (別形)","PDFE.Controllers.InsTab.txtSymbol_vdots":"垂直線の省略記号","PDFE.Controllers.InsTab.txtSymbol_xsi":"グザイ","PDFE.Controllers.InsTab.txtSymbol_zeta":"ゼータ","PDFE.Controllers.LeftMenu.leavePageText":"変更を保存せずにドキュメントを閉じると変更が失われます。
「キャンセル」をクリックし、「保存」をクリックして保存してください。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","PDFE.Controllers.LeftMenu.newDocumentTitle":"無名のドキュメント","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":" 警告","PDFE.Controllers.LeftMenu.requestEditRightsText":"アクセス権の編集の要求中...","PDFE.Controllers.LeftMenu.textLoadHistory":"バージョン履歴の読み込み中...","PDFE.Controllers.LeftMenu.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","PDFE.Controllers.LeftMenu.textSelectPath":"ファイルのコピーを保存するために新しいタイトルを入力してください","PDFE.Controllers.LeftMenu.txtCompatible":"ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。","PDFE.Controllers.LeftMenu.txtUntitled":"タイトルなし","PDFE.Controllers.LeftMenu.warnDownloadAs":"この形式で保存する続けば、テクスト除いて全てが失います。
続けてもよろしいですか?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"あなたの{0}は編集可能な形式に変換されます。これには時間がかかる場合があります。変換後のドキュメントは、テキストを編集できるように最適化されるため、特に元のファイルに多くのグラフィックが含まれている場合、元の {0} と全く同じようには見えないかもしれません。","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"この形式で保存を続けると、一部の書式が失われる可能性があります。
本当に続行しますか?","PDFE.Controllers.Main.applyChangesTextText":"変更の読み込み中...","PDFE.Controllers.Main.applyChangesTitleText":"変更の読み込み中","PDFE.Controllers.Main.confirmMaxChangesSize":"アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。","PDFE.Controllers.Main.convertationTimeoutText":"変換のタイムアウトを超過しました。","PDFE.Controllers.Main.criticalErrorExtText":"OKボタンを押すと文書リストに戻ります","PDFE.Controllers.Main.criticalErrorExtTextClose":"[OK]を押してエディターを閉じます。","PDFE.Controllers.Main.criticalErrorTitle":"エラー","PDFE.Controllers.Main.downloadErrorText":"ダウンロードに失敗しました。","PDFE.Controllers.Main.downloadMergeText":"ダウンロード中...","PDFE.Controllers.Main.downloadMergeTitle":"ダウンロード中","PDFE.Controllers.Main.downloadTextText":"ドキュメントのダウンロード中...","PDFE.Controllers.Main.downloadTitleText":"ドキュメントのダウンロード中","PDFE.Controllers.Main.errorAccessDeny":"利用権限がない操作をしようとしました。
Documentサーバー管理者に連絡してください。","PDFE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません","PDFE.Controllers.Main.errorCannotPasteImg":"この画像をクリップボードから貼り付けることはできませんが、お使いのデバイスに保存して、 \nそこから挿入するか、テキストを含まない画像をコピーしてドキュメントに貼り付けることができます。","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。現在、文書を編集することができません。","PDFE.Controllers.Main.errorComboSeries":"組み合わせチャートを作成するには、最低2つのデータを選択してください。","PDFE.Controllers.Main.errorConnectToServer":"ドキュメントを保存できませんでした。接続設定を確認するか、管理者に連絡してください。
「OK」ボタンをクリックすると、ドキュメントのダウンロードを促すプロンプトが表示されます。","PDFE.Controllers.Main.errorCopyDisabled":"セキュリティ上の理由により、この文書の内容はコピーできません。","PDFE.Controllers.Main.errorDatabaseConnection":"外部エラーです。
データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。","PDFE.Controllers.Main.errorDataEncrypted":"暗号化された変更を受信しましたが、復号化できません。","PDFE.Controllers.Main.errorDataRange":"データの範囲は正しくありません。","PDFE.Controllers.Main.errorDefaultMessage":"エラーコード:%1","PDFE.Controllers.Main.errorDirectUrl":"ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。","PDFE.Controllers.Main.errorEditingDownloadas":"文書の処理中にエラーが発生しました。
コンピューターにファイルのバックアップコピーを保存するために、「名前を付けてダウンロード」をご使用ください。","PDFE.Controllers.Main.errorEditingSaveas":"文書の処理中にエラーが発生しました。
コンピューターにファイルのバックアップを保存するために、「名前を付けてダウンロード」をご使用ください。","PDFE.Controllers.Main.errorEmailClient":"メールクライアントが見つかりませんでした。","PDFE.Controllers.Main.errorFilePassProtect":"ドキュメントがパスワードで保護されているため開くことができません","PDFE.Controllers.Main.errorFileSizeExceed":"ファイルサイズがサーバーで設定された制限を超過しています。
ドキュメントサーバー管理者に詳細をお問い合わせください。","PDFE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。コンピューターにファイルを保存するために、「名前を付けてダウンロード」を使用し、または後で再お試しください。","PDFE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","PDFE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","PDFE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","PDFE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","PDFE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","PDFE.Controllers.Main.errorKeyEncrypt":"不明なキーの記述子","PDFE.Controllers.Main.errorKeyExpire":"キー記述子の有効期限が切れました","PDFE.Controllers.Main.errorLoadingFont":"フォントがダウンロードしませんでした。
文書のサーバのアドミ二ストレータを連絡してください。","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"入力されたパスワードが間違っています。
CapsLock キーがオフになっていること、大文字と小文字が正しく使われていることを確認してください。 ","PDFE.Controllers.Main.errorPDFFormsLocked":"ロックされたフォームに変更が加わるため、この操作は実行できません。","PDFE.Controllers.Main.errorSaveWatermark":"このファイルには、別のドメインにリンクされた透かし画像が含まれています。
PDFで見えるようにするには、文書と同じドメインからリンクされるように透かし画像を更新するか、コンピュータからアップロードしてください。","PDFE.Controllers.Main.errorServerVersion":"エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。","PDFE.Controllers.Main.errorSessionAbsolute":"ドキュメント編集セッションが終了しました。 ページを再ロードしてください。","PDFE.Controllers.Main.errorSessionIdle":"このドキュメントはかなり長い間編集されていませんでした。このページをリロードしてください。","PDFE.Controllers.Main.errorSessionToken":"サーバーとの接続が中断されました。このページをリロードしてください。","PDFE.Controllers.Main.errorSetPassword":"パスワードを設定できませんでした。","PDFE.Controllers.Main.errorStockChart":"行の順序は正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","PDFE.Controllers.Main.errorTextFormWrongFormat":"入力された値がフィールドのフォーマットと一致しません。","PDFE.Controllers.Main.errorToken":"ドキュメントセキュリティトークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。","PDFE.Controllers.Main.errorTokenExpire":"ドキュメントセキュリティトークンの有効期限が切れています。
ドキュメントサーバーの管理者に連絡してください。","PDFE.Controllers.Main.errorUpdateVersion":"ファイルが変更されました。ページがリロードされます。","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"インターネット接続が復旧し、ファイルのバージョンが更新されました。
作業を継続する前に、ファイルをダウンロードするか、内容をコピーして、変更が消えてしまわないように確認してから、ページを再びお読み込みください。","PDFE.Controllers.Main.errorUserDrop":"現在、このファイルにはアクセスできません。","PDFE.Controllers.Main.errorUsersExceed":"料金プランによってユーザ数を超過しました。","PDFE.Controllers.Main.errorViewerDisconnect":"接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。","PDFE.Controllers.Main.leavePageText":"この文書の保存されていない変更があります。保存するために「このページにとどまる」をクリックし、その後「保存」をクリックしてください。「このページを離れる」をクリックすると、未保存の変更がすべて破棄されます。","PDFE.Controllers.Main.leavePageTextOnClose":"変更を保存せずにドキュメントを閉じると変更が失われます。
「キャンセル」をクリックし、「保存」をクリックして保存してください。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","PDFE.Controllers.Main.loadFontsTextText":"データを読み込んでいます…","PDFE.Controllers.Main.loadFontsTitleText":"データの読み込み中","PDFE.Controllers.Main.loadFontTextText":"データを読み込んでいます…","PDFE.Controllers.Main.loadFontTitleText":"データの読み込み中","PDFE.Controllers.Main.loadImagesTextText":"画像を読み込んでいます…","PDFE.Controllers.Main.loadImagesTitleText":"画像を読み込んでいます","PDFE.Controllers.Main.loadImageTextText":"画像を読み込んでいます…","PDFE.Controllers.Main.loadImageTitleText":"画像を読み込んでいます","PDFE.Controllers.Main.loadingDocumentTextText":"文書の読み込み中...","PDFE.Controllers.Main.loadingDocumentTitleText":"文書の読み込み中","PDFE.Controllers.Main.notcriticalErrorTitle":" 警告","PDFE.Controllers.Main.openErrorText":"ファイルの読み込み中にエラーが発生しました。","PDFE.Controllers.Main.openTextText":"ドキュメントを開いています...","PDFE.Controllers.Main.openTitleText":"ドキュメントを開いています","PDFE.Controllers.Main.printTextText":"文書の印刷中...","PDFE.Controllers.Main.printTitleText":"文書の印刷中","PDFE.Controllers.Main.reloadButtonText":"ページの再読み込み","PDFE.Controllers.Main.requestEditFailedMessageText":"この文書は他のユーザによって編集しています。後でもう一度試してみてください。","PDFE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","PDFE.Controllers.Main.saveErrorText":"ファイルの保存中にエラーが発生しました。","PDFE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","PDFE.Controllers.Main.saveTextText":"ドキュメントの保存中...","PDFE.Controllers.Main.saveTitleText":"ドキュメントの保存中","PDFE.Controllers.Main.scriptLoadError":"接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。","PDFE.Controllers.Main.splitDividerErrorText":"行数は%1の除数になければなりません。","PDFE.Controllers.Main.splitMaxColsErrorText":"列の数は%1より小さくなければなりません。","PDFE.Controllers.Main.splitMaxRowsErrorText":"行数は%1より小さくなければなりません。","PDFE.Controllers.Main.textAnonymous":"匿名","PDFE.Controllers.Main.textAnyone":"誰でも","PDFE.Controllers.Main.textBuyNow":"ウェブサイトにアクセス","PDFE.Controllers.Main.textChangesSaved":"全ての変更点が保存されました","PDFE.Controllers.Main.textClose":"閉じる","PDFE.Controllers.Main.textCloseTip":"ヒントを閉じるためにクリックください","PDFE.Controllers.Main.textConnectionLost":"接続中です。接続設定をご確認ください。","PDFE.Controllers.Main.textContactUs":"営業部に連絡する","PDFE.Controllers.Main.textContinue":"続ける","PDFE.Controllers.Main.textCustomLoader":"ライセンス条項により、ローダーを変更する権利がないことにご注意ください。
見積もりについては、弊社営業部門にお問い合わせください。","PDFE.Controllers.Main.textDisconnect":"接続が切断されました","PDFE.Controllers.Main.textGuest":"ゲスト","PDFE.Controllers.Main.textLearnMore":"更に詳しく","PDFE.Controllers.Main.textLoadingDocument":"文書の読み込み中","PDFE.Controllers.Main.textLongName":"128文字未満の名前を入力してください。","PDFE.Controllers.Main.textNoLicenseTitle":"ライセンス制限に達しました","PDFE.Controllers.Main.textPaidFeature":"有料機能","PDFE.Controllers.Main.textReconnect":"接続が回復しました","PDFE.Controllers.Main.textRemember":"すべてのファイルに選択を保存する","PDFE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","PDFE.Controllers.Main.textRenameLabel":"コラボレーションに使用する名前を入力して下さい。","PDFE.Controllers.Main.textShape":"図形","PDFE.Controllers.Main.textStrict":"厳密モード","PDFE.Controllers.Main.textText":"テキスト","PDFE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","PDFE.Controllers.Main.textTryUndoRedo":"即時反映共同編集モードでは元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳密モード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。","PDFE.Controllers.Main.textTryUndoRedoWarn":"高速で共同な編集モードでは、元に戻す/やり直し機能が無効になります。","PDFE.Controllers.Main.textUndo":"元に戻す","PDFE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","PDFE.Controllers.Main.textUpdating":"アップデート中","PDFE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","PDFE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","PDFE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","PDFE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","PDFE.Controllers.Main.titleReadOnly":"閲覧専用モード","PDFE.Controllers.Main.titleServerVersion":"エディターが更新された","PDFE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","PDFE.Controllers.Main.txtArt":"テキストを入力…","PDFE.Controllers.Main.txtButton":"ボタン","PDFE.Controllers.Main.txtCheckbox":"チェックボックス","PDFE.Controllers.Main.txtChoose":"アイテムを選択してください","PDFE.Controllers.Main.txtClickToLoad":"クリックして画像を読み込む","PDFE.Controllers.Main.txtDiagramTitle":"グラフのタイトル","PDFE.Controllers.Main.txtDocUnlockDescription":"パスワードを入力すると、文書の保護が解除されます","PDFE.Controllers.Main.txtDropdown":"ドロップダウン","PDFE.Controllers.Main.txtEditingMode":"編集モードを設定する","PDFE.Controllers.Main.txtEnterDate":"日付を入力してください","PDFE.Controllers.Main.txtErrorLoadHistory":"履歴の読み込みに失敗しました","PDFE.Controllers.Main.txtGroup":"グループ","PDFE.Controllers.Main.txtInvalidGreater":"フィールド \"{0}\" の有効値: {1} 以上でなければなりません。","PDFE.Controllers.Main.txtInvalidGreaterLess":"フィールド \"{0}\" の有効値: {1} 以上 {2} 以下でなければなりません。","PDFE.Controllers.Main.txtInvalidLess":"フィールド \"{0}\" の有効値:{1} 以下でなければなりません。","PDFE.Controllers.Main.txtInvalidPdfFormat":"入力された値がフィールド\"{0}\"のフォーマットと一致しません。","PDFE.Controllers.Main.txtInvalidValue":"フィールド \"{0}\" の値が無効です","PDFE.Controllers.Main.txtListbox":"リストボックス","PDFE.Controllers.Main.txtNeedSynchronize":"アップデートがあります","PDFE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"このドキュメントは{0}に接続しようとしています。このサイトを信頼する場合は「OK」を押してください。","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"このドキュメントはファイルダイアログを開こうとしています。開くには、OKを押してください。","PDFE.Controllers.Main.txtSeries":"系列","PDFE.Controllers.Main.txtSignature":"署名","PDFE.Controllers.Main.txtText":"テキスト","PDFE.Controllers.Main.txtUnlockTitle":"文書保護の解除","PDFE.Controllers.Main.txtValidPdfFormat":"フィールドの値はフォーマット\"{0}\"と一致しなければなりません。","PDFE.Controllers.Main.txtXAxis":"X 軸","PDFE.Controllers.Main.txtYAxis":"Y軸","PDFE.Controllers.Main.unknownErrorText":"不明なエラーです。","PDFE.Controllers.Main.unsupportedBrowserErrorText":"お使いのブラウザはサポートされていません。","PDFE.Controllers.Main.uploadDocExtMessage":"不明な文書形式","PDFE.Controllers.Main.uploadDocFileCountMessage":"アップロードされた文書がありません。","PDFE.Controllers.Main.uploadDocSizeMessage":"文書の最大サイズ制限を超えています。","PDFE.Controllers.Main.uploadImageExtMessage":"不明な画像形式です。","PDFE.Controllers.Main.uploadImageFileCountMessage":"画像のアップロードはありません。","PDFE.Controllers.Main.uploadImageSizeMessage":"画像サイズの上限を超えました。サイズの上限は25MBです。","PDFE.Controllers.Main.uploadImageTextText":"画像のアップロード中...","PDFE.Controllers.Main.uploadImageTitleText":"画像のアップロード中","PDFE.Controllers.Main.waitText":"少々お待ちください...","PDFE.Controllers.Main.warnBrowserIE9":"このアプリケーションはIE9では低機能です。IE10以上のバージョンをご利用ください。","PDFE.Controllers.Main.warnBrowserZoom":"お使いのブラウザの現在のZoomの設定は完全にはサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。","PDFE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","PDFE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","PDFE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページを再読み込みしてください。","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください。","PDFE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","PDFE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー数制限に達しました。 アップグレード条件については、%1営業チームにお問い合わせください。","PDFE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","PDFE.Controllers.Navigation.txtBeginning":"文書の先頭","PDFE.Controllers.Navigation.txtGotoBeginning":"文書の先頭に移動する","PDFE.Controllers.Print.textMarginsLast":"最後に適用した設定","PDFE.Controllers.Print.txtCustom":"カスタム","PDFE.Controllers.Print.txtPrintRangeInvalid":"無効な印刷範囲","PDFE.Controllers.RedactTab.applyButtonText":"適用","PDFE.Controllers.RedactTab.doNotApplyButtonText":"適用しない","PDFE.Controllers.RedactTab.textApplyRedact":"黒消し済みの情報は、このドキュメントから永久に削除されます。保存した後は、情報を復元することはできなくなります。","PDFE.Controllers.RedactTab.textEnterPageRange":"編集対象のページ範囲を入力してください","PDFE.Controllers.RedactTab.textEnterRangeDescription":"例:1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"ページを黒消し","PDFE.Controllers.RedactTab.textUnappliedRedactions":"このドキュメントには、まだ適用されていない編集マークが含まれています。

「編集を適用」を選択するまでは、これらのマークは削除可能であり、情報は復元できます。","PDFE.Controllers.RedactTab.tipApplyRedaction":"すべての編集を適用して保存してください。保存されていない編集は元に戻せます。","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"編集を適用する","PDFE.Controllers.RedactTab.tipMarkForRedaction":"これらのツールを使って、PDF内の機密情報をマークし、検索し、編集する。","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"黒消し対象としてマークする","PDFE.Controllers.RedactTab.txtInvalidFormat":"不正形式です。単一の数値か、ハイフン付きの範囲を使用してください。例:2 または 2-6","PDFE.Controllers.RedactTab.txtInvalidRange":"ページ数は1から{0}の間でなければなりません","PDFE.Controllers.RedactTab.txtReversedRange":"開始ページは終了ページ以下でなければなりません","PDFE.Controllers.Search.notcriticalErrorTitle":" 警告","PDFE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","PDFE.Controllers.Search.textReplaceSkipped":"置換が完了しました。{0}つスキップされました。","PDFE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました","PDFE.Controllers.Search.warnReplaceString":"{0}は、「置換」ボックスで有効な特殊文字ではありません。","PDFE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","PDFE.Controllers.Statusbar.zoomText":"ズーム{0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"保存しようとしているフォントは、現在のデバイスでは使用できません。
テキストスタイルは、デバイスのフォントのいずれかを使用して表示され、保存されたフォントは、それが使用可能になったときに使用されます。
続けますか?","PDFE.Controllers.Toolbar.errorAccessDeny":"利用権限がない操作をしようとしました。
文書サーバーの管理者までご連絡ください。","PDFE.Controllers.Toolbar.helpAnnotRect":"新しい注釈ツールを発見:長方形、円、矢印、および接続線。","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"新規注釈","PDFE.Controllers.Toolbar.helpPdfCharts":"PDFファイル内で直接、図表やSmartArtを挿入・編集する。","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"PDF内のチャートとSmartArt","PDFE.Controllers.Toolbar.helpRedactTab":"機密情報を保護するには、編集機能を使って安全に機密コンテンツを削除できる。","PDFE.Controllers.Toolbar.helpRedactTabHeader":"PDFでの黒消し","PDFE.Controllers.Toolbar.notcriticalErrorTitle":" 警告","PDFE.Controllers.Toolbar.textFontSizeErr":"入力された値が正しくありません。
1〜300の数値を入力してください。","PDFE.Controllers.Toolbar.textGotIt":"OK","PDFE.Controllers.Toolbar.textRequired":"必須事項をすべて入力し、送信してください。","PDFE.Controllers.Toolbar.textSubmited":"フォームは正常に送信されました
クリックしてヒントを閉じてください","PDFE.Controllers.Toolbar.textTabForms":"フォーム","PDFE.Controllers.Toolbar.textWarning":" 警告","PDFE.Controllers.Toolbar.txtDownload":"ダウンロード","PDFE.Controllers.Toolbar.txtNeedCommentMode":"ファイルへの変更を保存するには、「コメント」モードに切り替える。または、変更したファイルのコピーをダウンロードすることもできます。","PDFE.Controllers.Toolbar.txtNeedDownload":"現時点では、PDFビューアは新しい変更を別々のファイルコピーに保存することができます。共同編集はサポートしていないため、新しいファイルバージョンを共有しない限り、他のユーザーには変更が見えません。","PDFE.Controllers.Toolbar.txtSaveCopy":"コピーを保存","PDFE.Controllers.Toolbar.txtUntitled":"無題","PDFE.Controllers.Viewport.textFitPage":"ページに合わせる","PDFE.Controllers.Viewport.textFitWidth":"幅に合わせる","PDFE.Controllers.Viewport.txtDarkMode":"ダークモード","PDFE.Views.ChartSettings.text3dDepth":"深さ(ベースに対する割合)","PDFE.Views.ChartSettings.text3dHeight":"高さ(ベースに対する割合)","PDFE.Views.ChartSettings.text3dRotation":"3D回転","PDFE.Views.ChartSettings.textAdvanced":"詳細設定の表示","PDFE.Views.ChartSettings.textAutoscale":"自動スケーリング","PDFE.Views.ChartSettings.textChartType":"グラフ種類の変更","PDFE.Views.ChartSettings.textData":"データ","PDFE.Views.ChartSettings.textDefault":"デフォルト回転","PDFE.Views.ChartSettings.textDown":"下","PDFE.Views.ChartSettings.textEditData":"データの編集","PDFE.Views.ChartSettings.textEditLinks":"リンクの編集","PDFE.Views.ChartSettings.textHeight":"高さ","PDFE.Views.ChartSettings.textKeepRatio":"一定の比率","PDFE.Views.ChartSettings.textLeft":"左","PDFE.Views.ChartSettings.textLinkedData":"リンク済みのデータ","PDFE.Views.ChartSettings.textNarrow":"狭角","PDFE.Views.ChartSettings.textPerspective":"分析観点","PDFE.Views.ChartSettings.textRight":"右揃え","PDFE.Views.ChartSettings.textRightAngle":"軸の直交","PDFE.Views.ChartSettings.textSelectData":"データの選択","PDFE.Views.ChartSettings.textSize":"サイズ","PDFE.Views.ChartSettings.textStyle":"スタイル","PDFE.Views.ChartSettings.textUp":"上","PDFE.Views.ChartSettings.textUpdateData":"データの更新","PDFE.Views.ChartSettings.textWiden":"広角","PDFE.Views.ChartSettings.textWidth":"幅","PDFE.Views.ChartSettings.textX":"X 回転","PDFE.Views.ChartSettings.textY":"Y 回転","PDFE.Views.ChartSettingsAdvanced.textAlt":"代替テキスト","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"説明","PDFE.Views.ChartSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"タイトル","PDFE.Views.ChartSettingsAdvanced.textAuto":"自動","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"軸との交点","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"軸位置","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"タイトル","PDFE.Views.ChartSettingsAdvanced.textBase":"ベース","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"目盛りの間","PDFE.Views.ChartSettingsAdvanced.textBillions":"十億","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"カテゴリ名","PDFE.Views.ChartSettingsAdvanced.textCenter":"中央揃え","PDFE.Views.ChartSettingsAdvanced.textChartName":"チャート名","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"グラフのタイトル","PDFE.Views.ChartSettingsAdvanced.textCross":"十字","PDFE.Views.ChartSettingsAdvanced.textCustom":"カスタム","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"データラベル","PDFE.Views.ChartSettingsAdvanced.textFit":"幅に合わせる","PDFE.Views.ChartSettingsAdvanced.textFixed":"固定","PDFE.Views.ChartSettingsAdvanced.textFormat":"ラベルの書式","PDFE.Views.ChartSettingsAdvanced.textFrom":"から","PDFE.Views.ChartSettingsAdvanced.textGeneral":"一般","PDFE.Views.ChartSettingsAdvanced.textGridLines":"グリッド線","PDFE.Views.ChartSettingsAdvanced.textHeight":"高さ","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"軸を非表示","PDFE.Views.ChartSettingsAdvanced.textHigh":"高い","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"横軸","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"二次横軸","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"水平","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"百","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PDFE.Views.ChartSettingsAdvanced.textIn":"中","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"内部(下)","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"内部(上)","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"一定の比率","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"軸ラベルの距離","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"ラベルの間の間隔","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"ラベルのオプション","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"ラベルの位置","PDFE.Views.ChartSettingsAdvanced.textLayout":"レイアウト","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"左の重ね合わせ","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"最下部","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"左","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"凡例","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"右揃え","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"上","PDFE.Views.ChartSettingsAdvanced.textLines":"線","PDFE.Views.ChartSettingsAdvanced.textLogScale":"対数目盛","PDFE.Views.ChartSettingsAdvanced.textLow":"低い","PDFE.Views.ChartSettingsAdvanced.textMajor":"メジャー","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"メジャーとマイナー","PDFE.Views.ChartSettingsAdvanced.textMajorType":"メジャータイプ","PDFE.Views.ChartSettingsAdvanced.textManual":"手動","PDFE.Views.ChartSettingsAdvanced.textMarkers":"マーカー","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"マークの間の間隔","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"最大値","PDFE.Views.ChartSettingsAdvanced.textMillions":"百万","PDFE.Views.ChartSettingsAdvanced.textMinor":"マイナー","PDFE.Views.ChartSettingsAdvanced.textMinorType":"マイナータイプ","PDFE.Views.ChartSettingsAdvanced.textMinValue":"最小値","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"軸の隣","PDFE.Views.ChartSettingsAdvanced.textNone":"なし","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"重ね合わせなし","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"目盛り","PDFE.Views.ChartSettingsAdvanced.textOut":"外","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"外側上部","PDFE.Views.ChartSettingsAdvanced.textOverlay":"重ね合わせ","PDFE.Views.ChartSettingsAdvanced.textPlacement":"位置","PDFE.Views.ChartSettingsAdvanced.textPosition":"位置","PDFE.Views.ChartSettingsAdvanced.textReverse":"逆順の値","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"右の重ね合わせ","PDFE.Views.ChartSettingsAdvanced.textRotated":"回転済み","PDFE.Views.ChartSettingsAdvanced.textSeparator":"日付のラベルの区切り記号","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"系列の名前","PDFE.Views.ChartSettingsAdvanced.textSize":"サイズ","PDFE.Views.ChartSettingsAdvanced.textSmooth":"スムーズ","PDFE.Views.ChartSettingsAdvanced.textStraight":"直線","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PDFE.Views.ChartSettingsAdvanced.textThousands":"千","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"ティックのオプション","PDFE.Views.ChartSettingsAdvanced.textTitle":"グラフ - 詳細設定","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"左上隅","PDFE.Views.ChartSettingsAdvanced.textTrillions":"兆","PDFE.Views.ChartSettingsAdvanced.textUnits":"表示単位","PDFE.Views.ChartSettingsAdvanced.textValue":"値","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"縦軸","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"二次縦軸","PDFE.Views.ChartSettingsAdvanced.textVertical":"縦","PDFE.Views.ChartSettingsAdvanced.textWidth":"幅","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"左の重ね合わせ","PDFE.Views.DocumentHolder.aboveText":"上","PDFE.Views.DocumentHolder.addCommentText":"コメントを追加","PDFE.Views.DocumentHolder.advancedChartText":"グラフの詳細設定","PDFE.Views.DocumentHolder.advancedEquationText":"方程式設定","PDFE.Views.DocumentHolder.advancedImageText":"画像の詳細設定","PDFE.Views.DocumentHolder.advancedParagraphText":"段落の詳細設定","PDFE.Views.DocumentHolder.advancedShapeText":"図形の詳細設定","PDFE.Views.DocumentHolder.advancedTableText":"表の詳細設定","PDFE.Views.DocumentHolder.AlignBottom":"最下部","PDFE.Views.DocumentHolder.AlignCenter":"中央揃え","PDFE.Views.DocumentHolder.AlignJust":"両端揃え","PDFE.Views.DocumentHolder.AlignLeft":"左","PDFE.Views.DocumentHolder.alignmentText":"配置","PDFE.Views.DocumentHolder.AlignMiddle":"中央","PDFE.Views.DocumentHolder.AlignRight":"右","PDFE.Views.DocumentHolder.AlignText":"テキストの揃え","PDFE.Views.DocumentHolder.AlignTop":"トップ","PDFE.Views.DocumentHolder.allLinearText":"すべて - 線形","PDFE.Views.DocumentHolder.allProfText":"すべて - プロフェッショナル","PDFE.Views.DocumentHolder.belowText":"下","PDFE.Views.DocumentHolder.btnChart":"タイトル、凡例、目盛線、データ ラベルなどのグラフ要素を追加、削除、または変更します","PDFE.Views.DocumentHolder.cellAlignText":"セルの縦方向の配置","PDFE.Views.DocumentHolder.cellText":"セル","PDFE.Views.DocumentHolder.centerText":"中央揃え","PDFE.Views.DocumentHolder.columnText":"列","PDFE.Views.DocumentHolder.confirmAddFontName":"保存しようとしているフォントは、現在のデバイスでは使用できません。
テキストスタイルは、デバイスのフォントのいずれかを使用して表示され、保存されたフォントは、それが使用可能になったときに使用されます。
続けますか?","PDFE.Views.DocumentHolder.currLinearText":"現在 - 線形","PDFE.Views.DocumentHolder.currProfText":"現在 - プロフェッショナル","PDFE.Views.DocumentHolder.deleteColumnText":"列の削除","PDFE.Views.DocumentHolder.deleteRowText":"行の削除","PDFE.Views.DocumentHolder.deleteTableText":"表の削除","PDFE.Views.DocumentHolder.deleteText":"削除","PDFE.Views.DocumentHolder.DepthAxis":"Z軸","PDFE.Views.DocumentHolder.direct270Text":"テキストを上に回転","PDFE.Views.DocumentHolder.direct90Text":"テキストを下に回転","PDFE.Views.DocumentHolder.directHText":"水平","PDFE.Views.DocumentHolder.directionText":"文字の方向","PDFE.Views.DocumentHolder.editChartText":"データの編集","PDFE.Views.DocumentHolder.editHyperlinkText":"リンクを編集する","PDFE.Views.DocumentHolder.guestText":"ゲスト","PDFE.Views.DocumentHolder.hideEqToolbar":"方程式ツールバーを非表示にする","PDFE.Views.DocumentHolder.hyperlinkText":"リンク","PDFE.Views.DocumentHolder.insertColumnLeftText":"左の列","PDFE.Views.DocumentHolder.insertColumnRightText":"右の列","PDFE.Views.DocumentHolder.insertColumnText":"列の挿入","PDFE.Views.DocumentHolder.insertRowAboveText":"行 (上)","PDFE.Views.DocumentHolder.insertRowBelowText":"行(下)","PDFE.Views.DocumentHolder.insertRowText":"行の挿入","PDFE.Views.DocumentHolder.insertText":"挿入","PDFE.Views.DocumentHolder.latexText":"LaTeX","PDFE.Views.DocumentHolder.leftText":"左","PDFE.Views.DocumentHolder.mergeCellsText":"セルの結合","PDFE.Views.DocumentHolder.mniImageFromFile":"ファイルから画像","PDFE.Views.DocumentHolder.mniImageFromStorage":"ストレージから画像","PDFE.Views.DocumentHolder.mniImageFromUrl":"URLから画像","PDFE.Views.DocumentHolder.originalSizeText":"実際のサイズ","PDFE.Views.DocumentHolder.removeCommentText":"削除","PDFE.Views.DocumentHolder.removeHyperlinkText":"リンクを削除する","PDFE.Views.DocumentHolder.rightText":"右揃え","PDFE.Views.DocumentHolder.rowText":"行","PDFE.Views.DocumentHolder.selectText":"選択","PDFE.Views.DocumentHolder.showEqToolbar":"方程式ツールバーの表示","PDFE.Views.DocumentHolder.splitCellsText":"セルを分割...","PDFE.Views.DocumentHolder.splitCellTitleText":"セルを分割","PDFE.Views.DocumentHolder.tableText":"表","PDFE.Views.DocumentHolder.textArrangeBack":"背景へ移動","PDFE.Views.DocumentHolder.textArrangeBackward":"背面ヘ移動","PDFE.Views.DocumentHolder.textArrangeForward":"前面ヘ移動","PDFE.Views.DocumentHolder.textArrangeFront":"前景に移動","PDFE.Views.DocumentHolder.textAxes":"座標軸","PDFE.Views.DocumentHolder.textAxisTitles":"軸のタイトル","PDFE.Views.DocumentHolder.textBottom":"最下部","PDFE.Views.DocumentHolder.textCenter":"中央揃え","PDFE.Views.DocumentHolder.textChartTitle":"グラフのタイトル","PDFE.Views.DocumentHolder.textClearField":"フィールドのクリア","PDFE.Views.DocumentHolder.textCm":"センチ","PDFE.Views.DocumentHolder.textColor":"色","PDFE.Views.DocumentHolder.textCopy":"コピー","PDFE.Views.DocumentHolder.textCrop":"トリミング","PDFE.Views.DocumentHolder.textCropFill":"塗りつぶし","PDFE.Views.DocumentHolder.textCropFit":"合わせる","PDFE.Views.DocumentHolder.textCustom":"ユーザー設定","PDFE.Views.DocumentHolder.textCut":"切り取り","PDFE.Views.DocumentHolder.textDataLabels":"データラベル","PDFE.Views.DocumentHolder.textDistributeCols":"列の幅を揃える","PDFE.Views.DocumentHolder.textDistributeRows":"行の高さを揃える","PDFE.Views.DocumentHolder.textEditPoints":"頂点の編集","PDFE.Views.DocumentHolder.textErrorBars":"誤差範囲","PDFE.Views.DocumentHolder.textExponential":"指数","PDFE.Views.DocumentHolder.textFit":"幅に合わせる","PDFE.Views.DocumentHolder.textFlipH":"左右に反転","PDFE.Views.DocumentHolder.textFlipV":"上下に反転","PDFE.Views.DocumentHolder.textFontSizeErr":"入力された値が正しくありません。
1〜300の数値を入力してください。","PDFE.Views.DocumentHolder.textFromFile":"ファイルから","PDFE.Views.DocumentHolder.textFromStorage":"ストレージから","PDFE.Views.DocumentHolder.textFromUrl":"URLから","PDFE.Views.DocumentHolder.textGridLines":"グリッド線","PDFE.Views.DocumentHolder.textHorAxis":"横軸","PDFE.Views.DocumentHolder.textHorAxisSec":"二次横軸","PDFE.Views.DocumentHolder.textHorizontalMajor":"主要な水平線","PDFE.Views.DocumentHolder.textHorizontalMinor":"二次的な水平線","PDFE.Views.DocumentHolder.textInnerBottom":"内部(下)","PDFE.Views.DocumentHolder.textInnerTop":"内部(上)","PDFE.Views.DocumentHolder.textLeft":"左","PDFE.Views.DocumentHolder.textLeftData":"左","PDFE.Views.DocumentHolder.textLeftOverlay":"左の重ね合わせ","PDFE.Views.DocumentHolder.textLegendPos":"凡例","PDFE.Views.DocumentHolder.textLinear":"線形","PDFE.Views.DocumentHolder.textLinearForecast":"線形予測","PDFE.Views.DocumentHolder.textLines":"線","PDFE.Views.DocumentHolder.textMovingAverage":"移動平均 (2)","PDFE.Views.DocumentHolder.textNone":"なし","PDFE.Views.DocumentHolder.textNoOverlay":"重ね合わせなし","PDFE.Views.DocumentHolder.textOuterTop":"外側上部","PDFE.Views.DocumentHolder.textOverlay":"重ね合わせ","PDFE.Views.DocumentHolder.textPaste":"貼り付け","PDFE.Views.DocumentHolder.textRecognize":"テキストの編集","PDFE.Views.DocumentHolder.textRedact":"テキストを黒消し","PDFE.Views.DocumentHolder.textRedo":"やり直し","PDFE.Views.DocumentHolder.textReplace":"画像の置き換え","PDFE.Views.DocumentHolder.textResetCrop":"トリミングをリセット","PDFE.Views.DocumentHolder.textRight":"右揃え","PDFE.Views.DocumentHolder.textRightOverlay":"右の重ね合わせ","PDFE.Views.DocumentHolder.textRotate":"回転","PDFE.Views.DocumentHolder.textRotate270":"反時計回りに90度回転","PDFE.Views.DocumentHolder.textRotate90":"時計回りに90度回転","PDFE.Views.DocumentHolder.textSaveAsPicture":"画像として保存","PDFE.Views.DocumentHolder.textShapeAlignBottom":"下揃え","PDFE.Views.DocumentHolder.textShapeAlignCenter":"中央揃え","PDFE.Views.DocumentHolder.textShapeAlignLeft":"左揃え","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"中央揃え","PDFE.Views.DocumentHolder.textShapeAlignRight":"右揃え","PDFE.Views.DocumentHolder.textShapeAlignTop":"上揃え","PDFE.Views.DocumentHolder.textShapesMerge":"図形を結合","PDFE.Views.DocumentHolder.textShowLegendKeys":"凡例キーの表示","PDFE.Views.DocumentHolder.textShowUpDown":"上昇/下降バーを表示","PDFE.Views.DocumentHolder.textStandardDeviation":"標準偏差","PDFE.Views.DocumentHolder.textStandardError":"標準誤差","PDFE.Views.DocumentHolder.textTop":"上","PDFE.Views.DocumentHolder.textTrendline":"トレンドライン","PDFE.Views.DocumentHolder.textUndo":"元に戻す","PDFE.Views.DocumentHolder.textUpDownBars":"上下スクロールバー","PDFE.Views.DocumentHolder.textVertAxis":"縦軸","PDFE.Views.DocumentHolder.textVertAxisSec":"二次縦軸","PDFE.Views.DocumentHolder.textVerticalMajor":"主要の縦軸","PDFE.Views.DocumentHolder.textVerticalMinor":"二次的な縦軸","PDFE.Views.DocumentHolder.tipIsLocked":"今、この要素が他のユーザによって編集されています。","PDFE.Views.DocumentHolder.tipRecognize":"テキストの編集","PDFE.Views.DocumentHolder.tipRedact":"テキストを黒消し","PDFE.Views.DocumentHolder.txtAddBottom":"下罫線の追加","PDFE.Views.DocumentHolder.txtAddFractionBar":"分数罫の追加","PDFE.Views.DocumentHolder.txtAddHor":"水平線の追加","PDFE.Views.DocumentHolder.txtAddLB":"左下線の追加","PDFE.Views.DocumentHolder.txtAddLeft":"左罫線の追加","PDFE.Views.DocumentHolder.txtAddLT":"左上線の追加","PDFE.Views.DocumentHolder.txtAddRight":"右罫線を追加","PDFE.Views.DocumentHolder.txtAddTop":"上罫線を追加","PDFE.Views.DocumentHolder.txtAddVer":"縦線を追加","PDFE.Views.DocumentHolder.txtAlign":"配置","PDFE.Views.DocumentHolder.txtAlignToChar":"文字に合わせる","PDFE.Views.DocumentHolder.txtArrange":"整列","PDFE.Views.DocumentHolder.txtBackground":"背景","PDFE.Views.DocumentHolder.txtBorderProps":"罫線の​​プロパティ","PDFE.Views.DocumentHolder.txtBottom":"下","PDFE.Views.DocumentHolder.txtColumnAlign":"列の配置","PDFE.Views.DocumentHolder.txtCopyPage":"ページのコピー","PDFE.Views.DocumentHolder.txtCutPage":"ページの切り取り","PDFE.Views.DocumentHolder.txtDecreaseArg":"引数のサイズの縮小","PDFE.Views.DocumentHolder.txtDeleteArg":"引数の削除","PDFE.Views.DocumentHolder.txtDeleteBreak":"任意指定の改行を削除","PDFE.Views.DocumentHolder.txtDeleteChars":"開始文字と終了文字の削除","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"囲み文字と区切り文字の削除","PDFE.Views.DocumentHolder.txtDeleteEq":"数式の削除","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"文字の削除","PDFE.Views.DocumentHolder.txtDeletePage":"ページを削除","PDFE.Views.DocumentHolder.txtDeleteRadical":"べき乗根の削除","PDFE.Views.DocumentHolder.txtDistribHor":"左右に整列","PDFE.Views.DocumentHolder.txtDistribVert":"上下に整列","PDFE.Views.DocumentHolder.txtEmpty":"(空白)","PDFE.Views.DocumentHolder.txtFractionLinear":"分数(横)に変更","PDFE.Views.DocumentHolder.txtFractionSkewed":"斜めの分数罫に変更","PDFE.Views.DocumentHolder.txtFractionStacked":"分数(縦)に変更\t","PDFE.Views.DocumentHolder.txtGroup":"グループ","PDFE.Views.DocumentHolder.txtGroupCharOver":"テキストの上の文字","PDFE.Views.DocumentHolder.txtGroupCharUnder":"テキストの下の文字","PDFE.Views.DocumentHolder.txtHideBottom":"下罫線を表示しない","PDFE.Views.DocumentHolder.txtHideBottomLimit":"下極限を表示しない","PDFE.Views.DocumentHolder.txtHideCloseBracket":"右かっこを表示しない","PDFE.Views.DocumentHolder.txtHideDegree":"次数を表示しない","PDFE.Views.DocumentHolder.txtHideHor":"水平線を表示しない","PDFE.Views.DocumentHolder.txtHideLB":"左詰め(下)のラインを表示しない","PDFE.Views.DocumentHolder.txtHideLeft":"左罫線を表示しない","PDFE.Views.DocumentHolder.txtHideLT":"左詰め(上)のラインを表示しない","PDFE.Views.DocumentHolder.txtHideOpenBracket":"左かっこを表示しない","PDFE.Views.DocumentHolder.txtHidePlaceholder":"プレースホルダを表示しない","PDFE.Views.DocumentHolder.txtHideRight":"右罫線を枠線表示しない","PDFE.Views.DocumentHolder.txtHideTop":"上罫線を表示しない","PDFE.Views.DocumentHolder.txtHideTopLimit":"上極限を表示しない","PDFE.Views.DocumentHolder.txtHideVer":"縦線を表示しない","PDFE.Views.DocumentHolder.txtIncreaseArg":"引数のサイズの拡大","PDFE.Views.DocumentHolder.txtInsertArgAfter":"後に引数を挿入","PDFE.Views.DocumentHolder.txtInsertArgBefore":"前に引数を挿入","PDFE.Views.DocumentHolder.txtInsertBreak":"手動ブレークを挿入","PDFE.Views.DocumentHolder.txtInsertEqAfter":"後に方程式を挿入","PDFE.Views.DocumentHolder.txtInsertEqBefore":"前に方程式を挿入","PDFE.Views.DocumentHolder.txtLimitChange":"制限位置の変更","PDFE.Views.DocumentHolder.txtLimitOver":"テキストの上に制限する","PDFE.Views.DocumentHolder.txtLimitUnder":"テキストの下に制限する","PDFE.Views.DocumentHolder.txtMatchBrackets":"かっこを引数の高さに合わせる","PDFE.Views.DocumentHolder.txtMatrixAlign":"行列の配置","PDFE.Views.DocumentHolder.txtNewPageAfter":"後に空白ページを挿入","PDFE.Views.DocumentHolder.txtNewPageBefore":"前に空白ページを挿入","PDFE.Views.DocumentHolder.txtOpacity":"不透明度","PDFE.Views.DocumentHolder.txtOverbar":"テキストの上にバー","PDFE.Views.DocumentHolder.txtPastePage":"ページの貼り付け","PDFE.Views.DocumentHolder.txtPastePageAfter":"次のページの後で貼り付ける","PDFE.Views.DocumentHolder.txtPastePageBefore":"ページの前で貼り付ける","PDFE.Views.DocumentHolder.txtPercentage":"パーセンテージ","PDFE.Views.DocumentHolder.txtPressLink":"{0}キーを押しながらリンクをクリックしてください","PDFE.Views.DocumentHolder.txtPrintSelection":"選択範囲の印刷","PDFE.Views.DocumentHolder.txtRemFractionBar":"分数線の削除","PDFE.Views.DocumentHolder.txtRemLimit":"制限を削除する","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"アクセント記号の削除","PDFE.Views.DocumentHolder.txtRemoveBar":"線を削除する","PDFE.Views.DocumentHolder.txtRemScripts":"スクリプトの削除","PDFE.Views.DocumentHolder.txtRemSubscript":"下付き文字の削除","PDFE.Views.DocumentHolder.txtRemSuperscript":"上付き文字の削除","PDFE.Views.DocumentHolder.txtRotateLeft":"ページの左回転","PDFE.Views.DocumentHolder.txtRotateRight":"ページの右回転","PDFE.Views.DocumentHolder.txtScriptsAfter":"テキストの後のスクリプト","PDFE.Views.DocumentHolder.txtScriptsBefore":"テキストの前のスクリプト","PDFE.Views.DocumentHolder.txtSelectAll":"すべてを選択","PDFE.Views.DocumentHolder.txtShowBottomLimit":"下限を表示する","PDFE.Views.DocumentHolder.txtShowCloseBracket":"右かっこを表示","PDFE.Views.DocumentHolder.txtShowDegree":"次数を表示","PDFE.Views.DocumentHolder.txtShowOpenBracket":"左かっこを表示","PDFE.Views.DocumentHolder.txtShowPlaceholder":"プレースホルダーの表示","PDFE.Views.DocumentHolder.txtShowTopLimit":"上限を表示","PDFE.Views.DocumentHolder.txtStretchBrackets":"かっこの拡大","PDFE.Views.DocumentHolder.txtTop":"上","PDFE.Views.DocumentHolder.txtUnderbar":"テキストの下にバー","PDFE.Views.DocumentHolder.txtUngroup":"グループ化解除","PDFE.Views.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、端末やデータに損害を与える可能性があります。コンピュータを保護するため、信頼できるソースからのリンクのみをクリックしてください。この場所は安全でない可能性があります:

{0}

続行しますか?","PDFE.Views.DocumentHolder.unicodeText":"Unicode","PDFE.Views.DocumentHolder.vertAlignText":"垂直方向の配置","PDFE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","PDFE.Views.FileMenu.btnBackCaption":"ファイルを開く","PDFE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","PDFE.Views.FileMenu.btnCloseMenuCaption":"戻る","PDFE.Views.FileMenu.btnCreateNewCaption":"新規作成","PDFE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","PDFE.Views.FileMenu.btnExitCaption":"閉じる","PDFE.Views.FileMenu.btnFileOpenCaption":"開く","PDFE.Views.FileMenu.btnHelpCaption":"ヘルプ","PDFE.Views.FileMenu.btnHistoryCaption":"バージョン履歴","PDFE.Views.FileMenu.btnInfoCaption":"情報","PDFE.Views.FileMenu.btnPrintCaption":"印刷","PDFE.Views.FileMenu.btnProtectCaption":"保護","PDFE.Views.FileMenu.btnRecentFilesCaption":"最近使ったファイルを開く","PDFE.Views.FileMenu.btnRenameCaption":"名前の変更","PDFE.Views.FileMenu.btnReturnCaption":"文書に戻る","PDFE.Views.FileMenu.btnRightsCaption":"アクセス権","PDFE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","PDFE.Views.FileMenu.btnSaveCaption":"保存","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"コピーを別名で保存する","PDFE.Views.FileMenu.btnSettingsCaption":"詳細設定","PDFE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","PDFE.Views.FileMenu.btnToEditCaption":"ドキュメントの編集","PDFE.Views.FileMenu.textDownload":"ダウンロード","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"空の文書","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"新規作成","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"適用","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"著者を追加","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"テキストを追加","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"アプリケーション","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"作成者","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"アクセス権の変更","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"コメント","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"共通","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成済み","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文書の情報","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Web表示用に最適化","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"読み込み中...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"所有者","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"ページ","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"ページのサイズ","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"段落","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDFメーカー","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"タグ付きPDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDFのバージョン","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"位置","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"権利を持っている者","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"文字数 (スペースを含む)","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"統計","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"件名","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"文字","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"タグ","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロード済み","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"言葉","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス権","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス権の変更","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"権利を持っている者","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"パスワード付きで","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"文書を保護する","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"サインで","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有効な署名が追加されています。
文書は編集から保護されています。","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"
見えないデジタル署名を追加することで、文書の整合性を確保します。","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"文書を編集する","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"編集すると、文書から署名が削除されます。
続行しますか?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"この文書はパスワードで保護されています","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"このドキュメントをパスワードで暗号化する","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"この文書には署名が必要です。","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有効な署名が文書に追加されました。 文書は編集されないように保護されています。","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"署名の表示","PDFE.Views.FileMenuPanels.Settings.okButtonText":"適用","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同編集モード","PDFE.Views.FileMenuPanels.Settings.strFast":"高速","PDFE.Views.FileMenuPanels.Settings.strFontRender":"フォントのヒント","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"キーボードショートカット","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"RTLインターフェース","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"リアルタイム共同編集モードの変更表示","PDFE.Views.FileMenuPanels.Settings.strShowComments":"テキストにコメントを表示する","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"他のユーザーの変更点を表示する","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"解決済みコメントを表示する","PDFE.Views.FileMenuPanels.Settings.strStrict":"厳格","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"タブのスタイル","PDFE.Views.FileMenuPanels.Settings.strTheme":"インターフェイスのテーマ","PDFE.Views.FileMenuPanels.Settings.strUnit":"測定単位","PDFE.Views.FileMenuPanels.Settings.strZoom":"デフォルトのズーム値","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"自動回復情報を保存する","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"自動保存","PDFE.Views.FileMenuPanels.Settings.textDisabled":"無効","PDFE.Views.FileMenuPanels.Settings.textFill":"塗りつぶし","PDFE.Views.FileMenuPanels.Settings.textForceSave":"中間バージョンの保存","PDFE.Views.FileMenuPanels.Settings.textLine":"線","PDFE.Views.FileMenuPanels.Settings.textMinute":"1 分ごと","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"詳細設定","PDFE.Views.FileMenuPanels.Settings.txtAll":"全ての表示","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"外観","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"デフォルトのキャッシュモード","PDFE.Views.FileMenuPanels.Settings.txtCm":"センチ","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"共同編集","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"カスタマイズ","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"ドキュメントをダークモードに変更","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"編集と保存","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"リアルタイムの共同編集。すべての変更は自動的に保存されます","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"ページに合わせる","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"幅に合わせる","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"漢字","PDFE.Views.FileMenuPanels.Settings.txtInch":"インチ","PDFE.Views.FileMenuPanels.Settings.txtLast":"最後に閲覧したファイル","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"最後に使用した項目","PDFE.Views.FileMenuPanels.Settings.txtMac":"OSXのように","PDFE.Views.FileMenuPanels.Settings.txtNative":"ネイティブ","PDFE.Views.FileMenuPanels.Settings.txtNone":"表示なし","PDFE.Views.FileMenuPanels.Settings.txtPt":"ポイント","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"クイックプリントボタンをエディタヘッダーに表示","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"スクリーンリーダーのサポートをオンにする","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"「保存」ボタンを使用して、あなたや他人が行った変更を同期させることができます","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"ツールバーの色をタブの背景に使う","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーをご使用ください","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"テキスト選択時にミニツールバーを使用する","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","PDFE.Views.FileMenuPanels.Settings.txtWin":"Windowsのように","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"ワークスペース","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","PDFE.Views.FormatSettingsDialog.textAfter":"スペースなしで","PDFE.Views.FormatSettingsDialog.textAfterSpace":"スペースの後で","PDFE.Views.FormatSettingsDialog.textBefore":"スペースがない前に","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"スペースがある前に","PDFE.Views.FormatSettingsDialog.textCategory":"カテゴリー","PDFE.Views.FormatSettingsDialog.textDate":"日付","PDFE.Views.FormatSettingsDialog.textDecimal":"小数点以下の桁数","PDFE.Views.FormatSettingsDialog.textFormat":"フォーマット","PDFE.Views.FormatSettingsDialog.textLocation":"記号の配置","PDFE.Views.FormatSettingsDialog.textMask":"任意のマスク","PDFE.Views.FormatSettingsDialog.textNegative":"負の数式のスタイル","PDFE.Views.FormatSettingsDialog.textNone":"なし","PDFE.Views.FormatSettingsDialog.textNumber":"数値","PDFE.Views.FormatSettingsDialog.textParens":"かっこを表示","PDFE.Views.FormatSettingsDialog.textPercent":"パーセンテージ","PDFE.Views.FormatSettingsDialog.textPhone":"電話番号","PDFE.Views.FormatSettingsDialog.textRed":"赤いテキストを使用","PDFE.Views.FormatSettingsDialog.textReg":"正規表現","PDFE.Views.FormatSettingsDialog.textSeparator":"セパレーターのスタイル","PDFE.Views.FormatSettingsDialog.textSpecial":"特殊","PDFE.Views.FormatSettingsDialog.textSSN":"社会保障番号","PDFE.Views.FormatSettingsDialog.textSymbol":"通貨記号","PDFE.Views.FormatSettingsDialog.textTime":"時間","PDFE.Views.FormatSettingsDialog.textTitle":"フォーマット設定","PDFE.Views.FormatSettingsDialog.textZipCode":"郵便番号","PDFE.Views.FormatSettingsDialog.textZipCode4":"郵便番号 + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"カスタム","PDFE.Views.FormatSettingsDialog.txtSample":"例えば:","PDFE.Views.FormSettings.textAdvanced":"詳細設定を表示","PDFE.Views.FormSettings.textAlways":"常に","PDFE.Views.FormSettings.textAnamorphic":"不比例に","PDFE.Views.FormSettings.textArabic":"アラビア語","PDFE.Views.FormSettings.textAutofit":"自動調整","PDFE.Views.FormSettings.textBackgroundColor":"背景色","PDFE.Views.FormSettings.textBehavior":"行動","PDFE.Views.FormSettings.textBeveled":"斜め","PDFE.Views.FormSettings.textBorder":"罫線","PDFE.Views.FormSettings.textButton":"ボタン","PDFE.Views.FormSettings.textChbStyle":"チェックボックスのスタイル","PDFE.Views.FormSettings.textCheck":"チェック","PDFE.Views.FormSettings.textCheckbox":"チェックボックス","PDFE.Views.FormSettings.textCheckDefault":"チェックボックスは既定でチェックされている","PDFE.Views.FormSettings.textCircle":"丸","PDFE.Views.FormSettings.textClear":"クリア","PDFE.Views.FormSettings.textColor":"色","PDFE.Views.FormSettings.textComb":"文字の組み合わせ","PDFE.Views.FormSettings.textCombobox":"コンボボックス","PDFE.Views.FormSettings.textCommit":"選択した値をすぐに確定する","PDFE.Views.FormSettings.textCross":"十字","PDFE.Views.FormSettings.textCustomText":"カスタムテキストを有効にする","PDFE.Views.FormSettings.textDashed":"破線","PDFE.Views.FormSettings.textDate":"日付","PDFE.Views.FormSettings.textDateField":"「日付&時間」フィールド","PDFE.Views.FormSettings.textDiamond":"ひし型","PDFE.Views.FormSettings.textDown":"下","PDFE.Views.FormSettings.textExport":"エクスポート値","PDFE.Views.FormSettings.textField":"テキストフィールド","PDFE.Views.FormSettings.textFitBounds":"罫線に合わせる","PDFE.Views.FormSettings.textFormat":"フォーマット","PDFE.Views.FormSettings.textFromFile":"ファイルから","PDFE.Views.FormSettings.textFromStorage":"ストレージから","PDFE.Views.FormSettings.textFromUrl":"URLから","PDFE.Views.FormSettings.textHindi":"ヒンディー語","PDFE.Views.FormSettings.textHover":"ロールオーバー","PDFE.Views.FormSettings.textHowScale":"規模","PDFE.Views.FormSettings.textIcon":"アイコン","PDFE.Views.FormSettings.textIconLeft":"アイコンを左に、ラベルを右に","PDFE.Views.FormSettings.textIconOnly":"アイコンのみ","PDFE.Views.FormSettings.textIconTop":"アイコンを上に、ラベルを下に","PDFE.Views.FormSettings.textImage":"画像","PDFE.Views.FormSettings.textInset":"インセット","PDFE.Views.FormSettings.textInvert":"反転","PDFE.Views.FormSettings.textLabel":"ラベル","PDFE.Views.FormSettings.textLabelLeft":"ラベルを左に、アイコンを右に","PDFE.Views.FormSettings.textLabelTop":"ラベルを上に、アイコンを下に","PDFE.Views.FormSettings.textLayout":"レイアウト","PDFE.Views.FormSettings.textListBox":"リストボックス","PDFE.Views.FormSettings.textLock":"ロックする","PDFE.Views.FormSettings.textMask":"任意のマスク","PDFE.Views.FormSettings.textMaxChars":"文字の制限","PDFE.Views.FormSettings.textMedium":"中","PDFE.Views.FormSettings.textMulti":"マルチライン","PDFE.Views.FormSettings.textMultisel":"複数選択","PDFE.Views.FormSettings.textName":"名前","PDFE.Views.FormSettings.textNever":"一度もない","PDFE.Views.FormSettings.textNoBorder":"罫線なし","PDFE.Views.FormSettings.textNoFill":"塗りつぶしなし","PDFE.Views.FormSettings.textNone":"なし","PDFE.Views.FormSettings.textNormal":"上","PDFE.Views.FormSettings.textNumber":"数値","PDFE.Views.FormSettings.textNumeral":"数字形式","PDFE.Views.FormSettings.textOrientation":"向き","PDFE.Views.FormSettings.textOutline":"アウトライン","PDFE.Views.FormSettings.textOverlay":"アイコンの上にラベル","PDFE.Views.FormSettings.textPassword":"パスワード","PDFE.Views.FormSettings.textPercent":"パーセンテージ","PDFE.Views.FormSettings.textPhone":"電話番号","PDFE.Views.FormSettings.textPlaceholder":"プレースホルダ","PDFE.Views.FormSettings.textPlacement":"アイコンの配置","PDFE.Views.FormSettings.textProportional":"比例的に","PDFE.Views.FormSettings.textPush":"プッシュ","PDFE.Views.FormSettings.textRadiobox":"ラジオボタン","PDFE.Views.FormSettings.textRadioChoice":"ラジオボタンの選択","PDFE.Views.FormSettings.textRadioDefault":"ボタンが既定でチェックされている","PDFE.Views.FormSettings.textRadioStyle":"ボタンのスタイル","PDFE.Views.FormSettings.textReadonly":"閲覧のみ","PDFE.Views.FormSettings.textReg":"正規表現","PDFE.Views.FormSettings.textRequired":"必須","PDFE.Views.FormSettings.textScale":"スケーリングのタイミング","PDFE.Views.FormSettings.textScroll":"長いテキストのスクロール","PDFE.Views.FormSettings.textSelect":"選択","PDFE.Views.FormSettings.textSolid":"実線","PDFE.Views.FormSettings.textSpecial":"特殊","PDFE.Views.FormSettings.textSquare":"四角","PDFE.Views.FormSettings.textSSN":"社会保障番号","PDFE.Views.FormSettings.textStar":"星","PDFE.Views.FormSettings.textState":"状態","PDFE.Views.FormSettings.textStyle":"スタイル","PDFE.Views.FormSettings.textText":"テキスト","PDFE.Views.FormSettings.textTextOnly":"ラベルのみ","PDFE.Views.FormSettings.textThick":"太い","PDFE.Views.FormSettings.textThickness":"太さ","PDFE.Views.FormSettings.textThin":"細い","PDFE.Views.FormSettings.textTime":"時間","PDFE.Views.FormSettings.textTip":"ヒント","PDFE.Views.FormSettings.textTipAdd":"新しい値を追加する","PDFE.Views.FormSettings.textTipDelete":"値を削除する","PDFE.Views.FormSettings.textTipDown":"下に移動","PDFE.Views.FormSettings.textTipUp":"上に移動","PDFE.Views.FormSettings.textTooBig":"画像が大きすぎます","PDFE.Views.FormSettings.textTooSmall":"画像が小さすぎます","PDFE.Views.FormSettings.textUnderline":"下線","PDFE.Views.FormSettings.textUnison":"同じ名前と選択内容を持つボタンが同時に選択されます","PDFE.Views.FormSettings.textUnlock":"ロックを解除","PDFE.Views.FormSettings.textValue":"値のオプション","PDFE.Views.FormSettings.textZipCode":"郵便番号","PDFE.Views.FormSettings.textZipCode4":"郵便番号 + 4","PDFE.Views.FormSettings.txtCustom":"カスタム","PDFE.Views.FormsTab.capBtnCheckBox":"チェックボックス","PDFE.Views.FormsTab.capBtnComboBox":"コンボボックス","PDFE.Views.FormsTab.capBtnDropDown":"リストボックス","PDFE.Views.FormsTab.capBtnEmail":"メールアドレス","PDFE.Views.FormsTab.capBtnImage":"画像","PDFE.Views.FormsTab.capBtnNext":"次のフィールド","PDFE.Views.FormsTab.capBtnPhone":"電話番号","PDFE.Views.FormsTab.capBtnPrev":"前のフィールド","PDFE.Views.FormsTab.capBtnRadioBox":"ラジオボタン","PDFE.Views.FormsTab.capBtnText":"テキストフィールド","PDFE.Views.FormsTab.capCreditCard":"クレジットカード","PDFE.Views.FormsTab.capDateTime":"日付&時刻","PDFE.Views.FormsTab.capZipCode":"郵便番号","PDFE.Views.FormsTab.textAnyone":"誰でも","PDFE.Views.FormsTab.textClear":"フィールドをクリアする","PDFE.Views.FormsTab.textClearFields":"すべてのフィールドをクリアする","PDFE.Views.FormsTab.tipCheckBox":"チェックボックスを挿入","PDFE.Views.FormsTab.tipComboBox":"コンボボックスを挿入","PDFE.Views.FormsTab.tipCreditCard":"クレジットカード番号を入力","PDFE.Views.FormsTab.tipDateTime":"日付と時間の入力","PDFE.Views.FormsTab.tipDropDown":"リストボックスを挿入","PDFE.Views.FormsTab.tipEmailField":"メールアドレスを挿入","PDFE.Views.FormsTab.tipImageField":"画像を挿入","PDFE.Views.FormsTab.tipNextForm":"次のフィールドに移動する","PDFE.Views.FormsTab.tipPhoneField":"電話番号を挿入","PDFE.Views.FormsTab.tipPrevForm":"前のフィールドに移動する","PDFE.Views.FormsTab.tipRadioBox":"ラジオボタンを挿入","PDFE.Views.FormsTab.tipTextField":"テキストフィールドを挿入","PDFE.Views.FormsTab.tipZipCode":"郵便番号を挿入","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"表示","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"リンク先","PDFE.Views.HyperlinkSettingsDialog.textDefault":"選択されたテキストフラグメント","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"ここにキャプションを入力してください","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"ここにリンクを入力してください","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"ここにヒントを入力してください","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"外部リンク","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"この文書のページ","PDFE.Views.HyperlinkSettingsDialog.textPages":"ページ","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"ファイルの選択","PDFE.Views.HyperlinkSettingsDialog.textTipText":"ヒントのテキスト:","PDFE.Views.HyperlinkSettingsDialog.textTitle":"リンク設定","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"スクロールバー、マウス、ズームを使って目的のビューを選択し、リンク設定を押してリンク先を作成する。","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"作成 閲覧する","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"このフィールドは必須項目","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"最初のページ","PDFE.Views.HyperlinkSettingsDialog.txtLast":"最後のページ","PDFE.Views.HyperlinkSettingsDialog.txtNext":"次のページ","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"リンクの入力内容は「http://www.example.com」形式のURLである必要があります。","PDFE.Views.HyperlinkSettingsDialog.txtPage":"ページ","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"ページビューに移動する","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"前のページ","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"リンクを設定する","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"このフィールドは2083文字に制限されている","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"ウェブアドレスを入力するか、ファイルを選択してください","PDFE.Views.ImageSettings.strTransparency":"不透明度","PDFE.Views.ImageSettings.textAdvanced":"詳細設定を表示","PDFE.Views.ImageSettings.textCrop":"トリミング","PDFE.Views.ImageSettings.textCropFill":"塗りつぶし","PDFE.Views.ImageSettings.textCropFit":"合わせる","PDFE.Views.ImageSettings.textCropToShape":"図形に合わせてトリミング","PDFE.Views.ImageSettings.textEdit":"編集","PDFE.Views.ImageSettings.textEditObject":"オブジェクトを編集する","PDFE.Views.ImageSettings.textFitPage":"ページに合わせる","PDFE.Views.ImageSettings.textFlip":"反転する","PDFE.Views.ImageSettings.textFromFile":"ファイルから","PDFE.Views.ImageSettings.textFromStorage":"ストレージから","PDFE.Views.ImageSettings.textFromUrl":"URLから","PDFE.Views.ImageSettings.textHeight":"高さ","PDFE.Views.ImageSettings.textHint270":"反時計回りに90度回転","PDFE.Views.ImageSettings.textHint90":"時計回りに90度回転","PDFE.Views.ImageSettings.textHintFlipH":"左右に反転","PDFE.Views.ImageSettings.textHintFlipV":"上下に反転","PDFE.Views.ImageSettings.textInsert":"画像の置き換え","PDFE.Views.ImageSettings.textOriginalSize":"実際のサイズ","PDFE.Views.ImageSettings.textRecentlyUsed":"最近使った項目","PDFE.Views.ImageSettings.textResetCrop":"トリミングをリセット","PDFE.Views.ImageSettings.textRotate90":"90度回転","PDFE.Views.ImageSettings.textRotation":"回転","PDFE.Views.ImageSettings.textSize":"サイズ","PDFE.Views.ImageSettings.textWidth":"幅","PDFE.Views.ImageSettingsAdvanced.textAlt":"代替テキスト","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"説明","PDFE.Views.ImageSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"タイトル","PDFE.Views.ImageSettingsAdvanced.textAngle":"角度","PDFE.Views.ImageSettingsAdvanced.textCenter":"中央揃え","PDFE.Views.ImageSettingsAdvanced.textFlipped":"反転","PDFE.Views.ImageSettingsAdvanced.textFrom":"基準","PDFE.Views.ImageSettingsAdvanced.textGeneral":"標準","PDFE.Views.ImageSettingsAdvanced.textHeight":"高さ","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"水平","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"水平に","PDFE.Views.ImageSettingsAdvanced.textImageName":"画像名","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"比例の一定","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"実際のサイズ","PDFE.Views.ImageSettingsAdvanced.textPlacement":"位置","PDFE.Views.ImageSettingsAdvanced.textPosition":"位置","PDFE.Views.ImageSettingsAdvanced.textRotation":"回転","PDFE.Views.ImageSettingsAdvanced.textSize":"サイズ","PDFE.Views.ImageSettingsAdvanced.textTitle":"画像 - 詳細設定","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"左上隅","PDFE.Views.ImageSettingsAdvanced.textVertical":"縦","PDFE.Views.ImageSettingsAdvanced.textVertically":"縦","PDFE.Views.ImageSettingsAdvanced.textWidth":"幅","PDFE.Views.InsTab.capBlankPage":"空白ページ","PDFE.Views.InsTab.capBtnDateTime":"日付と時間","PDFE.Views.InsTab.capBtnInsHeaderFooter":"ヘッダー/フッター","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"記号","PDFE.Views.InsTab.capBtnPageNum":"ページ番号","PDFE.Views.InsTab.capInsertChart":"グラフ","PDFE.Views.InsTab.capInsertEquation":"方程式","PDFE.Views.InsTab.capInsertHyperlink":"リンク","PDFE.Views.InsTab.capInsertImage":"画像","PDFE.Views.InsTab.capInsertShape":"図形","PDFE.Views.InsTab.capInsertTable":"表","PDFE.Views.InsTab.capInsertText":"テキストボックス","PDFE.Views.InsTab.capInsertTextArt":"テキストアート","PDFE.Views.InsTab.capInsPage":"ページを挿入","PDFE.Views.InsTab.mniCustomTable":"ユーザー設定​​の表の挿入","PDFE.Views.InsTab.mniImageFromFile":"ファイルから画像","PDFE.Views.InsTab.mniImageFromStorage":"ストレージから画像","PDFE.Views.InsTab.mniImageFromUrl":"URLから画像","PDFE.Views.InsTab.mniInsertSSE":"スプレッドシートを挿入","PDFE.Views.InsTab.textAlpha":"ギリシャ小文字アルファ","PDFE.Views.InsTab.textBetta":"ギリシャ小文字ベータ","PDFE.Views.InsTab.textBlackHeart":"ブラック・ハート・スーツ","PDFE.Views.InsTab.textBullet":"箇条書き","PDFE.Views.InsTab.textCopyright":"著作権マーク","PDFE.Views.InsTab.textDegree":"度記号","PDFE.Views.InsTab.textDelta":"ギリシャ小文字デルタ","PDFE.Views.InsTab.textDivision":"「除算」記号","PDFE.Views.InsTab.textDollar":"ドル記号","PDFE.Views.InsTab.textEuro":"ユーロ記号","PDFE.Views.InsTab.textGreaterEqual":"次の値より大きいか等しい","PDFE.Views.InsTab.textInfinity":"無限","PDFE.Views.InsTab.textLessEqual":"次の値より小さいか等しい","PDFE.Views.InsTab.textLetterPi":"ギリシャの小文字ピー","PDFE.Views.InsTab.textMoreSymbols":"その他の記号","PDFE.Views.InsTab.textNotEqualTo":"等しくない","PDFE.Views.InsTab.textOneHalf":"普通分数の1/2","PDFE.Views.InsTab.textOneQuarter":"普通分数の1/4","PDFE.Views.InsTab.textPlusMinus":"プラスマイナス記号","PDFE.Views.InsTab.textRecentlyUsed":"最近使った項目","PDFE.Views.InsTab.textRegistered":"登録商標マーク","PDFE.Views.InsTab.textSection":"「節」記号","PDFE.Views.InsTab.textSmile":"白い笑顔","PDFE.Views.InsTab.textSquareRoot":"平方根","PDFE.Views.InsTab.textTilde":"チルダ","PDFE.Views.InsTab.textTradeMark":"商標マーク","PDFE.Views.InsTab.textYen":"円記号","PDFE.Views.InsTab.tipChangeChart":"グラフ種類の変更","PDFE.Views.InsTab.tipDateTime":"現在の日付と時刻を挿入","PDFE.Views.InsTab.tipEditHeaderFooter":"ヘッダーまたはフッターの編集","PDFE.Views.InsTab.tipInsertChart":"グラフを挿入","PDFE.Views.InsTab.tipInsertEquation":"方程式を挿入","PDFE.Views.InsTab.tipInsertHorizontalText":"横書きテキストボックスの挿入","PDFE.Views.InsTab.tipInsertHyperlink":"リンクを追加する","PDFE.Views.InsTab.tipInsertImage":"画像の挿入","PDFE.Views.InsTab.tipInsertPage":"空白ページの挿入","PDFE.Views.InsTab.tipInsertPageAfter":"後に空白ページを挿入","PDFE.Views.InsTab.tipInsertShape":"図形を挿入","PDFE.Views.InsTab.tipInsertSmartArt":"SmartArtの挿入","PDFE.Views.InsTab.tipInsertSymbol":"記号を挿入","PDFE.Views.InsTab.tipInsertTable":"表の挿入","PDFE.Views.InsTab.tipInsertText":"テキストボックスを挿入","PDFE.Views.InsTab.tipInsertTextArt":"テキストアートの挿入","PDFE.Views.InsTab.tipInsertVerticalText":"縦書きテキストボックスの挿入","PDFE.Views.InsTab.tipPageNum":"ページ番号を挿入","PDFE.Views.InsTab.txtNewPageAfter":"後に空白ページを挿入","PDFE.Views.InsTab.txtNewPageBefore":"前に空白ページを挿入","PDFE.Views.LeftMenu.ariaLeftMenu":"左メニュー","PDFE.Views.LeftMenu.tipAbout":"詳細情報","PDFE.Views.LeftMenu.tipChat":"チャット","PDFE.Views.LeftMenu.tipComments":"コメント","PDFE.Views.LeftMenu.tipNavigation":"ナビゲーション","PDFE.Views.LeftMenu.tipOutline":"見出し","PDFE.Views.LeftMenu.tipPageThumbnails":"ページサムネイル","PDFE.Views.LeftMenu.tipPlugins":"プラグイン","PDFE.Views.LeftMenu.tipSearch":"検索","PDFE.Views.LeftMenu.tipSupport":"フィードバック&サポート","PDFE.Views.LeftMenu.tipTitles":"タイトル","PDFE.Views.LeftMenu.txtDeveloper":"開発者モード","PDFE.Views.LeftMenu.txtEditor":"PDFエディター","PDFE.Views.LeftMenu.txtLimit":"制限されたアクセス","PDFE.Views.LeftMenu.txtTrial":"試用モード","PDFE.Views.LeftMenu.txtTrialDev":"試用開発者モード","PDFE.Views.Navigation.strNavigate":"見出し","PDFE.Views.Navigation.txtClosePanel":"見出しを閉じる","PDFE.Views.Navigation.txtCollapse":"すべてを折りたたむ","PDFE.Views.Navigation.txtEmptyItem":"空白の見出し","PDFE.Views.Navigation.txtEmptyViewer":"ドキュメントに見出しがありません。","PDFE.Views.Navigation.txtExpand":"すべてを展開","PDFE.Views.Navigation.txtExpandToLevel":"レベルまで拡張する","PDFE.Views.Navigation.txtFontSize":"フォントのサイズ","PDFE.Views.Navigation.txtLarge":"大","PDFE.Views.Navigation.txtMedium":"中","PDFE.Views.Navigation.txtSettings":"見出しの設定","PDFE.Views.Navigation.txtSmall":"小","PDFE.Views.Navigation.txtWrapHeadings":"長い見出しを折り返す","PDFE.Views.PageThumbnails.textClosePanel":"ページサムネイルを閉じる","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"表示されているページをハイライト","PDFE.Views.PageThumbnails.textPageThumbnails":"ページサムネイル","PDFE.Views.PageThumbnails.textThumbnailsSettings":"サムネイルの設定","PDFE.Views.PageThumbnails.textThumbnailsSize":"サムネイルサイズ","PDFE.Views.ParagraphSettings.strLineHeight":"行間","PDFE.Views.ParagraphSettings.strParagraphSpacing":"段落の間隔","PDFE.Views.ParagraphSettings.strSpacingAfter":"後に","PDFE.Views.ParagraphSettings.strSpacingBefore":"前","PDFE.Views.ParagraphSettings.textAdvanced":"詳細設定を表示","PDFE.Views.ParagraphSettings.textAt":"値","PDFE.Views.ParagraphSettings.textAtLeast":"最小","PDFE.Views.ParagraphSettings.textAuto":"倍数","PDFE.Views.ParagraphSettings.textExact":"固定値","PDFE.Views.ParagraphSettings.txtAutoText":"自動","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"指定されたタブは、このフィールドに表示されます。","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"全ての英大文字","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"方向","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"二重取り消し線","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"インデント","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"行間","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"右揃え","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"後に","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"前","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"特殊","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"フォント","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"インデント&行間隔","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型英大文字\t","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"間隔","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"取り消し線","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"下付き文字","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"上付き文字","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"タブ","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"配置","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"倍数","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"文字間のスペース","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"デフォルトのタブ","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"左から右へ","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"右から左へ","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"効果","PDFE.Views.ParagraphSettingsAdvanced.textExact":"固定値","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"先頭行","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"ぶら下げ","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"両端揃え","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(なし)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"削除","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"全てを削除","PDFE.Views.ParagraphSettingsAdvanced.textSet":"指定","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"中央揃え","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"タブの位置","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"右揃え","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 詳細設定","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"自動","PDFE.Views.PrintWithPreview.textMarginsLast":"最後に適用した設定","PDFE.Views.PrintWithPreview.textMarginsModerate":"中","PDFE.Views.PrintWithPreview.textMarginsNarrow":"狭い","PDFE.Views.PrintWithPreview.textMarginsNormal":"標準","PDFE.Views.PrintWithPreview.textMarginsWide":"広い","PDFE.Views.PrintWithPreview.txtAllPages":"全ページ","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"白黒印刷","PDFE.Views.PrintWithPreview.txtBothSides":"両面印刷","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"長辺を綴じる","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"短辺を綴じる","PDFE.Views.PrintWithPreview.txtBottom":"最下部","PDFE.Views.PrintWithPreview.txtColorPrinting":"カラー印刷","PDFE.Views.PrintWithPreview.txtContent":"コンテンツ","PDFE.Views.PrintWithPreview.txtCopies":"コピー","PDFE.Views.PrintWithPreview.txtCurrentPage":"現在のページ","PDFE.Views.PrintWithPreview.txtCustom":"カスタム","PDFE.Views.PrintWithPreview.txtCustomPages":"カスタム印刷","PDFE.Views.PrintWithPreview.txtDocument":"ドキュメント","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"ドキュメントとマークアップ","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"ドキュメントとスタンプ","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"フォームフィールドのみ","PDFE.Views.PrintWithPreview.txtLandscape":"横向き","PDFE.Views.PrintWithPreview.txtLeft":"左","PDFE.Views.PrintWithPreview.txtMargins":"余白","PDFE.Views.PrintWithPreview.txtOf":"{0}から","PDFE.Views.PrintWithPreview.txtOneSide":"片面印刷","PDFE.Views.PrintWithPreview.txtOneSideDesc":"ページの片面のみを印刷する","PDFE.Views.PrintWithPreview.txtPage":"ページ","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"ページ番号が正しくありません。","PDFE.Views.PrintWithPreview.txtPageOrientation":"印刷の向き","PDFE.Views.PrintWithPreview.txtPages":"ページ","PDFE.Views.PrintWithPreview.txtPageSize":"ページのサイズ","PDFE.Views.PrintWithPreview.txtPortrait":"縦向き","PDFE.Views.PrintWithPreview.txtPrint":"印刷","PDFE.Views.PrintWithPreview.txtPrinter":"プリンター","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"プリンターが選択されていない","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"プリンターが見つかりません","PDFE.Views.PrintWithPreview.txtPrintPdf":"PDFに印刷","PDFE.Views.PrintWithPreview.txtPrintRange":"印刷範囲\t","PDFE.Views.PrintWithPreview.txtPrintSides":"両面印刷","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"システムダイアログで印刷する","PDFE.Views.PrintWithPreview.txtRight":"右揃え","PDFE.Views.PrintWithPreview.txtSelection":"選択","PDFE.Views.PrintWithPreview.txtTop":"上","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"プリンターを待っています","PDFE.Views.RedactTab.capApplyRedactions":"編集を適用する","PDFE.Views.RedactTab.capFindRedact":"検索&黒消し","PDFE.Views.RedactTab.capMarkRedact":"黒消し対象としてマークする","PDFE.Views.RedactTab.capRedactPages":"ページを黒消し","PDFE.Views.RedactTab.tipApplyRedactions":"編集を適用する","PDFE.Views.RedactTab.tipFindRedact":"検索&黒消し","PDFE.Views.RedactTab.tipMarkForRedact":"黒消し対象としてマークする","PDFE.Views.RedactTab.tipRedactPages":"ページを黒消し","PDFE.Views.RedactTab.txtMarkCurrentPage":"現在のページをマークする","PDFE.Views.RedactTab.txtSelectRange":"範囲の選択","PDFE.Views.RightMenu.ariaRightMenu":"右メニュー","PDFE.Views.RightMenu.txtChartSettings":"グラフの設定","PDFE.Views.RightMenu.txtFormSettings":"フォーム設定","PDFE.Views.RightMenu.txtImageSettings":"画像の設定","PDFE.Views.RightMenu.txtParagraphSettings":"段落の設定","PDFE.Views.RightMenu.txtShapeSettings":"図形の設定","PDFE.Views.RightMenu.txtTableSettings":"表の設定","PDFE.Views.RightMenu.txtTextArtSettings":"テキストアートの設定","PDFE.Views.ShapeSettings.strBackground":"背景色","PDFE.Views.ShapeSettings.strChange":"図形の変更","PDFE.Views.ShapeSettings.strColor":"色","PDFE.Views.ShapeSettings.strFill":"塗りつぶし","PDFE.Views.ShapeSettings.strForeground":"前景色","PDFE.Views.ShapeSettings.strPattern":"パターン","PDFE.Views.ShapeSettings.strShadow":"影を表示する","PDFE.Views.ShapeSettings.strSize":"サイズ","PDFE.Views.ShapeSettings.strStroke":"線","PDFE.Views.ShapeSettings.strTransparency":"不透明度","PDFE.Views.ShapeSettings.strType":"タイプ","PDFE.Views.ShapeSettings.textAdjustShadow":"影の調整","PDFE.Views.ShapeSettings.textAdvanced":"詳細設定を表示","PDFE.Views.ShapeSettings.textAngle":"角度","PDFE.Views.ShapeSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","PDFE.Views.ShapeSettings.textColor":"色で塗りつぶし","PDFE.Views.ShapeSettings.textDirection":"方向","PDFE.Views.ShapeSettings.textEditPoints":"頂点の編集","PDFE.Views.ShapeSettings.textEditShape":"図形の編集","PDFE.Views.ShapeSettings.textEmptyPattern":"パターンなし","PDFE.Views.ShapeSettings.textEyedropper":"スポイト","PDFE.Views.ShapeSettings.textFlip":"反転する","PDFE.Views.ShapeSettings.textFromFile":"ファイルから","PDFE.Views.ShapeSettings.textFromStorage":"ストレージから","PDFE.Views.ShapeSettings.textFromUrl":"URLから","PDFE.Views.ShapeSettings.textGradient":"グラデーションポイント","PDFE.Views.ShapeSettings.textGradientFill":"塗りつぶし (グラデーション)","PDFE.Views.ShapeSettings.textHint270":"反時計回りに90度回転","PDFE.Views.ShapeSettings.textHint90":"時計回りに90度回転","PDFE.Views.ShapeSettings.textHintFlipH":"左右に反転","PDFE.Views.ShapeSettings.textHintFlipV":"上下に反転","PDFE.Views.ShapeSettings.textImageTexture":"画像またはテクスチャ","PDFE.Views.ShapeSettings.textLinear":"線形","PDFE.Views.ShapeSettings.textMoreColors":"その他の色","PDFE.Views.ShapeSettings.textNoFill":"塗りつぶしなし","PDFE.Views.ShapeSettings.textNoShadow":"影なし","PDFE.Views.ShapeSettings.textPatternFill":"パターン","PDFE.Views.ShapeSettings.textPosition":"位置","PDFE.Views.ShapeSettings.textRadial":"放射状","PDFE.Views.ShapeSettings.textRecentlyUsed":"最近使った項目","PDFE.Views.ShapeSettings.textRotate90":"90度回転","PDFE.Views.ShapeSettings.textRotation":"回転","PDFE.Views.ShapeSettings.textSelectImage":"画像の選択","PDFE.Views.ShapeSettings.textSelectTexture":"選択","PDFE.Views.ShapeSettings.textShadow":"影","PDFE.Views.ShapeSettings.textStretch":"ストレッチ","PDFE.Views.ShapeSettings.textStyle":"スタイル","PDFE.Views.ShapeSettings.textTexture":"テクスチャから","PDFE.Views.ShapeSettings.textTile":"タイル","PDFE.Views.ShapeSettings.tipAddGradientPoint":"グラデーションポイントの追加","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"グラデーションポイントを削除する","PDFE.Views.ShapeSettings.txtBrownPaper":"クラフト紙","PDFE.Views.ShapeSettings.txtCanvas":"キャンバス","PDFE.Views.ShapeSettings.txtCarton":"カートン","PDFE.Views.ShapeSettings.txtDarkFabric":"ダークファブリック","PDFE.Views.ShapeSettings.txtGrain":"粒子","PDFE.Views.ShapeSettings.txtGranite":"花崗岩","PDFE.Views.ShapeSettings.txtGreyPaper":"グレー紙","PDFE.Views.ShapeSettings.txtKnit":"ニット","PDFE.Views.ShapeSettings.txtLeather":"レザー","PDFE.Views.ShapeSettings.txtNoBorders":"線なし","PDFE.Views.ShapeSettings.txtOffsetBottom":"オフセット:下","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"オフセット:左下","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"オフセット:右下","PDFE.Views.ShapeSettings.txtOffsetCenter":"オフセット:中央","PDFE.Views.ShapeSettings.txtOffsetLeft":"オフセット:左","PDFE.Views.ShapeSettings.txtOffsetRight":"オフセット:右","PDFE.Views.ShapeSettings.txtOffsetTop":"オフセット:上","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"オフセット:左上","PDFE.Views.ShapeSettings.txtOffsetTopRight":"オフセット:右上","PDFE.Views.ShapeSettings.txtPapyrus":"パピルス","PDFE.Views.ShapeSettings.txtWood":"木","PDFE.Views.ShapeSettingsAdvanced.strColumns":"列","PDFE.Views.ShapeSettingsAdvanced.strMargins":"テキストの埋め込み文字","PDFE.Views.ShapeSettingsAdvanced.textAlt":"代替テキスト","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"説明","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"タイトル","PDFE.Views.ShapeSettingsAdvanced.textAngle":"角度","PDFE.Views.ShapeSettingsAdvanced.textArrows":"矢印","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"自動調整","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"始点のサイズ","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"始点のスタイル","PDFE.Views.ShapeSettingsAdvanced.textBevel":"斜角","PDFE.Views.ShapeSettingsAdvanced.textBottom":"下","PDFE.Views.ShapeSettingsAdvanced.textCapType":"大文字スタイル","PDFE.Views.ShapeSettingsAdvanced.textCenter":"中央揃え","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"列数","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"終点のサイズ","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"終点のスタイル","PDFE.Views.ShapeSettingsAdvanced.textFlat":"フラット","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"反転","PDFE.Views.ShapeSettingsAdvanced.textFrom":"基準","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"標準","PDFE.Views.ShapeSettingsAdvanced.textHeight":"高さ","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"水平","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"水平に","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"結合の種類","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"比例の一定","PDFE.Views.ShapeSettingsAdvanced.textLeft":"左","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"線のスタイル","PDFE.Views.ShapeSettingsAdvanced.textMiter":"角","PDFE.Views.ShapeSettingsAdvanced.textNofit":"自動調整なし","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"位置","PDFE.Views.ShapeSettingsAdvanced.textPosition":"位置","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"テキストに合わせて図形を調整","PDFE.Views.ShapeSettingsAdvanced.textRight":"右揃え","PDFE.Views.ShapeSettingsAdvanced.textRotation":"回転","PDFE.Views.ShapeSettingsAdvanced.textRound":"円い","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"図形名","PDFE.Views.ShapeSettingsAdvanced.textShrink":"はみ出す場合だけ自動調整する","PDFE.Views.ShapeSettingsAdvanced.textSize":"サイズ","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"列の間隔","PDFE.Views.ShapeSettingsAdvanced.textSquare":"四角","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"テキストボックス","PDFE.Views.ShapeSettingsAdvanced.textTitle":"図形 - 詳細設定","PDFE.Views.ShapeSettingsAdvanced.textTop":"上","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"左上隅","PDFE.Views.ShapeSettingsAdvanced.textVertical":"縦","PDFE.Views.ShapeSettingsAdvanced.textVertically":"縦","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"太さ&矢印","PDFE.Views.ShapeSettingsAdvanced.textWidth":"幅","PDFE.Views.ShapeSettingsAdvanced.txtNone":"なし","PDFE.Views.Statusbar.goToPageText":"ページに移動","PDFE.Views.Statusbar.pageIndexText":"{0}/{1} ページ","PDFE.Views.Statusbar.tipFitPage":"ページに合わせる","PDFE.Views.Statusbar.tipFitWidth":"幅に合わせる","PDFE.Views.Statusbar.tipHandTool":"「手のひら」ツール","PDFE.Views.Statusbar.tipPageNext":"次のページへ","PDFE.Views.Statusbar.tipPagePrev":"前のページへ","PDFE.Views.Statusbar.tipSelectTool":"選択ツール","PDFE.Views.Statusbar.tipZoomFactor":"拡大図","PDFE.Views.Statusbar.tipZoomIn":"拡大","PDFE.Views.Statusbar.tipZoomOut":"縮小","PDFE.Views.Statusbar.txtPageNumInvalid":"ページ番号が正しくありません。","PDFE.Views.TableSettings.deleteColumnText":"列の削除","PDFE.Views.TableSettings.deleteRowText":"行の削除","PDFE.Views.TableSettings.deleteTableText":"表の削除","PDFE.Views.TableSettings.insertColumnLeftText":"左に列を挿入","PDFE.Views.TableSettings.insertColumnRightText":"右に列を挿入","PDFE.Views.TableSettings.insertRowAboveText":"上に行を挿入","PDFE.Views.TableSettings.insertRowBelowText":"下に行を挿入","PDFE.Views.TableSettings.mergeCellsText":"セルの結合","PDFE.Views.TableSettings.selectCellText":"セルの選択","PDFE.Views.TableSettings.selectColumnText":"列の選択","PDFE.Views.TableSettings.selectRowText":"行の選択","PDFE.Views.TableSettings.selectTableText":"テーブルの選択","PDFE.Views.TableSettings.splitCellsText":"セルを分割...","PDFE.Views.TableSettings.splitCellTitleText":"セルを分割","PDFE.Views.TableSettings.textAdvanced":"詳細設定を表示","PDFE.Views.TableSettings.textBackColor":"背景色","PDFE.Views.TableSettings.textBanded":"縞模様","PDFE.Views.TableSettings.textBorderColor":"色","PDFE.Views.TableSettings.textBorders":"罫線のスタイル","PDFE.Views.TableSettings.textCellSize":"セルのサイズ","PDFE.Views.TableSettings.textColumns":"列","PDFE.Views.TableSettings.textDistributeCols":"列の幅を揃える","PDFE.Views.TableSettings.textDistributeRows":"行の高さを揃える","PDFE.Views.TableSettings.textEdit":"行&列","PDFE.Views.TableSettings.textEmptyTemplate":"テンプレートなし","PDFE.Views.TableSettings.textFirst":"第一","PDFE.Views.TableSettings.textHeader":"ヘッダー","PDFE.Views.TableSettings.textHeight":"高さ","PDFE.Views.TableSettings.textLast":"最後","PDFE.Views.TableSettings.textRows":"行","PDFE.Views.TableSettings.textSelectBorders":"選択したスタイルを適用する罫線を選択してください","PDFE.Views.TableSettings.textTemplate":"テンプレートから選択","PDFE.Views.TableSettings.textTotal":"合計","PDFE.Views.TableSettings.textWidth":"幅","PDFE.Views.TableSettings.tipAll":"外枠とすべての内枠の線を設定","PDFE.Views.TableSettings.tipBottom":"外部の罫線(下)だけを設定する","PDFE.Views.TableSettings.tipInner":"内側の線のみを設定する","PDFE.Views.TableSettings.tipInnerHor":"水平方向の内側の線のみを設定する","PDFE.Views.TableSettings.tipInnerVert":"垂直の内側の線のみを設定する","PDFE.Views.TableSettings.tipLeft":"外部の罫線(左)だけを設定する","PDFE.Views.TableSettings.tipNone":"罫線の設定なし","PDFE.Views.TableSettings.tipOuter":"外部の罫線のみを設定する","PDFE.Views.TableSettings.tipRight":"外部の罫線(右)のみを設定する","PDFE.Views.TableSettings.tipTop":"外部の罫線(上)のみを設定する","PDFE.Views.TableSettings.txtGroupTable_Custom":"ユーザー設定","PDFE.Views.TableSettings.txtGroupTable_Dark":"ダーク","PDFE.Views.TableSettings.txtGroupTable_Light":"明るい","PDFE.Views.TableSettings.txtGroupTable_Medium":"中","PDFE.Views.TableSettings.txtGroupTable_Optimal":"ドキュメントに最適なスタイル","PDFE.Views.TableSettings.txtNoBorders":"枠線なし","PDFE.Views.TableSettings.txtTable_Accent":"アクセント","PDFE.Views.TableSettings.txtTable_DarkStyle":"ダークスタイル","PDFE.Views.TableSettings.txtTable_LightStyle":"ライトスタイル","PDFE.Views.TableSettings.txtTable_MediumStyle":"ミディアムスタイル","PDFE.Views.TableSettings.txtTable_NoGrid":"枠線なし","PDFE.Views.TableSettings.txtTable_NoStyle":"スタイルなし","PDFE.Views.TableSettings.txtTable_TableGrid":"表の枠線","PDFE.Views.TableSettings.txtTable_ThemedStyle":"テーマのスタイル","PDFE.Views.TableSettingsAdvanced.textAlt":"代替テキスト","PDFE.Views.TableSettingsAdvanced.textAltDescription":"説明","PDFE.Views.TableSettingsAdvanced.textAltTip":"代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。","PDFE.Views.TableSettingsAdvanced.textAltTitle":"タイトル","PDFE.Views.TableSettingsAdvanced.textBottom":"下","PDFE.Views.TableSettingsAdvanced.textCenter":"中央揃え","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"既定の余白を使用","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"既定の余白","PDFE.Views.TableSettingsAdvanced.textFrom":"基準","PDFE.Views.TableSettingsAdvanced.textGeneral":"標準","PDFE.Views.TableSettingsAdvanced.textHeight":"高さ","PDFE.Views.TableSettingsAdvanced.textHorizontal":"水平","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"比例の一定","PDFE.Views.TableSettingsAdvanced.textLeft":"左","PDFE.Views.TableSettingsAdvanced.textMargins":"セルの余白","PDFE.Views.TableSettingsAdvanced.textPlacement":"位置","PDFE.Views.TableSettingsAdvanced.textPosition":"位置","PDFE.Views.TableSettingsAdvanced.textRight":"右揃え","PDFE.Views.TableSettingsAdvanced.textSize":"サイズ","PDFE.Views.TableSettingsAdvanced.textTableName":"表の名前","PDFE.Views.TableSettingsAdvanced.textTitle":"表 - 詳細設定","PDFE.Views.TableSettingsAdvanced.textTop":"上","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"左上隅","PDFE.Views.TableSettingsAdvanced.textVertical":"縦","PDFE.Views.TableSettingsAdvanced.textWidth":"幅","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"余白","PDFE.Views.TextArtSettings.strBackground":"背景色","PDFE.Views.TextArtSettings.strColor":"色","PDFE.Views.TextArtSettings.strFill":"塗りつぶし","PDFE.Views.TextArtSettings.strForeground":"前景色","PDFE.Views.TextArtSettings.strPattern":"パターン","PDFE.Views.TextArtSettings.strSize":"サイズ","PDFE.Views.TextArtSettings.strStroke":"線","PDFE.Views.TextArtSettings.strTransparency":"不透明度","PDFE.Views.TextArtSettings.strType":"タイプ","PDFE.Views.TextArtSettings.textAngle":"角度","PDFE.Views.TextArtSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","PDFE.Views.TextArtSettings.textColor":"色で塗りつぶし","PDFE.Views.TextArtSettings.textDirection":"方向","PDFE.Views.TextArtSettings.textEmptyPattern":"パターンなし","PDFE.Views.TextArtSettings.textFromFile":"ファイルから","PDFE.Views.TextArtSettings.textFromUrl":"URLから","PDFE.Views.TextArtSettings.textGradient":"グラデーションポイント","PDFE.Views.TextArtSettings.textGradientFill":"塗りつぶし (グラデーション)","PDFE.Views.TextArtSettings.textImageTexture":"画像またはテクスチャ","PDFE.Views.TextArtSettings.textLinear":"線形","PDFE.Views.TextArtSettings.textNoFill":"塗りつぶしなし","PDFE.Views.TextArtSettings.textPatternFill":"パターン","PDFE.Views.TextArtSettings.textPosition":"位置","PDFE.Views.TextArtSettings.textRadial":"放射状","PDFE.Views.TextArtSettings.textSelectTexture":"選択","PDFE.Views.TextArtSettings.textStretch":"ストレッチ","PDFE.Views.TextArtSettings.textStyle":"スタイル","PDFE.Views.TextArtSettings.textTemplate":"テンプレート","PDFE.Views.TextArtSettings.textTexture":"テクスチャから","PDFE.Views.TextArtSettings.textTile":"タイル","PDFE.Views.TextArtSettings.textTransform":"変換","PDFE.Views.TextArtSettings.tipAddGradientPoint":"グラデーションポイントの追加","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"グラデーションポイントを削除する","PDFE.Views.TextArtSettings.txtBrownPaper":"クラフト紙","PDFE.Views.TextArtSettings.txtCanvas":"キャンバス","PDFE.Views.TextArtSettings.txtCarton":"カートン","PDFE.Views.TextArtSettings.txtDarkFabric":"ダークファブリック","PDFE.Views.TextArtSettings.txtGrain":"粒子","PDFE.Views.TextArtSettings.txtGranite":"花崗岩","PDFE.Views.TextArtSettings.txtGreyPaper":"グレー紙","PDFE.Views.TextArtSettings.txtKnit":"ニット","PDFE.Views.TextArtSettings.txtLeather":"レザー","PDFE.Views.TextArtSettings.txtNoBorders":"線なし","PDFE.Views.TextArtSettings.txtPapyrus":"パピルス","PDFE.Views.TextArtSettings.txtWood":"木","PDFE.Views.Toolbar.capBtnAddComment":"コメントを追加","PDFE.Views.Toolbar.capBtnArrowComment":"矢印","PDFE.Views.Toolbar.capBtnCircleComment":"丸","PDFE.Views.Toolbar.capBtnComment":"コメント","PDFE.Views.Toolbar.capBtnDelPage":"ページを削除","PDFE.Views.Toolbar.capBtnDownloadForm":"PDFとして保存","PDFE.Views.Toolbar.capBtnEditText":"テキストの編集","PDFE.Views.Toolbar.capBtnHand":"手のひら","PDFE.Views.Toolbar.capBtnNext":"次のフィールド","PDFE.Views.Toolbar.capBtnPolyLineComment":"接続された線","PDFE.Views.Toolbar.capBtnPrev":"前のフィールド","PDFE.Views.Toolbar.capBtnRecognize":"テキストの編集","PDFE.Views.Toolbar.capBtnRectComment":"矩形","PDFE.Views.Toolbar.capBtnRotate":"回転","PDFE.Views.Toolbar.capBtnRotatePage":"ページの回転","PDFE.Views.Toolbar.capBtnSaveForm":"PDFとして保存","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"名前を付けて保存","PDFE.Views.Toolbar.capBtnSelect":"選択","PDFE.Views.Toolbar.capBtnShowComments":"コメントの表示","PDFE.Views.Toolbar.capBtnStamp":"スタンプ","PDFE.Views.Toolbar.capBtnSubmit":"送信","PDFE.Views.Toolbar.capBtnTextCallout":"テキスト吹き出し","PDFE.Views.Toolbar.capBtnTextComment":"テキストコメント","PDFE.Views.Toolbar.mniCapitalizeWords":"各単語を大文字にする","PDFE.Views.Toolbar.mniInsertSSE":"スプレッドシートを挿入","PDFE.Views.Toolbar.mniLowerCase":"小文字","PDFE.Views.Toolbar.mniSentenceCase":"センテンスケース","PDFE.Views.Toolbar.mniToggleCase":"大文字と小文字を入れ替える","PDFE.Views.Toolbar.mniUpperCase":"大文字","PDFE.Views.Toolbar.strMenuNoFill":"塗りつぶしなし","PDFE.Views.Toolbar.textAlignBottom":"テキストの下揃え","PDFE.Views.Toolbar.textAlignCenter":"テキストを中央に揃える","PDFE.Views.Toolbar.textAlignJust":"両端揃え","PDFE.Views.Toolbar.textAlignLeft":"テキストの左揃え","PDFE.Views.Toolbar.textAlignMiddle":"テキストを中央揃え","PDFE.Views.Toolbar.textAlignRight":"テキストの右揃え","PDFE.Views.Toolbar.textAlignTop":"テキストの上揃え","PDFE.Views.Toolbar.textArrangeBack":"背景へ移動","PDFE.Views.Toolbar.textArrangeBackward":"背面ヘ移動","PDFE.Views.Toolbar.textArrangeForward":"前面ヘ移動","PDFE.Views.Toolbar.textArrangeFront":"前景に移動","PDFE.Views.Toolbar.textBold":"太字","PDFE.Views.Toolbar.textClear":"フィールドをクリアする","PDFE.Views.Toolbar.textClearFields":"すべてのフィールドをクリアする","PDFE.Views.Toolbar.textColumnsCustom":"カスタム設定の列","PDFE.Views.Toolbar.textColumnsOne":"1列","PDFE.Views.Toolbar.textColumnsThree":"3列","PDFE.Views.Toolbar.textColumnsTwo":"2列","PDFE.Views.Toolbar.textDirLtr":"左から右へ","PDFE.Views.Toolbar.textDirRtl":"右から左へ","PDFE.Views.Toolbar.textEditMode":"PDFの編集","PDFE.Views.Toolbar.textHighlight":"ハイライト","PDFE.Views.Toolbar.textItalic":"イタリック","PDFE.Views.Toolbar.textListSettings":"リストの設定","PDFE.Views.Toolbar.textShapeAlignBottom":"下揃え","PDFE.Views.Toolbar.textShapeAlignCenter":"中央揃え","PDFE.Views.Toolbar.textShapeAlignLeft":"左揃え","PDFE.Views.Toolbar.textShapeAlignMiddle":"中央揃え","PDFE.Views.Toolbar.textShapeAlignRight":"右揃え","PDFE.Views.Toolbar.textShapeAlignTop":"上揃え","PDFE.Views.Toolbar.textShapesCombine":"結合","PDFE.Views.Toolbar.textShapesFragment":"断片","PDFE.Views.Toolbar.textShapesIntersect":"交差","PDFE.Views.Toolbar.textShapesSubstract":"減算","PDFE.Views.Toolbar.textShapesUnion":"連合","PDFE.Views.Toolbar.textStrikeout":"取り消し線","PDFE.Views.Toolbar.textSubmited":"フォームの送信成功","PDFE.Views.Toolbar.textSubscript":"下付き文字","PDFE.Views.Toolbar.textSuperscript":"上付き文字","PDFE.Views.Toolbar.textTabCollaboration":"共同編集","PDFE.Views.Toolbar.textTabComment":"コメント","PDFE.Views.Toolbar.textTabEdit":"編集","PDFE.Views.Toolbar.textTabFile":"ファイル","PDFE.Views.Toolbar.textTabHome":"ホーム","PDFE.Views.Toolbar.textTabInsert":"挿入","PDFE.Views.Toolbar.textTabRedact":"黒消し","PDFE.Views.Toolbar.textTabView":"表示","PDFE.Views.Toolbar.textUnderline":"下線","PDFE.Views.Toolbar.tipAddComment":"コメントを追加","PDFE.Views.Toolbar.tipChangeCase":"大文字小文字を変更","PDFE.Views.Toolbar.tipClearStyle":"スタイルのクリア","PDFE.Views.Toolbar.tipColumns":"列の挿入","PDFE.Views.Toolbar.tipCopy":"コピー","PDFE.Views.Toolbar.tipCut":"切り取り","PDFE.Views.Toolbar.tipDecFont":"フォントサイズの縮小","PDFE.Views.Toolbar.tipDecPrLeft":"インデントを減らす","PDFE.Views.Toolbar.tipDelPage":"ページを削除","PDFE.Views.Toolbar.tipDownload":"ファイルをダウンロード","PDFE.Views.Toolbar.tipDownloadForm":"記入可能なPDF文書としてファイルをダウンロードする","PDFE.Views.Toolbar.tipEditMode":"テキスト、図形、画像などを追加または編集する","PDFE.Views.Toolbar.tipEditText":"テキストの編集","PDFE.Views.Toolbar.tipFirstPage":"最初のページへ","PDFE.Views.Toolbar.tipFontColor":"フォントの色","PDFE.Views.Toolbar.tipFontName":"フォント","PDFE.Views.Toolbar.tipFontSize":"フォントのサイズ","PDFE.Views.Toolbar.tipHAligh":"左右の整列","PDFE.Views.Toolbar.tipHandTool":"「手のひら」ツール","PDFE.Views.Toolbar.tipHighlightColor":"蛍光ペンの色","PDFE.Views.Toolbar.tipIncFont":"フォントサイズの拡大","PDFE.Views.Toolbar.tipIncPrLeft":"インデントを増やす","PDFE.Views.Toolbar.tipInsertArrowComment":"矢印を描く","PDFE.Views.Toolbar.tipInsertCircleComment":"円または楕円を描く","PDFE.Views.Toolbar.tipInsertPolyLineComment":"互いに接続する線を描く","PDFE.Views.Toolbar.tipInsertRectComment":"長方形または正方形を描く","PDFE.Views.Toolbar.tipInsertStamp":"スタンプを貼り付ける","PDFE.Views.Toolbar.tipInsertTextCallout":"テキストの吹き出しを挿入","PDFE.Views.Toolbar.tipInsertTextComment":"テキストコメントを挿入","PDFE.Views.Toolbar.tipLastPage":"最後のページへ","PDFE.Views.Toolbar.tipLineSpace":"行間","PDFE.Views.Toolbar.tipMarkers":"箇条書き","PDFE.Views.Toolbar.tipMarkersArrow":"箇条書き(矢印)","PDFE.Views.Toolbar.tipMarkersCheckmark":"箇条書き(チェックマーク)","PDFE.Views.Toolbar.tipMarkersDash":"「ダッシュ」記号","PDFE.Views.Toolbar.tipMarkersFRhombus":"箇条書き(ひし形)","PDFE.Views.Toolbar.tipMarkersFRound":"箇条書き(丸)","PDFE.Views.Toolbar.tipMarkersFSquare":"箇条書き(四角)","PDFE.Views.Toolbar.tipMarkersHRound":"箇条書き(円)","PDFE.Views.Toolbar.tipMarkersStar":"箇条書き(星)","PDFE.Views.Toolbar.tipNextForm":"次のフィールドに移動する","PDFE.Views.Toolbar.tipNextPage":"次のページへ","PDFE.Views.Toolbar.tipNone":"なし","PDFE.Views.Toolbar.tipNumbers":"番号付け","PDFE.Views.Toolbar.tipPaste":"貼り付け","PDFE.Views.Toolbar.tipPrevForm":"前のフィールドに移動する","PDFE.Views.Toolbar.tipPrevPage":"前のページへ","PDFE.Views.Toolbar.tipPrint":"印刷","PDFE.Views.Toolbar.tipPrintQuick":"クイックプリント","PDFE.Views.Toolbar.tipRecognize":"テキストの編集","PDFE.Views.Toolbar.tipRedo":"やり直す","PDFE.Views.Toolbar.tipRotate":"ページの回転","PDFE.Views.Toolbar.tipSave":"保存","PDFE.Views.Toolbar.tipSaveCoauth":"他のユーザが変更を見れるために変更を保存します。","PDFE.Views.Toolbar.tipSaveForm":"ファイルをPDFの記入式ドキュメントとして保存","PDFE.Views.Toolbar.tipSelectAll":"すべてを選択","PDFE.Views.Toolbar.tipSelectTool":"選択ツール","PDFE.Views.Toolbar.tipShapeAlign":"図形の配置","PDFE.Views.Toolbar.tipShapeArrange":"配置","PDFE.Views.Toolbar.tipShapeMerge":"図形を結合","PDFE.Views.Toolbar.tipSubmit":"フォームを送信","PDFE.Views.Toolbar.tipSynchronize":"このドキュメントは他のユーザーによって変更されました。クリックして変更を保存し、更新を再読み込みしてください。","PDFE.Views.Toolbar.tipTextDir":"文字方向","PDFE.Views.Toolbar.tipUndo":"元に戻す","PDFE.Views.Toolbar.tipVAligh":"垂直揃え","PDFE.Views.Toolbar.txtArrowComment":"矢印","PDFE.Views.Toolbar.txtCircleComment":"丸","PDFE.Views.Toolbar.txtDistribHor":"左右に整列","PDFE.Views.Toolbar.txtDistribVert":"上下に整列","PDFE.Views.Toolbar.txtGroup":"グループ","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"選択したオブジェクトを整列する","PDFE.Views.Toolbar.txtOpacity":"不透明度","PDFE.Views.Toolbar.txtPageAlign":"ページに揃え","PDFE.Views.Toolbar.txtPolyLineComment":"接続された線","PDFE.Views.Toolbar.txtRectComment":"矩形","PDFE.Views.Toolbar.txtRotateLeft":"左に回転する","PDFE.Views.Toolbar.txtRotatePage":"ページの回転","PDFE.Views.Toolbar.txtRotatePageRight":"ページの右回転","PDFE.Views.Toolbar.txtRotateRight":"右に回転する","PDFE.Views.Toolbar.txtSize":"サイズ","PDFE.Views.Toolbar.txtUngroup":"グループ化解除","PDFE.Views.ViewTab.capBtnRecognize":"テキストの編集","PDFE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","PDFE.Views.ViewTab.textDarkDocument":"ダークドキュメント","PDFE.Views.ViewTab.textEditMode":"PDFの編集","PDFE.Views.ViewTab.textFill":"塗りつぶし","PDFE.Views.ViewTab.textFitToPage":"ページに合わせる","PDFE.Views.ViewTab.textFitToWidth":"幅に合わせる","PDFE.Views.ViewTab.textInterfaceTheme":"インターフェイスのテーマ","PDFE.Views.ViewTab.textLeftMenu":"左パネル","PDFE.Views.ViewTab.textLine":"線","PDFE.Views.ViewTab.textNavigation":"ナビゲーション","PDFE.Views.ViewTab.textOutline":"見出し","PDFE.Views.ViewTab.textRightMenu":"右パネル","PDFE.Views.ViewTab.textStatusBar":"ステータスバー","PDFE.Views.ViewTab.textTabStyle":"タブのスタイル","PDFE.Views.ViewTab.textZoom":"拡大図","PDFE.Views.ViewTab.tipDarkDocument":"ダークドキュメント","PDFE.Views.ViewTab.tipEditMode":"テキスト、図形、画像などを追加または編集する","PDFE.Views.ViewTab.tipFitToPage":"ページに合わせる","PDFE.Views.ViewTab.tipFitToWidth":"幅に合わせる","PDFE.Views.ViewTab.tipHeadings":"見出し","PDFE.Views.ViewTab.tipInterfaceTheme":"インターフェイスのテーマ","PDFE.Views.ViewTab.tipRecognize":"テキストの編集","PDFE.Views.ViewTab.textMacros":"Macros","PDFE.Views.ViewTab.tipMacros":"Macros"} \ No newline at end of file diff --git a/public/web-apps/apps/pdfeditor/main/locale/ko.json b/public/web-apps/apps/pdfeditor/main/locale/ko.json index 7cfb14940..a0571184c 100644 --- a/public/web-apps/apps/pdfeditor/main/locale/ko.json +++ b/public/web-apps/apps/pdfeditor/main/locale/ko.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"경고","Common.Controllers.Desktop.hintBtnHome":"메인 창 표시","Common.Controllers.Desktop.itemCreateFromTemplate":"템플릿에서 만들기","Common.Controllers.ExternalLinks.textAddExternalData":"외부 소스로의 링크가 추가되었습니다. 데이터 탭에서 이러한 링크를 업데이트할 수 있습니다.","Common.Controllers.ExternalLinks.textDontUpdate":"업데이트하지 않음","Common.Controllers.ExternalLinks.textUpdate":"업데이트","Common.Controllers.ExternalLinks.txtErrorExternalLink":"오류: 업데이트에 실패했습니다.","Common.Controllers.ExternalLinks.warnUpdateExternalData":"이 통합 문서에는 하나 이상의 안전하지 않을 수 있는 외부 소스로의 링크가 포함되어 있습니다.
만약 이 링크를 신뢰한다면 최신 데이터를 얻기 위해 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"이 문서에는 안전하지 않을 수 있는 하나 이상의 외부 원본에 대한 연결이 포함되어 있습니다.
링크를 신뢰하는 경우 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"이 프레젠테이션에는 안전하지 않을 수 있는 하나 이상의 외부 원본에 대한 연결이 포함되어 있습니다.
링크를 신뢰하는 경우 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.History.notcriticalErrorTitle":"경고","Common.Controllers.History.txtErrorLoadHistory":"기록 불러오기에 실패했습니다","Common.Controllers.Plugins.helpMoveMacros":"매크로 작업을 시작하려면 보기 탭으로 전환하세요.","Common.Controllers.Plugins.helpMoveMacrosHeader":"이동된 매크로 버튼","Common.Controllers.Plugins.helpUseMacros":"매크로 버튼은 여기에 있습니다","Common.Controllers.Plugins.helpUseMacrosHeader":"매크로 접근 권한이 업데이트되었습니다","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"플러그인이 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 이곳에서 사용할 수 있습니다.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}이(가) 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 여기에서 사용할 수 있습니다.","Common.Controllers.Plugins.textRunInstalledPlugins":"설치된 플러그인 실행","Common.Controllers.Plugins.textRunPlugin":"플러그인 실행","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"표의 맨 아래에 새로운 행 추가.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"선택한 텍스트 조각에 제목 1의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"선택한 텍스트 조각에 제목 2의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"선택한 텍스트 조각에 제목 3의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"선택한 텍스트 조각에서 순서 없는 글머리 기호 목록을 만들거나 새 목록을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"키보드 화살표를 사용하여 선택한 객체를 크게 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"키보드 화살표를 사용하여 선택한 객체를 왼쪽으로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"키보드 화살표를 사용하여 선택한 객체를 오른쪽으로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"키보드 화살표를 사용하여 선택한 객체를 한 단계 위로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBold":"선택한 텍스트의 글꼴을 굵게 적용하여 더 두드러지게 표시합니다.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"문단을 중앙 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"양식에서 다음 콤보 상자 옵션을 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"양식에서 이전 콤보 상자 옵션을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"현재 PDF 창 닫기","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"메뉴 또는 모달 창을 닫습니다. 댓글 및 검토 변경 사항이 있는 팝업 및 풍선을 재설정합니다. 표 그리기 및 지우기 모드를 재설정합니다. 텍스트 드래그 앤 드롭을 재설정합니다. 마커 선택 모드를 재설정합니다. 서식 복사 모드를 재설정합니다. 도형 선택을 해제합니다. 도형 추가 모드를 재설정합니다. 머리글/바닥글을 종료합니다. 양식 작성을 종료합니다.","Common.Controllers.Shortcuts.txtDescriptionCopy":"선택한 텍스트 조각을 컴퓨터 클립보드 메모리로 보냅니다. 복사한 텍스트는 나중에 같은 문서의 다른 위치, 다른 문서 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"현재 편집 중인 텍스트의 선택한 부분에서 서식을 복사합니다. 복사한 서식은 나중에 같은 문서의 다른 텍스트 부분에 적용할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"커서 오른쪽에 저작권 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionCut":"선택한 텍스트 조각을 삭제하고 컴퓨터 클립보드 메모리로 보냅니다. 복사한 텍스트는 나중에 같은 문서의 다른 위치, 다른 문서 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 줄입니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"커서 왼쪽에 있는 문자 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"커서 왼쪽에 있는 단어/선택 항목/그래픽 개체 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"커서 오른쪽에 있는 문자 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"커서 오른쪽에 있는 단어/선택 영역/그래픽 개체 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"차트 제목이 선택되어 있을 때 제목이 비어 있으면 커서를 줄의 시작 부분으로 옮기고, 그렇지 않으면 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"마지막으로 취소한 작업을 반복합니다.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"PDF의 모든 텍스트 선택","Common.Controllers.Shortcuts.txtDescriptionEditShape":"도형을 선택한 상태에서 내용이 없으면 내용을 만들고 커서를 줄의 시작 부분으로 이동합니다. 내용이 비어 있으면 커서를 해당 내용으로 이동하고, 비어 있으면 전체 내용을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"가장 최근에 수행한 작업을 되돌립니다.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"커서 오른쪽에 긴 대시를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"커서 오른쪽에 짧은 대시를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"현재 문단을 끝내고 새로운 문단을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"셀 내에서 새로운 문단을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"방정식 인수에 새로운 입력 칸 추가.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"연산자의 정렬 수준을 왼쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"연산자의 정렬 수준을 오른쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"현재 커서 위치에 유로 기호(€)를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"현재 커서 위치에 줄임표를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 늘립니다.","Common.Controllers.Shortcuts.txtDescriptionIndent":"왼쪽에서 한 단락을 점진적으로 들여쓰기하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"열 나누기 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"주석을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"현재 커서 위치에 수식을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"각주 넣기.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"웹 주소로 이동할 수 있는 하이퍼링크를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"새 단락을 시작하지 않고 줄 나누기 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"여러 줄 양식에 줄 바꿈 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"현재 커서 위치에 페이지 나누기를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"현재 커서 위치에 현재 쪽 번호 넣기.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"문단에 탭문자 더하기(커서가 문단의 시작에 있지 않다면)","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"테이블 안에 테이블 구분을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionItalic":"선택한 텍스트 조각을 기울임꼴로 표시하고 약간 비스듬하게 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"문단을 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"문단 왼쪽 정렬","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 아래로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 왼쪽으로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 오른쪽으로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 위로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"선택한 단락의 들여쓰기를 늘리세요.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"선택한 문단의 들여쓰기를 줄입니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"현재 선택된 개체 다음 개체로 포커스를 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"현재 선택된 개체 이전 개체로 포커스를 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"커서를 한 줄 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"현재 편집 중인 PDF의 맨 끝으로 커서를 이동합니다","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"현재 편집 중인 줄의 끝에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"커서를 오른쪽으로 한 단어 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"커서를 왼쪽으로 한 글자 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"아래쪽 머리글로 이동합니다(커서가 머리글/바닥글에 있을 경우).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"(커서가 머리글/바닥글에 있을 경우) 아래쪽 머리글/바닥글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"테이블 행의 다음 셀로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"다음 입력란으로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"현재 편집 중인 PDF의 다음 페이지로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"테이블의 다음 행으로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"테이블 행의 이전 셀로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"이전 입력란으로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"현재 편집 중인 PDF의 이전 페이지로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"테이블의 이전 행으로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"커서를 오른쪽으로 한 글자 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"현재 편집 중인 PDF의 맨 처음으로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"현재 편집 중인 줄의 시작 부분에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"현재 편집 중인 페이지 바로 다음 페이지의 맨 처음에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"현재 편집 중인 페이지의 바로 앞 페이지에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"커서를 단어의 시작 위치로 이동하거나 왼쪽으로 한 단어 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"커서를 한 줄 위로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"(커서가 머리글/바닥글에 있을 경우) 위쪽 머리글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"(커서가 머리글/바닥글에 있을 경우) 위쪽 머리글/바닥글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"데스크톱 편집기에서는 다음 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"모달 대화 상자에서 다음 컨트롤로 포커스를 이동하며 탐색합니다.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"문자 사이에 하이픈을 만듭니다. 하이픈은 새 줄을 시작하는 데 사용할 수 없습니다.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"새 줄을 시작하는 데 사용할 수 없는 문자 사이에 공백을 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"온라인 편집기에서 채팅 패널을 열고 메시지를 보내세요.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"댓글 텍스트를 추가할 수 있는 데이터 입력 필드를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"댓글 패널을 열어서 본인의 댓글을 추가하거나 다른 사용자의 댓글에 답변하세요.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"선택한 요소의 상황에 맞는 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"기존 파일을 선택할 수 있는 표준 대화 상자를 엽니다. 이 대화 상자에서 파일을 선택하고 [열기]를 클릭하면 데스크톱 편집기의 새 탭이나 창에서 파일이 열립니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"현재 PDF를 저장·다운로드·인쇄하고, 문서 정보를 확인하며, 새 문서를 생성하거나 기존 PDF를 열고, PDF 편집기 도움말 센터 또는 고급 설정에 접근할 수 있는 파일 패널을 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"찾기 및 바꾸기 메뉴(패널)를 열고 바꾸기 필드를 사용하여 찾은 문자의 하나 이상의 발생을 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"현재 편집 중인 PDF에서 문자/단어/구문을 검색하기 위한 찾기 대화상자를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"PDF 편집기 도움말 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionPaste":"현재 커서 위치에 클립보드의 복사한 텍스트 조각을 삽입합니다. 텍스트는 같은 문서, 다른 문서 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"현재 편집 중인 PDF의 텍스트에 복사한 서식을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"현재 커서 위치에 클립보드의 복사한 텍스트 조각을 원본 서식 없이 삽입합니다. 텍스트는 같은 문서, 다른 문서 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"데스크톱 편집기에서는 이전 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"대화 상자에서 이전 컨트롤에 포커스를 두기 위해 컨트롤 사이를 탐색합니다.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"사용 가능한 프린터로 PDF를 인쇄하거나 파일로 저장합니다","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"현재 커서 위치에 등록 상표 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"선택한 유니코드 코드를 기호로 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"선택한 텍스트 조각의 서식을 지웁니다.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"문단을 오른쪽 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionSave":"현재 편집 중인 PDF 파일에 대한 모든 변경 사항을 저장합니다. 활성 파일은 현재 파일 이름, 위치, 파일 형식으로 저장됩니다.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"현재 편집 중인 PDF를 다른 이름으로 다운로드… 패널을 열어 지원되는 형식 중 하나로 컴퓨터의 하드 디스크에 저장합니다.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"PDF를 화면에 보이는 한 페이지 정도 아래로 스크롤합니다.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"PDF를 화면에 보이는 한 페이지 정도 위로 스크롤합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"커서 위치의 왼쪽에 있는 문자 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"커서가 있는 곳부터 단어의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"커서를 한 줄 아래로 이동하며 이전 위치와 현재 위치 사이의 모든 문자를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"커서를 한 줄 위로 이동하며 이전 위치와 현재 위치 사이의 모든 문자를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"커서 위치에서 화면 하단까지 페이지 부분을 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"커서 위치에서 화면 상단까지 페이지 부분을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"커서 위치 오른쪽에 있는 문자 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"커서가 있는 곳부터 단어 끝까지의 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"커서가 있는 곳부터 다음 페이지의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"커서가 있는 곳부터 이전 페이지의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"커서 위치에서 PDF의 끝까지 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"커서가 있는 곳부터 현재 줄의 끝까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"커서 위치에서 PDF의 시작 부분까지 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"커서부터 현재 줄의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"인쇄할 수 없는 문자를 표시하거나 숨깁니다.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"현재 커서 위치에 선택적 하이픈을 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"복사한 텍스트의 원본 서식 유지","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"원래 서식 없이 텍스트를 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"복사한 표를 중첩 표로 기존 표의 선택한 셀에 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"기존 테이블의 내용을 복사한 데이터로 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"애플리케이션에서 수행된 작업의 화면 판독기 전송을 활성화/비활성화합니다.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"목록/들여쓰기 레벨을 높이세요(단락 시작 커서를 사용).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"목록/들여쓰기 수준을 낮춥니다(커서를 문단의 시작 부분에 두었을 때).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"선택한 텍스트 조각에 취소선을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"선택한 텍스트 조각을 작게 만들어 텍스트 줄 하단에 배치합니다(예: 화학식처럼).","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"선택한 텍스트 조각을 작게 만들어 텍스트 줄 상단에 배치합니다(예: 분수처럼).","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"현재 커서 위치에 상표 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"선택한 텍스트 조각에 밑줄을 긋습니다.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"문단의 들여쓰기를 왼쪽에서부터 점진적으로 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"필드(예: 목차)를 업데이트합니다.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"링크를 방문합니다(링크에 커서를 놓은 상태).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"현재 PDF의 확대/축소 비율을 기본값 100%로 재설정합니다","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"현재 편집 중인 PDF를 확대합니다","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"현재 편집 중인 PDF를 축소합니다","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"굵게","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"복사","Common.Controllers.Shortcuts.txtLabelCopyFormat":"복사 형식","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"잘라내기","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"유로 기호","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"가로 줄임표","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"톱니 모양","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"기울임꼴","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage이동","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"붙여넣기","Common.Controllers.Shortcuts.txtLabelPasteFormat":"서식 붙여넣기","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"저장","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"문단 들여쓰기 시작","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"문단 들여쓰기 취소","Common.Controllers.Shortcuts.txtLabelStrikeout":"취소선","Common.Controllers.Shortcuts.txtLabelSubscript":"아래 첨자","Common.Controllers.Shortcuts.txtLabelSuperscript":"위 첨자","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"밑줄","Common.Controllers.Shortcuts.txtLabelUnIndent":"들여쓰기 취소","Common.Controllers.Shortcuts.txtLabelUpdateFields":"필드 업데이트","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"방문링크","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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.textRadar":"레이더","Common.define.chartData.textRadarFilled":"채워진 레이더","Common.define.chartData.textRadarMarker":"마커가 있는 레이더","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.define.smartArt.textAccentedPicture":"강조 이미지","Common.define.smartArt.textAccentProcess":"강조 프로세스","Common.define.smartArt.textAlternatingFlow":"교차 흐름","Common.define.smartArt.textAlternatingHexagons":"교차 육각형","Common.define.smartArt.textAlternatingPictureBlocks":"교차 그림 블록","Common.define.smartArt.textAlternatingPictureCircles":"교차 그림 원형","Common.define.smartArt.textArchitectureLayout":"아키텍처 레이아웃","Common.define.smartArt.textArrowRibbon":"화살표 리본","Common.define.smartArt.textAscendingPictureAccentProcess":"오름차순 그림 강조 프로세스","Common.define.smartArt.textBalance":"균형","Common.define.smartArt.textBasicBendingProcess":"기본 절곡 프로세스","Common.define.smartArt.textBasicBlockList":"기본 차단 리스트","Common.define.smartArt.textBasicChevronProcess":"기본 쉐브론 프로세스","Common.define.smartArt.textBasicCycle":"기본 순환","Common.define.smartArt.textBasicMatrix":"기본 행렬","Common.define.smartArt.textBasicPie":"기본 파이","Common.define.smartArt.textBasicProcess":"기본 프로세스","Common.define.smartArt.textBasicPyramid":"기본 피라미드","Common.define.smartArt.textBasicRadial":"기본 방사형","Common.define.smartArt.textBasicTarget":"기본 대상","Common.define.smartArt.textBasicTimeline":"기본 타임라인","Common.define.smartArt.textBasicVenn":"기본 벤 다이어그램","Common.define.smartArt.textBendingPictureAccentList":"굴곡 그림 강조 목록","Common.define.smartArt.textBendingPictureBlocks":"굴곡 그림 블록","Common.define.smartArt.textBendingPictureCaption":"굴곡 그림 캡션","Common.define.smartArt.textBendingPictureCaptionList":"굴곡 그림 캡션 목록","Common.define.smartArt.textBendingPictureSemiTranparentText":"굴곡 그림 반투명 텍스트","Common.define.smartArt.textBlockCycle":"블록 주기","Common.define.smartArt.textBubblePictureList":"말풍선 그림 목록","Common.define.smartArt.textCaptionedPictures":"캡션이 있는 사진","Common.define.smartArt.textChevronAccentProcess":"쉐브론 액센트 프로세스","Common.define.smartArt.textChevronList":"쉐브론 목록","Common.define.smartArt.textCircleAccentTimeline":"원형 강조 타임라인","Common.define.smartArt.textCircleArrowProcess":"원형 화살표 프로세스","Common.define.smartArt.textCirclePictureHierarchy":"원형 이미지 계층 구조","Common.define.smartArt.textCircleProcess":"원형 프로세스","Common.define.smartArt.textCircleRelationship":"원형 관계","Common.define.smartArt.textCircularBendingProcess":"원형 절곡 공정","Common.define.smartArt.textCircularPictureCallout":"원형 이미지 주석","Common.define.smartArt.textClosedChevronProcess":"닫힌 형태의 쉐브론 프로세스","Common.define.smartArt.textContinuousArrowProcess":"연속 화살표 프로세스","Common.define.smartArt.textContinuousBlockProcess":"연속 블록 프로세스","Common.define.smartArt.textContinuousCycle":"연속적인 주기","Common.define.smartArt.textContinuousPictureList":"연속 그림 목록","Common.define.smartArt.textConvergingArrows":"수렴 화살표","Common.define.smartArt.textConvergingRadial":"수렴 방사형","Common.define.smartArt.textConvergingText":"수렴 텍스트","Common.define.smartArt.textCounterbalanceArrows":"균형 화살표","Common.define.smartArt.textCycle":"주기","Common.define.smartArt.textCycleMatrix":"주기 행렬","Common.define.smartArt.textDescendingBlockList":"내림차순 블록 목록","Common.define.smartArt.textDescendingProcess":"내림차순 프로세스","Common.define.smartArt.textDetailedProcess":"세부 프로세스","Common.define.smartArt.textDivergingArrows":"분기 화살표","Common.define.smartArt.textDivergingRadial":"발산 방사형","Common.define.smartArt.textEquation":"수식","Common.define.smartArt.textFramedTextPicture":"테두리 텍스트 그림","Common.define.smartArt.textFunnel":"깔때기","Common.define.smartArt.textGear":"톱니바퀴","Common.define.smartArt.textGridMatrix":"격자 행렬","Common.define.smartArt.textGroupedList":"그룹 목록","Common.define.smartArt.textHalfCircleOrganizationChart":"반원 형태 조직도","Common.define.smartArt.textHexagonCluster":"육각형 클러스터","Common.define.smartArt.textHexagonRadial":"육각형 방사형","Common.define.smartArt.textHierarchy":"계층","Common.define.smartArt.textHierarchyList":"계층 목록","Common.define.smartArt.textHorizontalBulletList":"가로 글머리 기호 목록","Common.define.smartArt.textHorizontalHierarchy":"수평적 계층","Common.define.smartArt.textHorizontalLabeledHierarchy":"가로 레이블 계층","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"가로 다단계 계층","Common.define.smartArt.textHorizontalOrganizationChart":"가로 조직도","Common.define.smartArt.textHorizontalPictureList":"가로 그림 목록","Common.define.smartArt.textIncreasingArrowProcess":"증가 화살표 프로세스","Common.define.smartArt.textIncreasingCircleProcess":"증가 원형 프로세스","Common.define.smartArt.textInterconnectedBlockProcess":"연결 블록 프로세스","Common.define.smartArt.textInterconnectedRings":"연결 고리","Common.define.smartArt.textInvertedPyramid":"역피라미드","Common.define.smartArt.textLabeledHierarchy":"레이블 계층","Common.define.smartArt.textLinearVenn":"선형 벤 다이어그램","Common.define.smartArt.textLinedList":"선 있는 목록","Common.define.smartArt.textList":"목록","Common.define.smartArt.textMatrix":"행렬","Common.define.smartArt.textMultidirectionalCycle":"다방향 순환","Common.define.smartArt.textNameAndTitleOrganizationChart":"이름 및 직위 조직도","Common.define.smartArt.textNestedTarget":"중첩 목표","Common.define.smartArt.textNondirectionalCycle":"비방향 사이클","Common.define.smartArt.textOpposingArrows":"반대 화살표","Common.define.smartArt.textOpposingIdeas":"대립 아이디어","Common.define.smartArt.textOrganizationChart":"조직도","Common.define.smartArt.textOther":"기타","Common.define.smartArt.textPhasedProcess":"단계별 프로세스","Common.define.smartArt.textPicture":"그림","Common.define.smartArt.textPictureAccentBlocks":"그림 강조 블럭","Common.define.smartArt.textPictureAccentList":"그림 강조 목록","Common.define.smartArt.textPictureAccentProcess":"그림 강조 프로세스","Common.define.smartArt.textPictureCaptionList":"그림 캡션 목록","Common.define.smartArt.textPictureFrame":"사진 프레임","Common.define.smartArt.textPictureGrid":"그림 격자","Common.define.smartArt.textPictureLineup":"사진 라인업","Common.define.smartArt.textPictureOrganizationChart":"그림 조직도","Common.define.smartArt.textPictureStrips":"그림 스트립","Common.define.smartArt.textPieProcess":"파이 프로세스","Common.define.smartArt.textPlusAndMinus":"플러스/마이너스","Common.define.smartArt.textProcess":"프로세스","Common.define.smartArt.textProcessArrows":"프로세스 화살표","Common.define.smartArt.textProcessList":"프로세스 목록","Common.define.smartArt.textPyramid":"피라미드","Common.define.smartArt.textPyramidList":"피라미드 목록","Common.define.smartArt.textRadialCluster":"방사형 클러스터","Common.define.smartArt.textRadialCycle":"방사형 순환","Common.define.smartArt.textRadialList":"방사형 목록","Common.define.smartArt.textRadialPictureList":"방사형 그림 목록","Common.define.smartArt.textRadialVenn":"방사형 벤 다이어그램","Common.define.smartArt.textRandomToResultProcess":"무작위 랜덤 프로세스","Common.define.smartArt.textRelationship":"관계","Common.define.smartArt.textRepeatingBendingProcess":"반복 굴곡 프로세스","Common.define.smartArt.textReverseList":"역방향 목록","Common.define.smartArt.textSegmentedCycle":"분할 순환","Common.define.smartArt.textSegmentedProcess":"분할 프로세스","Common.define.smartArt.textSegmentedPyramid":"분할 피라미드","Common.define.smartArt.textSnapshotPictureList":"스냅샷 그림 목록","Common.define.smartArt.textSpiralPicture":"나선형 그림","Common.define.smartArt.textSquareAccentList":"사각형 강조 목록","Common.define.smartArt.textStackedList":"누적 목록","Common.define.smartArt.textStackedVenn":"누적 벤 다이어그램","Common.define.smartArt.textStaggeredProcess":"계단식 프로세스","Common.define.smartArt.textStepDownProcess":"단계 하향 프로세스","Common.define.smartArt.textStepUpProcess":"단계 상승 프로세스","Common.define.smartArt.textSubStepProcess":"하위 단계 프로세스","Common.define.smartArt.textTabbedArc":"탭 아크","Common.define.smartArt.textTableHierarchy":"표 계층","Common.define.smartArt.textTableList":"표 목록","Common.define.smartArt.textTabList":"탭 목록","Common.define.smartArt.textTargetList":"목표 목록","Common.define.smartArt.textTextCycle":"텍스트 순환","Common.define.smartArt.textThemePictureAccent":"테마 이미지 강조","Common.define.smartArt.textThemePictureAlternatingAccent":"테마 이미지 교체 강조","Common.define.smartArt.textThemePictureGrid":"테마 이미지 격자","Common.define.smartArt.textTitledMatrix":"제목 행렬","Common.define.smartArt.textTitledPictureAccentList":"제목이 있는 이미지 강조 목록","Common.define.smartArt.textTitledPictureBlocks":"제목이 있는 그림 블록","Common.define.smartArt.textTitlePictureLineup":"제목 그림 정렬","Common.define.smartArt.textTrapezoidList":"사다리꼴 목록","Common.define.smartArt.textUpwardArrow":"위쪽 화살표","Common.define.smartArt.textVaryingWidthList":"너비가 다른 목록","Common.define.smartArt.textVerticalAccentList":"수직 강조 목록","Common.define.smartArt.textVerticalArrowList":"수직 화살표 목록","Common.define.smartArt.textVerticalBendingProcess":"수직 절곡 프로세스","Common.define.smartArt.textVerticalBlockList":"수직 블록 목록","Common.define.smartArt.textVerticalBoxList":"수직 상자 목록","Common.define.smartArt.textVerticalBracketList":"수직 괄호 목록","Common.define.smartArt.textVerticalBulletList":"수직 글머리 기호 목록","Common.define.smartArt.textVerticalChevronList":"수직 쉐브론 목록","Common.define.smartArt.textVerticalCircleList":"수직 원 목록","Common.define.smartArt.textVerticalCurvedList":"수직 곡선 목록","Common.define.smartArt.textVerticalEquation":"수직 방정식","Common.define.smartArt.textVerticalPictureAccentList":"수직 방향 그림 강조 목록","Common.define.smartArt.textVerticalPictureList":"수직 이미지 목록","Common.define.smartArt.textVerticalProcess":"수직 프로세스","Common.Translation.textMoreButton":"더","Common.Translation.tipFileLocked":"문서가 편집 잠금 상태입니다.변경한 후 로컬 복사본으로 저장할 수 있습니다.","Common.Translation.tipFileReadOnly":"파일이 읽기 전용입니다. 변경 사항을 유지하려면 파일을 새 이름으로 저장하거나 다른 위치에 저장하세요.","Common.Translation.warnFileLocked":"파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.","Common.Translation.warnFileLockedBtnEdit":"복사본 만들기","Common.Translation.warnFileLockedBtnView":"미리보기","Common.UI.ButtonColored.textAutoColor":"자동","Common.UI.ButtonColored.textEyedropper":"스포이드","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":"목","Common.UI.Calendar.textShortTuesday":"화","Common.UI.Calendar.textShortWednesday":"우리","Common.UI.Calendar.textYears":"년","Common.UI.ExtendedColorDialog.addButtonText":"추가","Common.UI.ExtendedColorDialog.textCurrent":"현재","Common.UI.ExtendedColorDialog.textHexErr":"입력 한 값이 잘못되었습니다.
000000에서 FFFFFF 사이의 값을 입력하십시오.","Common.UI.ExtendedColorDialog.textNew":"신규","Common.UI.ExtendedColorDialog.textRGBErr":"입력 한 값이 잘못되었습니다.
0에서 255 사이의 숫자 값을 입력하십시오.","Common.UI.HSBColorPicker.textNoColor":"색상 없음","Common.UI.InputFieldBtnCalendar.textDate":"날짜선택","Common.UI.InputFieldBtnPassword.textHintHidePwd":"비밀번호 숨기기","Common.UI.InputFieldBtnPassword.textHintHold":"길게 눌러 비밀번호 보기","Common.UI.InputFieldBtnPassword.textHintShowPwd":"비밀번호 표시","Common.UI.SearchBar.capFind":"찾기","Common.UI.SearchBar.capFindRedact":"찾기 및 편집","Common.UI.SearchBar.textFind":"찾기","Common.UI.SearchBar.tipCloseSearch":"검색 닫기","Common.UI.SearchBar.tipNextResult":"다음결과","Common.UI.SearchBar.tipOpenAdvancedSettings":"고급 설정 열기","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"찾기 및 편집","Common.UI.SearchBar.tipPreviousResult":"이전 결과","Common.UI.SearchDialog.textHighlight":"결과 강조 표시","Common.UI.SearchDialog.textMatchCase":"대소 문자를 구분합니다","Common.UI.SearchDialog.textReplaceDef":"대체 텍스트 입력","Common.UI.SearchDialog.textSearchStart":"여기에 텍스트를 입력하십시오","Common.UI.SearchDialog.textTitle":"찾기 및 바꾸기","Common.UI.SearchDialog.textTitle2":"찾기","Common.UI.SearchDialog.textWholeWords":"전체 단어 만","Common.UI.SearchDialog.txtBtnHideReplace":"바꾸기 숨기기","Common.UI.SearchDialog.txtBtnReplace":"바꾸기","Common.UI.SearchDialog.txtBtnReplaceAll":"모두 바꾸기","Common.UI.SynchronizeTip.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.SynchronizeTip.textGotIt":"확인","Common.UI.SynchronizeTip.textNew":"신규","Common.UI.SynchronizeTip.textSynchronize":"다른 사용자가 문서를 변경했습니다.
클릭하여 변경 사항을 저장하고 업데이트를 다시로드하십시오.","Common.UI.ThemeColorPalette.textRecentColors":"최근 색상","Common.UI.ThemeColorPalette.textStandartColors":"표준 색상","Common.UI.ThemeColorPalette.textThemeColors":"테마 색","Common.UI.ThemeColorPalette.textTransparent":"투명한","Common.UI.Themes.txtThemeClassicLight":"클래식 라이트","Common.UI.Themes.txtThemeContrastDark":"어두운 대비","Common.UI.Themes.txtThemeDark":"어두운","Common.UI.Themes.txtThemeGray":"회색","Common.UI.Themes.txtThemeLight":"밝은","Common.UI.Themes.txtThemeModernDark":"모던 다크","Common.UI.Themes.txtThemeModernLight":"모던 라이트","Common.UI.Themes.txtThemeSystem":"시스템과 동일","Common.UI.Window.cancelButtonText":"취소","Common.UI.Window.closeButtonText":"닫기","Common.UI.Window.noButtonText":"아니오","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"확인","Common.UI.Window.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.Window.textError":"오류","Common.UI.Window.textInformation":"정보","Common.UI.Window.textWarning":"경고","Common.UI.Window.yesButtonText":"예","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt 키","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl 키","Common.Utils.String.textShift":"Shift 키","Common.Utils.ThemeColor.txtaccent":"강조","Common.Utils.ThemeColor.txtAqua":"아쿠아","Common.Utils.ThemeColor.txtbackground":"배경","Common.Utils.ThemeColor.txtBlack":"검정","Common.Utils.ThemeColor.txtBlue":"파랑","Common.Utils.ThemeColor.txtBrightGreen":"밝은 녹색","Common.Utils.ThemeColor.txtBrown":"갈색","Common.Utils.ThemeColor.txtDarkBlue":"어두운 파랑색","Common.Utils.ThemeColor.txtDarker":"더 어둡게","Common.Utils.ThemeColor.txtDarkGray":"어두운 회색","Common.Utils.ThemeColor.txtDarkGreen":"어두운 초록색","Common.Utils.ThemeColor.txtDarkPurple":"진한 보라색","Common.Utils.ThemeColor.txtDarkRed":"어두운 빨간색","Common.Utils.ThemeColor.txtDarkTeal":"어두운 암청색","Common.Utils.ThemeColor.txtDarkYellow":"어두운 노란색","Common.Utils.ThemeColor.txtGold":"금색","Common.Utils.ThemeColor.txtGray":"회색","Common.Utils.ThemeColor.txtGreen":"녹색","Common.Utils.ThemeColor.txtIndigo":"남색","Common.Utils.ThemeColor.txtLavender":"라벤더","Common.Utils.ThemeColor.txtLightBlue":"밝은 파랑","Common.Utils.ThemeColor.txtLighter":"더 밝은","Common.Utils.ThemeColor.txtLightGray":"밝은 회색","Common.Utils.ThemeColor.txtLightGreen":"밝은 초록","Common.Utils.ThemeColor.txtLightOrange":"밝은 주황","Common.Utils.ThemeColor.txtLightYellow":"밝은 노랑","Common.Utils.ThemeColor.txtOrange":"주황","Common.Utils.ThemeColor.txtPink":"분홍","Common.Utils.ThemeColor.txtPurple":"보라","Common.Utils.ThemeColor.txtRed":"빨강","Common.Utils.ThemeColor.txtRose":"장미","Common.Utils.ThemeColor.txtSkyBlue":"하늘색","Common.Utils.ThemeColor.txtTeal":"암청색","Common.Utils.ThemeColor.txttext":"텍스트","Common.Utils.ThemeColor.txtTurquosie":"터키옥색","Common.Utils.ThemeColor.txtViolet":"바이올렛","Common.Utils.ThemeColor.txtWhite":"흰색","Common.Utils.ThemeColor.txtYellow":"노랑","Common.Views.About.txtAddress":"주소 :","Common.Views.About.txtLicensee":"라이센스","Common.Views.About.txtLicensor":"라이센서","Common.Views.About.txtMail":"이메일 :","Common.Views.About.txtPoweredBy":"기술 지원","Common.Views.About.txtTel":"전화번호:","Common.Views.About.txtVersion":"버전","Common.Views.Chat.textChat":"채팅","Common.Views.Chat.textClosePanel":"채팅 닫기","Common.Views.Chat.textEnterMessage":"메시지를 입력하세요","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.mniFilterComments":"댓글 표시","Common.Views.Comments.mniFilterGroups":"그룹별 필터링","Common.Views.Comments.mniPositionAsc":"위에서 부터","Common.Views.Comments.mniPositionDesc":"아래로 부터","Common.Views.Comments.textAdd":"추가","Common.Views.Comments.textAddComment":"코멘트 추가","Common.Views.Comments.textAddCommentToDoc":"문서에 댓글 추가","Common.Views.Comments.textAddReply":"댓글 추가","Common.Views.Comments.textAll":"모두","Common.Views.Comments.textAnonym":"손님","Common.Views.Comments.textCancel":"취소","Common.Views.Comments.textClose":"닫기","Common.Views.Comments.textClosePanel":"코멘트 닫기","Common.Views.Comments.textComment":"댓글","Common.Views.Comments.textComments":"코멘트","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"여기에 의견을 입력하십시오","Common.Views.Comments.textHintAddComment":"코멘트 추가","Common.Views.Comments.textOpen":"열기","Common.Views.Comments.textOpenAgain":"다시 열기","Common.Views.Comments.textReply":"댓글","Common.Views.Comments.textResolve":"해결","Common.Views.Comments.textResolved":"해결됨","Common.Views.Comments.textSort":"코멘트 분류","Common.Views.Comments.textSortFilter":"댓글 정렬 및 필터링","Common.Views.Comments.textSortFilterMore":"정렬, 필터 및 기타 옵션","Common.Views.Comments.textSortMore":"정렬 및 기타 옵션","Common.Views.Comments.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.Comments.txtEmpty":"문서에 코멘트가 없습니다","Common.Views.CopyWarningDialog.textDontShow":"이 메시지를 다시 표시하지 않음","Common.Views.CopyWarningDialog.textMsg":"편집기 도구 모음 단추 및 컨텍스트 메뉴 작업을 사용하여 복사, 잘라 내기 및 붙여 넣기 작업은이 편집기 탭 내에서만 수행됩니다.

외부 응용 프로그램으로 복사하거나 붙여 넣으려면 편집기 탭은 다음과 같은 키보드 조합을 사용합니다 : ","Common.Views.CopyWarningDialog.textTitle":"작업 복사, 잘라 내기 및 붙여 넣기","Common.Views.CopyWarningDialog.textToCopy":"복사","Common.Views.CopyWarningDialog.textToCut":"잘라 내기","Common.Views.CopyWarningDialog.textToPaste":"붙여 넣기","Common.Views.CustomizeQuickAccessDialog.textDownload":"다운로드","Common.Views.CustomizeQuickAccessDialog.textMsg":"빠른 실행 도구 모음에 표시할 명령을 선택하세요","Common.Views.CustomizeQuickAccessDialog.textPrint":"인쇄","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"빠른 인쇄","Common.Views.CustomizeQuickAccessDialog.textRedo":"다시 실행","Common.Views.CustomizeQuickAccessDialog.textSave":"저장","Common.Views.CustomizeQuickAccessDialog.textTitle":"빠른 실행 사용자 지정","Common.Views.CustomizeQuickAccessDialog.textUndo":"실행 취소","Common.Views.DocumentAccessDialog.textLoading":"로드 중 ...","Common.Views.DocumentAccessDialog.textTitle":"공유 설정","Common.Views.Draw.hintEraser":"지우개","Common.Views.Draw.hintSelect":"선택","Common.Views.Draw.txtEraser":"지우개","Common.Views.Draw.txtHighlighter":"하이라이터","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"펜","Common.Views.Draw.txtSelect":"선택","Common.Views.Draw.txtSize":"크기","Common.Views.ExternalDiagramEditor.textTitle":"차트 편집기","Common.Views.ExternalEditor.textClose":"닫기","Common.Views.ExternalEditor.textSave":"저장 및 종료","Common.Views.ExternalLinksDlg.closeButtonText":"닫기","Common.Views.ExternalLinksDlg.textAutoUpdate":"연결된 원본에서 데이터 자동 업데이트","Common.Views.ExternalLinksDlg.textChange":"소스 변경","Common.Views.ExternalLinksDlg.textDelete":"링크 해제","Common.Views.ExternalLinksDlg.textDeleteAll":"모든 링크 해제","Common.Views.ExternalLinksDlg.textOk":"확인","Common.Views.ExternalLinksDlg.textOpen":"오픈 소스","Common.Views.ExternalLinksDlg.textSource":"출처","Common.Views.ExternalLinksDlg.textStatus":"상태","Common.Views.ExternalLinksDlg.textUnknown":"알 수 없음","Common.Views.ExternalLinksDlg.textUpdate":"값 업데이트","Common.Views.ExternalLinksDlg.textUpdateAll":"모두 업데이트","Common.Views.ExternalLinksDlg.textUpdating":"업데이트 중…","Common.Views.ExternalLinksDlg.txtTitle":"외부 링크","Common.Views.Header.ariaQuickAccessToolbar":"빠른 실행 도구 모음","Common.Views.Header.labelCoUsersDescr":"파일을 편집 중인 사용자:","Common.Views.Header.textAddFavorite":"즐겨찾기에 추가","Common.Views.Header.textAdvSettings":"고급 설정","Common.Views.Header.textAnnotateDesc":"양식 작성 또는 주석 달기","Common.Views.Header.textBack":"파일 위치 열기","Common.Views.Header.textClose":"파일 닫기","Common.Views.Header.textComment":"댓글 달기","Common.Views.Header.textCommentDesc":"모든 변경 사항이 파일에 저장됩니다. 실시간 공동 작업","Common.Views.Header.textCompactView":"보기 컴팩트 도구 모음","Common.Views.Header.textDownload":"다운로드","Common.Views.Header.textEdit":"편집 중","Common.Views.Header.textEditDesc":"모든 변경 사항이 파일에 저장됩니다. 실시간 공동 작업","Common.Views.Header.textEditDescNoCoedit":"텍스트, 도형, 이미지 등을 추가하거나 편집","Common.Views.Header.textHideLines":"눈금자 숨기기","Common.Views.Header.textHideStatusBar":"상태 표시 줄 숨기기","Common.Views.Header.textPrint":"인쇄","Common.Views.Header.textReadOnly":"읽기 전용","Common.Views.Header.textRemoveFavorite":"즐겨찾기 제거","Common.Views.Header.textShare":"공유","Common.Views.Header.textView":"보기 모드","Common.Views.Header.textViewDesc":"모든 변경 사항이 로컬에 저장됩니다","Common.Views.Header.textViewDescNoCoedit":"보기 또는 주석 달기","Common.Views.Header.textZoom":"확대/축소","Common.Views.Header.tipAccessRights":"문서 액세스 권한 관리","Common.Views.Header.tipComment":"댓글 달기","Common.Views.Header.tipCustomizeQuickAccessToolbar":"빠른 실행 도구 모음 사용자 지정","Common.Views.Header.tipDownload":"파일을 다운로드","Common.Views.Header.tipEdit":"편집 중","Common.Views.Header.tipGoEdit":"현재 파일 편집","Common.Views.Header.tipPrint":"파일 출력","Common.Views.Header.tipPrintQuick":"빠른 인쇄","Common.Views.Header.tipRedo":"다시 실행","Common.Views.Header.tipSave":"저장","Common.Views.Header.tipSearch":"검색","Common.Views.Header.tipUndo":"실행 취소","Common.Views.Header.tipUsers":"사용자 보기","Common.Views.Header.tipView":"보기 모드","Common.Views.Header.tipViewSettings":"보기 설정","Common.Views.Header.tipViewUsers":"사용자보기 및 문서 액세스 권한 관리","Common.Views.Header.txtAccessRights":"액세스 권한 변경","Common.Views.Header.txtRename":"이름 바꾸기","Common.Views.ImageFromUrlDialog.textUrl":"이미지 URL 붙여 넣기 :","Common.Views.ImageFromUrlDialog.txtEmpty":"이 입력란은 필수 항목","Common.Views.ImageFromUrlDialog.txtNotUrl":"이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.","Common.Views.OpenDialog.closeButtonText":"파일 닫기","Common.Views.OpenDialog.txtEncoding":"인코딩","Common.Views.OpenDialog.txtIncorrectPwd":"비밀번호가 맞지 않음","Common.Views.OpenDialog.txtOpenFile":"파일을 열려면 암호를 입력하십시오.","Common.Views.OpenDialog.txtPassword":"비밀번호","Common.Views.OpenDialog.txtPreview":"미리보기","Common.Views.OpenDialog.txtProtected":"암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.","Common.Views.OpenDialog.txtTitle":"%1 옵션 선택","Common.Views.OpenDialog.txtTitleProtected":"보호 된 파일","Common.Views.PasswordDialog.txtDescription":"문서 보호용 비밀번호를 세팅하세요","Common.Views.PasswordDialog.txtIncorrectPwd":"확인 비밀번호가 같지 않음","Common.Views.PasswordDialog.txtPassword":"비밀번호","Common.Views.PasswordDialog.txtRepeat":"비밀번호 확인","Common.Views.PasswordDialog.txtTitle":"비밀번호 설정","Common.Views.PasswordDialog.txtWarning":"주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.","Common.Views.PluginDlg.textDock":"플러그인 고정","Common.Views.PluginDlg.textLoading":"불러오는 중","Common.Views.PluginPanel.textClosePanel":"플러그 인 닫기","Common.Views.PluginPanel.textHidePanel":"플러그인 축소","Common.Views.PluginPanel.textLoading":"불러오는 중","Common.Views.PluginPanel.textUndock":"플러그인 고정 해제","Common.Views.Plugins.groupCaption":"플러그인","Common.Views.Plugins.strPlugins":"플러그인","Common.Views.Plugins.textBackgroundPlugins":"백그라운드 플러그인","Common.Views.Plugins.textClosePanel":"플러그 인 닫기","Common.Views.Plugins.textLoading":"불러오는 중","Common.Views.Plugins.textSettings":"설정","Common.Views.Plugins.textStart":"시작","Common.Views.Plugins.textStop":"정지","Common.Views.Plugins.textTheListOfBackgroundPlugins":"백그라운드 플러그인 목록","Common.Views.Protection.hintAddPwd":"비밀번호로 암호화","Common.Views.Protection.hintDelPwd":"비밀번호 삭제","Common.Views.Protection.hintPwd":"비밀번호 변경 또는 삭제","Common.Views.Protection.hintSignature":"디지털 서명 또는 서명 라인을 추가 ","Common.Views.Protection.txtAddPwd":"비밀번호 추가","Common.Views.Protection.txtChangePwd":"비밀번호 변경","Common.Views.Protection.txtDeletePwd":"비밀번호 삭제","Common.Views.Protection.txtEncrypt":"암호화","Common.Views.Protection.txtInvisibleSignature":"디지털 서명을 추가","Common.Views.Protection.txtSignature":"서명","Common.Views.Protection.txtSignatureLine":"서명란 추가","Common.Views.RecentFiles.txtOpenRecent":"최근 열기","Common.Views.RenameDialog.textName":"파일 이름","Common.Views.RenameDialog.txtInvalidName":"파일 이름에 다음 문자를 포함 할 수 없습니다 :","Common.Views.ReviewPopover.textAdd":"추가","Common.Views.ReviewPopover.textAddReply":"답장 추가","Common.Views.ReviewPopover.textCancel":"취소","Common.Views.ReviewPopover.textClose":"닫기","Common.Views.ReviewPopover.textComment":"댓글","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"여기에 의견을 입력하십시오","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.ReviewPopover.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.ReviewPopover.txtAccept":"수락","Common.Views.ReviewPopover.txtDeleteTip":"삭제","Common.Views.ReviewPopover.txtEditTip":"편집","Common.Views.ReviewPopover.txtReject":"거부","Common.Views.SaveAsDlg.textLoading":"로드 중","Common.Views.SaveAsDlg.textTitle":"저장 폴더","Common.Views.SearchPanel.textCaseSensitive":"대소 문자를 구분합니다","Common.Views.SearchPanel.textCloseSearch":"검색 닫기","Common.Views.SearchPanel.textContentChanged":"문서가 변경되었습니다.","Common.Views.SearchPanel.textFind":"찾기","Common.Views.SearchPanel.textFindAndRedact":"찾고 편집","Common.Views.SearchPanel.textFindAndReplace":"찾기 및 바꾸기","Common.Views.SearchPanel.textFindRedact":"찾기 및 편집","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} 항목이 성공적으로 대체되었습니다.","Common.Views.SearchPanel.textMark":"편집 대상 지정","Common.Views.SearchPanel.textMarkAll":"모두 표시","Common.Views.SearchPanel.textMatchUsingRegExp":"정규 표현식을 사용하여 일치하는 것을 찾기","Common.Views.SearchPanel.textNoMatches":"일치 하는 항목 없음","Common.Views.SearchPanel.textNoSearchResults":"검색결과 없음","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} 항목이 대체되었습니다. 남은 {2} 항목은 다른 사용자에 의해 잠겨 있습니다.","Common.Views.SearchPanel.textReplace":"바꾸기","Common.Views.SearchPanel.textReplaceAll":"모두 바꾸기","Common.Views.SearchPanel.textReplaceWith":"다음으로 교체","Common.Views.SearchPanel.textSearchAgain":"{0}정확한 결과를 보려면 새 검색 {1}을(를) 수행하십시오.","Common.Views.SearchPanel.textSearchHasStopped":"검색이 중지되었습니다","Common.Views.SearchPanel.textSearchResults":"검색결과: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"검색 결과","Common.Views.SearchPanel.textTooManyResults":"표시할 결과가 너무 많습니다.","Common.Views.SearchPanel.textWholeWords":"전체 단어 만","Common.Views.SearchPanel.tipNextResult":"다음결과","Common.Views.SearchPanel.tipPreviousResult":"이전 결과","Common.Views.SelectFileDlg.textLoading":"로드 중","Common.Views.SelectFileDlg.textTitle":"데이터 소스 선택","Common.Views.ShapeShadowDialog.txtAngle":"각도","Common.Views.ShapeShadowDialog.txtDistance":"간격","Common.Views.ShapeShadowDialog.txtSize":"크기","Common.Views.ShapeShadowDialog.txtTitle":"그림자 조정","Common.Views.ShapeShadowDialog.txtTransparency":"투명","Common.Views.ShortcutsDialog.txtDescription":"세부 설명","Common.Views.ShortcutsDialog.txtEmpty":"일치하는 결과가 없습니다. 검색 조건을 조정하세요.","Common.Views.ShortcutsDialog.txtRestoreAll":"모든 것을 기본값으로 복원","Common.Views.ShortcutsDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsDialog.txtRestoreDescription":"모든 단축키 설정이 초기상태로 복구될 것입니다.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"기본값으로 복원","Common.Views.ShortcutsDialog.txtSearch":"검색","Common.Views.ShortcutsDialog.txtTitle":"키보드 단축키","Common.Views.ShortcutsEditDialog.txtAction":"동작","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"원하는 단축키를 입력하세요","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"%1 동작에 사용된 단축키","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"%1 동작에 사용된 단축키이고 변경될 수 없음","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"%1 동작에 사용된 단축키","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"%1 동작에 사용된 단축키이고 변경할 수 없음","Common.Views.ShortcutsEditDialog.txtNewShortcut":"새로운 단축키","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"\"%1\" 동작에 대한 단축키가 초기상태로 복구될 것입니다.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"기본값으로 복원","Common.Views.ShortcutsEditDialog.txtTitle":"단축키 편집","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"원하는 단축키를 입력하세요","Common.Views.UserNameDialog.textDontShow":"다시 표시하지 않음","Common.Views.UserNameDialog.textLabel":"라벨:","Common.Views.UserNameDialog.textLabelError":"라벨은 비워 둘 수 없습니다.","PDFE.Controllers.InsTab.textAccent":"악센트","PDFE.Controllers.InsTab.textBracket":"대괄호","PDFE.Controllers.InsTab.textFraction":"분수","PDFE.Controllers.InsTab.textFunction":"함수","PDFE.Controllers.InsTab.textInsert":"삽입","PDFE.Controllers.InsTab.textIntegral":"적분","PDFE.Controllers.InsTab.textLargeOperator":"대형 연산자","PDFE.Controllers.InsTab.textLimitAndLog":"한계 및 로그 수","PDFE.Controllers.InsTab.textMatrix":"행렬","PDFE.Controllers.InsTab.textOperator":"연산자","PDFE.Controllers.InsTab.textRadical":"근호","PDFE.Controllers.InsTab.textScript":"스크립트","PDFE.Controllers.InsTab.textShape":"도형","PDFE.Controllers.InsTab.textSymbols":"기호","PDFE.Controllers.InsTab.txtAccent_Accent":"급성","PDFE.Controllers.InsTab.txtAccent_ArrowD":"위에 있는 양방향 화살표","PDFE.Controllers.InsTab.txtAccent_ArrowL":"위에 있는 왼쪽 화살표","PDFE.Controllers.InsTab.txtAccent_ArrowR":"위에 있는 오른쪽 화살표","PDFE.Controllers.InsTab.txtAccent_Bar":"막대","PDFE.Controllers.InsTab.txtAccent_BarBot":"밑줄","PDFE.Controllers.InsTab.txtAccent_BarTop":"오버바","PDFE.Controllers.InsTab.txtAccent_BorderBox":"테두리 상자 수식 (자리 표시자 포함)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"상자화 된 수식 (예)","PDFE.Controllers.InsTab.txtAccent_Check":"확인","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"아래쪽 중괄호","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"위 중괄호","PDFE.Controllers.InsTab.txtAccent_Custom_1":"벡터 A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"ABC 위에 덧선","PDFE.Controllers.InsTab.txtAccent_Custom_3":"위에 바가 있는 x XOR y","PDFE.Controllers.InsTab.txtAccent_DDDot":"트리플 도트","PDFE.Controllers.InsTab.txtAccent_DDot":"이중 점","PDFE.Controllers.InsTab.txtAccent_Dot":"점","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"이중 바 상단 표시","PDFE.Controllers.InsTab.txtAccent_Grave":"무덤","PDFE.Controllers.InsTab.txtAccent_GroupBot":"아래의 문자 그룹화","PDFE.Controllers.InsTab.txtAccent_GroupTop":"위의 문자 그룹화","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"위쪽의 왼쪽 화살촉","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"오른쪽 위 하푼","PDFE.Controllers.InsTab.txtAccent_Hat":"모자","PDFE.Controllers.InsTab.txtAccent_Smile":"브레브","PDFE.Controllers.InsTab.txtAccent_Tilde":"물결표","PDFE.Controllers.InsTab.txtBasicShapes":"기본 도형","PDFE.Controllers.InsTab.txtBracket_Angle":"대괄호","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"구분 기호가있는 대괄호","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"구분 기호가 있는 대괄호","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"오른쪽 꺽쇠괄호","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"왼쪽 꺾쇠 괄호","PDFE.Controllers.InsTab.txtBracket_Curve":"대괄호","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"구분 기호가있는 대괄호","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"오른쪽 중괄호","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"왼쪽 중괄호","PDFE.Controllers.InsTab.txtBracket_Custom_1":"사례 (두 조건)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"사례 (세 조건)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"객체 쌓기","PDFE.Controllers.InsTab.txtBracket_Custom_4":"괄호 안에 객체 쌓기","PDFE.Controllers.InsTab.txtBracket_Custom_5":"사례 사례","PDFE.Controllers.InsTab.txtBracket_Custom_6":"이항 계수","PDFE.Controllers.InsTab.txtBracket_Custom_7":"이항 계수 (괄호 포함)","PDFE.Controllers.InsTab.txtBracket_Line":"세로 막대","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"오른쪽 세로 막대","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"왼쪽 세로 막대","PDFE.Controllers.InsTab.txtBracket_LineDouble":"대괄호","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"오른쪽 이중 세로 막대","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"왼쪽 이중 수직선","PDFE.Controllers.InsTab.txtBracket_LowLim":"대괄호","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"오른쪽 바닥 괄호","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"왼쪽 바닥 기호","PDFE.Controllers.InsTab.txtBracket_Round":"대괄호","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"구분 기호가있는 대괄호","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"오른쪽 소괄호","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"왼쪽 괄호","PDFE.Controllers.InsTab.txtBracket_Square":"대괄호","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"오른쪽 대괄호 두 개 사이 자리 표시자","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"대괄호","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"오른쪽 대괄호","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"왼쪽 대괄호","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"왼쪽 대괄호 두 개 사이 자리 표시자","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"이중 대괄호","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"오른쪽 이중 대괄호","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"왼쪽 이중 대괄호","PDFE.Controllers.InsTab.txtBracket_UppLim":"대괄호","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"오른쪽 천장 괄호","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"왼쪽 천장 기호","PDFE.Controllers.InsTab.txtButtons":"버튼","PDFE.Controllers.InsTab.txtCallouts":"설명 말풍선","PDFE.Controllers.InsTab.txtCharts":"차트","PDFE.Controllers.InsTab.txtFiguredArrows":"그림 화살표","PDFE.Controllers.InsTab.txtFractionDiagonal":"비뚤어진 부분","PDFE.Controllers.InsTab.txtFractionDifferential_1":"미분","PDFE.Controllers.InsTab.txtFractionDifferential_2":"대문자 델타 y/대문자 델타 x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"∂y/∂x","PDFE.Controllers.InsTab.txtFractionDifferential_4":"Δy/Δx","PDFE.Controllers.InsTab.txtFractionHorizontal":"선형 분수","PDFE.Controllers.InsTab.txtFractionPi_2":"파이 오버 2","PDFE.Controllers.InsTab.txtFractionSmall":"소분수","PDFE.Controllers.InsTab.txtFractionVertical":"누적분수","PDFE.Controllers.InsTab.txtFunction_1_Cos":"역 코사인 함수","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"쌍곡선 역 코사인 함수","PDFE.Controllers.InsTab.txtFunction_1_Cot":"역 코탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_1_Coth":"쌍곡선 역 코탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_1_Csc":"역 코시컨트 함수","PDFE.Controllers.InsTab.txtFunction_1_Csch":"쌍곡선 반전 보조 함수","PDFE.Controllers.InsTab.txtFunction_1_Sec":"역 분개 함수","PDFE.Controllers.InsTab.txtFunction_1_Sech":"쌍곡선 역 보조 함수","PDFE.Controllers.InsTab.txtFunction_1_Sin":"역 사인 함수","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"쌍곡선 역 사인 함수","PDFE.Controllers.InsTab.txtFunction_1_Tan":"역 탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"쌍곡선 역 탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_Cos":"코사인 함수","PDFE.Controllers.InsTab.txtFunction_Cosh":"쌍곡선 코사인 함수","PDFE.Controllers.InsTab.txtFunction_Cot":"코탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_Coth":"쌍곡선 코탄 센트 함수","PDFE.Controllers.InsTab.txtFunction_Csc":"코시컨트 함수","PDFE.Controllers.InsTab.txtFunction_Csch":"쌍곡선 보조 함수","PDFE.Controllers.InsTab.txtFunction_Custom_1":"사인 세타","PDFE.Controllers.InsTab.txtFunction_Custom_2":"코사인 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"탄젠트 공식","PDFE.Controllers.InsTab.txtFunction_Sec":"시컨트 함수","PDFE.Controllers.InsTab.txtFunction_Sech":"쌍곡선 시컨트 함수","PDFE.Controllers.InsTab.txtFunction_Sin":"사인 함수","PDFE.Controllers.InsTab.txtFunction_Sinh":"쌍곡선 사인 함수","PDFE.Controllers.InsTab.txtFunction_Tan":"탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_Tanh":"쌍곡선 탄젠트 함수","PDFE.Controllers.InsTab.txtIntegral":"적분","PDFE.Controllers.InsTab.txtIntegral_dtheta":"델타 세타","PDFE.Controllers.InsTab.txtIntegral_dx":"델타 x","PDFE.Controllers.InsTab.txtIntegral_dy":"델타 y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"미분","PDFE.Controllers.InsTab.txtIntegralDouble":"이중 적분","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"적분 상하단이 쌓인 이중 적분","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"한계가 있는 이중 적분","PDFE.Controllers.InsTab.txtIntegralOriented":"윤곽선 적분","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"적분 상하단이 쌓인 윤곽선 적분","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"표면 적분","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"표면 적분","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"표면 적분","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"한계가 있는 윤곽선 적분","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"볼륨 정수","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"적분 상하단이 쌓인 볼륨 정수","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"한계가 있는 볼륨 정수","PDFE.Controllers.InsTab.txtIntegralSubSup":"적분","PDFE.Controllers.InsTab.txtIntegralTriple":"삼중적분","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"적분 상하단이 쌓인 삼중 적분","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"한계가 있는 삼중 적분","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"쇄기꼴","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"하한이 있는 논리 AND","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"한계가 있는 논리 AND","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"아래 첨자 하한이 있는 논리 AND","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"아래첨자/위첨자 한계가 있는 논리 AND","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"하한이 있는 코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"한계가 있는 코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"첨자 하한이 있는 코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"첨자 상·하한이 있는 코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"k에 대한 조합 nCk의 합계","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"i=0부터 n까지의 합계","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"두 개의 첨자를 사용하는 합계 예제","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"제품 예시","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"합집합 예제","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"하한이 있는 논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"한계가 있는 논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"아래 첨자 하한이 있는 논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"아래첨자/위첨자 한계가 있는 논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"교차점","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"하한이 있는 교집합","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"한계가 있는 교집합","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"아래 첨자 하한이 있는 교집합","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"아래첨자/위첨자 한계가 있는 교집합","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"제품","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"하한이 있는 곱셈 기호","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"한계가 있는 곱셈 기호","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"첨자 하한이 있는 곱셈 기호","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"첨자 상·하한이 있는 곱셈 기호","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"합계","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"하한이 있는 합계","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"한계가 있는 합계","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"첨자 하한이 있는 합계","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"첨자 상·하한이 있는 합계","PDFE.Controllers.InsTab.txtLargeOperator_Union":"병합","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"하한이 있는 합집합","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"한계가 있는 합집합","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"첨자 하한이 있는 합집합","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"첨자 상·하한이 있는 합집합","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"제한 예제","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"최대 예제","PDFE.Controllers.InsTab.txtLimitLog_Lim":"제한","PDFE.Controllers.InsTab.txtLimitLog_Ln":"자연 로그","PDFE.Controllers.InsTab.txtLimitLog_Log":"로그","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"로그","PDFE.Controllers.InsTab.txtLimitLog_Max":"최대값","PDFE.Controllers.InsTab.txtLimitLog_Min":"최소값","PDFE.Controllers.InsTab.txtLines":"선","PDFE.Controllers.InsTab.txtMath":"수학","PDFE.Controllers.InsTab.txtMatrix_1_2":"1x2 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_1_3":"1x3 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_2_1":"2x1 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_2_2":"2x2 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"빈 2x2 행렬 (이중 세로 막대 포함)","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"빈 2x2 행렬식","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"빈 2x2 행렬 (소괄호 포함)","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"빈 2x2 행렬 (대괄호 포함)","PDFE.Controllers.InsTab.txtMatrix_2_3":"2x3 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_3_1":"3x1 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_3_2":"3x2 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_3_3":"3x3 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"기준점","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"중간선 점","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"대각선 점들","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"수직 점","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"소괄호 안의 희소 행렬","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"괄호 안의 희소 행렬","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"2x2 단위 행렬 (0 있음)","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"빈 대각선 셀이 있는 2x2 단위 행렬","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"3x3 단위 행렬 (0 있음)","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"3x3 단위 행렬","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"아래에 있는 양방향 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"위에 있는 양방향 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"왼쪽 아래쪽 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"왼쪽 위 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"오른쪽 아래 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"오른쪽 위 화살표","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"콜론 등호","PDFE.Controllers.InsTab.txtOperator_Custom_1":"결과값","PDFE.Controllers.InsTab.txtOperator_Custom_2":"델타 결과","PDFE.Controllers.InsTab.txtOperator_Definition":"정의에 의해 동일","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"델타 등호","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"아래에 있는 양방향 이중 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"위에 있는 양방향 이중 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"왼쪽 아래쪽 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"왼쪽 위 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"오른쪽 아래 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"오른쪽 위 화살표","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"이중 등호","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"마이너스 등호","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"덧셈 등호","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"측정 기준","PDFE.Controllers.InsTab.txtRadicalCustom_1":"이차방정식의 우변","PDFE.Controllers.InsTab.txtRadicalCustom_2":"√(a² + b²)","PDFE.Controllers.InsTab.txtRadicalRoot_2":"차수가 있는 근호","PDFE.Controllers.InsTab.txtRadicalRoot_3":"세제곱근","PDFE.Controllers.InsTab.txtRadicalRoot_n":"차수 있는 근호","PDFE.Controllers.InsTab.txtRadicalSqrt":"제곱근","PDFE.Controllers.InsTab.txtRectangles":"사각형","PDFE.Controllers.InsTab.txtScriptCustom_1":"아래첨자 y의 x 제곱","PDFE.Controllers.InsTab.txtScriptCustom_2":"e의 -iωt 제곱","PDFE.Controllers.InsTab.txtScriptCustom_3":"x 제곱","PDFE.Controllers.InsTab.txtScriptCustom_4":"왼쪽 위 첨자 n, 왼쪽 아래 첨자 1 Y","PDFE.Controllers.InsTab.txtScriptSub":"첨자","PDFE.Controllers.InsTab.txtScriptSubSup":"아래위 첨자","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"왼쪽 아래 첨자-위 첨자","PDFE.Controllers.InsTab.txtScriptSup":"위 첨자","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"설명선 1 (테두리 강조)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"설명선 2 (테두리 강조)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"설명선 3 (테두리 강조)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"설명선 1 (강조선)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"설명선 2 (강조선)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"설명선 3 (강조선)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"되돌리기 또는 이전 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"시작 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"공백 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"문서 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"종료 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"다음 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"도움말 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"홈 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"상세정보 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"동영상 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"뒤로가기 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"소리 버튼","PDFE.Controllers.InsTab.txtShape_arc":"원호","PDFE.Controllers.InsTab.txtShape_bentArrow":"굽은 화살표","PDFE.Controllers.InsTab.txtShape_bentConnector5":"연결선: 꺾임","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"꺾인 화살표 연결선","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"꺾인 양쪽 화살표 연결선","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"위로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_bevel":"베벨","PDFE.Controllers.InsTab.txtShape_blockArc":"원호 블록","PDFE.Controllers.InsTab.txtShape_borderCallout1":"설명선 1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"설명선 2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"설명선 3","PDFE.Controllers.InsTab.txtShape_bracePair":"양쪽 중괄호","PDFE.Controllers.InsTab.txtShape_callout1":"설명선 1 (테두리 없음)","PDFE.Controllers.InsTab.txtShape_callout2":"설명선 2 (테두리 없음)","PDFE.Controllers.InsTab.txtShape_callout3":"설명선 3 (테두리 없음)","PDFE.Controllers.InsTab.txtShape_can":"원통형","PDFE.Controllers.InsTab.txtShape_chevron":"쉐브론","PDFE.Controllers.InsTab.txtShape_chord":"현","PDFE.Controllers.InsTab.txtShape_circularArrow":"원형 화살표","PDFE.Controllers.InsTab.txtShape_cloud":"클라우드","PDFE.Controllers.InsTab.txtShape_cloudCallout":"생각풍선: 구름 모양","PDFE.Controllers.InsTab.txtShape_corner":"L형 테마","PDFE.Controllers.InsTab.txtShape_cube":"정육면체","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"연결선: 구부러짐","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"곡선 화살표 연결선","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"양방향 곡선 연결선","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"아래로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"왼쪽으로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"오른쪽으로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"위로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_decagon":"십각형","PDFE.Controllers.InsTab.txtShape_diagStripe":"대각선 줄무늬","PDFE.Controllers.InsTab.txtShape_diamond":"다이아몬드","PDFE.Controllers.InsTab.txtShape_dodecagon":"12각형","PDFE.Controllers.InsTab.txtShape_donut":"도넛","PDFE.Controllers.InsTab.txtShape_doubleWave":"이중 물결","PDFE.Controllers.InsTab.txtShape_downArrow":"아래쪽 화살표","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"아래쪽 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_ellipse":"타원형","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"리본: 아래로 구불어지고 기울어짐 ","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"리본: 위로 구불어지고 기울어짐 ","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"순서도: 대체 프로세스","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"순서도: 일치","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"순서도: 연결 연산자","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"순서도: 결정","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"순서도: 지연","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"순서도: 표시","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"순서도: 문서","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"순서도: 추출","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"순서도: 데이터","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"순서도: 내부 스토리지","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"순서도: 디스크","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"순서도: 스토리지에 직접 접근","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"순서도: 순차 접근 스토리지","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"순서도: 수동 입력","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"순서도: 수동조작","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"순서도: 병합","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"순서도: 다중문서","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"순서도: 페이지 외부 커넥터","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"순서도: 저장된 데이터","PDFE.Controllers.InsTab.txtShape_flowChartOr":"순서도: 또는","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"순서도: 미리 정의된 흐름","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"순서도: 준비","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"순서도: 프로세스","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"순서도: 카드","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"순서도: 천공된 종이 테이프","PDFE.Controllers.InsTab.txtShape_flowChartSort":"순서도: 정렬","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"순서도: 합계 노드","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"순서도: 종료","PDFE.Controllers.InsTab.txtShape_foldedCorner":"접힌 모서리","PDFE.Controllers.InsTab.txtShape_frame":"프레임","PDFE.Controllers.InsTab.txtShape_halfFrame":"1/2 액자","PDFE.Controllers.InsTab.txtShape_heart":"하트모양","PDFE.Controllers.InsTab.txtShape_heptagon":"칠각형","PDFE.Controllers.InsTab.txtShape_hexagon":"육각형","PDFE.Controllers.InsTab.txtShape_homePlate":"오각형","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"두루마리 모양: 가로로 말림","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"폭발: 8pt","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"폭발: 14pt","PDFE.Controllers.InsTab.txtShape_leftArrow":"왼쪽 화살표","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"왼쪽 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_leftBrace":"왼쪽 중괄호","PDFE.Controllers.InsTab.txtShape_leftBracket":"왼쪽 대괄호","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"좌우 화살표","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"좌우 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"좌우 위쪽 화살표","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"왼쪽 위 화살표","PDFE.Controllers.InsTab.txtShape_lightningBolt":"번개","PDFE.Controllers.InsTab.txtShape_line":"선","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"화살표","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"양쪽 화살표","PDFE.Controllers.InsTab.txtShape_mathDivide":"나눗셈","PDFE.Controllers.InsTab.txtShape_mathEqual":"등호","PDFE.Controllers.InsTab.txtShape_mathMinus":"뺄셈","PDFE.Controllers.InsTab.txtShape_mathMultiply":"곱셈","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"부등호","PDFE.Controllers.InsTab.txtShape_mathPlus":"덧셈","PDFE.Controllers.InsTab.txtShape_moon":"달모양","PDFE.Controllers.InsTab.txtShape_noSmoking":"\"없음\" 기호","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"깃 모양 오른쪽 화살표","PDFE.Controllers.InsTab.txtShape_octagon":"팔각형","PDFE.Controllers.InsTab.txtShape_parallelogram":"평행 사변형","PDFE.Controllers.InsTab.txtShape_pentagon":"오각형","PDFE.Controllers.InsTab.txtShape_pie":"파이형","PDFE.Controllers.InsTab.txtShape_plaque":"서명","PDFE.Controllers.InsTab.txtShape_plus":"덧셈","PDFE.Controllers.InsTab.txtShape_polyline1":"자유형: 자유 곡선","PDFE.Controllers.InsTab.txtShape_polyline2":"자유형: 도형","PDFE.Controllers.InsTab.txtShape_quadArrow":"사방향 화살표","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"사방향 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_rect":"사각형","PDFE.Controllers.InsTab.txtShape_ribbon":"리본: 아래로 기울어짐","PDFE.Controllers.InsTab.txtShape_ribbon2":"리본: 위로 구불어짐","PDFE.Controllers.InsTab.txtShape_rightArrow":"오른쪽 화살표","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"오른쪽 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_rightBrace":"오른쪽 중괄호","PDFE.Controllers.InsTab.txtShape_rightBracket":"오른쪽 대괄호","PDFE.Controllers.InsTab.txtShape_round1Rect":"사각형: 둥근 한쪽 모서리","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"사각형: 둥근 대각선 방향 모서리","PDFE.Controllers.InsTab.txtShape_round2SameRect":"사각형: 둥근 위쪽 모서리","PDFE.Controllers.InsTab.txtShape_roundRect":"사각형: 둥근 모서리","PDFE.Controllers.InsTab.txtShape_rtTriangle":"오른쪽 삼각형","PDFE.Controllers.InsTab.txtShape_smileyFace":"웃는 얼굴","PDFE.Controllers.InsTab.txtShape_snip1Rect":"사각형: 잘린 한쪽 모서리","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"사각형: 잘린 대각선 방향 모서리","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"사각형: 잘린 양쪽 모서리","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"사각형: 한쪽은 둥글고 한쪽은 짤린 모서리","PDFE.Controllers.InsTab.txtShape_spline":"곡선","PDFE.Controllers.InsTab.txtShape_star10":"10각 별","PDFE.Controllers.InsTab.txtShape_star12":"별: 꼭짓점 12개","PDFE.Controllers.InsTab.txtShape_star16":"별: 꼭짓점 16개","PDFE.Controllers.InsTab.txtShape_star24":"별: 꼭짓점 24개","PDFE.Controllers.InsTab.txtShape_star32":"별: 꼭짓점 32개","PDFE.Controllers.InsTab.txtShape_star4":"별: 꼭짓점 4개","PDFE.Controllers.InsTab.txtShape_star5":"별: 꼭짓점 5개","PDFE.Controllers.InsTab.txtShape_star6":"별: 꼭짓점 6개","PDFE.Controllers.InsTab.txtShape_star7":"별: 꼭짓점 7개","PDFE.Controllers.InsTab.txtShape_star8":"별: 꼭짓점 8개","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"줄무늬 오른쪽 화살표","PDFE.Controllers.InsTab.txtShape_sun":"해 모양","PDFE.Controllers.InsTab.txtShape_teardrop":"눈물 방울","PDFE.Controllers.InsTab.txtShape_textRect":"텍스트 상자","PDFE.Controllers.InsTab.txtShape_trapezoid":"사다리꼴","PDFE.Controllers.InsTab.txtShape_triangle":"삼각형","PDFE.Controllers.InsTab.txtShape_upArrow":"위쪽 화살표","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"위쪽 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_upDownArrow":"상하 화살표","PDFE.Controllers.InsTab.txtShape_uturnArrow":"화살표: U자형","PDFE.Controllers.InsTab.txtShape_verticalScroll":"두루마리 모양: 세로로 말림","PDFE.Controllers.InsTab.txtShape_wave":"물결","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"말풍선: 타원형","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"말풍선: 사각형","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"말풍선: 모서리가 둥근 사각형","PDFE.Controllers.InsTab.txtStarsRibbons":"별 & 리본","PDFE.Controllers.InsTab.txtSymbol_about":"대략","PDFE.Controllers.InsTab.txtSymbol_additional":"여집합","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Alpha","PDFE.Controllers.InsTab.txtSymbol_approx":"거의 동일","PDFE.Controllers.InsTab.txtSymbol_ast":"별표 연산자","PDFE.Controllers.InsTab.txtSymbol_beta":"베타","PDFE.Controllers.InsTab.txtSymbol_beth":"벳","PDFE.Controllers.InsTab.txtSymbol_bullet":"글머리 기호 연산자","PDFE.Controllers.InsTab.txtSymbol_cap":"교차점","PDFE.Controllers.InsTab.txtSymbol_cbrt":"큐브 루트","PDFE.Controllers.InsTab.txtSymbol_cdots":"중간 말줄임표","PDFE.Controllers.InsTab.txtSymbol_celsius":"섭씨도","PDFE.Controllers.InsTab.txtSymbol_chi":"카이","PDFE.Controllers.InsTab.txtSymbol_cong":"대략 같음","PDFE.Controllers.InsTab.txtSymbol_cup":"병합","PDFE.Controllers.InsTab.txtSymbol_ddots":"오른쪽 아래 대각선 줄임표","PDFE.Controllers.InsTab.txtSymbol_degree":"도","PDFE.Controllers.InsTab.txtSymbol_delta":"델타","PDFE.Controllers.InsTab.txtSymbol_div":"나누기 기호","PDFE.Controllers.InsTab.txtSymbol_downarrow":"아래쪽 화살표","PDFE.Controllers.InsTab.txtSymbol_emptyset":"빈 세트","PDFE.Controllers.InsTab.txtSymbol_epsilon":"엡실론","PDFE.Controllers.InsTab.txtSymbol_equals":"등호","PDFE.Controllers.InsTab.txtSymbol_equiv":"동일함","PDFE.Controllers.InsTab.txtSymbol_eta":"에타","PDFE.Controllers.InsTab.txtSymbol_exists":"존재함","PDFE.Controllers.InsTab.txtSymbol_factorial":"팩토리얼","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"화씨","PDFE.Controllers.InsTab.txtSymbol_forall":"모두에게","PDFE.Controllers.InsTab.txtSymbol_gamma":"감마","PDFE.Controllers.InsTab.txtSymbol_geq":"크거나 같음","PDFE.Controllers.InsTab.txtSymbol_gg":"훨씬 큼","PDFE.Controllers.InsTab.txtSymbol_greater":"보다 큼","PDFE.Controllers.InsTab.txtSymbol_in":"요소 중","PDFE.Controllers.InsTab.txtSymbol_inc":"증가","PDFE.Controllers.InsTab.txtSymbol_infinity":"무한대","PDFE.Controllers.InsTab.txtSymbol_iota":"요타","PDFE.Controllers.InsTab.txtSymbol_kappa":"카파","PDFE.Controllers.InsTab.txtSymbol_lambda":"람다","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"왼쪽 화살표","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"좌우 화살표","PDFE.Controllers.InsTab.txtSymbol_leq":"보다 작거나 같음","PDFE.Controllers.InsTab.txtSymbol_less":"보다 작음","PDFE.Controllers.InsTab.txtSymbol_ll":"훨씬 적음","PDFE.Controllers.InsTab.txtSymbol_minus":"뺄셈","PDFE.Controllers.InsTab.txtSymbol_mp":"마이너스 플러스","PDFE.Controllers.InsTab.txtSymbol_mu":"Mu","PDFE.Controllers.InsTab.txtSymbol_nabla":"나블라","PDFE.Controllers.InsTab.txtSymbol_neq":"같지 않음","PDFE.Controllers.InsTab.txtSymbol_ni":"구성원으로 포함","PDFE.Controllers.InsTab.txtSymbol_not":"부호 없음","PDFE.Controllers.InsTab.txtSymbol_notexists":"존재하지 않습니다","PDFE.Controllers.InsTab.txtSymbol_nu":"Nu","PDFE.Controllers.InsTab.txtSymbol_o":"오미크론","PDFE.Controllers.InsTab.txtSymbol_omega":"오메가","PDFE.Controllers.InsTab.txtSymbol_partial":"부분 미분","PDFE.Controllers.InsTab.txtSymbol_percent":"백분율","PDFE.Controllers.InsTab.txtSymbol_phi":"파이","PDFE.Controllers.InsTab.txtSymbol_pi":"파이","PDFE.Controllers.InsTab.txtSymbol_plus":"덧셈","PDFE.Controllers.InsTab.txtSymbol_pm":"플러스 마이너스","PDFE.Controllers.InsTab.txtSymbol_propto":"비례","PDFE.Controllers.InsTab.txtSymbol_psi":"프사이","PDFE.Controllers.InsTab.txtSymbol_qdrt":"네 번째 루트","PDFE.Controllers.InsTab.txtSymbol_qed":"증명 종료","PDFE.Controllers.InsTab.txtSymbol_rddots":"오른쪽 위 대각선 줄임표","PDFE.Controllers.InsTab.txtSymbol_rho":"로","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"오른쪽 화살표","PDFE.Controllers.InsTab.txtSymbol_sigma":"시그마","PDFE.Controllers.InsTab.txtSymbol_sqrt":"근호","PDFE.Controllers.InsTab.txtSymbol_tau":"타우","PDFE.Controllers.InsTab.txtSymbol_therefore":"그러므로","PDFE.Controllers.InsTab.txtSymbol_theta":"쎄타","PDFE.Controllers.InsTab.txtSymbol_times":"곱셈 기호","PDFE.Controllers.InsTab.txtSymbol_uparrow":"위쪽 화살표","PDFE.Controllers.InsTab.txtSymbol_upsilon":"업실론","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"변형 엡실론","PDFE.Controllers.InsTab.txtSymbol_varphi":"Phi variant","PDFE.Controllers.InsTab.txtSymbol_varpi":"파이 변형","PDFE.Controllers.InsTab.txtSymbol_varrho":"변형 로","PDFE.Controllers.InsTab.txtSymbol_varsigma":"시그마 변형","PDFE.Controllers.InsTab.txtSymbol_vartheta":"변형 쎄타","PDFE.Controllers.InsTab.txtSymbol_vdots":"수직 줄임표","PDFE.Controllers.InsTab.txtSymbol_xsi":"크시","PDFE.Controllers.InsTab.txtSymbol_zeta":"제타","PDFE.Controllers.LeftMenu.leavePageText":"이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.","PDFE.Controllers.LeftMenu.newDocumentTitle":"이름이 없는 문서","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"경고","PDFE.Controllers.LeftMenu.requestEditRightsText":"편집 권한 요청 중 ...","PDFE.Controllers.LeftMenu.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","PDFE.Controllers.LeftMenu.textSelectPath":"복사본을 저장할 새 이름을 입력하세요","PDFE.Controllers.LeftMenu.txtCompatible":"문서가 새 형식으로 저장됩니다. 모든 편집기 기능을 사용할 수 있지만 문서 레이아웃에 영향을 줄 수 있습니다.
파일을 이전 버전의 MS Word와 호환되도록 하려면 고급 설정에서 \"호환성\" 옵션을 사용하십시오.","PDFE.Controllers.LeftMenu.txtUntitled":"제목없음","PDFE.Controllers.LeftMenu.warnDownloadAs":"이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다.
계속 하시겠습니까?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"{0}(이)가 편집 가능한 형식으로 변환됩니다. 시간이 다소 소요될 수 있습니다. 완성된 문서는 텍스트를 편집할 수 있도록 최적화되므로 특히 원본 파일에 많은 그래픽이 포함된 경우 원본 {0}와/과 완전히 같지 않을 수 있습니다.","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"이 형식으로 계속 저장하면 일부 형식이 손실될 수 있습니다.
계속하시겠습니까?","PDFE.Controllers.Main.applyChangesTextText":"변경로드 중 ...","PDFE.Controllers.Main.applyChangesTitleText":"변경 내용로드 중","PDFE.Controllers.Main.confirmMaxChangesSize":"작업의 크기가 서버에 설정된 제한을 초과합니다.
마지막 작업을 취소하려면 '실행 취소'를 누르고 작업을 로컬로 유지하려면 '계속'을 누르세요 (파일을 다운로드하거나 내용을 복사하여 데이터 손실이 없도록 하십시오).","PDFE.Controllers.Main.convertationTimeoutText":"전환 시간 초과를 초과했습니다.","PDFE.Controllers.Main.criticalErrorExtText":"문서 목록으로 돌아가려면 \"OK\"를 누르십시오.","PDFE.Controllers.Main.criticalErrorExtTextClose":"\"확인\"을 눌러 편집기를 닫으세요.","PDFE.Controllers.Main.criticalErrorTitle":"오류","PDFE.Controllers.Main.downloadErrorText":"다운로드하지 못했습니다.","PDFE.Controllers.Main.downloadMergeText":"다운로드 중 ...","PDFE.Controllers.Main.downloadMergeTitle":"다운로드 중","PDFE.Controllers.Main.downloadTextText":"문서 다운로드 중 ...","PDFE.Controllers.Main.downloadTitleText":"문서 다운로드 중","PDFE.Controllers.Main.errorAccessDeny":"권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.","PDFE.Controllers.Main.errorBadImageUrl":"이미지 URL이 잘못되었습니다.","PDFE.Controllers.Main.errorCannotPasteImg":"이 이미지를 클립보드에서 붙여넣을 수는 없지만 기기에 저장하고,\n거기에서 삽입하거나 텍스트가 없는 이미지를 복사하여 문서에 붙여넣을 수 있습니다.","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"서버 연결이 끊어졌습니다. 지금 문서를 편집 할 수 없습니다.","PDFE.Controllers.Main.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","PDFE.Controllers.Main.errorConnectToServer":"문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하세요.
\"확인\" 버튼을 클릭하면 문서를 다운로드하라는 메시지가 표시됩니다.","PDFE.Controllers.Main.errorCopyDisabled":"보안상의 이유로 이 문서의 내용은 복사할 수 없습니다.","PDFE.Controllers.Main.errorDatabaseConnection":"외부 오류입니다.
데이터베이스 연결에 문제가 발생했습니다. 오류가 계속되면 지원팀에 문의하세요.","PDFE.Controllers.Main.errorDataEncrypted":"암호화 변경 사항이 수신되었으며 해독할 수 없습니다.","PDFE.Controllers.Main.errorDataRange":"잘못된 데이터 범위입니다.","PDFE.Controllers.Main.errorDefaultMessage":"오류 코드: %1","PDFE.Controllers.Main.errorDirectUrl":"문서에 대한 링크를 확인하십시오.
이 링크는 다운로드할 파일에 대한 직접 링크여야 합니다.","PDFE.Controllers.Main.errorEditingDownloadas":"문서를 처리하는 동안 오류가 발생했습니다.
\"다른 이름으로 다운로드\" 옵션을 사용하여 파일의 백업 사본을 컴퓨터의 하드 드라이브에 저장하십시오.","PDFE.Controllers.Main.errorEditingSaveas":"문서를 사용하는 동안 오류가 발생했습니다.
파일의 백업 사본을 컴퓨터의 하드 드라이브에 저장하려면 \"다른 이름으로 저장...\" 옵션을 사용하십시오.","PDFE.Controllers.Main.errorEmailClient":"이메일 클라이언트를 찾을 수 없습니다.","PDFE.Controllers.Main.errorFilePassProtect":"문서가 암호로 보호되어 있습니다.","PDFE.Controllers.Main.errorFileSizeExceed":"이 파일은 이 호스트의 크기 제한을 초과합니다.
자세한 내용은 파일 서비스 호스트의 관리자에게 문의하십시오.","PDFE.Controllers.Main.errorForceSave":"파일 저장중 문제 발생됨. 컴퓨터 하드 드라이브에 파일을 저장하려면 '로 다운로드' 옵션을 사용 또는 나중에 다시 시도하세요.","PDFE.Controllers.Main.errorInconsistentExt":"파일을 여는 중 오류가 발생했습니다.
파일 내용이 파일 확장명과 일치하지 않습니다.","PDFE.Controllers.Main.errorInconsistentExtDocx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 텍스트 문서(예: docx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","PDFE.Controllers.Main.errorInconsistentExtPdf":"파일을 여는 동안 오류가 발생했습니다.
파일의 내용은 pdf/djvu/xps/oxps 형식 중 하나와 일치하지만, 파일의 확장자가 일치하지 않습니다:%1.","PDFE.Controllers.Main.errorInconsistentExtPptx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 프리젠테이션(예: pptx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","PDFE.Controllers.Main.errorInconsistentExtXlsx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용은 스프레드시트(예: xlsx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","PDFE.Controllers.Main.errorKeyEncrypt":"알 수없는 키 설명자","PDFE.Controllers.Main.errorKeyExpire":"키 설명자가 만료되었습니다","PDFE.Controllers.Main.errorLoadingFont":"글꼴 불러오기에 실패하였습니다.
문서 시스템 관리자에게 문의하세요.","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"잘못된 비밀번호.
캡 잠금 버튼이 꺼져 있는지 확인하고 올바른 대문자를 사용해야 합니다.","PDFE.Controllers.Main.errorPDFFormsLocked":"잠긴 양식에 변경이 발생하므로 이 작업을 수행할 수 없습니다.","PDFE.Controllers.Main.errorSaveWatermark":"이 파일에는 다른 도메인에 연결된 워터마크 이미지가 포함되어 있습니다.
PDF에서 워터마크를 표시하려면 문서와 동일한 도메인에서 이미지를 링크하거나, 컴퓨터에서 직접 업로드하세요.","PDFE.Controllers.Main.errorServerVersion":"편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.","PDFE.Controllers.Main.errorSessionAbsolute":"문서 편집 세션이 만료되었습니다. 페이지를 새로 고침하십시오.","PDFE.Controllers.Main.errorSessionIdle":"문서가 오랫동안 편집되지 않았습니다. 페이지를 새로고침 하십시오.","PDFE.Controllers.Main.errorSessionToken":"서버에 대한 연결이 중단되었습니다. 페이지를 새로 고침하십시오.","PDFE.Controllers.Main.errorSetPassword":"비밀번호를 재설정할 수 없습니다.","PDFE.Controllers.Main.errorStockChart":"행 순서가 올바르지 않습니다. 주식 차트를 만들려면 시트에 다음 순서로 데이터를 배치하세요:
개시 가격, 최대 가격, 최소 가격, 마감 가격.","PDFE.Controllers.Main.errorTextFormWrongFormat":"입력한 값이 필드 형식과 일치하지 않습니다.","PDFE.Controllers.Main.errorToken":"문서 보안 토큰이 올바르게 구성되지 않았습니다.
Document Server 관리자에게 문의하십시오.","PDFE.Controllers.Main.errorTokenExpire":"문서 보안 토큰이 만료되었습니다.
Document Server 관리자에게 문의하십시오.","PDFE.Controllers.Main.errorUpdateVersion":"파일 버전이 변경되었습니다. 페이지가 다시 로드됩니다.","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"네트워크 연결이 복원되었습니다. 파일 버전이 변경되었습니다.
계속 작업하기 전에 파일을 다운로드하거나 파일 내용을 복사하여 손실된 항목이 없는지 확인한 다음 이 페이지를 다시 로드해야 합니다.","PDFE.Controllers.Main.errorUserDrop":"파일에 지금 액세스 할 수 없습니다.","PDFE.Controllers.Main.errorUsersExceed":"가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다","PDFE.Controllers.Main.errorViewerDisconnect":"연결이 끊어졌습니다. 문서를 볼 수는,
하지만 연결이 복원 될 때까지 다운로드하거나 인쇄 할 수 없습니다.","PDFE.Controllers.Main.leavePageText":"이 문서에 변경 사항을 저장하지 않았습니다. \"이 페이지에 유지\"를 클릭한 다음 \"저장\"을 클릭하여 저장합니다. 저장하지 않은 모든 변경 사항을 취소하려면 \"이 페이지에서 나가기\"를 클릭하십시오.","PDFE.Controllers.Main.leavePageTextOnClose":"이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.","PDFE.Controllers.Main.loadFontsTextText":"데이터로드 중 ...","PDFE.Controllers.Main.loadFontsTitleText":"데이터로드 중","PDFE.Controllers.Main.loadFontTextText":"데이터로드 중 ...","PDFE.Controllers.Main.loadFontTitleText":"데이터로드 중","PDFE.Controllers.Main.loadImagesTextText":"이미지로드 중 ...","PDFE.Controllers.Main.loadImagesTitleText":"이미지로드 중","PDFE.Controllers.Main.loadImageTextText":"이미지로드 중 ...","PDFE.Controllers.Main.loadImageTitleText":"이미지로드 중","PDFE.Controllers.Main.loadingDocumentTextText":"문서로드 중 ...","PDFE.Controllers.Main.loadingDocumentTitleText":"문서로드 중","PDFE.Controllers.Main.notcriticalErrorTitle":"경고","PDFE.Controllers.Main.openErrorText":"파일을 여는 동안 오류가 발생했습니다.","PDFE.Controllers.Main.openTextText":"문서 열기 중 ...","PDFE.Controllers.Main.openTitleText":"문서 열기","PDFE.Controllers.Main.printTextText":"문서 인쇄 중 ...","PDFE.Controllers.Main.printTitleText":"문서 인쇄 중","PDFE.Controllers.Main.reloadButtonText":"페이지 새로 고침","PDFE.Controllers.Main.requestEditFailedMessageText":"누군가이 문서를 지금 편집하고 있습니다. 나중에 다시 시도하십시오.","PDFE.Controllers.Main.requestEditFailedTitleText":"액세스가 거부되었습니다","PDFE.Controllers.Main.saveErrorText":"파일을 저장하는 동안 오류가 발생했습니다.","PDFE.Controllers.Main.saveErrorTextDesktop":"이 파일을 저장하거나 생성할 수 없습니다.
가능한 이유는 다음과 같습니다.
1. 파일이 읽기 전용입니다.
2. 다른 사용자가 파일을 편집 중입니다.
3. 디스크가 가득 찼거나 손상되었습니다.","PDFE.Controllers.Main.saveTextText":"문서 저장 중 ...","PDFE.Controllers.Main.saveTitleText":"문서 저장 중","PDFE.Controllers.Main.scriptLoadError":"연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.","PDFE.Controllers.Main.splitDividerErrorText":"행 수는 %1 의 제수 여야합니다.","PDFE.Controllers.Main.splitMaxColsErrorText":"열 수가 %1 보다 작아야합니다.","PDFE.Controllers.Main.splitMaxRowsErrorText":"행 수가 %1 보다 적어야합니다.","PDFE.Controllers.Main.textAnonymous":"익명","PDFE.Controllers.Main.textAnyone":"누구나","PDFE.Controllers.Main.textBuyNow":"웹 사이트 방문","PDFE.Controllers.Main.textChangesSaved":"모든 변경 사항이 저장되었습니다","PDFE.Controllers.Main.textClose":"닫기","PDFE.Controllers.Main.textCloseTip":"도움말을 닫으려면 클릭하십시오","PDFE.Controllers.Main.textConnectionLost":"연결을 시도 중입니다. 연결 설정을 확인해 주세요.","PDFE.Controllers.Main.textContactUs":"영업 담당자에게 문의","PDFE.Controllers.Main.textContinue":"계속","PDFE.Controllers.Main.textCustomLoader":"라이센스 조건에 따라 교체할 권한이 없습니다.
견적은 당사 영업부에 문의해 주십시오.","PDFE.Controllers.Main.textDisconnect":"네트워크 연결 끊김","PDFE.Controllers.Main.textGuest":"손님","PDFE.Controllers.Main.textLearnMore":"자세히","PDFE.Controllers.Main.textLoadingDocument":"문서로드 중","PDFE.Controllers.Main.textLongName":"128자 미만의 이름을 입력하세요.","PDFE.Controllers.Main.textNoLicenseTitle":"라이센스 수를 제한했습니다.","PDFE.Controllers.Main.textPaidFeature":"유료기능","PDFE.Controllers.Main.textReconnect":"연결이 복원되었습니다","PDFE.Controllers.Main.textRemember":"모든 파일에 대한 선택 사항을 기억하기","PDFE.Controllers.Main.textRenameError":"사용자 이름은 비워둘 수 없습니다.","PDFE.Controllers.Main.textRenameLabel":"협업에 사용할 이름을 입력합니다","PDFE.Controllers.Main.textShape":"도형","PDFE.Controllers.Main.textStrict":"엄격 모드","PDFE.Controllers.Main.textText":"텍스트","PDFE.Controllers.Main.textTryQuickPrint":"빠른 인쇄를 선택했습니다. 전체 문서가 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.
계속하시겠습니까?","PDFE.Controllers.Main.textTryUndoRedo":"Fast co-editing mode 에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"Strict co-editing mode \"버튼을 클릭하면 엄격한 공동 편집 모드로 전환되어 파일을 편집 할 수 있습니다. 다른 사용자가 방해를해서 저장 한 후에 만 ​​변경 사항을 보내면됩니다. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ","PDFE.Controllers.Main.textTryUndoRedoWarn":"빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.","PDFE.Controllers.Main.textUndo":"실행 취소","PDFE.Controllers.Main.textUpdateVersion":"현재 문서를 편집할 수 없습니다.
파일을 업데이트하는 중이니 잠시만 기다려 주세요...","PDFE.Controllers.Main.textUpdating":"업데이트 중","PDFE.Controllers.Main.tipLicenseExceeded":"라이선스에서 허용된 최대 동시 연결 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","PDFE.Controllers.Main.tipLicenseUsersExceeded":"라이선스에서 허용된 최대 편집 사용자 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","PDFE.Controllers.Main.titleLicenseExp":"라이센스 만료","PDFE.Controllers.Main.titleLicenseNotActive":"라이선스가 활성화되지 않음","PDFE.Controllers.Main.titleReadOnly":"읽기 전용 모드","PDFE.Controllers.Main.titleServerVersion":"편집기가 업데이트되었습니다.","PDFE.Controllers.Main.titleUpdateVersion":"버전이 변경되었습니다.","PDFE.Controllers.Main.txtArt":"여기에 텍스트를 입력하여 주십시오","PDFE.Controllers.Main.txtButton":"버튼","PDFE.Controllers.Main.txtCheckbox":"체크박스","PDFE.Controllers.Main.txtChoose":"아이템 선택","PDFE.Controllers.Main.txtClickToLoad":"이미지를 읽으려면 여기를 클릭하세요","PDFE.Controllers.Main.txtDiagramTitle":"차트 제목","PDFE.Controllers.Main.txtDocUnlockDescription":"문서 보호를 해제하려면 비밀번호를 입력하세요","PDFE.Controllers.Main.txtDropdown":"드롭다운","PDFE.Controllers.Main.txtEditingMode":"편집 모드 설정 ...","PDFE.Controllers.Main.txtEnterDate":"미주 날짜","PDFE.Controllers.Main.txtGroup":"그룹","PDFE.Controllers.Main.txtInvalidGreater":"필드 \"{0}\"의 값이 잘못되었습니다: {1} 이상이어야 합니다.","PDFE.Controllers.Main.txtInvalidGreaterLess":"필드 \"{0}\"의 값이 잘못되었습니다: {1} 이상이어야 하고 {2} 이하이어야 합니다.","PDFE.Controllers.Main.txtInvalidLess":"필드 \"{0}\"의 값이 잘못되었습니다: {1} 이하이어야 합니다.","PDFE.Controllers.Main.txtInvalidPdfFormat":"입력한 값이 필드 \"{0}\"의 형식과 일치하지 않습니다.","PDFE.Controllers.Main.txtInvalidValue":"필드 \"{0}\"의 값이 올바르지 않습니다.","PDFE.Controllers.Main.txtListbox":"목록 상자","PDFE.Controllers.Main.txtNeedSynchronize":"업데이트가 있습니다.","PDFE.Controllers.Main.txtSaveCopyAsComplete":"파일 복사본이 성공적으로 저장되었습니다","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"이 문서가 {0}에 연결을 시도하고 있습니다.
이 사이트를 신뢰하면 \"확인\"을 누르세요.","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"이 문서는 파일 대화 상자를 열려고 합니다. 열려면 \"확인\"을 누르세요.","PDFE.Controllers.Main.txtSeries":"시리즈","PDFE.Controllers.Main.txtSignature":"서명","PDFE.Controllers.Main.txtText":"텍스트","PDFE.Controllers.Main.txtUnlockTitle":"문서 보호 해제","PDFE.Controllers.Main.txtValidPdfFormat":"필드 값은 형식 \"{0}\"과(와) 일치해야 합니다.","PDFE.Controllers.Main.txtXAxis":"X 축","PDFE.Controllers.Main.txtYAxis":"Y 축","PDFE.Controllers.Main.unknownErrorText":"알 수없는 오류.","PDFE.Controllers.Main.unsupportedBrowserErrorText":"사용중인 브라우저가 지원되지 않습니다.","PDFE.Controllers.Main.uploadDocExtMessage":"알 수 없는 파일 형식입니다.","PDFE.Controllers.Main.uploadDocFileCountMessage":"업로드 된 문서가 없습니다.","PDFE.Controllers.Main.uploadDocSizeMessage":"최대 문서 크기 제한을 초과했습니다.","PDFE.Controllers.Main.uploadImageExtMessage":"알 수없는 이미지 형식입니다.","PDFE.Controllers.Main.uploadImageFileCountMessage":"이미지가 업로드되지 않았습니다.","PDFE.Controllers.Main.uploadImageSizeMessage":"이미지 크기 제한을 초과했습니다.","PDFE.Controllers.Main.uploadImageTextText":"이미지 업로드 중 ...","PDFE.Controllers.Main.uploadImageTitleText":"이미지 업로드 중","PDFE.Controllers.Main.waitText":"잠시만 기다려주세요...","PDFE.Controllers.Main.warnBrowserIE9":"응용 프로그램의 기능이 IE9에서 부족합니다. IE10 이상을 사용하십시오.","PDFE.Controllers.Main.warnBrowserZoom":"브라우저의 현재 확대/축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대/축소로 재설정하십시오.","PDFE.Controllers.Main.warnLicenseAnonymous":"익명 사용자에 대한 접근이 거부되었습니다.
이 문서는 보기 전용으로 열립니다.","PDFE.Controllers.Main.warnLicenseBefore":"라이센스가 활성화되지 않았습니다.
관리자에게 문의하세요.","PDFE.Controllers.Main.warnLicenseExp":"귀하의 라이센스가 만료되었습니다.
라이센스를 업데이트하고 페이지를 새로 고침하십시오.","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"라이센스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"라이센스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오","PDFE.Controllers.Main.warnNoLicense":"이 버전의 %1 편집자에게는 문서 서버에 대한 동시 연결에 대한 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상용 소프트웨어를 구입하십시오.","PDFE.Controllers.Main.warnNoLicenseUsers":"편집자 사용자 한도인 %1명에 도달했습니다. 개인 업그레이드 조건은 %1 영업 팀에 문의하십시오.","PDFE.Controllers.Main.warnProcessRightsChange":"파일 편집 권한이 거부되었습니다.","PDFE.Controllers.Navigation.txtBeginning":"문서의 시작","PDFE.Controllers.Navigation.txtGotoBeginning":"문서의 처음으로 이동","PDFE.Controllers.Print.textMarginsLast":"마지막 사용자 정의","PDFE.Controllers.Print.txtCustom":"사용자 정의","PDFE.Controllers.Print.txtPrintRangeInvalid":"잘못된 인쇄 범위","PDFE.Controllers.RedactTab.applyButtonText":"적용","PDFE.Controllers.RedactTab.doNotApplyButtonText":"적용 안 함","PDFE.Controllers.RedactTab.textApplyRedact":"비공개 처리된 정보는 이 문서에서 영구적으로 삭제됩니다. 저장하면 정보를 더 이상 복구할 수 없습니다","PDFE.Controllers.RedactTab.textEnterPageRange":"편집할 페이지 범위를 입력","PDFE.Controllers.RedactTab.textEnterRangeDescription":"예: 1, 2, 8–11","PDFE.Controllers.RedactTab.textRedactPages":"페이지 비공개 처리","PDFE.Controllers.RedactTab.textUnappliedRedactions":"이 문서에는 아직 적용되지 않은 비공개 처리 표시가 포함되어 있습니다.

\"비공개 적용\"을 선택할 때까지 이 표시를 제거할 수 있으며 정보도 복구될 수 있습니다","PDFE.Controllers.RedactTab.tipApplyRedaction":"모든 편집을 적용하고 저장하세요. 저장하지 않은 편집은 적용되지 않을 수 있습니다.","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"편집 적용","PDFE.Controllers.RedactTab.tipMarkForRedaction":"이 도구를 사용하여 PDF의 민감한 내용을 표시, 검색 및 비공개 처리합니다","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"비공개 처리 대상으로 지정","PDFE.Controllers.RedactTab.txtInvalidFormat":"형식이 잘못되었습니다. 단일 숫자 또는 2-6과 같은 대시(-)로 구분된 범위를 사용하세요.","PDFE.Controllers.RedactTab.txtInvalidRange":"페이지 값은 1에서 {0} 사이여야 합니다","PDFE.Controllers.RedactTab.txtReversedRange":"시작 페이지는 종료 페이지보다 크지 않아야 합니다","PDFE.Controllers.Search.notcriticalErrorTitle":"경고","PDFE.Controllers.Search.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","PDFE.Controllers.Search.textReplaceSkipped":"대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.","PDFE.Controllers.Search.textReplaceSuccess":"검색이 완료되었습니다. {0}번의 항목이 대체되었습니다.","PDFE.Controllers.Search.warnReplaceString":"{0}은 대체할 문자 상자에 유효한 특수 문자가 아닙니다.","PDFE.Controllers.Statusbar.textDisconnect":"연결이 끊어졌습니다
연결을 시도하는 중입니다.","PDFE.Controllers.Statusbar.zoomText":"확대/축소 {0} %","PDFE.Controllers.Toolbar.confirmAddFontName":"저장하려는 글꼴이 현재 기기에서는 사용할 수 없습니다.
텍스트 스타일은 기기 기본 글꼴 중 하나로 표시되며, 저장한 글꼴은 사용 가능할 때 적용됩니다.
계속하시겠습니까?","PDFE.Controllers.Toolbar.errorAccessDeny":"권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.","PDFE.Controllers.Toolbar.helpAnnotRect":"새로운 주석 도구(사각형, 원, 화살표, 연결선)를 확인하세요.","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"새 주석","PDFE.Controllers.Toolbar.helpPdfCharts":"PDF 문서에서 차트와 SmartArt를 직접 삽입·편집할 수 있습니다.","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"PDF의 차트 및 스마트아트","PDFE.Controllers.Toolbar.helpRedactTab":"비공개 처리 기능을 사용하여 민감한 정보를 안전하게 삭제하고 기밀 내용을 보호합니다","PDFE.Controllers.Toolbar.helpRedactTabHeader":"PDF에서 비공개 처리","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"경고","PDFE.Controllers.Toolbar.textFontSizeErr":"입력한 값이 올바르지 않습니다.
1에서 300 사이의 숫자를 입력해 주세요.","PDFE.Controllers.Toolbar.textGotIt":"확인","PDFE.Controllers.Toolbar.textRequired":"양식을 보내려면 모든 필수 필드를 채우십시오.","PDFE.Controllers.Toolbar.textSubmited":"양식이 성공적으로 제출되었습니다
팁을 닫으려면 클릭하세요.","PDFE.Controllers.Toolbar.textTabForms":"폼","PDFE.Controllers.Toolbar.textWarning":"경고","PDFE.Controllers.Toolbar.txtDownload":"다운로드","PDFE.Controllers.Toolbar.txtNeedCommentMode":"파일에 변경 사항을 저장하려면 코멘트 모드로 전환하세요. 또는 수정된 파일의 사본을 다운로드할 수 있습니다.","PDFE.Controllers.Toolbar.txtNeedDownload":"현재 PDF 뷰어는 새로운 변경 사항을 별도의 파일 복사본으로만 저장할 수 있습니다. 공동 편집을 지원하지 않으며, 다른 사용자는 새 파일 버전을 공유하지 않는 한 여러분의 변경 사항을 볼 수 없습니다.","PDFE.Controllers.Toolbar.txtSaveCopy":"사본 저장","PDFE.Controllers.Toolbar.txtUntitled":"제목 없음","PDFE.Controllers.Viewport.textFitPage":"페이지에 맞춤","PDFE.Controllers.Viewport.textFitWidth":"너비에 맞춤","PDFE.Controllers.Viewport.txtDarkMode":"다크 모드","PDFE.Views.ChartSettings.text3dDepth":"깊이(%)","PDFE.Views.ChartSettings.text3dHeight":"높이(%)","PDFE.Views.ChartSettings.text3dRotation":"3D 회전","PDFE.Views.ChartSettings.textAdvanced":"고급 설정 표시","PDFE.Views.ChartSettings.textAutoscale":"자동 크기 조정","PDFE.Views.ChartSettings.textChartType":"차트 유형 변경","PDFE.Views.ChartSettings.textData":"데이터","PDFE.Views.ChartSettings.textDefault":"기본 로테이션","PDFE.Views.ChartSettings.textDown":"아래로","PDFE.Views.ChartSettings.textEditData":"데이터 편집","PDFE.Views.ChartSettings.textEditLinks":"연결 편집","PDFE.Views.ChartSettings.textHeight":"높이","PDFE.Views.ChartSettings.textKeepRatio":"비율 고정","PDFE.Views.ChartSettings.textLeft":"왼쪽","PDFE.Views.ChartSettings.textLinkedData":"연결된 데이터","PDFE.Views.ChartSettings.textNarrow":"좁은 시야각","PDFE.Views.ChartSettings.textPerspective":"관점","PDFE.Views.ChartSettings.textRight":"오른쪽","PDFE.Views.ChartSettings.textRightAngle":"직각 축","PDFE.Views.ChartSettings.textSelectData":"데이터 선택","PDFE.Views.ChartSettings.textSize":"크기","PDFE.Views.ChartSettings.textStyle":"스타일","PDFE.Views.ChartSettings.textUp":"위","PDFE.Views.ChartSettings.textUpdateData":"데이터 업데이트","PDFE.Views.ChartSettings.textWiden":"시야 확장","PDFE.Views.ChartSettings.textWidth":"너비","PDFE.Views.ChartSettings.textX":"X 회전","PDFE.Views.ChartSettings.textY":"Y 회전","PDFE.Views.ChartSettingsAdvanced.textAlt":"대체 텍스트","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"세부 설명","PDFE.Views.ChartSettingsAdvanced.textAltTip":"시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"제목","PDFE.Views.ChartSettingsAdvanced.textAuto":"자동","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"교차축","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"축 위치","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"제목","PDFE.Views.ChartSettingsAdvanced.textBase":"기준","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"눈금 사이","PDFE.Views.ChartSettingsAdvanced.textBillions":"10 억","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"카테고리 이름","PDFE.Views.ChartSettingsAdvanced.textCenter":"중앙","PDFE.Views.ChartSettingsAdvanced.textChartName":"차트 이름","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"차트 제목","PDFE.Views.ChartSettingsAdvanced.textCross":"교차","PDFE.Views.ChartSettingsAdvanced.textCustom":"사용자 정의","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"데이터 레이블","PDFE.Views.ChartSettingsAdvanced.textFit":"너비에 맞추기","PDFE.Views.ChartSettingsAdvanced.textFixed":"고정","PDFE.Views.ChartSettingsAdvanced.textFormat":"레이블 서식","PDFE.Views.ChartSettingsAdvanced.textFrom":"보낸 사람","PDFE.Views.ChartSettingsAdvanced.textGeneral":"일반","PDFE.Views.ChartSettingsAdvanced.textGridLines":"눈금선","PDFE.Views.ChartSettingsAdvanced.textHeight":"높이","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"축 감추기","PDFE.Views.ChartSettingsAdvanced.textHigh":"위쪽","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"가로 축","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"수평 보조축","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"수평","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"백 단위","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PDFE.Views.ChartSettingsAdvanced.textIn":"안쪽","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"안쪽 아래","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"안쪽 위","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"비율 고정","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"축 레이블 간격","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"레이블 간격","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"레이블 옵션","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"레이블 위치","PDFE.Views.ChartSettingsAdvanced.textLayout":"레이아웃","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"왼쪽 오버레이","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"하단","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"왼쪽","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"범례","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"오른쪽","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"상위","PDFE.Views.ChartSettingsAdvanced.textLines":"선","PDFE.Views.ChartSettingsAdvanced.textLogScale":"로그 눈금","PDFE.Views.ChartSettingsAdvanced.textLow":"낮음","PDFE.Views.ChartSettingsAdvanced.textMajor":"메이저","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"메이저 및 마이너","PDFE.Views.ChartSettingsAdvanced.textMajorType":"주요 유형","PDFE.Views.ChartSettingsAdvanced.textManual":"수동","PDFE.Views.ChartSettingsAdvanced.textMarkers":"표시 기호","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"눈금 간격","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"최대값","PDFE.Views.ChartSettingsAdvanced.textMillions":"백만 단위","PDFE.Views.ChartSettingsAdvanced.textMinor":"마이너","PDFE.Views.ChartSettingsAdvanced.textMinorType":"보조 유형","PDFE.Views.ChartSettingsAdvanced.textMinValue":"최소값","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"다음 축","PDFE.Views.ChartSettingsAdvanced.textNone":"없음","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"오버레이 없음","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"눈금 표시","PDFE.Views.ChartSettingsAdvanced.textOut":"바깥쪽","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"바깥쪽 위","PDFE.Views.ChartSettingsAdvanced.textOverlay":"오버레이","PDFE.Views.ChartSettingsAdvanced.textPlacement":"배치","PDFE.Views.ChartSettingsAdvanced.textPosition":"위치","PDFE.Views.ChartSettingsAdvanced.textReverse":"값 역순으로","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"오른쪽 오버레이","PDFE.Views.ChartSettingsAdvanced.textRotated":"회전","PDFE.Views.ChartSettingsAdvanced.textSeparator":"데이터 레이블 구분 기호","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"계열 이름","PDFE.Views.ChartSettingsAdvanced.textSize":"크기","PDFE.Views.ChartSettingsAdvanced.textSmooth":"부드럽게","PDFE.Views.ChartSettingsAdvanced.textStraight":"직선","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PDFE.Views.ChartSettingsAdvanced.textThousands":"수천","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"눈금 옵션","PDFE.Views.ChartSettingsAdvanced.textTitle":"차트 - 고급 설정","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"왼쪽 상단 모서리","PDFE.Views.ChartSettingsAdvanced.textTrillions":"수조","PDFE.Views.ChartSettingsAdvanced.textUnits":"표시 단위","PDFE.Views.ChartSettingsAdvanced.textValue":"값","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"세로 축","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"수직 보조축","PDFE.Views.ChartSettingsAdvanced.textVertical":"세로","PDFE.Views.ChartSettingsAdvanced.textWidth":"너비","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"왼쪽 오버레이","PDFE.Views.DocumentHolder.aboveText":"위","PDFE.Views.DocumentHolder.addCommentText":"코멘트 추가","PDFE.Views.DocumentHolder.advancedChartText":"차트 고급 설정","PDFE.Views.DocumentHolder.advancedEquationText":"방정식 설정","PDFE.Views.DocumentHolder.advancedImageText":"이미지 고급 설정","PDFE.Views.DocumentHolder.advancedParagraphText":"단락 고급 설정","PDFE.Views.DocumentHolder.advancedShapeText":"모양 고급 설정","PDFE.Views.DocumentHolder.advancedTableText":"표 고급 설정","PDFE.Views.DocumentHolder.AlignBottom":"하단","PDFE.Views.DocumentHolder.AlignCenter":"가운데","PDFE.Views.DocumentHolder.AlignJust":"양쪽 맞춤","PDFE.Views.DocumentHolder.AlignLeft":"왼쪽","PDFE.Views.DocumentHolder.alignmentText":"정렬","PDFE.Views.DocumentHolder.AlignMiddle":"가운데","PDFE.Views.DocumentHolder.AlignRight":"오른쪽","PDFE.Views.DocumentHolder.AlignText":"정렬","PDFE.Views.DocumentHolder.AlignTop":"맨 위","PDFE.Views.DocumentHolder.allLinearText":"모두 - 선형","PDFE.Views.DocumentHolder.allProfText":"전체 - 프로페셔널","PDFE.Views.DocumentHolder.belowText":"아래","PDFE.Views.DocumentHolder.btnChart":"제목, 범례, 눈금선, 데이터 레이블 같은 차트 요소 추가, 제거 또는 변경","PDFE.Views.DocumentHolder.cellAlignText":"셀 수직 정렬","PDFE.Views.DocumentHolder.cellText":"셀","PDFE.Views.DocumentHolder.centerText":"가운데","PDFE.Views.DocumentHolder.columnText":"열","PDFE.Views.DocumentHolder.confirmAddFontName":"저장하려는 글꼴이 현재 기기에서 사용할 수 없습니다.
텍스트 스타일은 기기 기본 글꼴 중 하나로 표시되며, 저장한 글꼴은 사용 가능할 때 적용됩니다.
계속하시겠습니까?","PDFE.Views.DocumentHolder.currLinearText":"현재 - 선형","PDFE.Views.DocumentHolder.currProfText":"현재 - 전문가","PDFE.Views.DocumentHolder.deleteColumnText":"열 삭제","PDFE.Views.DocumentHolder.deleteRowText":"행 삭제","PDFE.Views.DocumentHolder.deleteTableText":"테이블 삭제","PDFE.Views.DocumentHolder.deleteText":"삭제","PDFE.Views.DocumentHolder.DepthAxis":"Z 축","PDFE.Views.DocumentHolder.direct270Text":"텍스트 위로 회전","PDFE.Views.DocumentHolder.direct90Text":"텍스트 아래로 회전","PDFE.Views.DocumentHolder.directHText":"수평","PDFE.Views.DocumentHolder.directionText":"텍스트 방향","PDFE.Views.DocumentHolder.editChartText":"데이터 편집","PDFE.Views.DocumentHolder.editHyperlinkText":"링크 편집","PDFE.Views.DocumentHolder.guestText":"게스트","PDFE.Views.DocumentHolder.hideEqToolbar":"수식 도구 모음 숨기기","PDFE.Views.DocumentHolder.hyperlinkText":"하이퍼링크","PDFE.Views.DocumentHolder.insertColumnLeftText":"왼쪽 열","PDFE.Views.DocumentHolder.insertColumnRightText":"오른쪽 열","PDFE.Views.DocumentHolder.insertColumnText":"열 삽입","PDFE.Views.DocumentHolder.insertRowAboveText":"위의 행","PDFE.Views.DocumentHolder.insertRowBelowText":"아래 행","PDFE.Views.DocumentHolder.insertRowText":"행 삽입","PDFE.Views.DocumentHolder.insertText":"삽입","PDFE.Views.DocumentHolder.latexText":"라텍","PDFE.Views.DocumentHolder.leftText":"왼쪽","PDFE.Views.DocumentHolder.mergeCellsText":"셀 병합","PDFE.Views.DocumentHolder.mniImageFromFile":"파일에서 이미지 삽입","PDFE.Views.DocumentHolder.mniImageFromStorage":"저장소에서 이미지 삽입","PDFE.Views.DocumentHolder.mniImageFromUrl":"URL에서 이미지 삽입","PDFE.Views.DocumentHolder.originalSizeText":"실제 크기","PDFE.Views.DocumentHolder.removeCommentText":"삭제","PDFE.Views.DocumentHolder.removeHyperlinkText":"하이퍼링크 제거","PDFE.Views.DocumentHolder.rightText":"오른쪽","PDFE.Views.DocumentHolder.rowText":"행","PDFE.Views.DocumentHolder.selectText":"선택","PDFE.Views.DocumentHolder.showEqToolbar":"수식 도구 모음 표시","PDFE.Views.DocumentHolder.splitCellsText":"셀 분할 ...","PDFE.Views.DocumentHolder.splitCellTitleText":"셀 분할","PDFE.Views.DocumentHolder.tableText":"테이블","PDFE.Views.DocumentHolder.textArrangeBack":"맨 뒤로 보내기","PDFE.Views.DocumentHolder.textArrangeBackward":"뒤로 이동","PDFE.Views.DocumentHolder.textArrangeForward":"앞으로 보내기","PDFE.Views.DocumentHolder.textArrangeFront":"맨 앞으로 가져오기","PDFE.Views.DocumentHolder.textAxes":"축","PDFE.Views.DocumentHolder.textAxisTitles":"축 제목","PDFE.Views.DocumentHolder.textBottom":"하단","PDFE.Views.DocumentHolder.textCenter":"중앙","PDFE.Views.DocumentHolder.textChartTitle":"차트 제목","PDFE.Views.DocumentHolder.textClearField":"필드를 초기화","PDFE.Views.DocumentHolder.textCm":"cm","PDFE.Views.DocumentHolder.textColor":"색상","PDFE.Views.DocumentHolder.textCopy":"복사","PDFE.Views.DocumentHolder.textCrop":"자르기","PDFE.Views.DocumentHolder.textCropFill":"채우기","PDFE.Views.DocumentHolder.textCropFit":"맞춤","PDFE.Views.DocumentHolder.textCustom":"사용자 지정","PDFE.Views.DocumentHolder.textCut":"잘라 내기","PDFE.Views.DocumentHolder.textDataLabels":"데이터 레이블","PDFE.Views.DocumentHolder.textDistributeCols":"열 균등 분할","PDFE.Views.DocumentHolder.textDistributeRows":"행 배포","PDFE.Views.DocumentHolder.textEditPoints":"점 편집","PDFE.Views.DocumentHolder.textErrorBars":"오류 막대","PDFE.Views.DocumentHolder.textExponential":"지수","PDFE.Views.DocumentHolder.textFit":"너비에 맞춤","PDFE.Views.DocumentHolder.textFlipH":"좌우대칭","PDFE.Views.DocumentHolder.textFlipV":"상하대칭","PDFE.Views.DocumentHolder.textFontSizeErr":"입력한 값이 올바르지 않습니다.
1에서 300 사이의 숫자를 입력해 주세요.","PDFE.Views.DocumentHolder.textFromFile":"파일에서","PDFE.Views.DocumentHolder.textFromStorage":"저장소에서","PDFE.Views.DocumentHolder.textFromUrl":"URL로부터","PDFE.Views.DocumentHolder.textGridLines":"눈금선","PDFE.Views.DocumentHolder.textHorAxis":"가로 축","PDFE.Views.DocumentHolder.textHorAxisSec":"수평 보조축","PDFE.Views.DocumentHolder.textHorizontalMajor":"가로 주 눈금","PDFE.Views.DocumentHolder.textHorizontalMinor":"가로 부 눈금","PDFE.Views.DocumentHolder.textInnerBottom":"안쪽 아래","PDFE.Views.DocumentHolder.textInnerTop":"안쪽 위","PDFE.Views.DocumentHolder.textLeft":"왼쪽","PDFE.Views.DocumentHolder.textLeftData":"왼쪽","PDFE.Views.DocumentHolder.textLeftOverlay":"왼쪽 오버레이","PDFE.Views.DocumentHolder.textLegendPos":"범례","PDFE.Views.DocumentHolder.textLinear":"선형","PDFE.Views.DocumentHolder.textLinearForecast":"선형 예측","PDFE.Views.DocumentHolder.textLines":"선","PDFE.Views.DocumentHolder.textMovingAverage":"이동 평균(2)","PDFE.Views.DocumentHolder.textNone":"없음","PDFE.Views.DocumentHolder.textNoOverlay":"오버레이 없음","PDFE.Views.DocumentHolder.textOuterTop":"바깥쪽 위","PDFE.Views.DocumentHolder.textOverlay":"오버레이","PDFE.Views.DocumentHolder.textPaste":"붙여 넣기","PDFE.Views.DocumentHolder.textRecognize":"텍스트 편집","PDFE.Views.DocumentHolder.textRedact":"텍스트 검열","PDFE.Views.DocumentHolder.textRedo":"다시 실행","PDFE.Views.DocumentHolder.textReplace":"이미지 바꾸기","PDFE.Views.DocumentHolder.textResetCrop":"자르기 초기화","PDFE.Views.DocumentHolder.textRight":"오른쪽","PDFE.Views.DocumentHolder.textRightOverlay":"오른쪽 오버레이","PDFE.Views.DocumentHolder.textRotate":"회전","PDFE.Views.DocumentHolder.textRotate270":"반시계 방향으로 90도 회전","PDFE.Views.DocumentHolder.textRotate90":"오른쪽으로 90도 회전","PDFE.Views.DocumentHolder.textSaveAsPicture":"그림으로 저장","PDFE.Views.DocumentHolder.textShapeAlignBottom":"아래쪽 정렬","PDFE.Views.DocumentHolder.textShapeAlignCenter":"센터 정렬","PDFE.Views.DocumentHolder.textShapeAlignLeft":"왼쪽 정렬","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"중간 정렬","PDFE.Views.DocumentHolder.textShapeAlignRight":"오른쪽 정렬","PDFE.Views.DocumentHolder.textShapeAlignTop":"상단 정렬","PDFE.Views.DocumentHolder.textShapesMerge":"도형 병합","PDFE.Views.DocumentHolder.textShowLegendKeys":"범례 항목 표시","PDFE.Views.DocumentHolder.textShowUpDown":"상승/하락 막대 표시","PDFE.Views.DocumentHolder.textStandardDeviation":"표준편차","PDFE.Views.DocumentHolder.textStandardError":"표준오차","PDFE.Views.DocumentHolder.textTop":"상위","PDFE.Views.DocumentHolder.textTrendline":"추세선","PDFE.Views.DocumentHolder.textUndo":"실행 취소","PDFE.Views.DocumentHolder.textUpDownBars":"위/아래 막대","PDFE.Views.DocumentHolder.textVertAxis":"세로 축","PDFE.Views.DocumentHolder.textVertAxisSec":"수직 보조축","PDFE.Views.DocumentHolder.textVerticalMajor":"세로 주 눈금","PDFE.Views.DocumentHolder.textVerticalMinor":"세로 부 눈금","PDFE.Views.DocumentHolder.tipIsLocked":"이 요소는 현재 다른 사용자가 편집 중입니다.","PDFE.Views.DocumentHolder.tipRecognize":"텍스트 편집","PDFE.Views.DocumentHolder.tipRedact":"텍스트 검열","PDFE.Views.DocumentHolder.txtAddBottom":"아래쪽 테두리 추가","PDFE.Views.DocumentHolder.txtAddFractionBar":"분수 막대 추가","PDFE.Views.DocumentHolder.txtAddHor":"가로선 추가","PDFE.Views.DocumentHolder.txtAddLB":"왼쪽 하단 추가","PDFE.Views.DocumentHolder.txtAddLeft":"왼쪽 테두리 추가","PDFE.Views.DocumentHolder.txtAddLT":"왼쪽 상단 줄 추가","PDFE.Views.DocumentHolder.txtAddRight":"오른쪽 테두리 추가","PDFE.Views.DocumentHolder.txtAddTop":"위쪽 테두리 추가","PDFE.Views.DocumentHolder.txtAddVer":"세로선 추가","PDFE.Views.DocumentHolder.txtAlign":"정렬","PDFE.Views.DocumentHolder.txtAlignToChar":"문자에 정렬","PDFE.Views.DocumentHolder.txtArrange":"정렬","PDFE.Views.DocumentHolder.txtBackground":"배경","PDFE.Views.DocumentHolder.txtBorderProps":"테두리 속성","PDFE.Views.DocumentHolder.txtBottom":"바닥","PDFE.Views.DocumentHolder.txtColumnAlign":"열 정렬","PDFE.Views.DocumentHolder.txtCopyPage":"페이지 복사","PDFE.Views.DocumentHolder.txtCutPage":"페이지 잘라내기","PDFE.Views.DocumentHolder.txtDecreaseArg":"인수 크기 감소","PDFE.Views.DocumentHolder.txtDeleteArg":"인수 삭제","PDFE.Views.DocumentHolder.txtDeleteBreak":"나누기 삭제","PDFE.Views.DocumentHolder.txtDeleteChars":"포함 문자 삭제","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"포함 문자 및 구분자 삭제","PDFE.Views.DocumentHolder.txtDeleteEq":"수식 삭제","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"문자 삭제","PDFE.Views.DocumentHolder.txtDeletePage":"페이지를 삭제","PDFE.Views.DocumentHolder.txtDeleteRadical":"근호 삭제","PDFE.Views.DocumentHolder.txtDistribHor":"가로 방향 분포","PDFE.Views.DocumentHolder.txtDistribVert":"수직 분포","PDFE.Views.DocumentHolder.txtEmpty":"(없음)","PDFE.Views.DocumentHolder.txtFractionLinear":"선형 분수로 변경","PDFE.Views.DocumentHolder.txtFractionSkewed":"기울어진 분수로 변경","PDFE.Views.DocumentHolder.txtFractionStacked":"누적 분율로 변경","PDFE.Views.DocumentHolder.txtGroup":"그룹","PDFE.Views.DocumentHolder.txtGroupCharOver":"텍스트를 덮은 문자","PDFE.Views.DocumentHolder.txtGroupCharUnder":"문자 아래의 텍스트","PDFE.Views.DocumentHolder.txtHideBottom":"아래쪽 테두리 숨기기","PDFE.Views.DocumentHolder.txtHideBottomLimit":"하단 제한 숨기기","PDFE.Views.DocumentHolder.txtHideCloseBracket":"닫는 대괄호 숨기기","PDFE.Views.DocumentHolder.txtHideDegree":"차수 숨기기","PDFE.Views.DocumentHolder.txtHideHor":"가로선 숨기기","PDFE.Views.DocumentHolder.txtHideLB":"왼쪽 하단 줄 숨기기","PDFE.Views.DocumentHolder.txtHideLeft":"왼쪽 테두리 숨기기","PDFE.Views.DocumentHolder.txtHideLT":"왼쪽 상단 줄 숨기기","PDFE.Views.DocumentHolder.txtHideOpenBracket":"여는 대괄호 숨기기","PDFE.Views.DocumentHolder.txtHidePlaceholder":"자리 표시 자 숨기기","PDFE.Views.DocumentHolder.txtHideRight":"오른쪽 테두리 숨기기","PDFE.Views.DocumentHolder.txtHideTop":"위쪽 테두리 숨기기","PDFE.Views.DocumentHolder.txtHideTopLimit":"상한값 숨기기","PDFE.Views.DocumentHolder.txtHideVer":"수직선 숨기기","PDFE.Views.DocumentHolder.txtIncreaseArg":"인수 크기 늘리기","PDFE.Views.DocumentHolder.txtInsertArgAfter":"뒤에 인수를 삽입하십시오.","PDFE.Views.DocumentHolder.txtInsertArgBefore":"앞에 인수를 삽입하십시오","PDFE.Views.DocumentHolder.txtInsertBreak":"나누기 삽입","PDFE.Views.DocumentHolder.txtInsertEqAfter":"뒤에 수식을 삽입하십시오.","PDFE.Views.DocumentHolder.txtInsertEqBefore":"이전에 수식 삽입","PDFE.Views.DocumentHolder.txtLimitChange":"제한 위치 변경","PDFE.Views.DocumentHolder.txtLimitOver":"텍스트 제한","PDFE.Views.DocumentHolder.txtLimitUnder":"텍스트에서 제한","PDFE.Views.DocumentHolder.txtMatchBrackets":"괄호 높이를 인수 높이에 맞춤","PDFE.Views.DocumentHolder.txtMatrixAlign":"매트릭스 정렬","PDFE.Views.DocumentHolder.txtNewPageAfter":"다음에 빈 페이지 삽입","PDFE.Views.DocumentHolder.txtNewPageBefore":"이전에 빈 페이지 삽입","PDFE.Views.DocumentHolder.txtOpacity":"불투명도","PDFE.Views.DocumentHolder.txtOverbar":"텍스트 위에 바","PDFE.Views.DocumentHolder.txtPastePage":"페이지 붙여넣기","PDFE.Views.DocumentHolder.txtPastePageAfter":"다음에 페이지 붙여넣기","PDFE.Views.DocumentHolder.txtPastePageBefore":"이전에 페이지 붙여넣기","PDFE.Views.DocumentHolder.txtPercentage":"백분율","PDFE.Views.DocumentHolder.txtPressLink":"{0} 키를 누르고 링크를 클릭합니다.","PDFE.Views.DocumentHolder.txtPrintSelection":"선택 항목 인쇄","PDFE.Views.DocumentHolder.txtRemFractionBar":"분수 막대 제거","PDFE.Views.DocumentHolder.txtRemLimit":"제한 제거","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"액센트 문자 제거","PDFE.Views.DocumentHolder.txtRemoveBar":"막대 제거","PDFE.Views.DocumentHolder.txtRemScripts":"스크립트 제거","PDFE.Views.DocumentHolder.txtRemSubscript":"아래 첨자 제거","PDFE.Views.DocumentHolder.txtRemSuperscript":"위 첨자 제거","PDFE.Views.DocumentHolder.txtRotateLeft":"왼쪽으로 회전","PDFE.Views.DocumentHolder.txtRotateRight":"오른쪽으로 회전","PDFE.Views.DocumentHolder.txtScriptsAfter":"텍스트 뒤의 스크립트","PDFE.Views.DocumentHolder.txtScriptsBefore":"텍스트 앞의 스크립트","PDFE.Views.DocumentHolder.txtSelectAll":"모두 선택","PDFE.Views.DocumentHolder.txtShowBottomLimit":"아래쪽 한계 표시","PDFE.Views.DocumentHolder.txtShowCloseBracket":"닫는 괄호 표시","PDFE.Views.DocumentHolder.txtShowDegree":"학위 표시","PDFE.Views.DocumentHolder.txtShowOpenBracket":"여는 대괄호 표시","PDFE.Views.DocumentHolder.txtShowPlaceholder":"자리 표시자 표시","PDFE.Views.DocumentHolder.txtShowTopLimit":"상한 표시","PDFE.Views.DocumentHolder.txtStretchBrackets":"스트레치 괄호","PDFE.Views.DocumentHolder.txtTop":"맨 위","PDFE.Views.DocumentHolder.txtUnderbar":"텍스트 아래에 바","PDFE.Views.DocumentHolder.txtUngroup":"그룹 해제","PDFE.Views.DocumentHolder.txtWarnUrl":"이 링크를 클릭하면 기기와 데이터에 해로울 수 있습니다. 컴퓨터를 보호하려면 신뢰할 수 있는 출처의 링크만 클릭하세요. 이 위치는 안전하지 않을 수 있습니다.

{0}

계속하시겠습니까?","PDFE.Views.DocumentHolder.unicodeText":"유니코드","PDFE.Views.DocumentHolder.vertAlignText":"세로 맞춤","PDFE.Views.FileMenu.ariaFileMenu":"파일 메뉴","PDFE.Views.FileMenu.btnBackCaption":"파일 위치 열기","PDFE.Views.FileMenu.btnCloseEditor":"파일 닫기","PDFE.Views.FileMenu.btnCloseMenuCaption":"뒤로","PDFE.Views.FileMenu.btnCreateNewCaption":"새로 만들기","PDFE.Views.FileMenu.btnDownloadCaption":"다른 이름으로 다운로드","PDFE.Views.FileMenu.btnExitCaption":"닫기","PDFE.Views.FileMenu.btnFileOpenCaption":"열기","PDFE.Views.FileMenu.btnHelpCaption":"도움말","PDFE.Views.FileMenu.btnInfoCaption":"문서 정보","PDFE.Views.FileMenu.btnPrintCaption":"인쇄","PDFE.Views.FileMenu.btnProtectCaption":"보호","PDFE.Views.FileMenu.btnRecentFilesCaption":"최근 열기","PDFE.Views.FileMenu.btnRenameCaption":"이름 바꾸기","PDFE.Views.FileMenu.btnReturnCaption":"문서로 돌아 가기","PDFE.Views.FileMenu.btnRightsCaption":"액세스 권한","PDFE.Views.FileMenu.btnSaveAsCaption":"다른 이름으로 저장","PDFE.Views.FileMenu.btnSaveCaption":"저장","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"다른 이름으로 저장","PDFE.Views.FileMenu.btnSettingsCaption":"고급 설정","PDFE.Views.FileMenu.btnSuggestCaption":"기능 제안","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"모바일 보기로 전환","PDFE.Views.FileMenu.btnToEditCaption":"문서 편집","PDFE.Views.FileMenu.textDownload":"다운로드","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"빈문서","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"새로 만들기","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"적용","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"작성자추가","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"텍스트추가","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"어플리케이션","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"작성자","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"액세스 권한 변경","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"코멘트","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"일반","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"생성되었습니다","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"문서 정보","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"패스트 웹 뷰","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"로드 중 ...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"최종 편집자","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"최종 편집","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"아니오","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"소유자","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"페이지","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"페이지 크기","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"단락","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF 제작자","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"태그드 PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF 버전","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"위치","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"권한이있는 사람","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"공백이있는 기호","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"통계","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"제목","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"등장 인물","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"태그","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"제목","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"업로드 되었습니다","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"단어","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"예","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"액세스 권한","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"액세스 권한 변경","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"권한이있는 사람","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"비밀번호로","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"문서 보호","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"서명으로","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"유효한 서명이 문서에 추가되었습니다.
문서는 편집이 제한되어 있습니다.","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"눈에 보이지 않는 디지털 서명을 추가하여
문서의 무결성을 보장하세요.","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"문서 편집","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"편집하면 문서의 서명이 삭제됩니다.
계속하시겠습니까?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"이 문서는 비밀번호로 보호되어 있습니다","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"이 문서를 비밀번호로 암호화하세요","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"이 문서는 서명되어야 합니다.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"문서에 유효한 서명이 추가되었습니다. 문서가 보호되어 편집할 수 없습니다.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"문서 내 일부 전자 서명이 유효하지 않거나 확인할 수 없습니다. 문서가 편집 방지 상태입니다.","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"서명 보기","PDFE.Views.FileMenuPanels.Settings.okButtonText":"적용","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"공동 편집 모드","PDFE.Views.FileMenuPanels.Settings.strFast":"빠르게","PDFE.Views.FileMenuPanels.Settings.strFontRender":"글꼴 힌트","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"키보드 단축키","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"오른쪽에서 왼쪽 인터페이스","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"실시간 협업 변경 사항","PDFE.Views.FileMenuPanels.Settings.strShowComments":"텍스트로 댓글 표시","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"다른 사용자의 변경사항 표시","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"해결된 댓글 표시","PDFE.Views.FileMenuPanels.Settings.strStrict":"엄격한","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"탭 스타일","PDFE.Views.FileMenuPanels.Settings.strTheme":"인터페이스 테마","PDFE.Views.FileMenuPanels.Settings.strUnit":"측정 단위","PDFE.Views.FileMenuPanels.Settings.strZoom":"기본 확대/축소 값","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"자동 복구","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"자동 저장","PDFE.Views.FileMenuPanels.Settings.textDisabled":"비활성화","PDFE.Views.FileMenuPanels.Settings.textFill":"채우기","PDFE.Views.FileMenuPanels.Settings.textForceSave":"모든 기록 버전을 서버에 저장","PDFE.Views.FileMenuPanels.Settings.textLine":"선","PDFE.Views.FileMenuPanels.Settings.textMinute":"매 분","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"고급 설정","PDFE.Views.FileMenuPanels.Settings.txtAll":"모두보기","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"표시","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"사전 설정 캐시 모드","PDFE.Views.FileMenuPanels.Settings.txtCm":"센티미터","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"협업","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"사용자 정의","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"빠른 실행 사용자 지정","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"문서 다크 모드 켜기","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"편집 및 저장","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"실시간 공동 편집. 모든 변경사항은 자동으로 저장됩니다.","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"페이지에 맞춤","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"너비에 맞춤","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"상형 문자","PDFE.Views.FileMenuPanels.Settings.txtInch":"인치","PDFE.Views.FileMenuPanels.Settings.txtLast":"마지막보기","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"마지막으로 사용됨","PDFE.Views.FileMenuPanels.Settings.txtMac":"OS X","PDFE.Views.FileMenuPanels.Settings.txtNative":"기본","PDFE.Views.FileMenuPanels.Settings.txtNone":"보기 없음","PDFE.Views.FileMenuPanels.Settings.txtPt":"포인트","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"편집기 헤더에 빠른 인쇄 버튼 표시","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"문서는 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"화면 읽기 지원 활성화","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"변경 사항을 동기화하기 위해 \"저장\" 버튼을 사용하세요","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"도구 모음 색상을 탭 배경으로 사용","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Alt 키를 사용하세요.","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"텍스트 선택 시 미니 도구 모음 사용","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Option 키를 사용하세요.","PDFE.Views.FileMenuPanels.Settings.txtWin":"Windows로","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"워크스페이스","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"빠른 실행 도구 사용자 지정","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"다운로드 방법","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"다른 이름으로 저장","PDFE.Views.FormatSettingsDialog.textAfter":"문자 뒤에 간격 없음","PDFE.Views.FormatSettingsDialog.textAfterSpace":"문자 뒤에 간격 있음","PDFE.Views.FormatSettingsDialog.textBefore":"문자 앞에 간격 없음","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"앞쪽 여백","PDFE.Views.FormatSettingsDialog.textCategory":"카테고리","PDFE.Views.FormatSettingsDialog.textDate":"날짜","PDFE.Views.FormatSettingsDialog.textDecimal":"소수점 자리수","PDFE.Views.FormatSettingsDialog.textFormat":"서식","PDFE.Views.FormatSettingsDialog.textLocation":"기호 위치","PDFE.Views.FormatSettingsDialog.textMask":"임의의 패턴","PDFE.Views.FormatSettingsDialog.textNegative":"음수 형식","PDFE.Views.FormatSettingsDialog.textNone":"없음","PDFE.Views.FormatSettingsDialog.textNumber":"숫자","PDFE.Views.FormatSettingsDialog.textParens":"괄호 표시하기","PDFE.Views.FormatSettingsDialog.textPercent":"백분율","PDFE.Views.FormatSettingsDialog.textPhone":"전화 번호","PDFE.Views.FormatSettingsDialog.textRed":"빨간색 텍스트 사용","PDFE.Views.FormatSettingsDialog.textReg":"정규식","PDFE.Views.FormatSettingsDialog.textSeparator":"구분선 스타일","PDFE.Views.FormatSettingsDialog.textSpecial":"첫줄","PDFE.Views.FormatSettingsDialog.textSSN":"주민등록번호","PDFE.Views.FormatSettingsDialog.textSymbol":"통화 기호","PDFE.Views.FormatSettingsDialog.textTime":"시간","PDFE.Views.FormatSettingsDialog.textTitle":"서식 설정","PDFE.Views.FormatSettingsDialog.textZipCode":"우편번호","PDFE.Views.FormatSettingsDialog.textZipCode4":"우편번호 + 4자리 추가번호","PDFE.Views.FormatSettingsDialog.txtCustom":"사용자 지정","PDFE.Views.FormatSettingsDialog.txtSample":"예 :","PDFE.Views.FormSettings.textAdvanced":"고급 설정 표시","PDFE.Views.FormSettings.textAlways":"항상","PDFE.Views.FormSettings.textAnamorphic":"비율 유지 안 함","PDFE.Views.FormSettings.textArabic":"아랍어","PDFE.Views.FormSettings.textAutofit":"자동 맞춤","PDFE.Views.FormSettings.textBackgroundColor":"배경색","PDFE.Views.FormSettings.textBehavior":"동작 방식","PDFE.Views.FormSettings.textBeveled":"베벨드","PDFE.Views.FormSettings.textBorder":"테두리","PDFE.Views.FormSettings.textButton":"버튼","PDFE.Views.FormSettings.textChbStyle":"체크박스 스타일","PDFE.Views.FormSettings.textCheck":"확인","PDFE.Views.FormSettings.textCheckbox":"체크박스","PDFE.Views.FormSettings.textCheckDefault":"체크박스는 기본적으로 선택되어 있습니다.","PDFE.Views.FormSettings.textCircle":"원","PDFE.Views.FormSettings.textClear":"지우기","PDFE.Views.FormSettings.textColor":"색상","PDFE.Views.FormSettings.textComb":"문자 조합","PDFE.Views.FormSettings.textCombobox":"콤보박스","PDFE.Views.FormSettings.textCommit":"선택한 값을 즉시 적용","PDFE.Views.FormSettings.textCross":"교차","PDFE.Views.FormSettings.textCustomText":"사용자 지정 텍스트 허용","PDFE.Views.FormSettings.textDashed":"점선","PDFE.Views.FormSettings.textDate":"날짜","PDFE.Views.FormSettings.textDateField":"날짜 및 시간 필드","PDFE.Views.FormSettings.textDiamond":"다이아몬드","PDFE.Views.FormSettings.textDown":"아래로","PDFE.Views.FormSettings.textExport":"값 내보내기","PDFE.Views.FormSettings.textField":"텍스트 필드","PDFE.Views.FormSettings.textFitBounds":"경계에 맞추기","PDFE.Views.FormSettings.textFormat":"서식","PDFE.Views.FormSettings.textFromFile":"파일에서","PDFE.Views.FormSettings.textFromStorage":"저장소에서","PDFE.Views.FormSettings.textFromUrl":"URL로부터","PDFE.Views.FormSettings.textHindi":"힌디어","PDFE.Views.FormSettings.textHover":"롤오버","PDFE.Views.FormSettings.textHowScale":"크기","PDFE.Views.FormSettings.textIcon":"아이콘","PDFE.Views.FormSettings.textIconLeft":"아이콘 왼쪽, 레이블 오른쪽","PDFE.Views.FormSettings.textIconOnly":"아이콘만","PDFE.Views.FormSettings.textIconTop":"아이콘 위, 레이블 아래","PDFE.Views.FormSettings.textImage":"이미지","PDFE.Views.FormSettings.textInset":"안쪽 여백","PDFE.Views.FormSettings.textInvert":"반전","PDFE.Views.FormSettings.textLabel":"라벨","PDFE.Views.FormSettings.textLabelLeft":"레이블 왼쪽, 아이콘 오른쪽","PDFE.Views.FormSettings.textLabelTop":"레이블 위, 아이콘 아래","PDFE.Views.FormSettings.textLayout":"레이아웃","PDFE.Views.FormSettings.textListBox":"목록 상자","PDFE.Views.FormSettings.textLock":"잠금","PDFE.Views.FormSettings.textMask":"임의의 패턴","PDFE.Views.FormSettings.textMaxChars":"문자 제한","PDFE.Views.FormSettings.textMedium":"중","PDFE.Views.FormSettings.textMulti":"여러 줄","PDFE.Views.FormSettings.textMultisel":"다중 선택","PDFE.Views.FormSettings.textName":"이름","PDFE.Views.FormSettings.textNever":"절대","PDFE.Views.FormSettings.textNoBorder":"테두리 없음","PDFE.Views.FormSettings.textNoFill":"채우기 없음","PDFE.Views.FormSettings.textNone":"없음","PDFE.Views.FormSettings.textNormal":"위","PDFE.Views.FormSettings.textNumber":"숫자","PDFE.Views.FormSettings.textNumeral":"숫자 형식","PDFE.Views.FormSettings.textOrientation":"방향","PDFE.Views.FormSettings.textOutline":"개요","PDFE.Views.FormSettings.textOverlay":"아이콘 위 레이블","PDFE.Views.FormSettings.textPassword":"암호","PDFE.Views.FormSettings.textPercent":"백분율","PDFE.Views.FormSettings.textPhone":"전화 번호","PDFE.Views.FormSettings.textPlaceholder":"자리 표시자","PDFE.Views.FormSettings.textPlacement":"아이콘 배치","PDFE.Views.FormSettings.textProportional":"비율대로","PDFE.Views.FormSettings.textPush":"밀어내기","PDFE.Views.FormSettings.textRadiobox":"라디오 버튼","PDFE.Views.FormSettings.textRadioChoice":"라디오 버튼 선택","PDFE.Views.FormSettings.textRadioDefault":"기본적으로 버튼이 선택되어 있습니다.","PDFE.Views.FormSettings.textRadioStyle":"버튼 스타일","PDFE.Views.FormSettings.textReadonly":"읽기 전용","PDFE.Views.FormSettings.textReg":"정규식","PDFE.Views.FormSettings.textRequired":"필수","PDFE.Views.FormSettings.textScale":"확대/축소 시기","PDFE.Views.FormSettings.textScroll":"긴 텍스트 스크롤","PDFE.Views.FormSettings.textSelect":"선택","PDFE.Views.FormSettings.textSolid":"실선","PDFE.Views.FormSettings.textSpecial":"첫줄","PDFE.Views.FormSettings.textSquare":"사각형","PDFE.Views.FormSettings.textSSN":"주민등록번호","PDFE.Views.FormSettings.textStar":"별","PDFE.Views.FormSettings.textState":"주스탄트","PDFE.Views.FormSettings.textStyle":"스타일","PDFE.Views.FormSettings.textText":"텍스트","PDFE.Views.FormSettings.textTextOnly":"라벨만","PDFE.Views.FormSettings.textThick":"굵게","PDFE.Views.FormSettings.textThickness":"두께","PDFE.Views.FormSettings.textThin":"얇은","PDFE.Views.FormSettings.textTime":"시간","PDFE.Views.FormSettings.textTip":"팁","PDFE.Views.FormSettings.textTipAdd":"새 값을 추가","PDFE.Views.FormSettings.textTipDelete":"값 삭제","PDFE.Views.FormSettings.textTipDown":"아래로 이동","PDFE.Views.FormSettings.textTipUp":"위로 이동","PDFE.Views.FormSettings.textTooBig":"이미지가 너무 큽니다","PDFE.Views.FormSettings.textTooSmall":"이미지가 너무 작습니다","PDFE.Views.FormSettings.textUnderline":"밑줄","PDFE.Views.FormSettings.textUnison":"동일한 이름과 선택지를 가진 버튼들이 함께 선택됩니다","PDFE.Views.FormSettings.textUnlock":"잠금해제","PDFE.Views.FormSettings.textValue":"값 옵션","PDFE.Views.FormSettings.textZipCode":"우편번호","PDFE.Views.FormSettings.textZipCode4":"우편번호 + 4자리 추가번호","PDFE.Views.FormSettings.txtCustom":"사용자 지정","PDFE.Views.FormsTab.capBtnCheckBox":"체크박스","PDFE.Views.FormsTab.capBtnComboBox":"콤보박스","PDFE.Views.FormsTab.capBtnDropDown":"목록 상자","PDFE.Views.FormsTab.capBtnEmail":"이메일 주소","PDFE.Views.FormsTab.capBtnImage":"이미지","PDFE.Views.FormsTab.capBtnNext":"다음 필드","PDFE.Views.FormsTab.capBtnPhone":"전화 번호","PDFE.Views.FormsTab.capBtnPrev":"이전 필드","PDFE.Views.FormsTab.capBtnRadioBox":"라디오 버튼","PDFE.Views.FormsTab.capBtnText":"텍스트 필드","PDFE.Views.FormsTab.capCreditCard":"신용 카드","PDFE.Views.FormsTab.capDateTime":"날짜 및 시간","PDFE.Views.FormsTab.capZipCode":"우편번호","PDFE.Views.FormsTab.textAnyone":"모두","PDFE.Views.FormsTab.textClear":"필드 지우기","PDFE.Views.FormsTab.textClearFields":"모든 필드 지우기","PDFE.Views.FormsTab.tipCheckBox":"체크박스 삽입","PDFE.Views.FormsTab.tipComboBox":"콤보박스 삽입","PDFE.Views.FormsTab.tipCreditCard":"신용카드 번호 삽입","PDFE.Views.FormsTab.tipDateTime":"날짜 및 시간 삽입","PDFE.Views.FormsTab.tipDropDown":"목록 상자 삽입","PDFE.Views.FormsTab.tipEmailField":"이메일 주소 삽입","PDFE.Views.FormsTab.tipImageField":"이미지 삽입","PDFE.Views.FormsTab.tipNextForm":"다음 필드로 이동","PDFE.Views.FormsTab.tipPhoneField":"전화번호 삽입","PDFE.Views.FormsTab.tipPrevForm":"이전 필드로 이동","PDFE.Views.FormsTab.tipRadioBox":"라디오버튼 삽입","PDFE.Views.FormsTab.tipTextField":"텍스트 필드 삽입","PDFE.Views.FormsTab.tipZipCode":"우편번호 삽입","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"표시","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"링크 대상","PDFE.Views.HyperlinkSettingsDialog.textDefault":"선택한 텍스트 조각","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"여기에 캡션 입력","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"여기에 링크 입력","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"여기에 툴팁 입력","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"외부 링크","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"이 문서의 페이지","PDFE.Views.HyperlinkSettingsDialog.textPages":"페이지","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"파일 선택","PDFE.Views.HyperlinkSettingsDialog.textTipText":"스크린 팁 텍스트","PDFE.Views.HyperlinkSettingsDialog.textTitle":"하이퍼링크 설정","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"스크롤 막대, 마우스 및 확대/축소 기능을 사용하여 대상 뷰를 선택한 다음 [링크 설정]을 눌러 링크 대상을 생성합니다.","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"보러가기 생성","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"이 필드는 필수 입력 항목입니다","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"첫 페이지","PDFE.Views.HyperlinkSettingsDialog.txtLast":"마지막 페이지","PDFE.Views.HyperlinkSettingsDialog.txtNext":"다음 페이지","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.","PDFE.Views.HyperlinkSettingsDialog.txtPage":"페이지","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"페이지 보기로 가기","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"이전 페이지","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"링크 설정","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"이 필드는 2083 자로 제한되어 있습니다","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"웹 주소를 입력하거나 파일을 선택하세요","PDFE.Views.ImageSettings.strTransparency":"불투명도","PDFE.Views.ImageSettings.textAdvanced":"고급 설정 표시","PDFE.Views.ImageSettings.textCrop":"자르기","PDFE.Views.ImageSettings.textCropFill":"채우기","PDFE.Views.ImageSettings.textCropFit":"맞춤","PDFE.Views.ImageSettings.textCropToShape":"도형에 맞게 자르기","PDFE.Views.ImageSettings.textEdit":"편집","PDFE.Views.ImageSettings.textEditObject":"개체 편집","PDFE.Views.ImageSettings.textFitPage":"페이지에 맞춤","PDFE.Views.ImageSettings.textFlip":"대칭","PDFE.Views.ImageSettings.textFromFile":"파일에서","PDFE.Views.ImageSettings.textFromStorage":"저장소에서","PDFE.Views.ImageSettings.textFromUrl":"URL로부터","PDFE.Views.ImageSettings.textHeight":"높이","PDFE.Views.ImageSettings.textHint270":"반시계 방향으로 90도 회전","PDFE.Views.ImageSettings.textHint90":"오른쪽으로 90도 회전","PDFE.Views.ImageSettings.textHintFlipH":"좌우대칭","PDFE.Views.ImageSettings.textHintFlipV":"상하대칭","PDFE.Views.ImageSettings.textInsert":"이미지 바꾸기","PDFE.Views.ImageSettings.textOriginalSize":"실제 크기","PDFE.Views.ImageSettings.textRecentlyUsed":"최근 사용된","PDFE.Views.ImageSettings.textResetCrop":"자르기 초기화","PDFE.Views.ImageSettings.textRotate90":"90도 회전","PDFE.Views.ImageSettings.textRotation":"회전","PDFE.Views.ImageSettings.textSize":"크기","PDFE.Views.ImageSettings.textWidth":"너비","PDFE.Views.ImageSettingsAdvanced.textAlt":"대체 텍스트","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"설명","PDFE.Views.ImageSettingsAdvanced.textAltTip":"시각 또는 인지 장애가 있는 사용자가 이미지, 도형, 차트, 표 등에 포함된 정보를 더 잘 이해할 수 있도록 제공되는 대체 텍스트 기반 설명입니다.","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"제목","PDFE.Views.ImageSettingsAdvanced.textAngle":"각도","PDFE.Views.ImageSettingsAdvanced.textCenter":"가운데","PDFE.Views.ImageSettingsAdvanced.textFlipped":"뒤집기","PDFE.Views.ImageSettingsAdvanced.textFrom":"보낸 사람","PDFE.Views.ImageSettingsAdvanced.textGeneral":"일반","PDFE.Views.ImageSettingsAdvanced.textHeight":"높이","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"수평","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"수평","PDFE.Views.ImageSettingsAdvanced.textImageName":"이미지 이름","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"상수 비율","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"실제 크기","PDFE.Views.ImageSettingsAdvanced.textPlacement":"배치","PDFE.Views.ImageSettingsAdvanced.textPosition":"위치","PDFE.Views.ImageSettingsAdvanced.textRotation":"회전","PDFE.Views.ImageSettingsAdvanced.textSize":"크기","PDFE.Views.ImageSettingsAdvanced.textTitle":"이미지 - 고급 설정","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"왼쪽 상단 모서리","PDFE.Views.ImageSettingsAdvanced.textVertical":"세로","PDFE.Views.ImageSettingsAdvanced.textVertically":"수직","PDFE.Views.ImageSettingsAdvanced.textWidth":"너비","PDFE.Views.InsTab.capBlankPage":"빈 페이지","PDFE.Views.InsTab.capBtnDateTime":"날짜 및 시간","PDFE.Views.InsTab.capBtnInsHeaderFooter":"머리말/꼬리말","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"기호","PDFE.Views.InsTab.capBtnPageNum":"페이지 번호","PDFE.Views.InsTab.capInsertChart":"차트","PDFE.Views.InsTab.capInsertEquation":"수식","PDFE.Views.InsTab.capInsertHyperlink":"하이퍼링크","PDFE.Views.InsTab.capInsertImage":"이미지","PDFE.Views.InsTab.capInsertShape":"도형","PDFE.Views.InsTab.capInsertTable":"표","PDFE.Views.InsTab.capInsertText":"텍스트 상자","PDFE.Views.InsTab.capInsertTextArt":"텍스트 아트","PDFE.Views.InsTab.capInsPage":"페이지 삽입","PDFE.Views.InsTab.mniCustomTable":"사용자 정의 테이블 삽입","PDFE.Views.InsTab.mniImageFromFile":"파일에서 이미지 삽입","PDFE.Views.InsTab.mniImageFromStorage":"저장소에서 이미지 삽입","PDFE.Views.InsTab.mniImageFromUrl":"URL에서 이미지 삽입","PDFE.Views.InsTab.mniInsertSSE":"스프레드시트 삽입","PDFE.Views.InsTab.textAlpha":"소문자 알파","PDFE.Views.InsTab.textBetta":"소문자 베타","PDFE.Views.InsTab.textBlackHeart":"검정 하트","PDFE.Views.InsTab.textBullet":"글머리 기호","PDFE.Views.InsTab.textCopyright":"저작권 표시","PDFE.Views.InsTab.textDegree":"도수 기호","PDFE.Views.InsTab.textDelta":"소문자 델타","PDFE.Views.InsTab.textDivision":"나누기 기호","PDFE.Views.InsTab.textDollar":"달러 기호","PDFE.Views.InsTab.textEuro":"유로화","PDFE.Views.InsTab.textGreaterEqual":"크거나 같음","PDFE.Views.InsTab.textInfinity":"무한대","PDFE.Views.InsTab.textLessEqual":"보다 작거나 같음","PDFE.Views.InsTab.textLetterPi":"소문자 파이","PDFE.Views.InsTab.textMoreSymbols":"더 많은 기호","PDFE.Views.InsTab.textNotEqualTo":"같지 않음","PDFE.Views.InsTab.textOneHalf":"2분의 1","PDFE.Views.InsTab.textOneQuarter":"4분의 1","PDFE.Views.InsTab.textPlusMinus":"플러스 마이너스 기호","PDFE.Views.InsTab.textRecentlyUsed":"최근 사용된","PDFE.Views.InsTab.textRegistered":"등록된 서명","PDFE.Views.InsTab.textSection":"섹션 기호","PDFE.Views.InsTab.textSmile":"환한 미소","PDFE.Views.InsTab.textSquareRoot":"제곱근","PDFE.Views.InsTab.textTilde":"물결표","PDFE.Views.InsTab.textTradeMark":"상표 표시","PDFE.Views.InsTab.textYen":"엔화 기호","PDFE.Views.InsTab.tipChangeChart":"차트 유형 변경","PDFE.Views.InsTab.tipDateTime":"현재 날짜 시간 삽입","PDFE.Views.InsTab.tipEditHeaderFooter":"머리글 또는 바닥글 편집","PDFE.Views.InsTab.tipInsertChart":"차트 삽입","PDFE.Views.InsTab.tipInsertEquation":"수식 삽입","PDFE.Views.InsTab.tipInsertHorizontalText":"가로 텍스트 상자 삽입","PDFE.Views.InsTab.tipInsertHyperlink":"링크 추가","PDFE.Views.InsTab.tipInsertImage":"이미지 삽입","PDFE.Views.InsTab.tipInsertPage":"빈 페이지 삽입","PDFE.Views.InsTab.tipInsertPageAfter":"다음에 빈 페이지 삽입","PDFE.Views.InsTab.tipInsertShape":"도형 삽입","PDFE.Views.InsTab.tipInsertSmartArt":"SmartArt 삽입","PDFE.Views.InsTab.tipInsertSymbol":"기호 삽입","PDFE.Views.InsTab.tipInsertTable":"표 삽입","PDFE.Views.InsTab.tipInsertText":"텍스트 상자 삽입","PDFE.Views.InsTab.tipInsertTextArt":"텍스트 아트 삽입","PDFE.Views.InsTab.tipInsertVerticalText":"세로 텍스트 상자 삽입","PDFE.Views.InsTab.tipPageNum":"페이지 번호 삽입","PDFE.Views.InsTab.txtNewPageAfter":"다음에 빈 페이지 삽입","PDFE.Views.InsTab.txtNewPageBefore":"이전에 빈 페이지 삽입","PDFE.Views.LeftMenu.ariaLeftMenu":"왼쪽 메뉴","PDFE.Views.LeftMenu.tipAbout":"정보","PDFE.Views.LeftMenu.tipChat":"채팅","PDFE.Views.LeftMenu.tipComments":"코멘트","PDFE.Views.LeftMenu.tipNavigation":"내비게이션","PDFE.Views.LeftMenu.tipOutline":"제목","PDFE.Views.LeftMenu.tipPageThumbnails":"페이지 썸네일","PDFE.Views.LeftMenu.tipPlugins":"플러그인","PDFE.Views.LeftMenu.tipSearch":"검색","PDFE.Views.LeftMenu.tipSupport":"피드백 및 지원","PDFE.Views.LeftMenu.tipTitles":"제목","PDFE.Views.LeftMenu.txtDeveloper":"개발자 모드","PDFE.Views.LeftMenu.txtEditor":"PDF 에디터","PDFE.Views.LeftMenu.txtLimit":"접근제한","PDFE.Views.LeftMenu.txtTrial":"시험 모드","PDFE.Views.LeftMenu.txtTrialDev":"개발자 모드 시도","PDFE.Views.Navigation.strNavigate":"제목","PDFE.Views.Navigation.txtClosePanel":"제목 닫기","PDFE.Views.Navigation.txtCollapse":"모두 접기","PDFE.Views.Navigation.txtEmptyItem":"머리말 없슴","PDFE.Views.Navigation.txtEmptyViewer":"문서에 제목이 없습니다. ","PDFE.Views.Navigation.txtExpand":"모두 확장","PDFE.Views.Navigation.txtExpandToLevel":"레벨로 확장하기","PDFE.Views.Navigation.txtFontSize":"글자 크기","PDFE.Views.Navigation.txtLarge":"큰","PDFE.Views.Navigation.txtMedium":"중","PDFE.Views.Navigation.txtSettings":"제목 설정","PDFE.Views.Navigation.txtSmall":"작은","PDFE.Views.Navigation.txtWrapHeadings":"긴 제목 줄 바꿈","PDFE.Views.PageThumbnails.textClosePanel":"페이지 썸네일 닫기","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"페이지에서 보이는 부분 강조 표시","PDFE.Views.PageThumbnails.textPageThumbnails":"페이지 썸네일","PDFE.Views.PageThumbnails.textThumbnailsSettings":"썸네일 설정","PDFE.Views.PageThumbnails.textThumbnailsSize":"썸네일 크기","PDFE.Views.ParagraphSettings.strLineHeight":"줄 간격","PDFE.Views.ParagraphSettings.strParagraphSpacing":"단락 간격","PDFE.Views.ParagraphSettings.strSpacingAfter":"후","PDFE.Views.ParagraphSettings.strSpacingBefore":"단락 앞","PDFE.Views.ParagraphSettings.textAdvanced":"고급 설정 표시","PDFE.Views.ParagraphSettings.textAt":"At","PDFE.Views.ParagraphSettings.textAtLeast":"최소","PDFE.Views.ParagraphSettings.textAuto":"배수","PDFE.Views.ParagraphSettings.textExact":"정확히","PDFE.Views.ParagraphSettings.txtAutoText":"자동","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"지정된 탭이이 필드에 나타납니다","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"모든 대문자","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"방향","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"이중 취소선","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"들여쓰기","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"왼쪽","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"줄 간격","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"오른쪽","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"후","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"단락 앞","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"첫줄","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"글꼴","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"들여쓰기 및 간격","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"작은 대문자","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"간격","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"취소선","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"첨자","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"위 첨자","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"탭","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"정렬","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"배수","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"문자 간격","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"기본 탭","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"왼쪽에서 오른쪽으로","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"오른쪽에서 왼쪽으로","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"효과","PDFE.Views.ParagraphSettingsAdvanced.textExact":"정확히","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"첫 번째 줄","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"둘째 줄 이하","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"균등분할","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(없음)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"삭제","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"모두 제거","PDFE.Views.ParagraphSettingsAdvanced.textSet":"지정","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"가운데","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"왼쪽","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"탭 위치","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"오른쪽","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"단락 - 고급 설정","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"자동","PDFE.Views.PrintWithPreview.textMarginsLast":"마지막 사용자 정의","PDFE.Views.PrintWithPreview.textMarginsModerate":"보통","PDFE.Views.PrintWithPreview.textMarginsNarrow":"좁게","PDFE.Views.PrintWithPreview.textMarginsNormal":"표준","PDFE.Views.PrintWithPreview.textMarginsWide":"넓게","PDFE.Views.PrintWithPreview.txtAllPages":"전체 페이지","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"흑백 인쇄","PDFE.Views.PrintWithPreview.txtBothSides":"양면에 인쇄","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"긴 변을 중심으로 페이지를 뒤집다","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"짧은 변을 중심으로 페이지를 뒤집다","PDFE.Views.PrintWithPreview.txtBottom":"하단","PDFE.Views.PrintWithPreview.txtColorPrinting":"컬러 인쇄","PDFE.Views.PrintWithPreview.txtCopies":"사본","PDFE.Views.PrintWithPreview.txtCurrentPage":"현재 페이지","PDFE.Views.PrintWithPreview.txtCustom":"사용자 정의","PDFE.Views.PrintWithPreview.txtCustomPages":"맞춤 인쇄","PDFE.Views.PrintWithPreview.txtLandscape":"수평","PDFE.Views.PrintWithPreview.txtLeft":"왼쪽","PDFE.Views.PrintWithPreview.txtMargins":"여백","PDFE.Views.PrintWithPreview.txtOf":"/ {0}","PDFE.Views.PrintWithPreview.txtOneSide":"단면 인쇄","PDFE.Views.PrintWithPreview.txtOneSideDesc":"페이지의 한쪽에만 인쇄","PDFE.Views.PrintWithPreview.txtPage":"페이지","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","PDFE.Views.PrintWithPreview.txtPageOrientation":"페이지 방향","PDFE.Views.PrintWithPreview.txtPages":"페이지","PDFE.Views.PrintWithPreview.txtPageSize":"페이지 크기","PDFE.Views.PrintWithPreview.txtPortrait":"세로","PDFE.Views.PrintWithPreview.txtPrint":"인쇄","PDFE.Views.PrintWithPreview.txtPrinter":"프린터","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"선택된 프린터 없음","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"프린터를 찾을 수 없습니다","PDFE.Views.PrintWithPreview.txtPrintPdf":"PDF로 인쇄","PDFE.Views.PrintWithPreview.txtPrintRange":"인쇄 범위","PDFE.Views.PrintWithPreview.txtPrintSides":"인쇄면","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"시스템 대화상자를 사용하여 인쇄","PDFE.Views.PrintWithPreview.txtRight":"오른쪽","PDFE.Views.PrintWithPreview.txtSelection":"선택","PDFE.Views.PrintWithPreview.txtTop":"맨 위","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"프린터 대기 중","PDFE.Views.RedactTab.capApplyRedactions":"편집 적용","PDFE.Views.RedactTab.capFindRedact":"찾기 및 편집","PDFE.Views.RedactTab.capMarkRedact":"편집 대상 지정","PDFE.Views.RedactTab.capRedactPages":"페이지 비공개 처리","PDFE.Views.RedactTab.tipApplyRedactions":"편집 적용","PDFE.Views.RedactTab.tipFindRedact":"찾기 및 편집","PDFE.Views.RedactTab.tipMarkForRedact":"편집 대상 지정","PDFE.Views.RedactTab.tipRedactPages":"페이지 비공개 처리","PDFE.Views.RedactTab.txtMarkCurrentPage":"현재 페이지를 표시","PDFE.Views.RedactTab.txtSelectRange":"범위 선택","PDFE.Views.RightMenu.ariaRightMenu":"오른쪽 메뉴","PDFE.Views.RightMenu.txtChartSettings":"차트 설정","PDFE.Views.RightMenu.txtFormSettings":"폼 설정","PDFE.Views.RightMenu.txtImageSettings":"이미지 설정","PDFE.Views.RightMenu.txtParagraphSettings":"단락 설정","PDFE.Views.RightMenu.txtShapeSettings":"도형 설정","PDFE.Views.RightMenu.txtTableSettings":"표 설정","PDFE.Views.RightMenu.txtTextArtSettings":"텍스트 아트 설정","PDFE.Views.ShapeSettings.strBackground":"배경색","PDFE.Views.ShapeSettings.strChange":"도형 변경","PDFE.Views.ShapeSettings.strColor":"색상","PDFE.Views.ShapeSettings.strFill":"채우기","PDFE.Views.ShapeSettings.strForeground":"전경색","PDFE.Views.ShapeSettings.strPattern":"패턴","PDFE.Views.ShapeSettings.strShadow":"음영 표시","PDFE.Views.ShapeSettings.strSize":"크기","PDFE.Views.ShapeSettings.strStroke":"선","PDFE.Views.ShapeSettings.strTransparency":"불투명도","PDFE.Views.ShapeSettings.strType":"형식","PDFE.Views.ShapeSettings.textAdjustShadow":"그림자 조정","PDFE.Views.ShapeSettings.textAdvanced":"고급 설정 표시","PDFE.Views.ShapeSettings.textAngle":"각도","PDFE.Views.ShapeSettings.textBorderSizeErr":"입력한 값이 올바르지 않습니다.
0pt에서 1584pt 사이의 값을 입력해 주세요.","PDFE.Views.ShapeSettings.textColor":"색 채우기","PDFE.Views.ShapeSettings.textDirection":"방향","PDFE.Views.ShapeSettings.textEditPoints":"점 편집","PDFE.Views.ShapeSettings.textEditShape":"도형 편집","PDFE.Views.ShapeSettings.textEmptyPattern":"패턴 없음","PDFE.Views.ShapeSettings.textEyedropper":"스포이트","PDFE.Views.ShapeSettings.textFlip":"대칭","PDFE.Views.ShapeSettings.textFromFile":"파일에서","PDFE.Views.ShapeSettings.textFromStorage":"저장소에서","PDFE.Views.ShapeSettings.textFromUrl":"URL로부터","PDFE.Views.ShapeSettings.textGradient":"그라데이션 포인트","PDFE.Views.ShapeSettings.textGradientFill":"그라데이션 채우기","PDFE.Views.ShapeSettings.textHint270":"반시계 방향으로 90도 회전","PDFE.Views.ShapeSettings.textHint90":"오른쪽으로 90도 회전","PDFE.Views.ShapeSettings.textHintFlipH":"좌우대칭","PDFE.Views.ShapeSettings.textHintFlipV":"상하대칭","PDFE.Views.ShapeSettings.textImageTexture":"그림 또는 질감","PDFE.Views.ShapeSettings.textLinear":"선형","PDFE.Views.ShapeSettings.textMoreColors":"색상 더 보기","PDFE.Views.ShapeSettings.textNoFill":"채우기 없음","PDFE.Views.ShapeSettings.textNoShadow":"그림자 없음","PDFE.Views.ShapeSettings.textPatternFill":"패턴","PDFE.Views.ShapeSettings.textPosition":"위치","PDFE.Views.ShapeSettings.textRadial":"방사형","PDFE.Views.ShapeSettings.textRecentlyUsed":"최근 사용된","PDFE.Views.ShapeSettings.textRotate90":"90도 회전","PDFE.Views.ShapeSettings.textRotation":"회전","PDFE.Views.ShapeSettings.textSelectImage":"그림선택","PDFE.Views.ShapeSettings.textSelectTexture":"선택","PDFE.Views.ShapeSettings.textShadow":"그림자","PDFE.Views.ShapeSettings.textStretch":"늘이기","PDFE.Views.ShapeSettings.textStyle":"스타일","PDFE.Views.ShapeSettings.textTexture":"텍스처에서","PDFE.Views.ShapeSettings.textTile":"타일","PDFE.Views.ShapeSettings.tipAddGradientPoint":"그라데이션 포인트 추가","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"그라데이션 포인트 제거","PDFE.Views.ShapeSettings.txtBrownPaper":"갈색 종이","PDFE.Views.ShapeSettings.txtCanvas":"캔버스","PDFE.Views.ShapeSettings.txtCarton":"상자","PDFE.Views.ShapeSettings.txtDarkFabric":"짙은 무늬","PDFE.Views.ShapeSettings.txtGrain":"곡물","PDFE.Views.ShapeSettings.txtGranite":"화강암","PDFE.Views.ShapeSettings.txtGreyPaper":"회색 용지","PDFE.Views.ShapeSettings.txtKnit":"니트","PDFE.Views.ShapeSettings.txtLeather":"가죽","PDFE.Views.ShapeSettings.txtNoBorders":"선 없음","PDFE.Views.ShapeSettings.txtOffsetBottom":"오프셋: 아래쪽","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"오프셋: 왼쪽 아래","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"오프셋: 오른쪽 아래","PDFE.Views.ShapeSettings.txtOffsetCenter":"오프셋: 가운데","PDFE.Views.ShapeSettings.txtOffsetLeft":"오프셋: 왼쪽","PDFE.Views.ShapeSettings.txtOffsetRight":"오프셋: 오른쪽","PDFE.Views.ShapeSettings.txtOffsetTop":"오프셋: 위쪽","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"오프셋: 왼쪽 위","PDFE.Views.ShapeSettings.txtOffsetTopRight":"오프셋: 오른쪽 위","PDFE.Views.ShapeSettings.txtPapyrus":"파피루스","PDFE.Views.ShapeSettings.txtWood":"우드","PDFE.Views.ShapeSettingsAdvanced.strColumns":"열","PDFE.Views.ShapeSettingsAdvanced.strMargins":"텍스트 채우기","PDFE.Views.ShapeSettingsAdvanced.textAlt":"대체 텍스트","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"설명","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"시각 또는 인지 장애가 있는 사용자가 이미지, 도형, 차트, 표 등의 정보를 더 잘 이해할 수 있도록 읽어주는 대체 텍스트 기반 설명입니다.","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"제목","PDFE.Views.ShapeSettingsAdvanced.textAngle":"각도","PDFE.Views.ShapeSettingsAdvanced.textArrows":"화살표","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"자동 맞춤","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"크기 시작","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"스타일 시작","PDFE.Views.ShapeSettingsAdvanced.textBevel":"베벨","PDFE.Views.ShapeSettingsAdvanced.textBottom":"바닥","PDFE.Views.ShapeSettingsAdvanced.textCapType":"모자 유형","PDFE.Views.ShapeSettingsAdvanced.textCenter":"가운데","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"열 수","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"최종 크기","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"끝 스타일","PDFE.Views.ShapeSettingsAdvanced.textFlat":"평면","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"뒤집기","PDFE.Views.ShapeSettingsAdvanced.textFrom":"보낸 사람","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"일반","PDFE.Views.ShapeSettingsAdvanced.textHeight":"높이","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"수평","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"수평","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"조인 유형","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"비율 유지","PDFE.Views.ShapeSettingsAdvanced.textLeft":"왼쪽","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"선 스타일","PDFE.Views.ShapeSettingsAdvanced.textMiter":"연귀","PDFE.Views.ShapeSettingsAdvanced.textNofit":"자동 맞춤 안 함","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"배치","PDFE.Views.ShapeSettingsAdvanced.textPosition":"위치","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"텍스트에 맞게 모양 조정","PDFE.Views.ShapeSettingsAdvanced.textRight":"오른쪽","PDFE.Views.ShapeSettingsAdvanced.textRotation":"회전","PDFE.Views.ShapeSettingsAdvanced.textRound":"원","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"도형 이름","PDFE.Views.ShapeSettingsAdvanced.textShrink":"텍스트 초과시 자동 조정","PDFE.Views.ShapeSettingsAdvanced.textSize":"크기","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"열 사이의 간격","PDFE.Views.ShapeSettingsAdvanced.textSquare":"사각형","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"텍스트 상자","PDFE.Views.ShapeSettingsAdvanced.textTitle":"도형 - 고급 설정","PDFE.Views.ShapeSettingsAdvanced.textTop":"맨 위","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"왼쪽 상단 모서리","PDFE.Views.ShapeSettingsAdvanced.textVertical":"세로","PDFE.Views.ShapeSettingsAdvanced.textVertically":"수직","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"가중치 및 화살표","PDFE.Views.ShapeSettingsAdvanced.textWidth":"너비","PDFE.Views.ShapeSettingsAdvanced.txtNone":"없음","PDFE.Views.Statusbar.goToPageText":"페이지로 이동","PDFE.Views.Statusbar.pageIndexText":"{1}의 페이지 {0}","PDFE.Views.Statusbar.tipFitPage":"페이지에 맞춤","PDFE.Views.Statusbar.tipFitWidth":"너비에 맞춤","PDFE.Views.Statusbar.tipHandTool":"손도구","PDFE.Views.Statusbar.tipPageNext":"다음 페이지로 이동","PDFE.Views.Statusbar.tipPagePrev":"이전 페이지로 이동","PDFE.Views.Statusbar.tipSelectTool":"도구 선택","PDFE.Views.Statusbar.tipZoomFactor":"확대/축소","PDFE.Views.Statusbar.tipZoomIn":"확대","PDFE.Views.Statusbar.tipZoomOut":"축소","PDFE.Views.Statusbar.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","PDFE.Views.TableSettings.deleteColumnText":"열 삭제","PDFE.Views.TableSettings.deleteRowText":"행 삭제","PDFE.Views.TableSettings.deleteTableText":"테이블 삭제","PDFE.Views.TableSettings.insertColumnLeftText":"왼쪽 열 삽입","PDFE.Views.TableSettings.insertColumnRightText":"오른쪽 열 삽입","PDFE.Views.TableSettings.insertRowAboveText":"위에 행 삽입","PDFE.Views.TableSettings.insertRowBelowText":"아래에 행 삽입","PDFE.Views.TableSettings.mergeCellsText":"셀 병합","PDFE.Views.TableSettings.selectCellText":"셀 선택","PDFE.Views.TableSettings.selectColumnText":"열 선택","PDFE.Views.TableSettings.selectRowText":"행 선택","PDFE.Views.TableSettings.selectTableText":"표 선택","PDFE.Views.TableSettings.splitCellsText":"셀 분할 ...","PDFE.Views.TableSettings.splitCellTitleText":"셀 분할","PDFE.Views.TableSettings.textAdvanced":"고급 설정 표시","PDFE.Views.TableSettings.textBackColor":"배경색","PDFE.Views.TableSettings.textBanded":"줄무늬","PDFE.Views.TableSettings.textBorderColor":"색상","PDFE.Views.TableSettings.textBorders":"테두리 스타일","PDFE.Views.TableSettings.textCellSize":"셀 크기","PDFE.Views.TableSettings.textColumns":"열","PDFE.Views.TableSettings.textDistributeCols":"열 균등 분할","PDFE.Views.TableSettings.textDistributeRows":"행 배포","PDFE.Views.TableSettings.textEdit":"행 및 열","PDFE.Views.TableSettings.textEmptyTemplate":"템플릿 없음","PDFE.Views.TableSettings.textFirst":"처음","PDFE.Views.TableSettings.textHeader":"머리글","PDFE.Views.TableSettings.textHeight":"높이","PDFE.Views.TableSettings.textLast":"마지막","PDFE.Views.TableSettings.textRows":"행","PDFE.Views.TableSettings.textSelectBorders":"위에서 선택한 스타일 적용을 변경하려는 테두리 선택","PDFE.Views.TableSettings.textTemplate":"템플릿에서 선택","PDFE.Views.TableSettings.textTotal":"합계","PDFE.Views.TableSettings.textWidth":"너비","PDFE.Views.TableSettings.tipAll":"바깥쪽 테두리 및 안쪽 테두리","PDFE.Views.TableSettings.tipBottom":"바깥 아래쪽 테두리","PDFE.Views.TableSettings.tipInner":"내부 라인 만 설정","PDFE.Views.TableSettings.tipInnerHor":"안쪽 가로 테두리","PDFE.Views.TableSettings.tipInnerVert":"세로 내부 선만 설정","PDFE.Views.TableSettings.tipLeft":"바깥 왼쪽 테두리","PDFE.Views.TableSettings.tipNone":"테두리 없음 설정","PDFE.Views.TableSettings.tipOuter":"바깥쪽 테두리","PDFE.Views.TableSettings.tipRight":"바깥 오른쪽 테두리","PDFE.Views.TableSettings.tipTop":"바깥 위쪽 테두리","PDFE.Views.TableSettings.txtGroupTable_Custom":"사용자 지정","PDFE.Views.TableSettings.txtGroupTable_Dark":"어두운","PDFE.Views.TableSettings.txtGroupTable_Light":"밝은","PDFE.Views.TableSettings.txtGroupTable_Medium":"중","PDFE.Views.TableSettings.txtGroupTable_Optimal":"문서에 대한 최적의 일치","PDFE.Views.TableSettings.txtNoBorders":"테두리 없음","PDFE.Views.TableSettings.txtTable_Accent":"강조","PDFE.Views.TableSettings.txtTable_DarkStyle":"어두운 스타일","PDFE.Views.TableSettings.txtTable_LightStyle":"밝은 스타일","PDFE.Views.TableSettings.txtTable_MediumStyle":"보통 스타일","PDFE.Views.TableSettings.txtTable_NoGrid":"그리드 없음","PDFE.Views.TableSettings.txtTable_NoStyle":"스타일 없음","PDFE.Views.TableSettings.txtTable_TableGrid":"테이블 그리드","PDFE.Views.TableSettings.txtTable_ThemedStyle":"테마 스타일","PDFE.Views.TableSettingsAdvanced.textAlt":"대체 텍스트","PDFE.Views.TableSettingsAdvanced.textAltDescription":"설명","PDFE.Views.TableSettingsAdvanced.textAltTip":"시각 또는 인지 장애가 있는 사용자가 이미지, 도형, 차트, 표 등의 정보를 더 잘 이해할 수 있도록 제공되는 대체 텍스트 기반 설명입니다.","PDFE.Views.TableSettingsAdvanced.textAltTitle":"제목","PDFE.Views.TableSettingsAdvanced.textBottom":"바닥","PDFE.Views.TableSettingsAdvanced.textCenter":"가운데","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"기본 여백 사용","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"기본 여백","PDFE.Views.TableSettingsAdvanced.textFrom":"보낸 사람","PDFE.Views.TableSettingsAdvanced.textGeneral":"일반","PDFE.Views.TableSettingsAdvanced.textHeight":"높이","PDFE.Views.TableSettingsAdvanced.textHorizontal":"수평","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"비율 유지","PDFE.Views.TableSettingsAdvanced.textLeft":"왼쪽","PDFE.Views.TableSettingsAdvanced.textMargins":"셀 여백","PDFE.Views.TableSettingsAdvanced.textPlacement":"배치","PDFE.Views.TableSettingsAdvanced.textPosition":"위치","PDFE.Views.TableSettingsAdvanced.textRight":"오른쪽","PDFE.Views.TableSettingsAdvanced.textSize":"크기","PDFE.Views.TableSettingsAdvanced.textTableName":"테이블 이름","PDFE.Views.TableSettingsAdvanced.textTitle":"표 - 고급 설정","PDFE.Views.TableSettingsAdvanced.textTop":"맨 위","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"왼쪽 상단 모서리","PDFE.Views.TableSettingsAdvanced.textVertical":"세로","PDFE.Views.TableSettingsAdvanced.textWidth":"너비","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"여백","PDFE.Views.TextArtSettings.strBackground":"배경색","PDFE.Views.TextArtSettings.strColor":"색상","PDFE.Views.TextArtSettings.strFill":"채우기","PDFE.Views.TextArtSettings.strForeground":"전경색","PDFE.Views.TextArtSettings.strPattern":"패턴","PDFE.Views.TextArtSettings.strSize":"크기","PDFE.Views.TextArtSettings.strStroke":"선","PDFE.Views.TextArtSettings.strTransparency":"불투명도","PDFE.Views.TextArtSettings.strType":"형식","PDFE.Views.TextArtSettings.textAngle":"각도","PDFE.Views.TextArtSettings.textBorderSizeErr":"입력한 값이 올바르지 않습니다.
0pt에서 1584pt 사이의 값을 입력해 주세요.","PDFE.Views.TextArtSettings.textColor":"색 채우기","PDFE.Views.TextArtSettings.textDirection":"방향","PDFE.Views.TextArtSettings.textEmptyPattern":"패턴 없음","PDFE.Views.TextArtSettings.textFromFile":"파일에서","PDFE.Views.TextArtSettings.textFromUrl":"URL로부터","PDFE.Views.TextArtSettings.textGradient":"그라데이션 포인트","PDFE.Views.TextArtSettings.textGradientFill":"그라데이션 채우기","PDFE.Views.TextArtSettings.textImageTexture":"그림 또는 질감","PDFE.Views.TextArtSettings.textLinear":"선형","PDFE.Views.TextArtSettings.textNoFill":"채우기 없음","PDFE.Views.TextArtSettings.textPatternFill":"패턴","PDFE.Views.TextArtSettings.textPosition":"위치","PDFE.Views.TextArtSettings.textRadial":"방사형","PDFE.Views.TextArtSettings.textSelectTexture":"선택","PDFE.Views.TextArtSettings.textStretch":"늘이기","PDFE.Views.TextArtSettings.textStyle":"스타일","PDFE.Views.TextArtSettings.textTemplate":"템플릿","PDFE.Views.TextArtSettings.textTexture":"텍스처에서","PDFE.Views.TextArtSettings.textTile":"타일","PDFE.Views.TextArtSettings.textTransform":"변형","PDFE.Views.TextArtSettings.tipAddGradientPoint":"그라데이션 포인트 추가","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"그라데이션 포인트 제거","PDFE.Views.TextArtSettings.txtBrownPaper":"갈색 종이","PDFE.Views.TextArtSettings.txtCanvas":"캔버스","PDFE.Views.TextArtSettings.txtCarton":"상자","PDFE.Views.TextArtSettings.txtDarkFabric":"짙은 무늬","PDFE.Views.TextArtSettings.txtGrain":"곡물","PDFE.Views.TextArtSettings.txtGranite":"화강암","PDFE.Views.TextArtSettings.txtGreyPaper":"회색 용지","PDFE.Views.TextArtSettings.txtKnit":"니트","PDFE.Views.TextArtSettings.txtLeather":"가죽","PDFE.Views.TextArtSettings.txtNoBorders":"선 없음","PDFE.Views.TextArtSettings.txtPapyrus":"파피루스","PDFE.Views.TextArtSettings.txtWood":"우드","PDFE.Views.Toolbar.capBtnArrowComment":"화살표","PDFE.Views.Toolbar.capBtnCircleComment":"원","PDFE.Views.Toolbar.capBtnComment":"코멘트","PDFE.Views.Toolbar.capBtnDelPage":"페이지를 삭제","PDFE.Views.Toolbar.capBtnDownloadForm":"PDF형식으로 다운로드","PDFE.Views.Toolbar.capBtnEditText":"텍스트 편집","PDFE.Views.Toolbar.capBtnHand":"손","PDFE.Views.Toolbar.capBtnNext":"다음 필드","PDFE.Views.Toolbar.capBtnPolyLineComment":"연결선","PDFE.Views.Toolbar.capBtnPrev":"이전 필드","PDFE.Views.Toolbar.capBtnRecognize":"텍스트 편집","PDFE.Views.Toolbar.capBtnRectComment":"직사각형","PDFE.Views.Toolbar.capBtnRotate":"회전","PDFE.Views.Toolbar.capBtnRotatePage":"페이지 회전","PDFE.Views.Toolbar.capBtnSaveForm":"PDF로 저장","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"다른 이름으로 저장...","PDFE.Views.Toolbar.capBtnSelect":"선택","PDFE.Views.Toolbar.capBtnShowComments":"댓글 표시","PDFE.Views.Toolbar.capBtnStamp":"스탬프","PDFE.Views.Toolbar.capBtnSubmit":"전송","PDFE.Views.Toolbar.capBtnTextCallout":"텍스트 말풍선","PDFE.Views.Toolbar.capBtnTextComment":"텍스트 댓글","PDFE.Views.Toolbar.mniCapitalizeWords":"각 단어의 첫글자를 대문자로","PDFE.Views.Toolbar.mniInsertSSE":"스프레드시트 삽입","PDFE.Views.Toolbar.mniLowerCase":"소문자","PDFE.Views.Toolbar.mniSentenceCase":"문장의 첫 글자를 대문자로","PDFE.Views.Toolbar.mniToggleCase":"대/소문자 전환","PDFE.Views.Toolbar.mniUpperCase":"대문자","PDFE.Views.Toolbar.strMenuNoFill":"채우기 없음","PDFE.Views.Toolbar.textAlignBottom":"텍스트를 하단에 정렬","PDFE.Views.Toolbar.textAlignCenter":"가운데 정렬","PDFE.Views.Toolbar.textAlignJust":"양쪽 맞춤","PDFE.Views.Toolbar.textAlignLeft":"왼쪽 정렬","PDFE.Views.Toolbar.textAlignMiddle":"중간에 텍스트 정렬","PDFE.Views.Toolbar.textAlignRight":"텍스트 정렬","PDFE.Views.Toolbar.textAlignTop":"텍스트를 상단에 정렬","PDFE.Views.Toolbar.textArrangeBack":"맨 뒤로 보내기","PDFE.Views.Toolbar.textArrangeBackward":"뒤로 이동","PDFE.Views.Toolbar.textArrangeForward":"앞으로 보내기","PDFE.Views.Toolbar.textArrangeFront":"맨 앞으로 가져오기","PDFE.Views.Toolbar.textBold":"굵게","PDFE.Views.Toolbar.textClear":"필드 지우기","PDFE.Views.Toolbar.textClearFields":"모든 필드 지우기","PDFE.Views.Toolbar.textColumnsCustom":"사용자 지정 열","PDFE.Views.Toolbar.textColumnsOne":"1열","PDFE.Views.Toolbar.textColumnsThree":"3열","PDFE.Views.Toolbar.textColumnsTwo":"2열","PDFE.Views.Toolbar.textDirLtr":"왼쪽에서 오른쪽으로","PDFE.Views.Toolbar.textDirRtl":"오른쪽에서 왼쪽으로","PDFE.Views.Toolbar.textEditMode":"PDF 편집","PDFE.Views.Toolbar.textHighlight":"하이라이트","PDFE.Views.Toolbar.textItalic":"기울임꼴","PDFE.Views.Toolbar.textListSettings":"목록 설정","PDFE.Views.Toolbar.textShapeAlignBottom":"아래쪽 정렬","PDFE.Views.Toolbar.textShapeAlignCenter":"센터 정렬","PDFE.Views.Toolbar.textShapeAlignLeft":"왼쪽 정렬","PDFE.Views.Toolbar.textShapeAlignMiddle":"중간 정렬","PDFE.Views.Toolbar.textShapeAlignRight":"오른쪽 정렬","PDFE.Views.Toolbar.textShapeAlignTop":"상단 정렬","PDFE.Views.Toolbar.textShapesCombine":"결합","PDFE.Views.Toolbar.textShapesFragment":"조각","PDFE.Views.Toolbar.textShapesIntersect":"교차","PDFE.Views.Toolbar.textShapesSubstract":"뺄셈","PDFE.Views.Toolbar.textShapesUnion":"병합","PDFE.Views.Toolbar.textStrikeout":"취소선","PDFE.Views.Toolbar.textSubmited":"폼 전송 성공","PDFE.Views.Toolbar.textSubscript":"첨자","PDFE.Views.Toolbar.textSuperscript":"위 첨자","PDFE.Views.Toolbar.textTabComment":"코멘트","PDFE.Views.Toolbar.textTabEdit":"편집","PDFE.Views.Toolbar.textTabFile":"파일","PDFE.Views.Toolbar.textTabHome":"홈","PDFE.Views.Toolbar.textTabInsert":"삽입","PDFE.Views.Toolbar.textTabRedact":"비공개 처리","PDFE.Views.Toolbar.textTabView":"보기","PDFE.Views.Toolbar.textUnderline":"밑줄","PDFE.Views.Toolbar.tipAddComment":"코멘트 추가","PDFE.Views.Toolbar.tipChangeCase":"대소문자 변경","PDFE.Views.Toolbar.tipClearStyle":"스타일 지우기","PDFE.Views.Toolbar.tipColumns":"열 삽입","PDFE.Views.Toolbar.tipCopy":"복사","PDFE.Views.Toolbar.tipCut":"잘라 내기","PDFE.Views.Toolbar.tipDecFont":"글꼴 크기 감소","PDFE.Views.Toolbar.tipDecPrLeft":"들여쓰기 감소","PDFE.Views.Toolbar.tipDelPage":"페이지를 삭제","PDFE.Views.Toolbar.tipDownload":"파일을 다운로드","PDFE.Views.Toolbar.tipDownloadForm":"파일을 편집 가능한 PDF 문서로 다운로드하세요","PDFE.Views.Toolbar.tipEditMode":"텍스트, 도형, 이미지 등을 추가하거나 편집","PDFE.Views.Toolbar.tipEditText":"텍스트 편집","PDFE.Views.Toolbar.tipFirstPage":"첫 번째 페이지로 이동","PDFE.Views.Toolbar.tipFontColor":"글꼴 색","PDFE.Views.Toolbar.tipFontName":"글꼴","PDFE.Views.Toolbar.tipFontSize":"글꼴 크기","PDFE.Views.Toolbar.tipHAligh":"수평 정렬","PDFE.Views.Toolbar.tipHandTool":"손도구","PDFE.Views.Toolbar.tipHighlightColor":"색상 강조 표시","PDFE.Views.Toolbar.tipIncFont":"글꼴 크기 증가","PDFE.Views.Toolbar.tipIncPrLeft":"들여 쓰기","PDFE.Views.Toolbar.tipInsertArrowComment":"화살표 그리기","PDFE.Views.Toolbar.tipInsertCircleComment":"원 또는 타원 그리기","PDFE.Views.Toolbar.tipInsertPolyLineComment":"서로 연결되는 선 그리기","PDFE.Views.Toolbar.tipInsertRectComment":"직사각형 또는 정사각형 그리기","PDFE.Views.Toolbar.tipInsertStamp":"스탬프 삽입","PDFE.Views.Toolbar.tipInsertTextCallout":"텍스트 말풍선 삽입","PDFE.Views.Toolbar.tipInsertTextComment":"텍스트 주석 삽입","PDFE.Views.Toolbar.tipLastPage":"마지막 페이지로 이동","PDFE.Views.Toolbar.tipLineSpace":"줄 간격","PDFE.Views.Toolbar.tipMarkers":"글머리 기호","PDFE.Views.Toolbar.tipMarkersArrow":"화살 글머리 기호","PDFE.Views.Toolbar.tipMarkersCheckmark":"체크 표시 글머리 기호","PDFE.Views.Toolbar.tipMarkersDash":"대시 글머리 기호","PDFE.Views.Toolbar.tipMarkersFRhombus":"채워진 마름모 글머리 기호","PDFE.Views.Toolbar.tipMarkersFRound":"채워진 원형 글머리 기호","PDFE.Views.Toolbar.tipMarkersFSquare":"채워진 사각형 글머리 기호","PDFE.Views.Toolbar.tipMarkersHRound":"빈 원형 글머리 기호","PDFE.Views.Toolbar.tipMarkersStar":"별 글머리 기호","PDFE.Views.Toolbar.tipNextForm":"다음 필드로 이동","PDFE.Views.Toolbar.tipNextPage":"다음 페이지로 이동","PDFE.Views.Toolbar.tipNone":"없음","PDFE.Views.Toolbar.tipNumbers":"번호 매기기","PDFE.Views.Toolbar.tipPaste":"붙여 넣기","PDFE.Views.Toolbar.tipPrevForm":"이전 필드로 이동","PDFE.Views.Toolbar.tipPrevPage":"이전 페이지로 이동","PDFE.Views.Toolbar.tipPrint":"인쇄","PDFE.Views.Toolbar.tipPrintQuick":"빠른 인쇄","PDFE.Views.Toolbar.tipRecognize":"텍스트 편집","PDFE.Views.Toolbar.tipRedo":"다시 실행","PDFE.Views.Toolbar.tipRotate":"페이지 회전","PDFE.Views.Toolbar.tipSave":"저장","PDFE.Views.Toolbar.tipSaveCoauth":"다른 사용자가 볼 수 있도록 변경 사항을 저장하십시오.","PDFE.Views.Toolbar.tipSaveForm":"채우기 형식 문서로 저장","PDFE.Views.Toolbar.tipSelectAll":"모두 선택","PDFE.Views.Toolbar.tipSelectTool":"도구 선택","PDFE.Views.Toolbar.tipShapeAlign":"도형 정렬","PDFE.Views.Toolbar.tipShapeArrange":"도형 배열","PDFE.Views.Toolbar.tipShapeMerge":"도형 병합","PDFE.Views.Toolbar.tipSubmit":"전송폼","PDFE.Views.Toolbar.tipSynchronize":"다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.","PDFE.Views.Toolbar.tipTextDir":"텍스트 방향","PDFE.Views.Toolbar.tipUndo":"실행 취소","PDFE.Views.Toolbar.tipVAligh":"수직 정렬","PDFE.Views.Toolbar.txtArrowComment":"화살표","PDFE.Views.Toolbar.txtCircleComment":"원","PDFE.Views.Toolbar.txtDistribHor":"가로 방향 분포","PDFE.Views.Toolbar.txtDistribVert":"수직 분포","PDFE.Views.Toolbar.txtGroup":"그룹","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"선택한 개체 정렬","PDFE.Views.Toolbar.txtOpacity":"불투명도","PDFE.Views.Toolbar.txtPageAlign":"페이지 정렬","PDFE.Views.Toolbar.txtPolyLineComment":"연결선","PDFE.Views.Toolbar.txtRectComment":"직사각형","PDFE.Views.Toolbar.txtRotateLeft":"왼쪽으로 회전","PDFE.Views.Toolbar.txtRotatePage":"페이지 회전","PDFE.Views.Toolbar.txtRotatePageRight":"페이지를 오른쪽으로 회전","PDFE.Views.Toolbar.txtRotateRight":"오른쪽으로 회전","PDFE.Views.Toolbar.txtSize":"크기","PDFE.Views.Toolbar.txtUngroup":"그룹 해제","PDFE.Views.ViewTab.capBtnRecognize":"텍스트 편집","PDFE.Views.ViewTab.textAlwaysShowToolbar":"항상 도구 모음 표시","PDFE.Views.ViewTab.textDarkDocument":"다크 문서","PDFE.Views.ViewTab.textEditMode":"PDF 편집","PDFE.Views.ViewTab.textFill":"채우기","PDFE.Views.ViewTab.textFitToPage":"페이지에 맞춤","PDFE.Views.ViewTab.textFitToWidth":"너비에 맞춤","PDFE.Views.ViewTab.textInterfaceTheme":"인터페이스 테마","PDFE.Views.ViewTab.textLeftMenu":"왼쪽 패널","PDFE.Views.ViewTab.textLine":"선","PDFE.Views.ViewTab.textNavigation":"내비게이션","PDFE.Views.ViewTab.textOutline":"제목","PDFE.Views.ViewTab.textRightMenu":"오른쪽 패널","PDFE.Views.ViewTab.textStatusBar":"상태 바","PDFE.Views.ViewTab.textTabStyle":"탭 스타일","PDFE.Views.ViewTab.textZoom":"확대/축소","PDFE.Views.ViewTab.tipDarkDocument":"다크 문서","PDFE.Views.ViewTab.tipEditMode":"텍스트, 도형, 이미지 등을 추가하거나 편집","PDFE.Views.ViewTab.tipFitToPage":"페이지에 맞춤","PDFE.Views.ViewTab.tipFitToWidth":"너비에 맞춤","PDFE.Views.ViewTab.tipHeadings":"제목","PDFE.Views.ViewTab.tipInterfaceTheme":"인터페이스 테마","PDFE.Views.ViewTab.tipRecognize":"텍스트 편집"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":"경고","Common.Controllers.Desktop.hintBtnHome":"메인 창 표시","Common.Controllers.Desktop.itemCreateFromTemplate":"템플릿에서 만들기","Common.Controllers.ExternalLinks.textAddExternalData":"외부 소스로의 링크가 추가되었습니다. 데이터 탭에서 이러한 링크를 업데이트할 수 있습니다.","Common.Controllers.ExternalLinks.textDontUpdate":"업데이트하지 않음","Common.Controllers.ExternalLinks.textUpdate":"업데이트","Common.Controllers.ExternalLinks.txtErrorExternalLink":"오류: 업데이트에 실패했습니다.","Common.Controllers.ExternalLinks.warnUpdateExternalData":"이 통합 문서에는 하나 이상의 안전하지 않을 수 있는 외부 소스로의 링크가 포함되어 있습니다.
만약 이 링크를 신뢰한다면 최신 데이터를 얻기 위해 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"이 문서에는 안전하지 않을 수 있는 하나 이상의 외부 원본에 대한 연결이 포함되어 있습니다.
링크를 신뢰하는 경우 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"이 프레젠테이션에는 안전하지 않을 수 있는 하나 이상의 외부 원본에 대한 연결이 포함되어 있습니다.
링크를 신뢰하는 경우 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.History.notcriticalErrorTitle":"경고","Common.Controllers.History.txtErrorLoadHistory":"기록 불러오기에 실패했습니다","Common.Controllers.Plugins.helpMoveMacros":"매크로 작업을 시작하려면 보기 탭으로 전환하세요.","Common.Controllers.Plugins.helpMoveMacrosHeader":"이동된 매크로 버튼","Common.Controllers.Plugins.helpUseMacros":"매크로 버튼은 여기에 있습니다","Common.Controllers.Plugins.helpUseMacrosHeader":"매크로 접근 권한이 업데이트되었습니다","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"플러그인이 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 이곳에서 사용할 수 있습니다.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}이(가) 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 여기에서 사용할 수 있습니다.","Common.Controllers.Plugins.textRunInstalledPlugins":"설치된 플러그인 실행","Common.Controllers.Plugins.textRunPlugin":"플러그인 실행","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"표의 맨 아래에 새로운 행 추가.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"선택한 텍스트 조각에 제목 1의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"선택한 텍스트 조각에 제목 2의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"선택한 텍스트 조각에 제목 3의 스타일을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"선택한 텍스트 조각에서 순서 없는 글머리 기호 목록을 만들거나 새 목록을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"키보드 화살표를 사용하여 선택한 객체를 크게 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"키보드 화살표를 사용하여 선택한 객체를 왼쪽으로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"키보드 화살표를 사용하여 선택한 객체를 오른쪽으로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"키보드 화살표를 사용하여 선택한 객체를 한 단계 위로 크게 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionBold":"선택한 텍스트의 글꼴을 굵게 적용하여 더 두드러지게 표시합니다.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"문단을 중앙 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"양식에서 다음 콤보 상자 옵션을 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"양식에서 이전 콤보 상자 옵션을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"현재 PDF 창 닫기","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"메뉴 또는 모달 창을 닫습니다. 댓글 및 검토 변경 사항이 있는 팝업 및 풍선을 재설정합니다. 표 그리기 및 지우기 모드를 재설정합니다. 텍스트 드래그 앤 드롭을 재설정합니다. 마커 선택 모드를 재설정합니다. 서식 복사 모드를 재설정합니다. 도형 선택을 해제합니다. 도형 추가 모드를 재설정합니다. 머리글/바닥글을 종료합니다. 양식 작성을 종료합니다.","Common.Controllers.Shortcuts.txtDescriptionCopy":"선택한 텍스트 조각을 컴퓨터 클립보드 메모리로 보냅니다. 복사한 텍스트는 나중에 같은 문서의 다른 위치, 다른 문서 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"현재 편집 중인 텍스트의 선택한 부분에서 서식을 복사합니다. 복사한 서식은 나중에 같은 문서의 다른 텍스트 부분에 적용할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"커서 오른쪽에 저작권 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionCut":"선택한 텍스트 조각을 삭제하고 컴퓨터 클립보드 메모리로 보냅니다. 복사한 텍스트는 나중에 같은 문서의 다른 위치, 다른 문서 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 줄입니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"커서 왼쪽에 있는 문자 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"커서 왼쪽에 있는 단어/선택 항목/그래픽 개체 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"커서 오른쪽에 있는 문자 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"커서 오른쪽에 있는 단어/선택 영역/그래픽 개체 하나를 삭제합니다.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"차트 제목이 선택되어 있을 때 제목이 비어 있으면 커서를 줄의 시작 부분으로 옮기고, 그렇지 않으면 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"마지막으로 취소한 작업을 반복합니다.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"PDF의 모든 텍스트 선택","Common.Controllers.Shortcuts.txtDescriptionEditShape":"도형을 선택한 상태에서 내용이 없으면 내용을 만들고 커서를 줄의 시작 부분으로 이동합니다. 내용이 비어 있으면 커서를 해당 내용으로 이동하고, 비어 있으면 전체 내용을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"가장 최근에 수행한 작업을 되돌립니다.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"커서 오른쪽에 긴 대시를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"커서 오른쪽에 짧은 대시를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"현재 문단을 끝내고 새로운 문단을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"셀 내에서 새로운 문단을 시작합니다.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"방정식 인수에 새로운 입력 칸 추가.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"연산자의 정렬 수준을 왼쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"연산자의 정렬 수준을 오른쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"현재 커서 위치에 유로 기호(€)를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"현재 커서 위치에 줄임표를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 늘립니다.","Common.Controllers.Shortcuts.txtDescriptionIndent":"왼쪽에서 한 단락을 점진적으로 들여쓰기하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"열 나누기 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"주석을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"현재 커서 위치에 수식을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"각주 넣기.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"웹 주소로 이동할 수 있는 하이퍼링크를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"새 단락을 시작하지 않고 줄 나누기 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"여러 줄 양식에 줄 바꿈 추가.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"현재 커서 위치에 페이지 나누기를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"현재 커서 위치에 현재 쪽 번호 넣기.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"문단에 탭문자 더하기(커서가 문단의 시작에 있지 않다면)","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"테이블 안에 테이블 구분을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionItalic":"선택한 텍스트 조각을 기울임꼴로 표시하고 약간 비스듬하게 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"문단을 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"문단 왼쪽 정렬","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 아래로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 왼쪽으로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 오른쪽으로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"지정된 키를 누르고 키보드 화살표를 사용해 선택한 객체를 한 픽셀씩 위로 이동시키세요.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"선택한 단락의 들여쓰기를 늘리세요.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"선택한 문단의 들여쓰기를 줄입니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"현재 선택된 개체 다음 개체로 포커스를 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"현재 선택된 개체 이전 개체로 포커스를 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"커서를 한 줄 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"현재 편집 중인 PDF의 맨 끝으로 커서를 이동합니다","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"현재 편집 중인 줄의 끝에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"커서를 오른쪽으로 한 단어 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"커서를 왼쪽으로 한 글자 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"아래쪽 머리글로 이동합니다(커서가 머리글/바닥글에 있을 경우).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"(커서가 머리글/바닥글에 있을 경우) 아래쪽 머리글/바닥글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"테이블 행의 다음 셀로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"다음 입력란으로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"현재 편집 중인 PDF의 다음 페이지로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"테이블의 다음 행으로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"테이블 행의 이전 셀로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"이전 입력란으로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"현재 편집 중인 PDF의 이전 페이지로 이동","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"테이블의 이전 행으로 가세요.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"커서를 오른쪽으로 한 글자 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"현재 편집 중인 PDF의 맨 처음으로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"현재 편집 중인 줄의 시작 부분에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"현재 편집 중인 페이지 바로 다음 페이지의 맨 처음에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"현재 편집 중인 페이지의 바로 앞 페이지에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"커서를 단어의 시작 위치로 이동하거나 왼쪽으로 한 단어 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"커서를 한 줄 위로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"(커서가 머리글/바닥글에 있을 경우) 위쪽 머리글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"(커서가 머리글/바닥글에 있을 경우) 위쪽 머리글/바닥글로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"데스크톱 편집기에서는 다음 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"모달 대화 상자에서 다음 컨트롤로 포커스를 이동하며 탐색합니다.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"문자 사이에 하이픈을 만듭니다. 하이픈은 새 줄을 시작하는 데 사용할 수 없습니다.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"새 줄을 시작하는 데 사용할 수 없는 문자 사이에 공백을 만듭니다.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"온라인 편집기에서 채팅 패널을 열고 메시지를 보내세요.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"댓글 텍스트를 추가할 수 있는 데이터 입력 필드를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"댓글 패널을 열어서 본인의 댓글을 추가하거나 다른 사용자의 댓글에 답변하세요.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"선택한 요소의 상황에 맞는 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"기존 파일을 선택할 수 있는 표준 대화 상자를 엽니다. 이 대화 상자에서 파일을 선택하고 [열기]를 클릭하면 데스크톱 편집기의 새 탭이나 창에서 파일이 열립니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"현재 PDF를 저장·다운로드·인쇄하고, 문서 정보를 확인하며, 새 문서를 생성하거나 기존 PDF를 열고, PDF 편집기 도움말 센터 또는 고급 설정에 접근할 수 있는 파일 패널을 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"찾기 및 바꾸기 메뉴(패널)를 열고 바꾸기 필드를 사용하여 찾은 문자의 하나 이상의 발생을 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"현재 편집 중인 PDF에서 문자/단어/구문을 검색하기 위한 찾기 대화상자를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"PDF 편집기 도움말 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionPaste":"현재 커서 위치에 클립보드의 복사한 텍스트 조각을 삽입합니다. 텍스트는 같은 문서, 다른 문서 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"현재 편집 중인 PDF의 텍스트에 복사한 서식을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"현재 커서 위치에 클립보드의 복사한 텍스트 조각을 원본 서식 없이 삽입합니다. 텍스트는 같은 문서, 다른 문서 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"데스크톱 편집기에서는 이전 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"대화 상자에서 이전 컨트롤에 포커스를 두기 위해 컨트롤 사이를 탐색합니다.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"사용 가능한 프린터로 PDF를 인쇄하거나 파일로 저장합니다","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"현재 커서 위치에 등록 상표 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"선택한 유니코드 코드를 기호로 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"선택한 텍스트 조각의 서식을 지웁니다.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"문단을 오른쪽 정렬과 왼쪽 정렬로 전환합니다.","Common.Controllers.Shortcuts.txtDescriptionSave":"현재 편집 중인 PDF 파일에 대한 모든 변경 사항을 저장합니다. 활성 파일은 현재 파일 이름, 위치, 파일 형식으로 저장됩니다.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"현재 편집 중인 PDF를 다른 이름으로 다운로드… 패널을 열어 지원되는 형식 중 하나로 컴퓨터의 하드 디스크에 저장합니다.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"PDF를 화면에 보이는 한 페이지 정도 아래로 스크롤합니다.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"PDF를 화면에 보이는 한 페이지 정도 위로 스크롤합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"커서 위치의 왼쪽에 있는 문자 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"커서가 있는 곳부터 단어의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"커서를 한 줄 아래로 이동하며 이전 위치와 현재 위치 사이의 모든 문자를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"커서를 한 줄 위로 이동하며 이전 위치와 현재 위치 사이의 모든 문자를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"커서 위치에서 화면 하단까지 페이지 부분을 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"커서 위치에서 화면 상단까지 페이지 부분을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"커서 위치 오른쪽에 있는 문자 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"커서가 있는 곳부터 단어 끝까지의 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"커서가 있는 곳부터 다음 페이지의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"커서가 있는 곳부터 이전 페이지의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"커서 위치에서 PDF의 끝까지 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"커서가 있는 곳부터 현재 줄의 끝까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"커서 위치에서 PDF의 시작 부분까지 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"커서부터 현재 줄의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"인쇄할 수 없는 문자를 표시하거나 숨깁니다.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"현재 커서 위치에 선택적 하이픈을 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"복사한 텍스트의 원본 서식 유지","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"원래 서식 없이 텍스트를 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"복사한 표를 중첩 표로 기존 표의 선택한 셀에 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"기존 테이블의 내용을 복사한 데이터로 바꿉니다.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"애플리케이션에서 수행된 작업의 화면 판독기 전송을 활성화/비활성화합니다.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"목록/들여쓰기 레벨을 높이세요(단락 시작 커서를 사용).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"목록/들여쓰기 수준을 낮춥니다(커서를 문단의 시작 부분에 두었을 때).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"선택한 텍스트 조각에 취소선을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"선택한 텍스트 조각을 작게 만들어 텍스트 줄 하단에 배치합니다(예: 화학식처럼).","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"선택한 텍스트 조각을 작게 만들어 텍스트 줄 상단에 배치합니다(예: 분수처럼).","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"현재 커서 위치에 상표 기호를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"선택한 텍스트 조각에 밑줄을 긋습니다.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"문단의 들여쓰기를 왼쪽에서부터 점진적으로 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"필드(예: 목차)를 업데이트합니다.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"링크를 방문합니다(링크에 커서를 놓은 상태).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"현재 PDF의 확대/축소 비율을 기본값 100%로 재설정합니다","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"현재 편집 중인 PDF를 확대합니다","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"현재 편집 중인 PDF를 축소합니다","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"굵게","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"복사","Common.Controllers.Shortcuts.txtLabelCopyFormat":"복사 형식","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"잘라내기","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"유로 기호","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"가로 줄임표","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"톱니 모양","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"기울임꼴","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage이동","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"붙여넣기","Common.Controllers.Shortcuts.txtLabelPasteFormat":"서식 붙여넣기","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"저장","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"문단 들여쓰기 시작","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"문단 들여쓰기 취소","Common.Controllers.Shortcuts.txtLabelStrikeout":"취소선","Common.Controllers.Shortcuts.txtLabelSubscript":"아래 첨자","Common.Controllers.Shortcuts.txtLabelSuperscript":"위 첨자","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"밑줄","Common.Controllers.Shortcuts.txtLabelUnIndent":"들여쓰기 취소","Common.Controllers.Shortcuts.txtLabelUpdateFields":"필드 업데이트","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"방문링크","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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.textRadar":"레이더","Common.define.chartData.textRadarFilled":"채워진 레이더","Common.define.chartData.textRadarMarker":"마커가 있는 레이더","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.define.smartArt.textAccentedPicture":"강조 이미지","Common.define.smartArt.textAccentProcess":"강조 프로세스","Common.define.smartArt.textAlternatingFlow":"교차 흐름","Common.define.smartArt.textAlternatingHexagons":"교차 육각형","Common.define.smartArt.textAlternatingPictureBlocks":"교차 그림 블록","Common.define.smartArt.textAlternatingPictureCircles":"교차 그림 원형","Common.define.smartArt.textArchitectureLayout":"아키텍처 레이아웃","Common.define.smartArt.textArrowRibbon":"화살표 리본","Common.define.smartArt.textAscendingPictureAccentProcess":"오름차순 그림 강조 프로세스","Common.define.smartArt.textBalance":"균형","Common.define.smartArt.textBasicBendingProcess":"기본 절곡 프로세스","Common.define.smartArt.textBasicBlockList":"기본 차단 리스트","Common.define.smartArt.textBasicChevronProcess":"기본 쉐브론 프로세스","Common.define.smartArt.textBasicCycle":"기본 순환","Common.define.smartArt.textBasicMatrix":"기본 행렬","Common.define.smartArt.textBasicPie":"기본 파이","Common.define.smartArt.textBasicProcess":"기본 프로세스","Common.define.smartArt.textBasicPyramid":"기본 피라미드","Common.define.smartArt.textBasicRadial":"기본 방사형","Common.define.smartArt.textBasicTarget":"기본 대상","Common.define.smartArt.textBasicTimeline":"기본 타임라인","Common.define.smartArt.textBasicVenn":"기본 벤 다이어그램","Common.define.smartArt.textBendingPictureAccentList":"굴곡 그림 강조 목록","Common.define.smartArt.textBendingPictureBlocks":"굴곡 그림 블록","Common.define.smartArt.textBendingPictureCaption":"굴곡 그림 캡션","Common.define.smartArt.textBendingPictureCaptionList":"굴곡 그림 캡션 목록","Common.define.smartArt.textBendingPictureSemiTranparentText":"굴곡 그림 반투명 텍스트","Common.define.smartArt.textBlockCycle":"블록 주기","Common.define.smartArt.textBubblePictureList":"말풍선 그림 목록","Common.define.smartArt.textCaptionedPictures":"캡션이 있는 사진","Common.define.smartArt.textChevronAccentProcess":"쉐브론 액센트 프로세스","Common.define.smartArt.textChevronList":"쉐브론 목록","Common.define.smartArt.textCircleAccentTimeline":"원형 강조 타임라인","Common.define.smartArt.textCircleArrowProcess":"원형 화살표 프로세스","Common.define.smartArt.textCirclePictureHierarchy":"원형 이미지 계층 구조","Common.define.smartArt.textCircleProcess":"원형 프로세스","Common.define.smartArt.textCircleRelationship":"원형 관계","Common.define.smartArt.textCircularBendingProcess":"원형 절곡 공정","Common.define.smartArt.textCircularPictureCallout":"원형 이미지 주석","Common.define.smartArt.textClosedChevronProcess":"닫힌 형태의 쉐브론 프로세스","Common.define.smartArt.textContinuousArrowProcess":"연속 화살표 프로세스","Common.define.smartArt.textContinuousBlockProcess":"연속 블록 프로세스","Common.define.smartArt.textContinuousCycle":"연속적인 주기","Common.define.smartArt.textContinuousPictureList":"연속 그림 목록","Common.define.smartArt.textConvergingArrows":"수렴 화살표","Common.define.smartArt.textConvergingRadial":"수렴 방사형","Common.define.smartArt.textConvergingText":"수렴 텍스트","Common.define.smartArt.textCounterbalanceArrows":"균형 화살표","Common.define.smartArt.textCycle":"주기","Common.define.smartArt.textCycleMatrix":"주기 행렬","Common.define.smartArt.textDescendingBlockList":"내림차순 블록 목록","Common.define.smartArt.textDescendingProcess":"내림차순 프로세스","Common.define.smartArt.textDetailedProcess":"세부 프로세스","Common.define.smartArt.textDivergingArrows":"분기 화살표","Common.define.smartArt.textDivergingRadial":"발산 방사형","Common.define.smartArt.textEquation":"수식","Common.define.smartArt.textFramedTextPicture":"테두리 텍스트 그림","Common.define.smartArt.textFunnel":"깔때기","Common.define.smartArt.textGear":"톱니바퀴","Common.define.smartArt.textGridMatrix":"격자 행렬","Common.define.smartArt.textGroupedList":"그룹 목록","Common.define.smartArt.textHalfCircleOrganizationChart":"반원 형태 조직도","Common.define.smartArt.textHexagonCluster":"육각형 클러스터","Common.define.smartArt.textHexagonRadial":"육각형 방사형","Common.define.smartArt.textHierarchy":"계층","Common.define.smartArt.textHierarchyList":"계층 목록","Common.define.smartArt.textHorizontalBulletList":"가로 글머리 기호 목록","Common.define.smartArt.textHorizontalHierarchy":"수평적 계층","Common.define.smartArt.textHorizontalLabeledHierarchy":"가로 레이블 계층","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"가로 다단계 계층","Common.define.smartArt.textHorizontalOrganizationChart":"가로 조직도","Common.define.smartArt.textHorizontalPictureList":"가로 그림 목록","Common.define.smartArt.textIncreasingArrowProcess":"증가 화살표 프로세스","Common.define.smartArt.textIncreasingCircleProcess":"증가 원형 프로세스","Common.define.smartArt.textInterconnectedBlockProcess":"연결 블록 프로세스","Common.define.smartArt.textInterconnectedRings":"연결 고리","Common.define.smartArt.textInvertedPyramid":"역피라미드","Common.define.smartArt.textLabeledHierarchy":"레이블 계층","Common.define.smartArt.textLinearVenn":"선형 벤 다이어그램","Common.define.smartArt.textLinedList":"선 있는 목록","Common.define.smartArt.textList":"목록","Common.define.smartArt.textMatrix":"행렬","Common.define.smartArt.textMultidirectionalCycle":"다방향 순환","Common.define.smartArt.textNameAndTitleOrganizationChart":"이름 및 직위 조직도","Common.define.smartArt.textNestedTarget":"중첩 목표","Common.define.smartArt.textNondirectionalCycle":"비방향 사이클","Common.define.smartArt.textOpposingArrows":"반대 화살표","Common.define.smartArt.textOpposingIdeas":"대립 아이디어","Common.define.smartArt.textOrganizationChart":"조직도","Common.define.smartArt.textOther":"기타","Common.define.smartArt.textPhasedProcess":"단계별 프로세스","Common.define.smartArt.textPicture":"그림","Common.define.smartArt.textPictureAccentBlocks":"그림 강조 블럭","Common.define.smartArt.textPictureAccentList":"그림 강조 목록","Common.define.smartArt.textPictureAccentProcess":"그림 강조 프로세스","Common.define.smartArt.textPictureCaptionList":"그림 캡션 목록","Common.define.smartArt.textPictureFrame":"사진 프레임","Common.define.smartArt.textPictureGrid":"그림 격자","Common.define.smartArt.textPictureLineup":"사진 라인업","Common.define.smartArt.textPictureOrganizationChart":"그림 조직도","Common.define.smartArt.textPictureStrips":"그림 스트립","Common.define.smartArt.textPieProcess":"파이 프로세스","Common.define.smartArt.textPlusAndMinus":"플러스/마이너스","Common.define.smartArt.textProcess":"프로세스","Common.define.smartArt.textProcessArrows":"프로세스 화살표","Common.define.smartArt.textProcessList":"프로세스 목록","Common.define.smartArt.textPyramid":"피라미드","Common.define.smartArt.textPyramidList":"피라미드 목록","Common.define.smartArt.textRadialCluster":"방사형 클러스터","Common.define.smartArt.textRadialCycle":"방사형 순환","Common.define.smartArt.textRadialList":"방사형 목록","Common.define.smartArt.textRadialPictureList":"방사형 그림 목록","Common.define.smartArt.textRadialVenn":"방사형 벤 다이어그램","Common.define.smartArt.textRandomToResultProcess":"무작위 랜덤 프로세스","Common.define.smartArt.textRelationship":"관계","Common.define.smartArt.textRepeatingBendingProcess":"반복 굴곡 프로세스","Common.define.smartArt.textReverseList":"역방향 목록","Common.define.smartArt.textSegmentedCycle":"분할 순환","Common.define.smartArt.textSegmentedProcess":"분할 프로세스","Common.define.smartArt.textSegmentedPyramid":"분할 피라미드","Common.define.smartArt.textSnapshotPictureList":"스냅샷 그림 목록","Common.define.smartArt.textSpiralPicture":"나선형 그림","Common.define.smartArt.textSquareAccentList":"사각형 강조 목록","Common.define.smartArt.textStackedList":"누적 목록","Common.define.smartArt.textStackedVenn":"누적 벤 다이어그램","Common.define.smartArt.textStaggeredProcess":"계단식 프로세스","Common.define.smartArt.textStepDownProcess":"단계 하향 프로세스","Common.define.smartArt.textStepUpProcess":"단계 상승 프로세스","Common.define.smartArt.textSubStepProcess":"하위 단계 프로세스","Common.define.smartArt.textTabbedArc":"탭 아크","Common.define.smartArt.textTableHierarchy":"표 계층","Common.define.smartArt.textTableList":"표 목록","Common.define.smartArt.textTabList":"탭 목록","Common.define.smartArt.textTargetList":"목표 목록","Common.define.smartArt.textTextCycle":"텍스트 순환","Common.define.smartArt.textThemePictureAccent":"테마 이미지 강조","Common.define.smartArt.textThemePictureAlternatingAccent":"테마 이미지 교체 강조","Common.define.smartArt.textThemePictureGrid":"테마 이미지 격자","Common.define.smartArt.textTitledMatrix":"제목 행렬","Common.define.smartArt.textTitledPictureAccentList":"제목이 있는 이미지 강조 목록","Common.define.smartArt.textTitledPictureBlocks":"제목이 있는 그림 블록","Common.define.smartArt.textTitlePictureLineup":"제목 그림 정렬","Common.define.smartArt.textTrapezoidList":"사다리꼴 목록","Common.define.smartArt.textUpwardArrow":"위쪽 화살표","Common.define.smartArt.textVaryingWidthList":"너비가 다른 목록","Common.define.smartArt.textVerticalAccentList":"수직 강조 목록","Common.define.smartArt.textVerticalArrowList":"수직 화살표 목록","Common.define.smartArt.textVerticalBendingProcess":"수직 절곡 프로세스","Common.define.smartArt.textVerticalBlockList":"수직 블록 목록","Common.define.smartArt.textVerticalBoxList":"수직 상자 목록","Common.define.smartArt.textVerticalBracketList":"수직 괄호 목록","Common.define.smartArt.textVerticalBulletList":"수직 글머리 기호 목록","Common.define.smartArt.textVerticalChevronList":"수직 쉐브론 목록","Common.define.smartArt.textVerticalCircleList":"수직 원 목록","Common.define.smartArt.textVerticalCurvedList":"수직 곡선 목록","Common.define.smartArt.textVerticalEquation":"수직 방정식","Common.define.smartArt.textVerticalPictureAccentList":"수직 방향 그림 강조 목록","Common.define.smartArt.textVerticalPictureList":"수직 이미지 목록","Common.define.smartArt.textVerticalProcess":"수직 프로세스","Common.Translation.textMoreButton":"더","Common.Translation.tipFileLocked":"문서가 편집 잠금 상태입니다.변경한 후 로컬 복사본으로 저장할 수 있습니다.","Common.Translation.tipFileReadOnly":"파일이 읽기 전용입니다. 변경 사항을 유지하려면 파일을 새 이름으로 저장하거나 다른 위치에 저장하세요.","Common.Translation.warnFileLocked":"파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.","Common.Translation.warnFileLockedBtnEdit":"복사본 만들기","Common.Translation.warnFileLockedBtnView":"미리보기","Common.UI.ButtonColored.textAutoColor":"자동","Common.UI.ButtonColored.textEyedropper":"스포이드","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":"목","Common.UI.Calendar.textShortTuesday":"화","Common.UI.Calendar.textShortWednesday":"우리","Common.UI.Calendar.textYears":"년","Common.UI.ExtendedColorDialog.addButtonText":"추가","Common.UI.ExtendedColorDialog.textCurrent":"현재","Common.UI.ExtendedColorDialog.textHexErr":"입력 한 값이 잘못되었습니다.
000000에서 FFFFFF 사이의 값을 입력하십시오.","Common.UI.ExtendedColorDialog.textNew":"신규","Common.UI.ExtendedColorDialog.textRGBErr":"입력 한 값이 잘못되었습니다.
0에서 255 사이의 숫자 값을 입력하십시오.","Common.UI.HSBColorPicker.textNoColor":"색상 없음","Common.UI.InputFieldBtnCalendar.textDate":"날짜선택","Common.UI.InputFieldBtnPassword.textHintHidePwd":"비밀번호 숨기기","Common.UI.InputFieldBtnPassword.textHintHold":"길게 눌러 비밀번호 보기","Common.UI.InputFieldBtnPassword.textHintShowPwd":"비밀번호 표시","Common.UI.SearchBar.capFind":"찾기","Common.UI.SearchBar.capFindRedact":"찾기 및 편집","Common.UI.SearchBar.textFind":"찾기","Common.UI.SearchBar.tipCloseSearch":"검색 닫기","Common.UI.SearchBar.tipNextResult":"다음결과","Common.UI.SearchBar.tipOpenAdvancedSettings":"고급 설정 열기","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"찾기 및 편집","Common.UI.SearchBar.tipPreviousResult":"이전 결과","Common.UI.SearchDialog.textHighlight":"결과 강조 표시","Common.UI.SearchDialog.textMatchCase":"대소 문자를 구분합니다","Common.UI.SearchDialog.textReplaceDef":"대체 텍스트 입력","Common.UI.SearchDialog.textSearchStart":"여기에 텍스트를 입력하십시오","Common.UI.SearchDialog.textTitle":"찾기 및 바꾸기","Common.UI.SearchDialog.textTitle2":"찾기","Common.UI.SearchDialog.textWholeWords":"전체 단어 만","Common.UI.SearchDialog.txtBtnHideReplace":"바꾸기 숨기기","Common.UI.SearchDialog.txtBtnReplace":"바꾸기","Common.UI.SearchDialog.txtBtnReplaceAll":"모두 바꾸기","Common.UI.SynchronizeTip.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.SynchronizeTip.textGotIt":"확인","Common.UI.SynchronizeTip.textNew":"신규","Common.UI.SynchronizeTip.textSynchronize":"다른 사용자가 문서를 변경했습니다.
클릭하여 변경 사항을 저장하고 업데이트를 다시로드하십시오.","Common.UI.ThemeColorPalette.textRecentColors":"최근 색상","Common.UI.ThemeColorPalette.textStandartColors":"표준 색상","Common.UI.ThemeColorPalette.textThemeColors":"테마 색","Common.UI.ThemeColorPalette.textTransparent":"투명한","Common.UI.Themes.txtThemeClassicLight":"클래식 라이트","Common.UI.Themes.txtThemeContrastDark":"어두운 대비","Common.UI.Themes.txtThemeDark":"어두운","Common.UI.Themes.txtThemeGray":"회색","Common.UI.Themes.txtThemeLight":"밝은","Common.UI.Themes.txtThemeModernDark":"모던 다크","Common.UI.Themes.txtThemeModernLight":"모던 라이트","Common.UI.Themes.txtThemeSystem":"시스템과 동일","Common.UI.Window.cancelButtonText":"취소","Common.UI.Window.closeButtonText":"닫기","Common.UI.Window.noButtonText":"아니오","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"확인","Common.UI.Window.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.Window.textError":"오류","Common.UI.Window.textInformation":"정보","Common.UI.Window.textWarning":"경고","Common.UI.Window.yesButtonText":"예","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt 키","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl 키","Common.Utils.String.textShift":"Shift 키","Common.Utils.ThemeColor.txtaccent":"강조","Common.Utils.ThemeColor.txtAqua":"아쿠아","Common.Utils.ThemeColor.txtbackground":"배경","Common.Utils.ThemeColor.txtBlack":"검정","Common.Utils.ThemeColor.txtBlue":"파랑","Common.Utils.ThemeColor.txtBrightGreen":"밝은 녹색","Common.Utils.ThemeColor.txtBrown":"갈색","Common.Utils.ThemeColor.txtDarkBlue":"어두운 파랑색","Common.Utils.ThemeColor.txtDarker":"더 어둡게","Common.Utils.ThemeColor.txtDarkGray":"어두운 회색","Common.Utils.ThemeColor.txtDarkGreen":"어두운 초록색","Common.Utils.ThemeColor.txtDarkPurple":"진한 보라색","Common.Utils.ThemeColor.txtDarkRed":"어두운 빨간색","Common.Utils.ThemeColor.txtDarkTeal":"어두운 암청색","Common.Utils.ThemeColor.txtDarkYellow":"어두운 노란색","Common.Utils.ThemeColor.txtGold":"금색","Common.Utils.ThemeColor.txtGray":"회색","Common.Utils.ThemeColor.txtGreen":"녹색","Common.Utils.ThemeColor.txtIndigo":"남색","Common.Utils.ThemeColor.txtLavender":"라벤더","Common.Utils.ThemeColor.txtLightBlue":"밝은 파랑","Common.Utils.ThemeColor.txtLighter":"더 밝은","Common.Utils.ThemeColor.txtLightGray":"밝은 회색","Common.Utils.ThemeColor.txtLightGreen":"밝은 초록","Common.Utils.ThemeColor.txtLightOrange":"밝은 주황","Common.Utils.ThemeColor.txtLightYellow":"밝은 노랑","Common.Utils.ThemeColor.txtOrange":"주황","Common.Utils.ThemeColor.txtPink":"분홍","Common.Utils.ThemeColor.txtPurple":"보라","Common.Utils.ThemeColor.txtRed":"빨강","Common.Utils.ThemeColor.txtRose":"장미","Common.Utils.ThemeColor.txtSkyBlue":"하늘색","Common.Utils.ThemeColor.txtTeal":"암청색","Common.Utils.ThemeColor.txttext":"텍스트","Common.Utils.ThemeColor.txtTurquosie":"터키옥색","Common.Utils.ThemeColor.txtViolet":"바이올렛","Common.Utils.ThemeColor.txtWhite":"흰색","Common.Utils.ThemeColor.txtYellow":"노랑","Common.Views.About.txtAddress":"주소 :","Common.Views.About.txtLicensee":"라이센스","Common.Views.About.txtLicensor":"라이센서","Common.Views.About.txtMail":"이메일 :","Common.Views.About.txtPoweredBy":"기술 지원","Common.Views.About.txtTel":"전화번호:","Common.Views.About.txtVersion":"버전","Common.Views.Chat.textChat":"채팅","Common.Views.Chat.textClosePanel":"채팅 닫기","Common.Views.Chat.textEnterMessage":"메시지를 입력하세요","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.mniFilterComments":"댓글 표시","Common.Views.Comments.mniFilterGroups":"그룹별 필터링","Common.Views.Comments.mniPositionAsc":"위에서 부터","Common.Views.Comments.mniPositionDesc":"아래로 부터","Common.Views.Comments.textAdd":"추가","Common.Views.Comments.textAddComment":"코멘트 추가","Common.Views.Comments.textAddCommentToDoc":"문서에 댓글 추가","Common.Views.Comments.textAddReply":"댓글 추가","Common.Views.Comments.textAll":"모두","Common.Views.Comments.textAnonym":"손님","Common.Views.Comments.textCancel":"취소","Common.Views.Comments.textClose":"닫기","Common.Views.Comments.textClosePanel":"코멘트 닫기","Common.Views.Comments.textComment":"댓글","Common.Views.Comments.textComments":"코멘트","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"여기에 의견을 입력하십시오","Common.Views.Comments.textHintAddComment":"코멘트 추가","Common.Views.Comments.textOpen":"열기","Common.Views.Comments.textOpenAgain":"다시 열기","Common.Views.Comments.textReply":"댓글","Common.Views.Comments.textResolve":"해결","Common.Views.Comments.textResolved":"해결됨","Common.Views.Comments.textSort":"코멘트 분류","Common.Views.Comments.textSortFilter":"댓글 정렬 및 필터링","Common.Views.Comments.textSortFilterMore":"정렬, 필터 및 기타 옵션","Common.Views.Comments.textSortMore":"정렬 및 기타 옵션","Common.Views.Comments.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.Comments.txtEmpty":"문서에 코멘트가 없습니다","Common.Views.CopyWarningDialog.textDontShow":"이 메시지를 다시 표시하지 않음","Common.Views.CopyWarningDialog.textMsg":"편집기 도구 모음 단추 및 컨텍스트 메뉴 작업을 사용하여 복사, 잘라 내기 및 붙여 넣기 작업은이 편집기 탭 내에서만 수행됩니다.

외부 응용 프로그램으로 복사하거나 붙여 넣으려면 편집기 탭은 다음과 같은 키보드 조합을 사용합니다 : ","Common.Views.CopyWarningDialog.textTitle":"작업 복사, 잘라 내기 및 붙여 넣기","Common.Views.CopyWarningDialog.textToCopy":"복사","Common.Views.CopyWarningDialog.textToCut":"잘라 내기","Common.Views.CopyWarningDialog.textToPaste":"붙여 넣기","Common.Views.CustomizeQuickAccessDialog.textDownload":"다운로드","Common.Views.CustomizeQuickAccessDialog.textMsg":"빠른 실행 도구 모음에 표시할 명령을 선택하세요","Common.Views.CustomizeQuickAccessDialog.textPrint":"인쇄","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"빠른 인쇄","Common.Views.CustomizeQuickAccessDialog.textRedo":"다시 실행","Common.Views.CustomizeQuickAccessDialog.textSave":"저장","Common.Views.CustomizeQuickAccessDialog.textTitle":"빠른 실행 사용자 지정","Common.Views.CustomizeQuickAccessDialog.textUndo":"실행 취소","Common.Views.DocumentAccessDialog.textLoading":"로드 중 ...","Common.Views.DocumentAccessDialog.textTitle":"공유 설정","Common.Views.Draw.hintEraser":"지우개","Common.Views.Draw.hintSelect":"선택","Common.Views.Draw.txtEraser":"지우개","Common.Views.Draw.txtHighlighter":"하이라이터","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"펜","Common.Views.Draw.txtSelect":"선택","Common.Views.Draw.txtSize":"크기","Common.Views.ExternalDiagramEditor.textTitle":"차트 편집기","Common.Views.ExternalEditor.textClose":"닫기","Common.Views.ExternalEditor.textSave":"저장 및 종료","Common.Views.ExternalLinksDlg.closeButtonText":"닫기","Common.Views.ExternalLinksDlg.textAutoUpdate":"연결된 원본에서 데이터 자동 업데이트","Common.Views.ExternalLinksDlg.textChange":"소스 변경","Common.Views.ExternalLinksDlg.textDelete":"링크 해제","Common.Views.ExternalLinksDlg.textDeleteAll":"모든 링크 해제","Common.Views.ExternalLinksDlg.textOk":"확인","Common.Views.ExternalLinksDlg.textOpen":"오픈 소스","Common.Views.ExternalLinksDlg.textSource":"출처","Common.Views.ExternalLinksDlg.textStatus":"상태","Common.Views.ExternalLinksDlg.textUnknown":"알 수 없음","Common.Views.ExternalLinksDlg.textUpdate":"값 업데이트","Common.Views.ExternalLinksDlg.textUpdateAll":"모두 업데이트","Common.Views.ExternalLinksDlg.textUpdating":"업데이트 중…","Common.Views.ExternalLinksDlg.txtTitle":"외부 링크","Common.Views.Header.ariaQuickAccessToolbar":"빠른 실행 도구 모음","Common.Views.Header.labelCoUsersDescr":"파일을 편집 중인 사용자:","Common.Views.Header.textAddFavorite":"즐겨찾기에 추가","Common.Views.Header.textAdvSettings":"고급 설정","Common.Views.Header.textAnnotateDesc":"양식 작성 또는 주석 달기","Common.Views.Header.textBack":"파일 위치 열기","Common.Views.Header.textClose":"파일 닫기","Common.Views.Header.textComment":"댓글 달기","Common.Views.Header.textCommentDesc":"모든 변경 사항이 파일에 저장됩니다. 실시간 공동 작업","Common.Views.Header.textCompactView":"보기 컴팩트 도구 모음","Common.Views.Header.textDownload":"다운로드","Common.Views.Header.textEdit":"편집 중","Common.Views.Header.textEditDesc":"모든 변경 사항이 파일에 저장됩니다. 실시간 공동 작업","Common.Views.Header.textEditDescNoCoedit":"텍스트, 도형, 이미지 등을 추가하거나 편집","Common.Views.Header.textHideLines":"눈금자 숨기기","Common.Views.Header.textHideStatusBar":"상태 표시 줄 숨기기","Common.Views.Header.textPrint":"인쇄","Common.Views.Header.textReadOnly":"읽기 전용","Common.Views.Header.textRemoveFavorite":"즐겨찾기 제거","Common.Views.Header.textShare":"공유","Common.Views.Header.textView":"보기 모드","Common.Views.Header.textViewDesc":"모든 변경 사항이 로컬에 저장됩니다","Common.Views.Header.textViewDescNoCoedit":"보기 또는 주석 달기","Common.Views.Header.textZoom":"확대/축소","Common.Views.Header.tipAccessRights":"문서 액세스 권한 관리","Common.Views.Header.tipComment":"댓글 달기","Common.Views.Header.tipCustomizeQuickAccessToolbar":"빠른 실행 도구 모음 사용자 지정","Common.Views.Header.tipDownload":"파일을 다운로드","Common.Views.Header.tipEdit":"편집 중","Common.Views.Header.tipGoEdit":"현재 파일 편집","Common.Views.Header.tipPrint":"파일 출력","Common.Views.Header.tipPrintQuick":"빠른 인쇄","Common.Views.Header.tipRedo":"다시 실행","Common.Views.Header.tipSave":"저장","Common.Views.Header.tipSearch":"검색","Common.Views.Header.tipUndo":"실행 취소","Common.Views.Header.tipUsers":"사용자 보기","Common.Views.Header.tipView":"보기 모드","Common.Views.Header.tipViewSettings":"보기 설정","Common.Views.Header.tipViewUsers":"사용자보기 및 문서 액세스 권한 관리","Common.Views.Header.txtAccessRights":"액세스 권한 변경","Common.Views.Header.txtRename":"이름 바꾸기","Common.Views.ImageFromUrlDialog.textUrl":"이미지 URL 붙여 넣기 :","Common.Views.ImageFromUrlDialog.txtEmpty":"이 입력란은 필수 항목","Common.Views.ImageFromUrlDialog.txtNotUrl":"이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Input a prompt for the query","Common.Views.MacrosAiDialog.textCreate":"Create","Common.Views.MacrosDialog.textAutostart":"Autostart","Common.Views.MacrosDialog.textConvertFromVBA":"Convert from VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convert macros from VBA","Common.Views.MacrosDialog.textCopy":"Copy","Common.Views.MacrosDialog.textCreateFromDesc":"Create from description","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Create macros from description","Common.Views.MacrosDialog.textCustomFunction":"Custom function","Common.Views.MacrosDialog.textCustomFunctions":"Custom functions","Common.Views.MacrosDialog.textDebug":"Debug","Common.Views.MacrosDialog.textDelete":"Delete","Common.Views.MacrosDialog.textFunctions":"Functions","Common.Views.MacrosDialog.textLoading":"Loading...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Make autostart","Common.Views.MacrosDialog.textRename":"Rename","Common.Views.MacrosDialog.textRun":"Run","Common.Views.MacrosDialog.textSave":"Save","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Unmake autostart","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"Add custom function","Common.Views.MacrosDialog.tipFunctionCopy":"Copy custom function","Common.Views.MacrosDialog.tipFunctionDelete":"Delete custom function","Common.Views.MacrosDialog.tipFunctionRename":"Rename custom function","Common.Views.MacrosDialog.tipMacrosAdd":"Add macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copy macros","Common.Views.MacrosDialog.tipMacrosDebug":"Debug macros","Common.Views.MacrosDialog.tipMacrosRename":"Rename macros","Common.Views.MacrosDialog.tipMacrosRun":"Run macros","Common.Views.MacrosDialog.tipRedo":"Redo","Common.Views.MacrosDialog.tipUndo":"Undo","Common.Views.OpenDialog.closeButtonText":"파일 닫기","Common.Views.OpenDialog.txtEncoding":"인코딩","Common.Views.OpenDialog.txtIncorrectPwd":"비밀번호가 맞지 않음","Common.Views.OpenDialog.txtOpenFile":"파일을 열려면 암호를 입력하십시오.","Common.Views.OpenDialog.txtPassword":"비밀번호","Common.Views.OpenDialog.txtPreview":"미리보기","Common.Views.OpenDialog.txtProtected":"암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.","Common.Views.OpenDialog.txtTitle":"%1 옵션 선택","Common.Views.OpenDialog.txtTitleProtected":"보호 된 파일","Common.Views.PasswordDialog.txtDescription":"문서 보호용 비밀번호를 세팅하세요","Common.Views.PasswordDialog.txtIncorrectPwd":"확인 비밀번호가 같지 않음","Common.Views.PasswordDialog.txtPassword":"비밀번호","Common.Views.PasswordDialog.txtRepeat":"비밀번호 확인","Common.Views.PasswordDialog.txtTitle":"비밀번호 설정","Common.Views.PasswordDialog.txtWarning":"주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.","Common.Views.PluginDlg.textDock":"플러그인 고정","Common.Views.PluginDlg.textLoading":"불러오는 중","Common.Views.PluginPanel.textClosePanel":"플러그 인 닫기","Common.Views.PluginPanel.textHidePanel":"플러그인 축소","Common.Views.PluginPanel.textLoading":"불러오는 중","Common.Views.PluginPanel.textUndock":"플러그인 고정 해제","Common.Views.Plugins.groupCaption":"플러그인","Common.Views.Plugins.strPlugins":"플러그인","Common.Views.Plugins.textBackgroundPlugins":"백그라운드 플러그인","Common.Views.Plugins.textClosePanel":"플러그 인 닫기","Common.Views.Plugins.textLoading":"불러오는 중","Common.Views.Plugins.textSettings":"설정","Common.Views.Plugins.textStart":"시작","Common.Views.Plugins.textStop":"정지","Common.Views.Plugins.textTheListOfBackgroundPlugins":"백그라운드 플러그인 목록","Common.Views.Protection.hintAddPwd":"비밀번호로 암호화","Common.Views.Protection.hintDelPwd":"비밀번호 삭제","Common.Views.Protection.hintPwd":"비밀번호 변경 또는 삭제","Common.Views.Protection.hintSignature":"디지털 서명 또는 서명 라인을 추가 ","Common.Views.Protection.txtAddPwd":"비밀번호 추가","Common.Views.Protection.txtChangePwd":"비밀번호 변경","Common.Views.Protection.txtDeletePwd":"비밀번호 삭제","Common.Views.Protection.txtEncrypt":"암호화","Common.Views.Protection.txtInvisibleSignature":"디지털 서명을 추가","Common.Views.Protection.txtSignature":"서명","Common.Views.Protection.txtSignatureLine":"서명란 추가","Common.Views.RecentFiles.txtOpenRecent":"최근 열기","Common.Views.RenameDialog.textName":"파일 이름","Common.Views.RenameDialog.txtInvalidName":"파일 이름에 다음 문자를 포함 할 수 없습니다 :","Common.Views.ReviewChanges.strFast":"Fast","Common.Views.ReviewChanges.strFastDesc":"Real-time co-editing. All changes are saved automatically.","Common.Views.ReviewChanges.strStrict":"Strict","Common.Views.ReviewChanges.strStrictDesc":"Use the 'Save' button to sync the changes you and others make.","Common.Views.ReviewChanges.tipCoAuthMode":"Set co-editing mode","Common.Views.ReviewChanges.tipCommentRem":"Delete comments","Common.Views.ReviewChanges.tipCommentRemCurrent":"Delete current comments","Common.Views.ReviewChanges.tipCommentResolve":"Resolve comments","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolve current comments","Common.Views.ReviewChanges.tipHistory":"Show version history","Common.Views.ReviewChanges.tipSharing":"Manage document access rights","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Close","Common.Views.ReviewChanges.txtCoAuthMode":"Co-editing Mode","Common.Views.ReviewChanges.txtCommentRemAll":"Delete all comments","Common.Views.ReviewChanges.txtCommentRemCurrent":"Delete current comments","Common.Views.ReviewChanges.txtCommentRemMy":"Delete my comments","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Delete my current comments","Common.Views.ReviewChanges.txtCommentRemove":"Delete","Common.Views.ReviewChanges.txtCommentResolve":"Resolve","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolve all comments","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolve current comments","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolve my comments","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolve my current comments","Common.Views.ReviewChanges.txtHistory":"Version history","Common.Views.ReviewChanges.txtSharing":"Sharing","Common.Views.ReviewPopover.textAdd":"추가","Common.Views.ReviewPopover.textAddReply":"답장 추가","Common.Views.ReviewPopover.textCancel":"취소","Common.Views.ReviewPopover.textClose":"닫기","Common.Views.ReviewPopover.textComment":"댓글","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"여기에 의견을 입력하십시오","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.ReviewPopover.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.ReviewPopover.txtAccept":"수락","Common.Views.ReviewPopover.txtDeleteTip":"삭제","Common.Views.ReviewPopover.txtEditTip":"편집","Common.Views.ReviewPopover.txtReject":"거부","Common.Views.SaveAsDlg.textLoading":"로드 중","Common.Views.SaveAsDlg.textTitle":"저장 폴더","Common.Views.SearchPanel.textCaseSensitive":"대소 문자를 구분합니다","Common.Views.SearchPanel.textCloseSearch":"검색 닫기","Common.Views.SearchPanel.textContentChanged":"문서가 변경되었습니다.","Common.Views.SearchPanel.textFind":"찾기","Common.Views.SearchPanel.textFindAndRedact":"찾고 편집","Common.Views.SearchPanel.textFindAndReplace":"찾기 및 바꾸기","Common.Views.SearchPanel.textFindRedact":"찾기 및 편집","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} 항목이 성공적으로 대체되었습니다.","Common.Views.SearchPanel.textMark":"편집 대상 지정","Common.Views.SearchPanel.textMarkAll":"모두 표시","Common.Views.SearchPanel.textMatchUsingRegExp":"정규 표현식을 사용하여 일치하는 것을 찾기","Common.Views.SearchPanel.textNoMatches":"일치 하는 항목 없음","Common.Views.SearchPanel.textNoSearchResults":"검색결과 없음","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} 항목이 대체되었습니다. 남은 {2} 항목은 다른 사용자에 의해 잠겨 있습니다.","Common.Views.SearchPanel.textReplace":"바꾸기","Common.Views.SearchPanel.textReplaceAll":"모두 바꾸기","Common.Views.SearchPanel.textReplaceWith":"다음으로 교체","Common.Views.SearchPanel.textSearchAgain":"{0}정확한 결과를 보려면 새 검색 {1}을(를) 수행하십시오.","Common.Views.SearchPanel.textSearchHasStopped":"검색이 중지되었습니다","Common.Views.SearchPanel.textSearchResults":"검색결과: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"검색 결과","Common.Views.SearchPanel.textTooManyResults":"표시할 결과가 너무 많습니다.","Common.Views.SearchPanel.textWholeWords":"전체 단어 만","Common.Views.SearchPanel.tipNextResult":"다음결과","Common.Views.SearchPanel.tipPreviousResult":"이전 결과","Common.Views.SelectFileDlg.textLoading":"로드 중","Common.Views.SelectFileDlg.textTitle":"데이터 소스 선택","Common.Views.ShapeShadowDialog.txtAngle":"각도","Common.Views.ShapeShadowDialog.txtDistance":"간격","Common.Views.ShapeShadowDialog.txtSize":"크기","Common.Views.ShapeShadowDialog.txtTitle":"그림자 조정","Common.Views.ShapeShadowDialog.txtTransparency":"투명","Common.Views.ShortcutsDialog.txtDescription":"세부 설명","Common.Views.ShortcutsDialog.txtEmpty":"일치하는 결과가 없습니다. 검색 조건을 조정하세요.","Common.Views.ShortcutsDialog.txtRestoreAll":"모든 것을 기본값으로 복원","Common.Views.ShortcutsDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsDialog.txtRestoreDescription":"모든 단축키 설정이 초기상태로 복구될 것입니다.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"기본값으로 복원","Common.Views.ShortcutsDialog.txtSearch":"검색","Common.Views.ShortcutsDialog.txtTitle":"키보드 단축키","Common.Views.ShortcutsEditDialog.txtAction":"동작","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"원하는 단축키를 입력하세요","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"%1 동작에 사용된 단축키","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"%1 동작에 사용된 단축키이고 변경될 수 없음","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"%1 동작에 사용된 단축키","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"%1 동작에 사용된 단축키이고 변경할 수 없음","Common.Views.ShortcutsEditDialog.txtNewShortcut":"새로운 단축키","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"\"%1\" 동작에 대한 단축키가 초기상태로 복구될 것입니다.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"기본값으로 복원","Common.Views.ShortcutsEditDialog.txtTitle":"단축키 편집","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"원하는 단축키를 입력하세요","Common.Views.UserNameDialog.textDontShow":"다시 표시하지 않음","Common.Views.UserNameDialog.textLabel":"라벨:","Common.Views.UserNameDialog.textLabelError":"라벨은 비워 둘 수 없습니다.","PDFE.Controllers.InsTab.textAccent":"악센트","PDFE.Controllers.InsTab.textBracket":"대괄호","PDFE.Controllers.InsTab.textFraction":"분수","PDFE.Controllers.InsTab.textFunction":"함수","PDFE.Controllers.InsTab.textInsert":"삽입","PDFE.Controllers.InsTab.textIntegral":"적분","PDFE.Controllers.InsTab.textLargeOperator":"대형 연산자","PDFE.Controllers.InsTab.textLimitAndLog":"한계 및 로그 수","PDFE.Controllers.InsTab.textMatrix":"행렬","PDFE.Controllers.InsTab.textOperator":"연산자","PDFE.Controllers.InsTab.textRadical":"근호","PDFE.Controllers.InsTab.textScript":"스크립트","PDFE.Controllers.InsTab.textShape":"도형","PDFE.Controllers.InsTab.textSymbols":"기호","PDFE.Controllers.InsTab.txtAccent_Accent":"급성","PDFE.Controllers.InsTab.txtAccent_ArrowD":"위에 있는 양방향 화살표","PDFE.Controllers.InsTab.txtAccent_ArrowL":"위에 있는 왼쪽 화살표","PDFE.Controllers.InsTab.txtAccent_ArrowR":"위에 있는 오른쪽 화살표","PDFE.Controllers.InsTab.txtAccent_Bar":"막대","PDFE.Controllers.InsTab.txtAccent_BarBot":"밑줄","PDFE.Controllers.InsTab.txtAccent_BarTop":"오버바","PDFE.Controllers.InsTab.txtAccent_BorderBox":"테두리 상자 수식 (자리 표시자 포함)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"상자화 된 수식 (예)","PDFE.Controllers.InsTab.txtAccent_Check":"확인","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"아래쪽 중괄호","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"위 중괄호","PDFE.Controllers.InsTab.txtAccent_Custom_1":"벡터 A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"ABC 위에 덧선","PDFE.Controllers.InsTab.txtAccent_Custom_3":"위에 바가 있는 x XOR y","PDFE.Controllers.InsTab.txtAccent_DDDot":"트리플 도트","PDFE.Controllers.InsTab.txtAccent_DDot":"이중 점","PDFE.Controllers.InsTab.txtAccent_Dot":"점","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"이중 바 상단 표시","PDFE.Controllers.InsTab.txtAccent_Grave":"무덤","PDFE.Controllers.InsTab.txtAccent_GroupBot":"아래의 문자 그룹화","PDFE.Controllers.InsTab.txtAccent_GroupTop":"위의 문자 그룹화","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"위쪽의 왼쪽 화살촉","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"오른쪽 위 하푼","PDFE.Controllers.InsTab.txtAccent_Hat":"모자","PDFE.Controllers.InsTab.txtAccent_Smile":"브레브","PDFE.Controllers.InsTab.txtAccent_Tilde":"물결표","PDFE.Controllers.InsTab.txtBasicShapes":"기본 도형","PDFE.Controllers.InsTab.txtBracket_Angle":"대괄호","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"구분 기호가있는 대괄호","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"구분 기호가 있는 대괄호","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"오른쪽 꺽쇠괄호","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"왼쪽 꺾쇠 괄호","PDFE.Controllers.InsTab.txtBracket_Curve":"대괄호","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"구분 기호가있는 대괄호","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"오른쪽 중괄호","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"왼쪽 중괄호","PDFE.Controllers.InsTab.txtBracket_Custom_1":"사례 (두 조건)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"사례 (세 조건)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"객체 쌓기","PDFE.Controllers.InsTab.txtBracket_Custom_4":"괄호 안에 객체 쌓기","PDFE.Controllers.InsTab.txtBracket_Custom_5":"사례 사례","PDFE.Controllers.InsTab.txtBracket_Custom_6":"이항 계수","PDFE.Controllers.InsTab.txtBracket_Custom_7":"이항 계수 (괄호 포함)","PDFE.Controllers.InsTab.txtBracket_Line":"세로 막대","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"오른쪽 세로 막대","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"왼쪽 세로 막대","PDFE.Controllers.InsTab.txtBracket_LineDouble":"대괄호","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"오른쪽 이중 세로 막대","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"왼쪽 이중 수직선","PDFE.Controllers.InsTab.txtBracket_LowLim":"대괄호","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"오른쪽 바닥 괄호","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"왼쪽 바닥 기호","PDFE.Controllers.InsTab.txtBracket_Round":"대괄호","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"구분 기호가있는 대괄호","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"오른쪽 소괄호","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"왼쪽 괄호","PDFE.Controllers.InsTab.txtBracket_Square":"대괄호","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"오른쪽 대괄호 두 개 사이 자리 표시자","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"대괄호","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"오른쪽 대괄호","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"왼쪽 대괄호","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"왼쪽 대괄호 두 개 사이 자리 표시자","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"이중 대괄호","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"오른쪽 이중 대괄호","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"왼쪽 이중 대괄호","PDFE.Controllers.InsTab.txtBracket_UppLim":"대괄호","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"오른쪽 천장 괄호","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"왼쪽 천장 기호","PDFE.Controllers.InsTab.txtButtons":"버튼","PDFE.Controllers.InsTab.txtCallouts":"설명 말풍선","PDFE.Controllers.InsTab.txtCharts":"차트","PDFE.Controllers.InsTab.txtFiguredArrows":"그림 화살표","PDFE.Controllers.InsTab.txtFractionDiagonal":"비뚤어진 부분","PDFE.Controllers.InsTab.txtFractionDifferential_1":"미분","PDFE.Controllers.InsTab.txtFractionDifferential_2":"대문자 델타 y/대문자 델타 x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"∂y/∂x","PDFE.Controllers.InsTab.txtFractionDifferential_4":"Δy/Δx","PDFE.Controllers.InsTab.txtFractionHorizontal":"선형 분수","PDFE.Controllers.InsTab.txtFractionPi_2":"파이 오버 2","PDFE.Controllers.InsTab.txtFractionSmall":"소분수","PDFE.Controllers.InsTab.txtFractionVertical":"누적분수","PDFE.Controllers.InsTab.txtFunction_1_Cos":"역 코사인 함수","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"쌍곡선 역 코사인 함수","PDFE.Controllers.InsTab.txtFunction_1_Cot":"역 코탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_1_Coth":"쌍곡선 역 코탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_1_Csc":"역 코시컨트 함수","PDFE.Controllers.InsTab.txtFunction_1_Csch":"쌍곡선 반전 보조 함수","PDFE.Controllers.InsTab.txtFunction_1_Sec":"역 분개 함수","PDFE.Controllers.InsTab.txtFunction_1_Sech":"쌍곡선 역 보조 함수","PDFE.Controllers.InsTab.txtFunction_1_Sin":"역 사인 함수","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"쌍곡선 역 사인 함수","PDFE.Controllers.InsTab.txtFunction_1_Tan":"역 탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"쌍곡선 역 탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_Cos":"코사인 함수","PDFE.Controllers.InsTab.txtFunction_Cosh":"쌍곡선 코사인 함수","PDFE.Controllers.InsTab.txtFunction_Cot":"코탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_Coth":"쌍곡선 코탄 센트 함수","PDFE.Controllers.InsTab.txtFunction_Csc":"코시컨트 함수","PDFE.Controllers.InsTab.txtFunction_Csch":"쌍곡선 보조 함수","PDFE.Controllers.InsTab.txtFunction_Custom_1":"사인 세타","PDFE.Controllers.InsTab.txtFunction_Custom_2":"코사인 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"탄젠트 공식","PDFE.Controllers.InsTab.txtFunction_Sec":"시컨트 함수","PDFE.Controllers.InsTab.txtFunction_Sech":"쌍곡선 시컨트 함수","PDFE.Controllers.InsTab.txtFunction_Sin":"사인 함수","PDFE.Controllers.InsTab.txtFunction_Sinh":"쌍곡선 사인 함수","PDFE.Controllers.InsTab.txtFunction_Tan":"탄젠트 함수","PDFE.Controllers.InsTab.txtFunction_Tanh":"쌍곡선 탄젠트 함수","PDFE.Controllers.InsTab.txtIntegral":"적분","PDFE.Controllers.InsTab.txtIntegral_dtheta":"델타 세타","PDFE.Controllers.InsTab.txtIntegral_dx":"델타 x","PDFE.Controllers.InsTab.txtIntegral_dy":"델타 y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"미분","PDFE.Controllers.InsTab.txtIntegralDouble":"이중 적분","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"적분 상하단이 쌓인 이중 적분","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"한계가 있는 이중 적분","PDFE.Controllers.InsTab.txtIntegralOriented":"윤곽선 적분","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"적분 상하단이 쌓인 윤곽선 적분","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"표면 적분","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"표면 적분","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"표면 적분","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"한계가 있는 윤곽선 적분","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"볼륨 정수","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"적분 상하단이 쌓인 볼륨 정수","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"한계가 있는 볼륨 정수","PDFE.Controllers.InsTab.txtIntegralSubSup":"적분","PDFE.Controllers.InsTab.txtIntegralTriple":"삼중적분","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"적분 상하단이 쌓인 삼중 적분","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"한계가 있는 삼중 적분","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"쇄기꼴","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"하한이 있는 논리 AND","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"한계가 있는 논리 AND","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"아래 첨자 하한이 있는 논리 AND","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"아래첨자/위첨자 한계가 있는 논리 AND","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"하한이 있는 코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"한계가 있는 코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"첨자 하한이 있는 코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"첨자 상·하한이 있는 코프로덕트","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"k에 대한 조합 nCk의 합계","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"i=0부터 n까지의 합계","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"두 개의 첨자를 사용하는 합계 예제","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"제품 예시","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"합집합 예제","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"하한이 있는 논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"한계가 있는 논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"아래 첨자 하한이 있는 논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"아래첨자/위첨자 한계가 있는 논리 OR","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"교차점","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"하한이 있는 교집합","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"한계가 있는 교집합","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"아래 첨자 하한이 있는 교집합","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"아래첨자/위첨자 한계가 있는 교집합","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"제품","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"하한이 있는 곱셈 기호","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"한계가 있는 곱셈 기호","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"첨자 하한이 있는 곱셈 기호","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"첨자 상·하한이 있는 곱셈 기호","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"합계","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"하한이 있는 합계","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"한계가 있는 합계","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"첨자 하한이 있는 합계","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"첨자 상·하한이 있는 합계","PDFE.Controllers.InsTab.txtLargeOperator_Union":"병합","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"하한이 있는 합집합","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"한계가 있는 합집합","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"첨자 하한이 있는 합집합","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"첨자 상·하한이 있는 합집합","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"제한 예제","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"최대 예제","PDFE.Controllers.InsTab.txtLimitLog_Lim":"제한","PDFE.Controllers.InsTab.txtLimitLog_Ln":"자연 로그","PDFE.Controllers.InsTab.txtLimitLog_Log":"로그","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"로그","PDFE.Controllers.InsTab.txtLimitLog_Max":"최대값","PDFE.Controllers.InsTab.txtLimitLog_Min":"최소값","PDFE.Controllers.InsTab.txtLines":"선","PDFE.Controllers.InsTab.txtMath":"수학","PDFE.Controllers.InsTab.txtMatrix_1_2":"1x2 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_1_3":"1x3 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_2_1":"2x1 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_2_2":"2x2 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"빈 2x2 행렬 (이중 세로 막대 포함)","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"빈 2x2 행렬식","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"빈 2x2 행렬 (소괄호 포함)","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"빈 2x2 행렬 (대괄호 포함)","PDFE.Controllers.InsTab.txtMatrix_2_3":"2x3 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_3_1":"3x1 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_3_2":"3x2 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_3_3":"3x3 빈 행렬","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"기준점","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"중간선 점","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"대각선 점들","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"수직 점","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"소괄호 안의 희소 행렬","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"괄호 안의 희소 행렬","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"2x2 단위 행렬 (0 있음)","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"빈 대각선 셀이 있는 2x2 단위 행렬","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"3x3 단위 행렬 (0 있음)","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"3x3 단위 행렬","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"아래에 있는 양방향 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"위에 있는 양방향 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"왼쪽 아래쪽 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"왼쪽 위 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"오른쪽 아래 화살표","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"오른쪽 위 화살표","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"콜론 등호","PDFE.Controllers.InsTab.txtOperator_Custom_1":"결과값","PDFE.Controllers.InsTab.txtOperator_Custom_2":"델타 결과","PDFE.Controllers.InsTab.txtOperator_Definition":"정의에 의해 동일","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"델타 등호","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"아래에 있는 양방향 이중 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"위에 있는 양방향 이중 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"왼쪽 아래쪽 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"왼쪽 위 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"오른쪽 아래 화살표","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"오른쪽 위 화살표","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"이중 등호","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"마이너스 등호","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"덧셈 등호","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"측정 기준","PDFE.Controllers.InsTab.txtRadicalCustom_1":"이차방정식의 우변","PDFE.Controllers.InsTab.txtRadicalCustom_2":"√(a² + b²)","PDFE.Controllers.InsTab.txtRadicalRoot_2":"차수가 있는 근호","PDFE.Controllers.InsTab.txtRadicalRoot_3":"세제곱근","PDFE.Controllers.InsTab.txtRadicalRoot_n":"차수 있는 근호","PDFE.Controllers.InsTab.txtRadicalSqrt":"제곱근","PDFE.Controllers.InsTab.txtRectangles":"사각형","PDFE.Controllers.InsTab.txtScriptCustom_1":"아래첨자 y의 x 제곱","PDFE.Controllers.InsTab.txtScriptCustom_2":"e의 -iωt 제곱","PDFE.Controllers.InsTab.txtScriptCustom_3":"x 제곱","PDFE.Controllers.InsTab.txtScriptCustom_4":"왼쪽 위 첨자 n, 왼쪽 아래 첨자 1 Y","PDFE.Controllers.InsTab.txtScriptSub":"첨자","PDFE.Controllers.InsTab.txtScriptSubSup":"아래위 첨자","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"왼쪽 아래 첨자-위 첨자","PDFE.Controllers.InsTab.txtScriptSup":"위 첨자","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"설명선 1 (테두리 강조)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"설명선 2 (테두리 강조)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"설명선 3 (테두리 강조)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"설명선 1 (강조선)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"설명선 2 (강조선)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"설명선 3 (강조선)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"되돌리기 또는 이전 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"시작 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"공백 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"문서 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"종료 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"다음 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"도움말 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"홈 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"상세정보 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"동영상 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"뒤로가기 버튼","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"소리 버튼","PDFE.Controllers.InsTab.txtShape_arc":"원호","PDFE.Controllers.InsTab.txtShape_bentArrow":"굽은 화살표","PDFE.Controllers.InsTab.txtShape_bentConnector5":"연결선: 꺾임","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"꺾인 화살표 연결선","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"꺾인 양쪽 화살표 연결선","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"위로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_bevel":"베벨","PDFE.Controllers.InsTab.txtShape_blockArc":"원호 블록","PDFE.Controllers.InsTab.txtShape_borderCallout1":"설명선 1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"설명선 2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"설명선 3","PDFE.Controllers.InsTab.txtShape_bracePair":"양쪽 중괄호","PDFE.Controllers.InsTab.txtShape_callout1":"설명선 1 (테두리 없음)","PDFE.Controllers.InsTab.txtShape_callout2":"설명선 2 (테두리 없음)","PDFE.Controllers.InsTab.txtShape_callout3":"설명선 3 (테두리 없음)","PDFE.Controllers.InsTab.txtShape_can":"원통형","PDFE.Controllers.InsTab.txtShape_chevron":"쉐브론","PDFE.Controllers.InsTab.txtShape_chord":"현","PDFE.Controllers.InsTab.txtShape_circularArrow":"원형 화살표","PDFE.Controllers.InsTab.txtShape_cloud":"클라우드","PDFE.Controllers.InsTab.txtShape_cloudCallout":"생각풍선: 구름 모양","PDFE.Controllers.InsTab.txtShape_corner":"L형 테마","PDFE.Controllers.InsTab.txtShape_cube":"정육면체","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"연결선: 구부러짐","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"곡선 화살표 연결선","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"양방향 곡선 연결선","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"아래로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"왼쪽으로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"오른쪽으로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"위로 굽은 화살표","PDFE.Controllers.InsTab.txtShape_decagon":"십각형","PDFE.Controllers.InsTab.txtShape_diagStripe":"대각선 줄무늬","PDFE.Controllers.InsTab.txtShape_diamond":"다이아몬드","PDFE.Controllers.InsTab.txtShape_dodecagon":"12각형","PDFE.Controllers.InsTab.txtShape_donut":"도넛","PDFE.Controllers.InsTab.txtShape_doubleWave":"이중 물결","PDFE.Controllers.InsTab.txtShape_downArrow":"아래쪽 화살표","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"아래쪽 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_ellipse":"타원형","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"리본: 아래로 구불어지고 기울어짐 ","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"리본: 위로 구불어지고 기울어짐 ","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"순서도: 대체 프로세스","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"순서도: 일치","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"순서도: 연결 연산자","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"순서도: 결정","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"순서도: 지연","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"순서도: 표시","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"순서도: 문서","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"순서도: 추출","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"순서도: 데이터","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"순서도: 내부 스토리지","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"순서도: 디스크","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"순서도: 스토리지에 직접 접근","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"순서도: 순차 접근 스토리지","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"순서도: 수동 입력","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"순서도: 수동조작","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"순서도: 병합","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"순서도: 다중문서","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"순서도: 페이지 외부 커넥터","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"순서도: 저장된 데이터","PDFE.Controllers.InsTab.txtShape_flowChartOr":"순서도: 또는","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"순서도: 미리 정의된 흐름","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"순서도: 준비","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"순서도: 프로세스","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"순서도: 카드","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"순서도: 천공된 종이 테이프","PDFE.Controllers.InsTab.txtShape_flowChartSort":"순서도: 정렬","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"순서도: 합계 노드","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"순서도: 종료","PDFE.Controllers.InsTab.txtShape_foldedCorner":"접힌 모서리","PDFE.Controllers.InsTab.txtShape_frame":"프레임","PDFE.Controllers.InsTab.txtShape_halfFrame":"1/2 액자","PDFE.Controllers.InsTab.txtShape_heart":"하트모양","PDFE.Controllers.InsTab.txtShape_heptagon":"칠각형","PDFE.Controllers.InsTab.txtShape_hexagon":"육각형","PDFE.Controllers.InsTab.txtShape_homePlate":"오각형","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"두루마리 모양: 가로로 말림","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"폭발: 8pt","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"폭발: 14pt","PDFE.Controllers.InsTab.txtShape_leftArrow":"왼쪽 화살표","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"왼쪽 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_leftBrace":"왼쪽 중괄호","PDFE.Controllers.InsTab.txtShape_leftBracket":"왼쪽 대괄호","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"좌우 화살표","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"좌우 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"좌우 위쪽 화살표","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"왼쪽 위 화살표","PDFE.Controllers.InsTab.txtShape_lightningBolt":"번개","PDFE.Controllers.InsTab.txtShape_line":"선","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"화살표","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"양쪽 화살표","PDFE.Controllers.InsTab.txtShape_mathDivide":"나눗셈","PDFE.Controllers.InsTab.txtShape_mathEqual":"등호","PDFE.Controllers.InsTab.txtShape_mathMinus":"뺄셈","PDFE.Controllers.InsTab.txtShape_mathMultiply":"곱셈","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"부등호","PDFE.Controllers.InsTab.txtShape_mathPlus":"덧셈","PDFE.Controllers.InsTab.txtShape_moon":"달모양","PDFE.Controllers.InsTab.txtShape_noSmoking":"\"없음\" 기호","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"깃 모양 오른쪽 화살표","PDFE.Controllers.InsTab.txtShape_octagon":"팔각형","PDFE.Controllers.InsTab.txtShape_parallelogram":"평행 사변형","PDFE.Controllers.InsTab.txtShape_pentagon":"오각형","PDFE.Controllers.InsTab.txtShape_pie":"파이형","PDFE.Controllers.InsTab.txtShape_plaque":"서명","PDFE.Controllers.InsTab.txtShape_plus":"덧셈","PDFE.Controllers.InsTab.txtShape_polyline1":"자유형: 자유 곡선","PDFE.Controllers.InsTab.txtShape_polyline2":"자유형: 도형","PDFE.Controllers.InsTab.txtShape_quadArrow":"사방향 화살표","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"사방향 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_rect":"사각형","PDFE.Controllers.InsTab.txtShape_ribbon":"리본: 아래로 기울어짐","PDFE.Controllers.InsTab.txtShape_ribbon2":"리본: 위로 구불어짐","PDFE.Controllers.InsTab.txtShape_rightArrow":"오른쪽 화살표","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"오른쪽 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_rightBrace":"오른쪽 중괄호","PDFE.Controllers.InsTab.txtShape_rightBracket":"오른쪽 대괄호","PDFE.Controllers.InsTab.txtShape_round1Rect":"사각형: 둥근 한쪽 모서리","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"사각형: 둥근 대각선 방향 모서리","PDFE.Controllers.InsTab.txtShape_round2SameRect":"사각형: 둥근 위쪽 모서리","PDFE.Controllers.InsTab.txtShape_roundRect":"사각형: 둥근 모서리","PDFE.Controllers.InsTab.txtShape_rtTriangle":"오른쪽 삼각형","PDFE.Controllers.InsTab.txtShape_smileyFace":"웃는 얼굴","PDFE.Controllers.InsTab.txtShape_snip1Rect":"사각형: 잘린 한쪽 모서리","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"사각형: 잘린 대각선 방향 모서리","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"사각형: 잘린 양쪽 모서리","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"사각형: 한쪽은 둥글고 한쪽은 짤린 모서리","PDFE.Controllers.InsTab.txtShape_spline":"곡선","PDFE.Controllers.InsTab.txtShape_star10":"10각 별","PDFE.Controllers.InsTab.txtShape_star12":"별: 꼭짓점 12개","PDFE.Controllers.InsTab.txtShape_star16":"별: 꼭짓점 16개","PDFE.Controllers.InsTab.txtShape_star24":"별: 꼭짓점 24개","PDFE.Controllers.InsTab.txtShape_star32":"별: 꼭짓점 32개","PDFE.Controllers.InsTab.txtShape_star4":"별: 꼭짓점 4개","PDFE.Controllers.InsTab.txtShape_star5":"별: 꼭짓점 5개","PDFE.Controllers.InsTab.txtShape_star6":"별: 꼭짓점 6개","PDFE.Controllers.InsTab.txtShape_star7":"별: 꼭짓점 7개","PDFE.Controllers.InsTab.txtShape_star8":"별: 꼭짓점 8개","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"줄무늬 오른쪽 화살표","PDFE.Controllers.InsTab.txtShape_sun":"해 모양","PDFE.Controllers.InsTab.txtShape_teardrop":"눈물 방울","PDFE.Controllers.InsTab.txtShape_textRect":"텍스트 상자","PDFE.Controllers.InsTab.txtShape_trapezoid":"사다리꼴","PDFE.Controllers.InsTab.txtShape_triangle":"삼각형","PDFE.Controllers.InsTab.txtShape_upArrow":"위쪽 화살표","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"위쪽 화살표 설명말풍선","PDFE.Controllers.InsTab.txtShape_upDownArrow":"상하 화살표","PDFE.Controllers.InsTab.txtShape_uturnArrow":"화살표: U자형","PDFE.Controllers.InsTab.txtShape_verticalScroll":"두루마리 모양: 세로로 말림","PDFE.Controllers.InsTab.txtShape_wave":"물결","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"말풍선: 타원형","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"말풍선: 사각형","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"말풍선: 모서리가 둥근 사각형","PDFE.Controllers.InsTab.txtStarsRibbons":"별 & 리본","PDFE.Controllers.InsTab.txtSymbol_about":"대략","PDFE.Controllers.InsTab.txtSymbol_additional":"여집합","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Alpha","PDFE.Controllers.InsTab.txtSymbol_approx":"거의 동일","PDFE.Controllers.InsTab.txtSymbol_ast":"별표 연산자","PDFE.Controllers.InsTab.txtSymbol_beta":"베타","PDFE.Controllers.InsTab.txtSymbol_beth":"벳","PDFE.Controllers.InsTab.txtSymbol_bullet":"글머리 기호 연산자","PDFE.Controllers.InsTab.txtSymbol_cap":"교차점","PDFE.Controllers.InsTab.txtSymbol_cbrt":"큐브 루트","PDFE.Controllers.InsTab.txtSymbol_cdots":"중간 말줄임표","PDFE.Controllers.InsTab.txtSymbol_celsius":"섭씨도","PDFE.Controllers.InsTab.txtSymbol_chi":"카이","PDFE.Controllers.InsTab.txtSymbol_cong":"대략 같음","PDFE.Controllers.InsTab.txtSymbol_cup":"병합","PDFE.Controllers.InsTab.txtSymbol_ddots":"오른쪽 아래 대각선 줄임표","PDFE.Controllers.InsTab.txtSymbol_degree":"도","PDFE.Controllers.InsTab.txtSymbol_delta":"델타","PDFE.Controllers.InsTab.txtSymbol_div":"나누기 기호","PDFE.Controllers.InsTab.txtSymbol_downarrow":"아래쪽 화살표","PDFE.Controllers.InsTab.txtSymbol_emptyset":"빈 세트","PDFE.Controllers.InsTab.txtSymbol_epsilon":"엡실론","PDFE.Controllers.InsTab.txtSymbol_equals":"등호","PDFE.Controllers.InsTab.txtSymbol_equiv":"동일함","PDFE.Controllers.InsTab.txtSymbol_eta":"에타","PDFE.Controllers.InsTab.txtSymbol_exists":"존재함","PDFE.Controllers.InsTab.txtSymbol_factorial":"팩토리얼","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"화씨","PDFE.Controllers.InsTab.txtSymbol_forall":"모두에게","PDFE.Controllers.InsTab.txtSymbol_gamma":"감마","PDFE.Controllers.InsTab.txtSymbol_geq":"크거나 같음","PDFE.Controllers.InsTab.txtSymbol_gg":"훨씬 큼","PDFE.Controllers.InsTab.txtSymbol_greater":"보다 큼","PDFE.Controllers.InsTab.txtSymbol_in":"요소 중","PDFE.Controllers.InsTab.txtSymbol_inc":"증가","PDFE.Controllers.InsTab.txtSymbol_infinity":"무한대","PDFE.Controllers.InsTab.txtSymbol_iota":"요타","PDFE.Controllers.InsTab.txtSymbol_kappa":"카파","PDFE.Controllers.InsTab.txtSymbol_lambda":"람다","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"왼쪽 화살표","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"좌우 화살표","PDFE.Controllers.InsTab.txtSymbol_leq":"보다 작거나 같음","PDFE.Controllers.InsTab.txtSymbol_less":"보다 작음","PDFE.Controllers.InsTab.txtSymbol_ll":"훨씬 적음","PDFE.Controllers.InsTab.txtSymbol_minus":"뺄셈","PDFE.Controllers.InsTab.txtSymbol_mp":"마이너스 플러스","PDFE.Controllers.InsTab.txtSymbol_mu":"Mu","PDFE.Controllers.InsTab.txtSymbol_nabla":"나블라","PDFE.Controllers.InsTab.txtSymbol_neq":"같지 않음","PDFE.Controllers.InsTab.txtSymbol_ni":"구성원으로 포함","PDFE.Controllers.InsTab.txtSymbol_not":"부호 없음","PDFE.Controllers.InsTab.txtSymbol_notexists":"존재하지 않습니다","PDFE.Controllers.InsTab.txtSymbol_nu":"Nu","PDFE.Controllers.InsTab.txtSymbol_o":"오미크론","PDFE.Controllers.InsTab.txtSymbol_omega":"오메가","PDFE.Controllers.InsTab.txtSymbol_partial":"부분 미분","PDFE.Controllers.InsTab.txtSymbol_percent":"백분율","PDFE.Controllers.InsTab.txtSymbol_phi":"파이","PDFE.Controllers.InsTab.txtSymbol_pi":"파이","PDFE.Controllers.InsTab.txtSymbol_plus":"덧셈","PDFE.Controllers.InsTab.txtSymbol_pm":"플러스 마이너스","PDFE.Controllers.InsTab.txtSymbol_propto":"비례","PDFE.Controllers.InsTab.txtSymbol_psi":"프사이","PDFE.Controllers.InsTab.txtSymbol_qdrt":"네 번째 루트","PDFE.Controllers.InsTab.txtSymbol_qed":"증명 종료","PDFE.Controllers.InsTab.txtSymbol_rddots":"오른쪽 위 대각선 줄임표","PDFE.Controllers.InsTab.txtSymbol_rho":"로","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"오른쪽 화살표","PDFE.Controllers.InsTab.txtSymbol_sigma":"시그마","PDFE.Controllers.InsTab.txtSymbol_sqrt":"근호","PDFE.Controllers.InsTab.txtSymbol_tau":"타우","PDFE.Controllers.InsTab.txtSymbol_therefore":"그러므로","PDFE.Controllers.InsTab.txtSymbol_theta":"쎄타","PDFE.Controllers.InsTab.txtSymbol_times":"곱셈 기호","PDFE.Controllers.InsTab.txtSymbol_uparrow":"위쪽 화살표","PDFE.Controllers.InsTab.txtSymbol_upsilon":"업실론","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"변형 엡실론","PDFE.Controllers.InsTab.txtSymbol_varphi":"Phi variant","PDFE.Controllers.InsTab.txtSymbol_varpi":"파이 변형","PDFE.Controllers.InsTab.txtSymbol_varrho":"변형 로","PDFE.Controllers.InsTab.txtSymbol_varsigma":"시그마 변형","PDFE.Controllers.InsTab.txtSymbol_vartheta":"변형 쎄타","PDFE.Controllers.InsTab.txtSymbol_vdots":"수직 줄임표","PDFE.Controllers.InsTab.txtSymbol_xsi":"크시","PDFE.Controllers.InsTab.txtSymbol_zeta":"제타","PDFE.Controllers.LeftMenu.leavePageText":"이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.","PDFE.Controllers.LeftMenu.newDocumentTitle":"이름이 없는 문서","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"경고","PDFE.Controllers.LeftMenu.requestEditRightsText":"편집 권한 요청 중 ...","PDFE.Controllers.LeftMenu.textLoadHistory":"Loading version history...","PDFE.Controllers.LeftMenu.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","PDFE.Controllers.LeftMenu.textSelectPath":"복사본을 저장할 새 이름을 입력하세요","PDFE.Controllers.LeftMenu.txtCompatible":"문서가 새 형식으로 저장됩니다. 모든 편집기 기능을 사용할 수 있지만 문서 레이아웃에 영향을 줄 수 있습니다.
파일을 이전 버전의 MS Word와 호환되도록 하려면 고급 설정에서 \"호환성\" 옵션을 사용하십시오.","PDFE.Controllers.LeftMenu.txtUntitled":"제목없음","PDFE.Controllers.LeftMenu.warnDownloadAs":"이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다.
계속 하시겠습니까?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"{0}(이)가 편집 가능한 형식으로 변환됩니다. 시간이 다소 소요될 수 있습니다. 완성된 문서는 텍스트를 편집할 수 있도록 최적화되므로 특히 원본 파일에 많은 그래픽이 포함된 경우 원본 {0}와/과 완전히 같지 않을 수 있습니다.","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"이 형식으로 계속 저장하면 일부 형식이 손실될 수 있습니다.
계속하시겠습니까?","PDFE.Controllers.Main.applyChangesTextText":"변경로드 중 ...","PDFE.Controllers.Main.applyChangesTitleText":"변경 내용로드 중","PDFE.Controllers.Main.confirmMaxChangesSize":"작업의 크기가 서버에 설정된 제한을 초과합니다.
마지막 작업을 취소하려면 '실행 취소'를 누르고 작업을 로컬로 유지하려면 '계속'을 누르세요 (파일을 다운로드하거나 내용을 복사하여 데이터 손실이 없도록 하십시오).","PDFE.Controllers.Main.convertationTimeoutText":"전환 시간 초과를 초과했습니다.","PDFE.Controllers.Main.criticalErrorExtText":"문서 목록으로 돌아가려면 \"OK\"를 누르십시오.","PDFE.Controllers.Main.criticalErrorExtTextClose":"\"확인\"을 눌러 편집기를 닫으세요.","PDFE.Controllers.Main.criticalErrorTitle":"오류","PDFE.Controllers.Main.downloadErrorText":"다운로드하지 못했습니다.","PDFE.Controllers.Main.downloadMergeText":"다운로드 중 ...","PDFE.Controllers.Main.downloadMergeTitle":"다운로드 중","PDFE.Controllers.Main.downloadTextText":"문서 다운로드 중 ...","PDFE.Controllers.Main.downloadTitleText":"문서 다운로드 중","PDFE.Controllers.Main.errorAccessDeny":"권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.","PDFE.Controllers.Main.errorBadImageUrl":"이미지 URL이 잘못되었습니다.","PDFE.Controllers.Main.errorCannotPasteImg":"이 이미지를 클립보드에서 붙여넣을 수는 없지만 기기에 저장하고,\n거기에서 삽입하거나 텍스트가 없는 이미지를 복사하여 문서에 붙여넣을 수 있습니다.","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"서버 연결이 끊어졌습니다. 지금 문서를 편집 할 수 없습니다.","PDFE.Controllers.Main.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","PDFE.Controllers.Main.errorConnectToServer":"문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하세요.
\"확인\" 버튼을 클릭하면 문서를 다운로드하라는 메시지가 표시됩니다.","PDFE.Controllers.Main.errorCopyDisabled":"보안상의 이유로 이 문서의 내용은 복사할 수 없습니다.","PDFE.Controllers.Main.errorDatabaseConnection":"외부 오류입니다.
데이터베이스 연결에 문제가 발생했습니다. 오류가 계속되면 지원팀에 문의하세요.","PDFE.Controllers.Main.errorDataEncrypted":"암호화 변경 사항이 수신되었으며 해독할 수 없습니다.","PDFE.Controllers.Main.errorDataRange":"잘못된 데이터 범위입니다.","PDFE.Controllers.Main.errorDefaultMessage":"오류 코드: %1","PDFE.Controllers.Main.errorDirectUrl":"문서에 대한 링크를 확인하십시오.
이 링크는 다운로드할 파일에 대한 직접 링크여야 합니다.","PDFE.Controllers.Main.errorEditingDownloadas":"문서를 처리하는 동안 오류가 발생했습니다.
\"다른 이름으로 다운로드\" 옵션을 사용하여 파일의 백업 사본을 컴퓨터의 하드 드라이브에 저장하십시오.","PDFE.Controllers.Main.errorEditingSaveas":"문서를 사용하는 동안 오류가 발생했습니다.
파일의 백업 사본을 컴퓨터의 하드 드라이브에 저장하려면 \"다른 이름으로 저장...\" 옵션을 사용하십시오.","PDFE.Controllers.Main.errorEmailClient":"이메일 클라이언트를 찾을 수 없습니다.","PDFE.Controllers.Main.errorFilePassProtect":"문서가 암호로 보호되어 있습니다.","PDFE.Controllers.Main.errorFileSizeExceed":"이 파일은 이 호스트의 크기 제한을 초과합니다.
자세한 내용은 파일 서비스 호스트의 관리자에게 문의하십시오.","PDFE.Controllers.Main.errorForceSave":"파일 저장중 문제 발생됨. 컴퓨터 하드 드라이브에 파일을 저장하려면 '로 다운로드' 옵션을 사용 또는 나중에 다시 시도하세요.","PDFE.Controllers.Main.errorInconsistentExt":"파일을 여는 중 오류가 발생했습니다.
파일 내용이 파일 확장명과 일치하지 않습니다.","PDFE.Controllers.Main.errorInconsistentExtDocx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 텍스트 문서(예: docx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","PDFE.Controllers.Main.errorInconsistentExtPdf":"파일을 여는 동안 오류가 발생했습니다.
파일의 내용은 pdf/djvu/xps/oxps 형식 중 하나와 일치하지만, 파일의 확장자가 일치하지 않습니다:%1.","PDFE.Controllers.Main.errorInconsistentExtPptx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 프리젠테이션(예: pptx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","PDFE.Controllers.Main.errorInconsistentExtXlsx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용은 스프레드시트(예: xlsx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","PDFE.Controllers.Main.errorKeyEncrypt":"알 수없는 키 설명자","PDFE.Controllers.Main.errorKeyExpire":"키 설명자가 만료되었습니다","PDFE.Controllers.Main.errorLoadingFont":"글꼴 불러오기에 실패하였습니다.
문서 시스템 관리자에게 문의하세요.","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"잘못된 비밀번호.
캡 잠금 버튼이 꺼져 있는지 확인하고 올바른 대문자를 사용해야 합니다.","PDFE.Controllers.Main.errorPDFFormsLocked":"잠긴 양식에 변경이 발생하므로 이 작업을 수행할 수 없습니다.","PDFE.Controllers.Main.errorSaveWatermark":"이 파일에는 다른 도메인에 연결된 워터마크 이미지가 포함되어 있습니다.
PDF에서 워터마크를 표시하려면 문서와 동일한 도메인에서 이미지를 링크하거나, 컴퓨터에서 직접 업로드하세요.","PDFE.Controllers.Main.errorServerVersion":"편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.","PDFE.Controllers.Main.errorSessionAbsolute":"문서 편집 세션이 만료되었습니다. 페이지를 새로 고침하십시오.","PDFE.Controllers.Main.errorSessionIdle":"문서가 오랫동안 편집되지 않았습니다. 페이지를 새로고침 하십시오.","PDFE.Controllers.Main.errorSessionToken":"서버에 대한 연결이 중단되었습니다. 페이지를 새로 고침하십시오.","PDFE.Controllers.Main.errorSetPassword":"비밀번호를 재설정할 수 없습니다.","PDFE.Controllers.Main.errorStockChart":"행 순서가 올바르지 않습니다. 주식 차트를 만들려면 시트에 다음 순서로 데이터를 배치하세요:
개시 가격, 최대 가격, 최소 가격, 마감 가격.","PDFE.Controllers.Main.errorTextFormWrongFormat":"입력한 값이 필드 형식과 일치하지 않습니다.","PDFE.Controllers.Main.errorToken":"문서 보안 토큰이 올바르게 구성되지 않았습니다.
Document Server 관리자에게 문의하십시오.","PDFE.Controllers.Main.errorTokenExpire":"문서 보안 토큰이 만료되었습니다.
Document Server 관리자에게 문의하십시오.","PDFE.Controllers.Main.errorUpdateVersion":"파일 버전이 변경되었습니다. 페이지가 다시 로드됩니다.","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"네트워크 연결이 복원되었습니다. 파일 버전이 변경되었습니다.
계속 작업하기 전에 파일을 다운로드하거나 파일 내용을 복사하여 손실된 항목이 없는지 확인한 다음 이 페이지를 다시 로드해야 합니다.","PDFE.Controllers.Main.errorUserDrop":"파일에 지금 액세스 할 수 없습니다.","PDFE.Controllers.Main.errorUsersExceed":"가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다","PDFE.Controllers.Main.errorViewerDisconnect":"연결이 끊어졌습니다. 문서를 볼 수는,
하지만 연결이 복원 될 때까지 다운로드하거나 인쇄 할 수 없습니다.","PDFE.Controllers.Main.leavePageText":"이 문서에 변경 사항을 저장하지 않았습니다. \"이 페이지에 유지\"를 클릭한 다음 \"저장\"을 클릭하여 저장합니다. 저장하지 않은 모든 변경 사항을 취소하려면 \"이 페이지에서 나가기\"를 클릭하십시오.","PDFE.Controllers.Main.leavePageTextOnClose":"이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.","PDFE.Controllers.Main.loadFontsTextText":"데이터로드 중 ...","PDFE.Controllers.Main.loadFontsTitleText":"데이터로드 중","PDFE.Controllers.Main.loadFontTextText":"데이터로드 중 ...","PDFE.Controllers.Main.loadFontTitleText":"데이터로드 중","PDFE.Controllers.Main.loadImagesTextText":"이미지로드 중 ...","PDFE.Controllers.Main.loadImagesTitleText":"이미지로드 중","PDFE.Controllers.Main.loadImageTextText":"이미지로드 중 ...","PDFE.Controllers.Main.loadImageTitleText":"이미지로드 중","PDFE.Controllers.Main.loadingDocumentTextText":"문서로드 중 ...","PDFE.Controllers.Main.loadingDocumentTitleText":"문서로드 중","PDFE.Controllers.Main.notcriticalErrorTitle":"경고","PDFE.Controllers.Main.openErrorText":"파일을 여는 동안 오류가 발생했습니다.","PDFE.Controllers.Main.openTextText":"문서 열기 중 ...","PDFE.Controllers.Main.openTitleText":"문서 열기","PDFE.Controllers.Main.printTextText":"문서 인쇄 중 ...","PDFE.Controllers.Main.printTitleText":"문서 인쇄 중","PDFE.Controllers.Main.reloadButtonText":"페이지 새로 고침","PDFE.Controllers.Main.requestEditFailedMessageText":"누군가이 문서를 지금 편집하고 있습니다. 나중에 다시 시도하십시오.","PDFE.Controllers.Main.requestEditFailedTitleText":"액세스가 거부되었습니다","PDFE.Controllers.Main.saveErrorText":"파일을 저장하는 동안 오류가 발생했습니다.","PDFE.Controllers.Main.saveErrorTextDesktop":"이 파일을 저장하거나 생성할 수 없습니다.
가능한 이유는 다음과 같습니다.
1. 파일이 읽기 전용입니다.
2. 다른 사용자가 파일을 편집 중입니다.
3. 디스크가 가득 찼거나 손상되었습니다.","PDFE.Controllers.Main.saveTextText":"문서 저장 중 ...","PDFE.Controllers.Main.saveTitleText":"문서 저장 중","PDFE.Controllers.Main.scriptLoadError":"연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.","PDFE.Controllers.Main.splitDividerErrorText":"행 수는 %1 의 제수 여야합니다.","PDFE.Controllers.Main.splitMaxColsErrorText":"열 수가 %1 보다 작아야합니다.","PDFE.Controllers.Main.splitMaxRowsErrorText":"행 수가 %1 보다 적어야합니다.","PDFE.Controllers.Main.textAnonymous":"익명","PDFE.Controllers.Main.textAnyone":"누구나","PDFE.Controllers.Main.textBuyNow":"웹 사이트 방문","PDFE.Controllers.Main.textChangesSaved":"모든 변경 사항이 저장되었습니다","PDFE.Controllers.Main.textClose":"닫기","PDFE.Controllers.Main.textCloseTip":"도움말을 닫으려면 클릭하십시오","PDFE.Controllers.Main.textConnectionLost":"연결을 시도 중입니다. 연결 설정을 확인해 주세요.","PDFE.Controllers.Main.textContactUs":"영업 담당자에게 문의","PDFE.Controllers.Main.textContinue":"계속","PDFE.Controllers.Main.textCustomLoader":"라이센스 조건에 따라 교체할 권한이 없습니다.
견적은 당사 영업부에 문의해 주십시오.","PDFE.Controllers.Main.textDisconnect":"네트워크 연결 끊김","PDFE.Controllers.Main.textGuest":"손님","PDFE.Controllers.Main.textLearnMore":"자세히","PDFE.Controllers.Main.textLoadingDocument":"문서로드 중","PDFE.Controllers.Main.textLongName":"128자 미만의 이름을 입력하세요.","PDFE.Controllers.Main.textNoLicenseTitle":"라이센스 수를 제한했습니다.","PDFE.Controllers.Main.textPaidFeature":"유료기능","PDFE.Controllers.Main.textReconnect":"연결이 복원되었습니다","PDFE.Controllers.Main.textRemember":"모든 파일에 대한 선택 사항을 기억하기","PDFE.Controllers.Main.textRenameError":"사용자 이름은 비워둘 수 없습니다.","PDFE.Controllers.Main.textRenameLabel":"협업에 사용할 이름을 입력합니다","PDFE.Controllers.Main.textShape":"도형","PDFE.Controllers.Main.textStrict":"엄격 모드","PDFE.Controllers.Main.textText":"텍스트","PDFE.Controllers.Main.textTryQuickPrint":"빠른 인쇄를 선택했습니다. 전체 문서가 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.
계속하시겠습니까?","PDFE.Controllers.Main.textTryUndoRedo":"Fast co-editing mode 에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"Strict co-editing mode \"버튼을 클릭하면 엄격한 공동 편집 모드로 전환되어 파일을 편집 할 수 있습니다. 다른 사용자가 방해를해서 저장 한 후에 만 ​​변경 사항을 보내면됩니다. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ","PDFE.Controllers.Main.textTryUndoRedoWarn":"빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.","PDFE.Controllers.Main.textUndo":"실행 취소","PDFE.Controllers.Main.textUpdateVersion":"현재 문서를 편집할 수 없습니다.
파일을 업데이트하는 중이니 잠시만 기다려 주세요...","PDFE.Controllers.Main.textUpdating":"업데이트 중","PDFE.Controllers.Main.tipLicenseExceeded":"라이선스에서 허용된 최대 동시 연결 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","PDFE.Controllers.Main.tipLicenseUsersExceeded":"라이선스에서 허용된 최대 편집 사용자 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","PDFE.Controllers.Main.titleLicenseExp":"라이센스 만료","PDFE.Controllers.Main.titleLicenseNotActive":"라이선스가 활성화되지 않음","PDFE.Controllers.Main.titleReadOnly":"읽기 전용 모드","PDFE.Controllers.Main.titleServerVersion":"편집기가 업데이트되었습니다.","PDFE.Controllers.Main.titleUpdateVersion":"버전이 변경되었습니다.","PDFE.Controllers.Main.txtArt":"여기에 텍스트를 입력하여 주십시오","PDFE.Controllers.Main.txtButton":"버튼","PDFE.Controllers.Main.txtCheckbox":"체크박스","PDFE.Controllers.Main.txtChoose":"아이템 선택","PDFE.Controllers.Main.txtClickToLoad":"이미지를 읽으려면 여기를 클릭하세요","PDFE.Controllers.Main.txtDiagramTitle":"차트 제목","PDFE.Controllers.Main.txtDocUnlockDescription":"문서 보호를 해제하려면 비밀번호를 입력하세요","PDFE.Controllers.Main.txtDropdown":"드롭다운","PDFE.Controllers.Main.txtEditingMode":"편집 모드 설정 ...","PDFE.Controllers.Main.txtEnterDate":"미주 날짜","PDFE.Controllers.Main.txtErrorLoadHistory":"History loading failed","PDFE.Controllers.Main.txtGroup":"그룹","PDFE.Controllers.Main.txtInvalidGreater":"필드 \"{0}\"의 값이 잘못되었습니다: {1} 이상이어야 합니다.","PDFE.Controllers.Main.txtInvalidGreaterLess":"필드 \"{0}\"의 값이 잘못되었습니다: {1} 이상이어야 하고 {2} 이하이어야 합니다.","PDFE.Controllers.Main.txtInvalidLess":"필드 \"{0}\"의 값이 잘못되었습니다: {1} 이하이어야 합니다.","PDFE.Controllers.Main.txtInvalidPdfFormat":"입력한 값이 필드 \"{0}\"의 형식과 일치하지 않습니다.","PDFE.Controllers.Main.txtInvalidValue":"필드 \"{0}\"의 값이 올바르지 않습니다.","PDFE.Controllers.Main.txtListbox":"목록 상자","PDFE.Controllers.Main.txtNeedSynchronize":"업데이트가 있습니다.","PDFE.Controllers.Main.txtSaveCopyAsComplete":"파일 복사본이 성공적으로 저장되었습니다","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"이 문서가 {0}에 연결을 시도하고 있습니다.
이 사이트를 신뢰하면 \"확인\"을 누르세요.","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"이 문서는 파일 대화 상자를 열려고 합니다. 열려면 \"확인\"을 누르세요.","PDFE.Controllers.Main.txtSeries":"시리즈","PDFE.Controllers.Main.txtSignature":"서명","PDFE.Controllers.Main.txtText":"텍스트","PDFE.Controllers.Main.txtUnlockTitle":"문서 보호 해제","PDFE.Controllers.Main.txtValidPdfFormat":"필드 값은 형식 \"{0}\"과(와) 일치해야 합니다.","PDFE.Controllers.Main.txtXAxis":"X 축","PDFE.Controllers.Main.txtYAxis":"Y 축","PDFE.Controllers.Main.unknownErrorText":"알 수없는 오류.","PDFE.Controllers.Main.unsupportedBrowserErrorText":"사용중인 브라우저가 지원되지 않습니다.","PDFE.Controllers.Main.uploadDocExtMessage":"알 수 없는 파일 형식입니다.","PDFE.Controllers.Main.uploadDocFileCountMessage":"업로드 된 문서가 없습니다.","PDFE.Controllers.Main.uploadDocSizeMessage":"최대 문서 크기 제한을 초과했습니다.","PDFE.Controllers.Main.uploadImageExtMessage":"알 수없는 이미지 형식입니다.","PDFE.Controllers.Main.uploadImageFileCountMessage":"이미지가 업로드되지 않았습니다.","PDFE.Controllers.Main.uploadImageSizeMessage":"이미지 크기 제한을 초과했습니다.","PDFE.Controllers.Main.uploadImageTextText":"이미지 업로드 중 ...","PDFE.Controllers.Main.uploadImageTitleText":"이미지 업로드 중","PDFE.Controllers.Main.waitText":"잠시만 기다려주세요...","PDFE.Controllers.Main.warnBrowserIE9":"응용 프로그램의 기능이 IE9에서 부족합니다. IE10 이상을 사용하십시오.","PDFE.Controllers.Main.warnBrowserZoom":"브라우저의 현재 확대/축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대/축소로 재설정하십시오.","PDFE.Controllers.Main.warnLicenseAnonymous":"익명 사용자에 대한 접근이 거부되었습니다.
이 문서는 보기 전용으로 열립니다.","PDFE.Controllers.Main.warnLicenseBefore":"라이센스가 활성화되지 않았습니다.
관리자에게 문의하세요.","PDFE.Controllers.Main.warnLicenseExp":"귀하의 라이센스가 만료되었습니다.
라이센스를 업데이트하고 페이지를 새로 고침하십시오.","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"라이센스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"라이센스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오","PDFE.Controllers.Main.warnNoLicense":"이 버전의 %1 편집자에게는 문서 서버에 대한 동시 연결에 대한 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상용 소프트웨어를 구입하십시오.","PDFE.Controllers.Main.warnNoLicenseUsers":"편집자 사용자 한도인 %1명에 도달했습니다. 개인 업그레이드 조건은 %1 영업 팀에 문의하십시오.","PDFE.Controllers.Main.warnProcessRightsChange":"파일 편집 권한이 거부되었습니다.","PDFE.Controllers.Navigation.txtBeginning":"문서의 시작","PDFE.Controllers.Navigation.txtGotoBeginning":"문서의 처음으로 이동","PDFE.Controllers.Print.textMarginsLast":"마지막 사용자 정의","PDFE.Controllers.Print.txtCustom":"사용자 정의","PDFE.Controllers.Print.txtPrintRangeInvalid":"잘못된 인쇄 범위","PDFE.Controllers.RedactTab.applyButtonText":"적용","PDFE.Controllers.RedactTab.doNotApplyButtonText":"적용 안 함","PDFE.Controllers.RedactTab.textApplyRedact":"비공개 처리된 정보는 이 문서에서 영구적으로 삭제됩니다. 저장하면 정보를 더 이상 복구할 수 없습니다","PDFE.Controllers.RedactTab.textEnterPageRange":"편집할 페이지 범위를 입력","PDFE.Controllers.RedactTab.textEnterRangeDescription":"예: 1, 2, 8–11","PDFE.Controllers.RedactTab.textRedactPages":"페이지 비공개 처리","PDFE.Controllers.RedactTab.textUnappliedRedactions":"이 문서에는 아직 적용되지 않은 비공개 처리 표시가 포함되어 있습니다.

\"비공개 적용\"을 선택할 때까지 이 표시를 제거할 수 있으며 정보도 복구될 수 있습니다","PDFE.Controllers.RedactTab.tipApplyRedaction":"모든 편집을 적용하고 저장하세요. 저장하지 않은 편집은 적용되지 않을 수 있습니다.","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"편집 적용","PDFE.Controllers.RedactTab.tipMarkForRedaction":"이 도구를 사용하여 PDF의 민감한 내용을 표시, 검색 및 비공개 처리합니다","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"비공개 처리 대상으로 지정","PDFE.Controllers.RedactTab.txtInvalidFormat":"형식이 잘못되었습니다. 단일 숫자 또는 2-6과 같은 대시(-)로 구분된 범위를 사용하세요.","PDFE.Controllers.RedactTab.txtInvalidRange":"페이지 값은 1에서 {0} 사이여야 합니다","PDFE.Controllers.RedactTab.txtReversedRange":"시작 페이지는 종료 페이지보다 크지 않아야 합니다","PDFE.Controllers.Search.notcriticalErrorTitle":"경고","PDFE.Controllers.Search.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","PDFE.Controllers.Search.textReplaceSkipped":"대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.","PDFE.Controllers.Search.textReplaceSuccess":"검색이 완료되었습니다. {0}번의 항목이 대체되었습니다.","PDFE.Controllers.Search.warnReplaceString":"{0}은 대체할 문자 상자에 유효한 특수 문자가 아닙니다.","PDFE.Controllers.Statusbar.textDisconnect":"연결이 끊어졌습니다
연결을 시도하는 중입니다.","PDFE.Controllers.Statusbar.zoomText":"확대/축소 {0} %","PDFE.Controllers.Toolbar.confirmAddFontName":"저장하려는 글꼴이 현재 기기에서는 사용할 수 없습니다.
텍스트 스타일은 기기 기본 글꼴 중 하나로 표시되며, 저장한 글꼴은 사용 가능할 때 적용됩니다.
계속하시겠습니까?","PDFE.Controllers.Toolbar.errorAccessDeny":"권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.","PDFE.Controllers.Toolbar.helpAnnotRect":"새로운 주석 도구(사각형, 원, 화살표, 연결선)를 확인하세요.","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"새 주석","PDFE.Controllers.Toolbar.helpPdfCharts":"PDF 문서에서 차트와 SmartArt를 직접 삽입·편집할 수 있습니다.","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"PDF의 차트 및 스마트아트","PDFE.Controllers.Toolbar.helpRedactTab":"비공개 처리 기능을 사용하여 민감한 정보를 안전하게 삭제하고 기밀 내용을 보호합니다","PDFE.Controllers.Toolbar.helpRedactTabHeader":"PDF에서 비공개 처리","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"경고","PDFE.Controllers.Toolbar.textFontSizeErr":"입력한 값이 올바르지 않습니다.
1에서 300 사이의 숫자를 입력해 주세요.","PDFE.Controllers.Toolbar.textGotIt":"확인","PDFE.Controllers.Toolbar.textRequired":"양식을 보내려면 모든 필수 필드를 채우십시오.","PDFE.Controllers.Toolbar.textSubmited":"양식이 성공적으로 제출되었습니다
팁을 닫으려면 클릭하세요.","PDFE.Controllers.Toolbar.textTabForms":"폼","PDFE.Controllers.Toolbar.textWarning":"경고","PDFE.Controllers.Toolbar.txtDownload":"다운로드","PDFE.Controllers.Toolbar.txtNeedCommentMode":"파일에 변경 사항을 저장하려면 코멘트 모드로 전환하세요. 또는 수정된 파일의 사본을 다운로드할 수 있습니다.","PDFE.Controllers.Toolbar.txtNeedDownload":"현재 PDF 뷰어는 새로운 변경 사항을 별도의 파일 복사본으로만 저장할 수 있습니다. 공동 편집을 지원하지 않으며, 다른 사용자는 새 파일 버전을 공유하지 않는 한 여러분의 변경 사항을 볼 수 없습니다.","PDFE.Controllers.Toolbar.txtSaveCopy":"사본 저장","PDFE.Controllers.Toolbar.txtUntitled":"제목 없음","PDFE.Controllers.Viewport.textFitPage":"페이지에 맞춤","PDFE.Controllers.Viewport.textFitWidth":"너비에 맞춤","PDFE.Controllers.Viewport.txtDarkMode":"다크 모드","PDFE.Views.ChartSettings.text3dDepth":"깊이(%)","PDFE.Views.ChartSettings.text3dHeight":"높이(%)","PDFE.Views.ChartSettings.text3dRotation":"3D 회전","PDFE.Views.ChartSettings.textAdvanced":"고급 설정 표시","PDFE.Views.ChartSettings.textAutoscale":"자동 크기 조정","PDFE.Views.ChartSettings.textChartType":"차트 유형 변경","PDFE.Views.ChartSettings.textData":"데이터","PDFE.Views.ChartSettings.textDefault":"기본 로테이션","PDFE.Views.ChartSettings.textDown":"아래로","PDFE.Views.ChartSettings.textEditData":"데이터 편집","PDFE.Views.ChartSettings.textEditLinks":"연결 편집","PDFE.Views.ChartSettings.textHeight":"높이","PDFE.Views.ChartSettings.textKeepRatio":"비율 고정","PDFE.Views.ChartSettings.textLeft":"왼쪽","PDFE.Views.ChartSettings.textLinkedData":"연결된 데이터","PDFE.Views.ChartSettings.textNarrow":"좁은 시야각","PDFE.Views.ChartSettings.textPerspective":"관점","PDFE.Views.ChartSettings.textRight":"오른쪽","PDFE.Views.ChartSettings.textRightAngle":"직각 축","PDFE.Views.ChartSettings.textSelectData":"데이터 선택","PDFE.Views.ChartSettings.textSize":"크기","PDFE.Views.ChartSettings.textStyle":"스타일","PDFE.Views.ChartSettings.textUp":"위","PDFE.Views.ChartSettings.textUpdateData":"데이터 업데이트","PDFE.Views.ChartSettings.textWiden":"시야 확장","PDFE.Views.ChartSettings.textWidth":"너비","PDFE.Views.ChartSettings.textX":"X 회전","PDFE.Views.ChartSettings.textY":"Y 회전","PDFE.Views.ChartSettingsAdvanced.textAlt":"대체 텍스트","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"세부 설명","PDFE.Views.ChartSettingsAdvanced.textAltTip":"시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"제목","PDFE.Views.ChartSettingsAdvanced.textAuto":"자동","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"교차축","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"축 위치","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"제목","PDFE.Views.ChartSettingsAdvanced.textBase":"기준","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"눈금 사이","PDFE.Views.ChartSettingsAdvanced.textBillions":"10 억","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"카테고리 이름","PDFE.Views.ChartSettingsAdvanced.textCenter":"중앙","PDFE.Views.ChartSettingsAdvanced.textChartName":"차트 이름","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"차트 제목","PDFE.Views.ChartSettingsAdvanced.textCross":"교차","PDFE.Views.ChartSettingsAdvanced.textCustom":"사용자 정의","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"데이터 레이블","PDFE.Views.ChartSettingsAdvanced.textFit":"너비에 맞추기","PDFE.Views.ChartSettingsAdvanced.textFixed":"고정","PDFE.Views.ChartSettingsAdvanced.textFormat":"레이블 서식","PDFE.Views.ChartSettingsAdvanced.textFrom":"보낸 사람","PDFE.Views.ChartSettingsAdvanced.textGeneral":"일반","PDFE.Views.ChartSettingsAdvanced.textGridLines":"눈금선","PDFE.Views.ChartSettingsAdvanced.textHeight":"높이","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"축 감추기","PDFE.Views.ChartSettingsAdvanced.textHigh":"위쪽","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"가로 축","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"수평 보조축","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"수평","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"백 단위","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PDFE.Views.ChartSettingsAdvanced.textIn":"안쪽","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"안쪽 아래","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"안쪽 위","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"비율 고정","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"축 레이블 간격","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"레이블 간격","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"레이블 옵션","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"레이블 위치","PDFE.Views.ChartSettingsAdvanced.textLayout":"레이아웃","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"왼쪽 오버레이","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"하단","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"왼쪽","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"범례","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"오른쪽","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"상위","PDFE.Views.ChartSettingsAdvanced.textLines":"선","PDFE.Views.ChartSettingsAdvanced.textLogScale":"로그 눈금","PDFE.Views.ChartSettingsAdvanced.textLow":"낮음","PDFE.Views.ChartSettingsAdvanced.textMajor":"메이저","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"메이저 및 마이너","PDFE.Views.ChartSettingsAdvanced.textMajorType":"주요 유형","PDFE.Views.ChartSettingsAdvanced.textManual":"수동","PDFE.Views.ChartSettingsAdvanced.textMarkers":"표시 기호","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"눈금 간격","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"최대값","PDFE.Views.ChartSettingsAdvanced.textMillions":"백만 단위","PDFE.Views.ChartSettingsAdvanced.textMinor":"마이너","PDFE.Views.ChartSettingsAdvanced.textMinorType":"보조 유형","PDFE.Views.ChartSettingsAdvanced.textMinValue":"최소값","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"다음 축","PDFE.Views.ChartSettingsAdvanced.textNone":"없음","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"오버레이 없음","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"눈금 표시","PDFE.Views.ChartSettingsAdvanced.textOut":"바깥쪽","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"바깥쪽 위","PDFE.Views.ChartSettingsAdvanced.textOverlay":"오버레이","PDFE.Views.ChartSettingsAdvanced.textPlacement":"배치","PDFE.Views.ChartSettingsAdvanced.textPosition":"위치","PDFE.Views.ChartSettingsAdvanced.textReverse":"값 역순으로","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"오른쪽 오버레이","PDFE.Views.ChartSettingsAdvanced.textRotated":"회전","PDFE.Views.ChartSettingsAdvanced.textSeparator":"데이터 레이블 구분 기호","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"계열 이름","PDFE.Views.ChartSettingsAdvanced.textSize":"크기","PDFE.Views.ChartSettingsAdvanced.textSmooth":"부드럽게","PDFE.Views.ChartSettingsAdvanced.textStraight":"직선","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PDFE.Views.ChartSettingsAdvanced.textThousands":"수천","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"눈금 옵션","PDFE.Views.ChartSettingsAdvanced.textTitle":"차트 - 고급 설정","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"왼쪽 상단 모서리","PDFE.Views.ChartSettingsAdvanced.textTrillions":"수조","PDFE.Views.ChartSettingsAdvanced.textUnits":"표시 단위","PDFE.Views.ChartSettingsAdvanced.textValue":"값","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"세로 축","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"수직 보조축","PDFE.Views.ChartSettingsAdvanced.textVertical":"세로","PDFE.Views.ChartSettingsAdvanced.textWidth":"너비","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"왼쪽 오버레이","PDFE.Views.DocumentHolder.aboveText":"위","PDFE.Views.DocumentHolder.addCommentText":"코멘트 추가","PDFE.Views.DocumentHolder.advancedChartText":"차트 고급 설정","PDFE.Views.DocumentHolder.advancedEquationText":"방정식 설정","PDFE.Views.DocumentHolder.advancedImageText":"이미지 고급 설정","PDFE.Views.DocumentHolder.advancedParagraphText":"단락 고급 설정","PDFE.Views.DocumentHolder.advancedShapeText":"모양 고급 설정","PDFE.Views.DocumentHolder.advancedTableText":"표 고급 설정","PDFE.Views.DocumentHolder.AlignBottom":"하단","PDFE.Views.DocumentHolder.AlignCenter":"가운데","PDFE.Views.DocumentHolder.AlignJust":"양쪽 맞춤","PDFE.Views.DocumentHolder.AlignLeft":"왼쪽","PDFE.Views.DocumentHolder.alignmentText":"정렬","PDFE.Views.DocumentHolder.AlignMiddle":"가운데","PDFE.Views.DocumentHolder.AlignRight":"오른쪽","PDFE.Views.DocumentHolder.AlignText":"정렬","PDFE.Views.DocumentHolder.AlignTop":"맨 위","PDFE.Views.DocumentHolder.allLinearText":"모두 - 선형","PDFE.Views.DocumentHolder.allProfText":"전체 - 프로페셔널","PDFE.Views.DocumentHolder.belowText":"아래","PDFE.Views.DocumentHolder.btnChart":"제목, 범례, 눈금선, 데이터 레이블 같은 차트 요소 추가, 제거 또는 변경","PDFE.Views.DocumentHolder.cellAlignText":"셀 수직 정렬","PDFE.Views.DocumentHolder.cellText":"셀","PDFE.Views.DocumentHolder.centerText":"가운데","PDFE.Views.DocumentHolder.columnText":"열","PDFE.Views.DocumentHolder.confirmAddFontName":"저장하려는 글꼴이 현재 기기에서 사용할 수 없습니다.
텍스트 스타일은 기기 기본 글꼴 중 하나로 표시되며, 저장한 글꼴은 사용 가능할 때 적용됩니다.
계속하시겠습니까?","PDFE.Views.DocumentHolder.currLinearText":"현재 - 선형","PDFE.Views.DocumentHolder.currProfText":"현재 - 전문가","PDFE.Views.DocumentHolder.deleteColumnText":"열 삭제","PDFE.Views.DocumentHolder.deleteRowText":"행 삭제","PDFE.Views.DocumentHolder.deleteTableText":"테이블 삭제","PDFE.Views.DocumentHolder.deleteText":"삭제","PDFE.Views.DocumentHolder.DepthAxis":"Z 축","PDFE.Views.DocumentHolder.direct270Text":"텍스트 위로 회전","PDFE.Views.DocumentHolder.direct90Text":"텍스트 아래로 회전","PDFE.Views.DocumentHolder.directHText":"수평","PDFE.Views.DocumentHolder.directionText":"텍스트 방향","PDFE.Views.DocumentHolder.editChartText":"데이터 편집","PDFE.Views.DocumentHolder.editHyperlinkText":"링크 편집","PDFE.Views.DocumentHolder.guestText":"게스트","PDFE.Views.DocumentHolder.hideEqToolbar":"수식 도구 모음 숨기기","PDFE.Views.DocumentHolder.hyperlinkText":"하이퍼링크","PDFE.Views.DocumentHolder.insertColumnLeftText":"왼쪽 열","PDFE.Views.DocumentHolder.insertColumnRightText":"오른쪽 열","PDFE.Views.DocumentHolder.insertColumnText":"열 삽입","PDFE.Views.DocumentHolder.insertRowAboveText":"위의 행","PDFE.Views.DocumentHolder.insertRowBelowText":"아래 행","PDFE.Views.DocumentHolder.insertRowText":"행 삽입","PDFE.Views.DocumentHolder.insertText":"삽입","PDFE.Views.DocumentHolder.latexText":"라텍","PDFE.Views.DocumentHolder.leftText":"왼쪽","PDFE.Views.DocumentHolder.mergeCellsText":"셀 병합","PDFE.Views.DocumentHolder.mniImageFromFile":"파일에서 이미지 삽입","PDFE.Views.DocumentHolder.mniImageFromStorage":"저장소에서 이미지 삽입","PDFE.Views.DocumentHolder.mniImageFromUrl":"URL에서 이미지 삽입","PDFE.Views.DocumentHolder.originalSizeText":"실제 크기","PDFE.Views.DocumentHolder.removeCommentText":"삭제","PDFE.Views.DocumentHolder.removeHyperlinkText":"하이퍼링크 제거","PDFE.Views.DocumentHolder.rightText":"오른쪽","PDFE.Views.DocumentHolder.rowText":"행","PDFE.Views.DocumentHolder.selectText":"선택","PDFE.Views.DocumentHolder.showEqToolbar":"수식 도구 모음 표시","PDFE.Views.DocumentHolder.splitCellsText":"셀 분할 ...","PDFE.Views.DocumentHolder.splitCellTitleText":"셀 분할","PDFE.Views.DocumentHolder.tableText":"테이블","PDFE.Views.DocumentHolder.textArrangeBack":"맨 뒤로 보내기","PDFE.Views.DocumentHolder.textArrangeBackward":"뒤로 이동","PDFE.Views.DocumentHolder.textArrangeForward":"앞으로 보내기","PDFE.Views.DocumentHolder.textArrangeFront":"맨 앞으로 가져오기","PDFE.Views.DocumentHolder.textAxes":"축","PDFE.Views.DocumentHolder.textAxisTitles":"축 제목","PDFE.Views.DocumentHolder.textBottom":"하단","PDFE.Views.DocumentHolder.textCenter":"중앙","PDFE.Views.DocumentHolder.textChartTitle":"차트 제목","PDFE.Views.DocumentHolder.textClearField":"필드를 초기화","PDFE.Views.DocumentHolder.textCm":"cm","PDFE.Views.DocumentHolder.textColor":"색상","PDFE.Views.DocumentHolder.textCopy":"복사","PDFE.Views.DocumentHolder.textCrop":"자르기","PDFE.Views.DocumentHolder.textCropFill":"채우기","PDFE.Views.DocumentHolder.textCropFit":"맞춤","PDFE.Views.DocumentHolder.textCustom":"사용자 지정","PDFE.Views.DocumentHolder.textCut":"잘라 내기","PDFE.Views.DocumentHolder.textDataLabels":"데이터 레이블","PDFE.Views.DocumentHolder.textDistributeCols":"열 균등 분할","PDFE.Views.DocumentHolder.textDistributeRows":"행 배포","PDFE.Views.DocumentHolder.textEditPoints":"점 편집","PDFE.Views.DocumentHolder.textErrorBars":"오류 막대","PDFE.Views.DocumentHolder.textExponential":"지수","PDFE.Views.DocumentHolder.textFit":"너비에 맞춤","PDFE.Views.DocumentHolder.textFlipH":"좌우대칭","PDFE.Views.DocumentHolder.textFlipV":"상하대칭","PDFE.Views.DocumentHolder.textFontSizeErr":"입력한 값이 올바르지 않습니다.
1에서 300 사이의 숫자를 입력해 주세요.","PDFE.Views.DocumentHolder.textFromFile":"파일에서","PDFE.Views.DocumentHolder.textFromStorage":"저장소에서","PDFE.Views.DocumentHolder.textFromUrl":"URL로부터","PDFE.Views.DocumentHolder.textGridLines":"눈금선","PDFE.Views.DocumentHolder.textHorAxis":"가로 축","PDFE.Views.DocumentHolder.textHorAxisSec":"수평 보조축","PDFE.Views.DocumentHolder.textHorizontalMajor":"가로 주 눈금","PDFE.Views.DocumentHolder.textHorizontalMinor":"가로 부 눈금","PDFE.Views.DocumentHolder.textInnerBottom":"안쪽 아래","PDFE.Views.DocumentHolder.textInnerTop":"안쪽 위","PDFE.Views.DocumentHolder.textLeft":"왼쪽","PDFE.Views.DocumentHolder.textLeftData":"왼쪽","PDFE.Views.DocumentHolder.textLeftOverlay":"왼쪽 오버레이","PDFE.Views.DocumentHolder.textLegendPos":"범례","PDFE.Views.DocumentHolder.textLinear":"선형","PDFE.Views.DocumentHolder.textLinearForecast":"선형 예측","PDFE.Views.DocumentHolder.textLines":"선","PDFE.Views.DocumentHolder.textMovingAverage":"이동 평균(2)","PDFE.Views.DocumentHolder.textNone":"없음","PDFE.Views.DocumentHolder.textNoOverlay":"오버레이 없음","PDFE.Views.DocumentHolder.textOuterTop":"바깥쪽 위","PDFE.Views.DocumentHolder.textOverlay":"오버레이","PDFE.Views.DocumentHolder.textPaste":"붙여 넣기","PDFE.Views.DocumentHolder.textRecognize":"텍스트 편집","PDFE.Views.DocumentHolder.textRedact":"텍스트 검열","PDFE.Views.DocumentHolder.textRedo":"다시 실행","PDFE.Views.DocumentHolder.textReplace":"이미지 바꾸기","PDFE.Views.DocumentHolder.textResetCrop":"자르기 초기화","PDFE.Views.DocumentHolder.textRight":"오른쪽","PDFE.Views.DocumentHolder.textRightOverlay":"오른쪽 오버레이","PDFE.Views.DocumentHolder.textRotate":"회전","PDFE.Views.DocumentHolder.textRotate270":"반시계 방향으로 90도 회전","PDFE.Views.DocumentHolder.textRotate90":"오른쪽으로 90도 회전","PDFE.Views.DocumentHolder.textSaveAsPicture":"그림으로 저장","PDFE.Views.DocumentHolder.textShapeAlignBottom":"아래쪽 정렬","PDFE.Views.DocumentHolder.textShapeAlignCenter":"센터 정렬","PDFE.Views.DocumentHolder.textShapeAlignLeft":"왼쪽 정렬","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"중간 정렬","PDFE.Views.DocumentHolder.textShapeAlignRight":"오른쪽 정렬","PDFE.Views.DocumentHolder.textShapeAlignTop":"상단 정렬","PDFE.Views.DocumentHolder.textShapesMerge":"도형 병합","PDFE.Views.DocumentHolder.textShowLegendKeys":"범례 항목 표시","PDFE.Views.DocumentHolder.textShowUpDown":"상승/하락 막대 표시","PDFE.Views.DocumentHolder.textStandardDeviation":"표준편차","PDFE.Views.DocumentHolder.textStandardError":"표준오차","PDFE.Views.DocumentHolder.textTop":"상위","PDFE.Views.DocumentHolder.textTrendline":"추세선","PDFE.Views.DocumentHolder.textUndo":"실행 취소","PDFE.Views.DocumentHolder.textUpDownBars":"위/아래 막대","PDFE.Views.DocumentHolder.textVertAxis":"세로 축","PDFE.Views.DocumentHolder.textVertAxisSec":"수직 보조축","PDFE.Views.DocumentHolder.textVerticalMajor":"세로 주 눈금","PDFE.Views.DocumentHolder.textVerticalMinor":"세로 부 눈금","PDFE.Views.DocumentHolder.tipIsLocked":"이 요소는 현재 다른 사용자가 편집 중입니다.","PDFE.Views.DocumentHolder.tipRecognize":"텍스트 편집","PDFE.Views.DocumentHolder.tipRedact":"텍스트 검열","PDFE.Views.DocumentHolder.txtAddBottom":"아래쪽 테두리 추가","PDFE.Views.DocumentHolder.txtAddFractionBar":"분수 막대 추가","PDFE.Views.DocumentHolder.txtAddHor":"가로선 추가","PDFE.Views.DocumentHolder.txtAddLB":"왼쪽 하단 추가","PDFE.Views.DocumentHolder.txtAddLeft":"왼쪽 테두리 추가","PDFE.Views.DocumentHolder.txtAddLT":"왼쪽 상단 줄 추가","PDFE.Views.DocumentHolder.txtAddRight":"오른쪽 테두리 추가","PDFE.Views.DocumentHolder.txtAddTop":"위쪽 테두리 추가","PDFE.Views.DocumentHolder.txtAddVer":"세로선 추가","PDFE.Views.DocumentHolder.txtAlign":"정렬","PDFE.Views.DocumentHolder.txtAlignToChar":"문자에 정렬","PDFE.Views.DocumentHolder.txtArrange":"정렬","PDFE.Views.DocumentHolder.txtBackground":"배경","PDFE.Views.DocumentHolder.txtBorderProps":"테두리 속성","PDFE.Views.DocumentHolder.txtBottom":"바닥","PDFE.Views.DocumentHolder.txtColumnAlign":"열 정렬","PDFE.Views.DocumentHolder.txtCopyPage":"페이지 복사","PDFE.Views.DocumentHolder.txtCutPage":"페이지 잘라내기","PDFE.Views.DocumentHolder.txtDecreaseArg":"인수 크기 감소","PDFE.Views.DocumentHolder.txtDeleteArg":"인수 삭제","PDFE.Views.DocumentHolder.txtDeleteBreak":"나누기 삭제","PDFE.Views.DocumentHolder.txtDeleteChars":"포함 문자 삭제","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"포함 문자 및 구분자 삭제","PDFE.Views.DocumentHolder.txtDeleteEq":"수식 삭제","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"문자 삭제","PDFE.Views.DocumentHolder.txtDeletePage":"페이지를 삭제","PDFE.Views.DocumentHolder.txtDeleteRadical":"근호 삭제","PDFE.Views.DocumentHolder.txtDistribHor":"가로 방향 분포","PDFE.Views.DocumentHolder.txtDistribVert":"수직 분포","PDFE.Views.DocumentHolder.txtEmpty":"(없음)","PDFE.Views.DocumentHolder.txtFractionLinear":"선형 분수로 변경","PDFE.Views.DocumentHolder.txtFractionSkewed":"기울어진 분수로 변경","PDFE.Views.DocumentHolder.txtFractionStacked":"누적 분율로 변경","PDFE.Views.DocumentHolder.txtGroup":"그룹","PDFE.Views.DocumentHolder.txtGroupCharOver":"텍스트를 덮은 문자","PDFE.Views.DocumentHolder.txtGroupCharUnder":"문자 아래의 텍스트","PDFE.Views.DocumentHolder.txtHideBottom":"아래쪽 테두리 숨기기","PDFE.Views.DocumentHolder.txtHideBottomLimit":"하단 제한 숨기기","PDFE.Views.DocumentHolder.txtHideCloseBracket":"닫는 대괄호 숨기기","PDFE.Views.DocumentHolder.txtHideDegree":"차수 숨기기","PDFE.Views.DocumentHolder.txtHideHor":"가로선 숨기기","PDFE.Views.DocumentHolder.txtHideLB":"왼쪽 하단 줄 숨기기","PDFE.Views.DocumentHolder.txtHideLeft":"왼쪽 테두리 숨기기","PDFE.Views.DocumentHolder.txtHideLT":"왼쪽 상단 줄 숨기기","PDFE.Views.DocumentHolder.txtHideOpenBracket":"여는 대괄호 숨기기","PDFE.Views.DocumentHolder.txtHidePlaceholder":"자리 표시 자 숨기기","PDFE.Views.DocumentHolder.txtHideRight":"오른쪽 테두리 숨기기","PDFE.Views.DocumentHolder.txtHideTop":"위쪽 테두리 숨기기","PDFE.Views.DocumentHolder.txtHideTopLimit":"상한값 숨기기","PDFE.Views.DocumentHolder.txtHideVer":"수직선 숨기기","PDFE.Views.DocumentHolder.txtIncreaseArg":"인수 크기 늘리기","PDFE.Views.DocumentHolder.txtInsertArgAfter":"뒤에 인수를 삽입하십시오.","PDFE.Views.DocumentHolder.txtInsertArgBefore":"앞에 인수를 삽입하십시오","PDFE.Views.DocumentHolder.txtInsertBreak":"나누기 삽입","PDFE.Views.DocumentHolder.txtInsertEqAfter":"뒤에 수식을 삽입하십시오.","PDFE.Views.DocumentHolder.txtInsertEqBefore":"이전에 수식 삽입","PDFE.Views.DocumentHolder.txtLimitChange":"제한 위치 변경","PDFE.Views.DocumentHolder.txtLimitOver":"텍스트 제한","PDFE.Views.DocumentHolder.txtLimitUnder":"텍스트에서 제한","PDFE.Views.DocumentHolder.txtMatchBrackets":"괄호 높이를 인수 높이에 맞춤","PDFE.Views.DocumentHolder.txtMatrixAlign":"매트릭스 정렬","PDFE.Views.DocumentHolder.txtNewPageAfter":"다음에 빈 페이지 삽입","PDFE.Views.DocumentHolder.txtNewPageBefore":"이전에 빈 페이지 삽입","PDFE.Views.DocumentHolder.txtOpacity":"불투명도","PDFE.Views.DocumentHolder.txtOverbar":"텍스트 위에 바","PDFE.Views.DocumentHolder.txtPastePage":"페이지 붙여넣기","PDFE.Views.DocumentHolder.txtPastePageAfter":"다음에 페이지 붙여넣기","PDFE.Views.DocumentHolder.txtPastePageBefore":"이전에 페이지 붙여넣기","PDFE.Views.DocumentHolder.txtPercentage":"백분율","PDFE.Views.DocumentHolder.txtPressLink":"{0} 키를 누르고 링크를 클릭합니다.","PDFE.Views.DocumentHolder.txtPrintSelection":"선택 항목 인쇄","PDFE.Views.DocumentHolder.txtRemFractionBar":"분수 막대 제거","PDFE.Views.DocumentHolder.txtRemLimit":"제한 제거","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"액센트 문자 제거","PDFE.Views.DocumentHolder.txtRemoveBar":"막대 제거","PDFE.Views.DocumentHolder.txtRemScripts":"스크립트 제거","PDFE.Views.DocumentHolder.txtRemSubscript":"아래 첨자 제거","PDFE.Views.DocumentHolder.txtRemSuperscript":"위 첨자 제거","PDFE.Views.DocumentHolder.txtRotateLeft":"왼쪽으로 회전","PDFE.Views.DocumentHolder.txtRotateRight":"오른쪽으로 회전","PDFE.Views.DocumentHolder.txtScriptsAfter":"텍스트 뒤의 스크립트","PDFE.Views.DocumentHolder.txtScriptsBefore":"텍스트 앞의 스크립트","PDFE.Views.DocumentHolder.txtSelectAll":"모두 선택","PDFE.Views.DocumentHolder.txtShowBottomLimit":"아래쪽 한계 표시","PDFE.Views.DocumentHolder.txtShowCloseBracket":"닫는 괄호 표시","PDFE.Views.DocumentHolder.txtShowDegree":"학위 표시","PDFE.Views.DocumentHolder.txtShowOpenBracket":"여는 대괄호 표시","PDFE.Views.DocumentHolder.txtShowPlaceholder":"자리 표시자 표시","PDFE.Views.DocumentHolder.txtShowTopLimit":"상한 표시","PDFE.Views.DocumentHolder.txtStretchBrackets":"스트레치 괄호","PDFE.Views.DocumentHolder.txtTop":"맨 위","PDFE.Views.DocumentHolder.txtUnderbar":"텍스트 아래에 바","PDFE.Views.DocumentHolder.txtUngroup":"그룹 해제","PDFE.Views.DocumentHolder.txtWarnUrl":"이 링크를 클릭하면 기기와 데이터에 해로울 수 있습니다. 컴퓨터를 보호하려면 신뢰할 수 있는 출처의 링크만 클릭하세요. 이 위치는 안전하지 않을 수 있습니다.

{0}

계속하시겠습니까?","PDFE.Views.DocumentHolder.unicodeText":"유니코드","PDFE.Views.DocumentHolder.vertAlignText":"세로 맞춤","PDFE.Views.FileMenu.ariaFileMenu":"파일 메뉴","PDFE.Views.FileMenu.btnBackCaption":"파일 위치 열기","PDFE.Views.FileMenu.btnCloseEditor":"파일 닫기","PDFE.Views.FileMenu.btnCloseMenuCaption":"뒤로","PDFE.Views.FileMenu.btnCreateNewCaption":"새로 만들기","PDFE.Views.FileMenu.btnDownloadCaption":"다른 이름으로 다운로드","PDFE.Views.FileMenu.btnExitCaption":"닫기","PDFE.Views.FileMenu.btnFileOpenCaption":"열기","PDFE.Views.FileMenu.btnHelpCaption":"도움말","PDFE.Views.FileMenu.btnHistoryCaption":"Version History","PDFE.Views.FileMenu.btnInfoCaption":"문서 정보","PDFE.Views.FileMenu.btnPrintCaption":"인쇄","PDFE.Views.FileMenu.btnProtectCaption":"보호","PDFE.Views.FileMenu.btnRecentFilesCaption":"최근 열기","PDFE.Views.FileMenu.btnRenameCaption":"이름 바꾸기","PDFE.Views.FileMenu.btnReturnCaption":"문서로 돌아 가기","PDFE.Views.FileMenu.btnRightsCaption":"액세스 권한","PDFE.Views.FileMenu.btnSaveAsCaption":"다른 이름으로 저장","PDFE.Views.FileMenu.btnSaveCaption":"저장","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"다른 이름으로 저장","PDFE.Views.FileMenu.btnSettingsCaption":"고급 설정","PDFE.Views.FileMenu.btnSuggestCaption":"기능 제안","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"모바일 보기로 전환","PDFE.Views.FileMenu.btnToEditCaption":"문서 편집","PDFE.Views.FileMenu.textDownload":"다운로드","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"빈문서","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"새로 만들기","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"적용","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"작성자추가","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"텍스트추가","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"어플리케이션","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"작성자","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"액세스 권한 변경","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"코멘트","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"일반","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"생성되었습니다","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"문서 정보","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"패스트 웹 뷰","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"로드 중 ...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"최종 편집자","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"최종 편집","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"아니오","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"소유자","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"페이지","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"페이지 크기","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"단락","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF 제작자","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"태그드 PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF 버전","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"위치","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"권한이있는 사람","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"공백이있는 기호","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"통계","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"제목","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"등장 인물","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"태그","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"제목","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"업로드 되었습니다","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"단어","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"예","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"액세스 권한","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"액세스 권한 변경","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"권한이있는 사람","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"비밀번호로","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"문서 보호","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"서명으로","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"유효한 서명이 문서에 추가되었습니다.
문서는 편집이 제한되어 있습니다.","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"눈에 보이지 않는 디지털 서명을 추가하여
문서의 무결성을 보장하세요.","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"문서 편집","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"편집하면 문서의 서명이 삭제됩니다.
계속하시겠습니까?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"이 문서는 비밀번호로 보호되어 있습니다","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"이 문서를 비밀번호로 암호화하세요","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"이 문서는 서명되어야 합니다.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"문서에 유효한 서명이 추가되었습니다. 문서가 보호되어 편집할 수 없습니다.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"문서 내 일부 전자 서명이 유효하지 않거나 확인할 수 없습니다. 문서가 편집 방지 상태입니다.","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"서명 보기","PDFE.Views.FileMenuPanels.Settings.okButtonText":"적용","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"공동 편집 모드","PDFE.Views.FileMenuPanels.Settings.strFast":"빠르게","PDFE.Views.FileMenuPanels.Settings.strFontRender":"글꼴 힌트","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"키보드 단축키","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"오른쪽에서 왼쪽 인터페이스","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"실시간 협업 변경 사항","PDFE.Views.FileMenuPanels.Settings.strShowComments":"텍스트로 댓글 표시","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"다른 사용자의 변경사항 표시","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"해결된 댓글 표시","PDFE.Views.FileMenuPanels.Settings.strStrict":"엄격한","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"탭 스타일","PDFE.Views.FileMenuPanels.Settings.strTheme":"인터페이스 테마","PDFE.Views.FileMenuPanels.Settings.strUnit":"측정 단위","PDFE.Views.FileMenuPanels.Settings.strZoom":"기본 확대/축소 값","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"자동 복구","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"자동 저장","PDFE.Views.FileMenuPanels.Settings.textDisabled":"비활성화","PDFE.Views.FileMenuPanels.Settings.textFill":"채우기","PDFE.Views.FileMenuPanels.Settings.textForceSave":"모든 기록 버전을 서버에 저장","PDFE.Views.FileMenuPanels.Settings.textLine":"선","PDFE.Views.FileMenuPanels.Settings.textMinute":"매 분","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"고급 설정","PDFE.Views.FileMenuPanels.Settings.txtAll":"모두보기","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"표시","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"사전 설정 캐시 모드","PDFE.Views.FileMenuPanels.Settings.txtCm":"센티미터","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"협업","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"사용자 정의","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"빠른 실행 사용자 지정","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"문서 다크 모드 켜기","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"편집 및 저장","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"실시간 공동 편집. 모든 변경사항은 자동으로 저장됩니다.","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"페이지에 맞춤","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"너비에 맞춤","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"상형 문자","PDFE.Views.FileMenuPanels.Settings.txtInch":"인치","PDFE.Views.FileMenuPanels.Settings.txtLast":"마지막보기","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"마지막으로 사용됨","PDFE.Views.FileMenuPanels.Settings.txtMac":"OS X","PDFE.Views.FileMenuPanels.Settings.txtNative":"기본","PDFE.Views.FileMenuPanels.Settings.txtNone":"보기 없음","PDFE.Views.FileMenuPanels.Settings.txtPt":"포인트","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"편집기 헤더에 빠른 인쇄 버튼 표시","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"문서는 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"화면 읽기 지원 활성화","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"변경 사항을 동기화하기 위해 \"저장\" 버튼을 사용하세요","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"도구 모음 색상을 탭 배경으로 사용","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Alt 키를 사용하세요.","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"텍스트 선택 시 미니 도구 모음 사용","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Option 키를 사용하세요.","PDFE.Views.FileMenuPanels.Settings.txtWin":"Windows로","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"워크스페이스","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"빠른 실행 도구 사용자 지정","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"다운로드 방법","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"다른 이름으로 저장","PDFE.Views.FormatSettingsDialog.textAfter":"문자 뒤에 간격 없음","PDFE.Views.FormatSettingsDialog.textAfterSpace":"문자 뒤에 간격 있음","PDFE.Views.FormatSettingsDialog.textBefore":"문자 앞에 간격 없음","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"앞쪽 여백","PDFE.Views.FormatSettingsDialog.textCategory":"카테고리","PDFE.Views.FormatSettingsDialog.textDate":"날짜","PDFE.Views.FormatSettingsDialog.textDecimal":"소수점 자리수","PDFE.Views.FormatSettingsDialog.textFormat":"서식","PDFE.Views.FormatSettingsDialog.textLocation":"기호 위치","PDFE.Views.FormatSettingsDialog.textMask":"임의의 패턴","PDFE.Views.FormatSettingsDialog.textNegative":"음수 형식","PDFE.Views.FormatSettingsDialog.textNone":"없음","PDFE.Views.FormatSettingsDialog.textNumber":"숫자","PDFE.Views.FormatSettingsDialog.textParens":"괄호 표시하기","PDFE.Views.FormatSettingsDialog.textPercent":"백분율","PDFE.Views.FormatSettingsDialog.textPhone":"전화 번호","PDFE.Views.FormatSettingsDialog.textRed":"빨간색 텍스트 사용","PDFE.Views.FormatSettingsDialog.textReg":"정규식","PDFE.Views.FormatSettingsDialog.textSeparator":"구분선 스타일","PDFE.Views.FormatSettingsDialog.textSpecial":"첫줄","PDFE.Views.FormatSettingsDialog.textSSN":"주민등록번호","PDFE.Views.FormatSettingsDialog.textSymbol":"통화 기호","PDFE.Views.FormatSettingsDialog.textTime":"시간","PDFE.Views.FormatSettingsDialog.textTitle":"서식 설정","PDFE.Views.FormatSettingsDialog.textZipCode":"우편번호","PDFE.Views.FormatSettingsDialog.textZipCode4":"우편번호 + 4자리 추가번호","PDFE.Views.FormatSettingsDialog.txtCustom":"사용자 지정","PDFE.Views.FormatSettingsDialog.txtSample":"예 :","PDFE.Views.FormSettings.textAdvanced":"고급 설정 표시","PDFE.Views.FormSettings.textAlways":"항상","PDFE.Views.FormSettings.textAnamorphic":"비율 유지 안 함","PDFE.Views.FormSettings.textArabic":"아랍어","PDFE.Views.FormSettings.textAutofit":"자동 맞춤","PDFE.Views.FormSettings.textBackgroundColor":"배경색","PDFE.Views.FormSettings.textBehavior":"동작 방식","PDFE.Views.FormSettings.textBeveled":"베벨드","PDFE.Views.FormSettings.textBorder":"테두리","PDFE.Views.FormSettings.textButton":"버튼","PDFE.Views.FormSettings.textChbStyle":"체크박스 스타일","PDFE.Views.FormSettings.textCheck":"확인","PDFE.Views.FormSettings.textCheckbox":"체크박스","PDFE.Views.FormSettings.textCheckDefault":"체크박스는 기본적으로 선택되어 있습니다.","PDFE.Views.FormSettings.textCircle":"원","PDFE.Views.FormSettings.textClear":"지우기","PDFE.Views.FormSettings.textColor":"색상","PDFE.Views.FormSettings.textComb":"문자 조합","PDFE.Views.FormSettings.textCombobox":"콤보박스","PDFE.Views.FormSettings.textCommit":"선택한 값을 즉시 적용","PDFE.Views.FormSettings.textCross":"교차","PDFE.Views.FormSettings.textCustomText":"사용자 지정 텍스트 허용","PDFE.Views.FormSettings.textDashed":"점선","PDFE.Views.FormSettings.textDate":"날짜","PDFE.Views.FormSettings.textDateField":"날짜 및 시간 필드","PDFE.Views.FormSettings.textDiamond":"다이아몬드","PDFE.Views.FormSettings.textDown":"아래로","PDFE.Views.FormSettings.textExport":"값 내보내기","PDFE.Views.FormSettings.textField":"텍스트 필드","PDFE.Views.FormSettings.textFitBounds":"경계에 맞추기","PDFE.Views.FormSettings.textFormat":"서식","PDFE.Views.FormSettings.textFromFile":"파일에서","PDFE.Views.FormSettings.textFromStorage":"저장소에서","PDFE.Views.FormSettings.textFromUrl":"URL로부터","PDFE.Views.FormSettings.textHindi":"힌디어","PDFE.Views.FormSettings.textHover":"롤오버","PDFE.Views.FormSettings.textHowScale":"크기","PDFE.Views.FormSettings.textIcon":"아이콘","PDFE.Views.FormSettings.textIconLeft":"아이콘 왼쪽, 레이블 오른쪽","PDFE.Views.FormSettings.textIconOnly":"아이콘만","PDFE.Views.FormSettings.textIconTop":"아이콘 위, 레이블 아래","PDFE.Views.FormSettings.textImage":"이미지","PDFE.Views.FormSettings.textInset":"안쪽 여백","PDFE.Views.FormSettings.textInvert":"반전","PDFE.Views.FormSettings.textLabel":"라벨","PDFE.Views.FormSettings.textLabelLeft":"레이블 왼쪽, 아이콘 오른쪽","PDFE.Views.FormSettings.textLabelTop":"레이블 위, 아이콘 아래","PDFE.Views.FormSettings.textLayout":"레이아웃","PDFE.Views.FormSettings.textListBox":"목록 상자","PDFE.Views.FormSettings.textLock":"잠금","PDFE.Views.FormSettings.textMask":"임의의 패턴","PDFE.Views.FormSettings.textMaxChars":"문자 제한","PDFE.Views.FormSettings.textMedium":"중","PDFE.Views.FormSettings.textMulti":"여러 줄","PDFE.Views.FormSettings.textMultisel":"다중 선택","PDFE.Views.FormSettings.textName":"이름","PDFE.Views.FormSettings.textNever":"절대","PDFE.Views.FormSettings.textNoBorder":"테두리 없음","PDFE.Views.FormSettings.textNoFill":"채우기 없음","PDFE.Views.FormSettings.textNone":"없음","PDFE.Views.FormSettings.textNormal":"위","PDFE.Views.FormSettings.textNumber":"숫자","PDFE.Views.FormSettings.textNumeral":"숫자 형식","PDFE.Views.FormSettings.textOrientation":"방향","PDFE.Views.FormSettings.textOutline":"개요","PDFE.Views.FormSettings.textOverlay":"아이콘 위 레이블","PDFE.Views.FormSettings.textPassword":"암호","PDFE.Views.FormSettings.textPercent":"백분율","PDFE.Views.FormSettings.textPhone":"전화 번호","PDFE.Views.FormSettings.textPlaceholder":"자리 표시자","PDFE.Views.FormSettings.textPlacement":"아이콘 배치","PDFE.Views.FormSettings.textProportional":"비율대로","PDFE.Views.FormSettings.textPush":"밀어내기","PDFE.Views.FormSettings.textRadiobox":"라디오 버튼","PDFE.Views.FormSettings.textRadioChoice":"라디오 버튼 선택","PDFE.Views.FormSettings.textRadioDefault":"기본적으로 버튼이 선택되어 있습니다.","PDFE.Views.FormSettings.textRadioStyle":"버튼 스타일","PDFE.Views.FormSettings.textReadonly":"읽기 전용","PDFE.Views.FormSettings.textReg":"정규식","PDFE.Views.FormSettings.textRequired":"필수","PDFE.Views.FormSettings.textScale":"확대/축소 시기","PDFE.Views.FormSettings.textScroll":"긴 텍스트 스크롤","PDFE.Views.FormSettings.textSelect":"선택","PDFE.Views.FormSettings.textSolid":"실선","PDFE.Views.FormSettings.textSpecial":"첫줄","PDFE.Views.FormSettings.textSquare":"사각형","PDFE.Views.FormSettings.textSSN":"주민등록번호","PDFE.Views.FormSettings.textStar":"별","PDFE.Views.FormSettings.textState":"주스탄트","PDFE.Views.FormSettings.textStyle":"스타일","PDFE.Views.FormSettings.textText":"텍스트","PDFE.Views.FormSettings.textTextOnly":"라벨만","PDFE.Views.FormSettings.textThick":"굵게","PDFE.Views.FormSettings.textThickness":"두께","PDFE.Views.FormSettings.textThin":"얇은","PDFE.Views.FormSettings.textTime":"시간","PDFE.Views.FormSettings.textTip":"팁","PDFE.Views.FormSettings.textTipAdd":"새 값을 추가","PDFE.Views.FormSettings.textTipDelete":"값 삭제","PDFE.Views.FormSettings.textTipDown":"아래로 이동","PDFE.Views.FormSettings.textTipUp":"위로 이동","PDFE.Views.FormSettings.textTooBig":"이미지가 너무 큽니다","PDFE.Views.FormSettings.textTooSmall":"이미지가 너무 작습니다","PDFE.Views.FormSettings.textUnderline":"밑줄","PDFE.Views.FormSettings.textUnison":"동일한 이름과 선택지를 가진 버튼들이 함께 선택됩니다","PDFE.Views.FormSettings.textUnlock":"잠금해제","PDFE.Views.FormSettings.textValue":"값 옵션","PDFE.Views.FormSettings.textZipCode":"우편번호","PDFE.Views.FormSettings.textZipCode4":"우편번호 + 4자리 추가번호","PDFE.Views.FormSettings.txtCustom":"사용자 지정","PDFE.Views.FormsTab.capBtnCheckBox":"체크박스","PDFE.Views.FormsTab.capBtnComboBox":"콤보박스","PDFE.Views.FormsTab.capBtnDropDown":"목록 상자","PDFE.Views.FormsTab.capBtnEmail":"이메일 주소","PDFE.Views.FormsTab.capBtnImage":"이미지","PDFE.Views.FormsTab.capBtnNext":"다음 필드","PDFE.Views.FormsTab.capBtnPhone":"전화 번호","PDFE.Views.FormsTab.capBtnPrev":"이전 필드","PDFE.Views.FormsTab.capBtnRadioBox":"라디오 버튼","PDFE.Views.FormsTab.capBtnText":"텍스트 필드","PDFE.Views.FormsTab.capCreditCard":"신용 카드","PDFE.Views.FormsTab.capDateTime":"날짜 및 시간","PDFE.Views.FormsTab.capZipCode":"우편번호","PDFE.Views.FormsTab.textAnyone":"모두","PDFE.Views.FormsTab.textClear":"필드 지우기","PDFE.Views.FormsTab.textClearFields":"모든 필드 지우기","PDFE.Views.FormsTab.tipCheckBox":"체크박스 삽입","PDFE.Views.FormsTab.tipComboBox":"콤보박스 삽입","PDFE.Views.FormsTab.tipCreditCard":"신용카드 번호 삽입","PDFE.Views.FormsTab.tipDateTime":"날짜 및 시간 삽입","PDFE.Views.FormsTab.tipDropDown":"목록 상자 삽입","PDFE.Views.FormsTab.tipEmailField":"이메일 주소 삽입","PDFE.Views.FormsTab.tipImageField":"이미지 삽입","PDFE.Views.FormsTab.tipNextForm":"다음 필드로 이동","PDFE.Views.FormsTab.tipPhoneField":"전화번호 삽입","PDFE.Views.FormsTab.tipPrevForm":"이전 필드로 이동","PDFE.Views.FormsTab.tipRadioBox":"라디오버튼 삽입","PDFE.Views.FormsTab.tipTextField":"텍스트 필드 삽입","PDFE.Views.FormsTab.tipZipCode":"우편번호 삽입","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"표시","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"링크 대상","PDFE.Views.HyperlinkSettingsDialog.textDefault":"선택한 텍스트 조각","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"여기에 캡션 입력","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"여기에 링크 입력","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"여기에 툴팁 입력","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"외부 링크","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"이 문서의 페이지","PDFE.Views.HyperlinkSettingsDialog.textPages":"페이지","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"파일 선택","PDFE.Views.HyperlinkSettingsDialog.textTipText":"스크린 팁 텍스트","PDFE.Views.HyperlinkSettingsDialog.textTitle":"하이퍼링크 설정","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"스크롤 막대, 마우스 및 확대/축소 기능을 사용하여 대상 뷰를 선택한 다음 [링크 설정]을 눌러 링크 대상을 생성합니다.","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"보러가기 생성","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"이 필드는 필수 입력 항목입니다","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"첫 페이지","PDFE.Views.HyperlinkSettingsDialog.txtLast":"마지막 페이지","PDFE.Views.HyperlinkSettingsDialog.txtNext":"다음 페이지","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.","PDFE.Views.HyperlinkSettingsDialog.txtPage":"페이지","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"페이지 보기로 가기","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"이전 페이지","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"링크 설정","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"이 필드는 2083 자로 제한되어 있습니다","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"웹 주소를 입력하거나 파일을 선택하세요","PDFE.Views.ImageSettings.strTransparency":"불투명도","PDFE.Views.ImageSettings.textAdvanced":"고급 설정 표시","PDFE.Views.ImageSettings.textCrop":"자르기","PDFE.Views.ImageSettings.textCropFill":"채우기","PDFE.Views.ImageSettings.textCropFit":"맞춤","PDFE.Views.ImageSettings.textCropToShape":"도형에 맞게 자르기","PDFE.Views.ImageSettings.textEdit":"편집","PDFE.Views.ImageSettings.textEditObject":"개체 편집","PDFE.Views.ImageSettings.textFitPage":"페이지에 맞춤","PDFE.Views.ImageSettings.textFlip":"대칭","PDFE.Views.ImageSettings.textFromFile":"파일에서","PDFE.Views.ImageSettings.textFromStorage":"저장소에서","PDFE.Views.ImageSettings.textFromUrl":"URL로부터","PDFE.Views.ImageSettings.textHeight":"높이","PDFE.Views.ImageSettings.textHint270":"반시계 방향으로 90도 회전","PDFE.Views.ImageSettings.textHint90":"오른쪽으로 90도 회전","PDFE.Views.ImageSettings.textHintFlipH":"좌우대칭","PDFE.Views.ImageSettings.textHintFlipV":"상하대칭","PDFE.Views.ImageSettings.textInsert":"이미지 바꾸기","PDFE.Views.ImageSettings.textOriginalSize":"실제 크기","PDFE.Views.ImageSettings.textRecentlyUsed":"최근 사용된","PDFE.Views.ImageSettings.textResetCrop":"자르기 초기화","PDFE.Views.ImageSettings.textRotate90":"90도 회전","PDFE.Views.ImageSettings.textRotation":"회전","PDFE.Views.ImageSettings.textSize":"크기","PDFE.Views.ImageSettings.textWidth":"너비","PDFE.Views.ImageSettingsAdvanced.textAlt":"대체 텍스트","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"설명","PDFE.Views.ImageSettingsAdvanced.textAltTip":"시각 또는 인지 장애가 있는 사용자가 이미지, 도형, 차트, 표 등에 포함된 정보를 더 잘 이해할 수 있도록 제공되는 대체 텍스트 기반 설명입니다.","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"제목","PDFE.Views.ImageSettingsAdvanced.textAngle":"각도","PDFE.Views.ImageSettingsAdvanced.textCenter":"가운데","PDFE.Views.ImageSettingsAdvanced.textFlipped":"뒤집기","PDFE.Views.ImageSettingsAdvanced.textFrom":"보낸 사람","PDFE.Views.ImageSettingsAdvanced.textGeneral":"일반","PDFE.Views.ImageSettingsAdvanced.textHeight":"높이","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"수평","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"수평","PDFE.Views.ImageSettingsAdvanced.textImageName":"이미지 이름","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"상수 비율","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"실제 크기","PDFE.Views.ImageSettingsAdvanced.textPlacement":"배치","PDFE.Views.ImageSettingsAdvanced.textPosition":"위치","PDFE.Views.ImageSettingsAdvanced.textRotation":"회전","PDFE.Views.ImageSettingsAdvanced.textSize":"크기","PDFE.Views.ImageSettingsAdvanced.textTitle":"이미지 - 고급 설정","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"왼쪽 상단 모서리","PDFE.Views.ImageSettingsAdvanced.textVertical":"세로","PDFE.Views.ImageSettingsAdvanced.textVertically":"수직","PDFE.Views.ImageSettingsAdvanced.textWidth":"너비","PDFE.Views.InsTab.capBlankPage":"빈 페이지","PDFE.Views.InsTab.capBtnDateTime":"날짜 및 시간","PDFE.Views.InsTab.capBtnInsHeaderFooter":"머리말/꼬리말","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"기호","PDFE.Views.InsTab.capBtnPageNum":"페이지 번호","PDFE.Views.InsTab.capInsertChart":"차트","PDFE.Views.InsTab.capInsertEquation":"수식","PDFE.Views.InsTab.capInsertHyperlink":"하이퍼링크","PDFE.Views.InsTab.capInsertImage":"이미지","PDFE.Views.InsTab.capInsertShape":"도형","PDFE.Views.InsTab.capInsertTable":"표","PDFE.Views.InsTab.capInsertText":"텍스트 상자","PDFE.Views.InsTab.capInsertTextArt":"텍스트 아트","PDFE.Views.InsTab.capInsPage":"페이지 삽입","PDFE.Views.InsTab.mniCustomTable":"사용자 정의 테이블 삽입","PDFE.Views.InsTab.mniImageFromFile":"파일에서 이미지 삽입","PDFE.Views.InsTab.mniImageFromStorage":"저장소에서 이미지 삽입","PDFE.Views.InsTab.mniImageFromUrl":"URL에서 이미지 삽입","PDFE.Views.InsTab.mniInsertSSE":"스프레드시트 삽입","PDFE.Views.InsTab.textAlpha":"소문자 알파","PDFE.Views.InsTab.textBetta":"소문자 베타","PDFE.Views.InsTab.textBlackHeart":"검정 하트","PDFE.Views.InsTab.textBullet":"글머리 기호","PDFE.Views.InsTab.textCopyright":"저작권 표시","PDFE.Views.InsTab.textDegree":"도수 기호","PDFE.Views.InsTab.textDelta":"소문자 델타","PDFE.Views.InsTab.textDivision":"나누기 기호","PDFE.Views.InsTab.textDollar":"달러 기호","PDFE.Views.InsTab.textEuro":"유로화","PDFE.Views.InsTab.textGreaterEqual":"크거나 같음","PDFE.Views.InsTab.textInfinity":"무한대","PDFE.Views.InsTab.textLessEqual":"보다 작거나 같음","PDFE.Views.InsTab.textLetterPi":"소문자 파이","PDFE.Views.InsTab.textMoreSymbols":"더 많은 기호","PDFE.Views.InsTab.textNotEqualTo":"같지 않음","PDFE.Views.InsTab.textOneHalf":"2분의 1","PDFE.Views.InsTab.textOneQuarter":"4분의 1","PDFE.Views.InsTab.textPlusMinus":"플러스 마이너스 기호","PDFE.Views.InsTab.textRecentlyUsed":"최근 사용된","PDFE.Views.InsTab.textRegistered":"등록된 서명","PDFE.Views.InsTab.textSection":"섹션 기호","PDFE.Views.InsTab.textSmile":"환한 미소","PDFE.Views.InsTab.textSquareRoot":"제곱근","PDFE.Views.InsTab.textTilde":"물결표","PDFE.Views.InsTab.textTradeMark":"상표 표시","PDFE.Views.InsTab.textYen":"엔화 기호","PDFE.Views.InsTab.tipChangeChart":"차트 유형 변경","PDFE.Views.InsTab.tipDateTime":"현재 날짜 시간 삽입","PDFE.Views.InsTab.tipEditHeaderFooter":"머리글 또는 바닥글 편집","PDFE.Views.InsTab.tipInsertChart":"차트 삽입","PDFE.Views.InsTab.tipInsertEquation":"수식 삽입","PDFE.Views.InsTab.tipInsertHorizontalText":"가로 텍스트 상자 삽입","PDFE.Views.InsTab.tipInsertHyperlink":"링크 추가","PDFE.Views.InsTab.tipInsertImage":"이미지 삽입","PDFE.Views.InsTab.tipInsertPage":"빈 페이지 삽입","PDFE.Views.InsTab.tipInsertPageAfter":"다음에 빈 페이지 삽입","PDFE.Views.InsTab.tipInsertShape":"도형 삽입","PDFE.Views.InsTab.tipInsertSmartArt":"SmartArt 삽입","PDFE.Views.InsTab.tipInsertSymbol":"기호 삽입","PDFE.Views.InsTab.tipInsertTable":"표 삽입","PDFE.Views.InsTab.tipInsertText":"텍스트 상자 삽입","PDFE.Views.InsTab.tipInsertTextArt":"텍스트 아트 삽입","PDFE.Views.InsTab.tipInsertVerticalText":"세로 텍스트 상자 삽입","PDFE.Views.InsTab.tipPageNum":"페이지 번호 삽입","PDFE.Views.InsTab.txtNewPageAfter":"다음에 빈 페이지 삽입","PDFE.Views.InsTab.txtNewPageBefore":"이전에 빈 페이지 삽입","PDFE.Views.LeftMenu.ariaLeftMenu":"왼쪽 메뉴","PDFE.Views.LeftMenu.tipAbout":"정보","PDFE.Views.LeftMenu.tipChat":"채팅","PDFE.Views.LeftMenu.tipComments":"코멘트","PDFE.Views.LeftMenu.tipNavigation":"내비게이션","PDFE.Views.LeftMenu.tipOutline":"제목","PDFE.Views.LeftMenu.tipPageThumbnails":"페이지 썸네일","PDFE.Views.LeftMenu.tipPlugins":"플러그인","PDFE.Views.LeftMenu.tipSearch":"검색","PDFE.Views.LeftMenu.tipSupport":"피드백 및 지원","PDFE.Views.LeftMenu.tipTitles":"제목","PDFE.Views.LeftMenu.txtDeveloper":"개발자 모드","PDFE.Views.LeftMenu.txtEditor":"PDF 에디터","PDFE.Views.LeftMenu.txtLimit":"접근제한","PDFE.Views.LeftMenu.txtTrial":"시험 모드","PDFE.Views.LeftMenu.txtTrialDev":"개발자 모드 시도","PDFE.Views.Navigation.strNavigate":"제목","PDFE.Views.Navigation.txtClosePanel":"제목 닫기","PDFE.Views.Navigation.txtCollapse":"모두 접기","PDFE.Views.Navigation.txtEmptyItem":"머리말 없슴","PDFE.Views.Navigation.txtEmptyViewer":"문서에 제목이 없습니다. ","PDFE.Views.Navigation.txtExpand":"모두 확장","PDFE.Views.Navigation.txtExpandToLevel":"레벨로 확장하기","PDFE.Views.Navigation.txtFontSize":"글자 크기","PDFE.Views.Navigation.txtLarge":"큰","PDFE.Views.Navigation.txtMedium":"중","PDFE.Views.Navigation.txtSettings":"제목 설정","PDFE.Views.Navigation.txtSmall":"작은","PDFE.Views.Navigation.txtWrapHeadings":"긴 제목 줄 바꿈","PDFE.Views.PageThumbnails.textClosePanel":"페이지 썸네일 닫기","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"페이지에서 보이는 부분 강조 표시","PDFE.Views.PageThumbnails.textPageThumbnails":"페이지 썸네일","PDFE.Views.PageThumbnails.textThumbnailsSettings":"썸네일 설정","PDFE.Views.PageThumbnails.textThumbnailsSize":"썸네일 크기","PDFE.Views.ParagraphSettings.strLineHeight":"줄 간격","PDFE.Views.ParagraphSettings.strParagraphSpacing":"단락 간격","PDFE.Views.ParagraphSettings.strSpacingAfter":"후","PDFE.Views.ParagraphSettings.strSpacingBefore":"단락 앞","PDFE.Views.ParagraphSettings.textAdvanced":"고급 설정 표시","PDFE.Views.ParagraphSettings.textAt":"At","PDFE.Views.ParagraphSettings.textAtLeast":"최소","PDFE.Views.ParagraphSettings.textAuto":"배수","PDFE.Views.ParagraphSettings.textExact":"정확히","PDFE.Views.ParagraphSettings.txtAutoText":"자동","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"지정된 탭이이 필드에 나타납니다","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"모든 대문자","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"방향","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"이중 취소선","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"들여쓰기","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"왼쪽","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"줄 간격","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"오른쪽","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"후","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"단락 앞","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"첫줄","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"글꼴","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"들여쓰기 및 간격","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"작은 대문자","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"간격","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"취소선","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"첨자","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"위 첨자","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"탭","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"정렬","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"배수","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"문자 간격","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"기본 탭","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"왼쪽에서 오른쪽으로","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"오른쪽에서 왼쪽으로","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"효과","PDFE.Views.ParagraphSettingsAdvanced.textExact":"정확히","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"첫 번째 줄","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"둘째 줄 이하","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"균등분할","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(없음)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"삭제","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"모두 제거","PDFE.Views.ParagraphSettingsAdvanced.textSet":"지정","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"가운데","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"왼쪽","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"탭 위치","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"오른쪽","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"단락 - 고급 설정","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"자동","PDFE.Views.PrintWithPreview.textMarginsLast":"마지막 사용자 정의","PDFE.Views.PrintWithPreview.textMarginsModerate":"보통","PDFE.Views.PrintWithPreview.textMarginsNarrow":"좁게","PDFE.Views.PrintWithPreview.textMarginsNormal":"표준","PDFE.Views.PrintWithPreview.textMarginsWide":"넓게","PDFE.Views.PrintWithPreview.txtAllPages":"전체 페이지","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"흑백 인쇄","PDFE.Views.PrintWithPreview.txtBothSides":"양면에 인쇄","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"긴 변을 중심으로 페이지를 뒤집다","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"짧은 변을 중심으로 페이지를 뒤집다","PDFE.Views.PrintWithPreview.txtBottom":"하단","PDFE.Views.PrintWithPreview.txtColorPrinting":"컬러 인쇄","PDFE.Views.PrintWithPreview.txtContent":"Content","PDFE.Views.PrintWithPreview.txtCopies":"사본","PDFE.Views.PrintWithPreview.txtCurrentPage":"현재 페이지","PDFE.Views.PrintWithPreview.txtCustom":"사용자 정의","PDFE.Views.PrintWithPreview.txtCustomPages":"맞춤 인쇄","PDFE.Views.PrintWithPreview.txtDocument":"Document","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"Document and Markups","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"Document and Stamps","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"Form fields only","PDFE.Views.PrintWithPreview.txtLandscape":"수평","PDFE.Views.PrintWithPreview.txtLeft":"왼쪽","PDFE.Views.PrintWithPreview.txtMargins":"여백","PDFE.Views.PrintWithPreview.txtOf":"/ {0}","PDFE.Views.PrintWithPreview.txtOneSide":"단면 인쇄","PDFE.Views.PrintWithPreview.txtOneSideDesc":"페이지의 한쪽에만 인쇄","PDFE.Views.PrintWithPreview.txtPage":"페이지","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","PDFE.Views.PrintWithPreview.txtPageOrientation":"페이지 방향","PDFE.Views.PrintWithPreview.txtPages":"페이지","PDFE.Views.PrintWithPreview.txtPageSize":"페이지 크기","PDFE.Views.PrintWithPreview.txtPortrait":"세로","PDFE.Views.PrintWithPreview.txtPrint":"인쇄","PDFE.Views.PrintWithPreview.txtPrinter":"프린터","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"선택된 프린터 없음","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"프린터를 찾을 수 없습니다","PDFE.Views.PrintWithPreview.txtPrintPdf":"PDF로 인쇄","PDFE.Views.PrintWithPreview.txtPrintRange":"인쇄 범위","PDFE.Views.PrintWithPreview.txtPrintSides":"인쇄면","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"시스템 대화상자를 사용하여 인쇄","PDFE.Views.PrintWithPreview.txtRight":"오른쪽","PDFE.Views.PrintWithPreview.txtSelection":"선택","PDFE.Views.PrintWithPreview.txtTop":"맨 위","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"프린터 대기 중","PDFE.Views.RedactTab.capApplyRedactions":"편집 적용","PDFE.Views.RedactTab.capFindRedact":"찾기 및 편집","PDFE.Views.RedactTab.capMarkRedact":"편집 대상 지정","PDFE.Views.RedactTab.capRedactPages":"페이지 비공개 처리","PDFE.Views.RedactTab.tipApplyRedactions":"편집 적용","PDFE.Views.RedactTab.tipFindRedact":"찾기 및 편집","PDFE.Views.RedactTab.tipMarkForRedact":"편집 대상 지정","PDFE.Views.RedactTab.tipRedactPages":"페이지 비공개 처리","PDFE.Views.RedactTab.txtMarkCurrentPage":"현재 페이지를 표시","PDFE.Views.RedactTab.txtSelectRange":"범위 선택","PDFE.Views.RightMenu.ariaRightMenu":"오른쪽 메뉴","PDFE.Views.RightMenu.txtChartSettings":"차트 설정","PDFE.Views.RightMenu.txtFormSettings":"폼 설정","PDFE.Views.RightMenu.txtImageSettings":"이미지 설정","PDFE.Views.RightMenu.txtParagraphSettings":"단락 설정","PDFE.Views.RightMenu.txtShapeSettings":"도형 설정","PDFE.Views.RightMenu.txtTableSettings":"표 설정","PDFE.Views.RightMenu.txtTextArtSettings":"텍스트 아트 설정","PDFE.Views.ShapeSettings.strBackground":"배경색","PDFE.Views.ShapeSettings.strChange":"도형 변경","PDFE.Views.ShapeSettings.strColor":"색상","PDFE.Views.ShapeSettings.strFill":"채우기","PDFE.Views.ShapeSettings.strForeground":"전경색","PDFE.Views.ShapeSettings.strPattern":"패턴","PDFE.Views.ShapeSettings.strShadow":"음영 표시","PDFE.Views.ShapeSettings.strSize":"크기","PDFE.Views.ShapeSettings.strStroke":"선","PDFE.Views.ShapeSettings.strTransparency":"불투명도","PDFE.Views.ShapeSettings.strType":"형식","PDFE.Views.ShapeSettings.textAdjustShadow":"그림자 조정","PDFE.Views.ShapeSettings.textAdvanced":"고급 설정 표시","PDFE.Views.ShapeSettings.textAngle":"각도","PDFE.Views.ShapeSettings.textBorderSizeErr":"입력한 값이 올바르지 않습니다.
0pt에서 1584pt 사이의 값을 입력해 주세요.","PDFE.Views.ShapeSettings.textColor":"색 채우기","PDFE.Views.ShapeSettings.textDirection":"방향","PDFE.Views.ShapeSettings.textEditPoints":"점 편집","PDFE.Views.ShapeSettings.textEditShape":"도형 편집","PDFE.Views.ShapeSettings.textEmptyPattern":"패턴 없음","PDFE.Views.ShapeSettings.textEyedropper":"스포이트","PDFE.Views.ShapeSettings.textFlip":"대칭","PDFE.Views.ShapeSettings.textFromFile":"파일에서","PDFE.Views.ShapeSettings.textFromStorage":"저장소에서","PDFE.Views.ShapeSettings.textFromUrl":"URL로부터","PDFE.Views.ShapeSettings.textGradient":"그라데이션 포인트","PDFE.Views.ShapeSettings.textGradientFill":"그라데이션 채우기","PDFE.Views.ShapeSettings.textHint270":"반시계 방향으로 90도 회전","PDFE.Views.ShapeSettings.textHint90":"오른쪽으로 90도 회전","PDFE.Views.ShapeSettings.textHintFlipH":"좌우대칭","PDFE.Views.ShapeSettings.textHintFlipV":"상하대칭","PDFE.Views.ShapeSettings.textImageTexture":"그림 또는 질감","PDFE.Views.ShapeSettings.textLinear":"선형","PDFE.Views.ShapeSettings.textMoreColors":"색상 더 보기","PDFE.Views.ShapeSettings.textNoFill":"채우기 없음","PDFE.Views.ShapeSettings.textNoShadow":"그림자 없음","PDFE.Views.ShapeSettings.textPatternFill":"패턴","PDFE.Views.ShapeSettings.textPosition":"위치","PDFE.Views.ShapeSettings.textRadial":"방사형","PDFE.Views.ShapeSettings.textRecentlyUsed":"최근 사용된","PDFE.Views.ShapeSettings.textRotate90":"90도 회전","PDFE.Views.ShapeSettings.textRotation":"회전","PDFE.Views.ShapeSettings.textSelectImage":"그림선택","PDFE.Views.ShapeSettings.textSelectTexture":"선택","PDFE.Views.ShapeSettings.textShadow":"그림자","PDFE.Views.ShapeSettings.textStretch":"늘이기","PDFE.Views.ShapeSettings.textStyle":"스타일","PDFE.Views.ShapeSettings.textTexture":"텍스처에서","PDFE.Views.ShapeSettings.textTile":"타일","PDFE.Views.ShapeSettings.tipAddGradientPoint":"그라데이션 포인트 추가","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"그라데이션 포인트 제거","PDFE.Views.ShapeSettings.txtBrownPaper":"갈색 종이","PDFE.Views.ShapeSettings.txtCanvas":"캔버스","PDFE.Views.ShapeSettings.txtCarton":"상자","PDFE.Views.ShapeSettings.txtDarkFabric":"짙은 무늬","PDFE.Views.ShapeSettings.txtGrain":"곡물","PDFE.Views.ShapeSettings.txtGranite":"화강암","PDFE.Views.ShapeSettings.txtGreyPaper":"회색 용지","PDFE.Views.ShapeSettings.txtKnit":"니트","PDFE.Views.ShapeSettings.txtLeather":"가죽","PDFE.Views.ShapeSettings.txtNoBorders":"선 없음","PDFE.Views.ShapeSettings.txtOffsetBottom":"오프셋: 아래쪽","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"오프셋: 왼쪽 아래","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"오프셋: 오른쪽 아래","PDFE.Views.ShapeSettings.txtOffsetCenter":"오프셋: 가운데","PDFE.Views.ShapeSettings.txtOffsetLeft":"오프셋: 왼쪽","PDFE.Views.ShapeSettings.txtOffsetRight":"오프셋: 오른쪽","PDFE.Views.ShapeSettings.txtOffsetTop":"오프셋: 위쪽","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"오프셋: 왼쪽 위","PDFE.Views.ShapeSettings.txtOffsetTopRight":"오프셋: 오른쪽 위","PDFE.Views.ShapeSettings.txtPapyrus":"파피루스","PDFE.Views.ShapeSettings.txtWood":"우드","PDFE.Views.ShapeSettingsAdvanced.strColumns":"열","PDFE.Views.ShapeSettingsAdvanced.strMargins":"텍스트 채우기","PDFE.Views.ShapeSettingsAdvanced.textAlt":"대체 텍스트","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"설명","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"시각 또는 인지 장애가 있는 사용자가 이미지, 도형, 차트, 표 등의 정보를 더 잘 이해할 수 있도록 읽어주는 대체 텍스트 기반 설명입니다.","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"제목","PDFE.Views.ShapeSettingsAdvanced.textAngle":"각도","PDFE.Views.ShapeSettingsAdvanced.textArrows":"화살표","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"자동 맞춤","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"크기 시작","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"스타일 시작","PDFE.Views.ShapeSettingsAdvanced.textBevel":"베벨","PDFE.Views.ShapeSettingsAdvanced.textBottom":"바닥","PDFE.Views.ShapeSettingsAdvanced.textCapType":"모자 유형","PDFE.Views.ShapeSettingsAdvanced.textCenter":"가운데","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"열 수","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"최종 크기","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"끝 스타일","PDFE.Views.ShapeSettingsAdvanced.textFlat":"평면","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"뒤집기","PDFE.Views.ShapeSettingsAdvanced.textFrom":"보낸 사람","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"일반","PDFE.Views.ShapeSettingsAdvanced.textHeight":"높이","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"수평","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"수평","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"조인 유형","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"비율 유지","PDFE.Views.ShapeSettingsAdvanced.textLeft":"왼쪽","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"선 스타일","PDFE.Views.ShapeSettingsAdvanced.textMiter":"연귀","PDFE.Views.ShapeSettingsAdvanced.textNofit":"자동 맞춤 안 함","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"배치","PDFE.Views.ShapeSettingsAdvanced.textPosition":"위치","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"텍스트에 맞게 모양 조정","PDFE.Views.ShapeSettingsAdvanced.textRight":"오른쪽","PDFE.Views.ShapeSettingsAdvanced.textRotation":"회전","PDFE.Views.ShapeSettingsAdvanced.textRound":"원","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"도형 이름","PDFE.Views.ShapeSettingsAdvanced.textShrink":"텍스트 초과시 자동 조정","PDFE.Views.ShapeSettingsAdvanced.textSize":"크기","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"열 사이의 간격","PDFE.Views.ShapeSettingsAdvanced.textSquare":"사각형","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"텍스트 상자","PDFE.Views.ShapeSettingsAdvanced.textTitle":"도형 - 고급 설정","PDFE.Views.ShapeSettingsAdvanced.textTop":"맨 위","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"왼쪽 상단 모서리","PDFE.Views.ShapeSettingsAdvanced.textVertical":"세로","PDFE.Views.ShapeSettingsAdvanced.textVertically":"수직","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"가중치 및 화살표","PDFE.Views.ShapeSettingsAdvanced.textWidth":"너비","PDFE.Views.ShapeSettingsAdvanced.txtNone":"없음","PDFE.Views.Statusbar.goToPageText":"페이지로 이동","PDFE.Views.Statusbar.pageIndexText":"{1}의 페이지 {0}","PDFE.Views.Statusbar.tipFitPage":"페이지에 맞춤","PDFE.Views.Statusbar.tipFitWidth":"너비에 맞춤","PDFE.Views.Statusbar.tipHandTool":"손도구","PDFE.Views.Statusbar.tipPageNext":"다음 페이지로 이동","PDFE.Views.Statusbar.tipPagePrev":"이전 페이지로 이동","PDFE.Views.Statusbar.tipSelectTool":"도구 선택","PDFE.Views.Statusbar.tipZoomFactor":"확대/축소","PDFE.Views.Statusbar.tipZoomIn":"확대","PDFE.Views.Statusbar.tipZoomOut":"축소","PDFE.Views.Statusbar.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","PDFE.Views.TableSettings.deleteColumnText":"열 삭제","PDFE.Views.TableSettings.deleteRowText":"행 삭제","PDFE.Views.TableSettings.deleteTableText":"테이블 삭제","PDFE.Views.TableSettings.insertColumnLeftText":"왼쪽 열 삽입","PDFE.Views.TableSettings.insertColumnRightText":"오른쪽 열 삽입","PDFE.Views.TableSettings.insertRowAboveText":"위에 행 삽입","PDFE.Views.TableSettings.insertRowBelowText":"아래에 행 삽입","PDFE.Views.TableSettings.mergeCellsText":"셀 병합","PDFE.Views.TableSettings.selectCellText":"셀 선택","PDFE.Views.TableSettings.selectColumnText":"열 선택","PDFE.Views.TableSettings.selectRowText":"행 선택","PDFE.Views.TableSettings.selectTableText":"표 선택","PDFE.Views.TableSettings.splitCellsText":"셀 분할 ...","PDFE.Views.TableSettings.splitCellTitleText":"셀 분할","PDFE.Views.TableSettings.textAdvanced":"고급 설정 표시","PDFE.Views.TableSettings.textBackColor":"배경색","PDFE.Views.TableSettings.textBanded":"줄무늬","PDFE.Views.TableSettings.textBorderColor":"색상","PDFE.Views.TableSettings.textBorders":"테두리 스타일","PDFE.Views.TableSettings.textCellSize":"셀 크기","PDFE.Views.TableSettings.textColumns":"열","PDFE.Views.TableSettings.textDistributeCols":"열 균등 분할","PDFE.Views.TableSettings.textDistributeRows":"행 배포","PDFE.Views.TableSettings.textEdit":"행 및 열","PDFE.Views.TableSettings.textEmptyTemplate":"템플릿 없음","PDFE.Views.TableSettings.textFirst":"처음","PDFE.Views.TableSettings.textHeader":"머리글","PDFE.Views.TableSettings.textHeight":"높이","PDFE.Views.TableSettings.textLast":"마지막","PDFE.Views.TableSettings.textRows":"행","PDFE.Views.TableSettings.textSelectBorders":"위에서 선택한 스타일 적용을 변경하려는 테두리 선택","PDFE.Views.TableSettings.textTemplate":"템플릿에서 선택","PDFE.Views.TableSettings.textTotal":"합계","PDFE.Views.TableSettings.textWidth":"너비","PDFE.Views.TableSettings.tipAll":"바깥쪽 테두리 및 안쪽 테두리","PDFE.Views.TableSettings.tipBottom":"바깥 아래쪽 테두리","PDFE.Views.TableSettings.tipInner":"내부 라인 만 설정","PDFE.Views.TableSettings.tipInnerHor":"안쪽 가로 테두리","PDFE.Views.TableSettings.tipInnerVert":"세로 내부 선만 설정","PDFE.Views.TableSettings.tipLeft":"바깥 왼쪽 테두리","PDFE.Views.TableSettings.tipNone":"테두리 없음 설정","PDFE.Views.TableSettings.tipOuter":"바깥쪽 테두리","PDFE.Views.TableSettings.tipRight":"바깥 오른쪽 테두리","PDFE.Views.TableSettings.tipTop":"바깥 위쪽 테두리","PDFE.Views.TableSettings.txtGroupTable_Custom":"사용자 지정","PDFE.Views.TableSettings.txtGroupTable_Dark":"어두운","PDFE.Views.TableSettings.txtGroupTable_Light":"밝은","PDFE.Views.TableSettings.txtGroupTable_Medium":"중","PDFE.Views.TableSettings.txtGroupTable_Optimal":"문서에 대한 최적의 일치","PDFE.Views.TableSettings.txtNoBorders":"테두리 없음","PDFE.Views.TableSettings.txtTable_Accent":"강조","PDFE.Views.TableSettings.txtTable_DarkStyle":"어두운 스타일","PDFE.Views.TableSettings.txtTable_LightStyle":"밝은 스타일","PDFE.Views.TableSettings.txtTable_MediumStyle":"보통 스타일","PDFE.Views.TableSettings.txtTable_NoGrid":"그리드 없음","PDFE.Views.TableSettings.txtTable_NoStyle":"스타일 없음","PDFE.Views.TableSettings.txtTable_TableGrid":"테이블 그리드","PDFE.Views.TableSettings.txtTable_ThemedStyle":"테마 스타일","PDFE.Views.TableSettingsAdvanced.textAlt":"대체 텍스트","PDFE.Views.TableSettingsAdvanced.textAltDescription":"설명","PDFE.Views.TableSettingsAdvanced.textAltTip":"시각 또는 인지 장애가 있는 사용자가 이미지, 도형, 차트, 표 등의 정보를 더 잘 이해할 수 있도록 제공되는 대체 텍스트 기반 설명입니다.","PDFE.Views.TableSettingsAdvanced.textAltTitle":"제목","PDFE.Views.TableSettingsAdvanced.textBottom":"바닥","PDFE.Views.TableSettingsAdvanced.textCenter":"가운데","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"기본 여백 사용","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"기본 여백","PDFE.Views.TableSettingsAdvanced.textFrom":"보낸 사람","PDFE.Views.TableSettingsAdvanced.textGeneral":"일반","PDFE.Views.TableSettingsAdvanced.textHeight":"높이","PDFE.Views.TableSettingsAdvanced.textHorizontal":"수평","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"비율 유지","PDFE.Views.TableSettingsAdvanced.textLeft":"왼쪽","PDFE.Views.TableSettingsAdvanced.textMargins":"셀 여백","PDFE.Views.TableSettingsAdvanced.textPlacement":"배치","PDFE.Views.TableSettingsAdvanced.textPosition":"위치","PDFE.Views.TableSettingsAdvanced.textRight":"오른쪽","PDFE.Views.TableSettingsAdvanced.textSize":"크기","PDFE.Views.TableSettingsAdvanced.textTableName":"테이블 이름","PDFE.Views.TableSettingsAdvanced.textTitle":"표 - 고급 설정","PDFE.Views.TableSettingsAdvanced.textTop":"맨 위","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"왼쪽 상단 모서리","PDFE.Views.TableSettingsAdvanced.textVertical":"세로","PDFE.Views.TableSettingsAdvanced.textWidth":"너비","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"여백","PDFE.Views.TextArtSettings.strBackground":"배경색","PDFE.Views.TextArtSettings.strColor":"색상","PDFE.Views.TextArtSettings.strFill":"채우기","PDFE.Views.TextArtSettings.strForeground":"전경색","PDFE.Views.TextArtSettings.strPattern":"패턴","PDFE.Views.TextArtSettings.strSize":"크기","PDFE.Views.TextArtSettings.strStroke":"선","PDFE.Views.TextArtSettings.strTransparency":"불투명도","PDFE.Views.TextArtSettings.strType":"형식","PDFE.Views.TextArtSettings.textAngle":"각도","PDFE.Views.TextArtSettings.textBorderSizeErr":"입력한 값이 올바르지 않습니다.
0pt에서 1584pt 사이의 값을 입력해 주세요.","PDFE.Views.TextArtSettings.textColor":"색 채우기","PDFE.Views.TextArtSettings.textDirection":"방향","PDFE.Views.TextArtSettings.textEmptyPattern":"패턴 없음","PDFE.Views.TextArtSettings.textFromFile":"파일에서","PDFE.Views.TextArtSettings.textFromUrl":"URL로부터","PDFE.Views.TextArtSettings.textGradient":"그라데이션 포인트","PDFE.Views.TextArtSettings.textGradientFill":"그라데이션 채우기","PDFE.Views.TextArtSettings.textImageTexture":"그림 또는 질감","PDFE.Views.TextArtSettings.textLinear":"선형","PDFE.Views.TextArtSettings.textNoFill":"채우기 없음","PDFE.Views.TextArtSettings.textPatternFill":"패턴","PDFE.Views.TextArtSettings.textPosition":"위치","PDFE.Views.TextArtSettings.textRadial":"방사형","PDFE.Views.TextArtSettings.textSelectTexture":"선택","PDFE.Views.TextArtSettings.textStretch":"늘이기","PDFE.Views.TextArtSettings.textStyle":"스타일","PDFE.Views.TextArtSettings.textTemplate":"템플릿","PDFE.Views.TextArtSettings.textTexture":"텍스처에서","PDFE.Views.TextArtSettings.textTile":"타일","PDFE.Views.TextArtSettings.textTransform":"변형","PDFE.Views.TextArtSettings.tipAddGradientPoint":"그라데이션 포인트 추가","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"그라데이션 포인트 제거","PDFE.Views.TextArtSettings.txtBrownPaper":"갈색 종이","PDFE.Views.TextArtSettings.txtCanvas":"캔버스","PDFE.Views.TextArtSettings.txtCarton":"상자","PDFE.Views.TextArtSettings.txtDarkFabric":"짙은 무늬","PDFE.Views.TextArtSettings.txtGrain":"곡물","PDFE.Views.TextArtSettings.txtGranite":"화강암","PDFE.Views.TextArtSettings.txtGreyPaper":"회색 용지","PDFE.Views.TextArtSettings.txtKnit":"니트","PDFE.Views.TextArtSettings.txtLeather":"가죽","PDFE.Views.TextArtSettings.txtNoBorders":"선 없음","PDFE.Views.TextArtSettings.txtPapyrus":"파피루스","PDFE.Views.TextArtSettings.txtWood":"우드","PDFE.Views.Toolbar.capBtnAddComment":"Add Comment","PDFE.Views.Toolbar.capBtnArrowComment":"화살표","PDFE.Views.Toolbar.capBtnCircleComment":"원","PDFE.Views.Toolbar.capBtnComment":"코멘트","PDFE.Views.Toolbar.capBtnDelPage":"페이지를 삭제","PDFE.Views.Toolbar.capBtnDownloadForm":"PDF형식으로 다운로드","PDFE.Views.Toolbar.capBtnEditText":"텍스트 편집","PDFE.Views.Toolbar.capBtnHand":"손","PDFE.Views.Toolbar.capBtnNext":"다음 필드","PDFE.Views.Toolbar.capBtnPolyLineComment":"연결선","PDFE.Views.Toolbar.capBtnPrev":"이전 필드","PDFE.Views.Toolbar.capBtnRecognize":"텍스트 편집","PDFE.Views.Toolbar.capBtnRectComment":"직사각형","PDFE.Views.Toolbar.capBtnRotate":"회전","PDFE.Views.Toolbar.capBtnRotatePage":"페이지 회전","PDFE.Views.Toolbar.capBtnSaveForm":"PDF로 저장","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"다른 이름으로 저장...","PDFE.Views.Toolbar.capBtnSelect":"선택","PDFE.Views.Toolbar.capBtnShowComments":"댓글 표시","PDFE.Views.Toolbar.capBtnStamp":"스탬프","PDFE.Views.Toolbar.capBtnSubmit":"전송","PDFE.Views.Toolbar.capBtnTextCallout":"텍스트 말풍선","PDFE.Views.Toolbar.capBtnTextComment":"텍스트 댓글","PDFE.Views.Toolbar.mniCapitalizeWords":"각 단어의 첫글자를 대문자로","PDFE.Views.Toolbar.mniInsertSSE":"스프레드시트 삽입","PDFE.Views.Toolbar.mniLowerCase":"소문자","PDFE.Views.Toolbar.mniSentenceCase":"문장의 첫 글자를 대문자로","PDFE.Views.Toolbar.mniToggleCase":"대/소문자 전환","PDFE.Views.Toolbar.mniUpperCase":"대문자","PDFE.Views.Toolbar.strMenuNoFill":"채우기 없음","PDFE.Views.Toolbar.textAlignBottom":"텍스트를 하단에 정렬","PDFE.Views.Toolbar.textAlignCenter":"가운데 정렬","PDFE.Views.Toolbar.textAlignJust":"양쪽 맞춤","PDFE.Views.Toolbar.textAlignLeft":"왼쪽 정렬","PDFE.Views.Toolbar.textAlignMiddle":"중간에 텍스트 정렬","PDFE.Views.Toolbar.textAlignRight":"텍스트 정렬","PDFE.Views.Toolbar.textAlignTop":"텍스트를 상단에 정렬","PDFE.Views.Toolbar.textArrangeBack":"맨 뒤로 보내기","PDFE.Views.Toolbar.textArrangeBackward":"뒤로 이동","PDFE.Views.Toolbar.textArrangeForward":"앞으로 보내기","PDFE.Views.Toolbar.textArrangeFront":"맨 앞으로 가져오기","PDFE.Views.Toolbar.textBold":"굵게","PDFE.Views.Toolbar.textClear":"필드 지우기","PDFE.Views.Toolbar.textClearFields":"모든 필드 지우기","PDFE.Views.Toolbar.textColumnsCustom":"사용자 지정 열","PDFE.Views.Toolbar.textColumnsOne":"1열","PDFE.Views.Toolbar.textColumnsThree":"3열","PDFE.Views.Toolbar.textColumnsTwo":"2열","PDFE.Views.Toolbar.textDirLtr":"왼쪽에서 오른쪽으로","PDFE.Views.Toolbar.textDirRtl":"오른쪽에서 왼쪽으로","PDFE.Views.Toolbar.textEditMode":"PDF 편집","PDFE.Views.Toolbar.textHighlight":"하이라이트","PDFE.Views.Toolbar.textItalic":"기울임꼴","PDFE.Views.Toolbar.textListSettings":"목록 설정","PDFE.Views.Toolbar.textShapeAlignBottom":"아래쪽 정렬","PDFE.Views.Toolbar.textShapeAlignCenter":"센터 정렬","PDFE.Views.Toolbar.textShapeAlignLeft":"왼쪽 정렬","PDFE.Views.Toolbar.textShapeAlignMiddle":"중간 정렬","PDFE.Views.Toolbar.textShapeAlignRight":"오른쪽 정렬","PDFE.Views.Toolbar.textShapeAlignTop":"상단 정렬","PDFE.Views.Toolbar.textShapesCombine":"결합","PDFE.Views.Toolbar.textShapesFragment":"조각","PDFE.Views.Toolbar.textShapesIntersect":"교차","PDFE.Views.Toolbar.textShapesSubstract":"뺄셈","PDFE.Views.Toolbar.textShapesUnion":"병합","PDFE.Views.Toolbar.textStrikeout":"취소선","PDFE.Views.Toolbar.textSubmited":"폼 전송 성공","PDFE.Views.Toolbar.textSubscript":"첨자","PDFE.Views.Toolbar.textSuperscript":"위 첨자","PDFE.Views.Toolbar.textTabCollaboration":"Collaboration","PDFE.Views.Toolbar.textTabComment":"코멘트","PDFE.Views.Toolbar.textTabEdit":"편집","PDFE.Views.Toolbar.textTabFile":"파일","PDFE.Views.Toolbar.textTabHome":"홈","PDFE.Views.Toolbar.textTabInsert":"삽입","PDFE.Views.Toolbar.textTabRedact":"비공개 처리","PDFE.Views.Toolbar.textTabView":"보기","PDFE.Views.Toolbar.textUnderline":"밑줄","PDFE.Views.Toolbar.tipAddComment":"코멘트 추가","PDFE.Views.Toolbar.tipChangeCase":"대소문자 변경","PDFE.Views.Toolbar.tipClearStyle":"스타일 지우기","PDFE.Views.Toolbar.tipColumns":"열 삽입","PDFE.Views.Toolbar.tipCopy":"복사","PDFE.Views.Toolbar.tipCut":"잘라 내기","PDFE.Views.Toolbar.tipDecFont":"글꼴 크기 감소","PDFE.Views.Toolbar.tipDecPrLeft":"들여쓰기 감소","PDFE.Views.Toolbar.tipDelPage":"페이지를 삭제","PDFE.Views.Toolbar.tipDownload":"파일을 다운로드","PDFE.Views.Toolbar.tipDownloadForm":"파일을 편집 가능한 PDF 문서로 다운로드하세요","PDFE.Views.Toolbar.tipEditMode":"텍스트, 도형, 이미지 등을 추가하거나 편집","PDFE.Views.Toolbar.tipEditText":"텍스트 편집","PDFE.Views.Toolbar.tipFirstPage":"첫 번째 페이지로 이동","PDFE.Views.Toolbar.tipFontColor":"글꼴 색","PDFE.Views.Toolbar.tipFontName":"글꼴","PDFE.Views.Toolbar.tipFontSize":"글꼴 크기","PDFE.Views.Toolbar.tipHAligh":"수평 정렬","PDFE.Views.Toolbar.tipHandTool":"손도구","PDFE.Views.Toolbar.tipHighlightColor":"색상 강조 표시","PDFE.Views.Toolbar.tipIncFont":"글꼴 크기 증가","PDFE.Views.Toolbar.tipIncPrLeft":"들여 쓰기","PDFE.Views.Toolbar.tipInsertArrowComment":"화살표 그리기","PDFE.Views.Toolbar.tipInsertCircleComment":"원 또는 타원 그리기","PDFE.Views.Toolbar.tipInsertPolyLineComment":"서로 연결되는 선 그리기","PDFE.Views.Toolbar.tipInsertRectComment":"직사각형 또는 정사각형 그리기","PDFE.Views.Toolbar.tipInsertStamp":"스탬프 삽입","PDFE.Views.Toolbar.tipInsertTextCallout":"텍스트 말풍선 삽입","PDFE.Views.Toolbar.tipInsertTextComment":"텍스트 주석 삽입","PDFE.Views.Toolbar.tipLastPage":"마지막 페이지로 이동","PDFE.Views.Toolbar.tipLineSpace":"줄 간격","PDFE.Views.Toolbar.tipMarkers":"글머리 기호","PDFE.Views.Toolbar.tipMarkersArrow":"화살 글머리 기호","PDFE.Views.Toolbar.tipMarkersCheckmark":"체크 표시 글머리 기호","PDFE.Views.Toolbar.tipMarkersDash":"대시 글머리 기호","PDFE.Views.Toolbar.tipMarkersFRhombus":"채워진 마름모 글머리 기호","PDFE.Views.Toolbar.tipMarkersFRound":"채워진 원형 글머리 기호","PDFE.Views.Toolbar.tipMarkersFSquare":"채워진 사각형 글머리 기호","PDFE.Views.Toolbar.tipMarkersHRound":"빈 원형 글머리 기호","PDFE.Views.Toolbar.tipMarkersStar":"별 글머리 기호","PDFE.Views.Toolbar.tipNextForm":"다음 필드로 이동","PDFE.Views.Toolbar.tipNextPage":"다음 페이지로 이동","PDFE.Views.Toolbar.tipNone":"없음","PDFE.Views.Toolbar.tipNumbers":"번호 매기기","PDFE.Views.Toolbar.tipPaste":"붙여 넣기","PDFE.Views.Toolbar.tipPrevForm":"이전 필드로 이동","PDFE.Views.Toolbar.tipPrevPage":"이전 페이지로 이동","PDFE.Views.Toolbar.tipPrint":"인쇄","PDFE.Views.Toolbar.tipPrintQuick":"빠른 인쇄","PDFE.Views.Toolbar.tipRecognize":"텍스트 편집","PDFE.Views.Toolbar.tipRedo":"다시 실행","PDFE.Views.Toolbar.tipRotate":"페이지 회전","PDFE.Views.Toolbar.tipSave":"저장","PDFE.Views.Toolbar.tipSaveCoauth":"다른 사용자가 볼 수 있도록 변경 사항을 저장하십시오.","PDFE.Views.Toolbar.tipSaveForm":"채우기 형식 문서로 저장","PDFE.Views.Toolbar.tipSelectAll":"모두 선택","PDFE.Views.Toolbar.tipSelectTool":"도구 선택","PDFE.Views.Toolbar.tipShapeAlign":"도형 정렬","PDFE.Views.Toolbar.tipShapeArrange":"도형 배열","PDFE.Views.Toolbar.tipShapeMerge":"도형 병합","PDFE.Views.Toolbar.tipSubmit":"전송폼","PDFE.Views.Toolbar.tipSynchronize":"다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.","PDFE.Views.Toolbar.tipTextDir":"텍스트 방향","PDFE.Views.Toolbar.tipUndo":"실행 취소","PDFE.Views.Toolbar.tipVAligh":"수직 정렬","PDFE.Views.Toolbar.txtArrowComment":"화살표","PDFE.Views.Toolbar.txtCircleComment":"원","PDFE.Views.Toolbar.txtDistribHor":"가로 방향 분포","PDFE.Views.Toolbar.txtDistribVert":"수직 분포","PDFE.Views.Toolbar.txtGroup":"그룹","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"선택한 개체 정렬","PDFE.Views.Toolbar.txtOpacity":"불투명도","PDFE.Views.Toolbar.txtPageAlign":"페이지 정렬","PDFE.Views.Toolbar.txtPolyLineComment":"연결선","PDFE.Views.Toolbar.txtRectComment":"직사각형","PDFE.Views.Toolbar.txtRotateLeft":"왼쪽으로 회전","PDFE.Views.Toolbar.txtRotatePage":"페이지 회전","PDFE.Views.Toolbar.txtRotatePageRight":"페이지를 오른쪽으로 회전","PDFE.Views.Toolbar.txtRotateRight":"오른쪽으로 회전","PDFE.Views.Toolbar.txtSize":"크기","PDFE.Views.Toolbar.txtUngroup":"그룹 해제","PDFE.Views.ViewTab.capBtnRecognize":"텍스트 편집","PDFE.Views.ViewTab.textAlwaysShowToolbar":"항상 도구 모음 표시","PDFE.Views.ViewTab.textDarkDocument":"다크 문서","PDFE.Views.ViewTab.textEditMode":"PDF 편집","PDFE.Views.ViewTab.textFill":"채우기","PDFE.Views.ViewTab.textFitToPage":"페이지에 맞춤","PDFE.Views.ViewTab.textFitToWidth":"너비에 맞춤","PDFE.Views.ViewTab.textInterfaceTheme":"인터페이스 테마","PDFE.Views.ViewTab.textLeftMenu":"왼쪽 패널","PDFE.Views.ViewTab.textLine":"선","PDFE.Views.ViewTab.textNavigation":"내비게이션","PDFE.Views.ViewTab.textOutline":"제목","PDFE.Views.ViewTab.textRightMenu":"오른쪽 패널","PDFE.Views.ViewTab.textStatusBar":"상태 바","PDFE.Views.ViewTab.textTabStyle":"탭 스타일","PDFE.Views.ViewTab.textZoom":"확대/축소","PDFE.Views.ViewTab.tipDarkDocument":"다크 문서","PDFE.Views.ViewTab.tipEditMode":"텍스트, 도형, 이미지 등을 추가하거나 편집","PDFE.Views.ViewTab.tipFitToPage":"페이지에 맞춤","PDFE.Views.ViewTab.tipFitToWidth":"너비에 맞춤","PDFE.Views.ViewTab.tipHeadings":"제목","PDFE.Views.ViewTab.tipInterfaceTheme":"인터페이스 테마","PDFE.Views.ViewTab.tipRecognize":"텍스트 편집","PDFE.Views.ViewTab.textMacros":"Macros","PDFE.Views.ViewTab.tipMacros":"Macros"} \ No newline at end of file diff --git a/public/web-apps/apps/pdfeditor/main/locale/pt.json b/public/web-apps/apps/pdfeditor/main/locale/pt.json index b2a192a3a..0d5db51e3 100644 --- a/public/web-apps/apps/pdfeditor/main/locale/pt.json +++ b/public/web-apps/apps/pdfeditor/main/locale/pt.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"Aviso","Common.Controllers.Desktop.hintBtnHome":"Mostrar janela principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Criar a partir de um modelo","Common.Controllers.ExternalLinks.textAddExternalData":"O link para uma fonte externa foi adicionado. Você pode atualizar esses links na guia Dados.","Common.Controllers.ExternalLinks.textDontUpdate":"Não atualize","Common.Controllers.ExternalLinks.textUpdate":"Atualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Erro: falha na atualização","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Esta pasta de trabalho contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta apresentação contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.History.notcriticalErrorTitle":"Aviso","Common.Controllers.History.txtErrorLoadHistory":"O carregamento de histórico falhou","Common.Controllers.Plugins.helpMoveMacros":"Para começar a trabalhar com macros, vá para a guia Exibir.","Common.Controllers.Plugins.helpMoveMacrosHeader":"O botão Macros movido","Common.Controllers.Plugins.helpUseMacros":"Localize o botão Macros aqui","Common.Controllers.Plugins.helpUseMacrosHeader":"Acesso atualizado a macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Os plug-ins foram instalados com sucesso. Você pode acessar todos os plugins de fundo aqui.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} foi instalado com sucesso. Você pode acessar todos os plugins de fundo aqui.","Common.Controllers.Plugins.textRunInstalledPlugins":"Execute plug-ins instalados","Common.Controllers.Plugins.textRunPlugin":"Executar plugin","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Adicione uma nova linha na parte inferior da tabela.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Aplique o estilo do título 1 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Aplique o estilo do título 2 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Aplique o estilo do título 3 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Crie uma lista com marcadores não ordenada a partir do fragmento de texto selecionado ou inicie uma nova.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Use a seta do teclado para mover o objeto selecionado um passo grande para baixo.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Use a seta do teclado para mover o objeto selecionado um grande passo para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Use a seta do teclado para mover o objeto selecionado um grande passo para a direita.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Use a seta do teclado para mover o objeto selecionado um passo maior para cima.","Common.Controllers.Shortcuts.txtDescriptionBold":"Deixe a fonte do fragmento de texto selecionado em negrito, dando a ele uma aparência mais pesada.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Alternar um parágrafo entre centralizado e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Escolha a próxima opção de caixa de combinação no formulário.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Selecione a opção de caixa de combinação anterior no formulário.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Feche a janela atual do PDF.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Feche um menu ou janela modal. Redefina pop-ups e balões com comentários e revise alterações. Redefina o modo de desenho e apagamento de tabela. Redefina o recurso de arrastar e soltar texto. Redefina o modo de seleção de marcadores. Redefina o modo de pincel de formatação. Desmarque formas. Redefina o modo de adição de formas. Saia do cabeçalho/rodapé. Saia do preenchimento de formulários.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Envie o fragmento de texto selecionado para a área de transferência do computador. O texto copiado pode ser posteriormente inserido em outro local do mesmo documento, em outro documento ou em algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Copie a formatação do fragmento selecionado do texto editado no momento. A formatação copiada pode ser aplicada posteriormente a outro fragmento de texto no mesmo documento.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Insira um símbolo de direitos autorais à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionCut":"Exclua o fragmento de texto selecionado e envie-o para a área de transferência do computador. O texto copiado pode ser posteriormente inserido em outro local do mesmo documento, em outro documento ou em algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Diminua o tamanho da fonte do fragmento de texto selecionado em 1 ponto.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Exclua um caractere à esquerda do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Exclua uma palavra/seleção/objeto gráfico à esquerda do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Exclua um caractere à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Exclua uma palavra/seleção/objeto gráfico à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Quando o título do gráfico for selecionado, se o título estiver vazio, mova o cursor para o início da linha; caso contrário, selecione o texto.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repita a última ação desfeita.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Selecione todo o texto no PDF.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Quando a forma for selecionada, se ela não contiver conteúdo, crie conteúdo e mova o cursor para o início da linha. Se o conteúdo estiver vazio, mova o cursor até ele; caso contrário, selecione todo o conteúdo.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Reverter a última ação executada.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Insira um travessão à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insira um travessão à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Termine o parágrafo atual e comece um novo.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Inicie um novo parágrafo dentro de uma célula.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Adicione um novo espaço reservado ao argumento da equação.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Altere o nível de alinhamento do operador para a esquerda (para a segunda linha da equação com uma quebra forçada).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Altere o nível de alinhamento do operador para a direita (para a segunda linha da equação com uma quebra forçada).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Insira o símbolo do Euro na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Insira o sinal de reticências na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar o tamanho da fonte do fragmento de texto selecionado em 1 ponto.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Recuar um parágrafo incrementalmente a partir da esquerda.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Adicione uma quebra de coluna.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Insira uma nota final.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"Insira uma equação na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Insira uma nota de rodapé.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insira um link que possa ser usado para acessar um endereço da web.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Adicione uma quebra de linha sem iniciar um novo parágrafo.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Adicione uma quebra de linha no formulário multilinha.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"Inserir uma quebra de página na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Adicione o número da página atual na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Adicione o caractere de tabulação a um parágrafo (se o cursor não estiver no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Insira uma quebra de tabela dentro da tabela.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Deixe a fonte do fragmento de texto selecionado em itálico e levemente inclinada.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Alternar um parágrafo entre justificado e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinhar um parágrafo à esquerda.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para baixo, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para a esquerda, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para a direita, um pixel de cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para cima, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Aumentar o recuo dos parágrafos selecionados.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Diminua o recuo dos parágrafos selecionados.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Mover o foco para o próximo objeto depois do atualmente selecionado.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Move o foco para o objeto anterior ao atualmente selecionado.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Mova o cursor uma linha para baixo.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Coloque o cursor bem no final do PDF editado.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Coloque o cursor no final da linha atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Mova o cursor uma palavra para a direita.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Mova o cursor um caractere para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Mover para o cabeçalho inferior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Mover para o cabeçalho/rodapé inferior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Vá para a próxima célula em uma linha da tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Passar para o próximo formulário.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Vá para a próxima página no PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Ir para a próxima linha em uma tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Ir para a célula anterior em uma linha da tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Mover para o formulário anterior.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Vá para a página anterior no PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Ir para a linha anterior em uma tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Mova o cursor um caractere para a direita.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Ir para o início do PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Coloque o cursor no início da linha atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Coloque o cursor no início da página seguinte à que está sendo editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Coloque o cursor no início da página que precede a página atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Mova o cursor para o início de uma palavra ou uma palavra para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Mova o cursor uma linha para cima.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Mover para o cabeçalho superior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Mover para o cabeçalho/rodapé superior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Alterne para a próxima guia de arquivo no Desktop Editors ou para a guia do navegador no Online Editors..","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Navegue entre os controles para dar foco ao próximo controle nos diálogos modais.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Crie um hífen entre os caracteres, que não pode ser usado para iniciar uma nova linha.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Crie um espaço entre os caracteres que não possa ser usado para iniciar uma nova linha.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abra o painel de bate-papo nos editores on-line e envie uma mensagem.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abra um campo de entrada de dados onde você pode adicionar o texto do seu comentário.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abra o painel Comentários para adicionar seu próprio comentário ou responder aos comentários de outros usuários.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abra o menu contextual do elemento selecionado.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abra a caixa de diálogo padrão que permite selecionar um arquivo existente. Se você selecionar o arquivo nesta caixa de diálogo e clicar em Abrir, o arquivo será aberto em uma nova aba ou janela do Desktop Editors.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abra o painel Arquivo para salvar, baixar, imprimir o PDF atual, visualizar suas informações, criar um novo documento ou abrir um PDF existente, acessar a Central de Ajuda do Editor de PDF ou configurações avançadas.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abra o menu (painel) Localizar e Substituir com o campo de substituição para substituir uma ou mais ocorrências dos caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abra a janela de diálogo Localizar para começar a procurar um caractere/palavra/frase no PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abra o menu Ajuda do Editor de PDF.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insira o fragmento de texto copiado anteriormente da memória da área de transferência do computador na posição atual do cursor. O texto pode ter sido copiado anteriormente do mesmo documento, de outro documento ou de algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Aplique a formatação copiada anteriormente ao texto no PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Insira o fragmento de texto copiado anteriormente da memória da área de transferência do computador na posição atual do cursor, sem preservar sua formatação original. O texto pode ter sido copiado anteriormente do mesmo documento, de outro documento ou de algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Alterne para a guia de arquivo anterior no Desktop Editors ou para a guia do navegador no Online Editors.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Navegue entre os controles para dar foco ao controle anterior em diálogos modais.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprima o PDF com uma das impressoras disponíveis ou salve-o como um arquivo.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Insira o sinal de marca registrada na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Substitua o código Unicode selecionado por um símbolo.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Limpar formatação do fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Alternar um parágrafo entre alinhado à direita e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionSave":"Salve todas as alterações no arquivo PDF atualmente editado com o Editor de PDF. O arquivo ativo será salvo com seu nome, local e formato atuais.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Abra o painel Baixar como... para salvar o PDF editado no momento no disco rígido do seu computador em um dos formatos suportados.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Role o PDF aproximadamente uma página visível para baixo.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Role o PDF aproximadamente uma página visível para cima.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Selecione um caractere à esquerda da posição do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Selecione um fragmento de texto do cursor até o início de uma palavra.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mova o cursor uma linha para baixo, selecionando todos os símbolos entre a posição anterior e atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mova o cursor uma linha para cima, selecionando todos os símbolos entre a posição anterior e atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Selecione a parte da página da posição do cursor até a parte inferior da tela.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Selecione a parte da página da posição do cursor até a parte superior da tela.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Selecione um caractere à direita da posição do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Selecione um fragmento de texto do cursor até o final de uma palavra.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Selecione um fragmento de texto do cursor até o início da próxima página.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Selecione um fragmento de texto do cursor até o início da página anterior.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Selecione um fragmento de texto do cursor até o final do PDF.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Selecione um fragmento de texto do cursor até o final da linha atual.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Selecione um fragmento de texto do cursor até o início do PDF.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Selecione um fragmento de texto do cursor até o início da linha atual.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Mostrar ou ocultar a exibição de caracteres não imprimíveis.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Insira o sinal de hífen suave na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Mantenha a formatação original do texto copiado.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Cole o texto sem a formatação original.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Cole a tabela copiada como uma tabela aninhada na célula selecionada da tabela existente.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Substitua o conteúdo da tabela existente pelos dados copiados.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Habilita/desabilita a transmissão de ações realizadas no aplicativo para leitores de tela.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Aumentar o nível de lista/recuo (com o cursor no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Diminua o nível da lista/recuo (com o cursor no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Faça com que o fragmento de texto selecionado seja riscado com uma linha passando pelas letras.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Reduza o tamanho do fragmento de texto selecionado e coloque-o na parte inferior da linha de texto, por exemplo, como em fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Reduza o tamanho do fragmento de texto selecionado e coloque-o na parte superior da linha de texto, por exemplo, como em frações.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Insira o sinal de marca registrada na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Faça com que o fragmento de texto selecionado seja sublinhado com uma linha abaixo das letras.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Remover um recuo de parágrafo da esquerda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Atualizar campos (por exemplo, Índice).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Acesse um link (com o cursor sobre o link).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Redefina o parâmetro 'Zoom' do PDF atual para o padrão 100%.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Amplie o PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Diminua o zoom do PDF editado no momento.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Negrito","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copiar","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cortar","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Recuar","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"Inserir link","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Itálico","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Colar","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Salvar","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Tachado","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscrito","Common.Controllers.Shortcuts.txtLabelSuperscript":"Sobrescrito","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"Sinal de marca registrada","Common.Controllers.Shortcuts.txtLabelUnderline":"Sublinhado","Common.Controllers.Shortcuts.txtLabelUnIndent":"Desfazer recuo","Common.Controllers.Shortcuts.txtLabelUpdateFields":"Campos de atualização","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"Visite o link","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área empilhada","Common.define.chartData.textAreaStackedPer":"100% Área alinhada","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Colunas agrupadas","Common.define.chartData.textBarNormal3d":"3-D Coluna agrupada","Common.define.chartData.textBarNormal3dPerspective":"Coluna 3-D","Common.define.chartData.textBarStacked":"Coluna alinhada","Common.define.chartData.textBarStacked3d":"Coluna empilhada 3-D","Common.define.chartData.textBarStackedPer":"Coluna 100% empilhada","Common.define.chartData.textBarStackedPer3d":"3-D 100% Coluna alinhada","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Coluna","Common.define.chartData.textCombo":"Combo","Common.define.chartData.textComboAreaBar":"Área empilhada - coluna agrupada","Common.define.chartData.textComboBarLine":"Coluna agrupada - linha","Common.define.chartData.textComboBarLineSecondary":"Coluna agrupada - linha no eixo secundário","Common.define.chartData.textComboCustom":"Combinação personalizada","Common.define.chartData.textDoughnut":"Rosquinha","Common.define.chartData.textHBarNormal":"Barras agrupadas","Common.define.chartData.textHBarNormal3d":"3-D Barra agrupada","Common.define.chartData.textHBarStacked":"Barra alinhada","Common.define.chartData.textHBarStacked3d":"Barra empilhada 3-D","Common.define.chartData.textHBarStackedPer":"100% Barra alinhada","Common.define.chartData.textHBarStackedPer3d":"3-D 100% Barra alinhada","Common.define.chartData.textLine":"Linha","Common.define.chartData.textLine3d":"Linha 3-D","Common.define.chartData.textLineMarker":"Linha com marcadores","Common.define.chartData.textLineStacked":"Alinhado","Common.define.chartData.textLineStackedMarker":"Linha empilhada com marcadores","Common.define.chartData.textLineStackedPer":"100% Alinhado","Common.define.chartData.textLineStackedPerMarker":"100% Alinhado com marcadores","Common.define.chartData.textPie":"Pizza","Common.define.chartData.textPie3d":"Pizza 3-D","Common.define.chartData.textPoint":"XY (Dispersão)","Common.define.chartData.textRadar":"Radar","Common.define.chartData.textRadarFilled":"Radar com marcadores","Common.define.chartData.textRadarMarker":"Radar com marcadores","Common.define.chartData.textScatter":"Dispersão","Common.define.chartData.textScatterLine":"Dispersão com linhas retas","Common.define.chartData.textScatterLineMarker":"Dispersão com linhas retas e marcadores","Common.define.chartData.textScatterSmooth":"Dispersão com linhas suaves","Common.define.chartData.textScatterSmoothMarker":"Dispersão com linhas suaves e marcadores","Common.define.chartData.textStock":"Gráfico de ações","Common.define.chartData.textSurface":"Superfície","Common.define.smartArt.textAccentedPicture":"Imagem em destaque","Common.define.smartArt.textAccentProcess":"Processo em destaque","Common.define.smartArt.textAlternatingFlow":"Fluxo alternado","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternados","Common.define.smartArt.textAlternatingPictureBlocks":"Blocos de imagem alternados","Common.define.smartArt.textAlternatingPictureCircles":"Círculos de imagens alternadas","Common.define.smartArt.textArchitectureLayout":"Layout de arquitetura","Common.define.smartArt.textArrowRibbon":"Seta em forma de fita","Common.define.smartArt.textAscendingPictureAccentProcess":"Processo de ênfase da imagem ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Processo curvo básico","Common.define.smartArt.textBasicBlockList":"Lista básica de blocos","Common.define.smartArt.textBasicChevronProcess":"Processo básico em divisas","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Gráfico de pizza básico","Common.define.smartArt.textBasicProcess":"Processo básico","Common.define.smartArt.textBasicPyramid":"Pirâmide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Alvo básico","Common.define.smartArt.textBasicTimeline":"Linha do tempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista de ênfase de imagem de curvatura","Common.define.smartArt.textBendingPictureBlocks":"Blocos de imagem de curvatura","Common.define.smartArt.textBendingPictureCaption":"Legenda de imagem de curvatura","Common.define.smartArt.textBendingPictureCaptionList":"Lista de legendas de imagens de curvatura","Common.define.smartArt.textBendingPictureSemiTranparentText":"Texto semi-transparente de imagem de curvatura","Common.define.smartArt.textBlockCycle":"Ciclo em bloco","Common.define.smartArt.textBubblePictureList":"Lista de imagens em bolha","Common.define.smartArt.textCaptionedPictures":"Imagens legendadas","Common.define.smartArt.textChevronAccentProcess":"Processo de ênfase em divisas","Common.define.smartArt.textChevronList":"Lista de divisas","Common.define.smartArt.textCircleAccentTimeline":"Linha do tempo de ênfase circular","Common.define.smartArt.textCircleArrowProcess":"Processo de seta circular","Common.define.smartArt.textCirclePictureHierarchy":"Hierarquia de imagem circular","Common.define.smartArt.textCircleProcess":"Processo circular","Common.define.smartArt.textCircleRelationship":"Relacionamento do Círculo","Common.define.smartArt.textCircularBendingProcess":"Processo curvo circular","Common.define.smartArt.textCircularPictureCallout":"Texto explicativo de imagem circular","Common.define.smartArt.textClosedChevronProcess":"Processo fechado em divisas","Common.define.smartArt.textContinuousArrowProcess":"Processo de seta contínua","Common.define.smartArt.textContinuousBlockProcess":"Processo de bloco contínuo","Common.define.smartArt.textContinuousCycle":"Ciclo contínuo","Common.define.smartArt.textContinuousPictureList":"Lista de imagem contínua","Common.define.smartArt.textConvergingArrows":"Setas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Setas contrabalançadas ","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista descendente de blocos ","Common.define.smartArt.textDescendingProcess":"Processo descendente","Common.define.smartArt.textDetailedProcess":"Processo detalhado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Equação","Common.define.smartArt.textFramedTextPicture":"Imagem de texto emoldurada","Common.define.smartArt.textFunnel":"Funil","Common.define.smartArt.textGear":"Engrenagem","Common.define.smartArt.textGridMatrix":"Matriz de grade","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organograma de meio círculo","Common.define.smartArt.textHexagonCluster":"Conjunto hexagonal","Common.define.smartArt.textHexagonRadial":"Radial Hexágono","Common.define.smartArt.textHierarchy":"Hierarquia","Common.define.smartArt.textHierarchyList":"Lista de hierarquia","Common.define.smartArt.textHorizontalBulletList":"Lista de marcadores horizontais","Common.define.smartArt.textHorizontalHierarchy":"Hierarquia horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Hierarquia horizontal rotulada","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Hierarquia horizontal multinível","Common.define.smartArt.textHorizontalOrganizationChart":"Organograma horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista de imagens horizontais","Common.define.smartArt.textIncreasingArrowProcess":"Processo de seta crescente","Common.define.smartArt.textIncreasingCircleProcess":"Processo de círculo crescente","Common.define.smartArt.textInterconnectedBlockProcess":"Processo de bloco interconectado","Common.define.smartArt.textInterconnectedRings":"Anéis interconectados","Common.define.smartArt.textInvertedPyramid":"Pirâmide invertida","Common.define.smartArt.textLabeledHierarchy":"Hierarquia rotulada","Common.define.smartArt.textLinearVenn":"Venn Linear","Common.define.smartArt.textLinedList":"Lista alinhada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidirecional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organograma de nome e título","Common.define.smartArt.textNestedTarget":"Alvo aninhado","Common.define.smartArt.textNondirectionalCycle":"Ciclo não direcional","Common.define.smartArt.textOpposingArrows":"Setas opostas","Common.define.smartArt.textOpposingIdeas":"Ideias opostas","Common.define.smartArt.textOrganizationChart":"Organograma","Common.define.smartArt.textOther":"Outro","Common.define.smartArt.textPhasedProcess":"Processo em fases","Common.define.smartArt.textPicture":"Imagem","Common.define.smartArt.textPictureAccentBlocks":"Blocos de destaque de imagem","Common.define.smartArt.textPictureAccentList":"Lista de destaques da imagem","Common.define.smartArt.textPictureAccentProcess":"Processo de destaque da imagem","Common.define.smartArt.textPictureCaptionList":"Lista de legendas de imagens","Common.define.smartArt.textPictureFrame":"Porta-retrato","Common.define.smartArt.textPictureGrid":"Grade de imagens","Common.define.smartArt.textPictureLineup":"Alinhamento de imagens","Common.define.smartArt.textPictureOrganizationChart":"Organograma de imagens","Common.define.smartArt.textPictureStrips":"Tiras de imagem","Common.define.smartArt.textPieProcess":"Processo em pizza","Common.define.smartArt.textPlusAndMinus":"Mais e menos","Common.define.smartArt.textProcess":"Processo","Common.define.smartArt.textProcessArrows":"Setas de processo","Common.define.smartArt.textProcessList":"Lista de processos","Common.define.smartArt.textPyramid":"Pirâmide","Common.define.smartArt.textPyramidList":"Lista de pirâmides","Common.define.smartArt.textRadialCluster":"Aglomerado radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista de imagens radiais","Common.define.smartArt.textRadialVenn":"Venn Radial","Common.define.smartArt.textRandomToResultProcess":"Processo aleatório para resultado","Common.define.smartArt.textRelationship":"Relação","Common.define.smartArt.textRepeatingBendingProcess":"Repetindo o processo de dobra","Common.define.smartArt.textReverseList":"Lista reversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Processo segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirâmide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de fotos instantâneas","Common.define.smartArt.textSpiralPicture":"Imagem em espiral","Common.define.smartArt.textSquareAccentList":"Lista de destaque quadrada","Common.define.smartArt.textStackedList":"Lista empilhada","Common.define.smartArt.textStackedVenn":"Venn Empilhado","Common.define.smartArt.textStaggeredProcess":"Processo escalonado","Common.define.smartArt.textStepDownProcess":"Processo de redução gradual","Common.define.smartArt.textStepUpProcess":"Processo de intensificação","Common.define.smartArt.textSubStepProcess":"Processo de subetapas","Common.define.smartArt.textTabbedArc":"Arco com abas","Common.define.smartArt.textTableHierarchy":"Hierarquia da tabela","Common.define.smartArt.textTableList":"Lista de tabelas","Common.define.smartArt.textTabList":"Lista de guias","Common.define.smartArt.textTargetList":"Lista de alvos","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Destaque da imagem de tema","Common.define.smartArt.textThemePictureAlternatingAccent":"Destaque alternado da imagem do tema","Common.define.smartArt.textThemePictureGrid":"Grade de imagens do tema","Common.define.smartArt.textTitledMatrix":"Matriz intitulada","Common.define.smartArt.textTitledPictureAccentList":"Lista de destaque de imagem intitulada","Common.define.smartArt.textTitledPictureBlocks":"Blocos de imagens intitulados","Common.define.smartArt.textTitlePictureLineup":"Alinhamento da imagem do título","Common.define.smartArt.textTrapezoidList":"Lista de trapézios","Common.define.smartArt.textUpwardArrow":"Seta para cima","Common.define.smartArt.textVaryingWidthList":"Lista de largura variável","Common.define.smartArt.textVerticalAccentList":"Lista de acentos verticais","Common.define.smartArt.textVerticalArrowList":"Lista de setas verticais","Common.define.smartArt.textVerticalBendingProcess":"Processo vertical em curva","Common.define.smartArt.textVerticalBlockList":"Lista de bloqueio vertical","Common.define.smartArt.textVerticalBoxList":"Lista de caixa vertical","Common.define.smartArt.textVerticalBracketList":"Lista de colchetes verticais","Common.define.smartArt.textVerticalBulletList":"Lista de marcadores verticais","Common.define.smartArt.textVerticalChevronList":"Lista vertical em divisas","Common.define.smartArt.textVerticalCircleList":"Lista de círculos verticais","Common.define.smartArt.textVerticalCurvedList":"Lista Curva Vertical","Common.define.smartArt.textVerticalEquation":"Equação vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista de destaque de imagens verticais","Common.define.smartArt.textVerticalPictureList":"Lista de imagens verticais","Common.define.smartArt.textVerticalProcess":"Processo vertical","Common.Translation.textMoreButton":"Mais","Common.Translation.tipFileLocked":"O documento está bloqueado para edição. Você pode fazer alterações e salvá-lo como cópia local mais tarde.","Common.Translation.tipFileReadOnly":"O arquivo é somente leitura. Para manter suas alterações, salve o arquivo com um novo nome ou em um local diferente.","Common.Translation.warnFileLocked":"Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.","Common.Translation.warnFileLockedBtnEdit":"Criar uma cópia","Common.Translation.warnFileLockedBtnView":"Aberto para visualização","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Conta-gotas","Common.UI.ButtonColored.textNewColor":"Mais cores","Common.UI.Calendar.textApril":"Abril","Common.UI.Calendar.textAugust":"Agosto","Common.UI.Calendar.textDecember":"Dezembro","Common.UI.Calendar.textFebruary":"Fevereiro","Common.UI.Calendar.textJanuary":"Janeiro","Common.UI.Calendar.textJuly":"Julho","Common.UI.Calendar.textJune":"Junho","Common.UI.Calendar.textMarch":"Março","Common.UI.Calendar.textMay":"Mai","Common.UI.Calendar.textMonths":"Meses","Common.UI.Calendar.textNovember":"Novembro","Common.UI.Calendar.textOctober":"Outubro","Common.UI.Calendar.textSeptember":"Setembro","Common.UI.Calendar.textShortApril":"Abr","Common.UI.Calendar.textShortAugust":"Ago","Common.UI.Calendar.textShortDecember":"Dez","Common.UI.Calendar.textShortFebruary":"Fev","Common.UI.Calendar.textShortFriday":"Fr","Common.UI.Calendar.textShortJanuary":"Jan","Common.UI.Calendar.textShortJuly":"Jul","Common.UI.Calendar.textShortJune":"Jun","Common.UI.Calendar.textShortMarch":"Mar","Common.UI.Calendar.textShortMay":"Mai","Common.UI.Calendar.textShortMonday":"Seg.","Common.UI.Calendar.textShortNovember":"Nov","Common.UI.Calendar.textShortOctober":"Out","Common.UI.Calendar.textShortSaturday":"Sáb","Common.UI.Calendar.textShortSeptember":"Set","Common.UI.Calendar.textShortSunday":"Dom","Common.UI.Calendar.textShortThursday":"Qui.","Common.UI.Calendar.textShortTuesday":"Ter","Common.UI.Calendar.textShortWednesday":"Qua","Common.UI.Calendar.textYears":"Anos","Common.UI.ExtendedColorDialog.addButtonText":"Adicionar","Common.UI.ExtendedColorDialog.textCurrent":"Atual","Common.UI.ExtendedColorDialog.textHexErr":"O valor inserido está incorreto.
Insira um valor entre 000000 e FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Novo","Common.UI.ExtendedColorDialog.textRGBErr":"O valor inserido está incorreto.
Insira um valor numérico entre 0 e 255.","Common.UI.HSBColorPicker.textNoColor":"Sem cor","Common.UI.InputFieldBtnCalendar.textDate":"Selecione a data","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar palavra-chave","Common.UI.InputFieldBtnPassword.textHintHold":"Pressione e segure para mostrar a senha","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar senha","Common.UI.SearchBar.capFind":"Localizar","Common.UI.SearchBar.capFindRedact":"Encontrar e redigir","Common.UI.SearchBar.textFind":"Localizar","Common.UI.SearchBar.tipCloseSearch":"Fechar pesquisa","Common.UI.SearchBar.tipNextResult":"Próximo resultado","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abra as configurações avançadas","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"Encontrar e redigir","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Destacar resultados","Common.UI.SearchDialog.textMatchCase":"Maiúsculas e Minúsculas","Common.UI.SearchDialog.textReplaceDef":"Inserir o texto de substituição","Common.UI.SearchDialog.textSearchStart":"Insira seu texto aqui","Common.UI.SearchDialog.textTitle":"Localizar e substituir","Common.UI.SearchDialog.textTitle2":"Localizar","Common.UI.SearchDialog.textWholeWords":"Palavras inteiras apenas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar Substituição","Common.UI.SearchDialog.txtBtnReplace":"Substituir","Common.UI.SearchDialog.txtBtnReplaceAll":"Substituir tudo","Common.UI.SynchronizeTip.textDontShow":"Não exibir esta mensagem novamente","Common.UI.SynchronizeTip.textGotIt":"Entendi","Common.UI.SynchronizeTip.textNew":"Novo","Common.UI.SynchronizeTip.textSynchronize":"O documento foi alterado por outro usuário.
Clique para salvar suas alterações e recarregar as atualizações.","Common.UI.ThemeColorPalette.textRecentColors":"Cores recentes","Common.UI.ThemeColorPalette.textStandartColors":"Cores padronizadas","Common.UI.ThemeColorPalette.textThemeColors":"Cores do tema","Common.UI.ThemeColorPalette.textTransparent":"Transparente","Common.UI.Themes.txtThemeClassicLight":"Clássico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste escuro","Common.UI.Themes.txtThemeDark":"Escuro","Common.UI.Themes.txtThemeGray":"Cinza","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Escuro moderno","Common.UI.Themes.txtThemeModernLight":"Claro moderno","Common.UI.Themes.txtThemeSystem":"O mesmo que sistema","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Fechar","Common.UI.Window.noButtonText":"Não","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Confirmação","Common.UI.Window.textDontShow":"Não exibir esta mensagem novamente","Common.UI.Window.textError":"Erro","Common.UI.Window.textInformation":"Informação","Common.UI.Window.textWarning":"Aviso","Common.UI.Window.yesButtonText":"Sim","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"Pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"Acento","Common.Utils.ThemeColor.txtAqua":"Aqua","Common.Utils.ThemeColor.txtbackground":"Plano de fundo","Common.Utils.ThemeColor.txtBlack":"Preto","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde claro","Common.Utils.ThemeColor.txtBrown":"Marrom","Common.Utils.ThemeColor.txtDarkBlue":"Azul escuro","Common.Utils.ThemeColor.txtDarker":"Mais escura","Common.Utils.ThemeColor.txtDarkGray":"Cinza escuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde-escuro","Common.Utils.ThemeColor.txtDarkPurple":"Roxo escuro","Common.Utils.ThemeColor.txtDarkRed":"Vermelho escuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde-azulado escuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarelo escuro","Common.Utils.ThemeColor.txtGold":"Ouro","Common.Utils.ThemeColor.txtGray":"Cinza","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Índigo","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Isqueiro","Common.Utils.ThemeColor.txtLightGray":"Cinza claro","Common.Utils.ThemeColor.txtLightGreen":"Luz verde","Common.Utils.ThemeColor.txtLightOrange":"Laranja claro","Common.Utils.ThemeColor.txtLightYellow":"Luz amarela","Common.Utils.ThemeColor.txtOrange":"Laranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Roxo","Common.Utils.ThemeColor.txtRed":"Vermelho","Common.Utils.ThemeColor.txtRose":"Rosa","Common.Utils.ThemeColor.txtSkyBlue":"Céu azul","Common.Utils.ThemeColor.txtTeal":"Azul-petróleo","Common.Utils.ThemeColor.txttext":"Тexto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Branco","Common.Utils.ThemeColor.txtYellow":"Amarelo","Common.Views.About.txtAddress":"endereço:","Common.Views.About.txtLicensee":"LICENÇA","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"e-mail:","Common.Views.About.txtPoweredBy":"Desenvolvido por","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versão","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Fechar chat","Common.Views.Chat.textEnterMessage":"Insira sua mensagem aqui","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor Z a A","Common.Views.Comments.mniDateAsc":"Mais antigo","Common.Views.Comments.mniDateDesc":"Novidades","Common.Views.Comments.mniFilterComments":"Mostrar comentários","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"De cima","Common.Views.Comments.mniPositionDesc":"Do fundo","Common.Views.Comments.textAdd":"Adicionar","Common.Views.Comments.textAddComment":"Adicionar comentário","Common.Views.Comments.textAddCommentToDoc":"Adicionar comentário ao documento","Common.Views.Comments.textAddReply":"Adicionar resposta","Common.Views.Comments.textAll":"Todos","Common.Views.Comments.textAnonym":"Visitante","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Fechar","Common.Views.Comments.textClosePanel":"Fechar comentários","Common.Views.Comments.textComment":"Comentário","Common.Views.Comments.textComments":"Comentários","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Insira seu comentário aqui","Common.Views.Comments.textHintAddComment":"Adicionar comentário","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir novamente","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resolvido","Common.Views.Comments.textSort":"Ordenar comentários","Common.Views.Comments.textSortFilter":"Classifique e filtre comentários","Common.Views.Comments.textSortFilterMore":"Classificar, filtrar e muito mais","Common.Views.Comments.textSortMore":"Classificar e muito mais","Common.Views.Comments.textViewResolved":"Você não tem permissão para reabrir comentários","Common.Views.Comments.txtEmpty":"Não há comentários no documento.","Common.Views.CopyWarningDialog.textDontShow":"Não exibir esta mensagem novamente","Common.Views.CopyWarningDialog.textMsg":"As ações copiar, cortar e colar usando os botões da barra de ferramentas do editor e as ações de menu de contexto serão realizadas apenas nesta aba do editor.

Para copiar ou colar para ou de aplicativos externos a aba do editor, use as seguintes combinações do teclado:","Common.Views.CopyWarningDialog.textTitle":"Ações copiar, cortar e colar","Common.Views.CopyWarningDialog.textToCopy":"para Copiar","Common.Views.CopyWarningDialog.textToCut":"para Cortar","Common.Views.CopyWarningDialog.textToPaste":"para Colar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Baixar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Verifique os comandos que serão exibidos na Barra de Ferramentas de Acesso Rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impressão rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Refazer","Common.Views.CustomizeQuickAccessDialog.textSave":"Salvar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalize o acesso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Desfazer","Common.Views.DocumentAccessDialog.textLoading":"Carregando...","Common.Views.DocumentAccessDialog.textTitle":"Configurações de compartilhamento","Common.Views.Draw.hintEraser":"Apagador","Common.Views.Draw.hintSelect":"Selecionar","Common.Views.Draw.txtEraser":"Apagador","Common.Views.Draw.txtHighlighter":"Marcador","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Caneta","Common.Views.Draw.txtSelect":"Selecionar","Common.Views.Draw.txtSize":"Tamanho","Common.Views.ExternalDiagramEditor.textTitle":"Editor de gráfico","Common.Views.ExternalEditor.textClose":"Encerrar","Common.Views.ExternalEditor.textSave":"Salvar e Sair","Common.Views.ExternalLinksDlg.closeButtonText":"Encerrar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Atualizar automaticamente os dados das fontes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Mudar fonte","Common.Views.ExternalLinksDlg.textDelete":"Quebrar links","Common.Views.ExternalLinksDlg.textDeleteAll":"Quebrar todos os links","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Código aberto","Common.Views.ExternalLinksDlg.textSource":"Fonte","Common.Views.ExternalLinksDlg.textStatus":"Status","Common.Views.ExternalLinksDlg.textUnknown":"Desconhecido","Common.Views.ExternalLinksDlg.textUpdate":"Atualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Atualize tudo","Common.Views.ExternalLinksDlg.textUpdating":"Atualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Links externos","Common.Views.Header.ariaQuickAccessToolbar":"Barra de ferramentas de acesso rápido","Common.Views.Header.labelCoUsersDescr":"Usuários que estão editando o arquivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Configurações avançadas","Common.Views.Header.textAnnotateDesc":"Preencher formulários ou fazer anotações","Common.Views.Header.textBack":"Local do arquivo aberto","Common.Views.Header.textClose":"Fechar Arquivo","Common.Views.Header.textComment":"Comentar","Common.Views.Header.textCommentDesc":"Todas as alterações serão salvas no arquivo. Colaboração em tempo real","Common.Views.Header.textCompactView":"Ocultar Barra de Ferramentas","Common.Views.Header.textDownload":"Baixar","Common.Views.Header.textEdit":"Editando","Common.Views.Header.textEditDesc":"Todas as alterações serão salvas no arquivo. Colaboração em tempo real","Common.Views.Header.textEditDescNoCoedit":"Adicione ou edite texto, formas, imagens etc.","Common.Views.Header.textHideLines":"Ocultar réguas","Common.Views.Header.textHideStatusBar":"Ocultar barra de status","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Somente leitura","Common.Views.Header.textRemoveFavorite":"Remover dos Favoritos","Common.Views.Header.textShare":"Compartilhar","Common.Views.Header.textView":"Visualizando","Common.Views.Header.textViewDesc":"Todas as alterações serão salvas localmente","Common.Views.Header.textViewDescNoCoedit":"Visualizar ou anotar","Common.Views.Header.textZoom":"Zoom","Common.Views.Header.tipAccessRights":"Gerenciar direitos de acesso a documentos","Common.Views.Header.tipComment":"Comentar","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalize a barra de ferramentas de acesso rápido","Common.Views.Header.tipDownload":"Baixar arquivo","Common.Views.Header.tipEdit":"Editando","Common.Views.Header.tipGoEdit":"Editar arquivo atual","Common.Views.Header.tipPrint":"Imprimir arquivo","Common.Views.Header.tipPrintQuick":"Impressão rápida","Common.Views.Header.tipRedo":"Refazer","Common.Views.Header.tipSave":"Salvar","Common.Views.Header.tipSearch":"Pesquisar","Common.Views.Header.tipUndo":"Desfazer","Common.Views.Header.tipUsers":"Ver usuários","Common.Views.Header.tipView":"Visualizando","Common.Views.Header.tipViewSettings":"Visualizar configurações","Common.Views.Header.tipViewUsers":"Ver usuários e gerenciar direitos de acesso ao documento","Common.Views.Header.txtAccessRights":"Alterar direitos de acesso","Common.Views.Header.txtRename":"Renomear","Common.Views.ImageFromUrlDialog.textUrl":"Colar uma URL de imagem:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo é obrigatório","Common.Views.ImageFromUrlDialog.txtNotUrl":"Este campo deve ser uma URL no formato \"http://www.example.com\"","Common.Views.OpenDialog.closeButtonText":"Fechar Arquivo","Common.Views.OpenDialog.txtEncoding":"Codificação","Common.Views.OpenDialog.txtIncorrectPwd":"Senha incorreta.","Common.Views.OpenDialog.txtOpenFile":"Inserir a Senha para Abrir o Arquivo","Common.Views.OpenDialog.txtPassword":"Senha","Common.Views.OpenDialog.txtPreview":"Pré-visualizar","Common.Views.OpenDialog.txtProtected":"Depois de inserir a senha e abrir o arquivo, a senha atual do arquivo será redefinida.","Common.Views.OpenDialog.txtTitle":"Escolher opções %1","Common.Views.OpenDialog.txtTitleProtected":"Arquivo protegido","Common.Views.PasswordDialog.txtDescription":"Defina uma senha para proteger o documento","Common.Views.PasswordDialog.txtIncorrectPwd":"A confirmação da senha não é idêntica","Common.Views.PasswordDialog.txtPassword":"Senha","Common.Views.PasswordDialog.txtRepeat":"Repetir a senha","Common.Views.PasswordDialog.txtTitle":"Definir senha","Common.Views.PasswordDialog.txtWarning":"Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.","Common.Views.PluginDlg.textDock":"Plug-in de fixação","Common.Views.PluginDlg.textLoading":"Carregando","Common.Views.PluginPanel.textClosePanel":"Fechar plug-in","Common.Views.PluginPanel.textHidePanel":"Recolher plugin","Common.Views.PluginPanel.textLoading":"Carregando","Common.Views.PluginPanel.textUndock":"Desafixar plugin","Common.Views.Plugins.groupCaption":"Plugins","Common.Views.Plugins.strPlugins":"Plugins","Common.Views.Plugins.textBackgroundPlugins":"Plug-ins em segundo plano","Common.Views.Plugins.textClosePanel":"Fechar plug-in","Common.Views.Plugins.textLoading":"Carregando","Common.Views.Plugins.textSettings":"Configurações","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Parar","Common.Views.Plugins.textTheListOfBackgroundPlugins":"A lista de plug-ins de segundo plano","Common.Views.Protection.hintAddPwd":"Criptografar com senha","Common.Views.Protection.hintDelPwd":"Excluir senha","Common.Views.Protection.hintPwd":"Alterar ou excluir senha","Common.Views.Protection.hintSignature":"Inserir assinatura digital ou linha de assinatura","Common.Views.Protection.txtAddPwd":"Inserir a senha","Common.Views.Protection.txtChangePwd":"Alterar Senha","Common.Views.Protection.txtDeletePwd":"Excluir senha","Common.Views.Protection.txtEncrypt":"Criptografar","Common.Views.Protection.txtInvisibleSignature":"Inserir assinatura digital","Common.Views.Protection.txtSignature":"Assinatura","Common.Views.Protection.txtSignatureLine":"Adicionar linha de assinatura","Common.Views.RecentFiles.txtOpenRecent":"Abrir recente","Common.Views.RenameDialog.textName":"Nome do arquivo","Common.Views.RenameDialog.txtInvalidName":"Nome de arquivo não pode conter os seguintes caracteres:","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedição em tempo real. Todas as alterações são salvas automaticamente.","Common.Views.ReviewChanges.strStrict":"Estrito","Common.Views.ReviewChanges.strStrictDesc":"Use o botão 'Salvar' para sincronizar as alterações que você e outros realizaram.","Common.Views.ReviewChanges.tipCoAuthMode":"Definir modo de coedição","Common.Views.ReviewChanges.tipCommentRem":"Excluir comentários","Common.Views.ReviewChanges.tipCommentRemCurrent":"Remover comentários atuais","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentários","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver comentários atuais","Common.Views.ReviewChanges.tipHistory":"Exibir histórico de versão","Common.Views.ReviewChanges.tipSharing":"Gerenciar direitos de acesso a documentos","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Fechar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedição","Common.Views.ReviewChanges.txtCommentRemAll":"Excluir todos os comentários","Common.Views.ReviewChanges.txtCommentRemCurrent":"Remover comentários atuais","Common.Views.ReviewChanges.txtCommentRemMy":"Excluir meus comentários","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Remover meus comentários atuais","Common.Views.ReviewChanges.txtCommentRemove":"Excluir","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos os comentários","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentários atuais","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver meus comentários","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver meus comentários atuais","Common.Views.ReviewChanges.txtHistory":"Histórico de versão","Common.Views.ReviewChanges.txtSharing":"Compartilhar","Common.Views.ReviewPopover.textAdd":"Adicionar","Common.Views.ReviewPopover.textAddReply":"Adicionar resposta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Fechar","Common.Views.ReviewPopover.textComment":"Comentário","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Insira seu comentário aqui","Common.Views.ReviewPopover.textFollowMove":"Seguir movimento","Common.Views.ReviewPopover.textMention":"+menção fornecerá acesso ao documento e enviará um e-mail","Common.Views.ReviewPopover.textMentionNotify":"+menção notificará o usuário por e-mail","Common.Views.ReviewPopover.textOpenAgain":"Abrir novamente","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"Você não tem permissão para reabrir comentários","Common.Views.ReviewPopover.txtAccept":"Aceitar","Common.Views.ReviewPopover.txtDeleteTip":"Remover","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.ReviewPopover.txtReject":"Rejeitar","Common.Views.SaveAsDlg.textLoading":"Carregando","Common.Views.SaveAsDlg.textTitle":"Pasta para salvar","Common.Views.SearchPanel.textCaseSensitive":"Maiúsculas e Minúsculas","Common.Views.SearchPanel.textCloseSearch":"Fechar pesquisa","Common.Views.SearchPanel.textContentChanged":"Documento alterado.","Common.Views.SearchPanel.textFind":"Localizar","Common.Views.SearchPanel.textFindAndRedact":"Encontre e redija","Common.Views.SearchPanel.textFindAndReplace":"Localizar e substituir","Common.Views.SearchPanel.textFindRedact":"Encontrar e redigir","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} itens substituídos com sucesso.","Common.Views.SearchPanel.textMark":"Marcar para redação","Common.Views.SearchPanel.textMarkAll":"Marcar tudo","Common.Views.SearchPanel.textMatchUsingRegExp":"Corresponder usando expressões regulares","Common.Views.SearchPanel.textNoMatches":"Nenhuma correspondência","Common.Views.SearchPanel.textNoSearchResults":"Nenhum resultado de pesquisa","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} itens substituídos. Os {2} itens restantes estão bloqueados por outros usuários.","Common.Views.SearchPanel.textReplace":"Substituir","Common.Views.SearchPanel.textReplaceAll":"Substituir tudo","Common.Views.SearchPanel.textReplaceWith":"Substituir com","Common.Views.SearchPanel.textSearchAgain":"{0}Realize uma nova pesquisa{1} para obter resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"A pesquisa parou","Common.Views.SearchPanel.textSearchResults":"Resultados da pesquisa: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados da pesquisa","Common.Views.SearchPanel.textTooManyResults":"Há muitos resultados para mostrar aqui","Common.Views.SearchPanel.textWholeWords":"Palavras inteiras apenas","Common.Views.SearchPanel.tipNextResult":"Próximo resultado","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Carregando","Common.Views.SelectFileDlg.textTitle":"Selecionar Fonte de Dados","Common.Views.ShapeShadowDialog.txtAngle":"Ângulo","Common.Views.ShapeShadowDialog.txtDistance":"Distância","Common.Views.ShapeShadowDialog.txtSize":"Tamanho","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparência","Common.Views.ShortcutsDialog.txtDescription":"Descrição","Common.Views.ShortcutsDialog.txtEmpty":"Nenhuma correspondência encontrada. Ajuste sua busca.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restaurar tudo para os padrões","Common.Views.ShortcutsDialog.txtRestoreContinue":"Você deseja continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todas as configurações de atalhos serão restauradas para os padrões.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restaurar padrão","Common.Views.ShortcutsDialog.txtSearch":"Pesquisar","Common.Views.ShortcutsDialog.txtTitle":"Atalhos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Ação","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Digite o atalho desejado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"O atalho usado pelas ações %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"O atalho usado pelas ações %1 e não pode ser alterado","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"O atalho usado pela ação %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"O atalho usado pela ação %1 e não pode ser alterado","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Novo atalho","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Você deseja continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos os atalhos para a ação “%1” serão restaurados ao padrão.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restaurar padrão","Common.Views.ShortcutsEditDialog.txtTitle":"Editar atalho","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Digite o atalho desejado","Common.Views.UserNameDialog.textDontShow":"Não perguntar novamente","Common.Views.UserNameDialog.textLabel":"Etiqueta:","Common.Views.UserNameDialog.textLabelError":"Etiqueta não deve estar vazia.","PDFE.Controllers.InsTab.textAccent":"Acentos","PDFE.Controllers.InsTab.textBracket":"Parênteses","PDFE.Controllers.InsTab.textFraction":"Frações","PDFE.Controllers.InsTab.textFunction":"Funções","PDFE.Controllers.InsTab.textInsert":"Inserir","PDFE.Controllers.InsTab.textIntegral":"Integrais","PDFE.Controllers.InsTab.textLargeOperator":"Grandes operadores","PDFE.Controllers.InsTab.textLimitAndLog":"Limites e logaritmos","PDFE.Controllers.InsTab.textMatrix":"Matrizes","PDFE.Controllers.InsTab.textOperator":"Operadores","PDFE.Controllers.InsTab.textRadical":"Radicais","PDFE.Controllers.InsTab.textScript":"Scripts","PDFE.Controllers.InsTab.textShape":"Forma","PDFE.Controllers.InsTab.textSymbols":"Símbolos","PDFE.Controllers.InsTab.txtAccent_Accent":"Agudo","PDFE.Controllers.InsTab.txtAccent_ArrowD":"Seta para direita-esquerda acima","PDFE.Controllers.InsTab.txtAccent_ArrowL":"Seta para a esquerda acima","PDFE.Controllers.InsTab.txtAccent_ArrowR":"Seta para direita acima","PDFE.Controllers.InsTab.txtAccent_Bar":"Barra","PDFE.Controllers.InsTab.txtAccent_BarBot":"Barra inferior","PDFE.Controllers.InsTab.txtAccent_BarTop":"Barra superior","PDFE.Controllers.InsTab.txtAccent_BorderBox":"Fórmula Emoldurada (com Espaço Reservado)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"Fórmula embalada(Exemplo)","PDFE.Controllers.InsTab.txtAccent_Check":"Verificar","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"Suporte","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"Chave Superior","PDFE.Controllers.InsTab.txtAccent_Custom_1":"Vetor A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"Barra superior com ABC","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XOR y com barra superior","PDFE.Controllers.InsTab.txtAccent_DDDot":"Ponto triplo","PDFE.Controllers.InsTab.txtAccent_DDot":"Ponto duplo","PDFE.Controllers.InsTab.txtAccent_Dot":"Ponto","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"Barra superior dupla","PDFE.Controllers.InsTab.txtAccent_Grave":"Grave","PDFE.Controllers.InsTab.txtAccent_GroupBot":"Agrupando caractere abaixo","PDFE.Controllers.InsTab.txtAccent_GroupTop":"Agrupando caractere acima","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"Arpão para a esquerda acima","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"Arpão para direita acima","PDFE.Controllers.InsTab.txtAccent_Hat":"Acento circunflexo","PDFE.Controllers.InsTab.txtAccent_Smile":"Breve","PDFE.Controllers.InsTab.txtAccent_Tilde":"Til","PDFE.Controllers.InsTab.txtBasicShapes":"Formas básicas","PDFE.Controllers.InsTab.txtBracket_Angle":"Colchetes angulares","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"Parênteses com separadores","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"Colchetes angulares com dois separadores","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"Colchete de ângulo reto","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"Colchete angular esquerdo","PDFE.Controllers.InsTab.txtBracket_Curve":"Colchetes","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"Colchetes com separador","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"Colchete direito","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"colchete esquerdo","PDFE.Controllers.InsTab.txtBracket_Custom_1":"Casos (Duas Condições)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"Casos (Três Condições)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"Objeto de pilha","PDFE.Controllers.InsTab.txtBracket_Custom_4":"Objeto empilhado entre parênteses","PDFE.Controllers.InsTab.txtBracket_Custom_5":"Exemplo de casos","PDFE.Controllers.InsTab.txtBracket_Custom_6":"Coeficiente binominal","PDFE.Controllers.InsTab.txtBracket_Custom_7":"Coeficiente binominal","PDFE.Controllers.InsTab.txtBracket_Line":"Barras verticais","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"Barra vertical direita","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"Barra vertical esquerda","PDFE.Controllers.InsTab.txtBracket_LineDouble":"Barras verticais duplas","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"Barra vertical dupla direita","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"Barra vertical dupla esquerda","PDFE.Controllers.InsTab.txtBracket_LowLim":"Piso","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"Piso direito","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"Piso esquerdo","PDFE.Controllers.InsTab.txtBracket_Round":"Parênteses","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"Parênteses com separadores","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"Parêntese direito","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"Parêntese esquerdo","PDFE.Controllers.InsTab.txtBracket_Square":"Colchetes","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"Espaço reservado entre dois colchetes direitos","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"Colchetes invertidos","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"Colchete direito","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"Colchete esquerdo","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"Espaço reservado entre dois colchetes esquerdos","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"Colchetes duplos","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"Colchete duplo direito","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"Colchete duplo esquerdo","PDFE.Controllers.InsTab.txtBracket_UppLim":"Teto","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"Teto direito","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"Colchete Simples","PDFE.Controllers.InsTab.txtButtons":"Botões","PDFE.Controllers.InsTab.txtCallouts":"Textos explicativos","PDFE.Controllers.InsTab.txtCharts":"Gráficos","PDFE.Controllers.InsTab.txtFiguredArrows":"Setas figuradas","PDFE.Controllers.InsTab.txtFractionDiagonal":"Fração distorcida","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dx sobre dy","PDFE.Controllers.InsTab.txtFractionDifferential_2":"limite delta y sobre limite delta x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"y parcial sobre x parcial","PDFE.Controllers.InsTab.txtFractionDifferential_4":"Delta y sobre delta x","PDFE.Controllers.InsTab.txtFractionHorizontal":"Fração linear","PDFE.Controllers.InsTab.txtFractionPi_2":"Pi sobre 2","PDFE.Controllers.InsTab.txtFractionSmall":"Fração pequena","PDFE.Controllers.InsTab.txtFractionVertical":"Fração empilhada","PDFE.Controllers.InsTab.txtFunction_1_Cos":"Função cosseno inverso","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"Função cosseno inverso hiperbólico","PDFE.Controllers.InsTab.txtFunction_1_Cot":"Função cotangente inversa","PDFE.Controllers.InsTab.txtFunction_1_Coth":"Função cotangente inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Csc":"Função cossecante inversa","PDFE.Controllers.InsTab.txtFunction_1_Csch":"Função cossecante inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Sec":"Função secante inversa","PDFE.Controllers.InsTab.txtFunction_1_Sech":"Função secante inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Sin":"Função seno inverso","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"Função seno inverso hiperbólico","PDFE.Controllers.InsTab.txtFunction_1_Tan":"Função tangente inversa","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"Função tangente inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_Cos":"Função cosseno","PDFE.Controllers.InsTab.txtFunction_Cosh":"Função cosseno hiperbólico","PDFE.Controllers.InsTab.txtFunction_Cot":"Função cotangente","PDFE.Controllers.InsTab.txtFunction_Coth":"Função cotangente hiperbólica","PDFE.Controllers.InsTab.txtFunction_Csc":"Função cossecante","PDFE.Controllers.InsTab.txtFunction_Csch":"Função co-secante hiperbólica","PDFE.Controllers.InsTab.txtFunction_Custom_1":"Teta seno","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Cos 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"Fórmula da tangente","PDFE.Controllers.InsTab.txtFunction_Sec":"Função secante","PDFE.Controllers.InsTab.txtFunction_Sech":"Função secante hiperbólica","PDFE.Controllers.InsTab.txtFunction_Sin":"Função seno","PDFE.Controllers.InsTab.txtFunction_Sinh":"Função seno hiperbólico","PDFE.Controllers.InsTab.txtFunction_Tan":"Função da tangente","PDFE.Controllers.InsTab.txtFunction_Tanh":"Função tangente hiperbólica","PDFE.Controllers.InsTab.txtIntegral":"Integral","PDFE.Controllers.InsTab.txtIntegral_dtheta":"Teta diferencial","PDFE.Controllers.InsTab.txtIntegral_dx":"Diferencial x","PDFE.Controllers.InsTab.txtIntegral_dy":"Diferencial y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"Integral com limites acumulados","PDFE.Controllers.InsTab.txtIntegralDouble":"Integral dupla","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"Integral dupla com limites empilhados","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"Integral dupla com limites","PDFE.Controllers.InsTab.txtIntegralOriented":"Contorno integral","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"Integral de contorno com limites empilhados","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"Integral de Superfície","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"Integral de superfície com limites empilhados","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"Integral de superfície com limites","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"Integral de contorno com limites","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"Volume Integral","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"Integral de volume com limites empilhados","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"Integral de volume com limites","PDFE.Controllers.InsTab.txtIntegralSubSup":"Integral com limites","PDFE.Controllers.InsTab.txtIntegralTriple":"Inteiro triplo","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"Integral tripla com limites empilhados","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"Integral tripla com limites","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"Lógico e","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"Lógico E com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"Lógico E com limites","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"Lógico E com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"Lógico E com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"Coproduto","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"Coproduto com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"Coproduto com limites","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"Coproduto com limite inferior de subscrito","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"Coproduto com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"Soma sobre k de n escolha k","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"Soma de i igual a zero a n","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"Exemplo de soma usando dois índices","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"Exemplo de produto","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"Exemplo de união","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"Lógico ou","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"Lógico Ou com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"Lógico Ou com limites","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"Lógico Ou com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"Ou Lógico com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"Interseção","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"Interseção com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"Interseção com limites","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"Interseção com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"Interseção com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"Produto","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"Produto com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"Produto com limites","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"Produto com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"Produto com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"Somatório","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"Soma com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"Soma com limites","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"Soma com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"Soma com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Union":"União","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"União com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"União com limites","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"União com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"União com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"Exemplo de limite","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"Exemplo máximo","PDFE.Controllers.InsTab.txtLimitLog_Lim":"Limite","PDFE.Controllers.InsTab.txtLimitLog_Ln":"Logaritmo natural","PDFE.Controllers.InsTab.txtLimitLog_Log":"Logaritmo","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"Logaritmo","PDFE.Controllers.InsTab.txtLimitLog_Max":"Máximo","PDFE.Controllers.InsTab.txtLimitLog_Min":"Mínimo","PDFE.Controllers.InsTab.txtLines":"Linhas","PDFE.Controllers.InsTab.txtMath":"Matemática","PDFE.Controllers.InsTab.txtMatrix_1_2":"Matriz Vazia 1x2","PDFE.Controllers.InsTab.txtMatrix_1_3":"Matriz Vazia 1x3","PDFE.Controllers.InsTab.txtMatrix_2_1":"Matriz Vazia 2x1","PDFE.Controllers.InsTab.txtMatrix_2_2":"Matriz Vazia 2x2","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"Matriz 2 por 2 vazia em barras verticais duplas","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"Determinante 2 por 2 vazio","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"Matriz 2 por 2 vazia entre parênteses","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"Matriz 2 por 2 vazia entre parênteses","PDFE.Controllers.InsTab.txtMatrix_2_3":"Matriz Vazia 2x3","PDFE.Controllers.InsTab.txtMatrix_3_1":"Matriz Vazia 3x1","PDFE.Controllers.InsTab.txtMatrix_3_2":"Matriz Vazia 3x2","PDFE.Controllers.InsTab.txtMatrix_3_3":"Matriz Vazia 3x3","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"Pontos de linha de base","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"Pontos da linha média","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"Pontos diagonais","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"Pontos verticais","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"Matriz esparsa entre parênteses","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"Matriz esparsa em parênteses","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"Matriz da identidade 2x2","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"Matriz da identidade 2x2","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"Matriz da identidade 3x3","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"Matriz da identidade 3x3","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"Seta para direita esquerda abaixo","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"Seta para direita-esquerda acima","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"Seta para a esquerda abaixo","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"Seta para a esquerda acima","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"Seta para direita abaixo","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"Seta para direita acima","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"Dois pontos iguais","PDFE.Controllers.InsTab.txtOperator_Custom_1":"Resultados","PDFE.Controllers.InsTab.txtOperator_Custom_2":"Resultados de Delta","PDFE.Controllers.InsTab.txtOperator_Definition":"Igual a por definição","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"Delta igual a","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"Seta para direita esquerda abaixo","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"Seta para direita-esquerda acima","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"Seta para a esquerda abaixo","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"Seta para a esquerda acima","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"Seta para direita abaixo","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"Seta para direita acima","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"Igual Igual","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"Menos igual","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"Sinal de Mais-Sinal de Igual","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"Medido por","PDFE.Controllers.InsTab.txtRadicalCustom_1":"Lado direito da fórmula quadrática","PDFE.Controllers.InsTab.txtRadicalCustom_2":"Raiz quadrada de a ao quadrado mais b ao quadrado","PDFE.Controllers.InsTab.txtRadicalRoot_2":"Raiz quadrada com grau","PDFE.Controllers.InsTab.txtRadicalRoot_3":"Raiz cúbica","PDFE.Controllers.InsTab.txtRadicalRoot_n":"Radical com grau","PDFE.Controllers.InsTab.txtRadicalSqrt":"Raiz quadrada","PDFE.Controllers.InsTab.txtRectangles":"Retângulos","PDFE.Controllers.InsTab.txtScriptCustom_1":"x subscrito y ao quadrado","PDFE.Controllers.InsTab.txtScriptCustom_2":"e elevado a menos i ômega t","PDFE.Controllers.InsTab.txtScriptCustom_3":"x ao quadrado","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y sobrescrito à esquerda n subscrito à esquerda um","PDFE.Controllers.InsTab.txtScriptSub":"Subscrito","PDFE.Controllers.InsTab.txtScriptSubSup":"Subscrito-Sobrescrito","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"Subscrito-sobrescrito à esquerda","PDFE.Controllers.InsTab.txtScriptSup":"Sobrescrito","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"Chamada de linha 1 (borda e barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"Texto explicativo da linha 2 (Borda e barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"Texto explicativo da linha 3 (Borda e barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"Chamada de linha 1 (barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"Chamada de linha 2 (barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"Texto explicativo da linha 3 (Barra de destaque)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"Botão voltar ou anterior","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"Botão inicial","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"Botão em branco","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"Botão documento","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"Botão terminar","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"Botão avançar ou próximo","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"Botão de ajuda","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"Botão Início","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"Botão de informação","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"Botão Vídeo","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"Botão Retornar","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"Botão de som","PDFE.Controllers.InsTab.txtShape_arc":"Arco","PDFE.Controllers.InsTab.txtShape_bentArrow":"Seta curvada","PDFE.Controllers.InsTab.txtShape_bentConnector5":"Conector em cotovelo","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"Conector de seta cotovelo","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"Conector em cotovelo de dupla seta","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"Seta para cima dobrada","PDFE.Controllers.InsTab.txtShape_bevel":"Bisel","PDFE.Controllers.InsTab.txtShape_blockArc":"Arco de bloco","PDFE.Controllers.InsTab.txtShape_borderCallout1":"Chamada de linha 1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"Chamada de linha 2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"Texto explicativo da linha 3","PDFE.Controllers.InsTab.txtShape_bracePair":"Chave dupla","PDFE.Controllers.InsTab.txtShape_callout1":"Chamada de linha 1 (sem borda)","PDFE.Controllers.InsTab.txtShape_callout2":"Texto explicativo da linha 2 (Sem borda)","PDFE.Controllers.InsTab.txtShape_callout3":"Texto explicativo da linha 3 (Sem borda)","PDFE.Controllers.InsTab.txtShape_can":"Pode","PDFE.Controllers.InsTab.txtShape_chevron":"Divisa","PDFE.Controllers.InsTab.txtShape_chord":"Acorde","PDFE.Controllers.InsTab.txtShape_circularArrow":"Seta circular","PDFE.Controllers.InsTab.txtShape_cloud":"Nuvem","PDFE.Controllers.InsTab.txtShape_cloudCallout":"Texto explicativo em nuvem","PDFE.Controllers.InsTab.txtShape_corner":"Canto","PDFE.Controllers.InsTab.txtShape_cube":"Cubo","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"Conector curvado","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"Conector de seta curvada","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"Conector de seta dupla curvado","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"Seta curva para baixo","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"Seta curvada para a esquerda","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"Seta curva para a direita","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"Seta curva para cima","PDFE.Controllers.InsTab.txtShape_decagon":"Decágono","PDFE.Controllers.InsTab.txtShape_diagStripe":"Faixa diagonal","PDFE.Controllers.InsTab.txtShape_diamond":"Diamante","PDFE.Controllers.InsTab.txtShape_dodecagon":"Dodecágono","PDFE.Controllers.InsTab.txtShape_donut":"Rosquinha","PDFE.Controllers.InsTab.txtShape_doubleWave":"Onda dupla","PDFE.Controllers.InsTab.txtShape_downArrow":"Seta para baixo","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"Texto explicativo em seta para baixo","PDFE.Controllers.InsTab.txtShape_ellipse":"Elipse","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"Fita curvada para baixo","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"Fita curvada","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"Fluxograma: Processo alternativo","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"Fluxograma: Agrupar","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"Fluxograma: Conector","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"Fluxograma: Decisão","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"Fluxograma: Atraso","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"Fluxograma: Exibir","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"Fluxograma: Documento","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"Fluxograma: Extrair","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"Fluxograma: Dados","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"Fluxograma: Armazenamento interno","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"Fluxograma: Disco magnético","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"Fluxograma: Armazenamento de acesso direto","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"Fluxograma: Armazenamento de acesso sequencial","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"Fluxograma: Entrada manual","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"Fluxograma: Operação manual","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"Fluxograma: Mesclar","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"Fluxograma: Vários Documentos","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"Fluxograma: Conector fora da página","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"Fluxograma: Dados armazenados","PDFE.Controllers.InsTab.txtShape_flowChartOr":"Fluxograma: Ou","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"Fluxograma: Processo predefinido","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"Fluxograma: Preparação","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"Fluxograma: Processo","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"Fluxograma: Cartão","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"Fluxograma: Fita perfurada","PDFE.Controllers.InsTab.txtShape_flowChartSort":"Fluxograma: Classificar","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"Fluxograma: Junção de soma","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"Fluxograma: Terminação","PDFE.Controllers.InsTab.txtShape_foldedCorner":"Canto dobrado","PDFE.Controllers.InsTab.txtShape_frame":"Quadro","PDFE.Controllers.InsTab.txtShape_halfFrame":"Meia moldura","PDFE.Controllers.InsTab.txtShape_heart":"Coração","PDFE.Controllers.InsTab.txtShape_heptagon":"Heptágono","PDFE.Controllers.InsTab.txtShape_hexagon":"Hexágono","PDFE.Controllers.InsTab.txtShape_homePlate":"Pentágono","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"Rolagem horizontal","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"Explosão 1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"Explosão 2","PDFE.Controllers.InsTab.txtShape_leftArrow":"Seta para esquerda","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"Chamada de seta para a esquerda","PDFE.Controllers.InsTab.txtShape_leftBrace":"Chave esquerda","PDFE.Controllers.InsTab.txtShape_leftBracket":"Colchete esquerdo","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"Seta esquerda direita","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"Texto explicativo da seta para a esquerda e para a direita","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"Seta para cima esquerda e direita","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"Seta para cima à esquerda","PDFE.Controllers.InsTab.txtShape_lightningBolt":"Raio","PDFE.Controllers.InsTab.txtShape_line":"Linha","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"Seta","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"Seta dupla","PDFE.Controllers.InsTab.txtShape_mathDivide":"Divisão","PDFE.Controllers.InsTab.txtShape_mathEqual":"Igual","PDFE.Controllers.InsTab.txtShape_mathMinus":"Menos","PDFE.Controllers.InsTab.txtShape_mathMultiply":"Multiplicar","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"Não é igual","PDFE.Controllers.InsTab.txtShape_mathPlus":"Mais","PDFE.Controllers.InsTab.txtShape_moon":"Lua","PDFE.Controllers.InsTab.txtShape_noSmoking":"Símbolo \"Não\"","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"Seta direita entalhada","PDFE.Controllers.InsTab.txtShape_octagon":"Octógono","PDFE.Controllers.InsTab.txtShape_parallelogram":"Paralelograma","PDFE.Controllers.InsTab.txtShape_pentagon":"Pentágono","PDFE.Controllers.InsTab.txtShape_pie":"Gráfico de pizza","PDFE.Controllers.InsTab.txtShape_plaque":"Assinar","PDFE.Controllers.InsTab.txtShape_plus":"Mais","PDFE.Controllers.InsTab.txtShape_polyline1":"Rabisco","PDFE.Controllers.InsTab.txtShape_polyline2":"Forma livre","PDFE.Controllers.InsTab.txtShape_quadArrow":"Seta quádrupla","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"Texto explicativo em seta quádrupla","PDFE.Controllers.InsTab.txtShape_rect":"Retângulo","PDFE.Controllers.InsTab.txtShape_ribbon":"Faixa para baixo","PDFE.Controllers.InsTab.txtShape_ribbon2":"Fita para cima","PDFE.Controllers.InsTab.txtShape_rightArrow":"Seta para direita","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"Texto explicativo da seta à direita","PDFE.Controllers.InsTab.txtShape_rightBrace":"Chave à direita","PDFE.Controllers.InsTab.txtShape_rightBracket":"Colchete direito","PDFE.Controllers.InsTab.txtShape_round1Rect":"Retângulo com único canto arredondado","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"Retângulo de canto diagonal arredondado ","PDFE.Controllers.InsTab.txtShape_round2SameRect":"Retângulo arredondado do mesmo lado","PDFE.Controllers.InsTab.txtShape_roundRect":"Retângulo arredondado","PDFE.Controllers.InsTab.txtShape_rtTriangle":"Triângulo retângulo","PDFE.Controllers.InsTab.txtShape_smileyFace":"Rosto sorridente","PDFE.Controllers.InsTab.txtShape_snip1Rect":"Retângulo de canto único recortado","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"Retângulo de canto diagonal recortado","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"Retângulo com canto recortado do mesmo lado","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"Retângulo com canto recortado e arredondado","PDFE.Controllers.InsTab.txtShape_spline":"Curva","PDFE.Controllers.InsTab.txtShape_star10":"Estrela de 10 pontas","PDFE.Controllers.InsTab.txtShape_star12":"Estrela de 12 pontas","PDFE.Controllers.InsTab.txtShape_star16":"Estrela de 16 pontas","PDFE.Controllers.InsTab.txtShape_star24":"Estrela de 24 pontas","PDFE.Controllers.InsTab.txtShape_star32":"Estrela de 32 pontas","PDFE.Controllers.InsTab.txtShape_star4":"Estrela de 4 pontas","PDFE.Controllers.InsTab.txtShape_star5":"Estrela de 5 pontas","PDFE.Controllers.InsTab.txtShape_star6":"Estrela de 6 pontas","PDFE.Controllers.InsTab.txtShape_star7":"Estrela de 7 pontas","PDFE.Controllers.InsTab.txtShape_star8":"Estrela de 8 pontas","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"Seta para a direita listrada","PDFE.Controllers.InsTab.txtShape_sun":"Sol","PDFE.Controllers.InsTab.txtShape_teardrop":"Lágrima","PDFE.Controllers.InsTab.txtShape_textRect":"Caixa de texto","PDFE.Controllers.InsTab.txtShape_trapezoid":"Trapézio","PDFE.Controllers.InsTab.txtShape_triangle":"Triângulo","PDFE.Controllers.InsTab.txtShape_upArrow":"Seta para cima","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"Chamada de seta para cima","PDFE.Controllers.InsTab.txtShape_upDownArrow":"Seta para cima e para baixo","PDFE.Controllers.InsTab.txtShape_uturnArrow":"Seta de inversão de marcha","PDFE.Controllers.InsTab.txtShape_verticalScroll":"Rolagem vertical","PDFE.Controllers.InsTab.txtShape_wave":"Onda","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"Texto explicativo oval","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"Texto explicativo retangular","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"Texto explicativo retangular arredondado","PDFE.Controllers.InsTab.txtStarsRibbons":"Estrelas e arco-íris","PDFE.Controllers.InsTab.txtSymbol_about":"Aproximadamente","PDFE.Controllers.InsTab.txtSymbol_additional":"Complemento","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Alfa","PDFE.Controllers.InsTab.txtSymbol_approx":"Quase igual a","PDFE.Controllers.InsTab.txtSymbol_ast":"Operador de asterisco","PDFE.Controllers.InsTab.txtSymbol_beta":"Beta","PDFE.Controllers.InsTab.txtSymbol_beth":"Aposta","PDFE.Controllers.InsTab.txtSymbol_bullet":"Operador de marcador","PDFE.Controllers.InsTab.txtSymbol_cap":"Interseção","PDFE.Controllers.InsTab.txtSymbol_cbrt":"Raiz cúbica","PDFE.Controllers.InsTab.txtSymbol_cdots":"Elipse horizontal na linha média","PDFE.Controllers.InsTab.txtSymbol_celsius":"Graus Celsius","PDFE.Controllers.InsTab.txtSymbol_chi":"Chi","PDFE.Controllers.InsTab.txtSymbol_cong":"Aproximadamente igual a","PDFE.Controllers.InsTab.txtSymbol_cup":"União","PDFE.Controllers.InsTab.txtSymbol_ddots":"Reticências diagonal para baixo à direita","PDFE.Controllers.InsTab.txtSymbol_degree":"Graus","PDFE.Controllers.InsTab.txtSymbol_delta":"Delta","PDFE.Controllers.InsTab.txtSymbol_div":"Sinal de divisão","PDFE.Controllers.InsTab.txtSymbol_downarrow":"Seta para baixo","PDFE.Controllers.InsTab.txtSymbol_emptyset":"Conjunto vazio","PDFE.Controllers.InsTab.txtSymbol_epsilon":"Epsílon","PDFE.Controllers.InsTab.txtSymbol_equals":"Igual","PDFE.Controllers.InsTab.txtSymbol_equiv":"Idêntico a","PDFE.Controllers.InsTab.txtSymbol_eta":"Eta","PDFE.Controllers.InsTab.txtSymbol_exists":"Existe","PDFE.Controllers.InsTab.txtSymbol_factorial":"Fatorial","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"Graus Fahrenheit","PDFE.Controllers.InsTab.txtSymbol_forall":"Para todos","PDFE.Controllers.InsTab.txtSymbol_gamma":"Gama","PDFE.Controllers.InsTab.txtSymbol_geq":"Maior que ou igual a","PDFE.Controllers.InsTab.txtSymbol_gg":"Muito superior a","PDFE.Controllers.InsTab.txtSymbol_greater":"Superior a","PDFE.Controllers.InsTab.txtSymbol_in":"Elemento de","PDFE.Controllers.InsTab.txtSymbol_inc":"Incremento","PDFE.Controllers.InsTab.txtSymbol_infinity":"Infinidade","PDFE.Controllers.InsTab.txtSymbol_iota":"Iota","PDFE.Controllers.InsTab.txtSymbol_kappa":"Kappa","PDFE.Controllers.InsTab.txtSymbol_lambda":"Lambda","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"Seta para esquerda","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"Seta esquerda-direita","PDFE.Controllers.InsTab.txtSymbol_leq":"Menos que ou igual a","PDFE.Controllers.InsTab.txtSymbol_less":"Menor que","PDFE.Controllers.InsTab.txtSymbol_ll":"Muito inferior a","PDFE.Controllers.InsTab.txtSymbol_minus":"Menos","PDFE.Controllers.InsTab.txtSymbol_mp":"Menos mais","PDFE.Controllers.InsTab.txtSymbol_mu":"Mu","PDFE.Controllers.InsTab.txtSymbol_nabla":" Nabla","PDFE.Controllers.InsTab.txtSymbol_neq":"Não igual a","PDFE.Controllers.InsTab.txtSymbol_ni":"Contém como membro","PDFE.Controllers.InsTab.txtSymbol_not":"Não entrar","PDFE.Controllers.InsTab.txtSymbol_notexists":"Não existe","PDFE.Controllers.InsTab.txtSymbol_nu":"Nu","PDFE.Controllers.InsTab.txtSymbol_o":"Omicron","PDFE.Controllers.InsTab.txtSymbol_omega":"Ômega","PDFE.Controllers.InsTab.txtSymbol_partial":"Diferencial parcial","PDFE.Controllers.InsTab.txtSymbol_percent":"Porcentagem","PDFE.Controllers.InsTab.txtSymbol_phi":"Phi","PDFE.Controllers.InsTab.txtSymbol_pi":"Pi","PDFE.Controllers.InsTab.txtSymbol_plus":"Mais","PDFE.Controllers.InsTab.txtSymbol_pm":"Sinal de Menos-Sinal de Igual","PDFE.Controllers.InsTab.txtSymbol_propto":"Proporcional a","PDFE.Controllers.InsTab.txtSymbol_psi":"Psi","PDFE.Controllers.InsTab.txtSymbol_qdrt":"Quarta raiz","PDFE.Controllers.InsTab.txtSymbol_qed":"Fim da prova","PDFE.Controllers.InsTab.txtSymbol_rddots":"Reticências diagonais acima à direita","PDFE.Controllers.InsTab.txtSymbol_rho":"Rho","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"Seta para direita","PDFE.Controllers.InsTab.txtSymbol_sigma":"Sigma","PDFE.Controllers.InsTab.txtSymbol_sqrt":"Sinal de Radical","PDFE.Controllers.InsTab.txtSymbol_tau":"Tau","PDFE.Controllers.InsTab.txtSymbol_therefore":"Portanto","PDFE.Controllers.InsTab.txtSymbol_theta":"Teta","PDFE.Controllers.InsTab.txtSymbol_times":"Sinal de multiplicação","PDFE.Controllers.InsTab.txtSymbol_uparrow":"Seta para cima","PDFE.Controllers.InsTab.txtSymbol_upsilon":"Ípsilon","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"Variante de Epsílon","PDFE.Controllers.InsTab.txtSymbol_varphi":"Variante de Phi","PDFE.Controllers.InsTab.txtSymbol_varpi":"Variante de Pi","PDFE.Controllers.InsTab.txtSymbol_varrho":"Variante de Rho","PDFE.Controllers.InsTab.txtSymbol_varsigma":"Variante de Sigma","PDFE.Controllers.InsTab.txtSymbol_vartheta":"Variante de Teta","PDFE.Controllers.InsTab.txtSymbol_vdots":"Reticências verticais","PDFE.Controllers.InsTab.txtSymbol_xsi":"Xi","PDFE.Controllers.InsTab.txtSymbol_zeta":"Zeta","PDFE.Controllers.LeftMenu.leavePageText":"Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.","PDFE.Controllers.LeftMenu.newDocumentTitle":"Documento sem nome","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"Aviso","PDFE.Controllers.LeftMenu.requestEditRightsText":"Solicitando direitos de edição...","PDFE.Controllers.LeftMenu.textLoadHistory":"Carregando o histórico de versões...","PDFE.Controllers.LeftMenu.textNoTextFound":"Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.","PDFE.Controllers.LeftMenu.textSelectPath":"Digite um novo nome para salvar a cópia do arquivo","PDFE.Controllers.LeftMenu.txtCompatible":"O documento será salvo em novo formato. Isto permitirá usar todos os recursos de editor, mas pode afetar o layout do documento.
Use a opção de 'Compatibilidade' para configurações avançadas se deseja tornar o arquivo compatível com versões antigas do MS Word.","PDFE.Controllers.LeftMenu.txtUntitled":"Sem título","PDFE.Controllers.LeftMenu.warnDownloadAs":"Se você continuar salvando neste formato, todos os recursos, exceto o texto, serão perdidos.
Tem certeza de que deseja continuar?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"O documento resultante será otimizado para permitir que você edite o texto, portanto, não gráficos exatamente iguais ao original, se o arquivo original contiver muitos gráficos.","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?","PDFE.Controllers.Main.applyChangesTextText":"Carregando as alterações...","PDFE.Controllers.Main.applyChangesTitleText":"Carregando as alterações","PDFE.Controllers.Main.confirmMaxChangesSize":"O tamanho das ações excede a limitação definida para seu servidor.
Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).","PDFE.Controllers.Main.convertationTimeoutText":"Tempo limite de conversão excedido.","PDFE.Controllers.Main.criticalErrorExtText":"Pressione \"OK\" para voltar para a lista de documentos.","PDFE.Controllers.Main.criticalErrorExtTextClose":"Pressione \"OK\" para fechar o editor.","PDFE.Controllers.Main.criticalErrorTitle":"Erro","PDFE.Controllers.Main.downloadErrorText":"Erro ao baixar arquivo.","PDFE.Controllers.Main.downloadMergeText":"Baixando...","PDFE.Controllers.Main.downloadMergeTitle":"Baixando","PDFE.Controllers.Main.downloadTextText":"Baixando documento...","PDFE.Controllers.Main.downloadTitleText":"Baixando documento","PDFE.Controllers.Main.errorAccessDeny":"Você está tentando executar uma ação que você não tem direitos.
Contate o administrador do Servidor de Documentos.","PDFE.Controllers.Main.errorBadImageUrl":"URL de imagem está incorreta","PDFE.Controllers.Main.errorCannotPasteImg":"Não podemos colar esta imagem da área de transferência, mas você pode salvá-la em seu dispositivo e\ninsira-o a partir daí ou copie a imagem sem texto e cole-a no documento.","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"Conexão com servidor perdida. O documento não pode ser editado neste momento.","PDFE.Controllers.Main.errorComboSeries":"Para criar um gráfico de combinação, selecione pelo menos duas séries de dados.","PDFE.Controllers.Main.errorConnectToServer":"O documento não pode ser gravado. Verifique as configurações de conexão ou entre em contato com o administrador.
Quando você clicar no botão 'OK', você será solicitado ao baixar o documento.","PDFE.Controllers.Main.errorCopyDisabled":"Por motivos de segurança, o conteúdo deste documento não pode ser copiado.","PDFE.Controllers.Main.errorDatabaseConnection":"Erro externo.
Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.","PDFE.Controllers.Main.errorDataEncrypted":"Alteração criptografadas foram recebidas, e não podem ser decifradas.","PDFE.Controllers.Main.errorDataRange":"Intervalo de dados incorreto.","PDFE.Controllers.Main.errorDefaultMessage":"Código do erro: %1","PDFE.Controllers.Main.errorDirectUrl":"Por favor, verifique o link para o documento.
Este link deve ser o link direto para baixar o arquivo.","PDFE.Controllers.Main.errorEditingDownloadas":"Ocorreu um erro.
Use a opção 'Baixar como' para gravar a cópia de backup em seu computador.","PDFE.Controllers.Main.errorEditingSaveas":"Ocorreu um erro durante o trabalho com o documento.
Use a opção 'Salvar como ...' para salvar a cópia de backup do arquivo no disco rígido do computador.","PDFE.Controllers.Main.errorEmailClient":"Nenhum cliente de e-mail foi encontrado.","PDFE.Controllers.Main.errorFilePassProtect":"O documento é protegido por senha e não pode ser aberto.","PDFE.Controllers.Main.errorFileSizeExceed":"O tamanho do arquivo excede o limite de seu servidor.
Por favor, contate seu administrador de Servidor de Documentos para detalhes.","PDFE.Controllers.Main.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.","PDFE.Controllers.Main.errorInconsistentExt":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo não corresponde à extensão do arquivo.","PDFE.Controllers.Main.errorInconsistentExtDocx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtPdf":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtPptx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtXlsx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.","PDFE.Controllers.Main.errorKeyEncrypt":"Descrição de chave desconhecida","PDFE.Controllers.Main.errorKeyExpire":"Descritor de chave expirado","PDFE.Controllers.Main.errorLoadingFont":"As fontes não foram carregadas.
Entre em contato com o administrador do Document Server.","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"A senha fornecida não está correta.
Verifique se a tecla CAPS LOCK está desligada e use a capitalização correta.","PDFE.Controllers.Main.errorPDFFormsLocked":"A ação não pode ser executada porque causa alterações em formulários bloqueados.","PDFE.Controllers.Main.errorSaveWatermark":"Este arquivo contém uma imagem de marca d'água vinculada a outro domínio.
Para torná-la visível no PDF, atualize a imagem da marca d'água para que ela seja vinculada ao mesmo domínio do documento ou carregue-a de seu computador.","PDFE.Controllers.Main.errorServerVersion":"A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.","PDFE.Controllers.Main.errorSessionAbsolute":"A sessão de edição de documentos expirou. Atualize a página.","PDFE.Controllers.Main.errorSessionIdle":"O documento ficou sem edição por muito tempo. Por favor atualize a página.","PDFE.Controllers.Main.errorSessionToken":"A conexão com o servidor foi interrompida. Por favor atualize a página.","PDFE.Controllers.Main.errorSetPassword":"Não foi possível definir a senha.","PDFE.Controllers.Main.errorStockChart":"Ordem de linha incorreta. Para construir um gráfico de ações, coloque os dados na planilha na seguinte ordem:
preço de abertura, preço máximo, preço mínimo, preço de fechamento.","PDFE.Controllers.Main.errorTextFormWrongFormat":"O valor inserido não corresponde ao formato do campo.","PDFE.Controllers.Main.errorToken":"O token de segurança do documento não foi formado corretamente.
Entre em contato com o administrador do Document Server.","PDFE.Controllers.Main.errorTokenExpire":"O token de segurança do documento expirou.
Entre em contato com o administrador do Document Server.","PDFE.Controllers.Main.errorUpdateVersion":"A versão do arquivo foi alterada. A página será recarregada.","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"A conexão foi restaurada e a versão do arquivo foi alterada.
Antes de continuar trabalhando, você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido e, em seguida, recarregar esta página.","PDFE.Controllers.Main.errorUserDrop":"O arquivo não pode ser acessado agora.","PDFE.Controllers.Main.errorUsersExceed":"O número de usuários permitidos pelo plano de preços foi excedido","PDFE.Controllers.Main.errorViewerDisconnect":"A conexão foi perdida. Você ainda poderá visualizar o documento,
mas não poderá baixá-lo ou imprimi-lo até que a conexão seja restaurada e a página recarregada.","PDFE.Controllers.Main.leavePageText":"Você não salvou as alterações neste documento. Clique em \"Permanecer nesta página\", em seguida, clique em \"Salvar\" para salvá-las. Clique em \"Sair desta página\" para descartar todas as alterações não salvas.","PDFE.Controllers.Main.leavePageTextOnClose":"Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.","PDFE.Controllers.Main.loadFontsTextText":"Carregando dados...","PDFE.Controllers.Main.loadFontsTitleText":"Carregando dados","PDFE.Controllers.Main.loadFontTextText":"Carregando dados...","PDFE.Controllers.Main.loadFontTitleText":"Carregando dados","PDFE.Controllers.Main.loadImagesTextText":"Carregando imagens...","PDFE.Controllers.Main.loadImagesTitleText":"Carregando imagens","PDFE.Controllers.Main.loadImageTextText":"Carregando imagem...","PDFE.Controllers.Main.loadImageTitleText":"Carregando imagem","PDFE.Controllers.Main.loadingDocumentTextText":"Carregando documento...","PDFE.Controllers.Main.loadingDocumentTitleText":"Carregando documento","PDFE.Controllers.Main.notcriticalErrorTitle":"Aviso","PDFE.Controllers.Main.openErrorText":"Ocorreu um erro ao abrir o arquivo","PDFE.Controllers.Main.openTextText":"Abrindo documento...","PDFE.Controllers.Main.openTitleText":"Abrindo documento","PDFE.Controllers.Main.printTextText":"Imprimindo documento...","PDFE.Controllers.Main.printTitleText":"Imprimindo documento","PDFE.Controllers.Main.reloadButtonText":"Recarregar página","PDFE.Controllers.Main.requestEditFailedMessageText":"Alguém está editando este documento neste momento. Tente novamente mais tarde.","PDFE.Controllers.Main.requestEditFailedTitleText":"Acesso negado","PDFE.Controllers.Main.saveErrorText":"Ocorreu um erro ao salvar o arquivo","PDFE.Controllers.Main.saveErrorTextDesktop":"Este arquivo não pode ser salvo ou criado.
Possíveis razões são:
1. O arquivo é somente leitura.
2. O arquivo está sendo editado por outros usuários.
3. O disco está cheio ou corrompido.","PDFE.Controllers.Main.saveTextText":"Salvando documento...","PDFE.Controllers.Main.saveTitleText":"Salvando documento","PDFE.Controllers.Main.scriptLoadError":"A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.","PDFE.Controllers.Main.splitDividerErrorText":"O número de linhas deve ser um divisor de %1.","PDFE.Controllers.Main.splitMaxColsErrorText":"O número de colunas deve ser inferior a %1.","PDFE.Controllers.Main.splitMaxRowsErrorText":"O número de linhas deve ser inferior a %1.","PDFE.Controllers.Main.textAnonymous":"Anônimo","PDFE.Controllers.Main.textAnyone":"Alguém","PDFE.Controllers.Main.textBuyNow":"Visitar site","PDFE.Controllers.Main.textChangesSaved":"Todas as alterações foram salvas","PDFE.Controllers.Main.textClose":"Fechar","PDFE.Controllers.Main.textCloseTip":"Clique para fechar a dica","PDFE.Controllers.Main.textConnectionLost":"Tentando conectar. Verifique as configurações de conexão.","PDFE.Controllers.Main.textContactUs":"Entre em contato com o departamento de vendas","PDFE.Controllers.Main.textContinue":"Continuar","PDFE.Controllers.Main.textCustomLoader":"Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador.
Por favor, contate o Departamento de Vendas para fazer cotação.","PDFE.Controllers.Main.textDisconnect":"A conexão está perdida","PDFE.Controllers.Main.textGuest":"Visitante","PDFE.Controllers.Main.textLearnMore":"Saiba mais","PDFE.Controllers.Main.textLoadingDocument":"Carregando documento","PDFE.Controllers.Main.textLongName":"Insira um nome com menos de 128 caracteres.","PDFE.Controllers.Main.textNoLicenseTitle":"Limite de licença atingido","PDFE.Controllers.Main.textPaidFeature":"Recurso pago","PDFE.Controllers.Main.textReconnect":"A conexão é restaurada","PDFE.Controllers.Main.textRemember":"Lembre-se da minha escolha","PDFE.Controllers.Main.textRenameError":"O nome de usuário não pode estar vazio.","PDFE.Controllers.Main.textRenameLabel":"Insira um nome a ser usado para colaboração","PDFE.Controllers.Main.textShape":"Forma","PDFE.Controllers.Main.textStrict":"Modo estrito","PDFE.Controllers.Main.textText":"Тexto","PDFE.Controllers.Main.textTryQuickPrint":"Você selecionou Impressão rápida: todo o documento será impresso na última impressora selecionada ou padrão.
Deseja continuar?","PDFE.Controllers.Main.textTryUndoRedo":"As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.
Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",","PDFE.Controllers.Main.textTryUndoRedoWarn":"As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido","PDFE.Controllers.Main.textUndo":"Desfazer","PDFE.Controllers.Main.textUpdateVersion":"O documento não pode ser editado agora.
Tentando atualizar o arquivo, aguarde...","PDFE.Controllers.Main.textUpdating":"Atualizando","PDFE.Controllers.Main.tipLicenseExceeded":"O documento está aberto no modo somente leitura, pois o número máximo de conexões simultâneas permitidas pela licença foi atingido.

Tente novamente mais tarde ou entre em contato com o proprietário do documento se precisar de acesso de edição.","PDFE.Controllers.Main.tipLicenseUsersExceeded":"O documento está aberto no modo somente leitura, pois o número máximo de usuários autorizados a editar documentos por licença foi atingido.

Tente novamente mais tarde ou entre em contato com o proprietário do documento se precisar de acesso de edição.","PDFE.Controllers.Main.titleLicenseExp":"A licença expirou","PDFE.Controllers.Main.titleLicenseNotActive":"Licença inativa","PDFE.Controllers.Main.titleReadOnly":"Modo somente leitura","PDFE.Controllers.Main.titleServerVersion":"Editor atualizado","PDFE.Controllers.Main.titleUpdateVersion":"Versão alterada","PDFE.Controllers.Main.txtArt":"Seu texto aqui","PDFE.Controllers.Main.txtButton":"Botão","PDFE.Controllers.Main.txtCheckbox":"Caixa de verificação","PDFE.Controllers.Main.txtChoose":"Escolha um item","PDFE.Controllers.Main.txtClickToLoad":"Clique para carregar imagem","PDFE.Controllers.Main.txtDiagramTitle":"Título do Gráfico","PDFE.Controllers.Main.txtDocUnlockDescription":"Digite uma senha para desproteger o documento","PDFE.Controllers.Main.txtDropdown":"Suspenso","PDFE.Controllers.Main.txtEditingMode":"Definir modo de edição...","PDFE.Controllers.Main.txtEnterDate":"Insira uma data","PDFE.Controllers.Main.txtErrorLoadHistory":"O carregamento de histórico falhou","PDFE.Controllers.Main.txtGroup":"Grupo","PDFE.Controllers.Main.txtInvalidGreater":"Valor inválido para campo \"{0}\": deve ser maior ou igual a {1}.","PDFE.Controllers.Main.txtInvalidGreaterLess":"Valor inválido para campo \"{0}\": deve ser maior ou igual a {1} e menor ou igual a {2}.","PDFE.Controllers.Main.txtInvalidLess":"Valor inválido para campo \"{0}\": deve ser menor ou igual a {1}.","PDFE.Controllers.Main.txtInvalidPdfFormat":"O valor inserido não corresponde ao formato do campo \"{0}\".","PDFE.Controllers.Main.txtInvalidValue":"Valor inválido para o campo \"{0}\"","PDFE.Controllers.Main.txtListbox":"Caixa de listagem","PDFE.Controllers.Main.txtNeedSynchronize":"Você tem atualizações","PDFE.Controllers.Main.txtSaveCopyAsComplete":"A cópia do arquivo foi salva com êxito","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"Este documento está tentando se conectar a {0}.
Se você confia neste site, pressione \"OK\".","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"Este documento está tentando abrir a caixa de diálogo de arquivo, pressione \"OK\" para abrir.","PDFE.Controllers.Main.txtSeries":"Série","PDFE.Controllers.Main.txtSignature":"Assinatura","PDFE.Controllers.Main.txtText":"Тexto","PDFE.Controllers.Main.txtUnlockTitle":"Desproteger documento","PDFE.Controllers.Main.txtValidPdfFormat":"O valor do campo deve corresponder ao formato \"{0}\".","PDFE.Controllers.Main.txtXAxis":"Eixo X","PDFE.Controllers.Main.txtYAxis":"Eixo Y","PDFE.Controllers.Main.unknownErrorText":"Erro desconhecido.","PDFE.Controllers.Main.unsupportedBrowserErrorText":"Seu navegador não é suportado.","PDFE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconhecido.","PDFE.Controllers.Main.uploadDocFileCountMessage":"Nenhum documento carregado.","PDFE.Controllers.Main.uploadDocSizeMessage":"Tamanho máximo do documento excedido.","PDFE.Controllers.Main.uploadImageExtMessage":"Formato de imagem desconhecido.","PDFE.Controllers.Main.uploadImageFileCountMessage":"Sem imagens carregadas.","PDFE.Controllers.Main.uploadImageSizeMessage":"Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.","PDFE.Controllers.Main.uploadImageTextText":"Carregando imagem...","PDFE.Controllers.Main.uploadImageTitleText":"Carregando imagem","PDFE.Controllers.Main.waitText":"Por favor, aguarde...","PDFE.Controllers.Main.warnBrowserIE9":"O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior","PDFE.Controllers.Main.warnBrowserZoom":"A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.","PDFE.Controllers.Main.warnLicenseAnonymous":"Acesso negado para usuários anônimos.
Este documento será aberto apenas para visualização.","PDFE.Controllers.Main.warnLicenseBefore":"Licença inativa.
Entre em contato com seu administrador.","PDFE.Controllers.Main.warnLicenseExp":"Sua licença expirou.
Atualize sua licença e refresque a página.","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"A licença expirou.
Você não tem acesso à funcionalidade de edição de documentos.
Por favor, contate seu administrador.","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"A licença precisa ser renovada.
Você tem acesso limitado à funcionalidade de edição de documentos.
Entre em contato com o administrador para obter acesso total.","PDFE.Controllers.Main.warnNoLicense":"Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.","PDFE.Controllers.Main.warnNoLicenseUsers":"Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.","PDFE.Controllers.Main.warnProcessRightsChange":"Foi negado a você o direito de editar o arquivo.","PDFE.Controllers.Navigation.txtBeginning":"Início do documento","PDFE.Controllers.Navigation.txtGotoBeginning":"Ir para o início do documento","PDFE.Controllers.Print.textMarginsLast":"Último personalizado","PDFE.Controllers.Print.txtCustom":"Personalizar","PDFE.Controllers.Print.txtPrintRangeInvalid":"Intervalo de impressão inválido","PDFE.Controllers.RedactTab.applyButtonText":"Aplicar","PDFE.Controllers.RedactTab.doNotApplyButtonText":"Não se aplica","PDFE.Controllers.RedactTab.textApplyRedact":"As informações suprimidas serão removidas permanentemente deste documento. Após salvá-las, não será mais possível recuperá-las.","PDFE.Controllers.RedactTab.textEnterPageRange":"Insira o intervalo de páginas para redação","PDFE.Controllers.RedactTab.textEnterRangeDescription":"por exemplo 1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"Redigir páginas","PDFE.Controllers.RedactTab.textUnappliedRedactions":"Este documento contém marcas de redação que ainda não foram aplicadas.

Até que você selecione “Aplicar Redações”, essas marcas podem ser removidas e as informações podem ser recuperadas","PDFE.Controllers.RedactTab.tipApplyRedaction":"Aplique e salve todas as redações. Redações não salvas ainda podem ser desfeitas.","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"Aplicar redações","PDFE.Controllers.RedactTab.tipMarkForRedaction":"Use essas ferramentas para marcar, pesquisar e redigir conteúdo confidencial em seu PDF","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"Marcar para redações","PDFE.Controllers.RedactTab.txtInvalidFormat":"Formato inválido. Use um único número ou intervalo com hífen, por exemplo, 2 ou 2-6.","PDFE.Controllers.RedactTab.txtInvalidRange":"As páginas devem ter entre 1 e {0}","PDFE.Controllers.RedactTab.txtReversedRange":"A página inicial deve ser menor ou igual à página final","PDFE.Controllers.Search.notcriticalErrorTitle":"Aviso","PDFE.Controllers.Search.textNoTextFound":"Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.","PDFE.Controllers.Search.textReplaceSkipped":"A substituição foi realizada. {0} ocorrências foram ignoradas.","PDFE.Controllers.Search.textReplaceSuccess":"A pesquisa foi feita. {0} ocorrências foram substituídas","PDFE.Controllers.Search.warnReplaceString":"{0} não é um caractere especial válido para a caixa Substituir Por.","PDFE.Controllers.Statusbar.textDisconnect":"A conexão foi perdida
Tentando conectar. Verifique as configurações de conexão.","PDFE.Controllers.Statusbar.zoomText":"Zoom {0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"A fonte que você vai salvar não está disponível no dispositivo atual.
O estilo do texto será exibido usando uma das fontes do dispositivo, a fonte salva será usada quando estiver disponível.
Deseja continuar?","PDFE.Controllers.Toolbar.errorAccessDeny":"Você está tentando executar uma ação que você não tem direitos.
Contate o administrador do Servidor de Documentos.","PDFE.Controllers.Toolbar.helpAnnotRect":"Descubra novas ferramentas de anotação: Retângulo, Círculo, Seta e Linhas Conectadas.","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"Novas anotações","PDFE.Controllers.Toolbar.helpPdfCharts":"Insira e edite gráficos e SmartArt diretamente em seus arquivos PDF.","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"Gráficos e SmartArt em PDF","PDFE.Controllers.Toolbar.helpRedactTab":"Proteja informações confidenciais com o recurso Redact, que permite remover conteúdo confidencial com segurança.","PDFE.Controllers.Toolbar.helpRedactTabHeader":"Redigir em PDF","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"Aviso","PDFE.Controllers.Toolbar.textFontSizeErr":"O valor inserido está incorreto.
Insira um valor numérico entre 1 e 300","PDFE.Controllers.Toolbar.textGotIt":"Entendi","PDFE.Controllers.Toolbar.textRequired":"Preencha todos os campos obrigatórios para enviar o formulário.","PDFE.Controllers.Toolbar.textSubmited":"Formulário enviado com sucesso
Clique para fechar a dica.","PDFE.Controllers.Toolbar.textTabForms":"Formulários","PDFE.Controllers.Toolbar.textWarning":"Aviso","PDFE.Controllers.Toolbar.txtDownload":"Baixar","PDFE.Controllers.Toolbar.txtNeedCommentMode":"Para salvar as alterações no arquivo, mude para o modo Comentários. Ou você pode baixar uma cópia do arquivo modificado.","PDFE.Controllers.Toolbar.txtNeedDownload":"No momento, o visualizador de PDF só pode salvar novas alterações em cópias de arquivos separadas. Ele não oferece suporte à coedição e outros usuários não verão suas alterações, a menos que você compartilhe uma nova versão do arquivo.","PDFE.Controllers.Toolbar.txtSaveCopy":"Salvar cópia","PDFE.Controllers.Toolbar.txtUntitled":"Sem título","PDFE.Controllers.Viewport.textFitPage":"Ajustar a página","PDFE.Controllers.Viewport.textFitWidth":"Ajustar à Largura","PDFE.Controllers.Viewport.txtDarkMode":"Modo escuro","PDFE.Views.ChartSettings.text3dDepth":"Profundidade (% da base)","PDFE.Views.ChartSettings.text3dHeight":"Altura (% da base)","PDFE.Views.ChartSettings.text3dRotation":"Rotação 3D","PDFE.Views.ChartSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.ChartSettings.textAutoscale":"Autoescala","PDFE.Views.ChartSettings.textChartType":"Alterar tipo de gráfico","PDFE.Views.ChartSettings.textData":"Dados","PDFE.Views.ChartSettings.textDefault":"Rotação padrão","PDFE.Views.ChartSettings.textDown":"Abaixo","PDFE.Views.ChartSettings.textEditData":"Editar dados","PDFE.Views.ChartSettings.textEditLinks":"Editar links","PDFE.Views.ChartSettings.textHeight":"Altura","PDFE.Views.ChartSettings.textKeepRatio":"Proporções constantes","PDFE.Views.ChartSettings.textLeft":"Esquerda","PDFE.Views.ChartSettings.textLinkedData":"Dados vinculados","PDFE.Views.ChartSettings.textNarrow":"Campo de visão estreito","PDFE.Views.ChartSettings.textPerspective":"Perspectiva","PDFE.Views.ChartSettings.textRight":"Direita","PDFE.Views.ChartSettings.textRightAngle":"Eixos de ângulo reto","PDFE.Views.ChartSettings.textSelectData":"Selecionar dados","PDFE.Views.ChartSettings.textSize":"Tamanho","PDFE.Views.ChartSettings.textStyle":"Estilo","PDFE.Views.ChartSettings.textUp":"Para cima","PDFE.Views.ChartSettings.textUpdateData":"Atualizar dados","PDFE.Views.ChartSettings.textWiden":"Ampliar o campo de visão","PDFE.Views.ChartSettings.textWidth":"Largura","PDFE.Views.ChartSettings.textX":"Rotação X","PDFE.Views.ChartSettings.textY":"Rotação Y","PDFE.Views.ChartSettingsAdvanced.textAlt":"Texto Alternativo","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"Descrição","PDFE.Views.ChartSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações do objeto visual, que será lida para pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações estão na imagem, forma, gráfico ou tabela.","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"Titulo","PDFE.Views.ChartSettingsAdvanced.textAuto":"Automático","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"Eixos cruzam","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"Posição de eixos","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"Titulo","PDFE.Views.ChartSettingsAdvanced.textBase":"Base","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"Entre marcas de escala","PDFE.Views.ChartSettingsAdvanced.textBillions":"Bilhões","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"Nome da categoria","PDFE.Views.ChartSettingsAdvanced.textCenter":"Centro","PDFE.Views.ChartSettingsAdvanced.textChartName":"Nome do gráfico","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"Título do Gráfico","PDFE.Views.ChartSettingsAdvanced.textCross":"Intersecção","PDFE.Views.ChartSettingsAdvanced.textCustom":"Personalizado","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"Rótulos de dados","PDFE.Views.ChartSettingsAdvanced.textFit":"Ajustar largura","PDFE.Views.ChartSettingsAdvanced.textFixed":"Fixo","PDFE.Views.ChartSettingsAdvanced.textFormat":"Formato da etiqueta","PDFE.Views.ChartSettingsAdvanced.textFrom":"de","PDFE.Views.ChartSettingsAdvanced.textGeneral":"Geral","PDFE.Views.ChartSettingsAdvanced.textGridLines":"Linhas de grade","PDFE.Views.ChartSettingsAdvanced.textHeight":"Altura","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"Ocultar eixo","PDFE.Views.ChartSettingsAdvanced.textHigh":"Alto","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"Eixo horizontal","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"Eixo Horizontal Secundário","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100.000.000 ","PDFE.Views.ChartSettingsAdvanced.textHundreds":"Centenas","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100.000 ","PDFE.Views.ChartSettingsAdvanced.textIn":"Em","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"Fundo interno","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"Parte superior interna","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"Proporções constantes","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"Distância da etiqueta de eixos","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"Intervalo entre Etiquetas","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"Opções de etiqueta","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"Posição da etiqueta","PDFE.Views.ChartSettingsAdvanced.textLayout":"Layout","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"Sobreposição esquerda","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"Inferior","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"Esquerda","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"Legenda","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"Direita","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"Parte superior","PDFE.Views.ChartSettingsAdvanced.textLines":"Linhas","PDFE.Views.ChartSettingsAdvanced.textLogScale":"Escala logarítmica","PDFE.Views.ChartSettingsAdvanced.textLow":"Baixo","PDFE.Views.ChartSettingsAdvanced.textMajor":"Principal","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"Maior e Menor","PDFE.Views.ChartSettingsAdvanced.textMajorType":"Tipo principal","PDFE.Views.ChartSettingsAdvanced.textManual":"Manual","PDFE.Views.ChartSettingsAdvanced.textMarkers":"Marcadores","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"Intervalo entre Marcas","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"Valor máximo","PDFE.Views.ChartSettingsAdvanced.textMillions":"Milhões","PDFE.Views.ChartSettingsAdvanced.textMinor":"Menor","PDFE.Views.ChartSettingsAdvanced.textMinorType":"Tipo menor","PDFE.Views.ChartSettingsAdvanced.textMinValue":"Valor mínimo","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"Próximo ao eixo","PDFE.Views.ChartSettingsAdvanced.textNone":"nenhum","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"Sem sobreposição","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"Em Marcas de Seleção","PDFE.Views.ChartSettingsAdvanced.textOut":"Fora","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"Parte superior externa","PDFE.Views.ChartSettingsAdvanced.textOverlay":"Sobreposição","PDFE.Views.ChartSettingsAdvanced.textPlacement":"Posicionamento","PDFE.Views.ChartSettingsAdvanced.textPosition":"Posição","PDFE.Views.ChartSettingsAdvanced.textReverse":"Valores na ordem reversa","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"Sobreposição direita","PDFE.Views.ChartSettingsAdvanced.textRotated":"Rotacionado","PDFE.Views.ChartSettingsAdvanced.textSeparator":"Separador de rótulos de dados","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"Nome da série","PDFE.Views.ChartSettingsAdvanced.textSize":"Tamanho","PDFE.Views.ChartSettingsAdvanced.textSmooth":"Suave","PDFE.Views.ChartSettingsAdvanced.textStraight":"Direto","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10.000.000 ","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10.000 ","PDFE.Views.ChartSettingsAdvanced.textThousands":"Milhares","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"Opções de marcação","PDFE.Views.ChartSettingsAdvanced.textTitle":"Gráfico - Configurações avançadas","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"Canto superior esquerdo","PDFE.Views.ChartSettingsAdvanced.textTrillions":"Trilhões","PDFE.Views.ChartSettingsAdvanced.textUnits":"Exibir unidades","PDFE.Views.ChartSettingsAdvanced.textValue":"Valor","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"Eixo vertical","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"Eixo Vertical Secundário","PDFE.Views.ChartSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ChartSettingsAdvanced.textWidth":"Largura","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"Sobreposição esquerda","PDFE.Views.DocumentHolder.aboveText":"Acima","PDFE.Views.DocumentHolder.addCommentText":"Adicionar comentário","PDFE.Views.DocumentHolder.advancedChartText":"Configurações avançadas de gráfico","PDFE.Views.DocumentHolder.advancedEquationText":"Definições de equação","PDFE.Views.DocumentHolder.advancedImageText":"Configurações avançadas de imagem","PDFE.Views.DocumentHolder.advancedParagraphText":"Configurações avançadas de parágrafo","PDFE.Views.DocumentHolder.advancedShapeText":"Configurações avançadas de forma","PDFE.Views.DocumentHolder.advancedTableText":"Configurações avançadas de tabela","PDFE.Views.DocumentHolder.AlignBottom":"Inferior","PDFE.Views.DocumentHolder.AlignCenter":"Centro","PDFE.Views.DocumentHolder.AlignJust":"Justificar","PDFE.Views.DocumentHolder.AlignLeft":"Esquerda","PDFE.Views.DocumentHolder.alignmentText":"Alinhamento","PDFE.Views.DocumentHolder.AlignMiddle":"Meio","PDFE.Views.DocumentHolder.AlignRight":"Direita","PDFE.Views.DocumentHolder.AlignText":"Alinhamento de texto","PDFE.Views.DocumentHolder.AlignTop":"Parte superior","PDFE.Views.DocumentHolder.allLinearText":"Todos - Lineares","PDFE.Views.DocumentHolder.allProfText":"Tudo - Profissional","PDFE.Views.DocumentHolder.belowText":"Abaixo","PDFE.Views.DocumentHolder.btnChart":"Adicionar, remover ou alterar elementos do gráfico, como título, legenda, linhas de grade e rótulos de dados","PDFE.Views.DocumentHolder.cellAlignText":"Alinhamento vertical da célula","PDFE.Views.DocumentHolder.cellText":"Célula","PDFE.Views.DocumentHolder.centerText":"Centro","PDFE.Views.DocumentHolder.columnText":"Coluna","PDFE.Views.DocumentHolder.confirmAddFontName":"A fonte que você vai salvar não está disponível no dispositivo atual.
O estilo do texto será exibido usando uma das fontes do dispositivo, a fonte salva será usada quando estiver disponível.
Deseja continuar?","PDFE.Views.DocumentHolder.currLinearText":"Atual - Linear","PDFE.Views.DocumentHolder.currProfText":"Atual - Profissional","PDFE.Views.DocumentHolder.deleteColumnText":"Excluir coluna","PDFE.Views.DocumentHolder.deleteRowText":"Excluir linha","PDFE.Views.DocumentHolder.deleteTableText":"Excluir tabela","PDFE.Views.DocumentHolder.deleteText":"Excluir","PDFE.Views.DocumentHolder.DepthAxis":"Eixo Z","PDFE.Views.DocumentHolder.direct270Text":"Girar o texto para cima","PDFE.Views.DocumentHolder.direct90Text":"Girar o texto para baixo","PDFE.Views.DocumentHolder.directHText":"Horizontal","PDFE.Views.DocumentHolder.directionText":"Direção do texto","PDFE.Views.DocumentHolder.editChartText":"Editar dados","PDFE.Views.DocumentHolder.editHyperlinkText":"Editar Link","PDFE.Views.DocumentHolder.guestText":"Convidado","PDFE.Views.DocumentHolder.hideEqToolbar":"Ocultar barra de ferramentas de equação","PDFE.Views.DocumentHolder.hyperlinkText":"Link","PDFE.Views.DocumentHolder.insertColumnLeftText":"Coluna à esquerda","PDFE.Views.DocumentHolder.insertColumnRightText":"Coluna à direita","PDFE.Views.DocumentHolder.insertColumnText":"Inserir coluna","PDFE.Views.DocumentHolder.insertRowAboveText":"Linha acima","PDFE.Views.DocumentHolder.insertRowBelowText":"Linha abaixo","PDFE.Views.DocumentHolder.insertRowText":"Inserir linha","PDFE.Views.DocumentHolder.insertText":"Inserir","PDFE.Views.DocumentHolder.latexText":"LaTex","PDFE.Views.DocumentHolder.leftText":"Esquerda","PDFE.Views.DocumentHolder.mergeCellsText":"Mesclar células","PDFE.Views.DocumentHolder.mniImageFromFile":"Imagem do arquivo","PDFE.Views.DocumentHolder.mniImageFromStorage":"Imagem de armazenamento","PDFE.Views.DocumentHolder.mniImageFromUrl":"Imagem da URL","PDFE.Views.DocumentHolder.originalSizeText":"Tamanho atual","PDFE.Views.DocumentHolder.removeCommentText":"Remover","PDFE.Views.DocumentHolder.removeHyperlinkText":"Remover link","PDFE.Views.DocumentHolder.rightText":"Direita","PDFE.Views.DocumentHolder.rowText":"Linha","PDFE.Views.DocumentHolder.selectText":"Selecione","PDFE.Views.DocumentHolder.showEqToolbar":"Mostrar barra de ferramentas de equação","PDFE.Views.DocumentHolder.splitCellsText":"Dividir célula...","PDFE.Views.DocumentHolder.splitCellTitleText":"Dividir célula","PDFE.Views.DocumentHolder.tableText":"Tabela","PDFE.Views.DocumentHolder.textArrangeBack":"Enviar para plano de fundo","PDFE.Views.DocumentHolder.textArrangeBackward":"Enviar para trás","PDFE.Views.DocumentHolder.textArrangeForward":"Trazer para frente","PDFE.Views.DocumentHolder.textArrangeFront":"Trazer para primeiro plano","PDFE.Views.DocumentHolder.textAxes":"Eixos","PDFE.Views.DocumentHolder.textAxisTitles":"Títulos do Eixo","PDFE.Views.DocumentHolder.textBottom":"Inferior","PDFE.Views.DocumentHolder.textCenter":"Centro","PDFE.Views.DocumentHolder.textChartTitle":"Título do Gráfico","PDFE.Views.DocumentHolder.textClearField":"Limpar campo","PDFE.Views.DocumentHolder.textCm":"cm","PDFE.Views.DocumentHolder.textColor":"Cor","PDFE.Views.DocumentHolder.textCopy":"Copiar","PDFE.Views.DocumentHolder.textCrop":"Cortar","PDFE.Views.DocumentHolder.textCropFill":"Preencher","PDFE.Views.DocumentHolder.textCropFit":"Ajustar","PDFE.Views.DocumentHolder.textCustom":"Personalizado","PDFE.Views.DocumentHolder.textCut":"Cortar","PDFE.Views.DocumentHolder.textDataLabels":"Rótulos de dados","PDFE.Views.DocumentHolder.textDistributeCols":"Distribuir colunas","PDFE.Views.DocumentHolder.textDistributeRows":"Distribuir linhas","PDFE.Views.DocumentHolder.textEditPoints":"Editar pontos","PDFE.Views.DocumentHolder.textErrorBars":"Barras de erro","PDFE.Views.DocumentHolder.textExponential":"Exponencial","PDFE.Views.DocumentHolder.textFit":"Ajustar largura","PDFE.Views.DocumentHolder.textFlipH":"Virar horizontalmente","PDFE.Views.DocumentHolder.textFlipV":"Virar verticalmente","PDFE.Views.DocumentHolder.textFontSizeErr":"O valor inserido está incorreto.
Insira um valor numérico entre 1 e 300","PDFE.Views.DocumentHolder.textFromFile":"Do Arquivo","PDFE.Views.DocumentHolder.textFromStorage":"Do armazenamento","PDFE.Views.DocumentHolder.textFromUrl":"De URL","PDFE.Views.DocumentHolder.textGridLines":"Linhas de grade","PDFE.Views.DocumentHolder.textHorAxis":"Eixo horizontal","PDFE.Views.DocumentHolder.textHorAxisSec":"Eixo Horizontal Secundário","PDFE.Views.DocumentHolder.textHorizontalMajor":"Horizontal Maior","PDFE.Views.DocumentHolder.textHorizontalMinor":"Menor horizontal","PDFE.Views.DocumentHolder.textInnerBottom":"Fundo interno","PDFE.Views.DocumentHolder.textInnerTop":"Parte superior interna","PDFE.Views.DocumentHolder.textLeft":"Esquerda","PDFE.Views.DocumentHolder.textLeftData":"Esquerda","PDFE.Views.DocumentHolder.textLeftOverlay":"Sobreposição esquerda","PDFE.Views.DocumentHolder.textLegendPos":"Legenda","PDFE.Views.DocumentHolder.textLinear":"Linear","PDFE.Views.DocumentHolder.textLinearForecast":"Previsão Linear","PDFE.Views.DocumentHolder.textLines":"Linhas","PDFE.Views.DocumentHolder.textMovingAverage":"Média Móvel (2)","PDFE.Views.DocumentHolder.textNone":"nenhum","PDFE.Views.DocumentHolder.textNoOverlay":"Sem sobreposição","PDFE.Views.DocumentHolder.textOuterTop":"Parte superior externa","PDFE.Views.DocumentHolder.textOverlay":"Sobreposição","PDFE.Views.DocumentHolder.textPaste":"Colar","PDFE.Views.DocumentHolder.textRecognize":"Reconhecer","PDFE.Views.DocumentHolder.textRedact":"Redigir texto","PDFE.Views.DocumentHolder.textRedo":"Refazer","PDFE.Views.DocumentHolder.textReplace":"Substituir imagem","PDFE.Views.DocumentHolder.textResetCrop":"Redefinir colheita","PDFE.Views.DocumentHolder.textRight":"Direita","PDFE.Views.DocumentHolder.textRightOverlay":"Sobreposição direita","PDFE.Views.DocumentHolder.textRotate":"Girar","PDFE.Views.DocumentHolder.textRotate270":"Girar 90º no sentido anti-horário.","PDFE.Views.DocumentHolder.textRotate90":"Girar 90º no sentido horário","PDFE.Views.DocumentHolder.textSaveAsPicture":"Salvar como imagem","PDFE.Views.DocumentHolder.textShapeAlignBottom":"Alinhar à parte inferior","PDFE.Views.DocumentHolder.textShapeAlignCenter":"Alinhar ao centro","PDFE.Views.DocumentHolder.textShapeAlignLeft":"Alinhar à esquerda","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"Alinhar ao centro","PDFE.Views.DocumentHolder.textShapeAlignRight":"Alinhar à direita","PDFE.Views.DocumentHolder.textShapeAlignTop":"Alinhar à parte superior","PDFE.Views.DocumentHolder.textShapesMerge":"Mesclar formas","PDFE.Views.DocumentHolder.textShowLegendKeys":"Mostrar Chaves de Legenda","PDFE.Views.DocumentHolder.textShowUpDown":"Barras de exibição para cima/baixo","PDFE.Views.DocumentHolder.textStandardDeviation":"Desvio Padrão","PDFE.Views.DocumentHolder.textStandardError":"Erro Padrão","PDFE.Views.DocumentHolder.textTop":"Parte superior","PDFE.Views.DocumentHolder.textTrendline":"Linha de tendência","PDFE.Views.DocumentHolder.textUndo":"Desfazer","PDFE.Views.DocumentHolder.textUpDownBars":"Barras para cima/para baixo","PDFE.Views.DocumentHolder.textVertAxis":"Eixo vertical","PDFE.Views.DocumentHolder.textVertAxisSec":"Eixo Vertical Secundário","PDFE.Views.DocumentHolder.textVerticalMajor":"Vertical Maior","PDFE.Views.DocumentHolder.textVerticalMinor":"Vertical Menor","PDFE.Views.DocumentHolder.tipIsLocked":"Este elemento está sendo atualmente editado por outro usuário.","PDFE.Views.DocumentHolder.tipRecognize":"Reconhecer texto","PDFE.Views.DocumentHolder.tipRedact":"Redigir texto","PDFE.Views.DocumentHolder.txtAddBottom":"Adicionar borda inferior","PDFE.Views.DocumentHolder.txtAddFractionBar":"Adicionar barra de fração","PDFE.Views.DocumentHolder.txtAddHor":"Adicionar linha horizontal","PDFE.Views.DocumentHolder.txtAddLB":"Adicionar linha inferior esquerda","PDFE.Views.DocumentHolder.txtAddLeft":"Adicionar borda esquerda","PDFE.Views.DocumentHolder.txtAddLT":"Adicionar linha superior esquerda","PDFE.Views.DocumentHolder.txtAddRight":"Adicionar borda direita","PDFE.Views.DocumentHolder.txtAddTop":"Adicionar borda superior","PDFE.Views.DocumentHolder.txtAddVer":"Adicionar linha vertical","PDFE.Views.DocumentHolder.txtAlign":"Alinhar","PDFE.Views.DocumentHolder.txtAlignToChar":"Alinhar ao caractere","PDFE.Views.DocumentHolder.txtArrange":"Organizar","PDFE.Views.DocumentHolder.txtBackground":"Plano de fundo","PDFE.Views.DocumentHolder.txtBorderProps":"Propriedades de borda","PDFE.Views.DocumentHolder.txtBottom":"Inferior","PDFE.Views.DocumentHolder.txtColumnAlign":"Alinhamento de colunas","PDFE.Views.DocumentHolder.txtCopyPage":"Copiar página","PDFE.Views.DocumentHolder.txtCutPage":"Cortar página","PDFE.Views.DocumentHolder.txtDecreaseArg":"Diminuir tamanho de argumento","PDFE.Views.DocumentHolder.txtDeleteArg":"Excluir argumento","PDFE.Views.DocumentHolder.txtDeleteBreak":"Eliminar quebra manual","PDFE.Views.DocumentHolder.txtDeleteChars":"Excluir caracteres anexos ","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Excluir separadores e caracteres anexos","PDFE.Views.DocumentHolder.txtDeleteEq":"Remover equação","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"Excluir caractere","PDFE.Views.DocumentHolder.txtDeletePage":"Excluir página","PDFE.Views.DocumentHolder.txtDeleteRadical":"Eliminar radical","PDFE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","PDFE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","PDFE.Views.DocumentHolder.txtEmpty":"(Vazio)","PDFE.Views.DocumentHolder.txtFractionLinear":"Alterar para fração linear","PDFE.Views.DocumentHolder.txtFractionSkewed":"Alterar para fração inclinada","PDFE.Views.DocumentHolder.txtFractionStacked":"Alterar para fração empilhada","PDFE.Views.DocumentHolder.txtGroup":"Grupo","PDFE.Views.DocumentHolder.txtGroupCharOver":"Caractere sobre texto","PDFE.Views.DocumentHolder.txtGroupCharUnder":"Caractere sob texto","PDFE.Views.DocumentHolder.txtHideBottom":"Ocultar borda inferior","PDFE.Views.DocumentHolder.txtHideBottomLimit":"Ocultar limite inferior","PDFE.Views.DocumentHolder.txtHideCloseBracket":"Ocultar colchete de fechamento","PDFE.Views.DocumentHolder.txtHideDegree":"Ocultar grau","PDFE.Views.DocumentHolder.txtHideHor":"Ocultar linha horizontal","PDFE.Views.DocumentHolder.txtHideLB":"Ocultar linha inferior esquerda","PDFE.Views.DocumentHolder.txtHideLeft":"Ocultar borda esquerda","PDFE.Views.DocumentHolder.txtHideLT":"Ocultar linha superior esquerda","PDFE.Views.DocumentHolder.txtHideOpenBracket":"Ocultar colchete de abertura","PDFE.Views.DocumentHolder.txtHidePlaceholder":"Ocultar espaço reservado","PDFE.Views.DocumentHolder.txtHideRight":"Ocultar borda direita","PDFE.Views.DocumentHolder.txtHideTop":"Ocultar borda superior","PDFE.Views.DocumentHolder.txtHideTopLimit":"Ocultar limite superior","PDFE.Views.DocumentHolder.txtHideVer":"Ocultar linha vertical","PDFE.Views.DocumentHolder.txtIncreaseArg":"Aumentar o tamanho do argumento","PDFE.Views.DocumentHolder.txtInsertArgAfter":"Inserir argumento após","PDFE.Views.DocumentHolder.txtInsertArgBefore":"Inserir argumento antes","PDFE.Views.DocumentHolder.txtInsertBreak":"Inserir quebra manual","PDFE.Views.DocumentHolder.txtInsertEqAfter":"Inserir equação a seguir","PDFE.Views.DocumentHolder.txtInsertEqBefore":"Inserir equação à frente","PDFE.Views.DocumentHolder.txtLimitChange":"Alterar localização de limites","PDFE.Views.DocumentHolder.txtLimitOver":"Limite acima do texto","PDFE.Views.DocumentHolder.txtLimitUnder":"Limite abaixo do texto","PDFE.Views.DocumentHolder.txtMatchBrackets":"Combinar parênteses com a altura do argumento","PDFE.Views.DocumentHolder.txtMatrixAlign":"Alinhamento de matriz","PDFE.Views.DocumentHolder.txtNewPageAfter":"Insira uma página em branco depois","PDFE.Views.DocumentHolder.txtNewPageBefore":"Insira uma página em branco antes","PDFE.Views.DocumentHolder.txtOpacity":"Opacidade","PDFE.Views.DocumentHolder.txtOverbar":"Barra sobre texto","PDFE.Views.DocumentHolder.txtPastePage":"Colar página","PDFE.Views.DocumentHolder.txtPastePageAfter":"Colar página depois","PDFE.Views.DocumentHolder.txtPastePageBefore":"Colar página antes","PDFE.Views.DocumentHolder.txtPercentage":"Porcentagem","PDFE.Views.DocumentHolder.txtPressLink":"Pressione {0} e clique no link","PDFE.Views.DocumentHolder.txtPrintSelection":"Imprimir seleção","PDFE.Views.DocumentHolder.txtRemFractionBar":"Remover barra de fração","PDFE.Views.DocumentHolder.txtRemLimit":"Remover limite","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"Remover caractere de acento","PDFE.Views.DocumentHolder.txtRemoveBar":"Remover barra","PDFE.Views.DocumentHolder.txtRemScripts":"Remover scripts","PDFE.Views.DocumentHolder.txtRemSubscript":"Remover subscrito","PDFE.Views.DocumentHolder.txtRemSuperscript":"Remover sobrescrito","PDFE.Views.DocumentHolder.txtRotateLeft":"Girar à esquerda","PDFE.Views.DocumentHolder.txtRotateRight":"Girar à direita","PDFE.Views.DocumentHolder.txtScriptsAfter":"Scripts após o texto","PDFE.Views.DocumentHolder.txtScriptsBefore":"Scripts antes do texto","PDFE.Views.DocumentHolder.txtSelectAll":"Selecionar todos","PDFE.Views.DocumentHolder.txtShowBottomLimit":"Mostrar limite inferior","PDFE.Views.DocumentHolder.txtShowCloseBracket":"Mostrar colchetes de fechamento","PDFE.Views.DocumentHolder.txtShowDegree":"Exibir grau","PDFE.Views.DocumentHolder.txtShowOpenBracket":"Exibir colchetes de abertura","PDFE.Views.DocumentHolder.txtShowPlaceholder":"Mostrar espaço reservado","PDFE.Views.DocumentHolder.txtShowTopLimit":"Exibir limite superior","PDFE.Views.DocumentHolder.txtStretchBrackets":"Esticar colchetes","PDFE.Views.DocumentHolder.txtTop":"Superior","PDFE.Views.DocumentHolder.txtUnderbar":"Barra abaixo de texto","PDFE.Views.DocumentHolder.txtUngroup":"Desagrupar","PDFE.Views.DocumentHolder.txtWarnUrl":"Clicar neste link pode ser prejudicial ao seu dispositivo e aos seus dados. Para proteger seu computador, clique apenas em links de fontes confiáveis. Este local pode ser inseguro:

{0}

Tem certeza de que deseja continuar?","PDFE.Views.DocumentHolder.unicodeText":"Unicode","PDFE.Views.DocumentHolder.vertAlignText":"Alinhamento vertical","PDFE.Views.FileMenu.ariaFileMenu":"Menu Arquivo","PDFE.Views.FileMenu.btnBackCaption":"Local do arquivo aberto","PDFE.Views.FileMenu.btnCloseEditor":"Fechar Arquivo","PDFE.Views.FileMenu.btnCloseMenuCaption":"Voltar","PDFE.Views.FileMenu.btnCreateNewCaption":"Criar novo","PDFE.Views.FileMenu.btnDownloadCaption":"Baixar como","PDFE.Views.FileMenu.btnExitCaption":"Fechar","PDFE.Views.FileMenu.btnFileOpenCaption":"Abrir","PDFE.Views.FileMenu.btnHelpCaption":"Ajuda","PDFE.Views.FileMenu.btnHistoryCaption":"Histórico de versão","PDFE.Views.FileMenu.btnInfoCaption":"Informações","PDFE.Views.FileMenu.btnPrintCaption":"Imprimir","PDFE.Views.FileMenu.btnProtectCaption":"Proteger","PDFE.Views.FileMenu.btnRecentFilesCaption":"Abrir recente","PDFE.Views.FileMenu.btnRenameCaption":"Renomear","PDFE.Views.FileMenu.btnReturnCaption":"Voltar para documento","PDFE.Views.FileMenu.btnRightsCaption":"Direitos de Acesso.","PDFE.Views.FileMenu.btnSaveAsCaption":"Salvar como","PDFE.Views.FileMenu.btnSaveCaption":"Salvar","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"Salvar cópia como","PDFE.Views.FileMenu.btnSettingsCaption":"Configurações avançadas","PDFE.Views.FileMenu.btnSuggestCaption":"Sugira um recurso","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"Mudar para o celular","PDFE.Views.FileMenu.btnToEditCaption":"Editar documento","PDFE.Views.FileMenu.textDownload":"Baixar","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"Documento em branco","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Criar novo","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Adicionar Autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Adicionar Texto","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicação","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Alterar direitos de acesso","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentário","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comum","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Criado","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Informações do Documento","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Visualização rápida da Web","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Carregando...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última Modificação Por","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificação","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"Não","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Proprietário","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"Páginas","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Tamanho da página","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Parágrafos","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"Produtor de PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF marcado","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"Versão PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Localização","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"Pessoas que têm direitos","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Caracteres com espaços","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Estatísticas","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Assunto","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Caracteres","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Carregado","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"Palavras","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"Sim","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Direitos de Acesso.","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Alterar direitos de acesso","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"Pessoas que têm direitos","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Com senha","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger o Documento","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"Com assinatura","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Assinaturas válidas foram adicionadas ao documento.
O documento está protegido contra edição.","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garanta a integridade do documento adicionando uma assinatura digital invisível","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar documento","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"Editar excluirá as assinaturas do documento.
Deseja continuar?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Este documento foi protegido com senha.","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Criptografar este documento com uma senha","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"O documento deve ser assinado.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Assinaturas válidas foram adicionadas ao documento. O documento está protegido contra edição.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algumas das assinaturas digitais no documento estão inválidas ou não puderam ser verificadas. O documento está protegido para edição.","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"Visualizar assinaturas","PDFE.Views.FileMenuPanels.Settings.okButtonText":"Aplicar","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modo de coedição","PDFE.Views.FileMenuPanels.Settings.strFast":"Rápido","PDFE.Views.FileMenuPanels.Settings.strFontRender":"Dicas de fonte","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Atalhos de teclado","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"Interface RTL","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"Alterações de colaboração em tempo real","PDFE.Views.FileMenuPanels.Settings.strShowComments":"Mostrar comentários em texto","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Mostrar alterações de outros usuários","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Mostrar comentários resolvidos","PDFE.Views.FileMenuPanels.Settings.strStrict":"Estrito","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"Estilo da guia","PDFE.Views.FileMenuPanels.Settings.strTheme":"Tema de interface","PDFE.Views.FileMenuPanels.Settings.strUnit":"Unidade de medida","PDFE.Views.FileMenuPanels.Settings.strZoom":"Valor de zoom padrão","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"Recuperação automática","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"Salvamento automático","PDFE.Views.FileMenuPanels.Settings.textDisabled":"Desabilitado","PDFE.Views.FileMenuPanels.Settings.textFill":"Preencher","PDFE.Views.FileMenuPanels.Settings.textForceSave":"Salvar para servidor","PDFE.Views.FileMenuPanels.Settings.textLine":"Linha","PDFE.Views.FileMenuPanels.Settings.textMinute":"A cada minuto","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Configurações avançadas","PDFE.Views.FileMenuPanels.Settings.txtAll":"Visualizar tudo","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"Aparência","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"Modo de cache padrão","PDFE.Views.FileMenuPanels.Settings.txtCm":"Centímetro","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"Colaboração","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"Customizar","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Personalize o acesso rápido","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"Ativar modo escuro de documento","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"Editando e salvando","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"Co-edição em tempo real. Todas as alterações são salvas automaticamente","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"Ajustar a página","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"Ajustar à Largura","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Hieróglifos","PDFE.Views.FileMenuPanels.Settings.txtInch":"Polegada","PDFE.Views.FileMenuPanels.Settings.txtLast":"Visualizar último","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"Usado por último","PDFE.Views.FileMenuPanels.Settings.txtMac":"como SO X","PDFE.Views.FileMenuPanels.Settings.txtNative":"Nativo","PDFE.Views.FileMenuPanels.Settings.txtNone":"Visualizar nenhum","PDFE.Views.FileMenuPanels.Settings.txtPt":"Ponto","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"Mostrar o botão Impressão rápida no cabeçalho do editor","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"O documento será impresso na última impressora selecionada ou padrão","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"Habilitar o suporte ao leitor de tela","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"Use o botão \"Salvar\" para sincronizar as alterações que você e outras pessoas fazem","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"Usar a cor da barra de ferramentas como plano de fundo das guias","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"Use a tecla Alt para navegar na interface do usuário usando o teclado","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"Use a mini barra de ferramentas ao selecionar texto","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Use a tecla Opção para navegar na interface do usuário usando o teclado","PDFE.Views.FileMenuPanels.Settings.txtWin":"como Windows","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"Área de trabalho","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"Personalize o acesso rápido","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Baixar como","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Salvar cópia como","PDFE.Views.FormatSettingsDialog.textAfter":"Depois de nenhum espaço","PDFE.Views.FormatSettingsDialog.textAfterSpace":"Depois com espaço","PDFE.Views.FormatSettingsDialog.textBefore":"Antes não havia espaço","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"Antes com espaço","PDFE.Views.FormatSettingsDialog.textCategory":"Categoria","PDFE.Views.FormatSettingsDialog.textDate":"Data","PDFE.Views.FormatSettingsDialog.textDecimal":"Casas decimais","PDFE.Views.FormatSettingsDialog.textFormat":"Formatar","PDFE.Views.FormatSettingsDialog.textLocation":"Localização do símbolo","PDFE.Views.FormatSettingsDialog.textMask":"Máscara arbitrária","PDFE.Views.FormatSettingsDialog.textNegative":"Estilo de número negativo","PDFE.Views.FormatSettingsDialog.textNone":"Nenhum","PDFE.Views.FormatSettingsDialog.textNumber":"Número","PDFE.Views.FormatSettingsDialog.textParens":"Mostrar parênteses","PDFE.Views.FormatSettingsDialog.textPercent":"Porcentagem","PDFE.Views.FormatSettingsDialog.textPhone":"Número de telefone","PDFE.Views.FormatSettingsDialog.textRed":"Use texto vermelho","PDFE.Views.FormatSettingsDialog.textReg":"Expressão regular","PDFE.Views.FormatSettingsDialog.textSeparator":"Estilo separador","PDFE.Views.FormatSettingsDialog.textSpecial":"Especial","PDFE.Views.FormatSettingsDialog.textSSN":"Número da Segurança Social","PDFE.Views.FormatSettingsDialog.textSymbol":"Símbolo monetário","PDFE.Views.FormatSettingsDialog.textTime":"Hora","PDFE.Views.FormatSettingsDialog.textTitle":"Configurações de formato","PDFE.Views.FormatSettingsDialog.textZipCode":"CEP","PDFE.Views.FormatSettingsDialog.textZipCode4":"Código Postal + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"Personalizar","PDFE.Views.FormatSettingsDialog.txtSample":"Exemplo:","PDFE.Views.FormSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.FormSettings.textAlways":"Sempre","PDFE.Views.FormSettings.textAnamorphic":"Não proporcionalmente","PDFE.Views.FormSettings.textArabic":"Árabe","PDFE.Views.FormSettings.textAutofit":"Ajuste automático","PDFE.Views.FormSettings.textBackgroundColor":"Cor do plano de fundo","PDFE.Views.FormSettings.textBehavior":"Comportamento","PDFE.Views.FormSettings.textBeveled":"Chanfrado","PDFE.Views.FormSettings.textBorder":"Borda","PDFE.Views.FormSettings.textButton":"Botão","PDFE.Views.FormSettings.textChbStyle":"Estilo de caixa de seleção","PDFE.Views.FormSettings.textCheck":"Verificar","PDFE.Views.FormSettings.textCheckbox":"Caixa de seleção","PDFE.Views.FormSettings.textCheckDefault":"A caixa de seleção está marcada por padrão","PDFE.Views.FormSettings.textCircle":"Círculo","PDFE.Views.FormSettings.textClear":"Limpar","PDFE.Views.FormSettings.textColor":"Cor","PDFE.Views.FormSettings.textComb":"Conjunto de caracteres","PDFE.Views.FormSettings.textCombobox":"Caixa de combinação","PDFE.Views.FormSettings.textCommit":"Confirme o valor selecionado imediatamente","PDFE.Views.FormSettings.textCross":"Intersecção","PDFE.Views.FormSettings.textCustomText":"Permitir texto personalizado","PDFE.Views.FormSettings.textDashed":"Tracejado","PDFE.Views.FormSettings.textDate":"Data","PDFE.Views.FormSettings.textDateField":"Campo de data e hora","PDFE.Views.FormSettings.textDiamond":"Diamante","PDFE.Views.FormSettings.textDown":"Abaixo","PDFE.Views.FormSettings.textExport":"Valor de exportação","PDFE.Views.FormSettings.textField":"Campo de texto","PDFE.Views.FormSettings.textFitBounds":"Ajustar aos limites","PDFE.Views.FormSettings.textFormat":"Formatar","PDFE.Views.FormSettings.textFromFile":"Do Arquivo","PDFE.Views.FormSettings.textFromStorage":"Do armazenamento","PDFE.Views.FormSettings.textFromUrl":"Da URL","PDFE.Views.FormSettings.textHindi":"Hindi","PDFE.Views.FormSettings.textHover":"Rolagem","PDFE.Views.FormSettings.textHowScale":"Redimensionar","PDFE.Views.FormSettings.textIcon":"Ícone","PDFE.Views.FormSettings.textIconLeft":"Ícone à esquerda, rótulo à direita","PDFE.Views.FormSettings.textIconOnly":"Somente ícone","PDFE.Views.FormSettings.textIconTop":"Ícone superior, rótulo inferior","PDFE.Views.FormSettings.textImage":"Imagem","PDFE.Views.FormSettings.textInset":"Inserir","PDFE.Views.FormSettings.textInvert":"Invertido","PDFE.Views.FormSettings.textLabel":"Etiqueta","PDFE.Views.FormSettings.textLabelLeft":"Rótulo à esquerda, ícone à direita","PDFE.Views.FormSettings.textLabelTop":"Rótulo superior, ícone inferior","PDFE.Views.FormSettings.textLayout":"Layout","PDFE.Views.FormSettings.textListBox":"Caixa de listagem","PDFE.Views.FormSettings.textLock":"Bloquear","PDFE.Views.FormSettings.textMask":"Máscara arbitrária","PDFE.Views.FormSettings.textMaxChars":"Limite de caracteres","PDFE.Views.FormSettings.textMedium":"Média","PDFE.Views.FormSettings.textMulti":"Multilinha","PDFE.Views.FormSettings.textMultisel":"Seleção múltipla","PDFE.Views.FormSettings.textName":"Nome","PDFE.Views.FormSettings.textNever":"Nunca","PDFE.Views.FormSettings.textNoBorder":"Sem bordas","PDFE.Views.FormSettings.textNoFill":"Sem preenchimento","PDFE.Views.FormSettings.textNone":"Nenhum","PDFE.Views.FormSettings.textNormal":"Para cima","PDFE.Views.FormSettings.textNumber":"Número","PDFE.Views.FormSettings.textNumeral":"Numeral","PDFE.Views.FormSettings.textOrientation":"Orientação","PDFE.Views.FormSettings.textOutline":"Contorno","PDFE.Views.FormSettings.textOverlay":"Rótulo sobre o ícone","PDFE.Views.FormSettings.textPassword":"Senha","PDFE.Views.FormSettings.textPercent":"Porcentagem","PDFE.Views.FormSettings.textPhone":"Número de telefone","PDFE.Views.FormSettings.textPlaceholder":"Marcador de posição","PDFE.Views.FormSettings.textPlacement":"Posicionamento do ícone","PDFE.Views.FormSettings.textProportional":"Proporcionalmente","PDFE.Views.FormSettings.textPush":"Empurrar","PDFE.Views.FormSettings.textRadiobox":"Botao de radio","PDFE.Views.FormSettings.textRadioChoice":"Escolha do botão de opção","PDFE.Views.FormSettings.textRadioDefault":"O botão é marcado por padrão","PDFE.Views.FormSettings.textRadioStyle":"Estilo de botão","PDFE.Views.FormSettings.textReadonly":"Somente leitura","PDFE.Views.FormSettings.textReg":"Expressão regular","PDFE.Views.FormSettings.textRequired":"Necessário","PDFE.Views.FormSettings.textScale":"Quando escalar","PDFE.Views.FormSettings.textScroll":"Rolar texto longo","PDFE.Views.FormSettings.textSelect":"Selecione","PDFE.Views.FormSettings.textSolid":"Sólido","PDFE.Views.FormSettings.textSpecial":"Especial","PDFE.Views.FormSettings.textSquare":"Quadrado","PDFE.Views.FormSettings.textSSN":"Número da Segurança Social","PDFE.Views.FormSettings.textStar":"Estrela","PDFE.Views.FormSettings.textState":"Estado","PDFE.Views.FormSettings.textStyle":"Estilo","PDFE.Views.FormSettings.textText":"Тexto","PDFE.Views.FormSettings.textTextOnly":"Somente rótulo","PDFE.Views.FormSettings.textThick":"Espesso","PDFE.Views.FormSettings.textThickness":"Espessura","PDFE.Views.FormSettings.textThin":"Fino","PDFE.Views.FormSettings.textTime":"Hora","PDFE.Views.FormSettings.textTip":"Dica","PDFE.Views.FormSettings.textTipAdd":"Adicionar novo valor","PDFE.Views.FormSettings.textTipDelete":"Excluir valor","PDFE.Views.FormSettings.textTipDown":"Mover para baixo","PDFE.Views.FormSettings.textTipUp":"Mover para cima","PDFE.Views.FormSettings.textTooBig":"A imagem é grande demais","PDFE.Views.FormSettings.textTooSmall":"A imagem é pequena demais","PDFE.Views.FormSettings.textUnderline":"Sublinhado","PDFE.Views.FormSettings.textUnison":"Os botões com o mesmo nome e opção são selecionados simultaneamente","PDFE.Views.FormSettings.textUnlock":"Desbloquear","PDFE.Views.FormSettings.textValue":"Opções de valor","PDFE.Views.FormSettings.textZipCode":"CEP","PDFE.Views.FormSettings.textZipCode4":"Código Postal + 4","PDFE.Views.FormSettings.txtCustom":"Personalizar","PDFE.Views.FormsTab.capBtnCheckBox":"Caixa de seleção","PDFE.Views.FormsTab.capBtnComboBox":"Caixa de combinação","PDFE.Views.FormsTab.capBtnDropDown":"Caixa de listagem","PDFE.Views.FormsTab.capBtnEmail":"Endereço de e-mail","PDFE.Views.FormsTab.capBtnImage":"Imagem","PDFE.Views.FormsTab.capBtnNext":"Próximo campo","PDFE.Views.FormsTab.capBtnPhone":"Número de telefone","PDFE.Views.FormsTab.capBtnPrev":"Campo anterior","PDFE.Views.FormsTab.capBtnRadioBox":"Botão de rádio","PDFE.Views.FormsTab.capBtnText":"Campo de texto","PDFE.Views.FormsTab.capCreditCard":"Cartão de crédito","PDFE.Views.FormsTab.capDateTime":"Data e Hora","PDFE.Views.FormsTab.capZipCode":"CEP","PDFE.Views.FormsTab.textAnyone":"Alguém","PDFE.Views.FormsTab.textClear":"Limpar campos.","PDFE.Views.FormsTab.textClearFields":"Limpar todos os campos","PDFE.Views.FormsTab.tipCheckBox":"Inserir caixa de seleção","PDFE.Views.FormsTab.tipComboBox":"Inserir caixa de combinação","PDFE.Views.FormsTab.tipCreditCard":"Inserir número de cartão de crédito","PDFE.Views.FormsTab.tipDateTime":"Inserir data e hora","PDFE.Views.FormsTab.tipDropDown":"Inserir caixa de listagem","PDFE.Views.FormsTab.tipEmailField":"Inserir endereço de e-mail","PDFE.Views.FormsTab.tipImageField":"Inserir imagem","PDFE.Views.FormsTab.tipNextForm":"Ir para o próximo campo","PDFE.Views.FormsTab.tipPhoneField":"Inserir número de telefone","PDFE.Views.FormsTab.tipPrevForm":"Ir para o campo anterior","PDFE.Views.FormsTab.tipRadioBox":"Inserir botão de rádio","PDFE.Views.FormsTab.tipTextField":"Inserir campo de texto","PDFE.Views.FormsTab.tipZipCode":"Inserir código postal","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"Exibir","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"Vincular a","PDFE.Views.HyperlinkSettingsDialog.textDefault":"Fragmento de texto selecionado","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"Inserir legenda aqui","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"Inserir link aqui","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"Inserir dica de ferramenta aqui","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"Link externo","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"Página neste documento","PDFE.Views.HyperlinkSettingsDialog.textPages":"Páginas","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"Selecionar arquivo","PDFE.Views.HyperlinkSettingsDialog.textTipText":"Texto da dica de tela","PDFE.Views.HyperlinkSettingsDialog.textTitle":"Configurações de link","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"Use as barras de rolagem, o mouse e o zoom para selecionar a visualização desejada e, em seguida, pressione \"Definir link\" para criar o destino do link.","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"Criar Ir para a visualização","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo é obrigatório","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"Primeira Página","PDFE.Views.HyperlinkSettingsDialog.txtLast":"Última página","PDFE.Views.HyperlinkSettingsDialog.txtNext":"Próxima página","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"Este campo deve ser uma URL no formato \"http://www.example.com\"","PDFE.Views.HyperlinkSettingsDialog.txtPage":"Página","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"Acesse uma visualização de página.","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"Página anterior","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"Definir link","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo é limitado a 2083 caracteres. ","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Digite o endereço da web ou selecione um arquivo","PDFE.Views.ImageSettings.strTransparency":"Opacidade","PDFE.Views.ImageSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.ImageSettings.textCrop":"Cortar","PDFE.Views.ImageSettings.textCropFill":"Preencher","PDFE.Views.ImageSettings.textCropFit":"Ajustar","PDFE.Views.ImageSettings.textCropToShape":"Cortar para dar forma","PDFE.Views.ImageSettings.textEdit":"Editar","PDFE.Views.ImageSettings.textEditObject":"Editar objeto","PDFE.Views.ImageSettings.textFitPage":"Ajustar a página","PDFE.Views.ImageSettings.textFlip":"Girar","PDFE.Views.ImageSettings.textFromFile":"Do Arquivo","PDFE.Views.ImageSettings.textFromStorage":"Do armazenamento","PDFE.Views.ImageSettings.textFromUrl":"De URL","PDFE.Views.ImageSettings.textHeight":"Altura","PDFE.Views.ImageSettings.textHint270":"Girar 90º no sentido anti-horário.","PDFE.Views.ImageSettings.textHint90":"Girar 90º no sentido horário","PDFE.Views.ImageSettings.textHintFlipH":"Virar horizontalmente","PDFE.Views.ImageSettings.textHintFlipV":"Virar verticalmente","PDFE.Views.ImageSettings.textInsert":"Substituir imagem","PDFE.Views.ImageSettings.textOriginalSize":"Tamanho atual","PDFE.Views.ImageSettings.textRecentlyUsed":"Usado recentemente","PDFE.Views.ImageSettings.textResetCrop":"Redefinir colheita","PDFE.Views.ImageSettings.textRotate90":"Girar 90º","PDFE.Views.ImageSettings.textRotation":"Rotação","PDFE.Views.ImageSettings.textSize":"Tamanho","PDFE.Views.ImageSettings.textWidth":"Largura","PDFE.Views.ImageSettingsAdvanced.textAlt":"Texto Alternativo","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"Descrição","PDFE.Views.ImageSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações visuais do objeto, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma, gráfico ou tabela.","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ImageSettingsAdvanced.textAngle":"Ângulo","PDFE.Views.ImageSettingsAdvanced.textCenter":"Centro","PDFE.Views.ImageSettingsAdvanced.textFlipped":"Invertido","PDFE.Views.ImageSettingsAdvanced.textFrom":"de","PDFE.Views.ImageSettingsAdvanced.textGeneral":"Geral","PDFE.Views.ImageSettingsAdvanced.textHeight":"Altura","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","PDFE.Views.ImageSettingsAdvanced.textImageName":"Nome da imagem","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"Proporções constantes","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"Tamanho atual","PDFE.Views.ImageSettingsAdvanced.textPlacement":"Posicionamento","PDFE.Views.ImageSettingsAdvanced.textPosition":"Posição","PDFE.Views.ImageSettingsAdvanced.textRotation":"Rotação","PDFE.Views.ImageSettingsAdvanced.textSize":"Tamanho","PDFE.Views.ImageSettingsAdvanced.textTitle":"Imagem - Configurações avançadas","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"Canto superior esquerdo","PDFE.Views.ImageSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","PDFE.Views.ImageSettingsAdvanced.textWidth":"Largura","PDFE.Views.InsTab.capBlankPage":"Página em branco","PDFE.Views.InsTab.capBtnDateTime":"Data e Hora","PDFE.Views.InsTab.capBtnInsHeaderFooter":"Cabeçalho/rodapé","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"Símbolo","PDFE.Views.InsTab.capBtnPageNum":"Número da página","PDFE.Views.InsTab.capInsertChart":"Gráfico","PDFE.Views.InsTab.capInsertEquation":"Equação","PDFE.Views.InsTab.capInsertHyperlink":"Link","PDFE.Views.InsTab.capInsertImage":"Imagem","PDFE.Views.InsTab.capInsertShape":"Forma","PDFE.Views.InsTab.capInsertTable":"Tabela","PDFE.Views.InsTab.capInsertText":"Caixa de texto","PDFE.Views.InsTab.capInsertTextArt":"Arte de texto","PDFE.Views.InsTab.capInsPage":"Inserir página","PDFE.Views.InsTab.mniCustomTable":"Inserir tabela personalizada","PDFE.Views.InsTab.mniImageFromFile":"Imagem do arquivo","PDFE.Views.InsTab.mniImageFromStorage":"Imagem de armazenamento","PDFE.Views.InsTab.mniImageFromUrl":"Imagem da URL","PDFE.Views.InsTab.mniInsertSSE":"Inserir planilha","PDFE.Views.InsTab.textAlpha":"Letra minúscula grega alfa","PDFE.Views.InsTab.textBetta":"Letra Minúscula Grega Beta","PDFE.Views.InsTab.textBlackHeart":"Copas","PDFE.Views.InsTab.textBullet":"Ponto","PDFE.Views.InsTab.textCopyright":"Assinatura de copyright","PDFE.Views.InsTab.textDegree":"Símbolo de grau","PDFE.Views.InsTab.textDelta":"Letra minúscula grega Delta","PDFE.Views.InsTab.textDivision":"Sinal de divisão","PDFE.Views.InsTab.textDollar":"Cifrão","PDFE.Views.InsTab.textEuro":"Sinal de Euro","PDFE.Views.InsTab.textGreaterEqual":"Maior que ou igual a","PDFE.Views.InsTab.textInfinity":"Infinidade","PDFE.Views.InsTab.textLessEqual":"Menos que ou igual a","PDFE.Views.InsTab.textLetterPi":"Letra minúscula grega Pi","PDFE.Views.InsTab.textMoreSymbols":"Mais símbolos","PDFE.Views.InsTab.textNotEqualTo":"Não igual a","PDFE.Views.InsTab.textOneHalf":"Fração Vulgar Metade","PDFE.Views.InsTab.textOneQuarter":"Fração Vulgar Um Quarto","PDFE.Views.InsTab.textPlusMinus":"Sinal de mais-menos","PDFE.Views.InsTab.textRecentlyUsed":"Usado recentemente","PDFE.Views.InsTab.textRegistered":"Símbolo de marca registrada","PDFE.Views.InsTab.textSection":"Sinal de seção","PDFE.Views.InsTab.textSmile":"Rosto sorridente branco","PDFE.Views.InsTab.textSquareRoot":"Raiz quadrada","PDFE.Views.InsTab.textTilde":"Til","PDFE.Views.InsTab.textTradeMark":"Sinal de marca registrada","PDFE.Views.InsTab.textYen":"Sinal de iene","PDFE.Views.InsTab.tipChangeChart":"Alterar tipo de gráfico","PDFE.Views.InsTab.tipDateTime":"Insira a data e hora atuais","PDFE.Views.InsTab.tipEditHeaderFooter":"Editar cabeçalho e rodapé","PDFE.Views.InsTab.tipInsertChart":"Inserir gráfico","PDFE.Views.InsTab.tipInsertEquation":"Inserir equação","PDFE.Views.InsTab.tipInsertHorizontalText":"Inserir caixa de texto horizontal","PDFE.Views.InsTab.tipInsertHyperlink":"Adicionar Link","PDFE.Views.InsTab.tipInsertImage":"Inserir imagem","PDFE.Views.InsTab.tipInsertPage":"Inserir página em branco","PDFE.Views.InsTab.tipInsertPageAfter":"Insira uma página em branco depois","PDFE.Views.InsTab.tipInsertShape":"Inserir forma","PDFE.Views.InsTab.tipInsertSmartArt":"Inserir SmartArt","PDFE.Views.InsTab.tipInsertSymbol":"Inserir símbolo","PDFE.Views.InsTab.tipInsertTable":"Inserir tabela","PDFE.Views.InsTab.tipInsertText":"Inserir caixa de texto","PDFE.Views.InsTab.tipInsertTextArt":"Inserir arte de texto","PDFE.Views.InsTab.tipInsertVerticalText":"Inserir caixa de texto vertical","PDFE.Views.InsTab.tipPageNum":"Inserir número da página","PDFE.Views.InsTab.txtNewPageAfter":"Insira uma página em branco depois","PDFE.Views.InsTab.txtNewPageBefore":"Insira uma página em branco antes","PDFE.Views.LeftMenu.ariaLeftMenu":"Menu esquerdo","PDFE.Views.LeftMenu.tipAbout":"Sobre","PDFE.Views.LeftMenu.tipChat":"Chat","PDFE.Views.LeftMenu.tipComments":"Comentários","PDFE.Views.LeftMenu.tipNavigation":"Navegação","PDFE.Views.LeftMenu.tipOutline":"Títulos","PDFE.Views.LeftMenu.tipPageThumbnails":"Miniaturas de página","PDFE.Views.LeftMenu.tipPlugins":"Plugins","PDFE.Views.LeftMenu.tipSearch":"Pesquisar","PDFE.Views.LeftMenu.tipSupport":"Feedback e Suporte","PDFE.Views.LeftMenu.tipTitles":"Títulos","PDFE.Views.LeftMenu.txtDeveloper":"MODO DESENVOLVEDOR","PDFE.Views.LeftMenu.txtEditor":"Editor de PDF","PDFE.Views.LeftMenu.txtLimit":"Limitar o acesso","PDFE.Views.LeftMenu.txtTrial":"MODO DE TESTE","PDFE.Views.LeftMenu.txtTrialDev":"Modo desenvolvedor de teste","PDFE.Views.Navigation.strNavigate":"Títulos","PDFE.Views.Navigation.txtClosePanel":"Fechar títulos","PDFE.Views.Navigation.txtCollapse":"Reduzir tudo","PDFE.Views.Navigation.txtEmptyItem":"Título Vazio","PDFE.Views.Navigation.txtEmptyViewer":"Não há títulos no documento.","PDFE.Views.Navigation.txtExpand":"Expandir tudo","PDFE.Views.Navigation.txtExpandToLevel":"Expandir ao nível","PDFE.Views.Navigation.txtFontSize":"Tamanho da fonte","PDFE.Views.Navigation.txtLarge":"Grande","PDFE.Views.Navigation.txtMedium":"Médio","PDFE.Views.Navigation.txtSettings":"Configurações de títulos","PDFE.Views.Navigation.txtSmall":"Pequeno","PDFE.Views.Navigation.txtWrapHeadings":"Envolver títulos longos","PDFE.Views.PageThumbnails.textClosePanel":"Fechar miniaturas de página","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"Realçar parte visível da página","PDFE.Views.PageThumbnails.textPageThumbnails":"Miniaturas de página","PDFE.Views.PageThumbnails.textThumbnailsSettings":"Configurações de miniaturas","PDFE.Views.PageThumbnails.textThumbnailsSize":"Tamanho das miniaturas","PDFE.Views.ParagraphSettings.strLineHeight":"Espaçamento entre linhas","PDFE.Views.ParagraphSettings.strParagraphSpacing":"Espaçamento de parágrafo","PDFE.Views.ParagraphSettings.strSpacingAfter":"Depois","PDFE.Views.ParagraphSettings.strSpacingBefore":"Antes","PDFE.Views.ParagraphSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.ParagraphSettings.textAt":"em","PDFE.Views.ParagraphSettings.textAtLeast":"Pelo menos","PDFE.Views.ParagraphSettings.textAuto":"Múltiplo","PDFE.Views.ParagraphSettings.textExact":"Exatamente","PDFE.Views.ParagraphSettings.txtAutoText":"Automático","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"As abas especificadas aparecerão neste campo","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"Todas maiúsculas","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"Direção","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Tachado duplo","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"Recuos","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Esquerda","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Espaçamento entre linhas","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Direita","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"depois","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Fonte","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Recuos e espaçamento","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versículos minúsculos","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaçamento","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"Tachado","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"Subscrito","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"Sobrescrito","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"Aba","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"Alinhamento","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"Múltiplo","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaçamento entre caracteres","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"Aba padrão","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"Da esquerda para a direita","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"Da direita para a esquerda","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"Efeitos","PDFE.Views.ParagraphSettingsAdvanced.textExact":"Exatamente","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primeira linha","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"Suspensão","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"Justificado","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(nenhum)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"Remover","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Remover todos","PDFE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"Centro","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"Esquerda","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posição da aba","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"Direita","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"Parágrafo - Configurações avançadas","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"Automático","PDFE.Views.PrintWithPreview.textMarginsLast":"Último personalizado","PDFE.Views.PrintWithPreview.textMarginsModerate":"Moderado","PDFE.Views.PrintWithPreview.textMarginsNarrow":"Estreito","PDFE.Views.PrintWithPreview.textMarginsNormal":"Normal","PDFE.Views.PrintWithPreview.textMarginsWide":"Largo","PDFE.Views.PrintWithPreview.txtAllPages":"Todas as páginas","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impressão em preto e branco","PDFE.Views.PrintWithPreview.txtBothSides":"Imprimir em ambos os lados","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"Vire as páginas na borda longa","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"Vire as páginas na borda curta","PDFE.Views.PrintWithPreview.txtBottom":"Inferior","PDFE.Views.PrintWithPreview.txtColorPrinting":"Impressão colorida","PDFE.Views.PrintWithPreview.txtContent":"Conteúdo","PDFE.Views.PrintWithPreview.txtCopies":"Cópias","PDFE.Views.PrintWithPreview.txtCurrentPage":"Pagina atual","PDFE.Views.PrintWithPreview.txtCustom":"Personalizar","PDFE.Views.PrintWithPreview.txtCustomPages":"Impressão personalizada","PDFE.Views.PrintWithPreview.txtDocument":"Documento","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"Documento e marcações","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"Documentos e selos","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"Apenas campos de formulário","PDFE.Views.PrintWithPreview.txtLandscape":"Paisagem","PDFE.Views.PrintWithPreview.txtLeft":"Esquerda","PDFE.Views.PrintWithPreview.txtMargins":"Margens","PDFE.Views.PrintWithPreview.txtOf":"de {0}","PDFE.Views.PrintWithPreview.txtOneSide":"Imprimir um lado","PDFE.Views.PrintWithPreview.txtOneSideDesc":"Imprima apenas em um lado da página","PDFE.Views.PrintWithPreview.txtPage":"Página","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"Número da página inválido","PDFE.Views.PrintWithPreview.txtPageOrientation":"Orientação da página","PDFE.Views.PrintWithPreview.txtPages":"Páginas","PDFE.Views.PrintWithPreview.txtPageSize":"Tamanho da página","PDFE.Views.PrintWithPreview.txtPortrait":"Retrato ","PDFE.Views.PrintWithPreview.txtPrint":"Imprimir","PDFE.Views.PrintWithPreview.txtPrinter":"Impressora","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"Impressora não selecionada","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"Impressoras não encontradas","PDFE.Views.PrintWithPreview.txtPrintPdf":"Imprimir em PDF","PDFE.Views.PrintWithPreview.txtPrintRange":"Imprimir intervalo","PDFE.Views.PrintWithPreview.txtPrintSides":"Imprimir lados","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir usando a caixa de diálogo do sistema","PDFE.Views.PrintWithPreview.txtRight":"Direito","PDFE.Views.PrintWithPreview.txtSelection":"Seleção","PDFE.Views.PrintWithPreview.txtTop":"Parte superior","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"Aguardando impressoras","PDFE.Views.RedactTab.capApplyRedactions":"Aplicar redações","PDFE.Views.RedactTab.capFindRedact":"Encontrar e redigir","PDFE.Views.RedactTab.capMarkRedact":"Marcar para redação","PDFE.Views.RedactTab.capRedactPages":"Redigir páginas","PDFE.Views.RedactTab.tipApplyRedactions":"Aplicar redações","PDFE.Views.RedactTab.tipFindRedact":"Encontrar e redigir","PDFE.Views.RedactTab.tipMarkForRedact":"Marcar para redação","PDFE.Views.RedactTab.tipRedactPages":"Redigir páginas","PDFE.Views.RedactTab.txtMarkCurrentPage":"Marcar página atual","PDFE.Views.RedactTab.txtSelectRange":"Selecionar intervalo","PDFE.Views.RightMenu.ariaRightMenu":"Menu à direita","PDFE.Views.RightMenu.txtChartSettings":"Configurações do gráfico","PDFE.Views.RightMenu.txtFormSettings":"Configurações do formulário","PDFE.Views.RightMenu.txtImageSettings":"Configurações de imagem","PDFE.Views.RightMenu.txtParagraphSettings":"Configurações do parágrafo","PDFE.Views.RightMenu.txtShapeSettings":"Configurações da forma","PDFE.Views.RightMenu.txtTableSettings":"Configurações da tabela","PDFE.Views.RightMenu.txtTextArtSettings":"Configurações de Arte de Texto","PDFE.Views.ShapeSettings.strBackground":"Cor de fundo","PDFE.Views.ShapeSettings.strChange":"Alterar forma","PDFE.Views.ShapeSettings.strColor":"Cor","PDFE.Views.ShapeSettings.strFill":"Preencher","PDFE.Views.ShapeSettings.strForeground":"Cor do plano de fundo","PDFE.Views.ShapeSettings.strPattern":"Padrão","PDFE.Views.ShapeSettings.strShadow":"Mostrar sombra","PDFE.Views.ShapeSettings.strSize":"Tamanho","PDFE.Views.ShapeSettings.strStroke":"Linha","PDFE.Views.ShapeSettings.strTransparency":"Opacidade","PDFE.Views.ShapeSettings.strType":"Tipo","PDFE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","PDFE.Views.ShapeSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.ShapeSettings.textAngle":"Ângulo","PDFE.Views.ShapeSettings.textBorderSizeErr":"O valor inserido está incorreto.
Insira um valor entre 0 pt e 1.584 pt.","PDFE.Views.ShapeSettings.textColor":"Preenchimento de cor","PDFE.Views.ShapeSettings.textDirection":"Direção","PDFE.Views.ShapeSettings.textEditPoints":"Editar pontos","PDFE.Views.ShapeSettings.textEditShape":"Editar forma","PDFE.Views.ShapeSettings.textEmptyPattern":"Nenhum padrão","PDFE.Views.ShapeSettings.textEyedropper":"Conta-gotas","PDFE.Views.ShapeSettings.textFlip":"Girar","PDFE.Views.ShapeSettings.textFromFile":"Do Arquivo","PDFE.Views.ShapeSettings.textFromStorage":"Do armazenamento","PDFE.Views.ShapeSettings.textFromUrl":"De URL","PDFE.Views.ShapeSettings.textGradient":"Pontos de gradiente","PDFE.Views.ShapeSettings.textGradientFill":"Preenchimento gradiente","PDFE.Views.ShapeSettings.textHint270":"Girar 90º no sentido anti-horário.","PDFE.Views.ShapeSettings.textHint90":"Girar 90º no sentido horário","PDFE.Views.ShapeSettings.textHintFlipH":"Virar horizontalmente","PDFE.Views.ShapeSettings.textHintFlipV":"Virar verticalmente","PDFE.Views.ShapeSettings.textImageTexture":"Imagem ou Textura","PDFE.Views.ShapeSettings.textLinear":"Linear","PDFE.Views.ShapeSettings.textMoreColors":"Mais cores","PDFE.Views.ShapeSettings.textNoFill":"Sem preenchimento","PDFE.Views.ShapeSettings.textNoShadow":"Sem sombra","PDFE.Views.ShapeSettings.textPatternFill":"Padrão","PDFE.Views.ShapeSettings.textPosition":"Posição","PDFE.Views.ShapeSettings.textRadial":"Radial","PDFE.Views.ShapeSettings.textRecentlyUsed":"Usado recentemente","PDFE.Views.ShapeSettings.textRotate90":"Girar 90º","PDFE.Views.ShapeSettings.textRotation":"Rotação","PDFE.Views.ShapeSettings.textSelectImage":"Selecionar imagem","PDFE.Views.ShapeSettings.textSelectTexture":"Selecione","PDFE.Views.ShapeSettings.textShadow":"Sombra","PDFE.Views.ShapeSettings.textStretch":"Alongar","PDFE.Views.ShapeSettings.textStyle":"Estilo","PDFE.Views.ShapeSettings.textTexture":"Da Textura","PDFE.Views.ShapeSettings.textTile":"Mosaico","PDFE.Views.ShapeSettings.tipAddGradientPoint":"Adicionar ponto de gradiente","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"Remover ponto de gradiente","PDFE.Views.ShapeSettings.txtBrownPaper":"Papel pardo","PDFE.Views.ShapeSettings.txtCanvas":"Canvas","PDFE.Views.ShapeSettings.txtCarton":"Papelão","PDFE.Views.ShapeSettings.txtDarkFabric":"Tecido escuro","PDFE.Views.ShapeSettings.txtGrain":"Granulação","PDFE.Views.ShapeSettings.txtGranite":"Granito","PDFE.Views.ShapeSettings.txtGreyPaper":"Papel cinza","PDFE.Views.ShapeSettings.txtKnit":"Encontro","PDFE.Views.ShapeSettings.txtLeather":"Couro","PDFE.Views.ShapeSettings.txtNoBorders":"Sem linha","PDFE.Views.ShapeSettings.txtOffsetBottom":"Deslocamento: Inferior","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"Deslocamento: canto inferior esquerdo","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"Deslocamento: canto superior direito","PDFE.Views.ShapeSettings.txtOffsetCenter":"Deslocamento: Centro","PDFE.Views.ShapeSettings.txtOffsetLeft":"Deslocamento: Esquerda","PDFE.Views.ShapeSettings.txtOffsetRight":"Deslocamento: Direita","PDFE.Views.ShapeSettings.txtOffsetTop":"Deslocamento: Superior","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"Deslocamento: canto superior esquerdo","PDFE.Views.ShapeSettings.txtOffsetTopRight":"Deslocamento: canto superior direito","PDFE.Views.ShapeSettings.txtPapyrus":"Papiro","PDFE.Views.ShapeSettings.txtWood":"Madeira","PDFE.Views.ShapeSettingsAdvanced.strColumns":"Colunas","PDFE.Views.ShapeSettingsAdvanced.strMargins":"Preenchimento de texto","PDFE.Views.ShapeSettingsAdvanced.textAlt":"Texto Alternativo","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"Descrição","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações visuais do objeto, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma, gráfico ou tabela.","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ShapeSettingsAdvanced.textAngle":"Ângulo","PDFE.Views.ShapeSettingsAdvanced.textArrows":"Setas","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"Ajuste automático","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"Tamanho inicial","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"Estilo inicial","PDFE.Views.ShapeSettingsAdvanced.textBevel":"Bisel","PDFE.Views.ShapeSettingsAdvanced.textBottom":"Inferior","PDFE.Views.ShapeSettingsAdvanced.textCapType":"Tipo de letra","PDFE.Views.ShapeSettingsAdvanced.textCenter":"Centro","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"Número de colunas","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"Tamanho final","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"Estilo final","PDFE.Views.ShapeSettingsAdvanced.textFlat":"Plano","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"Invertido","PDFE.Views.ShapeSettingsAdvanced.textFrom":"de","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"Geral","PDFE.Views.ShapeSettingsAdvanced.textHeight":"Altura","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"Horizontalmente","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"Tipo de junção","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"Proporções constantes","PDFE.Views.ShapeSettingsAdvanced.textLeft":"Esquerda","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"Estilo de linha","PDFE.Views.ShapeSettingsAdvanced.textMiter":"Malhete","PDFE.Views.ShapeSettingsAdvanced.textNofit":"Não ajustar automaticamente.","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"Posicionamento","PDFE.Views.ShapeSettingsAdvanced.textPosition":"Posição","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"Redimensionar forma para caber no texto","PDFE.Views.ShapeSettingsAdvanced.textRight":"Direita","PDFE.Views.ShapeSettingsAdvanced.textRotation":"Rotação","PDFE.Views.ShapeSettingsAdvanced.textRound":"Rodada","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"Nome da forma","PDFE.Views.ShapeSettingsAdvanced.textShrink":"Reduzir o texto ao transbordar","PDFE.Views.ShapeSettingsAdvanced.textSize":"Tamanho","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"Espaçamento entre colunas","PDFE.Views.ShapeSettingsAdvanced.textSquare":"Quadrado","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"Caixa de texto","PDFE.Views.ShapeSettingsAdvanced.textTitle":"Forma - Configurações avançadas","PDFE.Views.ShapeSettingsAdvanced.textTop":"Superior","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"Canto superior esquerdo","PDFE.Views.ShapeSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ShapeSettingsAdvanced.textVertically":"Verticalmente","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"Pesos e Setas","PDFE.Views.ShapeSettingsAdvanced.textWidth":"Largura","PDFE.Views.ShapeSettingsAdvanced.txtNone":"Nenhum","PDFE.Views.Statusbar.goToPageText":"Ir para a Página","PDFE.Views.Statusbar.pageIndexText":"Página {0} de {1}","PDFE.Views.Statusbar.tipFitPage":"Ajustar a página","PDFE.Views.Statusbar.tipFitWidth":"Ajustar à Largura","PDFE.Views.Statusbar.tipHandTool":"Ferramenta mão","PDFE.Views.Statusbar.tipPageNext":"Ir para a próxima página","PDFE.Views.Statusbar.tipPagePrev":"Ir para a página anterior","PDFE.Views.Statusbar.tipSelectTool":"Selecionar ferramenta","PDFE.Views.Statusbar.tipZoomFactor":"Zoom","PDFE.Views.Statusbar.tipZoomIn":"Ampliar","PDFE.Views.Statusbar.tipZoomOut":"Reduzir","PDFE.Views.Statusbar.txtPageNumInvalid":"Número da página inválido","PDFE.Views.TableSettings.deleteColumnText":"Excluir coluna","PDFE.Views.TableSettings.deleteRowText":"Excluir linha","PDFE.Views.TableSettings.deleteTableText":"Excluir tabela","PDFE.Views.TableSettings.insertColumnLeftText":"Inserir coluna à esquerda","PDFE.Views.TableSettings.insertColumnRightText":"Inserir coluna à direita","PDFE.Views.TableSettings.insertRowAboveText":"Inserir linha acima","PDFE.Views.TableSettings.insertRowBelowText":"Inserir linha abaixo","PDFE.Views.TableSettings.mergeCellsText":"Mesclar células","PDFE.Views.TableSettings.selectCellText":"Selecionar célula","PDFE.Views.TableSettings.selectColumnText":"Selecionar coluna","PDFE.Views.TableSettings.selectRowText":"Selecionar linha","PDFE.Views.TableSettings.selectTableText":"Selecionar tabela","PDFE.Views.TableSettings.splitCellsText":"Dividir célula...","PDFE.Views.TableSettings.splitCellTitleText":"Dividir célula","PDFE.Views.TableSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.TableSettings.textBackColor":"Cor de fundo","PDFE.Views.TableSettings.textBanded":"Em tiras","PDFE.Views.TableSettings.textBorderColor":"Cor","PDFE.Views.TableSettings.textBorders":"Estilo das bordas","PDFE.Views.TableSettings.textCellSize":"Tamanho de célula","PDFE.Views.TableSettings.textColumns":"Colunas","PDFE.Views.TableSettings.textDistributeCols":"Distribuir colunas","PDFE.Views.TableSettings.textDistributeRows":"Distribuir linhas","PDFE.Views.TableSettings.textEdit":"Linhas e Colunas","PDFE.Views.TableSettings.textEmptyTemplate":"Sem modelos","PDFE.Views.TableSettings.textFirst":"primeiro","PDFE.Views.TableSettings.textHeader":"Cabeçalho","PDFE.Views.TableSettings.textHeight":"Altura","PDFE.Views.TableSettings.textLast":"Último","PDFE.Views.TableSettings.textRows":"Linhas","PDFE.Views.TableSettings.textSelectBorders":"Selecione as bordas que deseja alterar aplicando o estilo escolhido acima","PDFE.Views.TableSettings.textTemplate":"Selecionar a partir do modelo","PDFE.Views.TableSettings.textTotal":"Total","PDFE.Views.TableSettings.textWidth":"Largura","PDFE.Views.TableSettings.tipAll":"Definir borda externa e todas as linhas internas","PDFE.Views.TableSettings.tipBottom":"Definir apenas borda inferior externa","PDFE.Views.TableSettings.tipInner":"Definir apenas linhas internas","PDFE.Views.TableSettings.tipInnerHor":"Definir apenas linhas internas horizontais","PDFE.Views.TableSettings.tipInnerVert":"Definir apenas linhas internas verticais","PDFE.Views.TableSettings.tipLeft":"Definir apenas borda esquerda externa","PDFE.Views.TableSettings.tipNone":"Definir sem bordas","PDFE.Views.TableSettings.tipOuter":"Definir apenas borda externa","PDFE.Views.TableSettings.tipRight":"Definir apenas borda direita externa","PDFE.Views.TableSettings.tipTop":"Definir apenas borda superior externa","PDFE.Views.TableSettings.txtGroupTable_Custom":"Personalizado","PDFE.Views.TableSettings.txtGroupTable_Dark":"Escuro","PDFE.Views.TableSettings.txtGroupTable_Light":"Claro","PDFE.Views.TableSettings.txtGroupTable_Medium":"Média","PDFE.Views.TableSettings.txtGroupTable_Optimal":"Melhor correspondência para documento","PDFE.Views.TableSettings.txtNoBorders":"Sem bordas","PDFE.Views.TableSettings.txtTable_Accent":"Acento","PDFE.Views.TableSettings.txtTable_DarkStyle":"Estilo Escuro","PDFE.Views.TableSettings.txtTable_LightStyle":"Estilo claro","PDFE.Views.TableSettings.txtTable_MediumStyle":"Estilo médio","PDFE.Views.TableSettings.txtTable_NoGrid":"Sem grade","PDFE.Views.TableSettings.txtTable_NoStyle":"Sem estilo","PDFE.Views.TableSettings.txtTable_TableGrid":"Grade da tabela","PDFE.Views.TableSettings.txtTable_ThemedStyle":"Estilo do Tema","PDFE.Views.TableSettingsAdvanced.textAlt":"Texto Alternativo","PDFE.Views.TableSettingsAdvanced.textAltDescription":"Descrição","PDFE.Views.TableSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações visuais do objeto, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma, gráfico ou tabela.","PDFE.Views.TableSettingsAdvanced.textAltTitle":"Título","PDFE.Views.TableSettingsAdvanced.textBottom":"Inferior","PDFE.Views.TableSettingsAdvanced.textCenter":"Centro","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"Use margens padrão","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"Margens padrão","PDFE.Views.TableSettingsAdvanced.textFrom":"de","PDFE.Views.TableSettingsAdvanced.textGeneral":"Geral","PDFE.Views.TableSettingsAdvanced.textHeight":"Altura","PDFE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"Proporções constantes","PDFE.Views.TableSettingsAdvanced.textLeft":"Esquerda","PDFE.Views.TableSettingsAdvanced.textMargins":"Margens das células","PDFE.Views.TableSettingsAdvanced.textPlacement":"Posicionamento","PDFE.Views.TableSettingsAdvanced.textPosition":"Posição","PDFE.Views.TableSettingsAdvanced.textRight":"Direita","PDFE.Views.TableSettingsAdvanced.textSize":"Tamanho","PDFE.Views.TableSettingsAdvanced.textTableName":"Nome da tabela","PDFE.Views.TableSettingsAdvanced.textTitle":"Tabela - Configurações avançadas","PDFE.Views.TableSettingsAdvanced.textTop":"Superior","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"Canto superior esquerdo","PDFE.Views.TableSettingsAdvanced.textVertical":"Vertical","PDFE.Views.TableSettingsAdvanced.textWidth":"Largura","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"Margens","PDFE.Views.TextArtSettings.strBackground":"Cor de fundo","PDFE.Views.TextArtSettings.strColor":"Cor","PDFE.Views.TextArtSettings.strFill":"Preencher","PDFE.Views.TextArtSettings.strForeground":"Cor do plano de fundo","PDFE.Views.TextArtSettings.strPattern":"Padrão","PDFE.Views.TextArtSettings.strSize":"Tamanho","PDFE.Views.TextArtSettings.strStroke":"Linha","PDFE.Views.TextArtSettings.strTransparency":"Opacidade","PDFE.Views.TextArtSettings.strType":"Tipo","PDFE.Views.TextArtSettings.textAngle":"Ângulo","PDFE.Views.TextArtSettings.textBorderSizeErr":"O valor inserido está incorreto.
Insira um valor entre 0 pt e 1.584 pt.","PDFE.Views.TextArtSettings.textColor":"Preenchimento de cor","PDFE.Views.TextArtSettings.textDirection":"Direção","PDFE.Views.TextArtSettings.textEmptyPattern":"Nenhum padrão","PDFE.Views.TextArtSettings.textFromFile":"Do Arquivo","PDFE.Views.TextArtSettings.textFromUrl":"De URL","PDFE.Views.TextArtSettings.textGradient":"Pontos de gradiente","PDFE.Views.TextArtSettings.textGradientFill":"Preenchimento gradiente","PDFE.Views.TextArtSettings.textImageTexture":"Imagem ou Textura","PDFE.Views.TextArtSettings.textLinear":"Linear","PDFE.Views.TextArtSettings.textNoFill":"Sem preenchimento","PDFE.Views.TextArtSettings.textPatternFill":"Padrão","PDFE.Views.TextArtSettings.textPosition":"Posição","PDFE.Views.TextArtSettings.textRadial":"Radial","PDFE.Views.TextArtSettings.textSelectTexture":"Selecione","PDFE.Views.TextArtSettings.textStretch":"Alongar","PDFE.Views.TextArtSettings.textStyle":"Estilo","PDFE.Views.TextArtSettings.textTemplate":"Modelo","PDFE.Views.TextArtSettings.textTexture":"Da Textura","PDFE.Views.TextArtSettings.textTile":"Mosaico","PDFE.Views.TextArtSettings.textTransform":"Transformar","PDFE.Views.TextArtSettings.tipAddGradientPoint":"Adicionar ponto de gradiente","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"Remover ponto de gradiente","PDFE.Views.TextArtSettings.txtBrownPaper":"Papel pardo","PDFE.Views.TextArtSettings.txtCanvas":"Canvas","PDFE.Views.TextArtSettings.txtCarton":"Papelão","PDFE.Views.TextArtSettings.txtDarkFabric":"Tecido escuro","PDFE.Views.TextArtSettings.txtGrain":"Granulação","PDFE.Views.TextArtSettings.txtGranite":"Granito","PDFE.Views.TextArtSettings.txtGreyPaper":"Papel cinza","PDFE.Views.TextArtSettings.txtKnit":"Encontro","PDFE.Views.TextArtSettings.txtLeather":"Couro","PDFE.Views.TextArtSettings.txtNoBorders":"Sem linha","PDFE.Views.TextArtSettings.txtPapyrus":"Papiro","PDFE.Views.TextArtSettings.txtWood":"Madeira","PDFE.Views.Toolbar.capBtnAddComment":"Adicionar comentário","PDFE.Views.Toolbar.capBtnArrowComment":"Seta","PDFE.Views.Toolbar.capBtnCircleComment":"Círculo","PDFE.Views.Toolbar.capBtnComment":"Comentário","PDFE.Views.Toolbar.capBtnDelPage":"Excluir página","PDFE.Views.Toolbar.capBtnDownloadForm":"Baixar como pdf","PDFE.Views.Toolbar.capBtnEditText":"Editar texto","PDFE.Views.Toolbar.capBtnHand":"Mão","PDFE.Views.Toolbar.capBtnNext":"Próximo campo","PDFE.Views.Toolbar.capBtnPolyLineComment":"Linhas conectadas","PDFE.Views.Toolbar.capBtnPrev":"Campo anterior","PDFE.Views.Toolbar.capBtnRecognize":"Editar texto","PDFE.Views.Toolbar.capBtnRectComment":"Retângulo","PDFE.Views.Toolbar.capBtnRotate":"Girar","PDFE.Views.Toolbar.capBtnRotatePage":"Girar página","PDFE.Views.Toolbar.capBtnSaveForm":"Salvar como PDF","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"Salvar como...","PDFE.Views.Toolbar.capBtnSelect":"Selecionar","PDFE.Views.Toolbar.capBtnShowComments":"Mostrar comentários","PDFE.Views.Toolbar.capBtnStamp":"Carimbo","PDFE.Views.Toolbar.capBtnSubmit":"Enviar","PDFE.Views.Toolbar.capBtnTextCallout":"Texto explicativo","PDFE.Views.Toolbar.capBtnTextComment":"Comentário de texto","PDFE.Views.Toolbar.mniCapitalizeWords":"Utilize cada palavra","PDFE.Views.Toolbar.mniInsertSSE":"Inserir planilha","PDFE.Views.Toolbar.mniLowerCase":"minúscula","PDFE.Views.Toolbar.mniSentenceCase":"Capitular o início de uma frase.","PDFE.Views.Toolbar.mniToggleCase":"aLTERNAR","PDFE.Views.Toolbar.mniUpperCase":"MAIÚSCULO","PDFE.Views.Toolbar.strMenuNoFill":"Sem preenchimento","PDFE.Views.Toolbar.textAlignBottom":"Alinhar texto à parte inferior","PDFE.Views.Toolbar.textAlignCenter":"Centralizar texto","PDFE.Views.Toolbar.textAlignJust":"Justificar","PDFE.Views.Toolbar.textAlignLeft":"Alinhar texto à esquerda","PDFE.Views.Toolbar.textAlignMiddle":"Alinhar texto ao centro","PDFE.Views.Toolbar.textAlignRight":"Alinhar texto à direita","PDFE.Views.Toolbar.textAlignTop":"Alinhar texto à parte superior","PDFE.Views.Toolbar.textArrangeBack":"Enviar para plano de fundo","PDFE.Views.Toolbar.textArrangeBackward":"Enviar para trás","PDFE.Views.Toolbar.textArrangeForward":"Trazer para frente","PDFE.Views.Toolbar.textArrangeFront":"Trazer para primeiro plano","PDFE.Views.Toolbar.textBold":"Negrito","PDFE.Views.Toolbar.textClear":"Limpar campos.","PDFE.Views.Toolbar.textClearFields":"Limpar todos os campos","PDFE.Views.Toolbar.textColumnsCustom":"Personalizar colunas","PDFE.Views.Toolbar.textColumnsOne":"Uma Coluna","PDFE.Views.Toolbar.textColumnsThree":"Três Colunas","PDFE.Views.Toolbar.textColumnsTwo":"Duas Colunas","PDFE.Views.Toolbar.textDirLtr":"Da esquerda para a direita","PDFE.Views.Toolbar.textDirRtl":"Da direita para a esquerda","PDFE.Views.Toolbar.textEditMode":"Editar PDF","PDFE.Views.Toolbar.textHighlight":"Destaque","PDFE.Views.Toolbar.textItalic":"Itálico","PDFE.Views.Toolbar.textListSettings":"Configurações da lista","PDFE.Views.Toolbar.textShapeAlignBottom":"Alinhar à parte inferior","PDFE.Views.Toolbar.textShapeAlignCenter":"Alinhar ao centro","PDFE.Views.Toolbar.textShapeAlignLeft":"Alinhar à esquerda","PDFE.Views.Toolbar.textShapeAlignMiddle":"Alinhar ao centro","PDFE.Views.Toolbar.textShapeAlignRight":"Alinhar à direita","PDFE.Views.Toolbar.textShapeAlignTop":"Alinhar à parte superior","PDFE.Views.Toolbar.textShapesCombine":"Combinar","PDFE.Views.Toolbar.textShapesFragment":"Fragmento","PDFE.Views.Toolbar.textShapesIntersect":"Intersecção","PDFE.Views.Toolbar.textShapesSubstract":"Subtrair","PDFE.Views.Toolbar.textShapesUnion":"União","PDFE.Views.Toolbar.textStrikeout":"Tachado","PDFE.Views.Toolbar.textSubmited":"Formulário enviado com sucesso","PDFE.Views.Toolbar.textSubscript":"Subscrito","PDFE.Views.Toolbar.textSuperscript":"Sobrescrito","PDFE.Views.Toolbar.textTabCollaboration":"Colaboração","PDFE.Views.Toolbar.textTabComment":"Comentário","PDFE.Views.Toolbar.textTabEdit":"Editar","PDFE.Views.Toolbar.textTabFile":"Arquivo","PDFE.Views.Toolbar.textTabHome":"Página Inicial","PDFE.Views.Toolbar.textTabInsert":"Inserir","PDFE.Views.Toolbar.textTabRedact":"Redigir","PDFE.Views.Toolbar.textTabView":"Visualizar","PDFE.Views.Toolbar.textUnderline":"Sublinhado","PDFE.Views.Toolbar.tipAddComment":"Adicionar comentário","PDFE.Views.Toolbar.tipChangeCase":"Alternar maiúscula/minúscula","PDFE.Views.Toolbar.tipClearStyle":"Limpar estilo","PDFE.Views.Toolbar.tipColumns":"Inserir colunas","PDFE.Views.Toolbar.tipCopy":"Copiar","PDFE.Views.Toolbar.tipCut":"Cortar","PDFE.Views.Toolbar.tipDecFont":"Diminuir tamanho da fonte","PDFE.Views.Toolbar.tipDecPrLeft":"Diminuir recuo","PDFE.Views.Toolbar.tipDelPage":"Excluir página","PDFE.Views.Toolbar.tipDownload":"Baixar arquivo","PDFE.Views.Toolbar.tipDownloadForm":"Baixar um arquivo como um documento PDF preenchível","PDFE.Views.Toolbar.tipEditMode":"Adicione ou edite texto, formas, imagens etc.","PDFE.Views.Toolbar.tipEditText":"Editar texto","PDFE.Views.Toolbar.tipFirstPage":"Vá para a primeira página","PDFE.Views.Toolbar.tipFontColor":"Cor da fonte","PDFE.Views.Toolbar.tipFontName":"Fonte","PDFE.Views.Toolbar.tipFontSize":"Tamanho da fonte","PDFE.Views.Toolbar.tipHAligh":"Alinhamento horizontal","PDFE.Views.Toolbar.tipHandTool":"Ferramenta mão","PDFE.Views.Toolbar.tipHighlightColor":"Cor de realce","PDFE.Views.Toolbar.tipIncFont":"Aumentar tamanho da fonte","PDFE.Views.Toolbar.tipIncPrLeft":"Aumentar recuo","PDFE.Views.Toolbar.tipInsertArrowComment":"Desenhe uma flecha","PDFE.Views.Toolbar.tipInsertCircleComment":"Desenhe um círculo ou oval","PDFE.Views.Toolbar.tipInsertPolyLineComment":"Desenhe linhas que se conectam entre si","PDFE.Views.Toolbar.tipInsertRectComment":"Desenhe um retângulo ou quadrado","PDFE.Views.Toolbar.tipInsertStamp":"Inserir selo","PDFE.Views.Toolbar.tipInsertTextCallout":"Inserir texto explicativo","PDFE.Views.Toolbar.tipInsertTextComment":"Inserir comentário de texto","PDFE.Views.Toolbar.tipLastPage":"Ir para a última página","PDFE.Views.Toolbar.tipLineSpace":"Espaçamento de linha","PDFE.Views.Toolbar.tipMarkers":"Marcadores","PDFE.Views.Toolbar.tipMarkersArrow":"Balas de flecha","PDFE.Views.Toolbar.tipMarkersCheckmark":"Marcas de verificação","PDFE.Views.Toolbar.tipMarkersDash":"Marcadores de roteiro","PDFE.Views.Toolbar.tipMarkersFRhombus":"Marcadores de losango cheios","PDFE.Views.Toolbar.tipMarkersFRound":"Marcadores redondos cheios","PDFE.Views.Toolbar.tipMarkersFSquare":"Marcadores quadrados preenchidos","PDFE.Views.Toolbar.tipMarkersHRound":"Marcadores redondos ocos","PDFE.Views.Toolbar.tipMarkersStar":"Marcadores de estrelas","PDFE.Views.Toolbar.tipNextForm":"Ir para o próximo campo","PDFE.Views.Toolbar.tipNextPage":"Vá para a página seguinte","PDFE.Views.Toolbar.tipNone":"nenhum","PDFE.Views.Toolbar.tipNumbers":"Numeração","PDFE.Views.Toolbar.tipPaste":"Colar","PDFE.Views.Toolbar.tipPrevForm":"Ir para o campo anterior","PDFE.Views.Toolbar.tipPrevPage":"Ir para a página anterior","PDFE.Views.Toolbar.tipPrint":"Imprimir","PDFE.Views.Toolbar.tipPrintQuick":"Impressão rápida","PDFE.Views.Toolbar.tipRecognize":"Editar texto","PDFE.Views.Toolbar.tipRedo":"Refazer","PDFE.Views.Toolbar.tipRotate":"Girar páginas","PDFE.Views.Toolbar.tipSave":"Salvar","PDFE.Views.Toolbar.tipSaveCoauth":"Salvar suas alterações para que os outros usuários as vejam.","PDFE.Views.Toolbar.tipSaveForm":"Salvar um arquivo como um documento PDF preenchível","PDFE.Views.Toolbar.tipSelectAll":"Selecionar todos","PDFE.Views.Toolbar.tipSelectTool":"Selecionar ferramenta","PDFE.Views.Toolbar.tipShapeAlign":"Alinhar forma","PDFE.Views.Toolbar.tipShapeArrange":"Organizar forma","PDFE.Views.Toolbar.tipShapeMerge":"Mesclar formas","PDFE.Views.Toolbar.tipSubmit":"Enviar para","PDFE.Views.Toolbar.tipSynchronize":"O documento foi alterado por outro usuário. Clique para salvar suas alterações e recarregar as atualizações.","PDFE.Views.Toolbar.tipTextDir":"Direção do texto","PDFE.Views.Toolbar.tipUndo":"Desfazer","PDFE.Views.Toolbar.tipVAligh":"Alinhamento vertical","PDFE.Views.Toolbar.txtArrowComment":"Seta","PDFE.Views.Toolbar.txtCircleComment":"Círculo","PDFE.Views.Toolbar.txtDistribHor":"Distribuir horizontalmente","PDFE.Views.Toolbar.txtDistribVert":"Distribuir verticalmente","PDFE.Views.Toolbar.txtGroup":"Grupo","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"Alinhar objetos selecionados","PDFE.Views.Toolbar.txtOpacity":"Opacidade","PDFE.Views.Toolbar.txtPageAlign":"Alinhar à página","PDFE.Views.Toolbar.txtPolyLineComment":"Linhas conectadas","PDFE.Views.Toolbar.txtRectComment":"Retângulo","PDFE.Views.Toolbar.txtRotateLeft":"Girar à esquerda","PDFE.Views.Toolbar.txtRotatePage":"Girar página","PDFE.Views.Toolbar.txtRotatePageRight":"Girar página para a direita","PDFE.Views.Toolbar.txtRotateRight":"Girar à direita","PDFE.Views.Toolbar.txtSize":"Tamanho","PDFE.Views.Toolbar.txtUngroup":"Desagrupar","PDFE.Views.ViewTab.capBtnRecognize":"Editar texto","PDFE.Views.ViewTab.textAlwaysShowToolbar":"Sempre mostrar a barra de ferramentas","PDFE.Views.ViewTab.textDarkDocument":"Documento escuro","PDFE.Views.ViewTab.textEditMode":"Editar PDF","PDFE.Views.ViewTab.textFill":"Preencher","PDFE.Views.ViewTab.textFitToPage":"Ajustar a página","PDFE.Views.ViewTab.textFitToWidth":"Ajustar à Largura","PDFE.Views.ViewTab.textInterfaceTheme":"Tema de interface","PDFE.Views.ViewTab.textLeftMenu":"Painel esquerdo","PDFE.Views.ViewTab.textLine":"Linha","PDFE.Views.ViewTab.textNavigation":"Navegação","PDFE.Views.ViewTab.textOutline":"Títulos","PDFE.Views.ViewTab.textRightMenu":"Painel direito","PDFE.Views.ViewTab.textStatusBar":"Barra de status","PDFE.Views.ViewTab.textTabStyle":"Estilo da guia","PDFE.Views.ViewTab.textZoom":"Zoom","PDFE.Views.ViewTab.tipDarkDocument":"Documento escuro","PDFE.Views.ViewTab.tipEditMode":"Adicione ou edite texto, formas, imagens etc.","PDFE.Views.ViewTab.tipFitToPage":"Ajustar a página","PDFE.Views.ViewTab.tipFitToWidth":"Ajustar à Largura","PDFE.Views.ViewTab.tipHeadings":"Títulos","PDFE.Views.ViewTab.tipInterfaceTheme":"Tema de interface","PDFE.Views.ViewTab.tipRecognize":"Reconhecer página"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":"Aviso","Common.Controllers.Desktop.hintBtnHome":"Mostrar janela principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Criar a partir de um modelo","Common.Controllers.ExternalLinks.textAddExternalData":"O link para uma fonte externa foi adicionado. Você pode atualizar esses links na guia Dados.","Common.Controllers.ExternalLinks.textDontUpdate":"Não atualize","Common.Controllers.ExternalLinks.textUpdate":"Atualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Erro: falha na atualização","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Esta pasta de trabalho contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta apresentação contém links para uma ou mais fontes externas que podem não ser seguras.
Se você confia nos links, atualize-os para obter os dados mais recentes.","Common.Controllers.History.notcriticalErrorTitle":"Aviso","Common.Controllers.History.txtErrorLoadHistory":"O carregamento de histórico falhou","Common.Controllers.Plugins.helpMoveMacros":"Para começar a trabalhar com macros, vá para a guia Exibir.","Common.Controllers.Plugins.helpMoveMacrosHeader":"O botão Macros movido","Common.Controllers.Plugins.helpUseMacros":"Localize o botão Macros aqui","Common.Controllers.Plugins.helpUseMacrosHeader":"Acesso atualizado a macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Os plug-ins foram instalados com sucesso. Você pode acessar todos os plugins de fundo aqui.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} foi instalado com sucesso. Você pode acessar todos os plugins de fundo aqui.","Common.Controllers.Plugins.textRunInstalledPlugins":"Execute plug-ins instalados","Common.Controllers.Plugins.textRunPlugin":"Executar plugin","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Adicione uma nova linha na parte inferior da tabela.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"Aplique o estilo do título 1 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"Aplique o estilo do título 2 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"Aplique o estilo do título 3 ao fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"Crie uma lista com marcadores não ordenada a partir do fragmento de texto selecionado ou inicie uma nova.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Use a seta do teclado para mover o objeto selecionado um passo grande para baixo.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Use a seta do teclado para mover o objeto selecionado um grande passo para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Use a seta do teclado para mover o objeto selecionado um grande passo para a direita.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Use a seta do teclado para mover o objeto selecionado um passo maior para cima.","Common.Controllers.Shortcuts.txtDescriptionBold":"Deixe a fonte do fragmento de texto selecionado em negrito, dando a ele uma aparência mais pesada.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Alternar um parágrafo entre centralizado e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"Escolha a próxima opção de caixa de combinação no formulário.","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"Selecione a opção de caixa de combinação anterior no formulário.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Feche a janela atual do PDF.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Feche um menu ou janela modal. Redefina pop-ups e balões com comentários e revise alterações. Redefina o modo de desenho e apagamento de tabela. Redefina o recurso de arrastar e soltar texto. Redefina o modo de seleção de marcadores. Redefina o modo de pincel de formatação. Desmarque formas. Redefina o modo de adição de formas. Saia do cabeçalho/rodapé. Saia do preenchimento de formulários.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Envie o fragmento de texto selecionado para a área de transferência do computador. O texto copiado pode ser posteriormente inserido em outro local do mesmo documento, em outro documento ou em algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Copie a formatação do fragmento selecionado do texto editado no momento. A formatação copiada pode ser aplicada posteriormente a outro fragmento de texto no mesmo documento.","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"Insira um símbolo de direitos autorais à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionCut":"Exclua o fragmento de texto selecionado e envie-o para a área de transferência do computador. O texto copiado pode ser posteriormente inserido em outro local do mesmo documento, em outro documento ou em algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Diminua o tamanho da fonte do fragmento de texto selecionado em 1 ponto.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Exclua um caractere à esquerda do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Exclua uma palavra/seleção/objeto gráfico à esquerda do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Exclua um caractere à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Exclua uma palavra/seleção/objeto gráfico à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Quando o título do gráfico for selecionado, se o título estiver vazio, mova o cursor para o início da linha; caso contrário, selecione o texto.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repita a última ação desfeita.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Selecione todo o texto no PDF.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Quando a forma for selecionada, se ela não contiver conteúdo, crie conteúdo e mova o cursor para o início da linha. Se o conteúdo estiver vazio, mova o cursor até ele; caso contrário, selecione todo o conteúdo.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Reverter a última ação executada.","Common.Controllers.Shortcuts.txtDescriptionEmDash":"Insira um travessão à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insira um travessão à direita do cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Termine o parágrafo atual e comece um novo.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Inicie um novo parágrafo dentro de uma célula.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Adicione um novo espaço reservado ao argumento da equação.","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"Altere o nível de alinhamento do operador para a esquerda (para a segunda linha da equação com uma quebra forçada).","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"Altere o nível de alinhamento do operador para a direita (para a segunda linha da equação com uma quebra forçada).","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Insira o símbolo do Euro na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"Insira o sinal de reticências na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar o tamanho da fonte do fragmento de texto selecionado em 1 ponto.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Recuar um parágrafo incrementalmente a partir da esquerda.","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"Adicione uma quebra de coluna.","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"Insira uma nota final.","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"Insira uma equação na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"Insira uma nota de rodapé.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insira um link que possa ser usado para acessar um endereço da web.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Adicione uma quebra de linha sem iniciar um novo parágrafo.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"Adicione uma quebra de linha no formulário multilinha.","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"Inserir uma quebra de página na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"Adicione o número da página atual na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Adicione o caractere de tabulação a um parágrafo (se o cursor não estiver no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"Insira uma quebra de tabela dentro da tabela.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Deixe a fonte do fragmento de texto selecionado em itálico e levemente inclinada.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Alternar um parágrafo entre justificado e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinhar um parágrafo à esquerda.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para baixo, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para a esquerda, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para a direita, um pixel de cada vez.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Mantenha pressionada a tecla especificada e use a seta do teclado para mover o objeto selecionado para cima, um pixel por vez.","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"Aumentar o recuo dos parágrafos selecionados.","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"Diminua o recuo dos parágrafos selecionados.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Mover o foco para o próximo objeto depois do atualmente selecionado.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Move o foco para o objeto anterior ao atualmente selecionado.","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Mova o cursor uma linha para baixo.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"Coloque o cursor bem no final do PDF editado.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Coloque o cursor no final da linha atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Mova o cursor uma palavra para a direita.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Mova o cursor um caractere para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"Mover para o cabeçalho inferior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"Mover para o cabeçalho/rodapé inferior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Vá para a próxima célula em uma linha da tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"Passar para o próximo formulário.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"Vá para a próxima página no PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Ir para a próxima linha em uma tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Ir para a célula anterior em uma linha da tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"Mover para o formulário anterior.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"Vá para a página anterior no PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Ir para a linha anterior em uma tabela.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Mova o cursor um caractere para a direita.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"Ir para o início do PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Coloque o cursor no início da linha atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"Coloque o cursor no início da página seguinte à que está sendo editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"Coloque o cursor no início da página que precede a página atualmente editada.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Mova o cursor para o início de uma palavra ou uma palavra para a esquerda.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Mova o cursor uma linha para cima.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"Mover para o cabeçalho superior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"Mover para o cabeçalho/rodapé superior (se o cursor estiver no cabeçalho/rodapé).","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Alterne para a próxima guia de arquivo no Desktop Editors ou para a guia do navegador no Online Editors..","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Navegue entre os controles para dar foco ao próximo controle nos diálogos modais.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"Crie um hífen entre os caracteres, que não pode ser usado para iniciar uma nova linha.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Crie um espaço entre os caracteres que não possa ser usado para iniciar uma nova linha.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abra o painel de bate-papo nos editores on-line e envie uma mensagem.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abra um campo de entrada de dados onde você pode adicionar o texto do seu comentário.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abra o painel Comentários para adicionar seu próprio comentário ou responder aos comentários de outros usuários.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abra o menu contextual do elemento selecionado.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abra a caixa de diálogo padrão que permite selecionar um arquivo existente. Se você selecionar o arquivo nesta caixa de diálogo e clicar em Abrir, o arquivo será aberto em uma nova aba ou janela do Desktop Editors.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abra o painel Arquivo para salvar, baixar, imprimir o PDF atual, visualizar suas informações, criar um novo documento ou abrir um PDF existente, acessar a Central de Ajuda do Editor de PDF ou configurações avançadas.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abra o menu (painel) Localizar e Substituir com o campo de substituição para substituir uma ou mais ocorrências dos caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abra a janela de diálogo Localizar para começar a procurar um caractere/palavra/frase no PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abra o menu Ajuda do Editor de PDF.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insira o fragmento de texto copiado anteriormente da memória da área de transferência do computador na posição atual do cursor. O texto pode ter sido copiado anteriormente do mesmo documento, de outro documento ou de algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Aplique a formatação copiada anteriormente ao texto no PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Insira o fragmento de texto copiado anteriormente da memória da área de transferência do computador na posição atual do cursor, sem preservar sua formatação original. O texto pode ter sido copiado anteriormente do mesmo documento, de outro documento ou de algum outro programa.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Alterne para a guia de arquivo anterior no Desktop Editors ou para a guia do navegador no Online Editors.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Navegue entre os controles para dar foco ao controle anterior em diálogos modais.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprima o PDF com uma das impressoras disponíveis ou salve-o como um arquivo.","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"Insira o sinal de marca registrada na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"Substitua o código Unicode selecionado por um símbolo.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Limpar formatação do fragmento de texto selecionado.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Alternar um parágrafo entre alinhado à direita e alinhado à esquerda.","Common.Controllers.Shortcuts.txtDescriptionSave":"Salve todas as alterações no arquivo PDF atualmente editado com o Editor de PDF. O arquivo ativo será salvo com seu nome, local e formato atuais.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Abra o painel Baixar como... para salvar o PDF editado no momento no disco rígido do seu computador em um dos formatos suportados.","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"Role o PDF aproximadamente uma página visível para baixo.","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"Role o PDF aproximadamente uma página visível para cima.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Selecione um caractere à esquerda da posição do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Selecione um fragmento de texto do cursor até o início de uma palavra.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mova o cursor uma linha para baixo, selecionando todos os símbolos entre a posição anterior e atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mova o cursor uma linha para cima, selecionando todos os símbolos entre a posição anterior e atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"Selecione a parte da página da posição do cursor até a parte inferior da tela.","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"Selecione a parte da página da posição do cursor até a parte superior da tela.","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Selecione um caractere à direita da posição do cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Selecione um fragmento de texto do cursor até o final de uma palavra.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"Selecione um fragmento de texto do cursor até o início da próxima página.","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"Selecione um fragmento de texto do cursor até o início da página anterior.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"Selecione um fragmento de texto do cursor até o final do PDF.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Selecione um fragmento de texto do cursor até o final da linha atual.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"Selecione um fragmento de texto do cursor até o início do PDF.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Selecione um fragmento de texto do cursor até o início da linha atual.","Common.Controllers.Shortcuts.txtDescriptionShowAll":"Mostrar ou ocultar a exibição de caracteres não imprimíveis.","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"Insira o sinal de hífen suave na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"Mantenha a formatação original do texto copiado.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"Cole o texto sem a formatação original.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"Cole a tabela copiada como uma tabela aninhada na célula selecionada da tabela existente.","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"Substitua o conteúdo da tabela existente pelos dados copiados.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Habilita/desabilita a transmissão de ações realizadas no aplicativo para leitores de tela.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Aumentar o nível de lista/recuo (com o cursor no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Diminua o nível da lista/recuo (com o cursor no início de um parágrafo).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Faça com que o fragmento de texto selecionado seja riscado com uma linha passando pelas letras.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Reduza o tamanho do fragmento de texto selecionado e coloque-o na parte inferior da linha de texto, por exemplo, como em fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Reduza o tamanho do fragmento de texto selecionado e coloque-o na parte superior da linha de texto, por exemplo, como em frações.","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"Insira o sinal de marca registrada na posição atual do cursor.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Faça com que o fragmento de texto selecionado seja sublinhado com uma linha abaixo das letras.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Remover um recuo de parágrafo da esquerda de forma incremental.","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"Atualizar campos (por exemplo, Índice).","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Acesse um link (com o cursor sobre o link).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Redefina o parâmetro 'Zoom' do PDF atual para o padrão 100%.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Amplie o PDF editado no momento.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Diminua o zoom do PDF editado no momento.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Negrito","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copiar","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"Cortar","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Recuar","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"Inserir link","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Itálico","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Colar","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Salvar","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Tachado","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscrito","Common.Controllers.Shortcuts.txtLabelSuperscript":"Sobrescrito","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"Sinal de marca registrada","Common.Controllers.Shortcuts.txtLabelUnderline":"Sublinhado","Common.Controllers.Shortcuts.txtLabelUnIndent":"Desfazer recuo","Common.Controllers.Shortcuts.txtLabelUpdateFields":"Campos de atualização","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"Visite o link","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área empilhada","Common.define.chartData.textAreaStackedPer":"100% Área alinhada","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Colunas agrupadas","Common.define.chartData.textBarNormal3d":"3-D Coluna agrupada","Common.define.chartData.textBarNormal3dPerspective":"Coluna 3-D","Common.define.chartData.textBarStacked":"Coluna alinhada","Common.define.chartData.textBarStacked3d":"Coluna empilhada 3-D","Common.define.chartData.textBarStackedPer":"Coluna 100% empilhada","Common.define.chartData.textBarStackedPer3d":"3-D 100% Coluna alinhada","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Coluna","Common.define.chartData.textCombo":"Combo","Common.define.chartData.textComboAreaBar":"Área empilhada - coluna agrupada","Common.define.chartData.textComboBarLine":"Coluna agrupada - linha","Common.define.chartData.textComboBarLineSecondary":"Coluna agrupada - linha no eixo secundário","Common.define.chartData.textComboCustom":"Combinação personalizada","Common.define.chartData.textDoughnut":"Rosquinha","Common.define.chartData.textHBarNormal":"Barras agrupadas","Common.define.chartData.textHBarNormal3d":"3-D Barra agrupada","Common.define.chartData.textHBarStacked":"Barra alinhada","Common.define.chartData.textHBarStacked3d":"Barra empilhada 3-D","Common.define.chartData.textHBarStackedPer":"100% Barra alinhada","Common.define.chartData.textHBarStackedPer3d":"3-D 100% Barra alinhada","Common.define.chartData.textLine":"Linha","Common.define.chartData.textLine3d":"Linha 3-D","Common.define.chartData.textLineMarker":"Linha com marcadores","Common.define.chartData.textLineStacked":"Alinhado","Common.define.chartData.textLineStackedMarker":"Linha empilhada com marcadores","Common.define.chartData.textLineStackedPer":"100% Alinhado","Common.define.chartData.textLineStackedPerMarker":"100% Alinhado com marcadores","Common.define.chartData.textPie":"Pizza","Common.define.chartData.textPie3d":"Pizza 3-D","Common.define.chartData.textPoint":"XY (Dispersão)","Common.define.chartData.textRadar":"Radar","Common.define.chartData.textRadarFilled":"Radar com marcadores","Common.define.chartData.textRadarMarker":"Radar com marcadores","Common.define.chartData.textScatter":"Dispersão","Common.define.chartData.textScatterLine":"Dispersão com linhas retas","Common.define.chartData.textScatterLineMarker":"Dispersão com linhas retas e marcadores","Common.define.chartData.textScatterSmooth":"Dispersão com linhas suaves","Common.define.chartData.textScatterSmoothMarker":"Dispersão com linhas suaves e marcadores","Common.define.chartData.textStock":"Gráfico de ações","Common.define.chartData.textSurface":"Superfície","Common.define.smartArt.textAccentedPicture":"Imagem em destaque","Common.define.smartArt.textAccentProcess":"Processo em destaque","Common.define.smartArt.textAlternatingFlow":"Fluxo alternado","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternados","Common.define.smartArt.textAlternatingPictureBlocks":"Blocos de imagem alternados","Common.define.smartArt.textAlternatingPictureCircles":"Círculos de imagens alternadas","Common.define.smartArt.textArchitectureLayout":"Layout de arquitetura","Common.define.smartArt.textArrowRibbon":"Seta em forma de fita","Common.define.smartArt.textAscendingPictureAccentProcess":"Processo de ênfase da imagem ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Processo curvo básico","Common.define.smartArt.textBasicBlockList":"Lista básica de blocos","Common.define.smartArt.textBasicChevronProcess":"Processo básico em divisas","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Gráfico de pizza básico","Common.define.smartArt.textBasicProcess":"Processo básico","Common.define.smartArt.textBasicPyramid":"Pirâmide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Alvo básico","Common.define.smartArt.textBasicTimeline":"Linha do tempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista de ênfase de imagem de curvatura","Common.define.smartArt.textBendingPictureBlocks":"Blocos de imagem de curvatura","Common.define.smartArt.textBendingPictureCaption":"Legenda de imagem de curvatura","Common.define.smartArt.textBendingPictureCaptionList":"Lista de legendas de imagens de curvatura","Common.define.smartArt.textBendingPictureSemiTranparentText":"Texto semi-transparente de imagem de curvatura","Common.define.smartArt.textBlockCycle":"Ciclo em bloco","Common.define.smartArt.textBubblePictureList":"Lista de imagens em bolha","Common.define.smartArt.textCaptionedPictures":"Imagens legendadas","Common.define.smartArt.textChevronAccentProcess":"Processo de ênfase em divisas","Common.define.smartArt.textChevronList":"Lista de divisas","Common.define.smartArt.textCircleAccentTimeline":"Linha do tempo de ênfase circular","Common.define.smartArt.textCircleArrowProcess":"Processo de seta circular","Common.define.smartArt.textCirclePictureHierarchy":"Hierarquia de imagem circular","Common.define.smartArt.textCircleProcess":"Processo circular","Common.define.smartArt.textCircleRelationship":"Relacionamento do Círculo","Common.define.smartArt.textCircularBendingProcess":"Processo curvo circular","Common.define.smartArt.textCircularPictureCallout":"Texto explicativo de imagem circular","Common.define.smartArt.textClosedChevronProcess":"Processo fechado em divisas","Common.define.smartArt.textContinuousArrowProcess":"Processo de seta contínua","Common.define.smartArt.textContinuousBlockProcess":"Processo de bloco contínuo","Common.define.smartArt.textContinuousCycle":"Ciclo contínuo","Common.define.smartArt.textContinuousPictureList":"Lista de imagem contínua","Common.define.smartArt.textConvergingArrows":"Setas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Setas contrabalançadas ","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista descendente de blocos ","Common.define.smartArt.textDescendingProcess":"Processo descendente","Common.define.smartArt.textDetailedProcess":"Processo detalhado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Equação","Common.define.smartArt.textFramedTextPicture":"Imagem de texto emoldurada","Common.define.smartArt.textFunnel":"Funil","Common.define.smartArt.textGear":"Engrenagem","Common.define.smartArt.textGridMatrix":"Matriz de grade","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organograma de meio círculo","Common.define.smartArt.textHexagonCluster":"Conjunto hexagonal","Common.define.smartArt.textHexagonRadial":"Radial Hexágono","Common.define.smartArt.textHierarchy":"Hierarquia","Common.define.smartArt.textHierarchyList":"Lista de hierarquia","Common.define.smartArt.textHorizontalBulletList":"Lista de marcadores horizontais","Common.define.smartArt.textHorizontalHierarchy":"Hierarquia horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Hierarquia horizontal rotulada","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Hierarquia horizontal multinível","Common.define.smartArt.textHorizontalOrganizationChart":"Organograma horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista de imagens horizontais","Common.define.smartArt.textIncreasingArrowProcess":"Processo de seta crescente","Common.define.smartArt.textIncreasingCircleProcess":"Processo de círculo crescente","Common.define.smartArt.textInterconnectedBlockProcess":"Processo de bloco interconectado","Common.define.smartArt.textInterconnectedRings":"Anéis interconectados","Common.define.smartArt.textInvertedPyramid":"Pirâmide invertida","Common.define.smartArt.textLabeledHierarchy":"Hierarquia rotulada","Common.define.smartArt.textLinearVenn":"Venn Linear","Common.define.smartArt.textLinedList":"Lista alinhada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidirecional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organograma de nome e título","Common.define.smartArt.textNestedTarget":"Alvo aninhado","Common.define.smartArt.textNondirectionalCycle":"Ciclo não direcional","Common.define.smartArt.textOpposingArrows":"Setas opostas","Common.define.smartArt.textOpposingIdeas":"Ideias opostas","Common.define.smartArt.textOrganizationChart":"Organograma","Common.define.smartArt.textOther":"Outro","Common.define.smartArt.textPhasedProcess":"Processo em fases","Common.define.smartArt.textPicture":"Imagem","Common.define.smartArt.textPictureAccentBlocks":"Blocos de destaque de imagem","Common.define.smartArt.textPictureAccentList":"Lista de destaques da imagem","Common.define.smartArt.textPictureAccentProcess":"Processo de destaque da imagem","Common.define.smartArt.textPictureCaptionList":"Lista de legendas de imagens","Common.define.smartArt.textPictureFrame":"Porta-retrato","Common.define.smartArt.textPictureGrid":"Grade de imagens","Common.define.smartArt.textPictureLineup":"Alinhamento de imagens","Common.define.smartArt.textPictureOrganizationChart":"Organograma de imagens","Common.define.smartArt.textPictureStrips":"Tiras de imagem","Common.define.smartArt.textPieProcess":"Processo em pizza","Common.define.smartArt.textPlusAndMinus":"Mais e menos","Common.define.smartArt.textProcess":"Processo","Common.define.smartArt.textProcessArrows":"Setas de processo","Common.define.smartArt.textProcessList":"Lista de processos","Common.define.smartArt.textPyramid":"Pirâmide","Common.define.smartArt.textPyramidList":"Lista de pirâmides","Common.define.smartArt.textRadialCluster":"Aglomerado radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista de imagens radiais","Common.define.smartArt.textRadialVenn":"Venn Radial","Common.define.smartArt.textRandomToResultProcess":"Processo aleatório para resultado","Common.define.smartArt.textRelationship":"Relação","Common.define.smartArt.textRepeatingBendingProcess":"Repetindo o processo de dobra","Common.define.smartArt.textReverseList":"Lista reversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Processo segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirâmide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de fotos instantâneas","Common.define.smartArt.textSpiralPicture":"Imagem em espiral","Common.define.smartArt.textSquareAccentList":"Lista de destaque quadrada","Common.define.smartArt.textStackedList":"Lista empilhada","Common.define.smartArt.textStackedVenn":"Venn Empilhado","Common.define.smartArt.textStaggeredProcess":"Processo escalonado","Common.define.smartArt.textStepDownProcess":"Processo de redução gradual","Common.define.smartArt.textStepUpProcess":"Processo de intensificação","Common.define.smartArt.textSubStepProcess":"Processo de subetapas","Common.define.smartArt.textTabbedArc":"Arco com abas","Common.define.smartArt.textTableHierarchy":"Hierarquia da tabela","Common.define.smartArt.textTableList":"Lista de tabelas","Common.define.smartArt.textTabList":"Lista de guias","Common.define.smartArt.textTargetList":"Lista de alvos","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Destaque da imagem de tema","Common.define.smartArt.textThemePictureAlternatingAccent":"Destaque alternado da imagem do tema","Common.define.smartArt.textThemePictureGrid":"Grade de imagens do tema","Common.define.smartArt.textTitledMatrix":"Matriz intitulada","Common.define.smartArt.textTitledPictureAccentList":"Lista de destaque de imagem intitulada","Common.define.smartArt.textTitledPictureBlocks":"Blocos de imagens intitulados","Common.define.smartArt.textTitlePictureLineup":"Alinhamento da imagem do título","Common.define.smartArt.textTrapezoidList":"Lista de trapézios","Common.define.smartArt.textUpwardArrow":"Seta para cima","Common.define.smartArt.textVaryingWidthList":"Lista de largura variável","Common.define.smartArt.textVerticalAccentList":"Lista de acentos verticais","Common.define.smartArt.textVerticalArrowList":"Lista de setas verticais","Common.define.smartArt.textVerticalBendingProcess":"Processo vertical em curva","Common.define.smartArt.textVerticalBlockList":"Lista de bloqueio vertical","Common.define.smartArt.textVerticalBoxList":"Lista de caixa vertical","Common.define.smartArt.textVerticalBracketList":"Lista de colchetes verticais","Common.define.smartArt.textVerticalBulletList":"Lista de marcadores verticais","Common.define.smartArt.textVerticalChevronList":"Lista vertical em divisas","Common.define.smartArt.textVerticalCircleList":"Lista de círculos verticais","Common.define.smartArt.textVerticalCurvedList":"Lista Curva Vertical","Common.define.smartArt.textVerticalEquation":"Equação vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista de destaque de imagens verticais","Common.define.smartArt.textVerticalPictureList":"Lista de imagens verticais","Common.define.smartArt.textVerticalProcess":"Processo vertical","Common.Translation.textMoreButton":"Mais","Common.Translation.tipFileLocked":"O documento está bloqueado para edição. Você pode fazer alterações e salvá-lo como cópia local mais tarde.","Common.Translation.tipFileReadOnly":"O arquivo é somente leitura. Para manter suas alterações, salve o arquivo com um novo nome ou em um local diferente.","Common.Translation.warnFileLocked":"Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.","Common.Translation.warnFileLockedBtnEdit":"Criar uma cópia","Common.Translation.warnFileLockedBtnView":"Aberto para visualização","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Conta-gotas","Common.UI.ButtonColored.textNewColor":"Mais cores","Common.UI.Calendar.textApril":"Abril","Common.UI.Calendar.textAugust":"Agosto","Common.UI.Calendar.textDecember":"Dezembro","Common.UI.Calendar.textFebruary":"Fevereiro","Common.UI.Calendar.textJanuary":"Janeiro","Common.UI.Calendar.textJuly":"Julho","Common.UI.Calendar.textJune":"Junho","Common.UI.Calendar.textMarch":"Março","Common.UI.Calendar.textMay":"Mai","Common.UI.Calendar.textMonths":"Meses","Common.UI.Calendar.textNovember":"Novembro","Common.UI.Calendar.textOctober":"Outubro","Common.UI.Calendar.textSeptember":"Setembro","Common.UI.Calendar.textShortApril":"Abr","Common.UI.Calendar.textShortAugust":"Ago","Common.UI.Calendar.textShortDecember":"Dez","Common.UI.Calendar.textShortFebruary":"Fev","Common.UI.Calendar.textShortFriday":"Fr","Common.UI.Calendar.textShortJanuary":"Jan","Common.UI.Calendar.textShortJuly":"Jul","Common.UI.Calendar.textShortJune":"Jun","Common.UI.Calendar.textShortMarch":"Mar","Common.UI.Calendar.textShortMay":"Mai","Common.UI.Calendar.textShortMonday":"Seg.","Common.UI.Calendar.textShortNovember":"Nov","Common.UI.Calendar.textShortOctober":"Out","Common.UI.Calendar.textShortSaturday":"Sáb","Common.UI.Calendar.textShortSeptember":"Set","Common.UI.Calendar.textShortSunday":"Dom","Common.UI.Calendar.textShortThursday":"Qui.","Common.UI.Calendar.textShortTuesday":"Ter","Common.UI.Calendar.textShortWednesday":"Qua","Common.UI.Calendar.textYears":"Anos","Common.UI.ExtendedColorDialog.addButtonText":"Adicionar","Common.UI.ExtendedColorDialog.textCurrent":"Atual","Common.UI.ExtendedColorDialog.textHexErr":"O valor inserido está incorreto.
Insira um valor entre 000000 e FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Novo","Common.UI.ExtendedColorDialog.textRGBErr":"O valor inserido está incorreto.
Insira um valor numérico entre 0 e 255.","Common.UI.HSBColorPicker.textNoColor":"Sem cor","Common.UI.InputFieldBtnCalendar.textDate":"Selecione a data","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar palavra-chave","Common.UI.InputFieldBtnPassword.textHintHold":"Pressione e segure para mostrar a senha","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar senha","Common.UI.SearchBar.capFind":"Localizar","Common.UI.SearchBar.capFindRedact":"Encontrar e redigir","Common.UI.SearchBar.textFind":"Localizar","Common.UI.SearchBar.tipCloseSearch":"Fechar pesquisa","Common.UI.SearchBar.tipNextResult":"Próximo resultado","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abra as configurações avançadas","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"Encontrar e redigir","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Destacar resultados","Common.UI.SearchDialog.textMatchCase":"Maiúsculas e Minúsculas","Common.UI.SearchDialog.textReplaceDef":"Inserir o texto de substituição","Common.UI.SearchDialog.textSearchStart":"Insira seu texto aqui","Common.UI.SearchDialog.textTitle":"Localizar e substituir","Common.UI.SearchDialog.textTitle2":"Localizar","Common.UI.SearchDialog.textWholeWords":"Palavras inteiras apenas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar Substituição","Common.UI.SearchDialog.txtBtnReplace":"Substituir","Common.UI.SearchDialog.txtBtnReplaceAll":"Substituir tudo","Common.UI.SynchronizeTip.textDontShow":"Não exibir esta mensagem novamente","Common.UI.SynchronizeTip.textGotIt":"Entendi","Common.UI.SynchronizeTip.textNew":"Novo","Common.UI.SynchronizeTip.textSynchronize":"O documento foi alterado por outro usuário.
Clique para salvar suas alterações e recarregar as atualizações.","Common.UI.ThemeColorPalette.textRecentColors":"Cores recentes","Common.UI.ThemeColorPalette.textStandartColors":"Cores padronizadas","Common.UI.ThemeColorPalette.textThemeColors":"Cores do tema","Common.UI.ThemeColorPalette.textTransparent":"Transparente","Common.UI.Themes.txtThemeClassicLight":"Clássico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste escuro","Common.UI.Themes.txtThemeDark":"Escuro","Common.UI.Themes.txtThemeGray":"Cinza","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Escuro moderno","Common.UI.Themes.txtThemeModernLight":"Claro moderno","Common.UI.Themes.txtThemeSystem":"O mesmo que sistema","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Fechar","Common.UI.Window.noButtonText":"Não","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"Confirmação","Common.UI.Window.textDontShow":"Não exibir esta mensagem novamente","Common.UI.Window.textError":"Erro","Common.UI.Window.textInformation":"Informação","Common.UI.Window.textWarning":"Aviso","Common.UI.Window.yesButtonText":"Sim","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"Pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"Acento","Common.Utils.ThemeColor.txtAqua":"Aqua","Common.Utils.ThemeColor.txtbackground":"Plano de fundo","Common.Utils.ThemeColor.txtBlack":"Preto","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde claro","Common.Utils.ThemeColor.txtBrown":"Marrom","Common.Utils.ThemeColor.txtDarkBlue":"Azul escuro","Common.Utils.ThemeColor.txtDarker":"Mais escura","Common.Utils.ThemeColor.txtDarkGray":"Cinza escuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde-escuro","Common.Utils.ThemeColor.txtDarkPurple":"Roxo escuro","Common.Utils.ThemeColor.txtDarkRed":"Vermelho escuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde-azulado escuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarelo escuro","Common.Utils.ThemeColor.txtGold":"Ouro","Common.Utils.ThemeColor.txtGray":"Cinza","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Índigo","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Isqueiro","Common.Utils.ThemeColor.txtLightGray":"Cinza claro","Common.Utils.ThemeColor.txtLightGreen":"Luz verde","Common.Utils.ThemeColor.txtLightOrange":"Laranja claro","Common.Utils.ThemeColor.txtLightYellow":"Luz amarela","Common.Utils.ThemeColor.txtOrange":"Laranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Roxo","Common.Utils.ThemeColor.txtRed":"Vermelho","Common.Utils.ThemeColor.txtRose":"Rosa","Common.Utils.ThemeColor.txtSkyBlue":"Céu azul","Common.Utils.ThemeColor.txtTeal":"Azul-petróleo","Common.Utils.ThemeColor.txttext":"Тexto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Branco","Common.Utils.ThemeColor.txtYellow":"Amarelo","Common.Views.About.txtAddress":"endereço:","Common.Views.About.txtLicensee":"LICENÇA","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"e-mail:","Common.Views.About.txtPoweredBy":"Desenvolvido por","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versão","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Fechar chat","Common.Views.Chat.textEnterMessage":"Insira sua mensagem aqui","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor Z a A","Common.Views.Comments.mniDateAsc":"Mais antigo","Common.Views.Comments.mniDateDesc":"Novidades","Common.Views.Comments.mniFilterComments":"Mostrar comentários","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"De cima","Common.Views.Comments.mniPositionDesc":"Do fundo","Common.Views.Comments.textAdd":"Adicionar","Common.Views.Comments.textAddComment":"Adicionar comentário","Common.Views.Comments.textAddCommentToDoc":"Adicionar comentário ao documento","Common.Views.Comments.textAddReply":"Adicionar resposta","Common.Views.Comments.textAll":"Todos","Common.Views.Comments.textAnonym":"Visitante","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Fechar","Common.Views.Comments.textClosePanel":"Fechar comentários","Common.Views.Comments.textComment":"Comentário","Common.Views.Comments.textComments":"Comentários","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"Insira seu comentário aqui","Common.Views.Comments.textHintAddComment":"Adicionar comentário","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir novamente","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resolvido","Common.Views.Comments.textSort":"Ordenar comentários","Common.Views.Comments.textSortFilter":"Classifique e filtre comentários","Common.Views.Comments.textSortFilterMore":"Classificar, filtrar e muito mais","Common.Views.Comments.textSortMore":"Classificar e muito mais","Common.Views.Comments.textViewResolved":"Você não tem permissão para reabrir comentários","Common.Views.Comments.txtEmpty":"Não há comentários no documento.","Common.Views.CopyWarningDialog.textDontShow":"Não exibir esta mensagem novamente","Common.Views.CopyWarningDialog.textMsg":"As ações copiar, cortar e colar usando os botões da barra de ferramentas do editor e as ações de menu de contexto serão realizadas apenas nesta aba do editor.

Para copiar ou colar para ou de aplicativos externos a aba do editor, use as seguintes combinações do teclado:","Common.Views.CopyWarningDialog.textTitle":"Ações copiar, cortar e colar","Common.Views.CopyWarningDialog.textToCopy":"para Copiar","Common.Views.CopyWarningDialog.textToCut":"para Cortar","Common.Views.CopyWarningDialog.textToPaste":"para Colar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Baixar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Verifique os comandos que serão exibidos na Barra de Ferramentas de Acesso Rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impressão rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Refazer","Common.Views.CustomizeQuickAccessDialog.textSave":"Salvar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalize o acesso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Desfazer","Common.Views.DocumentAccessDialog.textLoading":"Carregando...","Common.Views.DocumentAccessDialog.textTitle":"Configurações de compartilhamento","Common.Views.Draw.hintEraser":"Apagador","Common.Views.Draw.hintSelect":"Selecionar","Common.Views.Draw.txtEraser":"Apagador","Common.Views.Draw.txtHighlighter":"Marcador","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Caneta","Common.Views.Draw.txtSelect":"Selecionar","Common.Views.Draw.txtSize":"Tamanho","Common.Views.ExternalDiagramEditor.textTitle":"Editor de gráfico","Common.Views.ExternalEditor.textClose":"Encerrar","Common.Views.ExternalEditor.textSave":"Salvar e Sair","Common.Views.ExternalLinksDlg.closeButtonText":"Encerrar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Atualizar automaticamente os dados das fontes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Mudar fonte","Common.Views.ExternalLinksDlg.textDelete":"Quebrar links","Common.Views.ExternalLinksDlg.textDeleteAll":"Quebrar todos os links","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Código aberto","Common.Views.ExternalLinksDlg.textSource":"Fonte","Common.Views.ExternalLinksDlg.textStatus":"Status","Common.Views.ExternalLinksDlg.textUnknown":"Desconhecido","Common.Views.ExternalLinksDlg.textUpdate":"Atualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Atualize tudo","Common.Views.ExternalLinksDlg.textUpdating":"Atualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Links externos","Common.Views.Header.ariaQuickAccessToolbar":"Barra de ferramentas de acesso rápido","Common.Views.Header.labelCoUsersDescr":"Usuários que estão editando o arquivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Configurações avançadas","Common.Views.Header.textAnnotateDesc":"Preencher formulários ou fazer anotações","Common.Views.Header.textBack":"Local do arquivo aberto","Common.Views.Header.textClose":"Fechar Arquivo","Common.Views.Header.textComment":"Comentar","Common.Views.Header.textCommentDesc":"Todas as alterações serão salvas no arquivo. Colaboração em tempo real","Common.Views.Header.textCompactView":"Ocultar Barra de Ferramentas","Common.Views.Header.textDownload":"Baixar","Common.Views.Header.textEdit":"Editando","Common.Views.Header.textEditDesc":"Todas as alterações serão salvas no arquivo. Colaboração em tempo real","Common.Views.Header.textEditDescNoCoedit":"Adicione ou edite texto, formas, imagens etc.","Common.Views.Header.textHideLines":"Ocultar réguas","Common.Views.Header.textHideStatusBar":"Ocultar barra de status","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Somente leitura","Common.Views.Header.textRemoveFavorite":"Remover dos Favoritos","Common.Views.Header.textShare":"Compartilhar","Common.Views.Header.textView":"Visualizando","Common.Views.Header.textViewDesc":"Todas as alterações serão salvas localmente","Common.Views.Header.textViewDescNoCoedit":"Visualizar ou anotar","Common.Views.Header.textZoom":"Zoom","Common.Views.Header.tipAccessRights":"Gerenciar direitos de acesso a documentos","Common.Views.Header.tipComment":"Comentar","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalize a barra de ferramentas de acesso rápido","Common.Views.Header.tipDownload":"Baixar arquivo","Common.Views.Header.tipEdit":"Editando","Common.Views.Header.tipGoEdit":"Editar arquivo atual","Common.Views.Header.tipPrint":"Imprimir arquivo","Common.Views.Header.tipPrintQuick":"Impressão rápida","Common.Views.Header.tipRedo":"Refazer","Common.Views.Header.tipSave":"Salvar","Common.Views.Header.tipSearch":"Pesquisar","Common.Views.Header.tipUndo":"Desfazer","Common.Views.Header.tipUsers":"Ver usuários","Common.Views.Header.tipView":"Visualizando","Common.Views.Header.tipViewSettings":"Visualizar configurações","Common.Views.Header.tipViewUsers":"Ver usuários e gerenciar direitos de acesso ao documento","Common.Views.Header.txtAccessRights":"Alterar direitos de acesso","Common.Views.Header.txtRename":"Renomear","Common.Views.ImageFromUrlDialog.textUrl":"Colar uma URL de imagem:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo é obrigatório","Common.Views.ImageFromUrlDialog.txtNotUrl":"Este campo deve ser uma URL no formato \"http://www.example.com\"","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Input a prompt for the query","Common.Views.MacrosAiDialog.textCreate":"Create","Common.Views.MacrosDialog.textAutostart":"Autostart","Common.Views.MacrosDialog.textConvertFromVBA":"Convert from VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convert macros from VBA","Common.Views.MacrosDialog.textCopy":"Copy","Common.Views.MacrosDialog.textCreateFromDesc":"Create from description","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Create macros from description","Common.Views.MacrosDialog.textCustomFunction":"Custom function","Common.Views.MacrosDialog.textCustomFunctions":"Custom functions","Common.Views.MacrosDialog.textDebug":"Debug","Common.Views.MacrosDialog.textDelete":"Delete","Common.Views.MacrosDialog.textFunctions":"Functions","Common.Views.MacrosDialog.textLoading":"Loading...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Make autostart","Common.Views.MacrosDialog.textRename":"Rename","Common.Views.MacrosDialog.textRun":"Run","Common.Views.MacrosDialog.textSave":"Save","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Unmake autostart","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"Add custom function","Common.Views.MacrosDialog.tipFunctionCopy":"Copy custom function","Common.Views.MacrosDialog.tipFunctionDelete":"Delete custom function","Common.Views.MacrosDialog.tipFunctionRename":"Rename custom function","Common.Views.MacrosDialog.tipMacrosAdd":"Add macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copy macros","Common.Views.MacrosDialog.tipMacrosDebug":"Debug macros","Common.Views.MacrosDialog.tipMacrosRename":"Rename macros","Common.Views.MacrosDialog.tipMacrosRun":"Run macros","Common.Views.MacrosDialog.tipRedo":"Redo","Common.Views.MacrosDialog.tipUndo":"Undo","Common.Views.OpenDialog.closeButtonText":"Fechar Arquivo","Common.Views.OpenDialog.txtEncoding":"Codificação","Common.Views.OpenDialog.txtIncorrectPwd":"Senha incorreta.","Common.Views.OpenDialog.txtOpenFile":"Inserir a Senha para Abrir o Arquivo","Common.Views.OpenDialog.txtPassword":"Senha","Common.Views.OpenDialog.txtPreview":"Pré-visualizar","Common.Views.OpenDialog.txtProtected":"Depois de inserir a senha e abrir o arquivo, a senha atual do arquivo será redefinida.","Common.Views.OpenDialog.txtTitle":"Escolher opções %1","Common.Views.OpenDialog.txtTitleProtected":"Arquivo protegido","Common.Views.PasswordDialog.txtDescription":"Defina uma senha para proteger o documento","Common.Views.PasswordDialog.txtIncorrectPwd":"A confirmação da senha não é idêntica","Common.Views.PasswordDialog.txtPassword":"Senha","Common.Views.PasswordDialog.txtRepeat":"Repetir a senha","Common.Views.PasswordDialog.txtTitle":"Definir senha","Common.Views.PasswordDialog.txtWarning":"Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.","Common.Views.PluginDlg.textDock":"Plug-in de fixação","Common.Views.PluginDlg.textLoading":"Carregando","Common.Views.PluginPanel.textClosePanel":"Fechar plug-in","Common.Views.PluginPanel.textHidePanel":"Recolher plugin","Common.Views.PluginPanel.textLoading":"Carregando","Common.Views.PluginPanel.textUndock":"Desafixar plugin","Common.Views.Plugins.groupCaption":"Plugins","Common.Views.Plugins.strPlugins":"Plugins","Common.Views.Plugins.textBackgroundPlugins":"Plug-ins em segundo plano","Common.Views.Plugins.textClosePanel":"Fechar plug-in","Common.Views.Plugins.textLoading":"Carregando","Common.Views.Plugins.textSettings":"Configurações","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Parar","Common.Views.Plugins.textTheListOfBackgroundPlugins":"A lista de plug-ins de segundo plano","Common.Views.Protection.hintAddPwd":"Criptografar com senha","Common.Views.Protection.hintDelPwd":"Excluir senha","Common.Views.Protection.hintPwd":"Alterar ou excluir senha","Common.Views.Protection.hintSignature":"Inserir assinatura digital ou linha de assinatura","Common.Views.Protection.txtAddPwd":"Inserir a senha","Common.Views.Protection.txtChangePwd":"Alterar Senha","Common.Views.Protection.txtDeletePwd":"Excluir senha","Common.Views.Protection.txtEncrypt":"Criptografar","Common.Views.Protection.txtInvisibleSignature":"Inserir assinatura digital","Common.Views.Protection.txtSignature":"Assinatura","Common.Views.Protection.txtSignatureLine":"Adicionar linha de assinatura","Common.Views.RecentFiles.txtOpenRecent":"Abrir recente","Common.Views.RenameDialog.textName":"Nome do arquivo","Common.Views.RenameDialog.txtInvalidName":"Nome de arquivo não pode conter os seguintes caracteres:","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedição em tempo real. Todas as alterações são salvas automaticamente.","Common.Views.ReviewChanges.strStrict":"Estrito","Common.Views.ReviewChanges.strStrictDesc":"Use o botão 'Salvar' para sincronizar as alterações que você e outros realizaram.","Common.Views.ReviewChanges.tipCoAuthMode":"Definir modo de coedição","Common.Views.ReviewChanges.tipCommentRem":"Excluir comentários","Common.Views.ReviewChanges.tipCommentRemCurrent":"Remover comentários atuais","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentários","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver comentários atuais","Common.Views.ReviewChanges.tipHistory":"Exibir histórico de versão","Common.Views.ReviewChanges.tipSharing":"Gerenciar direitos de acesso a documentos","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Fechar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedição","Common.Views.ReviewChanges.txtCommentRemAll":"Excluir todos os comentários","Common.Views.ReviewChanges.txtCommentRemCurrent":"Remover comentários atuais","Common.Views.ReviewChanges.txtCommentRemMy":"Excluir meus comentários","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Remover meus comentários atuais","Common.Views.ReviewChanges.txtCommentRemove":"Excluir","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos os comentários","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentários atuais","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver meus comentários","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver meus comentários atuais","Common.Views.ReviewChanges.txtHistory":"Histórico de versão","Common.Views.ReviewChanges.txtSharing":"Compartilhar","Common.Views.ReviewPopover.textAdd":"Adicionar","Common.Views.ReviewPopover.textAddReply":"Adicionar resposta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Fechar","Common.Views.ReviewPopover.textComment":"Comentário","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"Insira seu comentário aqui","Common.Views.ReviewPopover.textFollowMove":"Seguir movimento","Common.Views.ReviewPopover.textMention":"+menção fornecerá acesso ao documento e enviará um e-mail","Common.Views.ReviewPopover.textMentionNotify":"+menção notificará o usuário por e-mail","Common.Views.ReviewPopover.textOpenAgain":"Abrir novamente","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"Você não tem permissão para reabrir comentários","Common.Views.ReviewPopover.txtAccept":"Aceitar","Common.Views.ReviewPopover.txtDeleteTip":"Remover","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.ReviewPopover.txtReject":"Rejeitar","Common.Views.SaveAsDlg.textLoading":"Carregando","Common.Views.SaveAsDlg.textTitle":"Pasta para salvar","Common.Views.SearchPanel.textCaseSensitive":"Maiúsculas e Minúsculas","Common.Views.SearchPanel.textCloseSearch":"Fechar pesquisa","Common.Views.SearchPanel.textContentChanged":"Documento alterado.","Common.Views.SearchPanel.textFind":"Localizar","Common.Views.SearchPanel.textFindAndRedact":"Encontre e redija","Common.Views.SearchPanel.textFindAndReplace":"Localizar e substituir","Common.Views.SearchPanel.textFindRedact":"Encontrar e redigir","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} itens substituídos com sucesso.","Common.Views.SearchPanel.textMark":"Marcar para redação","Common.Views.SearchPanel.textMarkAll":"Marcar tudo","Common.Views.SearchPanel.textMatchUsingRegExp":"Corresponder usando expressões regulares","Common.Views.SearchPanel.textNoMatches":"Nenhuma correspondência","Common.Views.SearchPanel.textNoSearchResults":"Nenhum resultado de pesquisa","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} itens substituídos. Os {2} itens restantes estão bloqueados por outros usuários.","Common.Views.SearchPanel.textReplace":"Substituir","Common.Views.SearchPanel.textReplaceAll":"Substituir tudo","Common.Views.SearchPanel.textReplaceWith":"Substituir com","Common.Views.SearchPanel.textSearchAgain":"{0}Realize uma nova pesquisa{1} para obter resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"A pesquisa parou","Common.Views.SearchPanel.textSearchResults":"Resultados da pesquisa: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados da pesquisa","Common.Views.SearchPanel.textTooManyResults":"Há muitos resultados para mostrar aqui","Common.Views.SearchPanel.textWholeWords":"Palavras inteiras apenas","Common.Views.SearchPanel.tipNextResult":"Próximo resultado","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Carregando","Common.Views.SelectFileDlg.textTitle":"Selecionar Fonte de Dados","Common.Views.ShapeShadowDialog.txtAngle":"Ângulo","Common.Views.ShapeShadowDialog.txtDistance":"Distância","Common.Views.ShapeShadowDialog.txtSize":"Tamanho","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparência","Common.Views.ShortcutsDialog.txtDescription":"Descrição","Common.Views.ShortcutsDialog.txtEmpty":"Nenhuma correspondência encontrada. Ajuste sua busca.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restaurar tudo para os padrões","Common.Views.ShortcutsDialog.txtRestoreContinue":"Você deseja continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todas as configurações de atalhos serão restauradas para os padrões.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restaurar padrão","Common.Views.ShortcutsDialog.txtSearch":"Pesquisar","Common.Views.ShortcutsDialog.txtTitle":"Atalhos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Ação","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Digite o atalho desejado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"O atalho usado pelas ações %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"O atalho usado pelas ações %1 e não pode ser alterado","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"O atalho usado pela ação %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"O atalho usado pela ação %1 e não pode ser alterado","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Novo atalho","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Você deseja continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos os atalhos para a ação “%1” serão restaurados ao padrão.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restaurar padrão","Common.Views.ShortcutsEditDialog.txtTitle":"Editar atalho","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Digite o atalho desejado","Common.Views.UserNameDialog.textDontShow":"Não perguntar novamente","Common.Views.UserNameDialog.textLabel":"Etiqueta:","Common.Views.UserNameDialog.textLabelError":"Etiqueta não deve estar vazia.","PDFE.Controllers.InsTab.textAccent":"Acentos","PDFE.Controllers.InsTab.textBracket":"Parênteses","PDFE.Controllers.InsTab.textFraction":"Frações","PDFE.Controllers.InsTab.textFunction":"Funções","PDFE.Controllers.InsTab.textInsert":"Inserir","PDFE.Controllers.InsTab.textIntegral":"Integrais","PDFE.Controllers.InsTab.textLargeOperator":"Grandes operadores","PDFE.Controllers.InsTab.textLimitAndLog":"Limites e logaritmos","PDFE.Controllers.InsTab.textMatrix":"Matrizes","PDFE.Controllers.InsTab.textOperator":"Operadores","PDFE.Controllers.InsTab.textRadical":"Radicais","PDFE.Controllers.InsTab.textScript":"Scripts","PDFE.Controllers.InsTab.textShape":"Forma","PDFE.Controllers.InsTab.textSymbols":"Símbolos","PDFE.Controllers.InsTab.txtAccent_Accent":"Agudo","PDFE.Controllers.InsTab.txtAccent_ArrowD":"Seta para direita-esquerda acima","PDFE.Controllers.InsTab.txtAccent_ArrowL":"Seta para a esquerda acima","PDFE.Controllers.InsTab.txtAccent_ArrowR":"Seta para direita acima","PDFE.Controllers.InsTab.txtAccent_Bar":"Barra","PDFE.Controllers.InsTab.txtAccent_BarBot":"Barra inferior","PDFE.Controllers.InsTab.txtAccent_BarTop":"Barra superior","PDFE.Controllers.InsTab.txtAccent_BorderBox":"Fórmula Emoldurada (com Espaço Reservado)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"Fórmula embalada(Exemplo)","PDFE.Controllers.InsTab.txtAccent_Check":"Verificar","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"Suporte","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"Chave Superior","PDFE.Controllers.InsTab.txtAccent_Custom_1":"Vetor A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"Barra superior com ABC","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XOR y com barra superior","PDFE.Controllers.InsTab.txtAccent_DDDot":"Ponto triplo","PDFE.Controllers.InsTab.txtAccent_DDot":"Ponto duplo","PDFE.Controllers.InsTab.txtAccent_Dot":"Ponto","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"Barra superior dupla","PDFE.Controllers.InsTab.txtAccent_Grave":"Grave","PDFE.Controllers.InsTab.txtAccent_GroupBot":"Agrupando caractere abaixo","PDFE.Controllers.InsTab.txtAccent_GroupTop":"Agrupando caractere acima","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"Arpão para a esquerda acima","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"Arpão para direita acima","PDFE.Controllers.InsTab.txtAccent_Hat":"Acento circunflexo","PDFE.Controllers.InsTab.txtAccent_Smile":"Breve","PDFE.Controllers.InsTab.txtAccent_Tilde":"Til","PDFE.Controllers.InsTab.txtBasicShapes":"Formas básicas","PDFE.Controllers.InsTab.txtBracket_Angle":"Colchetes angulares","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"Parênteses com separadores","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"Colchetes angulares com dois separadores","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"Colchete de ângulo reto","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"Colchete angular esquerdo","PDFE.Controllers.InsTab.txtBracket_Curve":"Colchetes","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"Colchetes com separador","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"Colchete direito","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"colchete esquerdo","PDFE.Controllers.InsTab.txtBracket_Custom_1":"Casos (Duas Condições)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"Casos (Três Condições)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"Objeto de pilha","PDFE.Controllers.InsTab.txtBracket_Custom_4":"Objeto empilhado entre parênteses","PDFE.Controllers.InsTab.txtBracket_Custom_5":"Exemplo de casos","PDFE.Controllers.InsTab.txtBracket_Custom_6":"Coeficiente binominal","PDFE.Controllers.InsTab.txtBracket_Custom_7":"Coeficiente binominal","PDFE.Controllers.InsTab.txtBracket_Line":"Barras verticais","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"Barra vertical direita","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"Barra vertical esquerda","PDFE.Controllers.InsTab.txtBracket_LineDouble":"Barras verticais duplas","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"Barra vertical dupla direita","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"Barra vertical dupla esquerda","PDFE.Controllers.InsTab.txtBracket_LowLim":"Piso","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"Piso direito","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"Piso esquerdo","PDFE.Controllers.InsTab.txtBracket_Round":"Parênteses","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"Parênteses com separadores","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"Parêntese direito","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"Parêntese esquerdo","PDFE.Controllers.InsTab.txtBracket_Square":"Colchetes","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"Espaço reservado entre dois colchetes direitos","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"Colchetes invertidos","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"Colchete direito","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"Colchete esquerdo","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"Espaço reservado entre dois colchetes esquerdos","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"Colchetes duplos","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"Colchete duplo direito","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"Colchete duplo esquerdo","PDFE.Controllers.InsTab.txtBracket_UppLim":"Teto","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"Teto direito","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"Colchete Simples","PDFE.Controllers.InsTab.txtButtons":"Botões","PDFE.Controllers.InsTab.txtCallouts":"Textos explicativos","PDFE.Controllers.InsTab.txtCharts":"Gráficos","PDFE.Controllers.InsTab.txtFiguredArrows":"Setas figuradas","PDFE.Controllers.InsTab.txtFractionDiagonal":"Fração distorcida","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dx sobre dy","PDFE.Controllers.InsTab.txtFractionDifferential_2":"limite delta y sobre limite delta x","PDFE.Controllers.InsTab.txtFractionDifferential_3":"y parcial sobre x parcial","PDFE.Controllers.InsTab.txtFractionDifferential_4":"Delta y sobre delta x","PDFE.Controllers.InsTab.txtFractionHorizontal":"Fração linear","PDFE.Controllers.InsTab.txtFractionPi_2":"Pi sobre 2","PDFE.Controllers.InsTab.txtFractionSmall":"Fração pequena","PDFE.Controllers.InsTab.txtFractionVertical":"Fração empilhada","PDFE.Controllers.InsTab.txtFunction_1_Cos":"Função cosseno inverso","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"Função cosseno inverso hiperbólico","PDFE.Controllers.InsTab.txtFunction_1_Cot":"Função cotangente inversa","PDFE.Controllers.InsTab.txtFunction_1_Coth":"Função cotangente inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Csc":"Função cossecante inversa","PDFE.Controllers.InsTab.txtFunction_1_Csch":"Função cossecante inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Sec":"Função secante inversa","PDFE.Controllers.InsTab.txtFunction_1_Sech":"Função secante inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_1_Sin":"Função seno inverso","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"Função seno inverso hiperbólico","PDFE.Controllers.InsTab.txtFunction_1_Tan":"Função tangente inversa","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"Função tangente inversa hiperbólica","PDFE.Controllers.InsTab.txtFunction_Cos":"Função cosseno","PDFE.Controllers.InsTab.txtFunction_Cosh":"Função cosseno hiperbólico","PDFE.Controllers.InsTab.txtFunction_Cot":"Função cotangente","PDFE.Controllers.InsTab.txtFunction_Coth":"Função cotangente hiperbólica","PDFE.Controllers.InsTab.txtFunction_Csc":"Função cossecante","PDFE.Controllers.InsTab.txtFunction_Csch":"Função co-secante hiperbólica","PDFE.Controllers.InsTab.txtFunction_Custom_1":"Teta seno","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Cos 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"Fórmula da tangente","PDFE.Controllers.InsTab.txtFunction_Sec":"Função secante","PDFE.Controllers.InsTab.txtFunction_Sech":"Função secante hiperbólica","PDFE.Controllers.InsTab.txtFunction_Sin":"Função seno","PDFE.Controllers.InsTab.txtFunction_Sinh":"Função seno hiperbólico","PDFE.Controllers.InsTab.txtFunction_Tan":"Função da tangente","PDFE.Controllers.InsTab.txtFunction_Tanh":"Função tangente hiperbólica","PDFE.Controllers.InsTab.txtIntegral":"Integral","PDFE.Controllers.InsTab.txtIntegral_dtheta":"Teta diferencial","PDFE.Controllers.InsTab.txtIntegral_dx":"Diferencial x","PDFE.Controllers.InsTab.txtIntegral_dy":"Diferencial y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"Integral com limites acumulados","PDFE.Controllers.InsTab.txtIntegralDouble":"Integral dupla","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"Integral dupla com limites empilhados","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"Integral dupla com limites","PDFE.Controllers.InsTab.txtIntegralOriented":"Contorno integral","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"Integral de contorno com limites empilhados","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"Integral de Superfície","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"Integral de superfície com limites empilhados","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"Integral de superfície com limites","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"Integral de contorno com limites","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"Volume Integral","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"Integral de volume com limites empilhados","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"Integral de volume com limites","PDFE.Controllers.InsTab.txtIntegralSubSup":"Integral com limites","PDFE.Controllers.InsTab.txtIntegralTriple":"Inteiro triplo","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"Integral tripla com limites empilhados","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"Integral tripla com limites","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"Lógico e","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"Lógico E com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"Lógico E com limites","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"Lógico E com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"Lógico E com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"Coproduto","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"Coproduto com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"Coproduto com limites","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"Coproduto com limite inferior de subscrito","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"Coproduto com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"Soma sobre k de n escolha k","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"Soma de i igual a zero a n","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"Exemplo de soma usando dois índices","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"Exemplo de produto","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"Exemplo de união","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"Lógico ou","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"Lógico Ou com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"Lógico Ou com limites","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"Lógico Ou com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"Ou Lógico com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"Interseção","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"Interseção com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"Interseção com limites","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"Interseção com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"Interseção com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"Produto","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"Produto com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"Produto com limites","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"Produto com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"Produto com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"Somatório","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"Soma com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"Soma com limites","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"Soma com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"Soma com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLargeOperator_Union":"União","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"União com limite inferior","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"União com limites","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"União com limite inferior subscrito","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"União com limites subscritos/sobrescritos","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"Exemplo de limite","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"Exemplo máximo","PDFE.Controllers.InsTab.txtLimitLog_Lim":"Limite","PDFE.Controllers.InsTab.txtLimitLog_Ln":"Logaritmo natural","PDFE.Controllers.InsTab.txtLimitLog_Log":"Logaritmo","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"Logaritmo","PDFE.Controllers.InsTab.txtLimitLog_Max":"Máximo","PDFE.Controllers.InsTab.txtLimitLog_Min":"Mínimo","PDFE.Controllers.InsTab.txtLines":"Linhas","PDFE.Controllers.InsTab.txtMath":"Matemática","PDFE.Controllers.InsTab.txtMatrix_1_2":"Matriz Vazia 1x2","PDFE.Controllers.InsTab.txtMatrix_1_3":"Matriz Vazia 1x3","PDFE.Controllers.InsTab.txtMatrix_2_1":"Matriz Vazia 2x1","PDFE.Controllers.InsTab.txtMatrix_2_2":"Matriz Vazia 2x2","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"Matriz 2 por 2 vazia em barras verticais duplas","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"Determinante 2 por 2 vazio","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"Matriz 2 por 2 vazia entre parênteses","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"Matriz 2 por 2 vazia entre parênteses","PDFE.Controllers.InsTab.txtMatrix_2_3":"Matriz Vazia 2x3","PDFE.Controllers.InsTab.txtMatrix_3_1":"Matriz Vazia 3x1","PDFE.Controllers.InsTab.txtMatrix_3_2":"Matriz Vazia 3x2","PDFE.Controllers.InsTab.txtMatrix_3_3":"Matriz Vazia 3x3","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"Pontos de linha de base","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"Pontos da linha média","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"Pontos diagonais","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"Pontos verticais","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"Matriz esparsa entre parênteses","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"Matriz esparsa em parênteses","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"Matriz da identidade 2x2","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"Matriz da identidade 2x2","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"Matriz da identidade 3x3","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"Matriz da identidade 3x3","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"Seta para direita esquerda abaixo","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"Seta para direita-esquerda acima","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"Seta para a esquerda abaixo","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"Seta para a esquerda acima","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"Seta para direita abaixo","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"Seta para direita acima","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"Dois pontos iguais","PDFE.Controllers.InsTab.txtOperator_Custom_1":"Resultados","PDFE.Controllers.InsTab.txtOperator_Custom_2":"Resultados de Delta","PDFE.Controllers.InsTab.txtOperator_Definition":"Igual a por definição","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"Delta igual a","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"Seta para direita esquerda abaixo","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"Seta para direita-esquerda acima","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"Seta para a esquerda abaixo","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"Seta para a esquerda acima","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"Seta para direita abaixo","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"Seta para direita acima","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"Igual Igual","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"Menos igual","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"Sinal de Mais-Sinal de Igual","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"Medido por","PDFE.Controllers.InsTab.txtRadicalCustom_1":"Lado direito da fórmula quadrática","PDFE.Controllers.InsTab.txtRadicalCustom_2":"Raiz quadrada de a ao quadrado mais b ao quadrado","PDFE.Controllers.InsTab.txtRadicalRoot_2":"Raiz quadrada com grau","PDFE.Controllers.InsTab.txtRadicalRoot_3":"Raiz cúbica","PDFE.Controllers.InsTab.txtRadicalRoot_n":"Radical com grau","PDFE.Controllers.InsTab.txtRadicalSqrt":"Raiz quadrada","PDFE.Controllers.InsTab.txtRectangles":"Retângulos","PDFE.Controllers.InsTab.txtScriptCustom_1":"x subscrito y ao quadrado","PDFE.Controllers.InsTab.txtScriptCustom_2":"e elevado a menos i ômega t","PDFE.Controllers.InsTab.txtScriptCustom_3":"x ao quadrado","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y sobrescrito à esquerda n subscrito à esquerda um","PDFE.Controllers.InsTab.txtScriptSub":"Subscrito","PDFE.Controllers.InsTab.txtScriptSubSup":"Subscrito-Sobrescrito","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"Subscrito-sobrescrito à esquerda","PDFE.Controllers.InsTab.txtScriptSup":"Sobrescrito","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"Chamada de linha 1 (borda e barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"Texto explicativo da linha 2 (Borda e barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"Texto explicativo da linha 3 (Borda e barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"Chamada de linha 1 (barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"Chamada de linha 2 (barra de destaque)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"Texto explicativo da linha 3 (Barra de destaque)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"Botão voltar ou anterior","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"Botão inicial","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"Botão em branco","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"Botão documento","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"Botão terminar","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"Botão avançar ou próximo","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"Botão de ajuda","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"Botão Início","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"Botão de informação","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"Botão Vídeo","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"Botão Retornar","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"Botão de som","PDFE.Controllers.InsTab.txtShape_arc":"Arco","PDFE.Controllers.InsTab.txtShape_bentArrow":"Seta curvada","PDFE.Controllers.InsTab.txtShape_bentConnector5":"Conector em cotovelo","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"Conector de seta cotovelo","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"Conector em cotovelo de dupla seta","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"Seta para cima dobrada","PDFE.Controllers.InsTab.txtShape_bevel":"Bisel","PDFE.Controllers.InsTab.txtShape_blockArc":"Arco de bloco","PDFE.Controllers.InsTab.txtShape_borderCallout1":"Chamada de linha 1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"Chamada de linha 2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"Texto explicativo da linha 3","PDFE.Controllers.InsTab.txtShape_bracePair":"Chave dupla","PDFE.Controllers.InsTab.txtShape_callout1":"Chamada de linha 1 (sem borda)","PDFE.Controllers.InsTab.txtShape_callout2":"Texto explicativo da linha 2 (Sem borda)","PDFE.Controllers.InsTab.txtShape_callout3":"Texto explicativo da linha 3 (Sem borda)","PDFE.Controllers.InsTab.txtShape_can":"Pode","PDFE.Controllers.InsTab.txtShape_chevron":"Divisa","PDFE.Controllers.InsTab.txtShape_chord":"Acorde","PDFE.Controllers.InsTab.txtShape_circularArrow":"Seta circular","PDFE.Controllers.InsTab.txtShape_cloud":"Nuvem","PDFE.Controllers.InsTab.txtShape_cloudCallout":"Texto explicativo em nuvem","PDFE.Controllers.InsTab.txtShape_corner":"Canto","PDFE.Controllers.InsTab.txtShape_cube":"Cubo","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"Conector curvado","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"Conector de seta curvada","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"Conector de seta dupla curvado","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"Seta curva para baixo","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"Seta curvada para a esquerda","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"Seta curva para a direita","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"Seta curva para cima","PDFE.Controllers.InsTab.txtShape_decagon":"Decágono","PDFE.Controllers.InsTab.txtShape_diagStripe":"Faixa diagonal","PDFE.Controllers.InsTab.txtShape_diamond":"Diamante","PDFE.Controllers.InsTab.txtShape_dodecagon":"Dodecágono","PDFE.Controllers.InsTab.txtShape_donut":"Rosquinha","PDFE.Controllers.InsTab.txtShape_doubleWave":"Onda dupla","PDFE.Controllers.InsTab.txtShape_downArrow":"Seta para baixo","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"Texto explicativo em seta para baixo","PDFE.Controllers.InsTab.txtShape_ellipse":"Elipse","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"Fita curvada para baixo","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"Fita curvada","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"Fluxograma: Processo alternativo","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"Fluxograma: Agrupar","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"Fluxograma: Conector","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"Fluxograma: Decisão","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"Fluxograma: Atraso","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"Fluxograma: Exibir","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"Fluxograma: Documento","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"Fluxograma: Extrair","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"Fluxograma: Dados","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"Fluxograma: Armazenamento interno","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"Fluxograma: Disco magnético","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"Fluxograma: Armazenamento de acesso direto","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"Fluxograma: Armazenamento de acesso sequencial","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"Fluxograma: Entrada manual","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"Fluxograma: Operação manual","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"Fluxograma: Mesclar","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"Fluxograma: Vários Documentos","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"Fluxograma: Conector fora da página","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"Fluxograma: Dados armazenados","PDFE.Controllers.InsTab.txtShape_flowChartOr":"Fluxograma: Ou","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"Fluxograma: Processo predefinido","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"Fluxograma: Preparação","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"Fluxograma: Processo","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"Fluxograma: Cartão","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"Fluxograma: Fita perfurada","PDFE.Controllers.InsTab.txtShape_flowChartSort":"Fluxograma: Classificar","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"Fluxograma: Junção de soma","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"Fluxograma: Terminação","PDFE.Controllers.InsTab.txtShape_foldedCorner":"Canto dobrado","PDFE.Controllers.InsTab.txtShape_frame":"Quadro","PDFE.Controllers.InsTab.txtShape_halfFrame":"Meia moldura","PDFE.Controllers.InsTab.txtShape_heart":"Coração","PDFE.Controllers.InsTab.txtShape_heptagon":"Heptágono","PDFE.Controllers.InsTab.txtShape_hexagon":"Hexágono","PDFE.Controllers.InsTab.txtShape_homePlate":"Pentágono","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"Rolagem horizontal","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"Explosão 1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"Explosão 2","PDFE.Controllers.InsTab.txtShape_leftArrow":"Seta para esquerda","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"Chamada de seta para a esquerda","PDFE.Controllers.InsTab.txtShape_leftBrace":"Chave esquerda","PDFE.Controllers.InsTab.txtShape_leftBracket":"Colchete esquerdo","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"Seta esquerda direita","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"Texto explicativo da seta para a esquerda e para a direita","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"Seta para cima esquerda e direita","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"Seta para cima à esquerda","PDFE.Controllers.InsTab.txtShape_lightningBolt":"Raio","PDFE.Controllers.InsTab.txtShape_line":"Linha","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"Seta","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"Seta dupla","PDFE.Controllers.InsTab.txtShape_mathDivide":"Divisão","PDFE.Controllers.InsTab.txtShape_mathEqual":"Igual","PDFE.Controllers.InsTab.txtShape_mathMinus":"Menos","PDFE.Controllers.InsTab.txtShape_mathMultiply":"Multiplicar","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"Não é igual","PDFE.Controllers.InsTab.txtShape_mathPlus":"Mais","PDFE.Controllers.InsTab.txtShape_moon":"Lua","PDFE.Controllers.InsTab.txtShape_noSmoking":"Símbolo \"Não\"","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"Seta direita entalhada","PDFE.Controllers.InsTab.txtShape_octagon":"Octógono","PDFE.Controllers.InsTab.txtShape_parallelogram":"Paralelograma","PDFE.Controllers.InsTab.txtShape_pentagon":"Pentágono","PDFE.Controllers.InsTab.txtShape_pie":"Gráfico de pizza","PDFE.Controllers.InsTab.txtShape_plaque":"Assinar","PDFE.Controllers.InsTab.txtShape_plus":"Mais","PDFE.Controllers.InsTab.txtShape_polyline1":"Rabisco","PDFE.Controllers.InsTab.txtShape_polyline2":"Forma livre","PDFE.Controllers.InsTab.txtShape_quadArrow":"Seta quádrupla","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"Texto explicativo em seta quádrupla","PDFE.Controllers.InsTab.txtShape_rect":"Retângulo","PDFE.Controllers.InsTab.txtShape_ribbon":"Faixa para baixo","PDFE.Controllers.InsTab.txtShape_ribbon2":"Fita para cima","PDFE.Controllers.InsTab.txtShape_rightArrow":"Seta para direita","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"Texto explicativo da seta à direita","PDFE.Controllers.InsTab.txtShape_rightBrace":"Chave à direita","PDFE.Controllers.InsTab.txtShape_rightBracket":"Colchete direito","PDFE.Controllers.InsTab.txtShape_round1Rect":"Retângulo com único canto arredondado","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"Retângulo de canto diagonal arredondado ","PDFE.Controllers.InsTab.txtShape_round2SameRect":"Retângulo arredondado do mesmo lado","PDFE.Controllers.InsTab.txtShape_roundRect":"Retângulo arredondado","PDFE.Controllers.InsTab.txtShape_rtTriangle":"Triângulo retângulo","PDFE.Controllers.InsTab.txtShape_smileyFace":"Rosto sorridente","PDFE.Controllers.InsTab.txtShape_snip1Rect":"Retângulo de canto único recortado","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"Retângulo de canto diagonal recortado","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"Retângulo com canto recortado do mesmo lado","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"Retângulo com canto recortado e arredondado","PDFE.Controllers.InsTab.txtShape_spline":"Curva","PDFE.Controllers.InsTab.txtShape_star10":"Estrela de 10 pontas","PDFE.Controllers.InsTab.txtShape_star12":"Estrela de 12 pontas","PDFE.Controllers.InsTab.txtShape_star16":"Estrela de 16 pontas","PDFE.Controllers.InsTab.txtShape_star24":"Estrela de 24 pontas","PDFE.Controllers.InsTab.txtShape_star32":"Estrela de 32 pontas","PDFE.Controllers.InsTab.txtShape_star4":"Estrela de 4 pontas","PDFE.Controllers.InsTab.txtShape_star5":"Estrela de 5 pontas","PDFE.Controllers.InsTab.txtShape_star6":"Estrela de 6 pontas","PDFE.Controllers.InsTab.txtShape_star7":"Estrela de 7 pontas","PDFE.Controllers.InsTab.txtShape_star8":"Estrela de 8 pontas","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"Seta para a direita listrada","PDFE.Controllers.InsTab.txtShape_sun":"Sol","PDFE.Controllers.InsTab.txtShape_teardrop":"Lágrima","PDFE.Controllers.InsTab.txtShape_textRect":"Caixa de texto","PDFE.Controllers.InsTab.txtShape_trapezoid":"Trapézio","PDFE.Controllers.InsTab.txtShape_triangle":"Triângulo","PDFE.Controllers.InsTab.txtShape_upArrow":"Seta para cima","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"Chamada de seta para cima","PDFE.Controllers.InsTab.txtShape_upDownArrow":"Seta para cima e para baixo","PDFE.Controllers.InsTab.txtShape_uturnArrow":"Seta de inversão de marcha","PDFE.Controllers.InsTab.txtShape_verticalScroll":"Rolagem vertical","PDFE.Controllers.InsTab.txtShape_wave":"Onda","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"Texto explicativo oval","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"Texto explicativo retangular","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"Texto explicativo retangular arredondado","PDFE.Controllers.InsTab.txtStarsRibbons":"Estrelas e arco-íris","PDFE.Controllers.InsTab.txtSymbol_about":"Aproximadamente","PDFE.Controllers.InsTab.txtSymbol_additional":"Complemento","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Alfa","PDFE.Controllers.InsTab.txtSymbol_approx":"Quase igual a","PDFE.Controllers.InsTab.txtSymbol_ast":"Operador de asterisco","PDFE.Controllers.InsTab.txtSymbol_beta":"Beta","PDFE.Controllers.InsTab.txtSymbol_beth":"Aposta","PDFE.Controllers.InsTab.txtSymbol_bullet":"Operador de marcador","PDFE.Controllers.InsTab.txtSymbol_cap":"Interseção","PDFE.Controllers.InsTab.txtSymbol_cbrt":"Raiz cúbica","PDFE.Controllers.InsTab.txtSymbol_cdots":"Elipse horizontal na linha média","PDFE.Controllers.InsTab.txtSymbol_celsius":"Graus Celsius","PDFE.Controllers.InsTab.txtSymbol_chi":"Chi","PDFE.Controllers.InsTab.txtSymbol_cong":"Aproximadamente igual a","PDFE.Controllers.InsTab.txtSymbol_cup":"União","PDFE.Controllers.InsTab.txtSymbol_ddots":"Reticências diagonal para baixo à direita","PDFE.Controllers.InsTab.txtSymbol_degree":"Graus","PDFE.Controllers.InsTab.txtSymbol_delta":"Delta","PDFE.Controllers.InsTab.txtSymbol_div":"Sinal de divisão","PDFE.Controllers.InsTab.txtSymbol_downarrow":"Seta para baixo","PDFE.Controllers.InsTab.txtSymbol_emptyset":"Conjunto vazio","PDFE.Controllers.InsTab.txtSymbol_epsilon":"Epsílon","PDFE.Controllers.InsTab.txtSymbol_equals":"Igual","PDFE.Controllers.InsTab.txtSymbol_equiv":"Idêntico a","PDFE.Controllers.InsTab.txtSymbol_eta":"Eta","PDFE.Controllers.InsTab.txtSymbol_exists":"Existe","PDFE.Controllers.InsTab.txtSymbol_factorial":"Fatorial","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"Graus Fahrenheit","PDFE.Controllers.InsTab.txtSymbol_forall":"Para todos","PDFE.Controllers.InsTab.txtSymbol_gamma":"Gama","PDFE.Controllers.InsTab.txtSymbol_geq":"Maior que ou igual a","PDFE.Controllers.InsTab.txtSymbol_gg":"Muito superior a","PDFE.Controllers.InsTab.txtSymbol_greater":"Superior a","PDFE.Controllers.InsTab.txtSymbol_in":"Elemento de","PDFE.Controllers.InsTab.txtSymbol_inc":"Incremento","PDFE.Controllers.InsTab.txtSymbol_infinity":"Infinidade","PDFE.Controllers.InsTab.txtSymbol_iota":"Iota","PDFE.Controllers.InsTab.txtSymbol_kappa":"Kappa","PDFE.Controllers.InsTab.txtSymbol_lambda":"Lambda","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"Seta para esquerda","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"Seta esquerda-direita","PDFE.Controllers.InsTab.txtSymbol_leq":"Menos que ou igual a","PDFE.Controllers.InsTab.txtSymbol_less":"Menor que","PDFE.Controllers.InsTab.txtSymbol_ll":"Muito inferior a","PDFE.Controllers.InsTab.txtSymbol_minus":"Menos","PDFE.Controllers.InsTab.txtSymbol_mp":"Menos mais","PDFE.Controllers.InsTab.txtSymbol_mu":"Mu","PDFE.Controllers.InsTab.txtSymbol_nabla":" Nabla","PDFE.Controllers.InsTab.txtSymbol_neq":"Não igual a","PDFE.Controllers.InsTab.txtSymbol_ni":"Contém como membro","PDFE.Controllers.InsTab.txtSymbol_not":"Não entrar","PDFE.Controllers.InsTab.txtSymbol_notexists":"Não existe","PDFE.Controllers.InsTab.txtSymbol_nu":"Nu","PDFE.Controllers.InsTab.txtSymbol_o":"Omicron","PDFE.Controllers.InsTab.txtSymbol_omega":"Ômega","PDFE.Controllers.InsTab.txtSymbol_partial":"Diferencial parcial","PDFE.Controllers.InsTab.txtSymbol_percent":"Porcentagem","PDFE.Controllers.InsTab.txtSymbol_phi":"Phi","PDFE.Controllers.InsTab.txtSymbol_pi":"Pi","PDFE.Controllers.InsTab.txtSymbol_plus":"Mais","PDFE.Controllers.InsTab.txtSymbol_pm":"Sinal de Menos-Sinal de Igual","PDFE.Controllers.InsTab.txtSymbol_propto":"Proporcional a","PDFE.Controllers.InsTab.txtSymbol_psi":"Psi","PDFE.Controllers.InsTab.txtSymbol_qdrt":"Quarta raiz","PDFE.Controllers.InsTab.txtSymbol_qed":"Fim da prova","PDFE.Controllers.InsTab.txtSymbol_rddots":"Reticências diagonais acima à direita","PDFE.Controllers.InsTab.txtSymbol_rho":"Rho","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"Seta para direita","PDFE.Controllers.InsTab.txtSymbol_sigma":"Sigma","PDFE.Controllers.InsTab.txtSymbol_sqrt":"Sinal de Radical","PDFE.Controllers.InsTab.txtSymbol_tau":"Tau","PDFE.Controllers.InsTab.txtSymbol_therefore":"Portanto","PDFE.Controllers.InsTab.txtSymbol_theta":"Teta","PDFE.Controllers.InsTab.txtSymbol_times":"Sinal de multiplicação","PDFE.Controllers.InsTab.txtSymbol_uparrow":"Seta para cima","PDFE.Controllers.InsTab.txtSymbol_upsilon":"Ípsilon","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"Variante de Epsílon","PDFE.Controllers.InsTab.txtSymbol_varphi":"Variante de Phi","PDFE.Controllers.InsTab.txtSymbol_varpi":"Variante de Pi","PDFE.Controllers.InsTab.txtSymbol_varrho":"Variante de Rho","PDFE.Controllers.InsTab.txtSymbol_varsigma":"Variante de Sigma","PDFE.Controllers.InsTab.txtSymbol_vartheta":"Variante de Teta","PDFE.Controllers.InsTab.txtSymbol_vdots":"Reticências verticais","PDFE.Controllers.InsTab.txtSymbol_xsi":"Xi","PDFE.Controllers.InsTab.txtSymbol_zeta":"Zeta","PDFE.Controllers.LeftMenu.leavePageText":"Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.","PDFE.Controllers.LeftMenu.newDocumentTitle":"Documento sem nome","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"Aviso","PDFE.Controllers.LeftMenu.requestEditRightsText":"Solicitando direitos de edição...","PDFE.Controllers.LeftMenu.textLoadHistory":"Carregando o histórico de versões...","PDFE.Controllers.LeftMenu.textNoTextFound":"Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.","PDFE.Controllers.LeftMenu.textSelectPath":"Digite um novo nome para salvar a cópia do arquivo","PDFE.Controllers.LeftMenu.txtCompatible":"O documento será salvo em novo formato. Isto permitirá usar todos os recursos de editor, mas pode afetar o layout do documento.
Use a opção de 'Compatibilidade' para configurações avançadas se deseja tornar o arquivo compatível com versões antigas do MS Word.","PDFE.Controllers.LeftMenu.txtUntitled":"Sem título","PDFE.Controllers.LeftMenu.warnDownloadAs":"Se você continuar salvando neste formato, todos os recursos, exceto o texto, serão perdidos.
Tem certeza de que deseja continuar?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"O documento resultante será otimizado para permitir que você edite o texto, portanto, não gráficos exatamente iguais ao original, se o arquivo original contiver muitos gráficos.","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?","PDFE.Controllers.Main.applyChangesTextText":"Carregando as alterações...","PDFE.Controllers.Main.applyChangesTitleText":"Carregando as alterações","PDFE.Controllers.Main.confirmMaxChangesSize":"O tamanho das ações excede a limitação definida para seu servidor.
Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).","PDFE.Controllers.Main.convertationTimeoutText":"Tempo limite de conversão excedido.","PDFE.Controllers.Main.criticalErrorExtText":"Pressione \"OK\" para voltar para a lista de documentos.","PDFE.Controllers.Main.criticalErrorExtTextClose":"Pressione \"OK\" para fechar o editor.","PDFE.Controllers.Main.criticalErrorTitle":"Erro","PDFE.Controllers.Main.downloadErrorText":"Erro ao baixar arquivo.","PDFE.Controllers.Main.downloadMergeText":"Baixando...","PDFE.Controllers.Main.downloadMergeTitle":"Baixando","PDFE.Controllers.Main.downloadTextText":"Baixando documento...","PDFE.Controllers.Main.downloadTitleText":"Baixando documento","PDFE.Controllers.Main.errorAccessDeny":"Você está tentando executar uma ação que você não tem direitos.
Contate o administrador do Servidor de Documentos.","PDFE.Controllers.Main.errorBadImageUrl":"URL de imagem está incorreta","PDFE.Controllers.Main.errorCannotPasteImg":"Não podemos colar esta imagem da área de transferência, mas você pode salvá-la em seu dispositivo e\ninsira-o a partir daí ou copie a imagem sem texto e cole-a no documento.","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"Conexão com servidor perdida. O documento não pode ser editado neste momento.","PDFE.Controllers.Main.errorComboSeries":"Para criar um gráfico de combinação, selecione pelo menos duas séries de dados.","PDFE.Controllers.Main.errorConnectToServer":"O documento não pode ser gravado. Verifique as configurações de conexão ou entre em contato com o administrador.
Quando você clicar no botão 'OK', você será solicitado ao baixar o documento.","PDFE.Controllers.Main.errorCopyDisabled":"Por motivos de segurança, o conteúdo deste documento não pode ser copiado.","PDFE.Controllers.Main.errorDatabaseConnection":"Erro externo.
Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.","PDFE.Controllers.Main.errorDataEncrypted":"Alteração criptografadas foram recebidas, e não podem ser decifradas.","PDFE.Controllers.Main.errorDataRange":"Intervalo de dados incorreto.","PDFE.Controllers.Main.errorDefaultMessage":"Código do erro: %1","PDFE.Controllers.Main.errorDirectUrl":"Por favor, verifique o link para o documento.
Este link deve ser o link direto para baixar o arquivo.","PDFE.Controllers.Main.errorEditingDownloadas":"Ocorreu um erro.
Use a opção 'Baixar como' para gravar a cópia de backup em seu computador.","PDFE.Controllers.Main.errorEditingSaveas":"Ocorreu um erro durante o trabalho com o documento.
Use a opção 'Salvar como ...' para salvar a cópia de backup do arquivo no disco rígido do computador.","PDFE.Controllers.Main.errorEmailClient":"Nenhum cliente de e-mail foi encontrado.","PDFE.Controllers.Main.errorFilePassProtect":"O documento é protegido por senha e não pode ser aberto.","PDFE.Controllers.Main.errorFileSizeExceed":"O tamanho do arquivo excede o limite de seu servidor.
Por favor, contate seu administrador de Servidor de Documentos para detalhes.","PDFE.Controllers.Main.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.","PDFE.Controllers.Main.errorInconsistentExt":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo não corresponde à extensão do arquivo.","PDFE.Controllers.Main.errorInconsistentExtDocx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtPdf":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtPptx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.","PDFE.Controllers.Main.errorInconsistentExtXlsx":"Ocorreu um erro ao abrir o arquivo.
O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.","PDFE.Controllers.Main.errorKeyEncrypt":"Descrição de chave desconhecida","PDFE.Controllers.Main.errorKeyExpire":"Descritor de chave expirado","PDFE.Controllers.Main.errorLoadingFont":"As fontes não foram carregadas.
Entre em contato com o administrador do Document Server.","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"A senha fornecida não está correta.
Verifique se a tecla CAPS LOCK está desligada e use a capitalização correta.","PDFE.Controllers.Main.errorPDFFormsLocked":"A ação não pode ser executada porque causa alterações em formulários bloqueados.","PDFE.Controllers.Main.errorSaveWatermark":"Este arquivo contém uma imagem de marca d'água vinculada a outro domínio.
Para torná-la visível no PDF, atualize a imagem da marca d'água para que ela seja vinculada ao mesmo domínio do documento ou carregue-a de seu computador.","PDFE.Controllers.Main.errorServerVersion":"A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.","PDFE.Controllers.Main.errorSessionAbsolute":"A sessão de edição de documentos expirou. Atualize a página.","PDFE.Controllers.Main.errorSessionIdle":"O documento ficou sem edição por muito tempo. Por favor atualize a página.","PDFE.Controllers.Main.errorSessionToken":"A conexão com o servidor foi interrompida. Por favor atualize a página.","PDFE.Controllers.Main.errorSetPassword":"Não foi possível definir a senha.","PDFE.Controllers.Main.errorStockChart":"Ordem de linha incorreta. Para construir um gráfico de ações, coloque os dados na planilha na seguinte ordem:
preço de abertura, preço máximo, preço mínimo, preço de fechamento.","PDFE.Controllers.Main.errorTextFormWrongFormat":"O valor inserido não corresponde ao formato do campo.","PDFE.Controllers.Main.errorToken":"O token de segurança do documento não foi formado corretamente.
Entre em contato com o administrador do Document Server.","PDFE.Controllers.Main.errorTokenExpire":"O token de segurança do documento expirou.
Entre em contato com o administrador do Document Server.","PDFE.Controllers.Main.errorUpdateVersion":"A versão do arquivo foi alterada. A página será recarregada.","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"A conexão foi restaurada e a versão do arquivo foi alterada.
Antes de continuar trabalhando, você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido e, em seguida, recarregar esta página.","PDFE.Controllers.Main.errorUserDrop":"O arquivo não pode ser acessado agora.","PDFE.Controllers.Main.errorUsersExceed":"O número de usuários permitidos pelo plano de preços foi excedido","PDFE.Controllers.Main.errorViewerDisconnect":"A conexão foi perdida. Você ainda poderá visualizar o documento,
mas não poderá baixá-lo ou imprimi-lo até que a conexão seja restaurada e a página recarregada.","PDFE.Controllers.Main.leavePageText":"Você não salvou as alterações neste documento. Clique em \"Permanecer nesta página\", em seguida, clique em \"Salvar\" para salvá-las. Clique em \"Sair desta página\" para descartar todas as alterações não salvas.","PDFE.Controllers.Main.leavePageTextOnClose":"Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.","PDFE.Controllers.Main.loadFontsTextText":"Carregando dados...","PDFE.Controllers.Main.loadFontsTitleText":"Carregando dados","PDFE.Controllers.Main.loadFontTextText":"Carregando dados...","PDFE.Controllers.Main.loadFontTitleText":"Carregando dados","PDFE.Controllers.Main.loadImagesTextText":"Carregando imagens...","PDFE.Controllers.Main.loadImagesTitleText":"Carregando imagens","PDFE.Controllers.Main.loadImageTextText":"Carregando imagem...","PDFE.Controllers.Main.loadImageTitleText":"Carregando imagem","PDFE.Controllers.Main.loadingDocumentTextText":"Carregando documento...","PDFE.Controllers.Main.loadingDocumentTitleText":"Carregando documento","PDFE.Controllers.Main.notcriticalErrorTitle":"Aviso","PDFE.Controllers.Main.openErrorText":"Ocorreu um erro ao abrir o arquivo","PDFE.Controllers.Main.openTextText":"Abrindo documento...","PDFE.Controllers.Main.openTitleText":"Abrindo documento","PDFE.Controllers.Main.printTextText":"Imprimindo documento...","PDFE.Controllers.Main.printTitleText":"Imprimindo documento","PDFE.Controllers.Main.reloadButtonText":"Recarregar página","PDFE.Controllers.Main.requestEditFailedMessageText":"Alguém está editando este documento neste momento. Tente novamente mais tarde.","PDFE.Controllers.Main.requestEditFailedTitleText":"Acesso negado","PDFE.Controllers.Main.saveErrorText":"Ocorreu um erro ao salvar o arquivo","PDFE.Controllers.Main.saveErrorTextDesktop":"Este arquivo não pode ser salvo ou criado.
Possíveis razões são:
1. O arquivo é somente leitura.
2. O arquivo está sendo editado por outros usuários.
3. O disco está cheio ou corrompido.","PDFE.Controllers.Main.saveTextText":"Salvando documento...","PDFE.Controllers.Main.saveTitleText":"Salvando documento","PDFE.Controllers.Main.scriptLoadError":"A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.","PDFE.Controllers.Main.splitDividerErrorText":"O número de linhas deve ser um divisor de %1.","PDFE.Controllers.Main.splitMaxColsErrorText":"O número de colunas deve ser inferior a %1.","PDFE.Controllers.Main.splitMaxRowsErrorText":"O número de linhas deve ser inferior a %1.","PDFE.Controllers.Main.textAnonymous":"Anônimo","PDFE.Controllers.Main.textAnyone":"Alguém","PDFE.Controllers.Main.textBuyNow":"Visitar site","PDFE.Controllers.Main.textChangesSaved":"Todas as alterações foram salvas","PDFE.Controllers.Main.textClose":"Fechar","PDFE.Controllers.Main.textCloseTip":"Clique para fechar a dica","PDFE.Controllers.Main.textConnectionLost":"Tentando conectar. Verifique as configurações de conexão.","PDFE.Controllers.Main.textContactUs":"Entre em contato com o departamento de vendas","PDFE.Controllers.Main.textContinue":"Continuar","PDFE.Controllers.Main.textCustomLoader":"Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador.
Por favor, contate o Departamento de Vendas para fazer cotação.","PDFE.Controllers.Main.textDisconnect":"A conexão está perdida","PDFE.Controllers.Main.textGuest":"Visitante","PDFE.Controllers.Main.textLearnMore":"Saiba mais","PDFE.Controllers.Main.textLoadingDocument":"Carregando documento","PDFE.Controllers.Main.textLongName":"Insira um nome com menos de 128 caracteres.","PDFE.Controllers.Main.textNoLicenseTitle":"Limite de licença atingido","PDFE.Controllers.Main.textPaidFeature":"Recurso pago","PDFE.Controllers.Main.textReconnect":"A conexão é restaurada","PDFE.Controllers.Main.textRemember":"Lembre-se da minha escolha","PDFE.Controllers.Main.textRenameError":"O nome de usuário não pode estar vazio.","PDFE.Controllers.Main.textRenameLabel":"Insira um nome a ser usado para colaboração","PDFE.Controllers.Main.textShape":"Forma","PDFE.Controllers.Main.textStrict":"Modo estrito","PDFE.Controllers.Main.textText":"Тexto","PDFE.Controllers.Main.textTryQuickPrint":"Você selecionou Impressão rápida: todo o documento será impresso na última impressora selecionada ou padrão.
Deseja continuar?","PDFE.Controllers.Main.textTryUndoRedo":"As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.
Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",","PDFE.Controllers.Main.textTryUndoRedoWarn":"As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido","PDFE.Controllers.Main.textUndo":"Desfazer","PDFE.Controllers.Main.textUpdateVersion":"O documento não pode ser editado agora.
Tentando atualizar o arquivo, aguarde...","PDFE.Controllers.Main.textUpdating":"Atualizando","PDFE.Controllers.Main.tipLicenseExceeded":"O documento está aberto no modo somente leitura, pois o número máximo de conexões simultâneas permitidas pela licença foi atingido.

Tente novamente mais tarde ou entre em contato com o proprietário do documento se precisar de acesso de edição.","PDFE.Controllers.Main.tipLicenseUsersExceeded":"O documento está aberto no modo somente leitura, pois o número máximo de usuários autorizados a editar documentos por licença foi atingido.

Tente novamente mais tarde ou entre em contato com o proprietário do documento se precisar de acesso de edição.","PDFE.Controllers.Main.titleLicenseExp":"A licença expirou","PDFE.Controllers.Main.titleLicenseNotActive":"Licença inativa","PDFE.Controllers.Main.titleReadOnly":"Modo somente leitura","PDFE.Controllers.Main.titleServerVersion":"Editor atualizado","PDFE.Controllers.Main.titleUpdateVersion":"Versão alterada","PDFE.Controllers.Main.txtArt":"Seu texto aqui","PDFE.Controllers.Main.txtButton":"Botão","PDFE.Controllers.Main.txtCheckbox":"Caixa de verificação","PDFE.Controllers.Main.txtChoose":"Escolha um item","PDFE.Controllers.Main.txtClickToLoad":"Clique para carregar imagem","PDFE.Controllers.Main.txtDiagramTitle":"Título do Gráfico","PDFE.Controllers.Main.txtDocUnlockDescription":"Digite uma senha para desproteger o documento","PDFE.Controllers.Main.txtDropdown":"Suspenso","PDFE.Controllers.Main.txtEditingMode":"Definir modo de edição...","PDFE.Controllers.Main.txtEnterDate":"Insira uma data","PDFE.Controllers.Main.txtErrorLoadHistory":"O carregamento de histórico falhou","PDFE.Controllers.Main.txtGroup":"Grupo","PDFE.Controllers.Main.txtInvalidGreater":"Valor inválido para campo \"{0}\": deve ser maior ou igual a {1}.","PDFE.Controllers.Main.txtInvalidGreaterLess":"Valor inválido para campo \"{0}\": deve ser maior ou igual a {1} e menor ou igual a {2}.","PDFE.Controllers.Main.txtInvalidLess":"Valor inválido para campo \"{0}\": deve ser menor ou igual a {1}.","PDFE.Controllers.Main.txtInvalidPdfFormat":"O valor inserido não corresponde ao formato do campo \"{0}\".","PDFE.Controllers.Main.txtInvalidValue":"Valor inválido para o campo \"{0}\"","PDFE.Controllers.Main.txtListbox":"Caixa de listagem","PDFE.Controllers.Main.txtNeedSynchronize":"Você tem atualizações","PDFE.Controllers.Main.txtSaveCopyAsComplete":"A cópia do arquivo foi salva com êxito","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"Este documento está tentando se conectar a {0}.
Se você confia neste site, pressione \"OK\".","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"Este documento está tentando abrir a caixa de diálogo de arquivo, pressione \"OK\" para abrir.","PDFE.Controllers.Main.txtSeries":"Série","PDFE.Controllers.Main.txtSignature":"Assinatura","PDFE.Controllers.Main.txtText":"Тexto","PDFE.Controllers.Main.txtUnlockTitle":"Desproteger documento","PDFE.Controllers.Main.txtValidPdfFormat":"O valor do campo deve corresponder ao formato \"{0}\".","PDFE.Controllers.Main.txtXAxis":"Eixo X","PDFE.Controllers.Main.txtYAxis":"Eixo Y","PDFE.Controllers.Main.unknownErrorText":"Erro desconhecido.","PDFE.Controllers.Main.unsupportedBrowserErrorText":"Seu navegador não é suportado.","PDFE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconhecido.","PDFE.Controllers.Main.uploadDocFileCountMessage":"Nenhum documento carregado.","PDFE.Controllers.Main.uploadDocSizeMessage":"Tamanho máximo do documento excedido.","PDFE.Controllers.Main.uploadImageExtMessage":"Formato de imagem desconhecido.","PDFE.Controllers.Main.uploadImageFileCountMessage":"Sem imagens carregadas.","PDFE.Controllers.Main.uploadImageSizeMessage":"Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.","PDFE.Controllers.Main.uploadImageTextText":"Carregando imagem...","PDFE.Controllers.Main.uploadImageTitleText":"Carregando imagem","PDFE.Controllers.Main.waitText":"Por favor, aguarde...","PDFE.Controllers.Main.warnBrowserIE9":"O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior","PDFE.Controllers.Main.warnBrowserZoom":"A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.","PDFE.Controllers.Main.warnLicenseAnonymous":"Acesso negado para usuários anônimos.
Este documento será aberto apenas para visualização.","PDFE.Controllers.Main.warnLicenseBefore":"Licença inativa.
Entre em contato com seu administrador.","PDFE.Controllers.Main.warnLicenseExp":"Sua licença expirou.
Atualize sua licença e refresque a página.","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"A licença expirou.
Você não tem acesso à funcionalidade de edição de documentos.
Por favor, contate seu administrador.","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"A licença precisa ser renovada.
Você tem acesso limitado à funcionalidade de edição de documentos.
Entre em contato com o administrador para obter acesso total.","PDFE.Controllers.Main.warnNoLicense":"Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.","PDFE.Controllers.Main.warnNoLicenseUsers":"Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.","PDFE.Controllers.Main.warnProcessRightsChange":"Foi negado a você o direito de editar o arquivo.","PDFE.Controllers.Navigation.txtBeginning":"Início do documento","PDFE.Controllers.Navigation.txtGotoBeginning":"Ir para o início do documento","PDFE.Controllers.Print.textMarginsLast":"Último personalizado","PDFE.Controllers.Print.txtCustom":"Personalizar","PDFE.Controllers.Print.txtPrintRangeInvalid":"Intervalo de impressão inválido","PDFE.Controllers.RedactTab.applyButtonText":"Aplicar","PDFE.Controllers.RedactTab.doNotApplyButtonText":"Não se aplica","PDFE.Controllers.RedactTab.textApplyRedact":"As informações suprimidas serão removidas permanentemente deste documento. Após salvá-las, não será mais possível recuperá-las.","PDFE.Controllers.RedactTab.textEnterPageRange":"Insira o intervalo de páginas para redação","PDFE.Controllers.RedactTab.textEnterRangeDescription":"por exemplo 1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"Redigir páginas","PDFE.Controllers.RedactTab.textUnappliedRedactions":"Este documento contém marcas de redação que ainda não foram aplicadas.

Até que você selecione “Aplicar Redações”, essas marcas podem ser removidas e as informações podem ser recuperadas","PDFE.Controllers.RedactTab.tipApplyRedaction":"Aplique e salve todas as redações. Redações não salvas ainda podem ser desfeitas.","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"Aplicar redações","PDFE.Controllers.RedactTab.tipMarkForRedaction":"Use essas ferramentas para marcar, pesquisar e redigir conteúdo confidencial em seu PDF","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"Marcar para redações","PDFE.Controllers.RedactTab.txtInvalidFormat":"Formato inválido. Use um único número ou intervalo com hífen, por exemplo, 2 ou 2-6.","PDFE.Controllers.RedactTab.txtInvalidRange":"As páginas devem ter entre 1 e {0}","PDFE.Controllers.RedactTab.txtReversedRange":"A página inicial deve ser menor ou igual à página final","PDFE.Controllers.Search.notcriticalErrorTitle":"Aviso","PDFE.Controllers.Search.textNoTextFound":"Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.","PDFE.Controllers.Search.textReplaceSkipped":"A substituição foi realizada. {0} ocorrências foram ignoradas.","PDFE.Controllers.Search.textReplaceSuccess":"A pesquisa foi feita. {0} ocorrências foram substituídas","PDFE.Controllers.Search.warnReplaceString":"{0} não é um caractere especial válido para a caixa Substituir Por.","PDFE.Controllers.Statusbar.textDisconnect":"A conexão foi perdida
Tentando conectar. Verifique as configurações de conexão.","PDFE.Controllers.Statusbar.zoomText":"Zoom {0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"A fonte que você vai salvar não está disponível no dispositivo atual.
O estilo do texto será exibido usando uma das fontes do dispositivo, a fonte salva será usada quando estiver disponível.
Deseja continuar?","PDFE.Controllers.Toolbar.errorAccessDeny":"Você está tentando executar uma ação que você não tem direitos.
Contate o administrador do Servidor de Documentos.","PDFE.Controllers.Toolbar.helpAnnotRect":"Descubra novas ferramentas de anotação: Retângulo, Círculo, Seta e Linhas Conectadas.","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"Novas anotações","PDFE.Controllers.Toolbar.helpPdfCharts":"Insira e edite gráficos e SmartArt diretamente em seus arquivos PDF.","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"Gráficos e SmartArt em PDF","PDFE.Controllers.Toolbar.helpRedactTab":"Proteja informações confidenciais com o recurso Redact, que permite remover conteúdo confidencial com segurança.","PDFE.Controllers.Toolbar.helpRedactTabHeader":"Redigir em PDF","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"Aviso","PDFE.Controllers.Toolbar.textFontSizeErr":"O valor inserido está incorreto.
Insira um valor numérico entre 1 e 300","PDFE.Controllers.Toolbar.textGotIt":"Entendi","PDFE.Controllers.Toolbar.textRequired":"Preencha todos os campos obrigatórios para enviar o formulário.","PDFE.Controllers.Toolbar.textSubmited":"Formulário enviado com sucesso
Clique para fechar a dica.","PDFE.Controllers.Toolbar.textTabForms":"Formulários","PDFE.Controllers.Toolbar.textWarning":"Aviso","PDFE.Controllers.Toolbar.txtDownload":"Baixar","PDFE.Controllers.Toolbar.txtNeedCommentMode":"Para salvar as alterações no arquivo, mude para o modo Comentários. Ou você pode baixar uma cópia do arquivo modificado.","PDFE.Controllers.Toolbar.txtNeedDownload":"No momento, o visualizador de PDF só pode salvar novas alterações em cópias de arquivos separadas. Ele não oferece suporte à coedição e outros usuários não verão suas alterações, a menos que você compartilhe uma nova versão do arquivo.","PDFE.Controllers.Toolbar.txtSaveCopy":"Salvar cópia","PDFE.Controllers.Toolbar.txtUntitled":"Sem título","PDFE.Controllers.Viewport.textFitPage":"Ajustar a página","PDFE.Controllers.Viewport.textFitWidth":"Ajustar à Largura","PDFE.Controllers.Viewport.txtDarkMode":"Modo escuro","PDFE.Views.ChartSettings.text3dDepth":"Profundidade (% da base)","PDFE.Views.ChartSettings.text3dHeight":"Altura (% da base)","PDFE.Views.ChartSettings.text3dRotation":"Rotação 3D","PDFE.Views.ChartSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.ChartSettings.textAutoscale":"Autoescala","PDFE.Views.ChartSettings.textChartType":"Alterar tipo de gráfico","PDFE.Views.ChartSettings.textData":"Dados","PDFE.Views.ChartSettings.textDefault":"Rotação padrão","PDFE.Views.ChartSettings.textDown":"Abaixo","PDFE.Views.ChartSettings.textEditData":"Editar dados","PDFE.Views.ChartSettings.textEditLinks":"Editar links","PDFE.Views.ChartSettings.textHeight":"Altura","PDFE.Views.ChartSettings.textKeepRatio":"Proporções constantes","PDFE.Views.ChartSettings.textLeft":"Esquerda","PDFE.Views.ChartSettings.textLinkedData":"Dados vinculados","PDFE.Views.ChartSettings.textNarrow":"Campo de visão estreito","PDFE.Views.ChartSettings.textPerspective":"Perspectiva","PDFE.Views.ChartSettings.textRight":"Direita","PDFE.Views.ChartSettings.textRightAngle":"Eixos de ângulo reto","PDFE.Views.ChartSettings.textSelectData":"Selecionar dados","PDFE.Views.ChartSettings.textSize":"Tamanho","PDFE.Views.ChartSettings.textStyle":"Estilo","PDFE.Views.ChartSettings.textUp":"Para cima","PDFE.Views.ChartSettings.textUpdateData":"Atualizar dados","PDFE.Views.ChartSettings.textWiden":"Ampliar o campo de visão","PDFE.Views.ChartSettings.textWidth":"Largura","PDFE.Views.ChartSettings.textX":"Rotação X","PDFE.Views.ChartSettings.textY":"Rotação Y","PDFE.Views.ChartSettingsAdvanced.textAlt":"Texto Alternativo","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"Descrição","PDFE.Views.ChartSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações do objeto visual, que será lida para pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações estão na imagem, forma, gráfico ou tabela.","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"Titulo","PDFE.Views.ChartSettingsAdvanced.textAuto":"Automático","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"Eixos cruzam","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"Posição de eixos","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"Titulo","PDFE.Views.ChartSettingsAdvanced.textBase":"Base","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"Entre marcas de escala","PDFE.Views.ChartSettingsAdvanced.textBillions":"Bilhões","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"Nome da categoria","PDFE.Views.ChartSettingsAdvanced.textCenter":"Centro","PDFE.Views.ChartSettingsAdvanced.textChartName":"Nome do gráfico","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"Título do Gráfico","PDFE.Views.ChartSettingsAdvanced.textCross":"Intersecção","PDFE.Views.ChartSettingsAdvanced.textCustom":"Personalizado","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"Rótulos de dados","PDFE.Views.ChartSettingsAdvanced.textFit":"Ajustar largura","PDFE.Views.ChartSettingsAdvanced.textFixed":"Fixo","PDFE.Views.ChartSettingsAdvanced.textFormat":"Formato da etiqueta","PDFE.Views.ChartSettingsAdvanced.textFrom":"de","PDFE.Views.ChartSettingsAdvanced.textGeneral":"Geral","PDFE.Views.ChartSettingsAdvanced.textGridLines":"Linhas de grade","PDFE.Views.ChartSettingsAdvanced.textHeight":"Altura","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"Ocultar eixo","PDFE.Views.ChartSettingsAdvanced.textHigh":"Alto","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"Eixo horizontal","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"Eixo Horizontal Secundário","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100.000.000 ","PDFE.Views.ChartSettingsAdvanced.textHundreds":"Centenas","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100.000 ","PDFE.Views.ChartSettingsAdvanced.textIn":"Em","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"Fundo interno","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"Parte superior interna","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"Proporções constantes","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"Distância da etiqueta de eixos","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"Intervalo entre Etiquetas","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"Opções de etiqueta","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"Posição da etiqueta","PDFE.Views.ChartSettingsAdvanced.textLayout":"Layout","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"Sobreposição esquerda","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"Inferior","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"Esquerda","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"Legenda","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"Direita","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"Parte superior","PDFE.Views.ChartSettingsAdvanced.textLines":"Linhas","PDFE.Views.ChartSettingsAdvanced.textLogScale":"Escala logarítmica","PDFE.Views.ChartSettingsAdvanced.textLow":"Baixo","PDFE.Views.ChartSettingsAdvanced.textMajor":"Principal","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"Maior e Menor","PDFE.Views.ChartSettingsAdvanced.textMajorType":"Tipo principal","PDFE.Views.ChartSettingsAdvanced.textManual":"Manual","PDFE.Views.ChartSettingsAdvanced.textMarkers":"Marcadores","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"Intervalo entre Marcas","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"Valor máximo","PDFE.Views.ChartSettingsAdvanced.textMillions":"Milhões","PDFE.Views.ChartSettingsAdvanced.textMinor":"Menor","PDFE.Views.ChartSettingsAdvanced.textMinorType":"Tipo menor","PDFE.Views.ChartSettingsAdvanced.textMinValue":"Valor mínimo","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"Próximo ao eixo","PDFE.Views.ChartSettingsAdvanced.textNone":"nenhum","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"Sem sobreposição","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"Em Marcas de Seleção","PDFE.Views.ChartSettingsAdvanced.textOut":"Fora","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"Parte superior externa","PDFE.Views.ChartSettingsAdvanced.textOverlay":"Sobreposição","PDFE.Views.ChartSettingsAdvanced.textPlacement":"Posicionamento","PDFE.Views.ChartSettingsAdvanced.textPosition":"Posição","PDFE.Views.ChartSettingsAdvanced.textReverse":"Valores na ordem reversa","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"Sobreposição direita","PDFE.Views.ChartSettingsAdvanced.textRotated":"Rotacionado","PDFE.Views.ChartSettingsAdvanced.textSeparator":"Separador de rótulos de dados","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"Nome da série","PDFE.Views.ChartSettingsAdvanced.textSize":"Tamanho","PDFE.Views.ChartSettingsAdvanced.textSmooth":"Suave","PDFE.Views.ChartSettingsAdvanced.textStraight":"Direto","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10.000.000 ","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10.000 ","PDFE.Views.ChartSettingsAdvanced.textThousands":"Milhares","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"Opções de marcação","PDFE.Views.ChartSettingsAdvanced.textTitle":"Gráfico - Configurações avançadas","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"Canto superior esquerdo","PDFE.Views.ChartSettingsAdvanced.textTrillions":"Trilhões","PDFE.Views.ChartSettingsAdvanced.textUnits":"Exibir unidades","PDFE.Views.ChartSettingsAdvanced.textValue":"Valor","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"Eixo vertical","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"Eixo Vertical Secundário","PDFE.Views.ChartSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ChartSettingsAdvanced.textWidth":"Largura","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"Sobreposição esquerda","PDFE.Views.DocumentHolder.aboveText":"Acima","PDFE.Views.DocumentHolder.addCommentText":"Adicionar comentário","PDFE.Views.DocumentHolder.advancedChartText":"Configurações avançadas de gráfico","PDFE.Views.DocumentHolder.advancedEquationText":"Definições de equação","PDFE.Views.DocumentHolder.advancedImageText":"Configurações avançadas de imagem","PDFE.Views.DocumentHolder.advancedParagraphText":"Configurações avançadas de parágrafo","PDFE.Views.DocumentHolder.advancedShapeText":"Configurações avançadas de forma","PDFE.Views.DocumentHolder.advancedTableText":"Configurações avançadas de tabela","PDFE.Views.DocumentHolder.AlignBottom":"Inferior","PDFE.Views.DocumentHolder.AlignCenter":"Centro","PDFE.Views.DocumentHolder.AlignJust":"Justificar","PDFE.Views.DocumentHolder.AlignLeft":"Esquerda","PDFE.Views.DocumentHolder.alignmentText":"Alinhamento","PDFE.Views.DocumentHolder.AlignMiddle":"Meio","PDFE.Views.DocumentHolder.AlignRight":"Direita","PDFE.Views.DocumentHolder.AlignText":"Alinhamento de texto","PDFE.Views.DocumentHolder.AlignTop":"Parte superior","PDFE.Views.DocumentHolder.allLinearText":"Todos - Lineares","PDFE.Views.DocumentHolder.allProfText":"Tudo - Profissional","PDFE.Views.DocumentHolder.belowText":"Abaixo","PDFE.Views.DocumentHolder.btnChart":"Adicionar, remover ou alterar elementos do gráfico, como título, legenda, linhas de grade e rótulos de dados","PDFE.Views.DocumentHolder.cellAlignText":"Alinhamento vertical da célula","PDFE.Views.DocumentHolder.cellText":"Célula","PDFE.Views.DocumentHolder.centerText":"Centro","PDFE.Views.DocumentHolder.columnText":"Coluna","PDFE.Views.DocumentHolder.confirmAddFontName":"A fonte que você vai salvar não está disponível no dispositivo atual.
O estilo do texto será exibido usando uma das fontes do dispositivo, a fonte salva será usada quando estiver disponível.
Deseja continuar?","PDFE.Views.DocumentHolder.currLinearText":"Atual - Linear","PDFE.Views.DocumentHolder.currProfText":"Atual - Profissional","PDFE.Views.DocumentHolder.deleteColumnText":"Excluir coluna","PDFE.Views.DocumentHolder.deleteRowText":"Excluir linha","PDFE.Views.DocumentHolder.deleteTableText":"Excluir tabela","PDFE.Views.DocumentHolder.deleteText":"Excluir","PDFE.Views.DocumentHolder.DepthAxis":"Eixo Z","PDFE.Views.DocumentHolder.direct270Text":"Girar o texto para cima","PDFE.Views.DocumentHolder.direct90Text":"Girar o texto para baixo","PDFE.Views.DocumentHolder.directHText":"Horizontal","PDFE.Views.DocumentHolder.directionText":"Direção do texto","PDFE.Views.DocumentHolder.editChartText":"Editar dados","PDFE.Views.DocumentHolder.editHyperlinkText":"Editar Link","PDFE.Views.DocumentHolder.guestText":"Convidado","PDFE.Views.DocumentHolder.hideEqToolbar":"Ocultar barra de ferramentas de equação","PDFE.Views.DocumentHolder.hyperlinkText":"Link","PDFE.Views.DocumentHolder.insertColumnLeftText":"Coluna à esquerda","PDFE.Views.DocumentHolder.insertColumnRightText":"Coluna à direita","PDFE.Views.DocumentHolder.insertColumnText":"Inserir coluna","PDFE.Views.DocumentHolder.insertRowAboveText":"Linha acima","PDFE.Views.DocumentHolder.insertRowBelowText":"Linha abaixo","PDFE.Views.DocumentHolder.insertRowText":"Inserir linha","PDFE.Views.DocumentHolder.insertText":"Inserir","PDFE.Views.DocumentHolder.latexText":"LaTex","PDFE.Views.DocumentHolder.leftText":"Esquerda","PDFE.Views.DocumentHolder.mergeCellsText":"Mesclar células","PDFE.Views.DocumentHolder.mniImageFromFile":"Imagem do arquivo","PDFE.Views.DocumentHolder.mniImageFromStorage":"Imagem de armazenamento","PDFE.Views.DocumentHolder.mniImageFromUrl":"Imagem da URL","PDFE.Views.DocumentHolder.originalSizeText":"Tamanho atual","PDFE.Views.DocumentHolder.removeCommentText":"Remover","PDFE.Views.DocumentHolder.removeHyperlinkText":"Remover link","PDFE.Views.DocumentHolder.rightText":"Direita","PDFE.Views.DocumentHolder.rowText":"Linha","PDFE.Views.DocumentHolder.selectText":"Selecione","PDFE.Views.DocumentHolder.showEqToolbar":"Mostrar barra de ferramentas de equação","PDFE.Views.DocumentHolder.splitCellsText":"Dividir célula...","PDFE.Views.DocumentHolder.splitCellTitleText":"Dividir célula","PDFE.Views.DocumentHolder.tableText":"Tabela","PDFE.Views.DocumentHolder.textArrangeBack":"Enviar para plano de fundo","PDFE.Views.DocumentHolder.textArrangeBackward":"Enviar para trás","PDFE.Views.DocumentHolder.textArrangeForward":"Trazer para frente","PDFE.Views.DocumentHolder.textArrangeFront":"Trazer para primeiro plano","PDFE.Views.DocumentHolder.textAxes":"Eixos","PDFE.Views.DocumentHolder.textAxisTitles":"Títulos do Eixo","PDFE.Views.DocumentHolder.textBottom":"Inferior","PDFE.Views.DocumentHolder.textCenter":"Centro","PDFE.Views.DocumentHolder.textChartTitle":"Título do Gráfico","PDFE.Views.DocumentHolder.textClearField":"Limpar campo","PDFE.Views.DocumentHolder.textCm":"cm","PDFE.Views.DocumentHolder.textColor":"Cor","PDFE.Views.DocumentHolder.textCopy":"Copiar","PDFE.Views.DocumentHolder.textCrop":"Cortar","PDFE.Views.DocumentHolder.textCropFill":"Preencher","PDFE.Views.DocumentHolder.textCropFit":"Ajustar","PDFE.Views.DocumentHolder.textCustom":"Personalizado","PDFE.Views.DocumentHolder.textCut":"Cortar","PDFE.Views.DocumentHolder.textDataLabels":"Rótulos de dados","PDFE.Views.DocumentHolder.textDistributeCols":"Distribuir colunas","PDFE.Views.DocumentHolder.textDistributeRows":"Distribuir linhas","PDFE.Views.DocumentHolder.textEditPoints":"Editar pontos","PDFE.Views.DocumentHolder.textErrorBars":"Barras de erro","PDFE.Views.DocumentHolder.textExponential":"Exponencial","PDFE.Views.DocumentHolder.textFit":"Ajustar largura","PDFE.Views.DocumentHolder.textFlipH":"Virar horizontalmente","PDFE.Views.DocumentHolder.textFlipV":"Virar verticalmente","PDFE.Views.DocumentHolder.textFontSizeErr":"O valor inserido está incorreto.
Insira um valor numérico entre 1 e 300","PDFE.Views.DocumentHolder.textFromFile":"Do Arquivo","PDFE.Views.DocumentHolder.textFromStorage":"Do armazenamento","PDFE.Views.DocumentHolder.textFromUrl":"De URL","PDFE.Views.DocumentHolder.textGridLines":"Linhas de grade","PDFE.Views.DocumentHolder.textHorAxis":"Eixo horizontal","PDFE.Views.DocumentHolder.textHorAxisSec":"Eixo Horizontal Secundário","PDFE.Views.DocumentHolder.textHorizontalMajor":"Horizontal Maior","PDFE.Views.DocumentHolder.textHorizontalMinor":"Menor horizontal","PDFE.Views.DocumentHolder.textInnerBottom":"Fundo interno","PDFE.Views.DocumentHolder.textInnerTop":"Parte superior interna","PDFE.Views.DocumentHolder.textLeft":"Esquerda","PDFE.Views.DocumentHolder.textLeftData":"Esquerda","PDFE.Views.DocumentHolder.textLeftOverlay":"Sobreposição esquerda","PDFE.Views.DocumentHolder.textLegendPos":"Legenda","PDFE.Views.DocumentHolder.textLinear":"Linear","PDFE.Views.DocumentHolder.textLinearForecast":"Previsão Linear","PDFE.Views.DocumentHolder.textLines":"Linhas","PDFE.Views.DocumentHolder.textMovingAverage":"Média Móvel (2)","PDFE.Views.DocumentHolder.textNone":"nenhum","PDFE.Views.DocumentHolder.textNoOverlay":"Sem sobreposição","PDFE.Views.DocumentHolder.textOuterTop":"Parte superior externa","PDFE.Views.DocumentHolder.textOverlay":"Sobreposição","PDFE.Views.DocumentHolder.textPaste":"Colar","PDFE.Views.DocumentHolder.textRecognize":"Reconhecer","PDFE.Views.DocumentHolder.textRedact":"Redigir texto","PDFE.Views.DocumentHolder.textRedo":"Refazer","PDFE.Views.DocumentHolder.textReplace":"Substituir imagem","PDFE.Views.DocumentHolder.textResetCrop":"Redefinir colheita","PDFE.Views.DocumentHolder.textRight":"Direita","PDFE.Views.DocumentHolder.textRightOverlay":"Sobreposição direita","PDFE.Views.DocumentHolder.textRotate":"Girar","PDFE.Views.DocumentHolder.textRotate270":"Girar 90º no sentido anti-horário.","PDFE.Views.DocumentHolder.textRotate90":"Girar 90º no sentido horário","PDFE.Views.DocumentHolder.textSaveAsPicture":"Salvar como imagem","PDFE.Views.DocumentHolder.textShapeAlignBottom":"Alinhar à parte inferior","PDFE.Views.DocumentHolder.textShapeAlignCenter":"Alinhar ao centro","PDFE.Views.DocumentHolder.textShapeAlignLeft":"Alinhar à esquerda","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"Alinhar ao centro","PDFE.Views.DocumentHolder.textShapeAlignRight":"Alinhar à direita","PDFE.Views.DocumentHolder.textShapeAlignTop":"Alinhar à parte superior","PDFE.Views.DocumentHolder.textShapesMerge":"Mesclar formas","PDFE.Views.DocumentHolder.textShowLegendKeys":"Mostrar Chaves de Legenda","PDFE.Views.DocumentHolder.textShowUpDown":"Barras de exibição para cima/baixo","PDFE.Views.DocumentHolder.textStandardDeviation":"Desvio Padrão","PDFE.Views.DocumentHolder.textStandardError":"Erro Padrão","PDFE.Views.DocumentHolder.textTop":"Parte superior","PDFE.Views.DocumentHolder.textTrendline":"Linha de tendência","PDFE.Views.DocumentHolder.textUndo":"Desfazer","PDFE.Views.DocumentHolder.textUpDownBars":"Barras para cima/para baixo","PDFE.Views.DocumentHolder.textVertAxis":"Eixo vertical","PDFE.Views.DocumentHolder.textVertAxisSec":"Eixo Vertical Secundário","PDFE.Views.DocumentHolder.textVerticalMajor":"Vertical Maior","PDFE.Views.DocumentHolder.textVerticalMinor":"Vertical Menor","PDFE.Views.DocumentHolder.tipIsLocked":"Este elemento está sendo atualmente editado por outro usuário.","PDFE.Views.DocumentHolder.tipRecognize":"Reconhecer texto","PDFE.Views.DocumentHolder.tipRedact":"Redigir texto","PDFE.Views.DocumentHolder.txtAddBottom":"Adicionar borda inferior","PDFE.Views.DocumentHolder.txtAddFractionBar":"Adicionar barra de fração","PDFE.Views.DocumentHolder.txtAddHor":"Adicionar linha horizontal","PDFE.Views.DocumentHolder.txtAddLB":"Adicionar linha inferior esquerda","PDFE.Views.DocumentHolder.txtAddLeft":"Adicionar borda esquerda","PDFE.Views.DocumentHolder.txtAddLT":"Adicionar linha superior esquerda","PDFE.Views.DocumentHolder.txtAddRight":"Adicionar borda direita","PDFE.Views.DocumentHolder.txtAddTop":"Adicionar borda superior","PDFE.Views.DocumentHolder.txtAddVer":"Adicionar linha vertical","PDFE.Views.DocumentHolder.txtAlign":"Alinhar","PDFE.Views.DocumentHolder.txtAlignToChar":"Alinhar ao caractere","PDFE.Views.DocumentHolder.txtArrange":"Organizar","PDFE.Views.DocumentHolder.txtBackground":"Plano de fundo","PDFE.Views.DocumentHolder.txtBorderProps":"Propriedades de borda","PDFE.Views.DocumentHolder.txtBottom":"Inferior","PDFE.Views.DocumentHolder.txtColumnAlign":"Alinhamento de colunas","PDFE.Views.DocumentHolder.txtCopyPage":"Copiar página","PDFE.Views.DocumentHolder.txtCutPage":"Cortar página","PDFE.Views.DocumentHolder.txtDecreaseArg":"Diminuir tamanho de argumento","PDFE.Views.DocumentHolder.txtDeleteArg":"Excluir argumento","PDFE.Views.DocumentHolder.txtDeleteBreak":"Eliminar quebra manual","PDFE.Views.DocumentHolder.txtDeleteChars":"Excluir caracteres anexos ","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"Excluir separadores e caracteres anexos","PDFE.Views.DocumentHolder.txtDeleteEq":"Remover equação","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"Excluir caractere","PDFE.Views.DocumentHolder.txtDeletePage":"Excluir página","PDFE.Views.DocumentHolder.txtDeleteRadical":"Eliminar radical","PDFE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","PDFE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","PDFE.Views.DocumentHolder.txtEmpty":"(Vazio)","PDFE.Views.DocumentHolder.txtFractionLinear":"Alterar para fração linear","PDFE.Views.DocumentHolder.txtFractionSkewed":"Alterar para fração inclinada","PDFE.Views.DocumentHolder.txtFractionStacked":"Alterar para fração empilhada","PDFE.Views.DocumentHolder.txtGroup":"Grupo","PDFE.Views.DocumentHolder.txtGroupCharOver":"Caractere sobre texto","PDFE.Views.DocumentHolder.txtGroupCharUnder":"Caractere sob texto","PDFE.Views.DocumentHolder.txtHideBottom":"Ocultar borda inferior","PDFE.Views.DocumentHolder.txtHideBottomLimit":"Ocultar limite inferior","PDFE.Views.DocumentHolder.txtHideCloseBracket":"Ocultar colchete de fechamento","PDFE.Views.DocumentHolder.txtHideDegree":"Ocultar grau","PDFE.Views.DocumentHolder.txtHideHor":"Ocultar linha horizontal","PDFE.Views.DocumentHolder.txtHideLB":"Ocultar linha inferior esquerda","PDFE.Views.DocumentHolder.txtHideLeft":"Ocultar borda esquerda","PDFE.Views.DocumentHolder.txtHideLT":"Ocultar linha superior esquerda","PDFE.Views.DocumentHolder.txtHideOpenBracket":"Ocultar colchete de abertura","PDFE.Views.DocumentHolder.txtHidePlaceholder":"Ocultar espaço reservado","PDFE.Views.DocumentHolder.txtHideRight":"Ocultar borda direita","PDFE.Views.DocumentHolder.txtHideTop":"Ocultar borda superior","PDFE.Views.DocumentHolder.txtHideTopLimit":"Ocultar limite superior","PDFE.Views.DocumentHolder.txtHideVer":"Ocultar linha vertical","PDFE.Views.DocumentHolder.txtIncreaseArg":"Aumentar o tamanho do argumento","PDFE.Views.DocumentHolder.txtInsertArgAfter":"Inserir argumento após","PDFE.Views.DocumentHolder.txtInsertArgBefore":"Inserir argumento antes","PDFE.Views.DocumentHolder.txtInsertBreak":"Inserir quebra manual","PDFE.Views.DocumentHolder.txtInsertEqAfter":"Inserir equação a seguir","PDFE.Views.DocumentHolder.txtInsertEqBefore":"Inserir equação à frente","PDFE.Views.DocumentHolder.txtLimitChange":"Alterar localização de limites","PDFE.Views.DocumentHolder.txtLimitOver":"Limite acima do texto","PDFE.Views.DocumentHolder.txtLimitUnder":"Limite abaixo do texto","PDFE.Views.DocumentHolder.txtMatchBrackets":"Combinar parênteses com a altura do argumento","PDFE.Views.DocumentHolder.txtMatrixAlign":"Alinhamento de matriz","PDFE.Views.DocumentHolder.txtNewPageAfter":"Insira uma página em branco depois","PDFE.Views.DocumentHolder.txtNewPageBefore":"Insira uma página em branco antes","PDFE.Views.DocumentHolder.txtOpacity":"Opacidade","PDFE.Views.DocumentHolder.txtOverbar":"Barra sobre texto","PDFE.Views.DocumentHolder.txtPastePage":"Colar página","PDFE.Views.DocumentHolder.txtPastePageAfter":"Colar página depois","PDFE.Views.DocumentHolder.txtPastePageBefore":"Colar página antes","PDFE.Views.DocumentHolder.txtPercentage":"Porcentagem","PDFE.Views.DocumentHolder.txtPressLink":"Pressione {0} e clique no link","PDFE.Views.DocumentHolder.txtPrintSelection":"Imprimir seleção","PDFE.Views.DocumentHolder.txtRemFractionBar":"Remover barra de fração","PDFE.Views.DocumentHolder.txtRemLimit":"Remover limite","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"Remover caractere de acento","PDFE.Views.DocumentHolder.txtRemoveBar":"Remover barra","PDFE.Views.DocumentHolder.txtRemScripts":"Remover scripts","PDFE.Views.DocumentHolder.txtRemSubscript":"Remover subscrito","PDFE.Views.DocumentHolder.txtRemSuperscript":"Remover sobrescrito","PDFE.Views.DocumentHolder.txtRotateLeft":"Girar à esquerda","PDFE.Views.DocumentHolder.txtRotateRight":"Girar à direita","PDFE.Views.DocumentHolder.txtScriptsAfter":"Scripts após o texto","PDFE.Views.DocumentHolder.txtScriptsBefore":"Scripts antes do texto","PDFE.Views.DocumentHolder.txtSelectAll":"Selecionar todos","PDFE.Views.DocumentHolder.txtShowBottomLimit":"Mostrar limite inferior","PDFE.Views.DocumentHolder.txtShowCloseBracket":"Mostrar colchetes de fechamento","PDFE.Views.DocumentHolder.txtShowDegree":"Exibir grau","PDFE.Views.DocumentHolder.txtShowOpenBracket":"Exibir colchetes de abertura","PDFE.Views.DocumentHolder.txtShowPlaceholder":"Mostrar espaço reservado","PDFE.Views.DocumentHolder.txtShowTopLimit":"Exibir limite superior","PDFE.Views.DocumentHolder.txtStretchBrackets":"Esticar colchetes","PDFE.Views.DocumentHolder.txtTop":"Superior","PDFE.Views.DocumentHolder.txtUnderbar":"Barra abaixo de texto","PDFE.Views.DocumentHolder.txtUngroup":"Desagrupar","PDFE.Views.DocumentHolder.txtWarnUrl":"Clicar neste link pode ser prejudicial ao seu dispositivo e aos seus dados. Para proteger seu computador, clique apenas em links de fontes confiáveis. Este local pode ser inseguro:

{0}

Tem certeza de que deseja continuar?","PDFE.Views.DocumentHolder.unicodeText":"Unicode","PDFE.Views.DocumentHolder.vertAlignText":"Alinhamento vertical","PDFE.Views.FileMenu.ariaFileMenu":"Menu Arquivo","PDFE.Views.FileMenu.btnBackCaption":"Local do arquivo aberto","PDFE.Views.FileMenu.btnCloseEditor":"Fechar Arquivo","PDFE.Views.FileMenu.btnCloseMenuCaption":"Voltar","PDFE.Views.FileMenu.btnCreateNewCaption":"Criar novo","PDFE.Views.FileMenu.btnDownloadCaption":"Baixar como","PDFE.Views.FileMenu.btnExitCaption":"Fechar","PDFE.Views.FileMenu.btnFileOpenCaption":"Abrir","PDFE.Views.FileMenu.btnHelpCaption":"Ajuda","PDFE.Views.FileMenu.btnHistoryCaption":"Histórico de versão","PDFE.Views.FileMenu.btnInfoCaption":"Informações","PDFE.Views.FileMenu.btnPrintCaption":"Imprimir","PDFE.Views.FileMenu.btnProtectCaption":"Proteger","PDFE.Views.FileMenu.btnRecentFilesCaption":"Abrir recente","PDFE.Views.FileMenu.btnRenameCaption":"Renomear","PDFE.Views.FileMenu.btnReturnCaption":"Voltar para documento","PDFE.Views.FileMenu.btnRightsCaption":"Direitos de Acesso.","PDFE.Views.FileMenu.btnSaveAsCaption":"Salvar como","PDFE.Views.FileMenu.btnSaveCaption":"Salvar","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"Salvar cópia como","PDFE.Views.FileMenu.btnSettingsCaption":"Configurações avançadas","PDFE.Views.FileMenu.btnSuggestCaption":"Sugira um recurso","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"Mudar para o celular","PDFE.Views.FileMenu.btnToEditCaption":"Editar documento","PDFE.Views.FileMenu.textDownload":"Baixar","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"Documento em branco","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Criar novo","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Adicionar Autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Adicionar Texto","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicação","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Alterar direitos de acesso","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentário","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comum","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Criado","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"Informações do Documento","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"Visualização rápida da Web","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"Carregando...","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última Modificação Por","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificação","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"Não","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Proprietário","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"Páginas","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"Tamanho da página","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"Parágrafos","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"Produtor de PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"PDF marcado","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"Versão PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Localização","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"Pessoas que têm direitos","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"Caracteres com espaços","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"Estatísticas","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Assunto","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"Caracteres","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Carregado","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"Palavras","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"Sim","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Direitos de Acesso.","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Alterar direitos de acesso","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"Pessoas que têm direitos","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Com senha","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger o Documento","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"Com assinatura","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Assinaturas válidas foram adicionadas ao documento.
O documento está protegido contra edição.","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garanta a integridade do documento adicionando uma assinatura digital invisível","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar documento","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"Editar excluirá as assinaturas do documento.
Deseja continuar?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Este documento foi protegido com senha.","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"Criptografar este documento com uma senha","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"O documento deve ser assinado.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Assinaturas válidas foram adicionadas ao documento. O documento está protegido contra edição.","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algumas das assinaturas digitais no documento estão inválidas ou não puderam ser verificadas. O documento está protegido para edição.","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"Visualizar assinaturas","PDFE.Views.FileMenuPanels.Settings.okButtonText":"Aplicar","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"Modo de coedição","PDFE.Views.FileMenuPanels.Settings.strFast":"Rápido","PDFE.Views.FileMenuPanels.Settings.strFontRender":"Dicas de fonte","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Atalhos de teclado","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"Interface RTL","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"Alterações de colaboração em tempo real","PDFE.Views.FileMenuPanels.Settings.strShowComments":"Mostrar comentários em texto","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"Mostrar alterações de outros usuários","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"Mostrar comentários resolvidos","PDFE.Views.FileMenuPanels.Settings.strStrict":"Estrito","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"Estilo da guia","PDFE.Views.FileMenuPanels.Settings.strTheme":"Tema de interface","PDFE.Views.FileMenuPanels.Settings.strUnit":"Unidade de medida","PDFE.Views.FileMenuPanels.Settings.strZoom":"Valor de zoom padrão","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"Recuperação automática","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"Salvamento automático","PDFE.Views.FileMenuPanels.Settings.textDisabled":"Desabilitado","PDFE.Views.FileMenuPanels.Settings.textFill":"Preencher","PDFE.Views.FileMenuPanels.Settings.textForceSave":"Salvar para servidor","PDFE.Views.FileMenuPanels.Settings.textLine":"Linha","PDFE.Views.FileMenuPanels.Settings.textMinute":"A cada minuto","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"Configurações avançadas","PDFE.Views.FileMenuPanels.Settings.txtAll":"Visualizar tudo","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"Aparência","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"Modo de cache padrão","PDFE.Views.FileMenuPanels.Settings.txtCm":"Centímetro","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"Colaboração","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"Customizar","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"Personalize o acesso rápido","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"Ativar modo escuro de documento","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"Editando e salvando","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"Co-edição em tempo real. Todas as alterações são salvas automaticamente","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"Ajustar a página","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"Ajustar à Largura","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"Hieróglifos","PDFE.Views.FileMenuPanels.Settings.txtInch":"Polegada","PDFE.Views.FileMenuPanels.Settings.txtLast":"Visualizar último","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"Usado por último","PDFE.Views.FileMenuPanels.Settings.txtMac":"como SO X","PDFE.Views.FileMenuPanels.Settings.txtNative":"Nativo","PDFE.Views.FileMenuPanels.Settings.txtNone":"Visualizar nenhum","PDFE.Views.FileMenuPanels.Settings.txtPt":"Ponto","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"Mostrar o botão Impressão rápida no cabeçalho do editor","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"O documento será impresso na última impressora selecionada ou padrão","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"Habilitar o suporte ao leitor de tela","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"Use o botão \"Salvar\" para sincronizar as alterações que você e outras pessoas fazem","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"Usar a cor da barra de ferramentas como plano de fundo das guias","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"Use a tecla Alt para navegar na interface do usuário usando o teclado","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"Use a mini barra de ferramentas ao selecionar texto","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"Use a tecla Opção para navegar na interface do usuário usando o teclado","PDFE.Views.FileMenuPanels.Settings.txtWin":"como Windows","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"Área de trabalho","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"Personalize o acesso rápido","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Baixar como","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Salvar cópia como","PDFE.Views.FormatSettingsDialog.textAfter":"Depois de nenhum espaço","PDFE.Views.FormatSettingsDialog.textAfterSpace":"Depois com espaço","PDFE.Views.FormatSettingsDialog.textBefore":"Antes não havia espaço","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"Antes com espaço","PDFE.Views.FormatSettingsDialog.textCategory":"Categoria","PDFE.Views.FormatSettingsDialog.textDate":"Data","PDFE.Views.FormatSettingsDialog.textDecimal":"Casas decimais","PDFE.Views.FormatSettingsDialog.textFormat":"Formatar","PDFE.Views.FormatSettingsDialog.textLocation":"Localização do símbolo","PDFE.Views.FormatSettingsDialog.textMask":"Máscara arbitrária","PDFE.Views.FormatSettingsDialog.textNegative":"Estilo de número negativo","PDFE.Views.FormatSettingsDialog.textNone":"Nenhum","PDFE.Views.FormatSettingsDialog.textNumber":"Número","PDFE.Views.FormatSettingsDialog.textParens":"Mostrar parênteses","PDFE.Views.FormatSettingsDialog.textPercent":"Porcentagem","PDFE.Views.FormatSettingsDialog.textPhone":"Número de telefone","PDFE.Views.FormatSettingsDialog.textRed":"Use texto vermelho","PDFE.Views.FormatSettingsDialog.textReg":"Expressão regular","PDFE.Views.FormatSettingsDialog.textSeparator":"Estilo separador","PDFE.Views.FormatSettingsDialog.textSpecial":"Especial","PDFE.Views.FormatSettingsDialog.textSSN":"Número da Segurança Social","PDFE.Views.FormatSettingsDialog.textSymbol":"Símbolo monetário","PDFE.Views.FormatSettingsDialog.textTime":"Hora","PDFE.Views.FormatSettingsDialog.textTitle":"Configurações de formato","PDFE.Views.FormatSettingsDialog.textZipCode":"CEP","PDFE.Views.FormatSettingsDialog.textZipCode4":"Código Postal + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"Personalizar","PDFE.Views.FormatSettingsDialog.txtSample":"Exemplo:","PDFE.Views.FormSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.FormSettings.textAlways":"Sempre","PDFE.Views.FormSettings.textAnamorphic":"Não proporcionalmente","PDFE.Views.FormSettings.textArabic":"Árabe","PDFE.Views.FormSettings.textAutofit":"Ajuste automático","PDFE.Views.FormSettings.textBackgroundColor":"Cor do plano de fundo","PDFE.Views.FormSettings.textBehavior":"Comportamento","PDFE.Views.FormSettings.textBeveled":"Chanfrado","PDFE.Views.FormSettings.textBorder":"Borda","PDFE.Views.FormSettings.textButton":"Botão","PDFE.Views.FormSettings.textChbStyle":"Estilo de caixa de seleção","PDFE.Views.FormSettings.textCheck":"Verificar","PDFE.Views.FormSettings.textCheckbox":"Caixa de seleção","PDFE.Views.FormSettings.textCheckDefault":"A caixa de seleção está marcada por padrão","PDFE.Views.FormSettings.textCircle":"Círculo","PDFE.Views.FormSettings.textClear":"Limpar","PDFE.Views.FormSettings.textColor":"Cor","PDFE.Views.FormSettings.textComb":"Conjunto de caracteres","PDFE.Views.FormSettings.textCombobox":"Caixa de combinação","PDFE.Views.FormSettings.textCommit":"Confirme o valor selecionado imediatamente","PDFE.Views.FormSettings.textCross":"Intersecção","PDFE.Views.FormSettings.textCustomText":"Permitir texto personalizado","PDFE.Views.FormSettings.textDashed":"Tracejado","PDFE.Views.FormSettings.textDate":"Data","PDFE.Views.FormSettings.textDateField":"Campo de data e hora","PDFE.Views.FormSettings.textDiamond":"Diamante","PDFE.Views.FormSettings.textDown":"Abaixo","PDFE.Views.FormSettings.textExport":"Valor de exportação","PDFE.Views.FormSettings.textField":"Campo de texto","PDFE.Views.FormSettings.textFitBounds":"Ajustar aos limites","PDFE.Views.FormSettings.textFormat":"Formatar","PDFE.Views.FormSettings.textFromFile":"Do Arquivo","PDFE.Views.FormSettings.textFromStorage":"Do armazenamento","PDFE.Views.FormSettings.textFromUrl":"Da URL","PDFE.Views.FormSettings.textHindi":"Hindi","PDFE.Views.FormSettings.textHover":"Rolagem","PDFE.Views.FormSettings.textHowScale":"Redimensionar","PDFE.Views.FormSettings.textIcon":"Ícone","PDFE.Views.FormSettings.textIconLeft":"Ícone à esquerda, rótulo à direita","PDFE.Views.FormSettings.textIconOnly":"Somente ícone","PDFE.Views.FormSettings.textIconTop":"Ícone superior, rótulo inferior","PDFE.Views.FormSettings.textImage":"Imagem","PDFE.Views.FormSettings.textInset":"Inserir","PDFE.Views.FormSettings.textInvert":"Invertido","PDFE.Views.FormSettings.textLabel":"Etiqueta","PDFE.Views.FormSettings.textLabelLeft":"Rótulo à esquerda, ícone à direita","PDFE.Views.FormSettings.textLabelTop":"Rótulo superior, ícone inferior","PDFE.Views.FormSettings.textLayout":"Layout","PDFE.Views.FormSettings.textListBox":"Caixa de listagem","PDFE.Views.FormSettings.textLock":"Bloquear","PDFE.Views.FormSettings.textMask":"Máscara arbitrária","PDFE.Views.FormSettings.textMaxChars":"Limite de caracteres","PDFE.Views.FormSettings.textMedium":"Média","PDFE.Views.FormSettings.textMulti":"Multilinha","PDFE.Views.FormSettings.textMultisel":"Seleção múltipla","PDFE.Views.FormSettings.textName":"Nome","PDFE.Views.FormSettings.textNever":"Nunca","PDFE.Views.FormSettings.textNoBorder":"Sem bordas","PDFE.Views.FormSettings.textNoFill":"Sem preenchimento","PDFE.Views.FormSettings.textNone":"Nenhum","PDFE.Views.FormSettings.textNormal":"Para cima","PDFE.Views.FormSettings.textNumber":"Número","PDFE.Views.FormSettings.textNumeral":"Numeral","PDFE.Views.FormSettings.textOrientation":"Orientação","PDFE.Views.FormSettings.textOutline":"Contorno","PDFE.Views.FormSettings.textOverlay":"Rótulo sobre o ícone","PDFE.Views.FormSettings.textPassword":"Senha","PDFE.Views.FormSettings.textPercent":"Porcentagem","PDFE.Views.FormSettings.textPhone":"Número de telefone","PDFE.Views.FormSettings.textPlaceholder":"Marcador de posição","PDFE.Views.FormSettings.textPlacement":"Posicionamento do ícone","PDFE.Views.FormSettings.textProportional":"Proporcionalmente","PDFE.Views.FormSettings.textPush":"Empurrar","PDFE.Views.FormSettings.textRadiobox":"Botao de radio","PDFE.Views.FormSettings.textRadioChoice":"Escolha do botão de opção","PDFE.Views.FormSettings.textRadioDefault":"O botão é marcado por padrão","PDFE.Views.FormSettings.textRadioStyle":"Estilo de botão","PDFE.Views.FormSettings.textReadonly":"Somente leitura","PDFE.Views.FormSettings.textReg":"Expressão regular","PDFE.Views.FormSettings.textRequired":"Necessário","PDFE.Views.FormSettings.textScale":"Quando escalar","PDFE.Views.FormSettings.textScroll":"Rolar texto longo","PDFE.Views.FormSettings.textSelect":"Selecione","PDFE.Views.FormSettings.textSolid":"Sólido","PDFE.Views.FormSettings.textSpecial":"Especial","PDFE.Views.FormSettings.textSquare":"Quadrado","PDFE.Views.FormSettings.textSSN":"Número da Segurança Social","PDFE.Views.FormSettings.textStar":"Estrela","PDFE.Views.FormSettings.textState":"Estado","PDFE.Views.FormSettings.textStyle":"Estilo","PDFE.Views.FormSettings.textText":"Тexto","PDFE.Views.FormSettings.textTextOnly":"Somente rótulo","PDFE.Views.FormSettings.textThick":"Espesso","PDFE.Views.FormSettings.textThickness":"Espessura","PDFE.Views.FormSettings.textThin":"Fino","PDFE.Views.FormSettings.textTime":"Hora","PDFE.Views.FormSettings.textTip":"Dica","PDFE.Views.FormSettings.textTipAdd":"Adicionar novo valor","PDFE.Views.FormSettings.textTipDelete":"Excluir valor","PDFE.Views.FormSettings.textTipDown":"Mover para baixo","PDFE.Views.FormSettings.textTipUp":"Mover para cima","PDFE.Views.FormSettings.textTooBig":"A imagem é grande demais","PDFE.Views.FormSettings.textTooSmall":"A imagem é pequena demais","PDFE.Views.FormSettings.textUnderline":"Sublinhado","PDFE.Views.FormSettings.textUnison":"Os botões com o mesmo nome e opção são selecionados simultaneamente","PDFE.Views.FormSettings.textUnlock":"Desbloquear","PDFE.Views.FormSettings.textValue":"Opções de valor","PDFE.Views.FormSettings.textZipCode":"CEP","PDFE.Views.FormSettings.textZipCode4":"Código Postal + 4","PDFE.Views.FormSettings.txtCustom":"Personalizar","PDFE.Views.FormsTab.capBtnCheckBox":"Caixa de seleção","PDFE.Views.FormsTab.capBtnComboBox":"Caixa de combinação","PDFE.Views.FormsTab.capBtnDropDown":"Caixa de listagem","PDFE.Views.FormsTab.capBtnEmail":"Endereço de e-mail","PDFE.Views.FormsTab.capBtnImage":"Imagem","PDFE.Views.FormsTab.capBtnNext":"Próximo campo","PDFE.Views.FormsTab.capBtnPhone":"Número de telefone","PDFE.Views.FormsTab.capBtnPrev":"Campo anterior","PDFE.Views.FormsTab.capBtnRadioBox":"Botão de rádio","PDFE.Views.FormsTab.capBtnText":"Campo de texto","PDFE.Views.FormsTab.capCreditCard":"Cartão de crédito","PDFE.Views.FormsTab.capDateTime":"Data e Hora","PDFE.Views.FormsTab.capZipCode":"CEP","PDFE.Views.FormsTab.textAnyone":"Alguém","PDFE.Views.FormsTab.textClear":"Limpar campos.","PDFE.Views.FormsTab.textClearFields":"Limpar todos os campos","PDFE.Views.FormsTab.tipCheckBox":"Inserir caixa de seleção","PDFE.Views.FormsTab.tipComboBox":"Inserir caixa de combinação","PDFE.Views.FormsTab.tipCreditCard":"Inserir número de cartão de crédito","PDFE.Views.FormsTab.tipDateTime":"Inserir data e hora","PDFE.Views.FormsTab.tipDropDown":"Inserir caixa de listagem","PDFE.Views.FormsTab.tipEmailField":"Inserir endereço de e-mail","PDFE.Views.FormsTab.tipImageField":"Inserir imagem","PDFE.Views.FormsTab.tipNextForm":"Ir para o próximo campo","PDFE.Views.FormsTab.tipPhoneField":"Inserir número de telefone","PDFE.Views.FormsTab.tipPrevForm":"Ir para o campo anterior","PDFE.Views.FormsTab.tipRadioBox":"Inserir botão de rádio","PDFE.Views.FormsTab.tipTextField":"Inserir campo de texto","PDFE.Views.FormsTab.tipZipCode":"Inserir código postal","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"Exibir","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"Vincular a","PDFE.Views.HyperlinkSettingsDialog.textDefault":"Fragmento de texto selecionado","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"Inserir legenda aqui","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"Inserir link aqui","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"Inserir dica de ferramenta aqui","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"Link externo","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"Página neste documento","PDFE.Views.HyperlinkSettingsDialog.textPages":"Páginas","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"Selecionar arquivo","PDFE.Views.HyperlinkSettingsDialog.textTipText":"Texto da dica de tela","PDFE.Views.HyperlinkSettingsDialog.textTitle":"Configurações de link","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"Use as barras de rolagem, o mouse e o zoom para selecionar a visualização desejada e, em seguida, pressione \"Definir link\" para criar o destino do link.","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"Criar Ir para a visualização","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo é obrigatório","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"Primeira Página","PDFE.Views.HyperlinkSettingsDialog.txtLast":"Última página","PDFE.Views.HyperlinkSettingsDialog.txtNext":"Próxima página","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"Este campo deve ser uma URL no formato \"http://www.example.com\"","PDFE.Views.HyperlinkSettingsDialog.txtPage":"Página","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"Acesse uma visualização de página.","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"Página anterior","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"Definir link","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo é limitado a 2083 caracteres. ","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Digite o endereço da web ou selecione um arquivo","PDFE.Views.ImageSettings.strTransparency":"Opacidade","PDFE.Views.ImageSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.ImageSettings.textCrop":"Cortar","PDFE.Views.ImageSettings.textCropFill":"Preencher","PDFE.Views.ImageSettings.textCropFit":"Ajustar","PDFE.Views.ImageSettings.textCropToShape":"Cortar para dar forma","PDFE.Views.ImageSettings.textEdit":"Editar","PDFE.Views.ImageSettings.textEditObject":"Editar objeto","PDFE.Views.ImageSettings.textFitPage":"Ajustar a página","PDFE.Views.ImageSettings.textFlip":"Girar","PDFE.Views.ImageSettings.textFromFile":"Do Arquivo","PDFE.Views.ImageSettings.textFromStorage":"Do armazenamento","PDFE.Views.ImageSettings.textFromUrl":"De URL","PDFE.Views.ImageSettings.textHeight":"Altura","PDFE.Views.ImageSettings.textHint270":"Girar 90º no sentido anti-horário.","PDFE.Views.ImageSettings.textHint90":"Girar 90º no sentido horário","PDFE.Views.ImageSettings.textHintFlipH":"Virar horizontalmente","PDFE.Views.ImageSettings.textHintFlipV":"Virar verticalmente","PDFE.Views.ImageSettings.textInsert":"Substituir imagem","PDFE.Views.ImageSettings.textOriginalSize":"Tamanho atual","PDFE.Views.ImageSettings.textRecentlyUsed":"Usado recentemente","PDFE.Views.ImageSettings.textResetCrop":"Redefinir colheita","PDFE.Views.ImageSettings.textRotate90":"Girar 90º","PDFE.Views.ImageSettings.textRotation":"Rotação","PDFE.Views.ImageSettings.textSize":"Tamanho","PDFE.Views.ImageSettings.textWidth":"Largura","PDFE.Views.ImageSettingsAdvanced.textAlt":"Texto Alternativo","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"Descrição","PDFE.Views.ImageSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações visuais do objeto, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma, gráfico ou tabela.","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ImageSettingsAdvanced.textAngle":"Ângulo","PDFE.Views.ImageSettingsAdvanced.textCenter":"Centro","PDFE.Views.ImageSettingsAdvanced.textFlipped":"Invertido","PDFE.Views.ImageSettingsAdvanced.textFrom":"de","PDFE.Views.ImageSettingsAdvanced.textGeneral":"Geral","PDFE.Views.ImageSettingsAdvanced.textHeight":"Altura","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","PDFE.Views.ImageSettingsAdvanced.textImageName":"Nome da imagem","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"Proporções constantes","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"Tamanho atual","PDFE.Views.ImageSettingsAdvanced.textPlacement":"Posicionamento","PDFE.Views.ImageSettingsAdvanced.textPosition":"Posição","PDFE.Views.ImageSettingsAdvanced.textRotation":"Rotação","PDFE.Views.ImageSettingsAdvanced.textSize":"Tamanho","PDFE.Views.ImageSettingsAdvanced.textTitle":"Imagem - Configurações avançadas","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"Canto superior esquerdo","PDFE.Views.ImageSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","PDFE.Views.ImageSettingsAdvanced.textWidth":"Largura","PDFE.Views.InsTab.capBlankPage":"Página em branco","PDFE.Views.InsTab.capBtnDateTime":"Data e Hora","PDFE.Views.InsTab.capBtnInsHeaderFooter":"Cabeçalho/rodapé","PDFE.Views.InsTab.capBtnInsSmartArt":"SmartArt","PDFE.Views.InsTab.capBtnInsSymbol":"Símbolo","PDFE.Views.InsTab.capBtnPageNum":"Número da página","PDFE.Views.InsTab.capInsertChart":"Gráfico","PDFE.Views.InsTab.capInsertEquation":"Equação","PDFE.Views.InsTab.capInsertHyperlink":"Link","PDFE.Views.InsTab.capInsertImage":"Imagem","PDFE.Views.InsTab.capInsertShape":"Forma","PDFE.Views.InsTab.capInsertTable":"Tabela","PDFE.Views.InsTab.capInsertText":"Caixa de texto","PDFE.Views.InsTab.capInsertTextArt":"Arte de texto","PDFE.Views.InsTab.capInsPage":"Inserir página","PDFE.Views.InsTab.mniCustomTable":"Inserir tabela personalizada","PDFE.Views.InsTab.mniImageFromFile":"Imagem do arquivo","PDFE.Views.InsTab.mniImageFromStorage":"Imagem de armazenamento","PDFE.Views.InsTab.mniImageFromUrl":"Imagem da URL","PDFE.Views.InsTab.mniInsertSSE":"Inserir planilha","PDFE.Views.InsTab.textAlpha":"Letra minúscula grega alfa","PDFE.Views.InsTab.textBetta":"Letra Minúscula Grega Beta","PDFE.Views.InsTab.textBlackHeart":"Copas","PDFE.Views.InsTab.textBullet":"Ponto","PDFE.Views.InsTab.textCopyright":"Assinatura de copyright","PDFE.Views.InsTab.textDegree":"Símbolo de grau","PDFE.Views.InsTab.textDelta":"Letra minúscula grega Delta","PDFE.Views.InsTab.textDivision":"Sinal de divisão","PDFE.Views.InsTab.textDollar":"Cifrão","PDFE.Views.InsTab.textEuro":"Sinal de Euro","PDFE.Views.InsTab.textGreaterEqual":"Maior que ou igual a","PDFE.Views.InsTab.textInfinity":"Infinidade","PDFE.Views.InsTab.textLessEqual":"Menos que ou igual a","PDFE.Views.InsTab.textLetterPi":"Letra minúscula grega Pi","PDFE.Views.InsTab.textMoreSymbols":"Mais símbolos","PDFE.Views.InsTab.textNotEqualTo":"Não igual a","PDFE.Views.InsTab.textOneHalf":"Fração Vulgar Metade","PDFE.Views.InsTab.textOneQuarter":"Fração Vulgar Um Quarto","PDFE.Views.InsTab.textPlusMinus":"Sinal de mais-menos","PDFE.Views.InsTab.textRecentlyUsed":"Usado recentemente","PDFE.Views.InsTab.textRegistered":"Símbolo de marca registrada","PDFE.Views.InsTab.textSection":"Sinal de seção","PDFE.Views.InsTab.textSmile":"Rosto sorridente branco","PDFE.Views.InsTab.textSquareRoot":"Raiz quadrada","PDFE.Views.InsTab.textTilde":"Til","PDFE.Views.InsTab.textTradeMark":"Sinal de marca registrada","PDFE.Views.InsTab.textYen":"Sinal de iene","PDFE.Views.InsTab.tipChangeChart":"Alterar tipo de gráfico","PDFE.Views.InsTab.tipDateTime":"Insira a data e hora atuais","PDFE.Views.InsTab.tipEditHeaderFooter":"Editar cabeçalho e rodapé","PDFE.Views.InsTab.tipInsertChart":"Inserir gráfico","PDFE.Views.InsTab.tipInsertEquation":"Inserir equação","PDFE.Views.InsTab.tipInsertHorizontalText":"Inserir caixa de texto horizontal","PDFE.Views.InsTab.tipInsertHyperlink":"Adicionar Link","PDFE.Views.InsTab.tipInsertImage":"Inserir imagem","PDFE.Views.InsTab.tipInsertPage":"Inserir página em branco","PDFE.Views.InsTab.tipInsertPageAfter":"Insira uma página em branco depois","PDFE.Views.InsTab.tipInsertShape":"Inserir forma","PDFE.Views.InsTab.tipInsertSmartArt":"Inserir SmartArt","PDFE.Views.InsTab.tipInsertSymbol":"Inserir símbolo","PDFE.Views.InsTab.tipInsertTable":"Inserir tabela","PDFE.Views.InsTab.tipInsertText":"Inserir caixa de texto","PDFE.Views.InsTab.tipInsertTextArt":"Inserir arte de texto","PDFE.Views.InsTab.tipInsertVerticalText":"Inserir caixa de texto vertical","PDFE.Views.InsTab.tipPageNum":"Inserir número da página","PDFE.Views.InsTab.txtNewPageAfter":"Insira uma página em branco depois","PDFE.Views.InsTab.txtNewPageBefore":"Insira uma página em branco antes","PDFE.Views.LeftMenu.ariaLeftMenu":"Menu esquerdo","PDFE.Views.LeftMenu.tipAbout":"Sobre","PDFE.Views.LeftMenu.tipChat":"Chat","PDFE.Views.LeftMenu.tipComments":"Comentários","PDFE.Views.LeftMenu.tipNavigation":"Navegação","PDFE.Views.LeftMenu.tipOutline":"Títulos","PDFE.Views.LeftMenu.tipPageThumbnails":"Miniaturas de página","PDFE.Views.LeftMenu.tipPlugins":"Plugins","PDFE.Views.LeftMenu.tipSearch":"Pesquisar","PDFE.Views.LeftMenu.tipSupport":"Feedback e Suporte","PDFE.Views.LeftMenu.tipTitles":"Títulos","PDFE.Views.LeftMenu.txtDeveloper":"MODO DESENVOLVEDOR","PDFE.Views.LeftMenu.txtEditor":"Editor de PDF","PDFE.Views.LeftMenu.txtLimit":"Limitar o acesso","PDFE.Views.LeftMenu.txtTrial":"MODO DE TESTE","PDFE.Views.LeftMenu.txtTrialDev":"Modo desenvolvedor de teste","PDFE.Views.Navigation.strNavigate":"Títulos","PDFE.Views.Navigation.txtClosePanel":"Fechar títulos","PDFE.Views.Navigation.txtCollapse":"Reduzir tudo","PDFE.Views.Navigation.txtEmptyItem":"Título Vazio","PDFE.Views.Navigation.txtEmptyViewer":"Não há títulos no documento.","PDFE.Views.Navigation.txtExpand":"Expandir tudo","PDFE.Views.Navigation.txtExpandToLevel":"Expandir ao nível","PDFE.Views.Navigation.txtFontSize":"Tamanho da fonte","PDFE.Views.Navigation.txtLarge":"Grande","PDFE.Views.Navigation.txtMedium":"Médio","PDFE.Views.Navigation.txtSettings":"Configurações de títulos","PDFE.Views.Navigation.txtSmall":"Pequeno","PDFE.Views.Navigation.txtWrapHeadings":"Envolver títulos longos","PDFE.Views.PageThumbnails.textClosePanel":"Fechar miniaturas de página","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"Realçar parte visível da página","PDFE.Views.PageThumbnails.textPageThumbnails":"Miniaturas de página","PDFE.Views.PageThumbnails.textThumbnailsSettings":"Configurações de miniaturas","PDFE.Views.PageThumbnails.textThumbnailsSize":"Tamanho das miniaturas","PDFE.Views.ParagraphSettings.strLineHeight":"Espaçamento entre linhas","PDFE.Views.ParagraphSettings.strParagraphSpacing":"Espaçamento de parágrafo","PDFE.Views.ParagraphSettings.strSpacingAfter":"Depois","PDFE.Views.ParagraphSettings.strSpacingBefore":"Antes","PDFE.Views.ParagraphSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.ParagraphSettings.textAt":"em","PDFE.Views.ParagraphSettings.textAtLeast":"Pelo menos","PDFE.Views.ParagraphSettings.textAuto":"Múltiplo","PDFE.Views.ParagraphSettings.textExact":"Exatamente","PDFE.Views.ParagraphSettings.txtAutoText":"Automático","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"As abas especificadas aparecerão neste campo","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"Todas maiúsculas","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"Direção","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Tachado duplo","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"Recuos","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Esquerda","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Espaçamento entre linhas","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Direita","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"depois","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Fonte","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Recuos e espaçamento","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versículos minúsculos","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaçamento","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"Tachado","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"Subscrito","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"Sobrescrito","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"Aba","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"Alinhamento","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"Múltiplo","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaçamento entre caracteres","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"Aba padrão","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"Da esquerda para a direita","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"Da direita para a esquerda","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"Efeitos","PDFE.Views.ParagraphSettingsAdvanced.textExact":"Exatamente","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primeira linha","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"Suspensão","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"Justificado","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(nenhum)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"Remover","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Remover todos","PDFE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"Centro","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"Esquerda","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posição da aba","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"Direita","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"Parágrafo - Configurações avançadas","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"Automático","PDFE.Views.PrintWithPreview.textMarginsLast":"Último personalizado","PDFE.Views.PrintWithPreview.textMarginsModerate":"Moderado","PDFE.Views.PrintWithPreview.textMarginsNarrow":"Estreito","PDFE.Views.PrintWithPreview.textMarginsNormal":"Normal","PDFE.Views.PrintWithPreview.textMarginsWide":"Largo","PDFE.Views.PrintWithPreview.txtAllPages":"Todas as páginas","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impressão em preto e branco","PDFE.Views.PrintWithPreview.txtBothSides":"Imprimir em ambos os lados","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"Vire as páginas na borda longa","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"Vire as páginas na borda curta","PDFE.Views.PrintWithPreview.txtBottom":"Inferior","PDFE.Views.PrintWithPreview.txtColorPrinting":"Impressão colorida","PDFE.Views.PrintWithPreview.txtContent":"Conteúdo","PDFE.Views.PrintWithPreview.txtCopies":"Cópias","PDFE.Views.PrintWithPreview.txtCurrentPage":"Pagina atual","PDFE.Views.PrintWithPreview.txtCustom":"Personalizar","PDFE.Views.PrintWithPreview.txtCustomPages":"Impressão personalizada","PDFE.Views.PrintWithPreview.txtDocument":"Documento","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"Documento e marcações","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"Documentos e selos","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"Apenas campos de formulário","PDFE.Views.PrintWithPreview.txtLandscape":"Paisagem","PDFE.Views.PrintWithPreview.txtLeft":"Esquerda","PDFE.Views.PrintWithPreview.txtMargins":"Margens","PDFE.Views.PrintWithPreview.txtOf":"de {0}","PDFE.Views.PrintWithPreview.txtOneSide":"Imprimir um lado","PDFE.Views.PrintWithPreview.txtOneSideDesc":"Imprima apenas em um lado da página","PDFE.Views.PrintWithPreview.txtPage":"Página","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"Número da página inválido","PDFE.Views.PrintWithPreview.txtPageOrientation":"Orientação da página","PDFE.Views.PrintWithPreview.txtPages":"Páginas","PDFE.Views.PrintWithPreview.txtPageSize":"Tamanho da página","PDFE.Views.PrintWithPreview.txtPortrait":"Retrato ","PDFE.Views.PrintWithPreview.txtPrint":"Imprimir","PDFE.Views.PrintWithPreview.txtPrinter":"Impressora","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"Impressora não selecionada","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"Impressoras não encontradas","PDFE.Views.PrintWithPreview.txtPrintPdf":"Imprimir em PDF","PDFE.Views.PrintWithPreview.txtPrintRange":"Imprimir intervalo","PDFE.Views.PrintWithPreview.txtPrintSides":"Imprimir lados","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir usando a caixa de diálogo do sistema","PDFE.Views.PrintWithPreview.txtRight":"Direito","PDFE.Views.PrintWithPreview.txtSelection":"Seleção","PDFE.Views.PrintWithPreview.txtTop":"Parte superior","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"Aguardando impressoras","PDFE.Views.RedactTab.capApplyRedactions":"Aplicar redações","PDFE.Views.RedactTab.capFindRedact":"Encontrar e redigir","PDFE.Views.RedactTab.capMarkRedact":"Marcar para redação","PDFE.Views.RedactTab.capRedactPages":"Redigir páginas","PDFE.Views.RedactTab.tipApplyRedactions":"Aplicar redações","PDFE.Views.RedactTab.tipFindRedact":"Encontrar e redigir","PDFE.Views.RedactTab.tipMarkForRedact":"Marcar para redação","PDFE.Views.RedactTab.tipRedactPages":"Redigir páginas","PDFE.Views.RedactTab.txtMarkCurrentPage":"Marcar página atual","PDFE.Views.RedactTab.txtSelectRange":"Selecionar intervalo","PDFE.Views.RightMenu.ariaRightMenu":"Menu à direita","PDFE.Views.RightMenu.txtChartSettings":"Configurações do gráfico","PDFE.Views.RightMenu.txtFormSettings":"Configurações do formulário","PDFE.Views.RightMenu.txtImageSettings":"Configurações de imagem","PDFE.Views.RightMenu.txtParagraphSettings":"Configurações do parágrafo","PDFE.Views.RightMenu.txtShapeSettings":"Configurações da forma","PDFE.Views.RightMenu.txtTableSettings":"Configurações da tabela","PDFE.Views.RightMenu.txtTextArtSettings":"Configurações de Arte de Texto","PDFE.Views.ShapeSettings.strBackground":"Cor de fundo","PDFE.Views.ShapeSettings.strChange":"Alterar forma","PDFE.Views.ShapeSettings.strColor":"Cor","PDFE.Views.ShapeSettings.strFill":"Preencher","PDFE.Views.ShapeSettings.strForeground":"Cor do plano de fundo","PDFE.Views.ShapeSettings.strPattern":"Padrão","PDFE.Views.ShapeSettings.strShadow":"Mostrar sombra","PDFE.Views.ShapeSettings.strSize":"Tamanho","PDFE.Views.ShapeSettings.strStroke":"Linha","PDFE.Views.ShapeSettings.strTransparency":"Opacidade","PDFE.Views.ShapeSettings.strType":"Tipo","PDFE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","PDFE.Views.ShapeSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.ShapeSettings.textAngle":"Ângulo","PDFE.Views.ShapeSettings.textBorderSizeErr":"O valor inserido está incorreto.
Insira um valor entre 0 pt e 1.584 pt.","PDFE.Views.ShapeSettings.textColor":"Preenchimento de cor","PDFE.Views.ShapeSettings.textDirection":"Direção","PDFE.Views.ShapeSettings.textEditPoints":"Editar pontos","PDFE.Views.ShapeSettings.textEditShape":"Editar forma","PDFE.Views.ShapeSettings.textEmptyPattern":"Nenhum padrão","PDFE.Views.ShapeSettings.textEyedropper":"Conta-gotas","PDFE.Views.ShapeSettings.textFlip":"Girar","PDFE.Views.ShapeSettings.textFromFile":"Do Arquivo","PDFE.Views.ShapeSettings.textFromStorage":"Do armazenamento","PDFE.Views.ShapeSettings.textFromUrl":"De URL","PDFE.Views.ShapeSettings.textGradient":"Pontos de gradiente","PDFE.Views.ShapeSettings.textGradientFill":"Preenchimento gradiente","PDFE.Views.ShapeSettings.textHint270":"Girar 90º no sentido anti-horário.","PDFE.Views.ShapeSettings.textHint90":"Girar 90º no sentido horário","PDFE.Views.ShapeSettings.textHintFlipH":"Virar horizontalmente","PDFE.Views.ShapeSettings.textHintFlipV":"Virar verticalmente","PDFE.Views.ShapeSettings.textImageTexture":"Imagem ou Textura","PDFE.Views.ShapeSettings.textLinear":"Linear","PDFE.Views.ShapeSettings.textMoreColors":"Mais cores","PDFE.Views.ShapeSettings.textNoFill":"Sem preenchimento","PDFE.Views.ShapeSettings.textNoShadow":"Sem sombra","PDFE.Views.ShapeSettings.textPatternFill":"Padrão","PDFE.Views.ShapeSettings.textPosition":"Posição","PDFE.Views.ShapeSettings.textRadial":"Radial","PDFE.Views.ShapeSettings.textRecentlyUsed":"Usado recentemente","PDFE.Views.ShapeSettings.textRotate90":"Girar 90º","PDFE.Views.ShapeSettings.textRotation":"Rotação","PDFE.Views.ShapeSettings.textSelectImage":"Selecionar imagem","PDFE.Views.ShapeSettings.textSelectTexture":"Selecione","PDFE.Views.ShapeSettings.textShadow":"Sombra","PDFE.Views.ShapeSettings.textStretch":"Alongar","PDFE.Views.ShapeSettings.textStyle":"Estilo","PDFE.Views.ShapeSettings.textTexture":"Da Textura","PDFE.Views.ShapeSettings.textTile":"Mosaico","PDFE.Views.ShapeSettings.tipAddGradientPoint":"Adicionar ponto de gradiente","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"Remover ponto de gradiente","PDFE.Views.ShapeSettings.txtBrownPaper":"Papel pardo","PDFE.Views.ShapeSettings.txtCanvas":"Canvas","PDFE.Views.ShapeSettings.txtCarton":"Papelão","PDFE.Views.ShapeSettings.txtDarkFabric":"Tecido escuro","PDFE.Views.ShapeSettings.txtGrain":"Granulação","PDFE.Views.ShapeSettings.txtGranite":"Granito","PDFE.Views.ShapeSettings.txtGreyPaper":"Papel cinza","PDFE.Views.ShapeSettings.txtKnit":"Encontro","PDFE.Views.ShapeSettings.txtLeather":"Couro","PDFE.Views.ShapeSettings.txtNoBorders":"Sem linha","PDFE.Views.ShapeSettings.txtOffsetBottom":"Deslocamento: Inferior","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"Deslocamento: canto inferior esquerdo","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"Deslocamento: canto superior direito","PDFE.Views.ShapeSettings.txtOffsetCenter":"Deslocamento: Centro","PDFE.Views.ShapeSettings.txtOffsetLeft":"Deslocamento: Esquerda","PDFE.Views.ShapeSettings.txtOffsetRight":"Deslocamento: Direita","PDFE.Views.ShapeSettings.txtOffsetTop":"Deslocamento: Superior","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"Deslocamento: canto superior esquerdo","PDFE.Views.ShapeSettings.txtOffsetTopRight":"Deslocamento: canto superior direito","PDFE.Views.ShapeSettings.txtPapyrus":"Papiro","PDFE.Views.ShapeSettings.txtWood":"Madeira","PDFE.Views.ShapeSettingsAdvanced.strColumns":"Colunas","PDFE.Views.ShapeSettingsAdvanced.strMargins":"Preenchimento de texto","PDFE.Views.ShapeSettingsAdvanced.textAlt":"Texto Alternativo","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"Descrição","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações visuais do objeto, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma, gráfico ou tabela.","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"Título","PDFE.Views.ShapeSettingsAdvanced.textAngle":"Ângulo","PDFE.Views.ShapeSettingsAdvanced.textArrows":"Setas","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"Ajuste automático","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"Tamanho inicial","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"Estilo inicial","PDFE.Views.ShapeSettingsAdvanced.textBevel":"Bisel","PDFE.Views.ShapeSettingsAdvanced.textBottom":"Inferior","PDFE.Views.ShapeSettingsAdvanced.textCapType":"Tipo de letra","PDFE.Views.ShapeSettingsAdvanced.textCenter":"Centro","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"Número de colunas","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"Tamanho final","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"Estilo final","PDFE.Views.ShapeSettingsAdvanced.textFlat":"Plano","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"Invertido","PDFE.Views.ShapeSettingsAdvanced.textFrom":"de","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"Geral","PDFE.Views.ShapeSettingsAdvanced.textHeight":"Altura","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"Horizontalmente","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"Tipo de junção","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"Proporções constantes","PDFE.Views.ShapeSettingsAdvanced.textLeft":"Esquerda","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"Estilo de linha","PDFE.Views.ShapeSettingsAdvanced.textMiter":"Malhete","PDFE.Views.ShapeSettingsAdvanced.textNofit":"Não ajustar automaticamente.","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"Posicionamento","PDFE.Views.ShapeSettingsAdvanced.textPosition":"Posição","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"Redimensionar forma para caber no texto","PDFE.Views.ShapeSettingsAdvanced.textRight":"Direita","PDFE.Views.ShapeSettingsAdvanced.textRotation":"Rotação","PDFE.Views.ShapeSettingsAdvanced.textRound":"Rodada","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"Nome da forma","PDFE.Views.ShapeSettingsAdvanced.textShrink":"Reduzir o texto ao transbordar","PDFE.Views.ShapeSettingsAdvanced.textSize":"Tamanho","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"Espaçamento entre colunas","PDFE.Views.ShapeSettingsAdvanced.textSquare":"Quadrado","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"Caixa de texto","PDFE.Views.ShapeSettingsAdvanced.textTitle":"Forma - Configurações avançadas","PDFE.Views.ShapeSettingsAdvanced.textTop":"Superior","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"Canto superior esquerdo","PDFE.Views.ShapeSettingsAdvanced.textVertical":"Vertical","PDFE.Views.ShapeSettingsAdvanced.textVertically":"Verticalmente","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"Pesos e Setas","PDFE.Views.ShapeSettingsAdvanced.textWidth":"Largura","PDFE.Views.ShapeSettingsAdvanced.txtNone":"Nenhum","PDFE.Views.Statusbar.goToPageText":"Ir para a Página","PDFE.Views.Statusbar.pageIndexText":"Página {0} de {1}","PDFE.Views.Statusbar.tipFitPage":"Ajustar a página","PDFE.Views.Statusbar.tipFitWidth":"Ajustar à Largura","PDFE.Views.Statusbar.tipHandTool":"Ferramenta mão","PDFE.Views.Statusbar.tipPageNext":"Ir para a próxima página","PDFE.Views.Statusbar.tipPagePrev":"Ir para a página anterior","PDFE.Views.Statusbar.tipSelectTool":"Selecionar ferramenta","PDFE.Views.Statusbar.tipZoomFactor":"Zoom","PDFE.Views.Statusbar.tipZoomIn":"Ampliar","PDFE.Views.Statusbar.tipZoomOut":"Reduzir","PDFE.Views.Statusbar.txtPageNumInvalid":"Número da página inválido","PDFE.Views.TableSettings.deleteColumnText":"Excluir coluna","PDFE.Views.TableSettings.deleteRowText":"Excluir linha","PDFE.Views.TableSettings.deleteTableText":"Excluir tabela","PDFE.Views.TableSettings.insertColumnLeftText":"Inserir coluna à esquerda","PDFE.Views.TableSettings.insertColumnRightText":"Inserir coluna à direita","PDFE.Views.TableSettings.insertRowAboveText":"Inserir linha acima","PDFE.Views.TableSettings.insertRowBelowText":"Inserir linha abaixo","PDFE.Views.TableSettings.mergeCellsText":"Mesclar células","PDFE.Views.TableSettings.selectCellText":"Selecionar célula","PDFE.Views.TableSettings.selectColumnText":"Selecionar coluna","PDFE.Views.TableSettings.selectRowText":"Selecionar linha","PDFE.Views.TableSettings.selectTableText":"Selecionar tabela","PDFE.Views.TableSettings.splitCellsText":"Dividir célula...","PDFE.Views.TableSettings.splitCellTitleText":"Dividir célula","PDFE.Views.TableSettings.textAdvanced":"Exibir configurações avançadas","PDFE.Views.TableSettings.textBackColor":"Cor de fundo","PDFE.Views.TableSettings.textBanded":"Em tiras","PDFE.Views.TableSettings.textBorderColor":"Cor","PDFE.Views.TableSettings.textBorders":"Estilo das bordas","PDFE.Views.TableSettings.textCellSize":"Tamanho de célula","PDFE.Views.TableSettings.textColumns":"Colunas","PDFE.Views.TableSettings.textDistributeCols":"Distribuir colunas","PDFE.Views.TableSettings.textDistributeRows":"Distribuir linhas","PDFE.Views.TableSettings.textEdit":"Linhas e Colunas","PDFE.Views.TableSettings.textEmptyTemplate":"Sem modelos","PDFE.Views.TableSettings.textFirst":"primeiro","PDFE.Views.TableSettings.textHeader":"Cabeçalho","PDFE.Views.TableSettings.textHeight":"Altura","PDFE.Views.TableSettings.textLast":"Último","PDFE.Views.TableSettings.textRows":"Linhas","PDFE.Views.TableSettings.textSelectBorders":"Selecione as bordas que deseja alterar aplicando o estilo escolhido acima","PDFE.Views.TableSettings.textTemplate":"Selecionar a partir do modelo","PDFE.Views.TableSettings.textTotal":"Total","PDFE.Views.TableSettings.textWidth":"Largura","PDFE.Views.TableSettings.tipAll":"Definir borda externa e todas as linhas internas","PDFE.Views.TableSettings.tipBottom":"Definir apenas borda inferior externa","PDFE.Views.TableSettings.tipInner":"Definir apenas linhas internas","PDFE.Views.TableSettings.tipInnerHor":"Definir apenas linhas internas horizontais","PDFE.Views.TableSettings.tipInnerVert":"Definir apenas linhas internas verticais","PDFE.Views.TableSettings.tipLeft":"Definir apenas borda esquerda externa","PDFE.Views.TableSettings.tipNone":"Definir sem bordas","PDFE.Views.TableSettings.tipOuter":"Definir apenas borda externa","PDFE.Views.TableSettings.tipRight":"Definir apenas borda direita externa","PDFE.Views.TableSettings.tipTop":"Definir apenas borda superior externa","PDFE.Views.TableSettings.txtGroupTable_Custom":"Personalizado","PDFE.Views.TableSettings.txtGroupTable_Dark":"Escuro","PDFE.Views.TableSettings.txtGroupTable_Light":"Claro","PDFE.Views.TableSettings.txtGroupTable_Medium":"Média","PDFE.Views.TableSettings.txtGroupTable_Optimal":"Melhor correspondência para documento","PDFE.Views.TableSettings.txtNoBorders":"Sem bordas","PDFE.Views.TableSettings.txtTable_Accent":"Acento","PDFE.Views.TableSettings.txtTable_DarkStyle":"Estilo Escuro","PDFE.Views.TableSettings.txtTable_LightStyle":"Estilo claro","PDFE.Views.TableSettings.txtTable_MediumStyle":"Estilo médio","PDFE.Views.TableSettings.txtTable_NoGrid":"Sem grade","PDFE.Views.TableSettings.txtTable_NoStyle":"Sem estilo","PDFE.Views.TableSettings.txtTable_TableGrid":"Grade da tabela","PDFE.Views.TableSettings.txtTable_ThemedStyle":"Estilo do Tema","PDFE.Views.TableSettingsAdvanced.textAlt":"Texto Alternativo","PDFE.Views.TableSettingsAdvanced.textAltDescription":"Descrição","PDFE.Views.TableSettingsAdvanced.textAltTip":"A representação alternativa baseada em texto das informações visuais do objeto, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma, gráfico ou tabela.","PDFE.Views.TableSettingsAdvanced.textAltTitle":"Título","PDFE.Views.TableSettingsAdvanced.textBottom":"Inferior","PDFE.Views.TableSettingsAdvanced.textCenter":"Centro","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"Use margens padrão","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"Margens padrão","PDFE.Views.TableSettingsAdvanced.textFrom":"de","PDFE.Views.TableSettingsAdvanced.textGeneral":"Geral","PDFE.Views.TableSettingsAdvanced.textHeight":"Altura","PDFE.Views.TableSettingsAdvanced.textHorizontal":"Horizontal","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"Proporções constantes","PDFE.Views.TableSettingsAdvanced.textLeft":"Esquerda","PDFE.Views.TableSettingsAdvanced.textMargins":"Margens das células","PDFE.Views.TableSettingsAdvanced.textPlacement":"Posicionamento","PDFE.Views.TableSettingsAdvanced.textPosition":"Posição","PDFE.Views.TableSettingsAdvanced.textRight":"Direita","PDFE.Views.TableSettingsAdvanced.textSize":"Tamanho","PDFE.Views.TableSettingsAdvanced.textTableName":"Nome da tabela","PDFE.Views.TableSettingsAdvanced.textTitle":"Tabela - Configurações avançadas","PDFE.Views.TableSettingsAdvanced.textTop":"Superior","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"Canto superior esquerdo","PDFE.Views.TableSettingsAdvanced.textVertical":"Vertical","PDFE.Views.TableSettingsAdvanced.textWidth":"Largura","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"Margens","PDFE.Views.TextArtSettings.strBackground":"Cor de fundo","PDFE.Views.TextArtSettings.strColor":"Cor","PDFE.Views.TextArtSettings.strFill":"Preencher","PDFE.Views.TextArtSettings.strForeground":"Cor do plano de fundo","PDFE.Views.TextArtSettings.strPattern":"Padrão","PDFE.Views.TextArtSettings.strSize":"Tamanho","PDFE.Views.TextArtSettings.strStroke":"Linha","PDFE.Views.TextArtSettings.strTransparency":"Opacidade","PDFE.Views.TextArtSettings.strType":"Tipo","PDFE.Views.TextArtSettings.textAngle":"Ângulo","PDFE.Views.TextArtSettings.textBorderSizeErr":"O valor inserido está incorreto.
Insira um valor entre 0 pt e 1.584 pt.","PDFE.Views.TextArtSettings.textColor":"Preenchimento de cor","PDFE.Views.TextArtSettings.textDirection":"Direção","PDFE.Views.TextArtSettings.textEmptyPattern":"Nenhum padrão","PDFE.Views.TextArtSettings.textFromFile":"Do Arquivo","PDFE.Views.TextArtSettings.textFromUrl":"De URL","PDFE.Views.TextArtSettings.textGradient":"Pontos de gradiente","PDFE.Views.TextArtSettings.textGradientFill":"Preenchimento gradiente","PDFE.Views.TextArtSettings.textImageTexture":"Imagem ou Textura","PDFE.Views.TextArtSettings.textLinear":"Linear","PDFE.Views.TextArtSettings.textNoFill":"Sem preenchimento","PDFE.Views.TextArtSettings.textPatternFill":"Padrão","PDFE.Views.TextArtSettings.textPosition":"Posição","PDFE.Views.TextArtSettings.textRadial":"Radial","PDFE.Views.TextArtSettings.textSelectTexture":"Selecione","PDFE.Views.TextArtSettings.textStretch":"Alongar","PDFE.Views.TextArtSettings.textStyle":"Estilo","PDFE.Views.TextArtSettings.textTemplate":"Modelo","PDFE.Views.TextArtSettings.textTexture":"Da Textura","PDFE.Views.TextArtSettings.textTile":"Mosaico","PDFE.Views.TextArtSettings.textTransform":"Transformar","PDFE.Views.TextArtSettings.tipAddGradientPoint":"Adicionar ponto de gradiente","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"Remover ponto de gradiente","PDFE.Views.TextArtSettings.txtBrownPaper":"Papel pardo","PDFE.Views.TextArtSettings.txtCanvas":"Canvas","PDFE.Views.TextArtSettings.txtCarton":"Papelão","PDFE.Views.TextArtSettings.txtDarkFabric":"Tecido escuro","PDFE.Views.TextArtSettings.txtGrain":"Granulação","PDFE.Views.TextArtSettings.txtGranite":"Granito","PDFE.Views.TextArtSettings.txtGreyPaper":"Papel cinza","PDFE.Views.TextArtSettings.txtKnit":"Encontro","PDFE.Views.TextArtSettings.txtLeather":"Couro","PDFE.Views.TextArtSettings.txtNoBorders":"Sem linha","PDFE.Views.TextArtSettings.txtPapyrus":"Papiro","PDFE.Views.TextArtSettings.txtWood":"Madeira","PDFE.Views.Toolbar.capBtnAddComment":"Adicionar comentário","PDFE.Views.Toolbar.capBtnArrowComment":"Seta","PDFE.Views.Toolbar.capBtnCircleComment":"Círculo","PDFE.Views.Toolbar.capBtnComment":"Comentário","PDFE.Views.Toolbar.capBtnDelPage":"Excluir página","PDFE.Views.Toolbar.capBtnDownloadForm":"Baixar como pdf","PDFE.Views.Toolbar.capBtnEditText":"Editar texto","PDFE.Views.Toolbar.capBtnHand":"Mão","PDFE.Views.Toolbar.capBtnNext":"Próximo campo","PDFE.Views.Toolbar.capBtnPolyLineComment":"Linhas conectadas","PDFE.Views.Toolbar.capBtnPrev":"Campo anterior","PDFE.Views.Toolbar.capBtnRecognize":"Editar texto","PDFE.Views.Toolbar.capBtnRectComment":"Retângulo","PDFE.Views.Toolbar.capBtnRotate":"Girar","PDFE.Views.Toolbar.capBtnRotatePage":"Girar página","PDFE.Views.Toolbar.capBtnSaveForm":"Salvar como PDF","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"Salvar como...","PDFE.Views.Toolbar.capBtnSelect":"Selecionar","PDFE.Views.Toolbar.capBtnShowComments":"Mostrar comentários","PDFE.Views.Toolbar.capBtnStamp":"Carimbo","PDFE.Views.Toolbar.capBtnSubmit":"Enviar","PDFE.Views.Toolbar.capBtnTextCallout":"Texto explicativo","PDFE.Views.Toolbar.capBtnTextComment":"Comentário de texto","PDFE.Views.Toolbar.mniCapitalizeWords":"Utilize cada palavra","PDFE.Views.Toolbar.mniInsertSSE":"Inserir planilha","PDFE.Views.Toolbar.mniLowerCase":"minúscula","PDFE.Views.Toolbar.mniSentenceCase":"Capitular o início de uma frase.","PDFE.Views.Toolbar.mniToggleCase":"aLTERNAR","PDFE.Views.Toolbar.mniUpperCase":"MAIÚSCULO","PDFE.Views.Toolbar.strMenuNoFill":"Sem preenchimento","PDFE.Views.Toolbar.textAlignBottom":"Alinhar texto à parte inferior","PDFE.Views.Toolbar.textAlignCenter":"Centralizar texto","PDFE.Views.Toolbar.textAlignJust":"Justificar","PDFE.Views.Toolbar.textAlignLeft":"Alinhar texto à esquerda","PDFE.Views.Toolbar.textAlignMiddle":"Alinhar texto ao centro","PDFE.Views.Toolbar.textAlignRight":"Alinhar texto à direita","PDFE.Views.Toolbar.textAlignTop":"Alinhar texto à parte superior","PDFE.Views.Toolbar.textArrangeBack":"Enviar para plano de fundo","PDFE.Views.Toolbar.textArrangeBackward":"Enviar para trás","PDFE.Views.Toolbar.textArrangeForward":"Trazer para frente","PDFE.Views.Toolbar.textArrangeFront":"Trazer para primeiro plano","PDFE.Views.Toolbar.textBold":"Negrito","PDFE.Views.Toolbar.textClear":"Limpar campos.","PDFE.Views.Toolbar.textClearFields":"Limpar todos os campos","PDFE.Views.Toolbar.textColumnsCustom":"Personalizar colunas","PDFE.Views.Toolbar.textColumnsOne":"Uma Coluna","PDFE.Views.Toolbar.textColumnsThree":"Três Colunas","PDFE.Views.Toolbar.textColumnsTwo":"Duas Colunas","PDFE.Views.Toolbar.textDirLtr":"Da esquerda para a direita","PDFE.Views.Toolbar.textDirRtl":"Da direita para a esquerda","PDFE.Views.Toolbar.textEditMode":"Editar PDF","PDFE.Views.Toolbar.textHighlight":"Destaque","PDFE.Views.Toolbar.textItalic":"Itálico","PDFE.Views.Toolbar.textListSettings":"Configurações da lista","PDFE.Views.Toolbar.textShapeAlignBottom":"Alinhar à parte inferior","PDFE.Views.Toolbar.textShapeAlignCenter":"Alinhar ao centro","PDFE.Views.Toolbar.textShapeAlignLeft":"Alinhar à esquerda","PDFE.Views.Toolbar.textShapeAlignMiddle":"Alinhar ao centro","PDFE.Views.Toolbar.textShapeAlignRight":"Alinhar à direita","PDFE.Views.Toolbar.textShapeAlignTop":"Alinhar à parte superior","PDFE.Views.Toolbar.textShapesCombine":"Combinar","PDFE.Views.Toolbar.textShapesFragment":"Fragmento","PDFE.Views.Toolbar.textShapesIntersect":"Intersecção","PDFE.Views.Toolbar.textShapesSubstract":"Subtrair","PDFE.Views.Toolbar.textShapesUnion":"União","PDFE.Views.Toolbar.textStrikeout":"Tachado","PDFE.Views.Toolbar.textSubmited":"Formulário enviado com sucesso","PDFE.Views.Toolbar.textSubscript":"Subscrito","PDFE.Views.Toolbar.textSuperscript":"Sobrescrito","PDFE.Views.Toolbar.textTabCollaboration":"Colaboração","PDFE.Views.Toolbar.textTabComment":"Comentário","PDFE.Views.Toolbar.textTabEdit":"Editar","PDFE.Views.Toolbar.textTabFile":"Arquivo","PDFE.Views.Toolbar.textTabHome":"Página Inicial","PDFE.Views.Toolbar.textTabInsert":"Inserir","PDFE.Views.Toolbar.textTabRedact":"Redigir","PDFE.Views.Toolbar.textTabView":"Visualizar","PDFE.Views.Toolbar.textUnderline":"Sublinhado","PDFE.Views.Toolbar.tipAddComment":"Adicionar comentário","PDFE.Views.Toolbar.tipChangeCase":"Alternar maiúscula/minúscula","PDFE.Views.Toolbar.tipClearStyle":"Limpar estilo","PDFE.Views.Toolbar.tipColumns":"Inserir colunas","PDFE.Views.Toolbar.tipCopy":"Copiar","PDFE.Views.Toolbar.tipCut":"Cortar","PDFE.Views.Toolbar.tipDecFont":"Diminuir tamanho da fonte","PDFE.Views.Toolbar.tipDecPrLeft":"Diminuir recuo","PDFE.Views.Toolbar.tipDelPage":"Excluir página","PDFE.Views.Toolbar.tipDownload":"Baixar arquivo","PDFE.Views.Toolbar.tipDownloadForm":"Baixar um arquivo como um documento PDF preenchível","PDFE.Views.Toolbar.tipEditMode":"Adicione ou edite texto, formas, imagens etc.","PDFE.Views.Toolbar.tipEditText":"Editar texto","PDFE.Views.Toolbar.tipFirstPage":"Vá para a primeira página","PDFE.Views.Toolbar.tipFontColor":"Cor da fonte","PDFE.Views.Toolbar.tipFontName":"Fonte","PDFE.Views.Toolbar.tipFontSize":"Tamanho da fonte","PDFE.Views.Toolbar.tipHAligh":"Alinhamento horizontal","PDFE.Views.Toolbar.tipHandTool":"Ferramenta mão","PDFE.Views.Toolbar.tipHighlightColor":"Cor de realce","PDFE.Views.Toolbar.tipIncFont":"Aumentar tamanho da fonte","PDFE.Views.Toolbar.tipIncPrLeft":"Aumentar recuo","PDFE.Views.Toolbar.tipInsertArrowComment":"Desenhe uma flecha","PDFE.Views.Toolbar.tipInsertCircleComment":"Desenhe um círculo ou oval","PDFE.Views.Toolbar.tipInsertPolyLineComment":"Desenhe linhas que se conectam entre si","PDFE.Views.Toolbar.tipInsertRectComment":"Desenhe um retângulo ou quadrado","PDFE.Views.Toolbar.tipInsertStamp":"Inserir selo","PDFE.Views.Toolbar.tipInsertTextCallout":"Inserir texto explicativo","PDFE.Views.Toolbar.tipInsertTextComment":"Inserir comentário de texto","PDFE.Views.Toolbar.tipLastPage":"Ir para a última página","PDFE.Views.Toolbar.tipLineSpace":"Espaçamento de linha","PDFE.Views.Toolbar.tipMarkers":"Marcadores","PDFE.Views.Toolbar.tipMarkersArrow":"Balas de flecha","PDFE.Views.Toolbar.tipMarkersCheckmark":"Marcas de verificação","PDFE.Views.Toolbar.tipMarkersDash":"Marcadores de roteiro","PDFE.Views.Toolbar.tipMarkersFRhombus":"Marcadores de losango cheios","PDFE.Views.Toolbar.tipMarkersFRound":"Marcadores redondos cheios","PDFE.Views.Toolbar.tipMarkersFSquare":"Marcadores quadrados preenchidos","PDFE.Views.Toolbar.tipMarkersHRound":"Marcadores redondos ocos","PDFE.Views.Toolbar.tipMarkersStar":"Marcadores de estrelas","PDFE.Views.Toolbar.tipNextForm":"Ir para o próximo campo","PDFE.Views.Toolbar.tipNextPage":"Vá para a página seguinte","PDFE.Views.Toolbar.tipNone":"nenhum","PDFE.Views.Toolbar.tipNumbers":"Numeração","PDFE.Views.Toolbar.tipPaste":"Colar","PDFE.Views.Toolbar.tipPrevForm":"Ir para o campo anterior","PDFE.Views.Toolbar.tipPrevPage":"Ir para a página anterior","PDFE.Views.Toolbar.tipPrint":"Imprimir","PDFE.Views.Toolbar.tipPrintQuick":"Impressão rápida","PDFE.Views.Toolbar.tipRecognize":"Editar texto","PDFE.Views.Toolbar.tipRedo":"Refazer","PDFE.Views.Toolbar.tipRotate":"Girar páginas","PDFE.Views.Toolbar.tipSave":"Salvar","PDFE.Views.Toolbar.tipSaveCoauth":"Salvar suas alterações para que os outros usuários as vejam.","PDFE.Views.Toolbar.tipSaveForm":"Salvar um arquivo como um documento PDF preenchível","PDFE.Views.Toolbar.tipSelectAll":"Selecionar todos","PDFE.Views.Toolbar.tipSelectTool":"Selecionar ferramenta","PDFE.Views.Toolbar.tipShapeAlign":"Alinhar forma","PDFE.Views.Toolbar.tipShapeArrange":"Organizar forma","PDFE.Views.Toolbar.tipShapeMerge":"Mesclar formas","PDFE.Views.Toolbar.tipSubmit":"Enviar para","PDFE.Views.Toolbar.tipSynchronize":"O documento foi alterado por outro usuário. Clique para salvar suas alterações e recarregar as atualizações.","PDFE.Views.Toolbar.tipTextDir":"Direção do texto","PDFE.Views.Toolbar.tipUndo":"Desfazer","PDFE.Views.Toolbar.tipVAligh":"Alinhamento vertical","PDFE.Views.Toolbar.txtArrowComment":"Seta","PDFE.Views.Toolbar.txtCircleComment":"Círculo","PDFE.Views.Toolbar.txtDistribHor":"Distribuir horizontalmente","PDFE.Views.Toolbar.txtDistribVert":"Distribuir verticalmente","PDFE.Views.Toolbar.txtGroup":"Grupo","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"Alinhar objetos selecionados","PDFE.Views.Toolbar.txtOpacity":"Opacidade","PDFE.Views.Toolbar.txtPageAlign":"Alinhar à página","PDFE.Views.Toolbar.txtPolyLineComment":"Linhas conectadas","PDFE.Views.Toolbar.txtRectComment":"Retângulo","PDFE.Views.Toolbar.txtRotateLeft":"Girar à esquerda","PDFE.Views.Toolbar.txtRotatePage":"Girar página","PDFE.Views.Toolbar.txtRotatePageRight":"Girar página para a direita","PDFE.Views.Toolbar.txtRotateRight":"Girar à direita","PDFE.Views.Toolbar.txtSize":"Tamanho","PDFE.Views.Toolbar.txtUngroup":"Desagrupar","PDFE.Views.ViewTab.capBtnRecognize":"Editar texto","PDFE.Views.ViewTab.textAlwaysShowToolbar":"Sempre mostrar a barra de ferramentas","PDFE.Views.ViewTab.textDarkDocument":"Documento escuro","PDFE.Views.ViewTab.textEditMode":"Editar PDF","PDFE.Views.ViewTab.textFill":"Preencher","PDFE.Views.ViewTab.textFitToPage":"Ajustar a página","PDFE.Views.ViewTab.textFitToWidth":"Ajustar à Largura","PDFE.Views.ViewTab.textInterfaceTheme":"Tema de interface","PDFE.Views.ViewTab.textLeftMenu":"Painel esquerdo","PDFE.Views.ViewTab.textLine":"Linha","PDFE.Views.ViewTab.textNavigation":"Navegação","PDFE.Views.ViewTab.textOutline":"Títulos","PDFE.Views.ViewTab.textRightMenu":"Painel direito","PDFE.Views.ViewTab.textStatusBar":"Barra de status","PDFE.Views.ViewTab.textTabStyle":"Estilo da guia","PDFE.Views.ViewTab.textZoom":"Zoom","PDFE.Views.ViewTab.tipDarkDocument":"Documento escuro","PDFE.Views.ViewTab.tipEditMode":"Adicione ou edite texto, formas, imagens etc.","PDFE.Views.ViewTab.tipFitToPage":"Ajustar a página","PDFE.Views.ViewTab.tipFitToWidth":"Ajustar à Largura","PDFE.Views.ViewTab.tipHeadings":"Títulos","PDFE.Views.ViewTab.tipInterfaceTheme":"Tema de interface","PDFE.Views.ViewTab.tipRecognize":"Reconhecer página","PDFE.Views.ViewTab.textMacros":"Macros","PDFE.Views.ViewTab.tipMacros":"Macros"} \ No newline at end of file diff --git a/public/web-apps/apps/pdfeditor/main/locale/zh.json b/public/web-apps/apps/pdfeditor/main/locale/zh.json index 1a66f7d10..e556104bc 100644 --- a/public/web-apps/apps/pdfeditor/main/locale/zh.json +++ b/public/web-apps/apps/pdfeditor/main/locale/zh.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"显示主窗口","Common.Controllers.Desktop.itemCreateFromTemplate":"用模板创建","Common.Controllers.ExternalLinks.textAddExternalData":"已添加外部源的链接。您可以在“数据”选项卡中更新此类链接。","Common.Controllers.ExternalLinks.textDontUpdate":"不要更新","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"错误:更新失败","Common.Controllers.ExternalLinks.warnUpdateExternalData":"此工作簿含有指向一个或多个可能不安全的外部源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"此文档含有指向一个或多个可能不安全的外部来源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"此演示文稿含有指向一个或多个可能不安全的外部来源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"历史记录加载失败","Common.Controllers.Plugins.helpMoveMacros":"若要使用宏,请切换到“视图”选项卡。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移动了的宏按钮","Common.Controllers.Plugins.helpUseMacros":"在这里可以找到宏按钮","Common.Controllers.Plugins.helpUseMacrosHeader":"更新了对宏的访问","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"插件已成功安装。您可以在这里访问所有后台插件。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}已成功安装。您可以在这里访问所有后台插件。","Common.Controllers.Plugins.textRunInstalledPlugins":"运行已安装的插件","Common.Controllers.Plugins.textRunPlugin":"运行插件","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"在表格底部插入新行。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"将标题 1 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"将标题 2 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"将标题 3 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"将所选文本转换为无序项目符号列表,或开始一个新列表。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"使用键盘方向键将所选对象大步向下移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"使用键盘方向键将所选对象大步向左移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"使用键盘方向键将所选对象大步向右移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"使用键盘方向键将所选对象大步向上移动。","Common.Controllers.Shortcuts.txtDescriptionBold":"将所选文本加粗,使其字体更醒目。","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"在段落之间切换居中对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"在表单中选择下一个下拉式方框选项。","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"在表单中选择上一个下拉式方框选项。","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"关闭当前PDF文件。","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"关闭菜单或模式窗口。重置批注与修订的弹窗。重置表格绘制与擦除模式。重置文本拖放。重置标记选择模式。重置格式刷模式。取消选择形状。重置插入形状模式。退出页眉/页脚。退出表单填写。","Common.Controllers.Shortcuts.txtDescriptionCopy":"将所选文本发送到计算机剪贴板。复制的文本可稍后插入到同一文档的其他位置、另一份文档或其他程序中。","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"复制当前编辑文本中所选片段的格式。复制的格式可稍后应用到同一文档中的其他文本片段。","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"在光标右侧插入版权符号。","Common.Controllers.Shortcuts.txtDescriptionCut":"删除所选文本并将其发送到计算机剪贴板。复制的文本可稍后插入到同一文档的其他位置、另一份文档或其他程序中。","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"将所选文本的字体大小减小1磅。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"删除光标左侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"删除光标左侧的一个单词/选区/图形对象。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"删除光标右侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"删除光标右侧的一个单词/选区/图形对象。","Common.Controllers.Shortcuts.txtDescriptionEditChart":"当选中图表标题时,如果标题为空,将光标移到行首;否则选中标题文本。","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"重复最近一次撤销的操作。","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"选择PDF中的所有文本。","Common.Controllers.Shortcuts.txtDescriptionEditShape":"当选中形状时,如果形状没有内容,则创建内容并将光标移到行首;如果已有内容为空,将光标移到内容位置,否则选中整个内容。","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"撤销最近一次执行的操作。","Common.Controllers.Shortcuts.txtDescriptionEmDash":"在光标右侧插入长破折号。","Common.Controllers.Shortcuts.txtDescriptionEnDash":"在光标右侧插入短破折号。","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"结束当前段落并开始新段落。","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"在单元格内另起一段。","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"在公式参数中插入新占位符。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"将运算符的对齐级别调整为左对齐(用于强制换行后的公式第二行)。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"将运算符的对齐级别调整为右对齐(用于强制换行后的公式第二行)。","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"在光标位置插入欧元符号。","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"在光标位置插入省略号。","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"将所选文本的字体大小增加1磅。","Common.Controllers.Shortcuts.txtDescriptionIndent":"增加段落左缩进。","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"添加分栏符。","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"插入尾注。","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"在光标位置插入公式。","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"插入脚注。","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"插入可用于跳转到网页地址的链接。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"插入换行符(不中断段落)","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"在多行表单中插入换行符。","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"在光标位置插入分页符。","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"在光标位置插入当前页码。","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"在段落中插入制表符(非段首位置)。","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"在表格中插入表格分隔符。","Common.Controllers.Shortcuts.txtDescriptionItalic":"将所选文本的字体设置为斜体。","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"在段落之间切换两端对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"将段落左对齐。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"按住指定键并使用键盘方向键将所选对象每次向下移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"按住指定键并使用键盘方向键将所选对象每次向左移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"按住指定键并使用键盘方向键将所选对象每次向右移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"按住指定键并使用键盘方向键将所选对象每次向上移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"增加所选段落的缩进。","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"减少所选段落的缩进。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"将焦点移到当前所选对象之后的下一个对象。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"将焦点移到当前所选对象之前的上一个对象。","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"将光标下移一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"将光标置于当前编辑的PDF文档末尾。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"将光标移动到当前编辑行的末尾。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"将光标右移一个单词。","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"将光标左移一个字符。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"当光标位于页眉/页脚时,转到下方页眉。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"当光标位于页眉/页脚时,转到下方页眉/页脚。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"转到表格行中的下一个单元格。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"转到下一个表单。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"转到当前编辑的PDF的下一页。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"转到表格中的下一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"转到表格行中的上一个单元格。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"转到上一个表单。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"转到当前编辑的PDF的上一页。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"转到表格中的上一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"将光标右移一个字符。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"跳转到当前编辑的PDF文档开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"将光标移动到当前编辑行的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"将光标移动到当前编辑文档下一页的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"将光标移动到当前编辑文档上一页的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"将光标移动到单词开头或左移一个单词。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"将光标上移一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"当光标位于页眉/页脚时,转到上方页眉。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"当光标位于页眉/页脚时,转到上方页眉/页脚。","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"切换到桌面编辑器的下一个文件选项卡或在线编辑器的下一个浏览器标签页。","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"在模式对话框中在控件之间导航,将焦点移到下一个控件。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"在字符之间插入连字符,该连字符不能作为换行的起始位置。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"在字符之间插入空格,该空格不能作为换行的起始位置。","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"在在线编辑器中打开聊天面板并发送消息。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"打开数据输入字段,在其中添加批注内容。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"打开批注面板,以添加自己的批注或回复其他用户的批注。","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"打开所选元素的上下文菜单。","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"打开标准对话框以选择现有文件。在此对话框中选择文件并点击“打开”后,文件将在桌面编辑器的新选项卡或窗口中打开。","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"打开“文件”面板,可保存、下载、打印当前PDF,查看其信息,新建或打开PDF,访问PDF编辑器帮助中心或高级设置。","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"打开“查找和替换”面板,并显示替换字段,以替换一个或多个找到的字符。","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"打开“搜素”面板,在当前编辑的PDF中搜索字符、单词或短语。","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"打开PDF编辑器帮助菜单。","Common.Controllers.Shortcuts.txtDescriptionPaste":"在光标位置插入之前从计算机剪贴板复制的文本片段。该文本可以来自同一文档、其他文档或其他程序。","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"将之前复制的格式应用到当前编辑的PDF文本中。","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"在光标位置插入之前从计算机剪贴板复制的文本片段,但不保留其原始格式。该文本可以来自同一文档、其他文档或其他程序。","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"切换到桌面编辑器的上一个文件选项卡或在线编辑器的上一个浏览器标签页。","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"在模式对话框中在控件之间导航,将焦点移到上一个控件。","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"使用可用的打印机打印PDF,或将其保存为文件。","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"在光标位置插入注册商标符号。","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"将所选的 Unicode 代码替换为符号。","Common.Controllers.Shortcuts.txtDescriptionResetChar":"清除所选文本的格式。","Common.Controllers.Shortcuts.txtDescriptionRightPara":"在段落之间切换右对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionSave":"保存当前PDF的所有更改,文件将以现有名称、位置和格式保存。","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"打开“另存为”面板,将当前编辑的PDF以支持的格式保存到电脑硬盘。","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"将PDF向下滚动约一页。","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"将PDF向上滚动约一页。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"选择光标左侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"从光标位置选择到单词开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"将光标下移一行,并选中前一位置与当前位置之间的所有符号。","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"将光标上移一行,并选中前一位置与当前位置之间的所有符号。","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"从光标位置选择到屏幕下方的页面部分。","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"从光标位置选择到屏幕上方的页面部分。","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"选择光标右侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"从光标位置选择到单词末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"从光标位置选择到下一页开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"从光标位置选择到上一页开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"从光标处选择到PDF末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"从光标位置选择到当前行末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"从光标处选择到PDF开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"从光标位置选择到当前行开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionShowAll":"显示或隐藏非打印字符。","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"在光标位置插入软连字符。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"保留所复制文本的源格式。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"粘贴不带原始格式的文本。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"将复制的表格作为嵌套表粘贴到现有表格的选定单元格中。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"用复制的数据替换现有表格的内容。","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"启用/禁用将应用程序中的操作传递给屏幕阅读器。","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"提升列表/缩进级别(当光标位于段首时)。","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"降低列表/缩进级别(当光标位于段首时)。","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"将所选文本加删除线。","Common.Controllers.Shortcuts.txtDescriptionSubscript":"将所选文本缩小并放在文本行的下方,例如化学式中的写法。","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"将所选文本缩小并放在文本行的上方,例如分数中的写法。","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"在光标位置插入商标符号。","Common.Controllers.Shortcuts.txtDescriptionUnderline":"将所选文本加下划线。","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"减少段落左缩进。","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"更新字段(例如目录)。","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"在光标位于链接时访问该链接。","Common.Controllers.Shortcuts.txtDescriptionZoom100":"将当前PDF的“缩放”参数重置为默认的100%。","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"放大当前编辑的PDF。","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"缩小当前编辑的PDF。","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"剪切","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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":"三维簇状柱形图","Common.define.chartData.textBarNormal3dPerspective":"三维柱形图","Common.define.chartData.textBarStacked":"堆积柱形图","Common.define.chartData.textBarStacked3d":"三维堆积柱形图","Common.define.chartData.textBarStackedPer":"100%堆积柱状图","Common.define.chartData.textBarStackedPer3d":"三维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":"三维簇状条形图","Common.define.chartData.textHBarStacked":"堆积条形图","Common.define.chartData.textHBarStacked3d":"三维堆积条形图","Common.define.chartData.textHBarStackedPer":"100%堆积条形图","Common.define.chartData.textHBarStackedPer3d":"三维100%堆积条形图","Common.define.chartData.textLine":"折线图","Common.define.chartData.textLine3d":"三维折线图","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":"三维饼图","Common.define.chartData.textPoint":"XY(散点图)","Common.define.chartData.textRadar":"雷达图","Common.define.chartData.textRadarFilled":"填充雷达图","Common.define.chartData.textRadarMarker":"带标记的雷达","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.define.smartArt.textAccentedPicture":"重点图片","Common.define.smartArt.textAccentProcess":"重点流程","Common.define.smartArt.textAlternatingFlow":"交替流程","Common.define.smartArt.textAlternatingHexagons":"交替六边形","Common.define.smartArt.textAlternatingPictureBlocks":"交替图片块","Common.define.smartArt.textAlternatingPictureCircles":"交替图片圆形","Common.define.smartArt.textArchitectureLayout":"结构布局","Common.define.smartArt.textArrowRibbon":"带状箭头","Common.define.smartArt.textAscendingPictureAccentProcess":"升序图片重点流程","Common.define.smartArt.textBalance":"平衡","Common.define.smartArt.textBasicBendingProcess":"基本蛇形流程","Common.define.smartArt.textBasicBlockList":"基本列表","Common.define.smartArt.textBasicChevronProcess":"基本V形流程","Common.define.smartArt.textBasicCycle":"基本循环","Common.define.smartArt.textBasicMatrix":"基本矩阵","Common.define.smartArt.textBasicPie":"基本饼图","Common.define.smartArt.textBasicProcess":"基本流程","Common.define.smartArt.textBasicPyramid":"基本棱锥图","Common.define.smartArt.textBasicRadial":"基本放射图","Common.define.smartArt.textBasicTarget":"基本目标图","Common.define.smartArt.textBasicTimeline":"基本时间轴","Common.define.smartArt.textBasicVenn":"基本维恩图","Common.define.smartArt.textBendingPictureAccentList":"蛇形图片重点列表","Common.define.smartArt.textBendingPictureBlocks":"蛇形图片块","Common.define.smartArt.textBendingPictureCaption":"蛇形图片标题","Common.define.smartArt.textBendingPictureCaptionList":"蛇形图片标题列表","Common.define.smartArt.textBendingPictureSemiTranparentText":"蛇形图片半透明文字","Common.define.smartArt.textBlockCycle":"块循环","Common.define.smartArt.textBubblePictureList":"气泡图列表","Common.define.smartArt.textCaptionedPictures":"带标题的图片","Common.define.smartArt.textChevronAccentProcess":"V型重点流程","Common.define.smartArt.textChevronList":"V型列表","Common.define.smartArt.textCircleAccentTimeline":"圆形重点时间线","Common.define.smartArt.textCircleArrowProcess":"圆形箭头流程","Common.define.smartArt.textCirclePictureHierarchy":"圆形图片层次结构","Common.define.smartArt.textCircleProcess":"圆形流程","Common.define.smartArt.textCircleRelationship":"圆形关系","Common.define.smartArt.textCircularBendingProcess":"环状蛇形流程","Common.define.smartArt.textCircularPictureCallout":"环形图片标注","Common.define.smartArt.textClosedChevronProcess":"闭合V型流程","Common.define.smartArt.textContinuousArrowProcess":"连续箭头流程","Common.define.smartArt.textContinuousBlockProcess":"连续块流程","Common.define.smartArt.textContinuousCycle":"连续循环","Common.define.smartArt.textContinuousPictureList":"连续图片列表","Common.define.smartArt.textConvergingArrows":"汇聚箭头","Common.define.smartArt.textConvergingRadial":"汇聚放射图","Common.define.smartArt.textConvergingText":"汇聚文本","Common.define.smartArt.textCounterbalanceArrows":"平衡箭头","Common.define.smartArt.textCycle":"循环","Common.define.smartArt.textCycleMatrix":"循环矩阵","Common.define.smartArt.textDescendingBlockList":"降序块列表","Common.define.smartArt.textDescendingProcess":"降序流程","Common.define.smartArt.textDetailedProcess":"详细流程","Common.define.smartArt.textDivergingArrows":"发散箭头","Common.define.smartArt.textDivergingRadial":"发散射线","Common.define.smartArt.textEquation":"公式","Common.define.smartArt.textFramedTextPicture":"带边框的文本图片","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"齿轮","Common.define.smartArt.textGridMatrix":"网格矩阵","Common.define.smartArt.textGroupedList":"分组列表","Common.define.smartArt.textHalfCircleOrganizationChart":"半圆组织结构图","Common.define.smartArt.textHexagonCluster":"六边形集群","Common.define.smartArt.textHexagonRadial":"六边形射线","Common.define.smartArt.textHierarchy":"层级结构","Common.define.smartArt.textHierarchyList":"层级结构列表","Common.define.smartArt.textHorizontalBulletList":"水平项目符号列表","Common.define.smartArt.textHorizontalHierarchy":"水平层次结构","Common.define.smartArt.textHorizontalLabeledHierarchy":"水平标记层次","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"水平多级层次结构","Common.define.smartArt.textHorizontalOrganizationChart":"水平组织结构图","Common.define.smartArt.textHorizontalPictureList":"水平图片列表","Common.define.smartArt.textIncreasingArrowProcess":"递增箭头流程","Common.define.smartArt.textIncreasingCircleProcess":"递增圆圈流程","Common.define.smartArt.textInterconnectedBlockProcess":"互连块流程","Common.define.smartArt.textInterconnectedRings":"互连环图","Common.define.smartArt.textInvertedPyramid":"倒棱锥图","Common.define.smartArt.textLabeledHierarchy":"标记的层次结构","Common.define.smartArt.textLinearVenn":"线性韦恩图","Common.define.smartArt.textLinedList":"线型列表","Common.define.smartArt.textList":"列表","Common.define.smartArt.textMatrix":"矩阵","Common.define.smartArt.textMultidirectionalCycle":"多方向循环","Common.define.smartArt.textNameAndTitleOrganizationChart":"姓名和职务组织结构图","Common.define.smartArt.textNestedTarget":"嵌套目标","Common.define.smartArt.textNondirectionalCycle":"非定向循环","Common.define.smartArt.textOpposingArrows":"反向箭头","Common.define.smartArt.textOpposingIdeas":"相反观点","Common.define.smartArt.textOrganizationChart":"组织图","Common.define.smartArt.textOther":"其他","Common.define.smartArt.textPhasedProcess":"阶段化流程","Common.define.smartArt.textPicture":"图片","Common.define.smartArt.textPictureAccentBlocks":"图片重点块","Common.define.smartArt.textPictureAccentList":"图片重点列表","Common.define.smartArt.textPictureAccentProcess":"图片重点流程","Common.define.smartArt.textPictureCaptionList":"图片标题列表","Common.define.smartArt.textPictureFrame":"图片框架","Common.define.smartArt.textPictureGrid":"图片网格","Common.define.smartArt.textPictureLineup":"图片排列","Common.define.smartArt.textPictureOrganizationChart":"图片组织图","Common.define.smartArt.textPictureStrips":"图片条纹","Common.define.smartArt.textPieProcess":"饼图流程","Common.define.smartArt.textPlusAndMinus":"加减","Common.define.smartArt.textProcess":"流程","Common.define.smartArt.textProcessArrows":"流程箭头","Common.define.smartArt.textProcessList":"流程列表","Common.define.smartArt.textPyramid":"棱锥图","Common.define.smartArt.textPyramidList":"棱锥图列表","Common.define.smartArt.textRadialCluster":"放射状群集","Common.define.smartArt.textRadialCycle":"射线循环","Common.define.smartArt.textRadialList":"射线列表","Common.define.smartArt.textRadialPictureList":"放射状图片列表","Common.define.smartArt.textRadialVenn":"射线韦恩图","Common.define.smartArt.textRandomToResultProcess":"随机结果流程","Common.define.smartArt.textRelationship":"关系","Common.define.smartArt.textRepeatingBendingProcess":"重复蛇形流程","Common.define.smartArt.textReverseList":"反向列表","Common.define.smartArt.textSegmentedCycle":"分段循环","Common.define.smartArt.textSegmentedProcess":"交错流程","Common.define.smartArt.textSegmentedPyramid":"分段棱锥图","Common.define.smartArt.textSnapshotPictureList":"快照图片列表","Common.define.smartArt.textSpiralPicture":"螺旋图片","Common.define.smartArt.textSquareAccentList":"方形重点列表","Common.define.smartArt.textStackedList":"堆积列表","Common.define.smartArt.textStackedVenn":"堆积韦恩图","Common.define.smartArt.textStaggeredProcess":"交错流程","Common.define.smartArt.textStepDownProcess":"步骤下移流程","Common.define.smartArt.textStepUpProcess":"步骤上移流程","Common.define.smartArt.textSubStepProcess":"子步骤流程","Common.define.smartArt.textTabbedArc":"选项卡拱形图","Common.define.smartArt.textTableHierarchy":"表层次结构","Common.define.smartArt.textTableList":"表格列表","Common.define.smartArt.textTabList":"选项卡列表","Common.define.smartArt.textTargetList":"目标列表","Common.define.smartArt.textTextCycle":"文本循环","Common.define.smartArt.textThemePictureAccent":"主题图片重点","Common.define.smartArt.textThemePictureAlternatingAccent":"主题图片交替重点","Common.define.smartArt.textThemePictureGrid":"主题图片网格","Common.define.smartArt.textTitledMatrix":"标题矩阵","Common.define.smartArt.textTitledPictureAccentList":"标题图片重点列表","Common.define.smartArt.textTitledPictureBlocks":"标题图片块","Common.define.smartArt.textTitlePictureLineup":"标题图片排列","Common.define.smartArt.textTrapezoidList":"梯形列表","Common.define.smartArt.textUpwardArrow":"向上箭头","Common.define.smartArt.textVaryingWidthList":"可变宽度列表","Common.define.smartArt.textVerticalAccentList":"垂直重点列表","Common.define.smartArt.textVerticalArrowList":"垂直箭头列表","Common.define.smartArt.textVerticalBendingProcess":"垂直蛇形流程","Common.define.smartArt.textVerticalBlockList":"垂直块列表","Common.define.smartArt.textVerticalBoxList":"垂直方框列表","Common.define.smartArt.textVerticalBracketList":"垂直括号列表","Common.define.smartArt.textVerticalBulletList":"垂直项目符号列表","Common.define.smartArt.textVerticalChevronList":"垂直V型列表","Common.define.smartArt.textVerticalCircleList":"垂直循环列表","Common.define.smartArt.textVerticalCurvedList":"垂直曲线列表","Common.define.smartArt.textVerticalEquation":"垂直公式","Common.define.smartArt.textVerticalPictureAccentList":"垂直图片重点列表","Common.define.smartArt.textVerticalPictureList":"垂直图片列表","Common.define.smartArt.textVerticalProcess":"垂直流程","Common.Translation.textMoreButton":"更多","Common.Translation.tipFileLocked":"文档编辑被锁定,您可以稍后进行更改并将其保存为本地副本。","Common.Translation.tipFileReadOnly":"该文件是只读的。若要保留更改,请使用新名称或将文件保存在其他位置。","Common.Translation.warnFileLocked":"您无法编辑此文件,因为它正在另一个应用程序中进行编辑。","Common.Translation.warnFileLockedBtnEdit":"创建副本","Common.Translation.warnFileLockedBtnView":"打开以供查看","Common.UI.ButtonColored.textAutoColor":"自动","Common.UI.ButtonColored.textEyedropper":"拾色器","Common.UI.ButtonColored.textNewColor":"更多颜色","Common.UI.Calendar.textApril":"四月","Common.UI.Calendar.textAugust":"八月","Common.UI.Calendar.textDecember":"十二月","Common.UI.Calendar.textFebruary":"二月","Common.UI.Calendar.textJanuary":"一月","Common.UI.Calendar.textJuly":"七月","Common.UI.Calendar.textJune":"六月","Common.UI.Calendar.textMarch":"三月","Common.UI.Calendar.textMay":"五月","Common.UI.Calendar.textMonths":"月","Common.UI.Calendar.textNovember":"十一月","Common.UI.Calendar.textOctober":"十月","Common.UI.Calendar.textSeptember":"九月","Common.UI.Calendar.textShortApril":"四月","Common.UI.Calendar.textShortAugust":"八月","Common.UI.Calendar.textShortDecember":"十二月","Common.UI.Calendar.textShortFebruary":"二月","Common.UI.Calendar.textShortFriday":"周五","Common.UI.Calendar.textShortJanuary":"一月","Common.UI.Calendar.textShortJuly":"七月","Common.UI.Calendar.textShortJune":"六月","Common.UI.Calendar.textShortMarch":"三月","Common.UI.Calendar.textShortMay":"五月","Common.UI.Calendar.textShortMonday":"周一","Common.UI.Calendar.textShortNovember":"十一月","Common.UI.Calendar.textShortOctober":"十月","Common.UI.Calendar.textShortSaturday":"周六","Common.UI.Calendar.textShortSeptember":"九月","Common.UI.Calendar.textShortSunday":"周日","Common.UI.Calendar.textShortThursday":"周四","Common.UI.Calendar.textShortTuesday":"周二","Common.UI.Calendar.textShortWednesday":"周三","Common.UI.Calendar.textYears":"年","Common.UI.ExtendedColorDialog.addButtonText":"添加","Common.UI.ExtendedColorDialog.textCurrent":"当前","Common.UI.ExtendedColorDialog.textHexErr":"输入的值不正确。
请输入000000和FFFFFF之间的值。","Common.UI.ExtendedColorDialog.textNew":"新增","Common.UI.ExtendedColorDialog.textRGBErr":"输入的值不正确。
请输入介于0和255之间的数值。","Common.UI.HSBColorPicker.textNoColor":"无颜色","Common.UI.InputFieldBtnCalendar.textDate":"选择日期","Common.UI.InputFieldBtnPassword.textHintHidePwd":"隐藏密码","Common.UI.InputFieldBtnPassword.textHintHold":"按住显示密码","Common.UI.InputFieldBtnPassword.textHintShowPwd":"显示密码","Common.UI.SearchBar.capFind":"搜索","Common.UI.SearchBar.capFindRedact":"查找密文","Common.UI.SearchBar.textFind":"查找","Common.UI.SearchBar.tipCloseSearch":"关闭搜索","Common.UI.SearchBar.tipNextResult":"下一个结果","Common.UI.SearchBar.tipOpenAdvancedSettings":"打开高级设置","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"查找并标记密文","Common.UI.SearchBar.tipPreviousResult":"上一个结果","Common.UI.SearchDialog.textHighlight":"高亮显示结果","Common.UI.SearchDialog.textMatchCase":"区分大小写","Common.UI.SearchDialog.textReplaceDef":"输入替换文字","Common.UI.SearchDialog.textSearchStart":"在这里输入你的文字","Common.UI.SearchDialog.textTitle":"查找和替换","Common.UI.SearchDialog.textTitle2":"查找","Common.UI.SearchDialog.textWholeWords":"仅限完整单词","Common.UI.SearchDialog.txtBtnHideReplace":"隐藏替换","Common.UI.SearchDialog.txtBtnReplace":"替换","Common.UI.SearchDialog.txtBtnReplaceAll":"全部替换","Common.UI.SynchronizeTip.textDontShow":"不要再显示此消息","Common.UI.SynchronizeTip.textGotIt":"知道了","Common.UI.SynchronizeTip.textNew":"新建","Common.UI.SynchronizeTip.textSynchronize":"文档已被其他用户更改
请单击保存更改并重新加载更新。","Common.UI.ThemeColorPalette.textRecentColors":"最近使用的颜色","Common.UI.ThemeColorPalette.textStandartColors":"标准颜色","Common.UI.ThemeColorPalette.textThemeColors":"主题颜色","Common.UI.ThemeColorPalette.textTransparent":"透明","Common.UI.Themes.txtThemeClassicLight":"经典浅色","Common.UI.Themes.txtThemeContrastDark":"高对比度深色","Common.UI.Themes.txtThemeDark":"深色","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"浅色","Common.UI.Themes.txtThemeModernDark":"现代深色","Common.UI.Themes.txtThemeModernLight":"现代浅色","Common.UI.Themes.txtThemeSystem":"和系統一致","Common.UI.Window.cancelButtonText":"取消","Common.UI.Window.closeButtonText":"关闭","Common.UI.Window.noButtonText":"否","Common.UI.Window.okButtonText":"确定","Common.UI.Window.textConfirmation":"确认","Common.UI.Window.textDontShow":"不要再显示此消息","Common.UI.Window.textError":"错误","Common.UI.Window.textInformation":"信息","Common.UI.Window.textWarning":"警告","Common.UI.Window.yesButtonText":"是","Common.Utils.Metric.txtCm":"厘米","Common.Utils.Metric.txtPt":"磅","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"重点色","Common.Utils.ThemeColor.txtAqua":"湖绿色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黑色","Common.Utils.ThemeColor.txtBlue":"蓝色","Common.Utils.ThemeColor.txtBrightGreen":"明亮绿色","Common.Utils.ThemeColor.txtBrown":"棕色","Common.Utils.ThemeColor.txtDarkBlue":"深蓝色","Common.Utils.ThemeColor.txtDarker":"更暗","Common.Utils.ThemeColor.txtDarkGray":"深灰色","Common.Utils.ThemeColor.txtDarkGreen":"深绿色","Common.Utils.ThemeColor.txtDarkPurple":"深紫色","Common.Utils.ThemeColor.txtDarkRed":"深红色","Common.Utils.ThemeColor.txtDarkTeal":"深青色","Common.Utils.ThemeColor.txtDarkYellow":"深黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"绿色","Common.Utils.ThemeColor.txtIndigo":"靛蓝色","Common.Utils.ThemeColor.txtLavender":"薰衣草色","Common.Utils.ThemeColor.txtLightBlue":"浅蓝色","Common.Utils.ThemeColor.txtLighter":"较浅色的","Common.Utils.ThemeColor.txtLightGray":"浅灰色","Common.Utils.ThemeColor.txtLightGreen":"浅绿色","Common.Utils.ThemeColor.txtLightOrange":"浅橙色","Common.Utils.ThemeColor.txtLightYellow":"浅黄色","Common.Utils.ThemeColor.txtOrange":"橙色","Common.Utils.ThemeColor.txtPink":"粉红色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"红色","Common.Utils.ThemeColor.txtRose":"玫瑰色","Common.Utils.ThemeColor.txtSkyBlue":"天蓝色","Common.Utils.ThemeColor.txtTeal":"青色","Common.Utils.ThemeColor.txttext":"文本","Common.Utils.ThemeColor.txtTurquosie":"绿松石","Common.Utils.ThemeColor.txtViolet":"紫罗兰","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"地址:","Common.Views.About.txtLicensee":"被许可人","Common.Views.About.txtLicensor":"许可商","Common.Views.About.txtMail":"电子邮件:","Common.Views.About.txtPoweredBy":"技术支持方","Common.Views.About.txtTel":"电话:","Common.Views.About.txtVersion":"版本","Common.Views.Chat.textChat":"聊天","Common.Views.Chat.textClosePanel":"关闭聊天","Common.Views.Chat.textEnterMessage":"在这里输入你的信息","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.mniFilterComments":"显示批注","Common.Views.Comments.mniFilterGroups":"按组筛选","Common.Views.Comments.mniPositionAsc":"从顶部","Common.Views.Comments.mniPositionDesc":"从底部","Common.Views.Comments.textAdd":"添加","Common.Views.Comments.textAddComment":"添加批注","Common.Views.Comments.textAddCommentToDoc":"向文档添加批注","Common.Views.Comments.textAddReply":"添加回复","Common.Views.Comments.textAll":"全部","Common.Views.Comments.textAnonym":"访客","Common.Views.Comments.textCancel":"取消","Common.Views.Comments.textClose":"关闭","Common.Views.Comments.textClosePanel":"关闭批注","Common.Views.Comments.textComment":"批注","Common.Views.Comments.textComments":"批注","Common.Views.Comments.textEdit":"确定","Common.Views.Comments.textEnterCommentHint":"在这里输入您的批注","Common.Views.Comments.textHintAddComment":"添加批注","Common.Views.Comments.textOpen":"未解决","Common.Views.Comments.textOpenAgain":"再次打开","Common.Views.Comments.textReply":"回复","Common.Views.Comments.textResolve":"解决","Common.Views.Comments.textResolved":"已解决","Common.Views.Comments.textSort":"排序批注","Common.Views.Comments.textSortFilter":"排序和过滤批注","Common.Views.Comments.textSortFilterMore":"排序、过滤、以及更多","Common.Views.Comments.textSortMore":"排序以及更多","Common.Views.Comments.textViewResolved":"您无权重新打开批注","Common.Views.Comments.txtEmpty":"文档中没有任何批注。","Common.Views.CopyWarningDialog.textDontShow":"不要再显示此消息","Common.Views.CopyWarningDialog.textMsg":"使用编辑器工具栏按钮和右键快捷菜单进行的复制,剪切和粘贴操作将仅在此编辑器选项卡中执行。

要在编辑器选项卡之外复制或粘贴到应用程序,请使用以下键盘组合:","Common.Views.CopyWarningDialog.textTitle":"复制,剪切和粘贴操作","Common.Views.CopyWarningDialog.textToCopy":"用于复制","Common.Views.CopyWarningDialog.textToCut":"用于剪切","Common.Views.CopyWarningDialog.textToPaste":"用于粘贴","Common.Views.CustomizeQuickAccessDialog.textDownload":"下载","Common.Views.CustomizeQuickAccessDialog.textMsg":"请检查快速访问工具栏上的命令","Common.Views.CustomizeQuickAccessDialog.textPrint":"打印","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"快速打印","Common.Views.CustomizeQuickAccessDialog.textRedo":"重做","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"自定义快速访问","Common.Views.CustomizeQuickAccessDialog.textUndo":"撤销","Common.Views.DocumentAccessDialog.textLoading":"加载中…","Common.Views.DocumentAccessDialog.textTitle":"分享设置","Common.Views.Draw.hintEraser":"橡皮擦","Common.Views.Draw.hintSelect":"请选择","Common.Views.Draw.txtEraser":"橡皮擦","Common.Views.Draw.txtHighlighter":"荧光笔","Common.Views.Draw.txtMM":"毫米","Common.Views.Draw.txtPen":"笔","Common.Views.Draw.txtSelect":"请选择","Common.Views.Draw.txtSize":"粗细","Common.Views.ExternalDiagramEditor.textTitle":"图表编辑器","Common.Views.ExternalEditor.textClose":"关闭","Common.Views.ExternalEditor.textSave":"保存并退出","Common.Views.ExternalLinksDlg.closeButtonText":"关闭","Common.Views.ExternalLinksDlg.textAutoUpdate":"自动更新来自链接源的数据","Common.Views.ExternalLinksDlg.textChange":"更改来源","Common.Views.ExternalLinksDlg.textDelete":"断开链接","Common.Views.ExternalLinksDlg.textDeleteAll":"断开所有链接","Common.Views.ExternalLinksDlg.textOk":"确定","Common.Views.ExternalLinksDlg.textOpen":"打开源文件","Common.Views.ExternalLinksDlg.textSource":"来源","Common.Views.ExternalLinksDlg.textStatus":"状态","Common.Views.ExternalLinksDlg.textUnknown":"未知","Common.Views.ExternalLinksDlg.textUpdate":"更新值","Common.Views.ExternalLinksDlg.textUpdateAll":"全部更新","Common.Views.ExternalLinksDlg.textUpdating":"正在更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部链接","Common.Views.Header.ariaQuickAccessToolbar":"快速访问工具栏","Common.Views.Header.labelCoUsersDescr":"正在编辑文件的用户:","Common.Views.Header.textAddFavorite":"收藏","Common.Views.Header.textAdvSettings":"高级设置","Common.Views.Header.textAnnotateDesc":"填写表单或注释","Common.Views.Header.textBack":"打开文件所在位置","Common.Views.Header.textClose":"关闭文件","Common.Views.Header.textComment":"批注","Common.Views.Header.textCommentDesc":"所有更改都将保存到文件中。实时协作","Common.Views.Header.textCompactView":"隐藏工具栏","Common.Views.Header.textDownload":"下载","Common.Views.Header.textEdit":"编辑","Common.Views.Header.textEditDesc":"所有更改都将保存到文件中。实时协作","Common.Views.Header.textEditDescNoCoedit":"添加或编辑文本、形状、图像等。","Common.Views.Header.textHideLines":"隐藏标尺","Common.Views.Header.textHideStatusBar":"隐藏状态栏","Common.Views.Header.textPrint":"打印","Common.Views.Header.textReadOnly":"只读","Common.Views.Header.textRemoveFavorite":"从收藏夹中删除","Common.Views.Header.textShare":"分享","Common.Views.Header.textView":"查看","Common.Views.Header.textViewDesc":"所有更改都在本地保存","Common.Views.Header.textViewDescNoCoedit":"查看或注释","Common.Views.Header.textZoom":"缩放","Common.Views.Header.tipAccessRights":"管理文档访问权限","Common.Views.Header.tipComment":"批注","Common.Views.Header.tipCustomizeQuickAccessToolbar":"自定义快速访问工具栏","Common.Views.Header.tipDownload":"下载文件","Common.Views.Header.tipEdit":"编辑","Common.Views.Header.tipGoEdit":"编辑当前文件","Common.Views.Header.tipPrint":"打印文件","Common.Views.Header.tipPrintQuick":"快速打印","Common.Views.Header.tipRedo":"重做","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"查找","Common.Views.Header.tipUndo":"撤消","Common.Views.Header.tipUsers":"查看用户","Common.Views.Header.tipView":"查看","Common.Views.Header.tipViewSettings":"视图设置","Common.Views.Header.tipViewUsers":"查看用户和管理文档访问权限","Common.Views.Header.txtAccessRights":"更改访问权限","Common.Views.Header.txtRename":"重命名","Common.Views.ImageFromUrlDialog.textUrl":"粘貼圖片網址:","Common.Views.ImageFromUrlDialog.txtEmpty":"这是必填栏","Common.Views.ImageFromUrlDialog.txtNotUrl":"该字段应该是“http://www.example.com”格式的URL","Common.Views.OpenDialog.closeButtonText":"关闭文件","Common.Views.OpenDialog.txtEncoding":"编码","Common.Views.OpenDialog.txtIncorrectPwd":"密码不正确。","Common.Views.OpenDialog.txtOpenFile":"输入密码来打开文件","Common.Views.OpenDialog.txtPassword":"密码","Common.Views.OpenDialog.txtPreview":"预览","Common.Views.OpenDialog.txtProtected":"输入密码并打开文件后,将重置文件的当前密码。","Common.Views.OpenDialog.txtTitle":"选择%1选项","Common.Views.OpenDialog.txtTitleProtected":"受保护的文件","Common.Views.PasswordDialog.txtDescription":"设置密码以保护此文档","Common.Views.PasswordDialog.txtIncorrectPwd":"确认密码不相同","Common.Views.PasswordDialog.txtPassword":"密码","Common.Views.PasswordDialog.txtRepeat":"重复密码","Common.Views.PasswordDialog.txtTitle":"设置密码","Common.Views.PasswordDialog.txtWarning":"警告:如果您丢失或忘记了密码,则无法恢复。请安全的保存密码。","Common.Views.PluginDlg.textDock":"置顶插件","Common.Views.PluginDlg.textLoading":"载入中","Common.Views.PluginPanel.textClosePanel":"关闭插件","Common.Views.PluginPanel.textHidePanel":"折叠插件","Common.Views.PluginPanel.textLoading":"载入中","Common.Views.PluginPanel.textUndock":"取消置顶插件","Common.Views.Plugins.groupCaption":"插件","Common.Views.Plugins.strPlugins":"插件","Common.Views.Plugins.textBackgroundPlugins":"后台插件","Common.Views.Plugins.textClosePanel":"关闭插件","Common.Views.Plugins.textLoading":"载入中","Common.Views.Plugins.textSettings":"设置","Common.Views.Plugins.textStart":"开始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"后台插件列表","Common.Views.Protection.hintAddPwd":"使用密码加密文档","Common.Views.Protection.hintDelPwd":"删除密码","Common.Views.Protection.hintPwd":"更改或删除密码","Common.Views.Protection.hintSignature":"添加数字签名或签名栏","Common.Views.Protection.txtAddPwd":"添加密码","Common.Views.Protection.txtChangePwd":"修改密码","Common.Views.Protection.txtDeletePwd":"删除密码","Common.Views.Protection.txtEncrypt":"加密","Common.Views.Protection.txtInvisibleSignature":"添加数字签名","Common.Views.Protection.txtSignature":"签名","Common.Views.Protection.txtSignatureLine":"添加签名栏","Common.Views.RecentFiles.txtOpenRecent":"打开最近文件","Common.Views.RenameDialog.textName":"文件名","Common.Views.RenameDialog.txtInvalidName":"文件名不能包含以下任何字符:","Common.Views.ReviewPopover.textAdd":"添加","Common.Views.ReviewPopover.textAddReply":"添加回复","Common.Views.ReviewPopover.textCancel":"取消","Common.Views.ReviewPopover.textClose":"关闭","Common.Views.ReviewPopover.textComment":"批注","Common.Views.ReviewPopover.textEdit":"确定","Common.Views.ReviewPopover.textEnterComment":"在这里输入您的批注","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.ReviewPopover.textViewResolved":"您无权重新打开批注","Common.Views.ReviewPopover.txtAccept":"同意","Common.Views.ReviewPopover.txtDeleteTip":"删除","Common.Views.ReviewPopover.txtEditTip":"编辑","Common.Views.ReviewPopover.txtReject":"否决","Common.Views.SaveAsDlg.textLoading":"载入中","Common.Views.SaveAsDlg.textTitle":"要保存的文件夹","Common.Views.SearchPanel.textCaseSensitive":"区分大小写","Common.Views.SearchPanel.textCloseSearch":"关闭搜索","Common.Views.SearchPanel.textContentChanged":"文件已更改。","Common.Views.SearchPanel.textFind":"查找","Common.Views.SearchPanel.textFindAndRedact":"查找并标记密文","Common.Views.SearchPanel.textFindAndReplace":"查找和替换","Common.Views.SearchPanel.textFindRedact":"查找并标记密文","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}个项目已成功替换。","Common.Views.SearchPanel.textMark":"标记密文","Common.Views.SearchPanel.textMarkAll":"全部标记","Common.Views.SearchPanel.textMatchUsingRegExp":"使用正则表达式匹配","Common.Views.SearchPanel.textNoMatches":"找不到匹配信息","Common.Views.SearchPanel.textNoSearchResults":"没有搜索结果","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"已替换{0}/{1}项。其余{2}个项目已被其他用户锁定。","Common.Views.SearchPanel.textReplace":"替换","Common.Views.SearchPanel.textReplaceAll":"全部替换","Common.Views.SearchPanel.textReplaceWith":"替换为","Common.Views.SearchPanel.textSearchAgain":"{0}执行新的搜索{1}以获得准确的结果。","Common.Views.SearchPanel.textSearchHasStopped":"搜索已停止","Common.Views.SearchPanel.textSearchResults":"搜索结果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"搜索结果","Common.Views.SearchPanel.textTooManyResults":"此处显示的结果太多","Common.Views.SearchPanel.textWholeWords":"仅限完整单词","Common.Views.SearchPanel.tipNextResult":"下一个结果","Common.Views.SearchPanel.tipPreviousResult":"上一个结果","Common.Views.SelectFileDlg.textLoading":"载入中","Common.Views.SelectFileDlg.textTitle":"选择数据源","Common.Views.ShapeShadowDialog.txtAngle":"角度","Common.Views.ShapeShadowDialog.txtDistance":"距离","Common.Views.ShapeShadowDialog.txtSize":"大小","Common.Views.ShapeShadowDialog.txtTitle":"调整阴影","Common.Views.ShapeShadowDialog.txtTransparency":"透明度","Common.Views.ShortcutsDialog.txtDescription":"描述","Common.Views.ShortcutsDialog.txtEmpty":"未找到匹配项,请调整搜索条件。","Common.Views.ShortcutsDialog.txtRestoreAll":"将所有设置恢复为默认值","Common.Views.ShortcutsDialog.txtRestoreContinue":"您确定要继续操作吗?","Common.Views.ShortcutsDialog.txtRestoreDescription":"所有快捷键设置将恢复为默认值。","Common.Views.ShortcutsDialog.txtRestoreToDefault":"恢复为默认","Common.Views.ShortcutsDialog.txtSearch":"搜索","Common.Views.ShortcutsDialog.txtTitle":"键盘快捷键","Common.Views.ShortcutsEditDialog.txtAction":"操作","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"输入所需快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"%1操作使用的快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"%1操作使用的快捷键,无法更改","Common.Views.ShortcutsEditDialog.txtInputWarnOne":" %1操作使用的快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"%1操作使用的快捷键,无法更改","Common.Views.ShortcutsEditDialog.txtNewShortcut":"新建快捷键","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"您确定要继续操作吗?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"“%1”操作的所有快捷键将恢复为默认值。","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"恢复为默认","Common.Views.ShortcutsEditDialog.txtTitle":"编辑快捷键","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"输入所需快捷键","Common.Views.UserNameDialog.textDontShow":"不要再次询问我","Common.Views.UserNameDialog.textLabel":"标签:","Common.Views.UserNameDialog.textLabelError":"标签不能为空。","PDFE.Controllers.InsTab.textAccent":"重音符","PDFE.Controllers.InsTab.textBracket":"括号","PDFE.Controllers.InsTab.textFraction":"分数","PDFE.Controllers.InsTab.textFunction":"函数","PDFE.Controllers.InsTab.textInsert":"插入","PDFE.Controllers.InsTab.textIntegral":"积分","PDFE.Controllers.InsTab.textLargeOperator":"大型运算符","PDFE.Controllers.InsTab.textLimitAndLog":"极限和对数","PDFE.Controllers.InsTab.textMatrix":"矩阵","PDFE.Controllers.InsTab.textOperator":"运算符","PDFE.Controllers.InsTab.textRadical":"根式","PDFE.Controllers.InsTab.textScript":"脚本","PDFE.Controllers.InsTab.textShape":"形状","PDFE.Controllers.InsTab.textSymbols":"符号","PDFE.Controllers.InsTab.txtAccent_Accent":"尖音符","PDFE.Controllers.InsTab.txtAccent_ArrowD":"上方的左右箭头","PDFE.Controllers.InsTab.txtAccent_ArrowL":"上方的左箭头","PDFE.Controllers.InsTab.txtAccent_ArrowR":"上方的向右箭头","PDFE.Controllers.InsTab.txtAccent_Bar":"划线","PDFE.Controllers.InsTab.txtAccent_BarBot":"下划线","PDFE.Controllers.InsTab.txtAccent_BarTop":"上划线","PDFE.Controllers.InsTab.txtAccent_BorderBox":"带方框的公式(包含占位符)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"带框公式(示例)","PDFE.Controllers.InsTab.txtAccent_Check":"检查","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"底括号","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"上大括号","PDFE.Controllers.InsTab.txtAccent_Custom_1":"向量 A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"带有上划线的ABC","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XOR y 带有上横线","PDFE.Controllers.InsTab.txtAccent_DDDot":"三点","PDFE.Controllers.InsTab.txtAccent_DDot":"双点","PDFE.Controllers.InsTab.txtAccent_Dot":"点","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"双重横杠","PDFE.Controllers.InsTab.txtAccent_Grave":"重音符号","PDFE.Controllers.InsTab.txtAccent_GroupBot":"下面的分组字符","PDFE.Controllers.InsTab.txtAccent_GroupTop":"上面的分组字符","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"上方左矢","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"上方的向右箭头","PDFE.Controllers.InsTab.txtAccent_Hat":"帽子","PDFE.Controllers.InsTab.txtAccent_Smile":"短音符","PDFE.Controllers.InsTab.txtAccent_Tilde":"波浪号","PDFE.Controllers.InsTab.txtBasicShapes":"基本形状","PDFE.Controllers.InsTab.txtBracket_Angle":"尖括号","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"带分隔符的尖括号","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"带两个分隔符的尖括号","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"直角括号","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"左尖括号","PDFE.Controllers.InsTab.txtBracket_Curve":"花括号","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"带分隔符的花括号","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"右大括号","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"左大括号","PDFE.Controllers.InsTab.txtBracket_Custom_1":"案例(两种情况)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"案例(三种情况)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"堆栈对象","PDFE.Controllers.InsTab.txtBracket_Custom_4":"括号中的堆栈对象","PDFE.Controllers.InsTab.txtBracket_Custom_5":"案例示例","PDFE.Controllers.InsTab.txtBracket_Custom_6":"二项式系数","PDFE.Controllers.InsTab.txtBracket_Custom_7":"尖括号中的二项式系数","PDFE.Controllers.InsTab.txtBracket_Line":"竖线","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"右竖线","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"左侧竖线","PDFE.Controllers.InsTab.txtBracket_LineDouble":"双竖条","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"右侧双竖线","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"左双竖线","PDFE.Controllers.InsTab.txtBracket_LowLim":"底部整数","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"右flooor ","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"左侧floor","PDFE.Controllers.InsTab.txtBracket_Round":"圆括号","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"带分隔符的括号","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"右括号","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"左括号","PDFE.Controllers.InsTab.txtBracket_Square":"方括号","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"两个右方括号之间的占位符","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"倒置方括号","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"右侧方括号","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"左方括号","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"两个左方括号之间的占位符","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"双方括号","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"右侧双方括号","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"左双方括号","PDFE.Controllers.InsTab.txtBracket_UppLim":"天花板","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"右ceiling","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"左侧ceiling","PDFE.Controllers.InsTab.txtButtons":"按钮","PDFE.Controllers.InsTab.txtCallouts":"标注","PDFE.Controllers.InsTab.txtCharts":"图表","PDFE.Controllers.InsTab.txtFiguredArrows":"图形箭头","PDFE.Controllers.InsTab.txtFractionDiagonal":"倾斜分数","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dx 除以 dy","PDFE.Controllers.InsTab.txtFractionDifferential_2":"Δy 除以 Δx","PDFE.Controllers.InsTab.txtFractionDifferential_3":"偏微分 y 对偏微分 x","PDFE.Controllers.InsTab.txtFractionDifferential_4":"Δx 除以 Δy","PDFE.Controllers.InsTab.txtFractionHorizontal":"线性分数","PDFE.Controllers.InsTab.txtFractionPi_2":"Pi除以2","PDFE.Controllers.InsTab.txtFractionSmall":"小分数","PDFE.Controllers.InsTab.txtFractionVertical":"堆积分数","PDFE.Controllers.InsTab.txtFunction_1_Cos":"反余弦函数","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"双曲反余弦函数","PDFE.Controllers.InsTab.txtFunction_1_Cot":"反余切函数","PDFE.Controllers.InsTab.txtFunction_1_Coth":"双曲反余切函数","PDFE.Controllers.InsTab.txtFunction_1_Csc":"反余割函数","PDFE.Controllers.InsTab.txtFunction_1_Csch":"双曲反余割函数","PDFE.Controllers.InsTab.txtFunction_1_Sec":"反正割函数","PDFE.Controllers.InsTab.txtFunction_1_Sech":"双曲反割线函数","PDFE.Controllers.InsTab.txtFunction_1_Sin":"反正弦函数","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"双曲反正弦函数","PDFE.Controllers.InsTab.txtFunction_1_Tan":"反正切函数","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"双曲反正切函数","PDFE.Controllers.InsTab.txtFunction_Cos":"余弦函数","PDFE.Controllers.InsTab.txtFunction_Cosh":"双曲余弦函数","PDFE.Controllers.InsTab.txtFunction_Cot":"余切函数","PDFE.Controllers.InsTab.txtFunction_Coth":"双曲余切函数","PDFE.Controllers.InsTab.txtFunction_Csc":"余割函数","PDFE.Controllers.InsTab.txtFunction_Csch":"双曲余割函数","PDFE.Controllers.InsTab.txtFunction_Custom_1":"正弦波","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Cos 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"正切函数","PDFE.Controllers.InsTab.txtFunction_Sec":"正割函数","PDFE.Controllers.InsTab.txtFunction_Sech":"双曲正割函数","PDFE.Controllers.InsTab.txtFunction_Sin":"正弦函数","PDFE.Controllers.InsTab.txtFunction_Sinh":"双曲正弦函数","PDFE.Controllers.InsTab.txtFunction_Tan":"正切函数","PDFE.Controllers.InsTab.txtFunction_Tanh":"双曲正切函数","PDFE.Controllers.InsTab.txtIntegral":"积分","PDFE.Controllers.InsTab.txtIntegral_dtheta":"微分 θ","PDFE.Controllers.InsTab.txtIntegral_dx":"微分x","PDFE.Controllers.InsTab.txtIntegral_dy":"微分y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"与堆叠极限的积分","PDFE.Controllers.InsTab.txtIntegralDouble":"双积分","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"具有堆叠极限的二重积分","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"带极限的二重积分","PDFE.Controllers.InsTab.txtIntegralOriented":"轮廓积分","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"具有堆叠极限的等高线积分","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"曲面积分","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"带堆叠限制的曲面积分","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"带限制的曲面积分","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"带限制的等高线积分","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"体积积分","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"带堆叠限制的体积积分","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"带限制的体积积分","PDFE.Controllers.InsTab.txtIntegralSubSup":"带极限的积分","PDFE.Controllers.InsTab.txtIntegralTriple":"三重积分","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"带堆叠限制的三重积分","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"带限制的三重积分","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"逻辑与","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"带下限的逻辑行","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"带限制的逻辑与","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"带下标下限的逻辑行","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"带上下标限制的逻辑行","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"联产品","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"有下限的联产品","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"有限制的联产品","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"有下标下限的联产品","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"具有下标/上标限制的联共同产品","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"对n的k求和选择k","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"从i等于0到n的求和","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"使用两个索引的求和示例","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"乘积示例","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"并集示例","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"带下限的逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"带限制的逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"带下标下限的逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"带下标/上标限制的逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"交集","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"带下限的交集","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"带限制的交集","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"带下标下限的交集","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"带下标/上标限制的交集","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"乘积","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"带下限的乘积","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"带限制的乘积","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"带下标下限的乘积","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"带下标/上标极限的乘积","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"求和","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"带下限的求和","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"带限制的求和","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"带下标下限的求和","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"带上下标限制的求和","PDFE.Controllers.InsTab.txtLargeOperator_Union":"并集","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"带下限的并集","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"带限制的并集","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"带下标下限的并集","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"带上下标限制的并集","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"限制范例","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"最大范例","PDFE.Controllers.InsTab.txtLimitLog_Lim":"限制","PDFE.Controllers.InsTab.txtLimitLog_Ln":"自然对数","PDFE.Controllers.InsTab.txtLimitLog_Log":"对数","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"对数","PDFE.Controllers.InsTab.txtLimitLog_Max":"最大值","PDFE.Controllers.InsTab.txtLimitLog_Min":"最小值","PDFE.Controllers.InsTab.txtLines":"行","PDFE.Controllers.InsTab.txtMath":"数学","PDFE.Controllers.InsTab.txtMatrix_1_2":"1x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_1_3":"1x3空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_1":"2x1空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_2":"2x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"以双竖线表示的空的2x2矩阵","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"空的2x2行列式","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"带圆括号的2x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"带方形括号的2x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_3":"2x3空矩阵","PDFE.Controllers.InsTab.txtMatrix_3_1":"3x1空矩阵","PDFE.Controllers.InsTab.txtMatrix_3_2":"3x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_3_3":"3x3空矩阵","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"基线点","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"中线点","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"对角点","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"垂直点","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"括号中的稀疏矩阵","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"括号中的稀疏矩阵","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"2x2带零的单位矩阵","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"除了对角线以外都是空白的2x2单位矩阵","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"3x3含有零的单位矩阵","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"3x3除了对角线以外都是空白的单位矩阵","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"下方的左右箭头","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"上方的左右箭头","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"下方的左箭头","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"上方的左箭头","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"下方的向右箭头","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"上方的向右箭头","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"冒号等号","PDFE.Controllers.InsTab.txtOperator_Custom_1":"统一","PDFE.Controllers.InsTab.txtOperator_Custom_2":"三角形区域","PDFE.Controllers.InsTab.txtOperator_Definition":"等同于定义","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"Delta 等于","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"下方的左右双箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"上方的左右双箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"下方的左箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"上方的左箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"下方的向右箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"上方的向右箭头","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"等于等于","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"减号等号","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"加号等号","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"测量者","PDFE.Controllers.InsTab.txtRadicalCustom_1":"二次方程式的右侧","PDFE.Controllers.InsTab.txtRadicalCustom_2":"a的平方加b的平方的平方根","PDFE.Controllers.InsTab.txtRadicalRoot_2":"带次数的平方根","PDFE.Controllers.InsTab.txtRadicalRoot_3":"立方根","PDFE.Controllers.InsTab.txtRadicalRoot_n":"开n次根号","PDFE.Controllers.InsTab.txtRadicalSqrt":"平方根","PDFE.Controllers.InsTab.txtRectangles":"矩形","PDFE.Controllers.InsTab.txtScriptCustom_1":"x下标y的平方","PDFE.Controllers.InsTab.txtScriptCustom_2":"e 的负 i omega t 次方","PDFE.Controllers.InsTab.txtScriptCustom_3":"x 的平方","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y左上标n左下标1","PDFE.Controllers.InsTab.txtScriptSub":"下标","PDFE.Controllers.InsTab.txtScriptSubSup":"下标-上标","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"左下标上标","PDFE.Controllers.InsTab.txtScriptSup":"上标","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"线形标注1(带边框和强调线)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"线形标注2(带边框和强调线)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"线形标注3(带边框和强调线)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"线形标注1(强调线)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"线形标注2(强调线)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"线形标注3(强调线)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"返回或上一步按钮","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"开始按钮","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"空白按钮","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"文档按钮","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"结束按钮","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"“前进”或“下一步”按钮","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"帮助按钮","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"主页按钮","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"信息按钮","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"电影按钮","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"返回按钮","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"声音按钮","PDFE.Controllers.InsTab.txtShape_arc":"弧","PDFE.Controllers.InsTab.txtShape_bentArrow":"弯曲箭头","PDFE.Controllers.InsTab.txtShape_bentConnector5":"弯头连接器","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"弯头箭头连接器","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"弯头双箭头连接器","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"向上弯曲箭头","PDFE.Controllers.InsTab.txtShape_bevel":"斜角","PDFE.Controllers.InsTab.txtShape_blockArc":"空心弧","PDFE.Controllers.InsTab.txtShape_borderCallout1":"线形标注1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"线形标注2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"线形标注3","PDFE.Controllers.InsTab.txtShape_bracePair":"双花括号","PDFE.Controllers.InsTab.txtShape_callout1":"线形标注1(无边框)","PDFE.Controllers.InsTab.txtShape_callout2":"线形标注2(无边框)","PDFE.Controllers.InsTab.txtShape_callout3":"线形标注3(无边框)","PDFE.Controllers.InsTab.txtShape_can":"罐装","PDFE.Controllers.InsTab.txtShape_chevron":"V形","PDFE.Controllers.InsTab.txtShape_chord":"弦","PDFE.Controllers.InsTab.txtShape_circularArrow":"圆形箭头","PDFE.Controllers.InsTab.txtShape_cloud":"云","PDFE.Controllers.InsTab.txtShape_cloudCallout":"云标注","PDFE.Controllers.InsTab.txtShape_corner":"角","PDFE.Controllers.InsTab.txtShape_cube":"立方体","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"弯曲连接器","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"弯曲箭头连接器","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"弯曲双箭头连接器","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"向下弯曲箭头","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"弯曲左箭头","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"弯曲右箭头","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"向上弯曲箭头","PDFE.Controllers.InsTab.txtShape_decagon":"十边形","PDFE.Controllers.InsTab.txtShape_diagStripe":"对角线条纹","PDFE.Controllers.InsTab.txtShape_diamond":"菱形","PDFE.Controllers.InsTab.txtShape_dodecagon":"十二边形","PDFE.Controllers.InsTab.txtShape_donut":"圆环图","PDFE.Controllers.InsTab.txtShape_doubleWave":"双波浪线","PDFE.Controllers.InsTab.txtShape_downArrow":"向下箭头","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"下箭头标注","PDFE.Controllers.InsTab.txtShape_ellipse":"椭圆","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"向下弯曲的丝带","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"向上弯曲缎带","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"流程图:交替流程","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"流程图:整理","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"流程图:连接器","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"流程图:决策","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"流程图:延迟","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"流程图:显示","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"流程图:文件","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"流程图:提取","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"流程图:数据","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"流程图:内部存储","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"流程图:磁盘","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"流程图:直接访问存储器","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"流程图:顺序访问存储器","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"流程图:手动输入","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"流程图:手动操作","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"流程图:合并","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"流程图:多文件","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"流程图:页外连接器","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"流程图:存储的数据","PDFE.Controllers.InsTab.txtShape_flowChartOr":"流程图:或","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"流程图:预定义程序","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"流程图:准备","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"流程图:流程","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"流程图:卡片","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"流程图:穿孔纸带","PDFE.Controllers.InsTab.txtShape_flowChartSort":"流程图:排序","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"流程图:求和结点","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"流程图:终止符","PDFE.Controllers.InsTab.txtShape_foldedCorner":"折角","PDFE.Controllers.InsTab.txtShape_frame":"框","PDFE.Controllers.InsTab.txtShape_halfFrame":"半框","PDFE.Controllers.InsTab.txtShape_heart":"心形","PDFE.Controllers.InsTab.txtShape_heptagon":"七边形","PDFE.Controllers.InsTab.txtShape_hexagon":"六边形","PDFE.Controllers.InsTab.txtShape_homePlate":"五角形","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"水平滚动","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"爆炸效果1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"爆炸效果2","PDFE.Controllers.InsTab.txtShape_leftArrow":"左箭头","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"左箭头标注","PDFE.Controllers.InsTab.txtShape_leftBrace":"左括号","PDFE.Controllers.InsTab.txtShape_leftBracket":"左括号","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"左右箭头","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"左右箭头标注","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"左右向上箭头","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"左上箭头","PDFE.Controllers.InsTab.txtShape_lightningBolt":"闪电符号","PDFE.Controllers.InsTab.txtShape_line":"线条","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"箭头","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"双箭头","PDFE.Controllers.InsTab.txtShape_mathDivide":"除法","PDFE.Controllers.InsTab.txtShape_mathEqual":"等于","PDFE.Controllers.InsTab.txtShape_mathMinus":"减去","PDFE.Controllers.InsTab.txtShape_mathMultiply":"乘","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"不等于","PDFE.Controllers.InsTab.txtShape_mathPlus":"加","PDFE.Controllers.InsTab.txtShape_moon":"月亮","PDFE.Controllers.InsTab.txtShape_noSmoking":"“否”符号","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"带凹口的右箭头","PDFE.Controllers.InsTab.txtShape_octagon":"八边形","PDFE.Controllers.InsTab.txtShape_parallelogram":"平行四边形","PDFE.Controllers.InsTab.txtShape_pentagon":"五角形","PDFE.Controllers.InsTab.txtShape_pie":"圆饼图","PDFE.Controllers.InsTab.txtShape_plaque":"签署","PDFE.Controllers.InsTab.txtShape_plus":"加","PDFE.Controllers.InsTab.txtShape_polyline1":"涂鸦","PDFE.Controllers.InsTab.txtShape_polyline2":"自由变形","PDFE.Controllers.InsTab.txtShape_quadArrow":"四向箭头","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"四箭头标注","PDFE.Controllers.InsTab.txtShape_rect":"矩形","PDFE.Controllers.InsTab.txtShape_ribbon":"向下丝带","PDFE.Controllers.InsTab.txtShape_ribbon2":"向上丝带","PDFE.Controllers.InsTab.txtShape_rightArrow":"右箭头","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"右箭头标注","PDFE.Controllers.InsTab.txtShape_rightBrace":"右大括号","PDFE.Controllers.InsTab.txtShape_rightBracket":"右方括弧","PDFE.Controllers.InsTab.txtShape_round1Rect":"圆形单角矩形","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"圆斜角矩形","PDFE.Controllers.InsTab.txtShape_round2SameRect":"圆形同侧角矩形","PDFE.Controllers.InsTab.txtShape_roundRect":"圆角矩形","PDFE.Controllers.InsTab.txtShape_rtTriangle":"直角三角形","PDFE.Controllers.InsTab.txtShape_smileyFace":"笑脸","PDFE.Controllers.InsTab.txtShape_snip1Rect":"剪下单角矩形","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"减去对角矩形","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"剪下同一边角矩形","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"减去和圆形单角矩形","PDFE.Controllers.InsTab.txtShape_spline":"曲线","PDFE.Controllers.InsTab.txtShape_star10":"10角星","PDFE.Controllers.InsTab.txtShape_star12":"12 角星形","PDFE.Controllers.InsTab.txtShape_star16":"16角星","PDFE.Controllers.InsTab.txtShape_star24":"24角星","PDFE.Controllers.InsTab.txtShape_star32":"32角星","PDFE.Controllers.InsTab.txtShape_star4":"4角星","PDFE.Controllers.InsTab.txtShape_star5":"5角星","PDFE.Controllers.InsTab.txtShape_star6":"6角星","PDFE.Controllers.InsTab.txtShape_star7":"7角星","PDFE.Controllers.InsTab.txtShape_star8":"8角星","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"条纹右箭头","PDFE.Controllers.InsTab.txtShape_sun":"太阳","PDFE.Controllers.InsTab.txtShape_teardrop":"泪滴形状","PDFE.Controllers.InsTab.txtShape_textRect":"文本框","PDFE.Controllers.InsTab.txtShape_trapezoid":"梯形","PDFE.Controllers.InsTab.txtShape_triangle":"三角形","PDFE.Controllers.InsTab.txtShape_upArrow":"向上箭头","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"向上箭头标注","PDFE.Controllers.InsTab.txtShape_upDownArrow":"上下箭头","PDFE.Controllers.InsTab.txtShape_uturnArrow":"U形转弯箭头","PDFE.Controllers.InsTab.txtShape_verticalScroll":"垂直滚动","PDFE.Controllers.InsTab.txtShape_wave":"波浪","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"椭圆形标注","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"矩形标注","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"圆角矩形标注","PDFE.Controllers.InsTab.txtStarsRibbons":"星星和丝带","PDFE.Controllers.InsTab.txtSymbol_about":"大约","PDFE.Controllers.InsTab.txtSymbol_additional":"补充","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Αlpha","PDFE.Controllers.InsTab.txtSymbol_approx":"几乎等于","PDFE.Controllers.InsTab.txtSymbol_ast":"星号运算符","PDFE.Controllers.InsTab.txtSymbol_beta":"测试版","PDFE.Controllers.InsTab.txtSymbol_beth":"Bet","PDFE.Controllers.InsTab.txtSymbol_bullet":"项目符号运算符","PDFE.Controllers.InsTab.txtSymbol_cap":"交集","PDFE.Controllers.InsTab.txtSymbol_cbrt":"立方根","PDFE.Controllers.InsTab.txtSymbol_cdots":"中线水平省略号","PDFE.Controllers.InsTab.txtSymbol_celsius":"摄氏度","PDFE.Controllers.InsTab.txtSymbol_chi":"Chi","PDFE.Controllers.InsTab.txtSymbol_cong":"约等于","PDFE.Controllers.InsTab.txtSymbol_cup":"并集","PDFE.Controllers.InsTab.txtSymbol_ddots":"向右对角线省略号","PDFE.Controllers.InsTab.txtSymbol_degree":"度","PDFE.Controllers.InsTab.txtSymbol_delta":"Delta","PDFE.Controllers.InsTab.txtSymbol_div":"除号","PDFE.Controllers.InsTab.txtSymbol_downarrow":"向下箭头","PDFE.Controllers.InsTab.txtSymbol_emptyset":"空集","PDFE.Controllers.InsTab.txtSymbol_epsilon":"Epsilon","PDFE.Controllers.InsTab.txtSymbol_equals":"等于","PDFE.Controllers.InsTab.txtSymbol_equiv":"相同于","PDFE.Controllers.InsTab.txtSymbol_eta":"Eta","PDFE.Controllers.InsTab.txtSymbol_exists":"存在","PDFE.Controllers.InsTab.txtSymbol_factorial":"阶乘","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"华氏度","PDFE.Controllers.InsTab.txtSymbol_forall":"全部","PDFE.Controllers.InsTab.txtSymbol_gamma":"Gamma","PDFE.Controllers.InsTab.txtSymbol_geq":"大于或等于","PDFE.Controllers.InsTab.txtSymbol_gg":"远大于","PDFE.Controllers.InsTab.txtSymbol_greater":"大于","PDFE.Controllers.InsTab.txtSymbol_in":"元素","PDFE.Controllers.InsTab.txtSymbol_inc":"增量","PDFE.Controllers.InsTab.txtSymbol_infinity":"无限","PDFE.Controllers.InsTab.txtSymbol_iota":"Iota","PDFE.Controllers.InsTab.txtSymbol_kappa":"卡帕","PDFE.Controllers.InsTab.txtSymbol_lambda":"Lambda","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"左箭头","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"左右箭头","PDFE.Controllers.InsTab.txtSymbol_leq":"小于或等于","PDFE.Controllers.InsTab.txtSymbol_less":"小于","PDFE.Controllers.InsTab.txtSymbol_ll":"远小于","PDFE.Controllers.InsTab.txtSymbol_minus":"减去","PDFE.Controllers.InsTab.txtSymbol_mp":"减号加","PDFE.Controllers.InsTab.txtSymbol_mu":"亩","PDFE.Controllers.InsTab.txtSymbol_nabla":"Nabla","PDFE.Controllers.InsTab.txtSymbol_neq":"不等于","PDFE.Controllers.InsTab.txtSymbol_ni":"包含为成员","PDFE.Controllers.InsTab.txtSymbol_not":"不签名","PDFE.Controllers.InsTab.txtSymbol_notexists":"不存在","PDFE.Controllers.InsTab.txtSymbol_nu":"Nu","PDFE.Controllers.InsTab.txtSymbol_o":"Omicron","PDFE.Controllers.InsTab.txtSymbol_omega":"Omega","PDFE.Controllers.InsTab.txtSymbol_partial":"偏微分","PDFE.Controllers.InsTab.txtSymbol_percent":"百分比","PDFE.Controllers.InsTab.txtSymbol_phi":"Phi","PDFE.Controllers.InsTab.txtSymbol_pi":"Pi","PDFE.Controllers.InsTab.txtSymbol_plus":"加","PDFE.Controllers.InsTab.txtSymbol_pm":"加减","PDFE.Controllers.InsTab.txtSymbol_propto":"比例缩放为","PDFE.Controllers.InsTab.txtSymbol_psi":"Ψ(希腊字母Psi)","PDFE.Controllers.InsTab.txtSymbol_qdrt":"四次方根","PDFE.Controllers.InsTab.txtSymbol_qed":"校验结束","PDFE.Controllers.InsTab.txtSymbol_rddots":"向右对角线省略号","PDFE.Controllers.InsTab.txtSymbol_rho":"Rho希腊字母\"ρ\"","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"右箭头","PDFE.Controllers.InsTab.txtSymbol_sigma":"Sigma","PDFE.Controllers.InsTab.txtSymbol_sqrt":"根号","PDFE.Controllers.InsTab.txtSymbol_tau":"Tau","PDFE.Controllers.InsTab.txtSymbol_therefore":"因此","PDFE.Controllers.InsTab.txtSymbol_theta":"Theta","PDFE.Controllers.InsTab.txtSymbol_times":"乘法符号","PDFE.Controllers.InsTab.txtSymbol_uparrow":"向上箭头","PDFE.Controllers.InsTab.txtSymbol_upsilon":"Upsilon","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"Epsilon变体","PDFE.Controllers.InsTab.txtSymbol_varphi":"Phi 变体","PDFE.Controllers.InsTab.txtSymbol_varpi":"Pi变体","PDFE.Controllers.InsTab.txtSymbol_varrho":"Rho 变量","PDFE.Controllers.InsTab.txtSymbol_varsigma":"Sigma变量","PDFE.Controllers.InsTab.txtSymbol_vartheta":"Theta 变量","PDFE.Controllers.InsTab.txtSymbol_vdots":"垂直省略号","PDFE.Controllers.InsTab.txtSymbol_xsi":"Xi","PDFE.Controllers.InsTab.txtSymbol_zeta":"Zeta","PDFE.Controllers.LeftMenu.leavePageText":"此文档中所有未保存的更改都将丢失
单击“取消”,然后单击“保存”以保存它们。单击“确定”放弃所有未保存的更改。","PDFE.Controllers.LeftMenu.newDocumentTitle":"未命名的文档","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"警告","PDFE.Controllers.LeftMenu.requestEditRightsText":"正在请求编辑权限...","PDFE.Controllers.LeftMenu.textNoTextFound":"您搜索的数据无法找到。请调整您的搜索选项。","PDFE.Controllers.LeftMenu.textSelectPath":"输入保存文件副本的路径","PDFE.Controllers.LeftMenu.txtCompatible":"文档将保存为新格式。它将允许使用所有编辑器功能,但可能会影响文档布局
如果要使文件与旧的MS Word版本兼容,请使用高级设置的“兼容性”选项。","PDFE.Controllers.LeftMenu.txtUntitled":"无标题","PDFE.Controllers.LeftMenu.warnDownloadAs":"如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"您的{0}将被转换为可编辑格式。这可能需要一段时间。生成的文档将进行优化以允许您编辑文本,因此它可能与原始{0}不完全相同,尤其是在原始文件包含大量图形的情况下。","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"如果您继续以此格式保存,某些格式可能会丢失。
您确定要继续吗?","PDFE.Controllers.Main.applyChangesTextText":"载入更改...","PDFE.Controllers.Main.applyChangesTitleText":"加载更改","PDFE.Controllers.Main.confirmMaxChangesSize":"您执行的操作超过了为服务器设置的大小限制
按“撤消”取消上次操作,或按“继续”在本地机器继续操作(您需要下载文件或复制其内容以确保不会丢失任何内容)。","PDFE.Controllers.Main.convertationTimeoutText":"转换超时","PDFE.Controllers.Main.criticalErrorExtText":"按“确定”返回该文件列表。","PDFE.Controllers.Main.criticalErrorExtTextClose":"点击“确定”关闭编辑器。","PDFE.Controllers.Main.criticalErrorTitle":"错误","PDFE.Controllers.Main.downloadErrorText":"下载失败","PDFE.Controllers.Main.downloadMergeText":"下载中…","PDFE.Controllers.Main.downloadMergeTitle":"下载中","PDFE.Controllers.Main.downloadTextText":"正在下载文件...","PDFE.Controllers.Main.downloadTitleText":"正在下载文件","PDFE.Controllers.Main.errorAccessDeny":"您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员.","PDFE.Controllers.Main.errorBadImageUrl":"图片URL地址不正确","PDFE.Controllers.Main.errorCannotPasteImg":"我们无法从剪贴板粘贴此图像,但您可以将其保存到您的设备,然后\n从那里插入此此图片,或者您可以复制图像(不带文本)并将其粘贴到文档中。","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"服务器连接失败。该文档现在无法编辑","PDFE.Controllers.Main.errorComboSeries":"若要创建组合图表,请至少选择两个系列的数据。","PDFE.Controllers.Main.errorConnectToServer":"这份文件无法保存。请检查连接设置或联系您的管理员。
当你点击“OK”按钮,系统将提示您下载文档。","PDFE.Controllers.Main.errorCopyDisabled":"出于安全原因,无法复制本文档中的内容。","PDFE.Controllers.Main.errorDatabaseConnection":"外部错误。
数据库连接错误。如果错误仍然存​​在,请联系支持人员。","PDFE.Controllers.Main.errorDataEncrypted":"加密更改已收到,无法对其解密。","PDFE.Controllers.Main.errorDataRange":"数据范围不正确","PDFE.Controllers.Main.errorDefaultMessage":"错误代码:%1","PDFE.Controllers.Main.errorDirectUrl":"请验证指向文档的链接
此链接必须是要下载的文档的直接链接。","PDFE.Controllers.Main.errorEditingDownloadas":"使用文档时出错
使用“下载为”选项将文件备份副本保存到驱动器。","PDFE.Controllers.Main.errorEditingSaveas":"使用文档时出错
使用“另存为…”选项将文件备份副本保存到驱动器。","PDFE.Controllers.Main.errorEmailClient":"找不到电子邮件客户端。","PDFE.Controllers.Main.errorFilePassProtect":"该文档受密码保护,无法被打开。","PDFE.Controllers.Main.errorFileSizeExceed":"文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。","PDFE.Controllers.Main.errorForceSave":"保存文件时出错。请使用“下载为”选项将文件保存到驱动器,或稍后再试。","PDFE.Controllers.Main.errorInconsistentExt":"打开文件时出错
文件内容与文件扩展名不匹配。","PDFE.Controllers.Main.errorInconsistentExtDocx":"打开文件时出错
文件内容对应于文本文档(例如docx),但文件的扩展名不一致:%1。","PDFE.Controllers.Main.errorInconsistentExtPdf":"打开文件时出错
文件内容对应于以下格式之一:pdf/djvu/xps/oxfs,但文件的扩展名不一致:%1。","PDFE.Controllers.Main.errorInconsistentExtPptx":"打开文件时出错
文件内容对应于演示文稿(例如pptx),但文件的扩展名不一致:%1。","PDFE.Controllers.Main.errorInconsistentExtXlsx":"打开文件时出错
文件内容对应于电子表格(例如xlsx),但文件的扩展名不一致:%1。","PDFE.Controllers.Main.errorKeyEncrypt":"未知密钥描述符","PDFE.Controllers.Main.errorKeyExpire":"密钥描述符已过期","PDFE.Controllers.Main.errorLoadingFont":"字体未加载
请与您的文档服务器管理员联系。","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"您提供的密码不正确
验证CAPS LOCK键是否关闭,并确保使用正确的大写字母。","PDFE.Controllers.Main.errorPDFFormsLocked":"该操作无法执行,因为它会对已锁定的表单造成更改。","PDFE.Controllers.Main.errorSaveWatermark":"该文件包含来自其他域名的水印图片。
要在 PDF 中显示水印,请将图片链接更新为与文档相同的域名,或从电脑上传图片。","PDFE.Controllers.Main.errorServerVersion":"编辑器版本已更新。页面将被重新加载以应用更改。","PDFE.Controllers.Main.errorSessionAbsolute":"文档编辑会话已过期。请重新加载页面","PDFE.Controllers.Main.errorSessionIdle":"这份文件已经很长时间没有编辑了。请重新加载页面。","PDFE.Controllers.Main.errorSessionToken":"与服务器的连接已中断。请重新加载页面。","PDFE.Controllers.Main.errorSetPassword":"无法设置密码。","PDFE.Controllers.Main.errorStockChart":"行顺序不正确,要建立股票图表,将数据按照以下顺序放置在表格上:
开盘价,最高价格,最低价格,收盘价。","PDFE.Controllers.Main.errorTextFormWrongFormat":"输入的值与字段的格式不匹配。","PDFE.Controllers.Main.errorToken":"文档安全令牌的格式不正确
请与您的文档服务器管理员联系。","PDFE.Controllers.Main.errorTokenExpire":"文档安全令牌已过期。
请与您的文档服务器管理员联系。","PDFE.Controllers.Main.errorUpdateVersion":"\n该文件版本已经改变了。该页面将被重新加载。","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"网络连接已恢复,文件版本已更改
在继续工作之前,您需要下载文件或复制其内容以确保不会丢失任何内容,然后重新加载此页面。","PDFE.Controllers.Main.errorUserDrop":"该文件现在无法访问。","PDFE.Controllers.Main.errorUsersExceed":"超出原服务计划可允许的帐户数量","PDFE.Controllers.Main.errorViewerDisconnect":"连接失败。您仍然可以查看文档
,但在连接恢复之前无法下载或打印。","PDFE.Controllers.Main.leavePageText":"您在本文档中有未保存的更改。点击“留在这个页面”,然后点击“保存”保存。点击“离开此页面”,放弃所有未保存的更改。","PDFE.Controllers.Main.leavePageTextOnClose":"此文档中所有未保存的更改都将丢失
单击“取消”,然后单击“保存”以保存它们。单击“确定”放弃所有未保存的更改。","PDFE.Controllers.Main.loadFontsTextText":"数据加载中…","PDFE.Controllers.Main.loadFontsTitleText":"数据加载中","PDFE.Controllers.Main.loadFontTextText":"数据加载中…","PDFE.Controllers.Main.loadFontTitleText":"数据加载中","PDFE.Controllers.Main.loadImagesTextText":"图片加载中…","PDFE.Controllers.Main.loadImagesTitleText":"图片加载中","PDFE.Controllers.Main.loadImageTextText":"图片加载中…","PDFE.Controllers.Main.loadImageTitleText":"图片加载中","PDFE.Controllers.Main.loadingDocumentTextText":"文件加载中…","PDFE.Controllers.Main.loadingDocumentTitleText":"文件加载中…","PDFE.Controllers.Main.notcriticalErrorTitle":"警告","PDFE.Controllers.Main.openErrorText":"打开文件时发生错误","PDFE.Controllers.Main.openTextText":"正在打开文档...","PDFE.Controllers.Main.openTitleText":"正在打开文件","PDFE.Controllers.Main.printTextText":"正在列印文件...","PDFE.Controllers.Main.printTitleText":"正在打印文件","PDFE.Controllers.Main.reloadButtonText":"重新加载页面","PDFE.Controllers.Main.requestEditFailedMessageText":"有人正在编辑此文档。请稍后再试。","PDFE.Controllers.Main.requestEditFailedTitleText":"访问被拒绝","PDFE.Controllers.Main.saveErrorText":"保存文件时发生错误","PDFE.Controllers.Main.saveErrorTextDesktop":"无法保存或创建此文件
可能的原因有:
1.该文件是只读的
2.其他用户正在编辑该文件
3.磁盘已满或已损坏。","PDFE.Controllers.Main.saveTextText":"正在保存文档...","PDFE.Controllers.Main.saveTitleText":"正在保存文件","PDFE.Controllers.Main.scriptLoadError":"连接速度过慢,部分组件无法被加载。请重新加载页面。","PDFE.Controllers.Main.splitDividerErrorText":"行数必须为%1的除数。","PDFE.Controllers.Main.splitMaxColsErrorText":"列数必须小于%1。","PDFE.Controllers.Main.splitMaxRowsErrorText":"行数必须小于%1。","PDFE.Controllers.Main.textAnonymous":"匿名用户","PDFE.Controllers.Main.textAnyone":"任何人","PDFE.Controllers.Main.textBuyNow":"访问网站","PDFE.Controllers.Main.textChangesSaved":"所有更改已保存","PDFE.Controllers.Main.textClose":"关闭","PDFE.Controllers.Main.textCloseTip":"点击关闭提示","PDFE.Controllers.Main.textConnectionLost":"正在尝试连接。请检查连接设置。","PDFE.Controllers.Main.textContactUs":"联系销售人员","PDFE.Controllers.Main.textContinue":"继续","PDFE.Controllers.Main.textCustomLoader":"请注意,根据许可条款您无权更改加载程序。
请联系我们的销售部门获取报价。","PDFE.Controllers.Main.textDisconnect":"连接失败","PDFE.Controllers.Main.textGuest":"访客","PDFE.Controllers.Main.textLearnMore":"了解更多","PDFE.Controllers.Main.textLoadingDocument":"文件加载中…","PDFE.Controllers.Main.textLongName":"输入一个少于128个字符的名称。","PDFE.Controllers.Main.textNoLicenseTitle":"已达到许可证最大连接数限制","PDFE.Controllers.Main.textPaidFeature":"付费功能","PDFE.Controllers.Main.textReconnect":"连接已恢复","PDFE.Controllers.Main.textRemember":"记住我对所有文件的选择","PDFE.Controllers.Main.textRenameError":"用户名不能为空。","PDFE.Controllers.Main.textRenameLabel":"输入用于协作的名称","PDFE.Controllers.Main.textShape":"形状","PDFE.Controllers.Main.textStrict":"严格模式","PDFE.Controllers.Main.textText":"文本","PDFE.Controllers.Main.textTryQuickPrint":"您已选择“快速打印”:整个文档将被打印到最近选择的打印机或者默认打印机。
您想要继续吗?","PDFE.Controllers.Main.textTryUndoRedo":"“撤消/恢复”功能对于“快速协同编辑”模式是禁用的
单击“严格模式”按钮切换到严格协同编辑模式,在不受其他用户干扰的情况下编辑文件,并仅在保存更改后发送更改。您可以使用编辑器的高级设置在协同编辑模式之间切换。","PDFE.Controllers.Main.textTryUndoRedoWarn":"快速共同编辑模式下,撤销/重做功能被禁用。","PDFE.Controllers.Main.textUndo":"撤消","PDFE.Controllers.Main.textUpdateVersion":"现在无法编辑该文档。
正在尝试更新文件,请稍候...","PDFE.Controllers.Main.textUpdating":"更新中","PDFE.Controllers.Main.tipLicenseExceeded":"已达到许可证允许的最大同时连接数,因此文档以只读模式打开。

请稍后重试,或者如需编辑权限,请联系文档所有者。","PDFE.Controllers.Main.tipLicenseUsersExceeded":"已达到许可证允许编辑文档的最大用户数量,因此该文档以只读模式打开。

如果您需要编辑权限,请稍后重试或联系文档所有者。","PDFE.Controllers.Main.titleLicenseExp":"许可证过期","PDFE.Controllers.Main.titleLicenseNotActive":"授权证书未激活","PDFE.Controllers.Main.titleReadOnly":"只读模式","PDFE.Controllers.Main.titleServerVersion":"编辑器已更新","PDFE.Controllers.Main.titleUpdateVersion":"版本已变化","PDFE.Controllers.Main.txtArt":"在此输入文字","PDFE.Controllers.Main.txtButton":"按钮","PDFE.Controllers.Main.txtCheckbox":"复选框","PDFE.Controllers.Main.txtChoose":"选择一项","PDFE.Controllers.Main.txtClickToLoad":"单击以加载图像","PDFE.Controllers.Main.txtDiagramTitle":"图表标题","PDFE.Controllers.Main.txtDocUnlockDescription":"输入密码以取消文档保护","PDFE.Controllers.Main.txtDropdown":"下拉菜单","PDFE.Controllers.Main.txtEditingMode":"设置编辑模式..","PDFE.Controllers.Main.txtEnterDate":"输入日期","PDFE.Controllers.Main.txtGroup":"组","PDFE.Controllers.Main.txtInvalidGreater":"字段\"{0}\"的值无效:必须大于或等于{1}。","PDFE.Controllers.Main.txtInvalidGreaterLess":"字段\"{0}\"的值无效:必须大于或等于{1}且小于或等于{2}。","PDFE.Controllers.Main.txtInvalidLess":"字段\"{0}\"的值无效:必须小于或等于{1}。","PDFE.Controllers.Main.txtInvalidPdfFormat":"输入的值与字段\"{0}\"的格式不匹配。","PDFE.Controllers.Main.txtInvalidValue":"字段“{0}”的值无效","PDFE.Controllers.Main.txtListbox":"列表框","PDFE.Controllers.Main.txtNeedSynchronize":"您有更新","PDFE.Controllers.Main.txtSaveCopyAsComplete":"已成功保存文件副本","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"此文档正尝试连接到{0}。
如果您信任此网站,请点击“确定”。","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"此文档正在尝试打开文件对话框,请按“确定”打开。","PDFE.Controllers.Main.txtSeries":"序列","PDFE.Controllers.Main.txtSignature":"签名","PDFE.Controllers.Main.txtText":"文本","PDFE.Controllers.Main.txtUnlockTitle":"解除文档保护","PDFE.Controllers.Main.txtValidPdfFormat":"字段值应与格式\"{0}\"匹配。","PDFE.Controllers.Main.txtXAxis":"X轴","PDFE.Controllers.Main.txtYAxis":"Y轴","PDFE.Controllers.Main.unknownErrorText":"未知错误。","PDFE.Controllers.Main.unsupportedBrowserErrorText":"您的浏览器不受支持","PDFE.Controllers.Main.uploadDocExtMessage":"未知文件格式。","PDFE.Controllers.Main.uploadDocFileCountMessage":"未上传任何文档。","PDFE.Controllers.Main.uploadDocSizeMessage":"超出最大文件大小限制。","PDFE.Controllers.Main.uploadImageExtMessage":"未知图片格式。","PDFE.Controllers.Main.uploadImageFileCountMessage":"没有上传图片","PDFE.Controllers.Main.uploadImageSizeMessage":"图像太大。最大大小为25 MB。","PDFE.Controllers.Main.uploadImageTextText":"图片上传中...","PDFE.Controllers.Main.uploadImageTitleText":"图片上传中","PDFE.Controllers.Main.waitText":"请稍候...","PDFE.Controllers.Main.warnBrowserIE9":"该应用程序在IE9上的功能很差。使用IE10或更高版本","PDFE.Controllers.Main.warnBrowserZoom":"您的浏览器当前缩放设置不完全支持。请按Ctrl + 0重设为默认缩放。","PDFE.Controllers.Main.warnLicenseAnonymous":"匿名用户的访问被拒绝
此文档将仅打开以供查看。","PDFE.Controllers.Main.warnLicenseBefore":"许可证未激活
请与管理员联系。","PDFE.Controllers.Main.warnLicenseExp":"您的许可证已过期。
请更新您的许可证并刷新页面。","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"许可证已过期。
您现在不能使用文档编辑功能
请联系您的管理员。","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"许可证需要更新。
您现在只能使用受限的文档编辑功能。
请联系管理员以获取完整权限","PDFE.Controllers.Main.warnNoLicense":"您已达到同时连接到%1编辑器的限制。此文档将仅打开以供查看
有关个人升级条款,请与%1销售团队联系。","PDFE.Controllers.Main.warnNoLicenseUsers":"您已达到%1编辑器的用户限制。有关个人升级条款,请与%1销售团队联系。","PDFE.Controllers.Main.warnProcessRightsChange":"您被拒绝了编辑文件的权限。","PDFE.Controllers.Navigation.txtBeginning":"文件开头","PDFE.Controllers.Navigation.txtGotoBeginning":"转到文档的开头","PDFE.Controllers.Print.textMarginsLast":"上次自定义","PDFE.Controllers.Print.txtCustom":"自定义","PDFE.Controllers.Print.txtPrintRangeInvalid":"无效的打印范围","PDFE.Controllers.RedactTab.applyButtonText":"应用","PDFE.Controllers.RedactTab.doNotApplyButtonText":"不要应用","PDFE.Controllers.RedactTab.textApplyRedact":"密文信息将从此文档中永久删除。一旦您保存文档,这些信息将无法恢复。","PDFE.Controllers.RedactTab.textEnterPageRange":"输入要标记为密文的页码范围","PDFE.Controllers.RedactTab.textEnterRangeDescription":"例如:1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"标记页面为密文","PDFE.Controllers.RedactTab.textUnappliedRedactions":"此文档包含尚未应用的密文标记。

在您选择“应用密文”之前,这些标记可以移除,信息也可以恢复。","PDFE.Controllers.RedactTab.tipApplyRedaction":"应用并保存所有密文。未保存的密文仍可撤销。","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"应用密文","PDFE.Controllers.RedactTab.tipMarkForRedaction":"使用这些工具可在PDF中标记、查找并密文处理敏感内容。","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"标记密文","PDFE.Controllers.RedactTab.txtInvalidFormat":"格式无效。请输入单个页码或带短横线的范围,例如2或2-6","PDFE.Controllers.RedactTab.txtInvalidRange":"页码必须在1到{0}之间","PDFE.Controllers.RedactTab.txtReversedRange":"起始页码必须小于或等于结束页码。","PDFE.Controllers.Search.notcriticalErrorTitle":"警告","PDFE.Controllers.Search.textNoTextFound":"无法找到您搜索的数据,请调整您的搜索选项。","PDFE.Controllers.Search.textReplaceSkipped":"替换已完成。 {0}处跳过。","PDFE.Controllers.Search.textReplaceSuccess":"搜索已完成。已替换{0}处","PDFE.Controllers.Search.warnReplaceString":"{0}不是\"替换为\"输入框要求的有效特殊字符。","PDFE.Controllers.Statusbar.textDisconnect":"连接失败
正在尝试连接。请检查连接设置。","PDFE.Controllers.Statusbar.zoomText":"缩放{0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"您要保存的字体在当前设备不可用。
文本将以一种设备字体进行显示,保存的字体在可用时会将其替代。
是否要继续?","PDFE.Controllers.Toolbar.errorAccessDeny":"您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员。","PDFE.Controllers.Toolbar.helpAnnotRect":"探索新的批注工具:矩形、圆形、箭头和连接线。","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"新增批注","PDFE.Controllers.Toolbar.helpPdfCharts":"在PDF中直接插入和编辑图表及智能图形。","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"PDF图表和智能图形","PDFE.Controllers.Toolbar.helpRedactTab":"使用密文功能保护敏感信息,安全删除机密内容。","PDFE.Controllers.Toolbar.helpRedactTabHeader":"PDF密文","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"警告","PDFE.Controllers.Toolbar.textFontSizeErr":"输入的值不正确
请输入一个介于1和300之间的数值","PDFE.Controllers.Toolbar.textGotIt":"知道了","PDFE.Controllers.Toolbar.textRequired":"要发送表单,请填写所有必填项。","PDFE.Controllers.Toolbar.textSubmited":"表单提交成功
点击关闭提示。","PDFE.Controllers.Toolbar.textTabForms":"表单","PDFE.Controllers.Toolbar.textWarning":"警告","PDFE.Controllers.Toolbar.txtDownload":"下载","PDFE.Controllers.Toolbar.txtNeedCommentMode":"要保存对文件的更改,请切换到批注模式。或者,您可以下载修改后的文件的副本。","PDFE.Controllers.Toolbar.txtNeedDownload":"目前,PDF查看器只能将新的更改保存在单独的文件副本中。它不支持共同编辑,除非您共享新的文件版本,否则其他用户不会看到您的更改。","PDFE.Controllers.Toolbar.txtSaveCopy":"保存副本","PDFE.Controllers.Toolbar.txtUntitled":"无标题","PDFE.Controllers.Viewport.textFitPage":"适合页面","PDFE.Controllers.Viewport.textFitWidth":"调整至合适宽度","PDFE.Controllers.Viewport.txtDarkMode":"深色模式","PDFE.Views.ChartSettings.text3dDepth":"深度(基准的%)","PDFE.Views.ChartSettings.text3dHeight":"高度(基准的%)","PDFE.Views.ChartSettings.text3dRotation":"三维旋转","PDFE.Views.ChartSettings.textAdvanced":"显示高级设置","PDFE.Views.ChartSettings.textAutoscale":"自动缩放","PDFE.Views.ChartSettings.textChartType":"更改图表类型","PDFE.Views.ChartSettings.textData":"数据","PDFE.Views.ChartSettings.textDefault":"默认旋转","PDFE.Views.ChartSettings.textDown":"下","PDFE.Views.ChartSettings.textEditData":"编辑数据","PDFE.Views.ChartSettings.textEditLinks":"编辑链接","PDFE.Views.ChartSettings.textHeight":"\n高度","PDFE.Views.ChartSettings.textKeepRatio":"固定比例","PDFE.Views.ChartSettings.textLeft":"左侧","PDFE.Views.ChartSettings.textLinkedData":"关联数据","PDFE.Views.ChartSettings.textNarrow":"窄视图","PDFE.Views.ChartSettings.textPerspective":"透视","PDFE.Views.ChartSettings.textRight":"右侧","PDFE.Views.ChartSettings.textRightAngle":"直角坐标轴","PDFE.Views.ChartSettings.textSelectData":"选择数据","PDFE.Views.ChartSettings.textSize":"大小","PDFE.Views.ChartSettings.textStyle":"样式","PDFE.Views.ChartSettings.textUp":"上","PDFE.Views.ChartSettings.textUpdateData":"更新数据","PDFE.Views.ChartSettings.textWiden":"扩大视图","PDFE.Views.ChartSettings.textWidth":"宽度","PDFE.Views.ChartSettings.textX":"X轴旋转","PDFE.Views.ChartSettings.textY":"Y轴旋转","PDFE.Views.ChartSettingsAdvanced.textAlt":"替代文本","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"说明","PDFE.Views.ChartSettingsAdvanced.textAltTip":"这是一种基于文本呈现视觉对象信息的方式,帮助有视力或认知障碍的人更好地理解图像、形状、图表或表格中的信息。","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"标题","PDFE.Views.ChartSettingsAdvanced.textAuto":"自动","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"坐标轴交叉","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"坐标轴位置","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"标题","PDFE.Views.ChartSettingsAdvanced.textBase":"基线","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"刻度线之间","PDFE.Views.ChartSettingsAdvanced.textBillions":"十亿","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"分类名称","PDFE.Views.ChartSettingsAdvanced.textCenter":"居中","PDFE.Views.ChartSettingsAdvanced.textChartName":"图表名称","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"图表标题","PDFE.Views.ChartSettingsAdvanced.textCross":"交叉","PDFE.Views.ChartSettingsAdvanced.textCustom":"自定义","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"数据标签","PDFE.Views.ChartSettingsAdvanced.textFit":"适合宽度","PDFE.Views.ChartSettingsAdvanced.textFixed":"固定","PDFE.Views.ChartSettingsAdvanced.textFormat":"标签格式","PDFE.Views.ChartSettingsAdvanced.textFrom":"来自","PDFE.Views.ChartSettingsAdvanced.textGeneral":"常规","PDFE.Views.ChartSettingsAdvanced.textGridLines":"网格线","PDFE.Views.ChartSettingsAdvanced.textHeight":"\n高度","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"隐藏轴","PDFE.Views.ChartSettingsAdvanced.textHigh":"高","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"横轴","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"次横轴","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"水平的","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"百","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PDFE.Views.ChartSettingsAdvanced.textIn":"在","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"内侧底部","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"内侧顶部","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"固定比例","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"坐标轴标签距离","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"标签之间的间隔","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"标签选项","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"标签位置","PDFE.Views.ChartSettingsAdvanced.textLayout":"布局","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"左侧叠加","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"底部","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"左侧","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"图例","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"右侧","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"顶部","PDFE.Views.ChartSettingsAdvanced.textLines":"线","PDFE.Views.ChartSettingsAdvanced.textLogScale":"对数刻度","PDFE.Views.ChartSettingsAdvanced.textLow":"低","PDFE.Views.ChartSettingsAdvanced.textMajor":"主要","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"主要和次要","PDFE.Views.ChartSettingsAdvanced.textMajorType":"主要类型","PDFE.Views.ChartSettingsAdvanced.textManual":"手动","PDFE.Views.ChartSettingsAdvanced.textMarkers":"标记","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"标记之间的间隔","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"最大值","PDFE.Views.ChartSettingsAdvanced.textMillions":"百万","PDFE.Views.ChartSettingsAdvanced.textMinor":"次要的","PDFE.Views.ChartSettingsAdvanced.textMinorType":"次要类型","PDFE.Views.ChartSettingsAdvanced.textMinValue":"最小值","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"在轴旁边","PDFE.Views.ChartSettingsAdvanced.textNone":"无","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"没有叠加","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"刻度标记","PDFE.Views.ChartSettingsAdvanced.textOut":"外部","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"外侧顶部","PDFE.Views.ChartSettingsAdvanced.textOverlay":"覆盖","PDFE.Views.ChartSettingsAdvanced.textPlacement":"放置","PDFE.Views.ChartSettingsAdvanced.textPosition":"位置","PDFE.Views.ChartSettingsAdvanced.textReverse":"按相反顺序排列的值","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"右侧覆盖","PDFE.Views.ChartSettingsAdvanced.textRotated":"已旋转","PDFE.Views.ChartSettingsAdvanced.textSeparator":"数据标签分隔符","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"序列名称","PDFE.Views.ChartSettingsAdvanced.textSize":"大小","PDFE.Views.ChartSettingsAdvanced.textSmooth":"平滑","PDFE.Views.ChartSettingsAdvanced.textStraight":"校直","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PDFE.Views.ChartSettingsAdvanced.textThousands":"千","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"勾选选项","PDFE.Views.ChartSettingsAdvanced.textTitle":"图表 - 高级设置","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"左上角","PDFE.Views.ChartSettingsAdvanced.textTrillions":"万亿","PDFE.Views.ChartSettingsAdvanced.textUnits":"显示单位","PDFE.Views.ChartSettingsAdvanced.textValue":"值","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"纵轴","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"次纵轴","PDFE.Views.ChartSettingsAdvanced.textVertical":"垂直","PDFE.Views.ChartSettingsAdvanced.textWidth":"宽度","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"左侧叠加","PDFE.Views.DocumentHolder.aboveText":"上方","PDFE.Views.DocumentHolder.addCommentText":"添加批注","PDFE.Views.DocumentHolder.advancedChartText":"图表高级设置","PDFE.Views.DocumentHolder.advancedEquationText":"方程式设置","PDFE.Views.DocumentHolder.advancedImageText":"图片高级设置","PDFE.Views.DocumentHolder.advancedParagraphText":"段落高级设置","PDFE.Views.DocumentHolder.advancedShapeText":"形状高级设置","PDFE.Views.DocumentHolder.advancedTableText":"表格高级设置","PDFE.Views.DocumentHolder.AlignBottom":"底部","PDFE.Views.DocumentHolder.AlignCenter":"居中","PDFE.Views.DocumentHolder.AlignJust":"两端对齐","PDFE.Views.DocumentHolder.AlignLeft":"左","PDFE.Views.DocumentHolder.alignmentText":"对齐","PDFE.Views.DocumentHolder.AlignMiddle":"中间","PDFE.Views.DocumentHolder.AlignRight":"右","PDFE.Views.DocumentHolder.AlignText":"文字对齐","PDFE.Views.DocumentHolder.AlignTop":"顶部","PDFE.Views.DocumentHolder.allLinearText":"全部-线性","PDFE.Views.DocumentHolder.allProfText":"全部-专业","PDFE.Views.DocumentHolder.belowText":"下方","PDFE.Views.DocumentHolder.btnChart":"添加、删除或更改图表元素,例如标题、图例、网格线和数据标签","PDFE.Views.DocumentHolder.cellAlignText":"单元格垂直对齐","PDFE.Views.DocumentHolder.cellText":"单元格","PDFE.Views.DocumentHolder.centerText":"居中","PDFE.Views.DocumentHolder.columnText":"列","PDFE.Views.DocumentHolder.confirmAddFontName":"您要保存的字体在当前设备不可用。
文本将以设备字体之一进行显示,保存的字体在可用时会将其替换。
是否要继续?","PDFE.Views.DocumentHolder.currLinearText":"当前-线性","PDFE.Views.DocumentHolder.currProfText":"当前-专业","PDFE.Views.DocumentHolder.deleteColumnText":"删除列","PDFE.Views.DocumentHolder.deleteRowText":"删除行","PDFE.Views.DocumentHolder.deleteTableText":"删除表格","PDFE.Views.DocumentHolder.deleteText":"删除","PDFE.Views.DocumentHolder.DepthAxis":"Z 轴","PDFE.Views.DocumentHolder.direct270Text":"向上旋转文字","PDFE.Views.DocumentHolder.direct90Text":"向下旋转文字","PDFE.Views.DocumentHolder.directHText":"水平的","PDFE.Views.DocumentHolder.directionText":"文字方向","PDFE.Views.DocumentHolder.editChartText":"编辑数据","PDFE.Views.DocumentHolder.editHyperlinkText":"编辑链接","PDFE.Views.DocumentHolder.guestText":"访客","PDFE.Views.DocumentHolder.hideEqToolbar":"隐藏公式工具栏","PDFE.Views.DocumentHolder.hyperlinkText":"链接","PDFE.Views.DocumentHolder.insertColumnLeftText":"左栏","PDFE.Views.DocumentHolder.insertColumnRightText":"右栏","PDFE.Views.DocumentHolder.insertColumnText":"插入列","PDFE.Views.DocumentHolder.insertRowAboveText":"上面的行","PDFE.Views.DocumentHolder.insertRowBelowText":"下面的行","PDFE.Views.DocumentHolder.insertRowText":"插入行","PDFE.Views.DocumentHolder.insertText":"插入","PDFE.Views.DocumentHolder.latexText":"LaTeX","PDFE.Views.DocumentHolder.leftText":"左","PDFE.Views.DocumentHolder.mergeCellsText":"合并单元格","PDFE.Views.DocumentHolder.mniImageFromFile":"来自文件的图片","PDFE.Views.DocumentHolder.mniImageFromStorage":"存储设备中的图片","PDFE.Views.DocumentHolder.mniImageFromUrl":"来自URL地址的图片","PDFE.Views.DocumentHolder.originalSizeText":"实际大小","PDFE.Views.DocumentHolder.removeCommentText":"删除","PDFE.Views.DocumentHolder.removeHyperlinkText":"删除链接","PDFE.Views.DocumentHolder.rightText":"右","PDFE.Views.DocumentHolder.rowText":"行","PDFE.Views.DocumentHolder.selectText":"选择","PDFE.Views.DocumentHolder.showEqToolbar":"显示公式工具栏","PDFE.Views.DocumentHolder.splitCellsText":"拆分单元格","PDFE.Views.DocumentHolder.splitCellTitleText":"拆分单元格","PDFE.Views.DocumentHolder.tableText":"表格","PDFE.Views.DocumentHolder.textArrangeBack":"置于底层","PDFE.Views.DocumentHolder.textArrangeBackward":"下移一层","PDFE.Views.DocumentHolder.textArrangeForward":"向前移动","PDFE.Views.DocumentHolder.textArrangeFront":"放到最上面","PDFE.Views.DocumentHolder.textAxes":"坐标轴","PDFE.Views.DocumentHolder.textAxisTitles":"坐标轴标题","PDFE.Views.DocumentHolder.textBottom":"底部","PDFE.Views.DocumentHolder.textCenter":"居中","PDFE.Views.DocumentHolder.textChartTitle":"图表标题","PDFE.Views.DocumentHolder.textClearField":"清除字段","PDFE.Views.DocumentHolder.textCm":"厘米","PDFE.Views.DocumentHolder.textColor":"颜色","PDFE.Views.DocumentHolder.textCopy":"复制","PDFE.Views.DocumentHolder.textCrop":"裁剪","PDFE.Views.DocumentHolder.textCropFill":"填充","PDFE.Views.DocumentHolder.textCropFit":"适应","PDFE.Views.DocumentHolder.textCustom":"自定义","PDFE.Views.DocumentHolder.textCut":"剪切","PDFE.Views.DocumentHolder.textDataLabels":"数据标签","PDFE.Views.DocumentHolder.textDistributeCols":"分布列","PDFE.Views.DocumentHolder.textDistributeRows":"分布行","PDFE.Views.DocumentHolder.textEditPoints":"编辑点","PDFE.Views.DocumentHolder.textErrorBars":"误差线","PDFE.Views.DocumentHolder.textExponential":"指数","PDFE.Views.DocumentHolder.textFit":"调整至合适宽度","PDFE.Views.DocumentHolder.textFlipH":"水平翻转","PDFE.Views.DocumentHolder.textFlipV":"垂直翻转","PDFE.Views.DocumentHolder.textFontSizeErr":"输入的值不正确
请输入一个介于1和300之间的数值","PDFE.Views.DocumentHolder.textFromFile":"从文件导入","PDFE.Views.DocumentHolder.textFromStorage":"来自存储设备","PDFE.Views.DocumentHolder.textFromUrl":"来自URL","PDFE.Views.DocumentHolder.textGridLines":"网格线","PDFE.Views.DocumentHolder.textHorAxis":"横轴","PDFE.Views.DocumentHolder.textHorAxisSec":"次横轴","PDFE.Views.DocumentHolder.textHorizontalMajor":"主要水平线","PDFE.Views.DocumentHolder.textHorizontalMinor":"次要水平线","PDFE.Views.DocumentHolder.textInnerBottom":"内侧底部","PDFE.Views.DocumentHolder.textInnerTop":"内侧顶部","PDFE.Views.DocumentHolder.textLeft":"左侧","PDFE.Views.DocumentHolder.textLeftData":"左侧","PDFE.Views.DocumentHolder.textLeftOverlay":"左侧叠加","PDFE.Views.DocumentHolder.textLegendPos":"图例","PDFE.Views.DocumentHolder.textLinear":"线性","PDFE.Views.DocumentHolder.textLinearForecast":"线性预测","PDFE.Views.DocumentHolder.textLines":"线","PDFE.Views.DocumentHolder.textMovingAverage":"移动平均 (2)","PDFE.Views.DocumentHolder.textNone":"无","PDFE.Views.DocumentHolder.textNoOverlay":"没有叠加","PDFE.Views.DocumentHolder.textOuterTop":"外侧顶部","PDFE.Views.DocumentHolder.textOverlay":"覆盖","PDFE.Views.DocumentHolder.textPaste":"粘贴","PDFE.Views.DocumentHolder.textRecognize":"编辑文本","PDFE.Views.DocumentHolder.textRedact":"标记文本为密文","PDFE.Views.DocumentHolder.textRedo":"重做","PDFE.Views.DocumentHolder.textReplace":"替换图片","PDFE.Views.DocumentHolder.textResetCrop":"重置裁剪","PDFE.Views.DocumentHolder.textRight":"右侧","PDFE.Views.DocumentHolder.textRightOverlay":"右侧覆盖","PDFE.Views.DocumentHolder.textRotate":"旋转","PDFE.Views.DocumentHolder.textRotate270":"逆时针旋转90°","PDFE.Views.DocumentHolder.textRotate90":"顺时针旋转90°","PDFE.Views.DocumentHolder.textSaveAsPicture":"另存为图片","PDFE.Views.DocumentHolder.textShapeAlignBottom":"底部对齐","PDFE.Views.DocumentHolder.textShapeAlignCenter":"居中对齐","PDFE.Views.DocumentHolder.textShapeAlignLeft":"左对齐","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"居中对齐","PDFE.Views.DocumentHolder.textShapeAlignRight":"右对齐","PDFE.Views.DocumentHolder.textShapeAlignTop":"顶端对齐","PDFE.Views.DocumentHolder.textShapesMerge":"合并形状","PDFE.Views.DocumentHolder.textShowLegendKeys":"显示图例标识","PDFE.Views.DocumentHolder.textShowUpDown":"显示上下滚动条","PDFE.Views.DocumentHolder.textStandardDeviation":"标准偏差","PDFE.Views.DocumentHolder.textStandardError":"标准误差","PDFE.Views.DocumentHolder.textTop":"顶部","PDFE.Views.DocumentHolder.textTrendline":"趋势线","PDFE.Views.DocumentHolder.textUndo":"撤销","PDFE.Views.DocumentHolder.textUpDownBars":"上下滚动条","PDFE.Views.DocumentHolder.textVertAxis":"纵轴","PDFE.Views.DocumentHolder.textVertAxisSec":"次纵轴","PDFE.Views.DocumentHolder.textVerticalMajor":"垂直主轴","PDFE.Views.DocumentHolder.textVerticalMinor":"垂直次轴","PDFE.Views.DocumentHolder.tipIsLocked":"此元素正在由其他用户编辑。","PDFE.Views.DocumentHolder.tipRecognize":"编辑文本","PDFE.Views.DocumentHolder.tipRedact":"标记文本为密文","PDFE.Views.DocumentHolder.txtAddBottom":"添加底部边框","PDFE.Views.DocumentHolder.txtAddFractionBar":"添加分数栏","PDFE.Views.DocumentHolder.txtAddHor":"添加水平线","PDFE.Views.DocumentHolder.txtAddLB":"添加左底边框","PDFE.Views.DocumentHolder.txtAddLeft":"添加左边框","PDFE.Views.DocumentHolder.txtAddLT":"添加左侧顶部边框","PDFE.Views.DocumentHolder.txtAddRight":"添加右边框","PDFE.Views.DocumentHolder.txtAddTop":"添加顶部边框","PDFE.Views.DocumentHolder.txtAddVer":"添加垂直线","PDFE.Views.DocumentHolder.txtAlign":"对齐","PDFE.Views.DocumentHolder.txtAlignToChar":"字符对齐","PDFE.Views.DocumentHolder.txtArrange":"排列","PDFE.Views.DocumentHolder.txtBackground":"背景","PDFE.Views.DocumentHolder.txtBorderProps":"边框属性","PDFE.Views.DocumentHolder.txtBottom":"底部","PDFE.Views.DocumentHolder.txtColumnAlign":"列对齐","PDFE.Views.DocumentHolder.txtCopyPage":"复制页面","PDFE.Views.DocumentHolder.txtCutPage":"剪切页面","PDFE.Views.DocumentHolder.txtDecreaseArg":"减少参数大小","PDFE.Views.DocumentHolder.txtDeleteArg":"删除参数","PDFE.Views.DocumentHolder.txtDeleteBreak":"删除手动的换行符","PDFE.Views.DocumentHolder.txtDeleteChars":"删除包围字符","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"删除封闭字符和分隔符","PDFE.Views.DocumentHolder.txtDeleteEq":"删除方程式","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"删除字符","PDFE.Views.DocumentHolder.txtDeletePage":"删除页面","PDFE.Views.DocumentHolder.txtDeleteRadical":"删除根号","PDFE.Views.DocumentHolder.txtDistribHor":"水平分布","PDFE.Views.DocumentHolder.txtDistribVert":"垂直分布","PDFE.Views.DocumentHolder.txtEmpty":"(空)","PDFE.Views.DocumentHolder.txtFractionLinear":"改为线性分数","PDFE.Views.DocumentHolder.txtFractionSkewed":"改为倾斜分数","PDFE.Views.DocumentHolder.txtFractionStacked":"改为堆叠分数","PDFE.Views.DocumentHolder.txtGroup":"组","PDFE.Views.DocumentHolder.txtGroupCharOver":"字符在文字上方","PDFE.Views.DocumentHolder.txtGroupCharUnder":"字符在文字下方","PDFE.Views.DocumentHolder.txtHideBottom":"隐藏底部边框","PDFE.Views.DocumentHolder.txtHideBottomLimit":"隐藏下限","PDFE.Views.DocumentHolder.txtHideCloseBracket":"隐藏右括号","PDFE.Views.DocumentHolder.txtHideDegree":"隐藏度数","PDFE.Views.DocumentHolder.txtHideHor":"隐藏水平线","PDFE.Views.DocumentHolder.txtHideLB":"隐藏左底线","PDFE.Views.DocumentHolder.txtHideLeft":"隐藏左边框","PDFE.Views.DocumentHolder.txtHideLT":"隐藏左方顶线","PDFE.Views.DocumentHolder.txtHideOpenBracket":"隐藏左括号","PDFE.Views.DocumentHolder.txtHidePlaceholder":"隐藏占位符","PDFE.Views.DocumentHolder.txtHideRight":"隐藏右边框","PDFE.Views.DocumentHolder.txtHideTop":"隐藏顶部边框","PDFE.Views.DocumentHolder.txtHideTopLimit":"隐藏上限","PDFE.Views.DocumentHolder.txtHideVer":"隐藏垂直线","PDFE.Views.DocumentHolder.txtIncreaseArg":"增加参数大小","PDFE.Views.DocumentHolder.txtInsertArgAfter":"在后面插入参数","PDFE.Views.DocumentHolder.txtInsertArgBefore":"在前面插入参数","PDFE.Views.DocumentHolder.txtInsertBreak":"插入手动分隔符","PDFE.Views.DocumentHolder.txtInsertEqAfter":"在之后插入方程式","PDFE.Views.DocumentHolder.txtInsertEqBefore":"在前面插入方程式","PDFE.Views.DocumentHolder.txtLimitChange":"更改界限位置","PDFE.Views.DocumentHolder.txtLimitOver":"文字上方限制","PDFE.Views.DocumentHolder.txtLimitUnder":"文字下方限制","PDFE.Views.DocumentHolder.txtMatchBrackets":"括号与其内容的高度对齐","PDFE.Views.DocumentHolder.txtMatrixAlign":"矩阵对齐","PDFE.Views.DocumentHolder.txtNewPageAfter":"在后面插入空白页","PDFE.Views.DocumentHolder.txtNewPageBefore":"在前面插入空白页","PDFE.Views.DocumentHolder.txtOpacity":"不透明度","PDFE.Views.DocumentHolder.txtOverbar":"文本上划线","PDFE.Views.DocumentHolder.txtPastePage":"粘贴页面","PDFE.Views.DocumentHolder.txtPastePageAfter":"粘贴到后面","PDFE.Views.DocumentHolder.txtPastePageBefore":"粘贴到前面","PDFE.Views.DocumentHolder.txtPercentage":"百分比","PDFE.Views.DocumentHolder.txtPressLink":"按 {0} 并单击链接","PDFE.Views.DocumentHolder.txtPrintSelection":"打印所选内容","PDFE.Views.DocumentHolder.txtRemFractionBar":"删除分数栏","PDFE.Views.DocumentHolder.txtRemLimit":"取消限制","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"删除强调字符","PDFE.Views.DocumentHolder.txtRemoveBar":"删除栏","PDFE.Views.DocumentHolder.txtRemScripts":"删除脚本","PDFE.Views.DocumentHolder.txtRemSubscript":"删除下标","PDFE.Views.DocumentHolder.txtRemSuperscript":"删除上标","PDFE.Views.DocumentHolder.txtRotateLeft":"向左旋转","PDFE.Views.DocumentHolder.txtRotateRight":"向右旋转","PDFE.Views.DocumentHolder.txtScriptsAfter":"文字后的脚本","PDFE.Views.DocumentHolder.txtScriptsBefore":"文字前的脚本","PDFE.Views.DocumentHolder.txtSelectAll":"全选","PDFE.Views.DocumentHolder.txtShowBottomLimit":"显示底限","PDFE.Views.DocumentHolder.txtShowCloseBracket":"显示结束括号","PDFE.Views.DocumentHolder.txtShowDegree":"显示度数","PDFE.Views.DocumentHolder.txtShowOpenBracket":"显示开始括号","PDFE.Views.DocumentHolder.txtShowPlaceholder":"显示占位符","PDFE.Views.DocumentHolder.txtShowTopLimit":"显示上限","PDFE.Views.DocumentHolder.txtStretchBrackets":"延展括号","PDFE.Views.DocumentHolder.txtTop":"顶部","PDFE.Views.DocumentHolder.txtUnderbar":"文本下划线","PDFE.Views.DocumentHolder.txtUngroup":"取消组合","PDFE.Views.DocumentHolder.txtWarnUrl":"点击此链接可能会对您的设备和数据造成损害。为了保护您的计算机,请仅点击来自可信来源的链接。此位置可能不安全:

{0}

您确定要继续吗?","PDFE.Views.DocumentHolder.unicodeText":"统一码","PDFE.Views.DocumentHolder.vertAlignText":"垂直对齐","PDFE.Views.FileMenu.ariaFileMenu":"文件菜单","PDFE.Views.FileMenu.btnBackCaption":"打开文件所在位置","PDFE.Views.FileMenu.btnCloseEditor":"关闭文件","PDFE.Views.FileMenu.btnCloseMenuCaption":"返回","PDFE.Views.FileMenu.btnCreateNewCaption":"新建","PDFE.Views.FileMenu.btnDownloadCaption":"下载为","PDFE.Views.FileMenu.btnExitCaption":"关闭","PDFE.Views.FileMenu.btnFileOpenCaption":"打开","PDFE.Views.FileMenu.btnHelpCaption":"帮助","PDFE.Views.FileMenu.btnInfoCaption":"信息","PDFE.Views.FileMenu.btnPrintCaption":"打印","PDFE.Views.FileMenu.btnProtectCaption":"保护","PDFE.Views.FileMenu.btnRecentFilesCaption":"打开最近文件","PDFE.Views.FileMenu.btnRenameCaption":"重命名","PDFE.Views.FileMenu.btnReturnCaption":"返回文件","PDFE.Views.FileMenu.btnRightsCaption":"访问权限","PDFE.Views.FileMenu.btnSaveAsCaption":"另存为","PDFE.Views.FileMenu.btnSaveCaption":"保存","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"另存副本为","PDFE.Views.FileMenu.btnSettingsCaption":"高级设置","PDFE.Views.FileMenu.btnSuggestCaption":"提出功能建议","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"切换到移动模式","PDFE.Views.FileMenu.btnToEditCaption":"编辑文档","PDFE.Views.FileMenu.textDownload":"下载","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"空白文件","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"新建","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"应用","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"添加作者","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"添加文字","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"应用程序","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"作者","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"更改访问权限","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"批注","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"通用","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"已创建","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文档信息","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"快速Web视图","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"加载中…","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"上次修改者","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"上一次更改","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"不","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"创建者","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"页面","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"页面大小","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"段落","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF生成器","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"已标记的PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF版本","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"位置","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"拥有权限的人","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"字符 (包括空格)","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"统计","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"主题","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"字符","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"标签","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"标题","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"已上传","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"单词","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"是","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"访问权限","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"更改访问权限","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"拥有权限的人","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"密码保护","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"保护文档","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"签名保护","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"文档含有效签名
文档受到保护,不可编辑。","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"为确保文档的完整性可添加
隐形数字签名","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"编辑文档","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"编辑将删除文档中的签名
是否继续?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"此文件已使用密码保护。","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"使用密码加密此文档","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"此文件需要签名。","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"文档含有效签名。文档受到保护,不可编辑。","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"文件中的一些数字签名无效或无法验证。该文件受到保护,无法编辑。","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"查看签名","PDFE.Views.FileMenuPanels.Settings.okButtonText":"应用","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同編輯模式","PDFE.Views.FileMenuPanels.Settings.strFast":"快速","PDFE.Views.FileMenuPanels.Settings.strFontRender":"字体设置","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"键盘快捷键","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"RTL 界面 (文字从右到左)","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"实时协作变更","PDFE.Views.FileMenuPanels.Settings.strShowComments":"在文本中显示批注","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"显示来自其他用户的更改","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"显示已解决的批注","PDFE.Views.FileMenuPanels.Settings.strStrict":"严格","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"选项卡样式","PDFE.Views.FileMenuPanels.Settings.strTheme":"界面主题","PDFE.Views.FileMenuPanels.Settings.strUnit":"计量单位","PDFE.Views.FileMenuPanels.Settings.strZoom":"默认缩放值","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"保存自动恢复信息","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"自动保存","PDFE.Views.FileMenuPanels.Settings.textDisabled":"已禁用","PDFE.Views.FileMenuPanels.Settings.textFill":"填写","PDFE.Views.FileMenuPanels.Settings.textForceSave":"保存中间版本","PDFE.Views.FileMenuPanels.Settings.textLine":"线条","PDFE.Views.FileMenuPanels.Settings.textMinute":"每一分钟","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"高级设置","PDFE.Views.FileMenuPanels.Settings.txtAll":"查看全部","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"外观","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"默认缓存模式","PDFE.Views.FileMenuPanels.Settings.txtCm":"厘米","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"协作","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"自定义","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"自定义快速访问","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"启用文档深色模式","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"编辑并保存","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"实时共同编辑。所有更改都会自动保存","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"适合页面","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"调整至合适宽度","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"象形文字","PDFE.Views.FileMenuPanels.Settings.txtInch":"英寸","PDFE.Views.FileMenuPanels.Settings.txtLast":"最后查看","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"最后一次使用","PDFE.Views.FileMenuPanels.Settings.txtMac":"按照 OS X 样式","PDFE.Views.FileMenuPanels.Settings.txtNative":"本地","PDFE.Views.FileMenuPanels.Settings.txtNone":"无查看","PDFE.Views.FileMenuPanels.Settings.txtPt":"点","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"编辑器标题栏显示“快速打印”按钮","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"文档将打印到最近选择的打印机或者默认打印机","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"打开屏幕朗读器支持","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"使用“保存”按钮同步您和其他人所做的更改","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"使用工具栏颜色作为选项卡背景","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"按 Alt 键后可通过键盘在用户界面中导航","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"选择文本时使用迷你工具栏","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"用Option键使用键盘浏览用户界面","PDFE.Views.FileMenuPanels.Settings.txtWin":"按照 Windows 样式","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"工作区","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"自定义快速访问","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"下载为","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"另存副本为","PDFE.Views.FormatSettingsDialog.textAfter":"段后无间距","PDFE.Views.FormatSettingsDialog.textAfterSpace":"段后有间距","PDFE.Views.FormatSettingsDialog.textBefore":"段前无间距","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"段前有间距","PDFE.Views.FormatSettingsDialog.textCategory":"分类","PDFE.Views.FormatSettingsDialog.textDate":"日期","PDFE.Views.FormatSettingsDialog.textDecimal":"小数位数","PDFE.Views.FormatSettingsDialog.textFormat":"格式","PDFE.Views.FormatSettingsDialog.textLocation":"符号位置","PDFE.Views.FormatSettingsDialog.textMask":"任意掩模","PDFE.Views.FormatSettingsDialog.textNegative":"负数样式","PDFE.Views.FormatSettingsDialog.textNone":"无","PDFE.Views.FormatSettingsDialog.textNumber":"数值","PDFE.Views.FormatSettingsDialog.textParens":"显示括号","PDFE.Views.FormatSettingsDialog.textPercent":"百分比","PDFE.Views.FormatSettingsDialog.textPhone":"电话号码","PDFE.Views.FormatSettingsDialog.textRed":"使用红色文本","PDFE.Views.FormatSettingsDialog.textReg":"正则表达式","PDFE.Views.FormatSettingsDialog.textSeparator":"分隔符样式","PDFE.Views.FormatSettingsDialog.textSpecial":"特殊","PDFE.Views.FormatSettingsDialog.textSSN":"社会保障号码","PDFE.Views.FormatSettingsDialog.textSymbol":"货币符号","PDFE.Views.FormatSettingsDialog.textTime":"时间","PDFE.Views.FormatSettingsDialog.textTitle":"格式设置","PDFE.Views.FormatSettingsDialog.textZipCode":"邮政编码","PDFE.Views.FormatSettingsDialog.textZipCode4":"邮政编码 + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"自定义","PDFE.Views.FormatSettingsDialog.txtSample":"例:","PDFE.Views.FormSettings.textAdvanced":"显示高级设置","PDFE.Views.FormSettings.textAlways":"总是","PDFE.Views.FormSettings.textAnamorphic":"不按比例","PDFE.Views.FormSettings.textArabic":"阿拉伯语","PDFE.Views.FormSettings.textAutofit":"自动适应","PDFE.Views.FormSettings.textBackgroundColor":"背景颜色","PDFE.Views.FormSettings.textBehavior":"行为","PDFE.Views.FormSettings.textBeveled":"倾斜的","PDFE.Views.FormSettings.textBorder":"边框","PDFE.Views.FormSettings.textButton":"按钮","PDFE.Views.FormSettings.textChbStyle":"复选框样式","PDFE.Views.FormSettings.textCheck":"检查","PDFE.Views.FormSettings.textCheckbox":"复选框","PDFE.Views.FormSettings.textCheckDefault":"复选框默认选中","PDFE.Views.FormSettings.textCircle":"圆形","PDFE.Views.FormSettings.textClear":"清除","PDFE.Views.FormSettings.textColor":"颜色","PDFE.Views.FormSettings.textComb":"文字组合","PDFE.Views.FormSettings.textCombobox":"组合框","PDFE.Views.FormSettings.textCommit":"立即提交选定的值","PDFE.Views.FormSettings.textCross":"交叉","PDFE.Views.FormSettings.textCustomText":"允许自定义文本","PDFE.Views.FormSettings.textDashed":"虚线","PDFE.Views.FormSettings.textDate":"日期","PDFE.Views.FormSettings.textDateField":"日期和时间字段","PDFE.Views.FormSettings.textDiamond":"菱形","PDFE.Views.FormSettings.textDown":"下","PDFE.Views.FormSettings.textExport":"出口额","PDFE.Views.FormSettings.textField":"文本字段","PDFE.Views.FormSettings.textFitBounds":"适应边框","PDFE.Views.FormSettings.textFormat":"格式","PDFE.Views.FormSettings.textFromFile":"来自文件","PDFE.Views.FormSettings.textFromStorage":"来自存储设备","PDFE.Views.FormSettings.textFromUrl":"来自URL地址","PDFE.Views.FormSettings.textHindi":"印地语","PDFE.Views.FormSettings.textHover":"滚动","PDFE.Views.FormSettings.textHowScale":"尺寸","PDFE.Views.FormSettings.textIcon":"图标","PDFE.Views.FormSettings.textIconLeft":"图标位于左边,标签位于右边","PDFE.Views.FormSettings.textIconOnly":"仅图标","PDFE.Views.FormSettings.textIconTop":"图标位于顶部,标签位于底部","PDFE.Views.FormSettings.textImage":"图片","PDFE.Views.FormSettings.textInset":"插图","PDFE.Views.FormSettings.textInvert":"倒置","PDFE.Views.FormSettings.textLabel":"附加语","PDFE.Views.FormSettings.textLabelLeft":"标签位于左边,图标位于右边","PDFE.Views.FormSettings.textLabelTop":"标签位于顶部,图标位于底部","PDFE.Views.FormSettings.textLayout":"布局","PDFE.Views.FormSettings.textListBox":"列表框","PDFE.Views.FormSettings.textLock":"锁定","PDFE.Views.FormSettings.textMask":"任意掩模","PDFE.Views.FormSettings.textMaxChars":"字符限制","PDFE.Views.FormSettings.textMedium":"中","PDFE.Views.FormSettings.textMulti":"多行","PDFE.Views.FormSettings.textMultisel":"多项选择","PDFE.Views.FormSettings.textName":"名称","PDFE.Views.FormSettings.textNever":"从不","PDFE.Views.FormSettings.textNoBorder":"无边框","PDFE.Views.FormSettings.textNoFill":"无填充","PDFE.Views.FormSettings.textNone":"无","PDFE.Views.FormSettings.textNormal":"上","PDFE.Views.FormSettings.textNumber":"数值","PDFE.Views.FormSettings.textNumeral":"数字","PDFE.Views.FormSettings.textOrientation":"方向","PDFE.Views.FormSettings.textOutline":"大纲","PDFE.Views.FormSettings.textOverlay":"图标上方的标签","PDFE.Views.FormSettings.textPassword":"密码","PDFE.Views.FormSettings.textPercent":"百分比","PDFE.Views.FormSettings.textPhone":"电话号码","PDFE.Views.FormSettings.textPlaceholder":"占位符","PDFE.Views.FormSettings.textPlacement":"图标放置","PDFE.Views.FormSettings.textProportional":"按比例","PDFE.Views.FormSettings.textPush":"推动","PDFE.Views.FormSettings.textRadiobox":"单选按钮","PDFE.Views.FormSettings.textRadioChoice":"单选按钮选项","PDFE.Views.FormSettings.textRadioDefault":"按钮默认选中","PDFE.Views.FormSettings.textRadioStyle":"按钮样式","PDFE.Views.FormSettings.textReadonly":"只读","PDFE.Views.FormSettings.textReg":"正则表达式","PDFE.Views.FormSettings.textRequired":"必填","PDFE.Views.FormSettings.textScale":"何时缩放","PDFE.Views.FormSettings.textScroll":"滚动长文本","PDFE.Views.FormSettings.textSelect":"选择","PDFE.Views.FormSettings.textSolid":"实心","PDFE.Views.FormSettings.textSpecial":"特殊","PDFE.Views.FormSettings.textSquare":"方形","PDFE.Views.FormSettings.textSSN":"社会保障号码","PDFE.Views.FormSettings.textStar":"星","PDFE.Views.FormSettings.textState":"省/州","PDFE.Views.FormSettings.textStyle":"样式","PDFE.Views.FormSettings.textText":"文本","PDFE.Views.FormSettings.textTextOnly":"仅标签","PDFE.Views.FormSettings.textThick":"粗","PDFE.Views.FormSettings.textThickness":"粗度","PDFE.Views.FormSettings.textThin":"细","PDFE.Views.FormSettings.textTime":"时间","PDFE.Views.FormSettings.textTip":"提示","PDFE.Views.FormSettings.textTipAdd":"添加新值","PDFE.Views.FormSettings.textTipDelete":"删除值","PDFE.Views.FormSettings.textTipDown":"下移","PDFE.Views.FormSettings.textTipUp":"上移","PDFE.Views.FormSettings.textTooBig":"图片太大","PDFE.Views.FormSettings.textTooSmall":"图片太小","PDFE.Views.FormSettings.textUnderline":"下划线","PDFE.Views.FormSettings.textUnison":"具有相同名称和选项的按钮同时被选中","PDFE.Views.FormSettings.textUnlock":"解锁","PDFE.Views.FormSettings.textValue":"数值选项","PDFE.Views.FormSettings.textZipCode":"邮政编码","PDFE.Views.FormSettings.textZipCode4":"邮政编码 + 4","PDFE.Views.FormSettings.txtCustom":"自定义","PDFE.Views.FormsTab.capBtnCheckBox":"复选框","PDFE.Views.FormsTab.capBtnComboBox":"组合框","PDFE.Views.FormsTab.capBtnDropDown":"列表框","PDFE.Views.FormsTab.capBtnEmail":"电子邮件","PDFE.Views.FormsTab.capBtnImage":"图片","PDFE.Views.FormsTab.capBtnNext":"下一个字段","PDFE.Views.FormsTab.capBtnPhone":"电话号码","PDFE.Views.FormsTab.capBtnPrev":"上一个字段","PDFE.Views.FormsTab.capBtnRadioBox":"单选按钮","PDFE.Views.FormsTab.capBtnText":"文本字段","PDFE.Views.FormsTab.capCreditCard":"信用卡","PDFE.Views.FormsTab.capDateTime":"日期和时间","PDFE.Views.FormsTab.capZipCode":"邮政编码","PDFE.Views.FormsTab.textAnyone":"任何人","PDFE.Views.FormsTab.textClear":"清除字段","PDFE.Views.FormsTab.textClearFields":"清除所有字段","PDFE.Views.FormsTab.tipCheckBox":"插入复选框","PDFE.Views.FormsTab.tipComboBox":"插入组合框","PDFE.Views.FormsTab.tipCreditCard":"插入信用卡号","PDFE.Views.FormsTab.tipDateTime":"插入日期和时间","PDFE.Views.FormsTab.tipDropDown":"插入列表框","PDFE.Views.FormsTab.tipEmailField":"插入电子邮件地址","PDFE.Views.FormsTab.tipImageField":"插入图片","PDFE.Views.FormsTab.tipNextForm":"转到下一个字段","PDFE.Views.FormsTab.tipPhoneField":"插入电话号码","PDFE.Views.FormsTab.tipPrevForm":"转到上一个字段","PDFE.Views.FormsTab.tipRadioBox":"插入单选按钮","PDFE.Views.FormsTab.tipTextField":"插入文本字段","PDFE.Views.FormsTab.tipZipCode":"插入邮政编码","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"显示","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"链接到","PDFE.Views.HyperlinkSettingsDialog.textDefault":"所选文本片段","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"在这里输入标题","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"在这里输入链接","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"在这里输入工具提示","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"外部链接","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"本文档中的页面","PDFE.Views.HyperlinkSettingsDialog.textPages":"页面","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"选择文件","PDFE.Views.HyperlinkSettingsDialog.textTipText":"屏幕提示文字","PDFE.Views.HyperlinkSettingsDialog.textTitle":"链接设置","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"使用滚动条、鼠标和缩放功能选择目标视图,然后点击“设置链接”按钮创建链接目标。","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"创建前往查看","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"这是必填栏","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"第一页","PDFE.Views.HyperlinkSettingsDialog.txtLast":"最后一页","PDFE.Views.HyperlinkSettingsDialog.txtNext":"下一页","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"该字段应该为“http://www.example.com”格式的URL","PDFE.Views.HyperlinkSettingsDialog.txtPage":"页面","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"转到页面视图","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"上一页","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"设置链接","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"此字段限制为2083个字符","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"输入网址或选择文件","PDFE.Views.ImageSettings.strTransparency":"透明度","PDFE.Views.ImageSettings.textAdvanced":"显示高级设置","PDFE.Views.ImageSettings.textCrop":"裁剪","PDFE.Views.ImageSettings.textCropFill":"填充","PDFE.Views.ImageSettings.textCropFit":"适应","PDFE.Views.ImageSettings.textCropToShape":"裁剪成形状","PDFE.Views.ImageSettings.textEdit":"编辑","PDFE.Views.ImageSettings.textEditObject":"编辑对象","PDFE.Views.ImageSettings.textFitPage":"适合页面","PDFE.Views.ImageSettings.textFlip":"翻转","PDFE.Views.ImageSettings.textFromFile":"从文件导入","PDFE.Views.ImageSettings.textFromStorage":"来自存储设备","PDFE.Views.ImageSettings.textFromUrl":"来自URL","PDFE.Views.ImageSettings.textHeight":"\n高度","PDFE.Views.ImageSettings.textHint270":"逆时针旋转90°","PDFE.Views.ImageSettings.textHint90":"顺时针旋转90°","PDFE.Views.ImageSettings.textHintFlipH":"水平翻转","PDFE.Views.ImageSettings.textHintFlipV":"垂直翻转","PDFE.Views.ImageSettings.textInsert":"替换图片","PDFE.Views.ImageSettings.textOriginalSize":"实际大小","PDFE.Views.ImageSettings.textRecentlyUsed":"最近使用的","PDFE.Views.ImageSettings.textResetCrop":"重置裁剪","PDFE.Views.ImageSettings.textRotate90":"旋转90°","PDFE.Views.ImageSettings.textRotation":"旋转","PDFE.Views.ImageSettings.textSize":"大小","PDFE.Views.ImageSettings.textWidth":"宽度","PDFE.Views.ImageSettingsAdvanced.textAlt":"替代文本","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"描述","PDFE.Views.ImageSettingsAdvanced.textAltTip":"视觉对象信息的另一种基于文本的表示方式,将读取给视力或认知障碍的人,以帮助他们更好地理解图像、形状、图表或表格中的信息。","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"标题","PDFE.Views.ImageSettingsAdvanced.textAngle":"角度","PDFE.Views.ImageSettingsAdvanced.textCenter":"居中","PDFE.Views.ImageSettingsAdvanced.textFlipped":"已翻转的","PDFE.Views.ImageSettingsAdvanced.textFrom":"来自","PDFE.Views.ImageSettingsAdvanced.textGeneral":"常规","PDFE.Views.ImageSettingsAdvanced.textHeight":"\n高度","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"水平的","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"水平地","PDFE.Views.ImageSettingsAdvanced.textImageName":"图片名称","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"不变比例","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"实际大小","PDFE.Views.ImageSettingsAdvanced.textPlacement":"放置","PDFE.Views.ImageSettingsAdvanced.textPosition":"位置","PDFE.Views.ImageSettingsAdvanced.textRotation":"旋转","PDFE.Views.ImageSettingsAdvanced.textSize":"大小","PDFE.Views.ImageSettingsAdvanced.textTitle":"图片 - 高级设置","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"左上角","PDFE.Views.ImageSettingsAdvanced.textVertical":"垂直","PDFE.Views.ImageSettingsAdvanced.textVertically":"垂直地","PDFE.Views.ImageSettingsAdvanced.textWidth":"宽度","PDFE.Views.InsTab.capBlankPage":"空白页","PDFE.Views.InsTab.capBtnDateTime":"日期和时间","PDFE.Views.InsTab.capBtnInsHeaderFooter":"页眉和页脚","PDFE.Views.InsTab.capBtnInsSmartArt":"智能图形","PDFE.Views.InsTab.capBtnInsSymbol":"符号","PDFE.Views.InsTab.capBtnPageNum":"页码","PDFE.Views.InsTab.capInsertChart":"图表","PDFE.Views.InsTab.capInsertEquation":"方程式","PDFE.Views.InsTab.capInsertHyperlink":"链接","PDFE.Views.InsTab.capInsertImage":"图片","PDFE.Views.InsTab.capInsertShape":"形状","PDFE.Views.InsTab.capInsertTable":"表格","PDFE.Views.InsTab.capInsertText":"文本框","PDFE.Views.InsTab.capInsertTextArt":"艺术字","PDFE.Views.InsTab.capInsPage":"插入页面","PDFE.Views.InsTab.mniCustomTable":"插入自定义表格","PDFE.Views.InsTab.mniImageFromFile":"来自文件的图片","PDFE.Views.InsTab.mniImageFromStorage":"存储设备中的图片","PDFE.Views.InsTab.mniImageFromUrl":"图片来自网络","PDFE.Views.InsTab.mniInsertSSE":"插入电子表格","PDFE.Views.InsTab.textAlpha":"希腊文小字母阿尔法","PDFE.Views.InsTab.textBetta":"希腊文小字母贝塔","PDFE.Views.InsTab.textBlackHeart":"黑心套装","PDFE.Views.InsTab.textBullet":"项目符号","PDFE.Views.InsTab.textCopyright":"版权符号","PDFE.Views.InsTab.textDegree":"度数符号","PDFE.Views.InsTab.textDelta":"希腊文小字母得尔塔","PDFE.Views.InsTab.textDivision":"除号","PDFE.Views.InsTab.textDollar":"美元符号","PDFE.Views.InsTab.textEuro":"欧元符号","PDFE.Views.InsTab.textGreaterEqual":"大于或等于","PDFE.Views.InsTab.textInfinity":"无限","PDFE.Views.InsTab.textLessEqual":"小于或等于","PDFE.Views.InsTab.textLetterPi":"希腊文小字母 Pi","PDFE.Views.InsTab.textMoreSymbols":"更多符号","PDFE.Views.InsTab.textNotEqualTo":"不等于","PDFE.Views.InsTab.textOneHalf":"普通分数一半","PDFE.Views.InsTab.textOneQuarter":"普通分数四分之一","PDFE.Views.InsTab.textPlusMinus":"正负号","PDFE.Views.InsTab.textRecentlyUsed":"最近使用的","PDFE.Views.InsTab.textRegistered":"注册标志","PDFE.Views.InsTab.textSection":"章节标志","PDFE.Views.InsTab.textSmile":"白色笑脸","PDFE.Views.InsTab.textSquareRoot":"平方根","PDFE.Views.InsTab.textTilde":"波浪号","PDFE.Views.InsTab.textTradeMark":"商标标志","PDFE.Views.InsTab.textYen":"日元符号","PDFE.Views.InsTab.tipChangeChart":"更改图表类型","PDFE.Views.InsTab.tipDateTime":"插入当前日期和时间","PDFE.Views.InsTab.tipEditHeaderFooter":"编辑页眉或页脚","PDFE.Views.InsTab.tipInsertChart":"插入图表","PDFE.Views.InsTab.tipInsertEquation":"插入方程","PDFE.Views.InsTab.tipInsertHorizontalText":"插入水平文本框","PDFE.Views.InsTab.tipInsertHyperlink":"添加链接","PDFE.Views.InsTab.tipInsertImage":"插入图片","PDFE.Views.InsTab.tipInsertPage":"插入空白页","PDFE.Views.InsTab.tipInsertPageAfter":"在后面插入空白页","PDFE.Views.InsTab.tipInsertShape":"插入形状","PDFE.Views.InsTab.tipInsertSmartArt":"插入智能图形","PDFE.Views.InsTab.tipInsertSymbol":"插入符号","PDFE.Views.InsTab.tipInsertTable":"插入表格","PDFE.Views.InsTab.tipInsertText":"插入文本框","PDFE.Views.InsTab.tipInsertTextArt":"插入艺术字","PDFE.Views.InsTab.tipInsertVerticalText":"插入垂直文本框","PDFE.Views.InsTab.tipPageNum":"插入页码","PDFE.Views.InsTab.txtNewPageAfter":"在后面插入空白页","PDFE.Views.InsTab.txtNewPageBefore":"在前面插入空白页","PDFE.Views.LeftMenu.ariaLeftMenu":"左侧菜单","PDFE.Views.LeftMenu.tipAbout":"关于","PDFE.Views.LeftMenu.tipChat":"聊天","PDFE.Views.LeftMenu.tipComments":"批注","PDFE.Views.LeftMenu.tipNavigation":"导航","PDFE.Views.LeftMenu.tipOutline":"标题","PDFE.Views.LeftMenu.tipPageThumbnails":"页面缩略图","PDFE.Views.LeftMenu.tipPlugins":"插件","PDFE.Views.LeftMenu.tipSearch":"查找","PDFE.Views.LeftMenu.tipSupport":"反馈和支持","PDFE.Views.LeftMenu.tipTitles":"标题","PDFE.Views.LeftMenu.txtDeveloper":"开发者模式","PDFE.Views.LeftMenu.txtEditor":"PDF编辑器","PDFE.Views.LeftMenu.txtLimit":"限制访问","PDFE.Views.LeftMenu.txtTrial":"试用模式","PDFE.Views.LeftMenu.txtTrialDev":"试用开发者模式","PDFE.Views.Navigation.strNavigate":"标题","PDFE.Views.Navigation.txtClosePanel":"关闭标题","PDFE.Views.Navigation.txtCollapse":"折叠全部","PDFE.Views.Navigation.txtEmptyItem":"空标题","PDFE.Views.Navigation.txtEmptyViewer":"文档中没有标题。","PDFE.Views.Navigation.txtExpand":"展开全部","PDFE.Views.Navigation.txtExpandToLevel":"展开到级别","PDFE.Views.Navigation.txtFontSize":"字体大小","PDFE.Views.Navigation.txtLarge":"大","PDFE.Views.Navigation.txtMedium":"中等","PDFE.Views.Navigation.txtSettings":"标题设置","PDFE.Views.Navigation.txtSmall":"小","PDFE.Views.Navigation.txtWrapHeadings":"换行长标题","PDFE.Views.PageThumbnails.textClosePanel":"关闭页面缩略图","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"高亮显示页面的可见部分","PDFE.Views.PageThumbnails.textPageThumbnails":"页面缩略图","PDFE.Views.PageThumbnails.textThumbnailsSettings":"缩略图设置","PDFE.Views.PageThumbnails.textThumbnailsSize":"缩略图设置大小","PDFE.Views.ParagraphSettings.strLineHeight":"行间距","PDFE.Views.ParagraphSettings.strParagraphSpacing":"段落间距","PDFE.Views.ParagraphSettings.strSpacingAfter":"后","PDFE.Views.ParagraphSettings.strSpacingBefore":"之前","PDFE.Views.ParagraphSettings.textAdvanced":"显示高级设置","PDFE.Views.ParagraphSettings.textAt":"在","PDFE.Views.ParagraphSettings.textAtLeast":"最小值","PDFE.Views.ParagraphSettings.textAuto":"多个","PDFE.Views.ParagraphSettings.textExact":"固定值","PDFE.Views.ParagraphSettings.txtAutoText":"自动","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"指定的选项卡将显示在此字段中","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"全部大写","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"方向","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"双删除线","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"缩进","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"行间距","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"右","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"后","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"之前","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"特殊","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"字体 ","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"缩进和间距","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型大写字母","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"间距","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"删除线","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"下标","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"上标","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"标签","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"对齐","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"多个","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"字符间距","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"默认选项卡","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"从左到右","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"从右到左","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"效果","PDFE.Views.ParagraphSettingsAdvanced.textExact":"固定值","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"第一行","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"悬挂","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"两端对齐","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(无)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"删除","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"删除所有","PDFE.Views.ParagraphSettingsAdvanced.textSet":"指定","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"居中","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"标签的位置","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"右","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 高级设置","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"自动","PDFE.Views.PrintWithPreview.textMarginsLast":"上次自定义","PDFE.Views.PrintWithPreview.textMarginsModerate":"中等","PDFE.Views.PrintWithPreview.textMarginsNarrow":"缩小","PDFE.Views.PrintWithPreview.textMarginsNormal":"常规","PDFE.Views.PrintWithPreview.textMarginsWide":"宽","PDFE.Views.PrintWithPreview.txtAllPages":"所有页面","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"黑白打印","PDFE.Views.PrintWithPreview.txtBothSides":"双面打印","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"长边翻页","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"短边翻页","PDFE.Views.PrintWithPreview.txtBottom":"下","PDFE.Views.PrintWithPreview.txtColorPrinting":"彩色打印","PDFE.Views.PrintWithPreview.txtCopies":"副本","PDFE.Views.PrintWithPreview.txtCurrentPage":"当前页面","PDFE.Views.PrintWithPreview.txtCustom":"自定义","PDFE.Views.PrintWithPreview.txtCustomPages":"自定义打印","PDFE.Views.PrintWithPreview.txtLandscape":"横向","PDFE.Views.PrintWithPreview.txtLeft":"左","PDFE.Views.PrintWithPreview.txtMargins":"边距","PDFE.Views.PrintWithPreview.txtOf":"共 {0} 页","PDFE.Views.PrintWithPreview.txtOneSide":"单面打印","PDFE.Views.PrintWithPreview.txtOneSideDesc":"仅在页面的一侧打印","PDFE.Views.PrintWithPreview.txtPage":"页面","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"页码无效","PDFE.Views.PrintWithPreview.txtPageOrientation":"页面方向","PDFE.Views.PrintWithPreview.txtPages":"页面","PDFE.Views.PrintWithPreview.txtPageSize":"页面大小","PDFE.Views.PrintWithPreview.txtPortrait":"纵向","PDFE.Views.PrintWithPreview.txtPrint":"打印","PDFE.Views.PrintWithPreview.txtPrinter":"打印机","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"未选择打印机","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"未找到打印机","PDFE.Views.PrintWithPreview.txtPrintPdf":"打印为 PDF","PDFE.Views.PrintWithPreview.txtPrintRange":"打印范围","PDFE.Views.PrintWithPreview.txtPrintSides":"打印面","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"使用系统对话框打印","PDFE.Views.PrintWithPreview.txtRight":"右","PDFE.Views.PrintWithPreview.txtSelection":"选择","PDFE.Views.PrintWithPreview.txtTop":"顶部","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"正在等待打印机","PDFE.Views.RedactTab.capApplyRedactions":"应用密文","PDFE.Views.RedactTab.capFindRedact":"查找密文","PDFE.Views.RedactTab.capMarkRedact":"标记密文","PDFE.Views.RedactTab.capRedactPages":"页面密文","PDFE.Views.RedactTab.tipApplyRedactions":"应用密文","PDFE.Views.RedactTab.tipFindRedact":"查找并标记密文","PDFE.Views.RedactTab.tipMarkForRedact":"标记密文","PDFE.Views.RedactTab.tipRedactPages":"标记页面为密文","PDFE.Views.RedactTab.txtMarkCurrentPage":"标记当前页","PDFE.Views.RedactTab.txtSelectRange":"选择范围","PDFE.Views.RightMenu.ariaRightMenu":"右侧菜单","PDFE.Views.RightMenu.txtChartSettings":"图表设置","PDFE.Views.RightMenu.txtFormSettings":"表单设置","PDFE.Views.RightMenu.txtImageSettings":"图像设置","PDFE.Views.RightMenu.txtParagraphSettings":"段落设置","PDFE.Views.RightMenu.txtShapeSettings":"形状设置","PDFE.Views.RightMenu.txtTableSettings":"表格设置","PDFE.Views.RightMenu.txtTextArtSettings":"艺术字设置","PDFE.Views.ShapeSettings.strBackground":"背景颜色","PDFE.Views.ShapeSettings.strChange":"更改形状","PDFE.Views.ShapeSettings.strColor":"颜色","PDFE.Views.ShapeSettings.strFill":"填充","PDFE.Views.ShapeSettings.strForeground":"前景颜色","PDFE.Views.ShapeSettings.strPattern":"图案","PDFE.Views.ShapeSettings.strShadow":"显示阴影","PDFE.Views.ShapeSettings.strSize":"粗细","PDFE.Views.ShapeSettings.strStroke":"线条","PDFE.Views.ShapeSettings.strTransparency":"不透明度","PDFE.Views.ShapeSettings.strType":"类型","PDFE.Views.ShapeSettings.textAdjustShadow":"调整阴影","PDFE.Views.ShapeSettings.textAdvanced":"显示高级设置","PDFE.Views.ShapeSettings.textAngle":"角度","PDFE.Views.ShapeSettings.textBorderSizeErr":"输入的值不正确。
请输入介于0 pt和1584 pt之间的值。","PDFE.Views.ShapeSettings.textColor":"颜色填充","PDFE.Views.ShapeSettings.textDirection":"方向","PDFE.Views.ShapeSettings.textEditPoints":"编辑点","PDFE.Views.ShapeSettings.textEditShape":"编辑形状","PDFE.Views.ShapeSettings.textEmptyPattern":"无图案","PDFE.Views.ShapeSettings.textEyedropper":"拾色器","PDFE.Views.ShapeSettings.textFlip":"翻转","PDFE.Views.ShapeSettings.textFromFile":"从文件导入","PDFE.Views.ShapeSettings.textFromStorage":"来自存储设备","PDFE.Views.ShapeSettings.textFromUrl":"来自URL","PDFE.Views.ShapeSettings.textGradient":"渐变点","PDFE.Views.ShapeSettings.textGradientFill":"渐变填充","PDFE.Views.ShapeSettings.textHint270":"逆时针旋转90°","PDFE.Views.ShapeSettings.textHint90":"顺时针旋转90°","PDFE.Views.ShapeSettings.textHintFlipH":"水平翻转","PDFE.Views.ShapeSettings.textHintFlipV":"垂直翻转","PDFE.Views.ShapeSettings.textImageTexture":"图片或纹理","PDFE.Views.ShapeSettings.textLinear":"线性","PDFE.Views.ShapeSettings.textMoreColors":"更多颜色","PDFE.Views.ShapeSettings.textNoFill":"无填充","PDFE.Views.ShapeSettings.textNoShadow":"无阴影","PDFE.Views.ShapeSettings.textPatternFill":"图案","PDFE.Views.ShapeSettings.textPosition":"位置","PDFE.Views.ShapeSettings.textRadial":"放射状","PDFE.Views.ShapeSettings.textRecentlyUsed":"最近使用的","PDFE.Views.ShapeSettings.textRotate90":"旋转90°","PDFE.Views.ShapeSettings.textRotation":"旋转","PDFE.Views.ShapeSettings.textSelectImage":"选择图片","PDFE.Views.ShapeSettings.textSelectTexture":"选择","PDFE.Views.ShapeSettings.textShadow":"阴影","PDFE.Views.ShapeSettings.textStretch":"延伸","PDFE.Views.ShapeSettings.textStyle":"样式","PDFE.Views.ShapeSettings.textTexture":"来自纹理","PDFE.Views.ShapeSettings.textTile":"Tile","PDFE.Views.ShapeSettings.tipAddGradientPoint":"添加渐变点","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"删除渐变点","PDFE.Views.ShapeSettings.txtBrownPaper":"牛皮纸","PDFE.Views.ShapeSettings.txtCanvas":"画布","PDFE.Views.ShapeSettings.txtCarton":"纸盒","PDFE.Views.ShapeSettings.txtDarkFabric":"深色面料","PDFE.Views.ShapeSettings.txtGrain":"颗粒","PDFE.Views.ShapeSettings.txtGranite":"花岗岩","PDFE.Views.ShapeSettings.txtGreyPaper":"灰色纸张","PDFE.Views.ShapeSettings.txtKnit":"编织","PDFE.Views.ShapeSettings.txtLeather":"皮革","PDFE.Views.ShapeSettings.txtNoBorders":"无线条","PDFE.Views.ShapeSettings.txtOffsetBottom":"偏移:下","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"偏移:左下","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"偏移:右下","PDFE.Views.ShapeSettings.txtOffsetCenter":"偏移:中心","PDFE.Views.ShapeSettings.txtOffsetLeft":"偏移:左","PDFE.Views.ShapeSettings.txtOffsetRight":"偏移:右","PDFE.Views.ShapeSettings.txtOffsetTop":"偏移:上","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"偏移:左上","PDFE.Views.ShapeSettings.txtOffsetTopRight":"偏移:右上","PDFE.Views.ShapeSettings.txtPapyrus":"纸莎草","PDFE.Views.ShapeSettings.txtWood":"木头","PDFE.Views.ShapeSettingsAdvanced.strColumns":"列","PDFE.Views.ShapeSettingsAdvanced.strMargins":"文字填充","PDFE.Views.ShapeSettingsAdvanced.textAlt":"替代文本","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"描述","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"视觉对象信息的另一种基于文本的表示方式,将读取给视力或认知障碍的人,以帮助他们更好地理解图像、形状、图表或表格中的信息。","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"标题","PDFE.Views.ShapeSettingsAdvanced.textAngle":"角度","PDFE.Views.ShapeSettingsAdvanced.textArrows":"箭头","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"自动适应","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"初始大小","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"初始样式","PDFE.Views.ShapeSettingsAdvanced.textBevel":"斜角","PDFE.Views.ShapeSettingsAdvanced.textBottom":"底部","PDFE.Views.ShapeSettingsAdvanced.textCapType":"大写字母样式","PDFE.Views.ShapeSettingsAdvanced.textCenter":"居中","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"列数","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"末端尺寸","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"末端样式","PDFE.Views.ShapeSettingsAdvanced.textFlat":"平面","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"已翻转的","PDFE.Views.ShapeSettingsAdvanced.textFrom":"来自","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"常规","PDFE.Views.ShapeSettingsAdvanced.textHeight":"\n高度","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"水平的","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"水平地","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"加入类型","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"不变比例","PDFE.Views.ShapeSettingsAdvanced.textLeft":"左","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"线型","PDFE.Views.ShapeSettingsAdvanced.textMiter":"斜接角","PDFE.Views.ShapeSettingsAdvanced.textNofit":"不自动调整","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"放置","PDFE.Views.ShapeSettingsAdvanced.textPosition":"位置","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"调整形状大小以适应文本","PDFE.Views.ShapeSettingsAdvanced.textRight":"右","PDFE.Views.ShapeSettingsAdvanced.textRotation":"旋转","PDFE.Views.ShapeSettingsAdvanced.textRound":"圆","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"形状名称","PDFE.Views.ShapeSettingsAdvanced.textShrink":"溢出时缩小文本","PDFE.Views.ShapeSettingsAdvanced.textSize":"大小","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"列之间的间距","PDFE.Views.ShapeSettingsAdvanced.textSquare":"方形","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"文本框","PDFE.Views.ShapeSettingsAdvanced.textTitle":"形状 - 高级设置","PDFE.Views.ShapeSettingsAdvanced.textTop":"顶部","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"左上角","PDFE.Views.ShapeSettingsAdvanced.textVertical":"垂直","PDFE.Views.ShapeSettingsAdvanced.textVertically":"垂直地","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"重量和箭头","PDFE.Views.ShapeSettingsAdvanced.textWidth":"宽度","PDFE.Views.ShapeSettingsAdvanced.txtNone":"无","PDFE.Views.Statusbar.goToPageText":"转到页面","PDFE.Views.Statusbar.pageIndexText":"第{0}页共{1}页","PDFE.Views.Statusbar.tipFitPage":"适合页面","PDFE.Views.Statusbar.tipFitWidth":"调整至合适宽度","PDFE.Views.Statusbar.tipHandTool":"手动工具","PDFE.Views.Statusbar.tipPageNext":"跳转到下一页","PDFE.Views.Statusbar.tipPagePrev":"跳转到上一页","PDFE.Views.Statusbar.tipSelectTool":"选择工具","PDFE.Views.Statusbar.tipZoomFactor":"缩放","PDFE.Views.Statusbar.tipZoomIn":"放大","PDFE.Views.Statusbar.tipZoomOut":"缩小","PDFE.Views.Statusbar.txtPageNumInvalid":"页码无效","PDFE.Views.TableSettings.deleteColumnText":"删除列","PDFE.Views.TableSettings.deleteRowText":"删除行","PDFE.Views.TableSettings.deleteTableText":"删除表格","PDFE.Views.TableSettings.insertColumnLeftText":"在左侧插入列","PDFE.Views.TableSettings.insertColumnRightText":"向右侧插入列","PDFE.Views.TableSettings.insertRowAboveText":"在上方插入行","PDFE.Views.TableSettings.insertRowBelowText":"在下方插入行","PDFE.Views.TableSettings.mergeCellsText":"合并单元格","PDFE.Views.TableSettings.selectCellText":"选择单元格","PDFE.Views.TableSettings.selectColumnText":"选择列","PDFE.Views.TableSettings.selectRowText":"选择行","PDFE.Views.TableSettings.selectTableText":"选择表格","PDFE.Views.TableSettings.splitCellsText":"拆分单元格","PDFE.Views.TableSettings.splitCellTitleText":"拆分单元格","PDFE.Views.TableSettings.textAdvanced":"显示高级设置","PDFE.Views.TableSettings.textBackColor":"背景颜色","PDFE.Views.TableSettings.textBanded":"带状","PDFE.Views.TableSettings.textBorderColor":"颜色","PDFE.Views.TableSettings.textBorders":"边框样式","PDFE.Views.TableSettings.textCellSize":"单元格大小","PDFE.Views.TableSettings.textColumns":"列","PDFE.Views.TableSettings.textDistributeCols":"分布列","PDFE.Views.TableSettings.textDistributeRows":"分布行","PDFE.Views.TableSettings.textEdit":"行和列","PDFE.Views.TableSettings.textEmptyTemplate":"无模板","PDFE.Views.TableSettings.textFirst":"第一","PDFE.Views.TableSettings.textHeader":"标题","PDFE.Views.TableSettings.textHeight":"\n高度","PDFE.Views.TableSettings.textLast":"最后","PDFE.Views.TableSettings.textRows":"行","PDFE.Views.TableSettings.textSelectBorders":"选择要更改并应用样式的边框","PDFE.Views.TableSettings.textTemplate":"从模板中选择","PDFE.Views.TableSettings.textTotal":"总数","PDFE.Views.TableSettings.textWidth":"宽度","PDFE.Views.TableSettings.tipAll":"设置外边框和所有内框线","PDFE.Views.TableSettings.tipBottom":"仅设置外底边框","PDFE.Views.TableSettings.tipInner":"仅设定内部框线","PDFE.Views.TableSettings.tipInnerHor":"仅设置水平内框线","PDFE.Views.TableSettings.tipInnerVert":"仅设置垂直内线","PDFE.Views.TableSettings.tipLeft":"仅设置外部左边框","PDFE.Views.TableSettings.tipNone":"设置无边框","PDFE.Views.TableSettings.tipOuter":"仅设定外部边框","PDFE.Views.TableSettings.tipRight":"仅设置右外边框","PDFE.Views.TableSettings.tipTop":"仅设定外部顶框线","PDFE.Views.TableSettings.txtGroupTable_Custom":"自定义","PDFE.Views.TableSettings.txtGroupTable_Dark":"深色","PDFE.Views.TableSettings.txtGroupTable_Light":"浅色","PDFE.Views.TableSettings.txtGroupTable_Medium":"中等","PDFE.Views.TableSettings.txtGroupTable_Optimal":"最佳匹配文件","PDFE.Views.TableSettings.txtNoBorders":"无边框","PDFE.Views.TableSettings.txtTable_Accent":"重点色","PDFE.Views.TableSettings.txtTable_DarkStyle":"深色风格","PDFE.Views.TableSettings.txtTable_LightStyle":"浅色风格","PDFE.Views.TableSettings.txtTable_MediumStyle":"中等样式","PDFE.Views.TableSettings.txtTable_NoGrid":"无网格线","PDFE.Views.TableSettings.txtTable_NoStyle":"无风格","PDFE.Views.TableSettings.txtTable_TableGrid":"表格网格","PDFE.Views.TableSettings.txtTable_ThemedStyle":"主题样式","PDFE.Views.TableSettingsAdvanced.textAlt":"替代文本","PDFE.Views.TableSettingsAdvanced.textAltDescription":"描述","PDFE.Views.TableSettingsAdvanced.textAltTip":"视觉对象信息的另一种基于文本的表示方式,将读取给视力或认知障碍的人,以帮助他们更好地理解图像、形状、图表或表格中的信息。","PDFE.Views.TableSettingsAdvanced.textAltTitle":"标题","PDFE.Views.TableSettingsAdvanced.textBottom":"底部","PDFE.Views.TableSettingsAdvanced.textCenter":"居中","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"使用默认页边距","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"默认边距","PDFE.Views.TableSettingsAdvanced.textFrom":"来自","PDFE.Views.TableSettingsAdvanced.textGeneral":"常规","PDFE.Views.TableSettingsAdvanced.textHeight":"\n高度","PDFE.Views.TableSettingsAdvanced.textHorizontal":"水平的","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"不变比例","PDFE.Views.TableSettingsAdvanced.textLeft":"左","PDFE.Views.TableSettingsAdvanced.textMargins":"单元格边距","PDFE.Views.TableSettingsAdvanced.textPlacement":"放置","PDFE.Views.TableSettingsAdvanced.textPosition":"位置","PDFE.Views.TableSettingsAdvanced.textRight":"右","PDFE.Views.TableSettingsAdvanced.textSize":"大小","PDFE.Views.TableSettingsAdvanced.textTableName":"表格名称","PDFE.Views.TableSettingsAdvanced.textTitle":"表格-高级设置","PDFE.Views.TableSettingsAdvanced.textTop":"顶部","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"左上角","PDFE.Views.TableSettingsAdvanced.textVertical":"垂直","PDFE.Views.TableSettingsAdvanced.textWidth":"宽度","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"边距","PDFE.Views.TextArtSettings.strBackground":"背景颜色","PDFE.Views.TextArtSettings.strColor":"颜色","PDFE.Views.TextArtSettings.strFill":"填充","PDFE.Views.TextArtSettings.strForeground":"前景颜色","PDFE.Views.TextArtSettings.strPattern":"图案","PDFE.Views.TextArtSettings.strSize":"粗细","PDFE.Views.TextArtSettings.strStroke":"线条","PDFE.Views.TextArtSettings.strTransparency":"不透明度","PDFE.Views.TextArtSettings.strType":"类型","PDFE.Views.TextArtSettings.textAngle":"角度","PDFE.Views.TextArtSettings.textBorderSizeErr":"输入的值不正确。
请输入介于0 pt和1584 pt之间的值。","PDFE.Views.TextArtSettings.textColor":"颜色填充","PDFE.Views.TextArtSettings.textDirection":"方向","PDFE.Views.TextArtSettings.textEmptyPattern":"无图案","PDFE.Views.TextArtSettings.textFromFile":"从文件导入","PDFE.Views.TextArtSettings.textFromUrl":"来自URL","PDFE.Views.TextArtSettings.textGradient":"渐变点","PDFE.Views.TextArtSettings.textGradientFill":"渐变填充","PDFE.Views.TextArtSettings.textImageTexture":"图片或纹理","PDFE.Views.TextArtSettings.textLinear":"线性","PDFE.Views.TextArtSettings.textNoFill":"无填充","PDFE.Views.TextArtSettings.textPatternFill":"图案","PDFE.Views.TextArtSettings.textPosition":"位置","PDFE.Views.TextArtSettings.textRadial":"放射状","PDFE.Views.TextArtSettings.textSelectTexture":"选择","PDFE.Views.TextArtSettings.textStretch":"延伸","PDFE.Views.TextArtSettings.textStyle":"样式","PDFE.Views.TextArtSettings.textTemplate":"模板","PDFE.Views.TextArtSettings.textTexture":"来自纹理","PDFE.Views.TextArtSettings.textTile":"Tile","PDFE.Views.TextArtSettings.textTransform":"转换","PDFE.Views.TextArtSettings.tipAddGradientPoint":"添加渐变点","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"删除渐变点","PDFE.Views.TextArtSettings.txtBrownPaper":"牛皮纸","PDFE.Views.TextArtSettings.txtCanvas":"画布","PDFE.Views.TextArtSettings.txtCarton":"纸盒","PDFE.Views.TextArtSettings.txtDarkFabric":"深色面料","PDFE.Views.TextArtSettings.txtGrain":"颗粒","PDFE.Views.TextArtSettings.txtGranite":"花岗岩","PDFE.Views.TextArtSettings.txtGreyPaper":"灰色纸张","PDFE.Views.TextArtSettings.txtKnit":"编织","PDFE.Views.TextArtSettings.txtLeather":"皮革","PDFE.Views.TextArtSettings.txtNoBorders":"无线条","PDFE.Views.TextArtSettings.txtPapyrus":"纸莎草","PDFE.Views.TextArtSettings.txtWood":"木头","PDFE.Views.Toolbar.capBtnAddComment":"添加批注","PDFE.Views.Toolbar.capBtnArrowComment":"箭头","PDFE.Views.Toolbar.capBtnCircleComment":"圆形","PDFE.Views.Toolbar.capBtnComment":"批注","PDFE.Views.Toolbar.capBtnDelPage":"删除页面","PDFE.Views.Toolbar.capBtnDownloadForm":"下载为 PDF","PDFE.Views.Toolbar.capBtnEditText":"编辑文本","PDFE.Views.Toolbar.capBtnHand":"手","PDFE.Views.Toolbar.capBtnNext":"下一个字段","PDFE.Views.Toolbar.capBtnPolyLineComment":"连接线","PDFE.Views.Toolbar.capBtnPrev":"上一个字段","PDFE.Views.Toolbar.capBtnRecognize":"编辑文本","PDFE.Views.Toolbar.capBtnRectComment":"矩形","PDFE.Views.Toolbar.capBtnRotate":"旋转","PDFE.Views.Toolbar.capBtnRotatePage":"旋转页面","PDFE.Views.Toolbar.capBtnSaveForm":"另存为 PDF","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"另存为...","PDFE.Views.Toolbar.capBtnSelect":"请选择","PDFE.Views.Toolbar.capBtnShowComments":"显示批注","PDFE.Views.Toolbar.capBtnStamp":"图章","PDFE.Views.Toolbar.capBtnSubmit":"提交","PDFE.Views.Toolbar.capBtnTextCallout":"文本标注","PDFE.Views.Toolbar.capBtnTextComment":"文本批注","PDFE.Views.Toolbar.mniCapitalizeWords":"每个单词首字母大写","PDFE.Views.Toolbar.mniInsertSSE":"插入电子表格","PDFE.Views.Toolbar.mniLowerCase":"小写","PDFE.Views.Toolbar.mniSentenceCase":"句首字母大写","PDFE.Views.Toolbar.mniToggleCase":"切换大小写","PDFE.Views.Toolbar.mniUpperCase":"大写","PDFE.Views.Toolbar.strMenuNoFill":"无填充","PDFE.Views.Toolbar.textAlignBottom":"将文本对齐到底部","PDFE.Views.Toolbar.textAlignCenter":"文字居中","PDFE.Views.Toolbar.textAlignJust":"两端对齐","PDFE.Views.Toolbar.textAlignLeft":"左对齐文本","PDFE.Views.Toolbar.textAlignMiddle":"文字居中对齐","PDFE.Views.Toolbar.textAlignRight":"右对齐文本","PDFE.Views.Toolbar.textAlignTop":"将文本对齐到顶部","PDFE.Views.Toolbar.textArrangeBack":"置于底层","PDFE.Views.Toolbar.textArrangeBackward":"下移一层","PDFE.Views.Toolbar.textArrangeForward":"向前移动","PDFE.Views.Toolbar.textArrangeFront":"放到最上面","PDFE.Views.Toolbar.textBold":"加粗","PDFE.Views.Toolbar.textClear":"清除字段","PDFE.Views.Toolbar.textClearFields":"清除所有字段","PDFE.Views.Toolbar.textColumnsCustom":"自定义列","PDFE.Views.Toolbar.textColumnsOne":"一列","PDFE.Views.Toolbar.textColumnsThree":"三列","PDFE.Views.Toolbar.textColumnsTwo":"两列","PDFE.Views.Toolbar.textDirLtr":"从左到右","PDFE.Views.Toolbar.textDirRtl":"从右到左","PDFE.Views.Toolbar.textEditMode":"编辑PDF","PDFE.Views.Toolbar.textHighlight":"高亮","PDFE.Views.Toolbar.textItalic":"斜体","PDFE.Views.Toolbar.textListSettings":"列表设置","PDFE.Views.Toolbar.textShapeAlignBottom":"底部对齐","PDFE.Views.Toolbar.textShapeAlignCenter":"居中对齐","PDFE.Views.Toolbar.textShapeAlignLeft":"左对齐","PDFE.Views.Toolbar.textShapeAlignMiddle":"居中对齐","PDFE.Views.Toolbar.textShapeAlignRight":"右对齐","PDFE.Views.Toolbar.textShapeAlignTop":"顶端对齐","PDFE.Views.Toolbar.textShapesCombine":"组合","PDFE.Views.Toolbar.textShapesFragment":"拆分","PDFE.Views.Toolbar.textShapesIntersect":"相交","PDFE.Views.Toolbar.textShapesSubstract":"剪除","PDFE.Views.Toolbar.textShapesUnion":"结合","PDFE.Views.Toolbar.textStrikeout":"删除","PDFE.Views.Toolbar.textSubmited":"表单提交成功","PDFE.Views.Toolbar.textSubscript":"下标","PDFE.Views.Toolbar.textSuperscript":"上标","PDFE.Views.Toolbar.textTabComment":"批注","PDFE.Views.Toolbar.textTabEdit":"编辑","PDFE.Views.Toolbar.textTabFile":"文件","PDFE.Views.Toolbar.textTabHome":"开始","PDFE.Views.Toolbar.textTabInsert":"插入","PDFE.Views.Toolbar.textTabRedact":"密文","PDFE.Views.Toolbar.textTabView":"视图","PDFE.Views.Toolbar.textUnderline":"下划线","PDFE.Views.Toolbar.tipAddComment":"添加批注","PDFE.Views.Toolbar.tipChangeCase":"更改大小写","PDFE.Views.Toolbar.tipClearStyle":"清除样式","PDFE.Views.Toolbar.tipColumns":"插入列","PDFE.Views.Toolbar.tipCopy":"复制","PDFE.Views.Toolbar.tipCut":"剪切","PDFE.Views.Toolbar.tipDecFont":"递减字体大小","PDFE.Views.Toolbar.tipDecPrLeft":"减少缩进","PDFE.Views.Toolbar.tipDelPage":"删除页面","PDFE.Views.Toolbar.tipDownload":"下载文件","PDFE.Views.Toolbar.tipDownloadForm":"将文件下载为可填写的PDF文档","PDFE.Views.Toolbar.tipEditMode":"添加或编辑文本、形状、图像等。","PDFE.Views.Toolbar.tipEditText":"编辑文本","PDFE.Views.Toolbar.tipFirstPage":"转到第一页","PDFE.Views.Toolbar.tipFontColor":"字体颜色","PDFE.Views.Toolbar.tipFontName":"字体 ","PDFE.Views.Toolbar.tipFontSize":"字体大小","PDFE.Views.Toolbar.tipHAligh":"水平对齐","PDFE.Views.Toolbar.tipHandTool":"手动工具","PDFE.Views.Toolbar.tipHighlightColor":"高亮色","PDFE.Views.Toolbar.tipIncFont":"增加字体大小","PDFE.Views.Toolbar.tipIncPrLeft":"增加缩进","PDFE.Views.Toolbar.tipInsertArrowComment":"绘制箭头","PDFE.Views.Toolbar.tipInsertCircleComment":"绘制圆形或椭圆","PDFE.Views.Toolbar.tipInsertPolyLineComment":"绘制相互连接的线条","PDFE.Views.Toolbar.tipInsertRectComment":"绘制矩形或正方形","PDFE.Views.Toolbar.tipInsertStamp":"插入图章","PDFE.Views.Toolbar.tipInsertTextCallout":"插入文字标注","PDFE.Views.Toolbar.tipInsertTextComment":"插入文字批注","PDFE.Views.Toolbar.tipLastPage":"转到最后一页","PDFE.Views.Toolbar.tipLineSpace":"行间距","PDFE.Views.Toolbar.tipMarkers":"项目符号","PDFE.Views.Toolbar.tipMarkersArrow":"箭头项目符号","PDFE.Views.Toolbar.tipMarkersCheckmark":"选中标记项目符号","PDFE.Views.Toolbar.tipMarkersDash":"连字符项目符号","PDFE.Views.Toolbar.tipMarkersFRhombus":"实心菱形项目符号","PDFE.Views.Toolbar.tipMarkersFRound":"实心圆形项目符号","PDFE.Views.Toolbar.tipMarkersFSquare":"实心方形项目符号","PDFE.Views.Toolbar.tipMarkersHRound":"空心圆形项目符号","PDFE.Views.Toolbar.tipMarkersStar":"星形项目符号","PDFE.Views.Toolbar.tipNextForm":"跳转到下一个字段","PDFE.Views.Toolbar.tipNextPage":"跳转到下一页","PDFE.Views.Toolbar.tipNone":"无","PDFE.Views.Toolbar.tipNumbers":"编号","PDFE.Views.Toolbar.tipPaste":"粘贴","PDFE.Views.Toolbar.tipPrevForm":"跳转到上一个字段","PDFE.Views.Toolbar.tipPrevPage":"跳转到上一页","PDFE.Views.Toolbar.tipPrint":"打印","PDFE.Views.Toolbar.tipPrintQuick":"快速打印","PDFE.Views.Toolbar.tipRecognize":"编辑文本","PDFE.Views.Toolbar.tipRedo":"重做","PDFE.Views.Toolbar.tipRotate":"旋转页面","PDFE.Views.Toolbar.tipSave":"保存","PDFE.Views.Toolbar.tipSaveCoauth":"保存您的更改以供其他用户查看","PDFE.Views.Toolbar.tipSaveForm":"将文件另存为可填写的PDF","PDFE.Views.Toolbar.tipSelectAll":"全选","PDFE.Views.Toolbar.tipSelectTool":"选择工具","PDFE.Views.Toolbar.tipShapeAlign":"对齐形状","PDFE.Views.Toolbar.tipShapeArrange":"排列形状","PDFE.Views.Toolbar.tipShapeMerge":"合并形状","PDFE.Views.Toolbar.tipSubmit":"提交表单","PDFE.Views.Toolbar.tipSynchronize":"文档已被其他用户更改。请单击保存更改并重新加载更新。","PDFE.Views.Toolbar.tipTextDir":"文本方向","PDFE.Views.Toolbar.tipUndo":"撤消","PDFE.Views.Toolbar.tipVAligh":"垂直对齐","PDFE.Views.Toolbar.txtArrowComment":"箭头","PDFE.Views.Toolbar.txtCircleComment":"圆形","PDFE.Views.Toolbar.txtDistribHor":"水平分布","PDFE.Views.Toolbar.txtDistribVert":"垂直分布","PDFE.Views.Toolbar.txtGroup":"组","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"对齐选定的对象","PDFE.Views.Toolbar.txtOpacity":"不透明度","PDFE.Views.Toolbar.txtPageAlign":"与页面对齐","PDFE.Views.Toolbar.txtPolyLineComment":"连接线","PDFE.Views.Toolbar.txtRectComment":"矩形","PDFE.Views.Toolbar.txtRotateLeft":"向左旋转","PDFE.Views.Toolbar.txtRotatePage":"旋转页面","PDFE.Views.Toolbar.txtRotatePageRight":"向右旋转页面","PDFE.Views.Toolbar.txtRotateRight":"向右旋转","PDFE.Views.Toolbar.txtSize":"大小","PDFE.Views.Toolbar.txtUngroup":"取消组合","PDFE.Views.ViewTab.capBtnRecognize":"编辑文本","PDFE.Views.ViewTab.textAlwaysShowToolbar":"始终显示工具栏","PDFE.Views.ViewTab.textDarkDocument":"深色模式文档","PDFE.Views.ViewTab.textEditMode":"编辑PDF","PDFE.Views.ViewTab.textFill":"填写","PDFE.Views.ViewTab.textFitToPage":"适合页面","PDFE.Views.ViewTab.textFitToWidth":"适应宽度","PDFE.Views.ViewTab.textInterfaceTheme":"界面主题","PDFE.Views.ViewTab.textLeftMenu":"左侧面板","PDFE.Views.ViewTab.textLine":"线条","PDFE.Views.ViewTab.textNavigation":"导航","PDFE.Views.ViewTab.textOutline":"标题","PDFE.Views.ViewTab.textRightMenu":"右侧面板","PDFE.Views.ViewTab.textStatusBar":"状态栏","PDFE.Views.ViewTab.textTabStyle":"选项卡样式","PDFE.Views.ViewTab.textZoom":"缩放","PDFE.Views.ViewTab.tipDarkDocument":"深色模式文档","PDFE.Views.ViewTab.tipEditMode":"添加或编辑文本、形状、图像等。","PDFE.Views.ViewTab.tipFitToPage":"适合页面","PDFE.Views.ViewTab.tipFitToWidth":"调整至合适宽度","PDFE.Views.ViewTab.tipHeadings":"标题","PDFE.Views.ViewTab.tipInterfaceTheme":"界面主题","PDFE.Views.ViewTab.tipRecognize":"编辑文本"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"显示主窗口","Common.Controllers.Desktop.itemCreateFromTemplate":"用模板创建","Common.Controllers.ExternalLinks.textAddExternalData":"已添加外部源的链接。您可以在“数据”选项卡中更新此类链接。","Common.Controllers.ExternalLinks.textDontUpdate":"不要更新","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"错误:更新失败","Common.Controllers.ExternalLinks.warnUpdateExternalData":"此工作簿含有指向一个或多个可能不安全的外部源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"此文档含有指向一个或多个可能不安全的外部来源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"此演示文稿含有指向一个或多个可能不安全的外部来源的链接。
如果您信任这些链接,请更新它们以获取最新数据。","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"历史记录加载失败","Common.Controllers.Plugins.helpMoveMacros":"若要使用宏,请切换到“视图”选项卡。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移动了的宏按钮","Common.Controllers.Plugins.helpUseMacros":"在这里可以找到宏按钮","Common.Controllers.Plugins.helpUseMacrosHeader":"更新了对宏的访问","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"插件已成功安装。您可以在这里访问所有后台插件。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}已成功安装。您可以在这里访问所有后台插件。","Common.Controllers.Plugins.textRunInstalledPlugins":"运行已安装的插件","Common.Controllers.Plugins.textRunPlugin":"运行插件","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"在表格底部插入新行。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading1":"将标题 1 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading2":"将标题 2 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyHeading3":"将标题 3 样式应用于所选文本。","Common.Controllers.Shortcuts.txtDescriptionApplyListBullet":"将所选文本转换为无序项目符号列表,或开始一个新列表。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"使用键盘方向键将所选对象大步向下移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"使用键盘方向键将所选对象大步向左移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"使用键盘方向键将所选对象大步向右移动。","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"使用键盘方向键将所选对象大步向上移动。","Common.Controllers.Shortcuts.txtDescriptionBold":"将所选文本加粗,使其字体更醒目。","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"在段落之间切换居中对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption":"在表单中选择下一个下拉式方框选项。","Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption":"在表单中选择上一个下拉式方框选项。","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"关闭当前PDF文件。","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"关闭菜单或模式窗口。重置批注与修订的弹窗。重置表格绘制与擦除模式。重置文本拖放。重置标记选择模式。重置格式刷模式。取消选择形状。重置插入形状模式。退出页眉/页脚。退出表单填写。","Common.Controllers.Shortcuts.txtDescriptionCopy":"将所选文本发送到计算机剪贴板。复制的文本可稍后插入到同一文档的其他位置、另一份文档或其他程序中。","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"复制当前编辑文本中所选片段的格式。复制的格式可稍后应用到同一文档中的其他文本片段。","Common.Controllers.Shortcuts.txtDescriptionCopyrightSign":"在光标右侧插入版权符号。","Common.Controllers.Shortcuts.txtDescriptionCut":"删除所选文本并将其发送到计算机剪贴板。复制的文本可稍后插入到同一文档的其他位置、另一份文档或其他程序中。","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"将所选文本的字体大小减小1磅。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"删除光标左侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"删除光标左侧的一个单词/选区/图形对象。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"删除光标右侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"删除光标右侧的一个单词/选区/图形对象。","Common.Controllers.Shortcuts.txtDescriptionEditChart":"当选中图表标题时,如果标题为空,将光标移到行首;否则选中标题文本。","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"重复最近一次撤销的操作。","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"选择PDF中的所有文本。","Common.Controllers.Shortcuts.txtDescriptionEditShape":"当选中形状时,如果形状没有内容,则创建内容并将光标移到行首;如果已有内容为空,将光标移到内容位置,否则选中整个内容。","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"撤销最近一次执行的操作。","Common.Controllers.Shortcuts.txtDescriptionEmDash":"在光标右侧插入长破折号。","Common.Controllers.Shortcuts.txtDescriptionEnDash":"在光标右侧插入短破折号。","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"结束当前段落并开始新段落。","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"在单元格内另起一段。","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"在公式参数中插入新占位符。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft":"将运算符的对齐级别调整为左对齐(用于强制换行后的公式第二行)。","Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight":"将运算符的对齐级别调整为右对齐(用于强制换行后的公式第二行)。","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"在光标位置插入欧元符号。","Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis":"在光标位置插入省略号。","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"将所选文本的字体大小增加1磅。","Common.Controllers.Shortcuts.txtDescriptionIndent":"增加段落左缩进。","Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak":"添加分栏符。","Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow":"插入尾注。","Common.Controllers.Shortcuts.txtDescriptionInsertEquation":"在光标位置插入公式。","Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow":"插入脚注。","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"插入可用于跳转到网页地址的链接。","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"插入换行符(不中断段落)","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm":"在多行表单中插入换行符。","Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak":"在光标位置插入分页符。","Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber":"在光标位置插入当前页码。","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"在段落中插入制表符(非段首位置)。","Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak":"在表格中插入表格分隔符。","Common.Controllers.Shortcuts.txtDescriptionItalic":"将所选文本的字体设置为斜体。","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"在段落之间切换两端对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"将段落左对齐。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"按住指定键并使用键盘方向键将所选对象每次向下移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"按住指定键并使用键盘方向键将所选对象每次向左移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"按住指定键并使用键盘方向键将所选对象每次向右移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"按住指定键并使用键盘方向键将所选对象每次向上移动1个像素。","Common.Controllers.Shortcuts.txtDescriptionMixedIndent":"增加所选段落的缩进。","Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent":"减少所选段落的缩进。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"将焦点移到当前所选对象之后的下一个对象。","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"将焦点移到当前所选对象之前的上一个对象。","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"将光标下移一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument":"将光标置于当前编辑的PDF文档末尾。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"将光标移动到当前编辑行的末尾。","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"将光标右移一个单词。","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"将光标左移一个字符。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader":"当光标位于页眉/页脚时,转到下方页眉。","Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter":"当光标位于页眉/页脚时,转到下方页眉/页脚。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"转到表格行中的下一个单元格。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm":"转到下一个表单。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage":"转到当前编辑的PDF的下一页。","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"转到表格中的下一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"转到表格行中的上一个单元格。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm":"转到上一个表单。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage":"转到当前编辑的PDF的上一页。","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"转到表格中的上一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"将光标右移一个字符。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument":"跳转到当前编辑的PDF文档开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"将光标移动到当前编辑行的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage":"将光标移动到当前编辑文档下一页的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage":"将光标移动到当前编辑文档上一页的开头。","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"将光标移动到单词开头或左移一个单词。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"将光标上移一行。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader":"当光标位于页眉/页脚时,转到上方页眉。","Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter":"当光标位于页眉/页脚时,转到上方页眉/页脚。","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"切换到桌面编辑器的下一个文件选项卡或在线编辑器的下一个浏览器标签页。","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"在模式对话框中在控件之间导航,将焦点移到下一个控件。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen":"在字符之间插入连字符,该连字符不能作为换行的起始位置。","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"在字符之间插入空格,该空格不能作为换行的起始位置。","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"在在线编辑器中打开聊天面板并发送消息。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"打开数据输入字段,在其中添加批注内容。","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"打开批注面板,以添加自己的批注或回复其他用户的批注。","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"打开所选元素的上下文菜单。","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"打开标准对话框以选择现有文件。在此对话框中选择文件并点击“打开”后,文件将在桌面编辑器的新选项卡或窗口中打开。","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"打开“文件”面板,可保存、下载、打印当前PDF,查看其信息,新建或打开PDF,访问PDF编辑器帮助中心或高级设置。","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"打开“查找和替换”面板,并显示替换字段,以替换一个或多个找到的字符。","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"打开“搜素”面板,在当前编辑的PDF中搜索字符、单词或短语。","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"打开PDF编辑器帮助菜单。","Common.Controllers.Shortcuts.txtDescriptionPaste":"在光标位置插入之前从计算机剪贴板复制的文本片段。该文本可以来自同一文档、其他文档或其他程序。","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"将之前复制的格式应用到当前编辑的PDF文本中。","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"在光标位置插入之前从计算机剪贴板复制的文本片段,但不保留其原始格式。该文本可以来自同一文档、其他文档或其他程序。","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"切换到桌面编辑器的上一个文件选项卡或在线编辑器的上一个浏览器标签页。","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"在模式对话框中在控件之间导航,将焦点移到上一个控件。","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"使用可用的打印机打印PDF,或将其保存为文件。","Common.Controllers.Shortcuts.txtDescriptionRegisteredSign":"在光标位置插入注册商标符号。","Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol":"将所选的 Unicode 代码替换为符号。","Common.Controllers.Shortcuts.txtDescriptionResetChar":"清除所选文本的格式。","Common.Controllers.Shortcuts.txtDescriptionRightPara":"在段落之间切换右对齐和左对齐。","Common.Controllers.Shortcuts.txtDescriptionSave":"保存当前PDF的所有更改,文件将以现有名称、位置和格式保存。","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"打开“另存为”面板,将当前编辑的PDF以支持的格式保存到电脑硬盘。","Common.Controllers.Shortcuts.txtDescriptionScrollDown":"将PDF向下滚动约一页。","Common.Controllers.Shortcuts.txtDescriptionScrollUp":"将PDF向上滚动约一页。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"选择光标左侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"从光标位置选择到单词开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"将光标下移一行,并选中前一位置与当前位置之间的所有符号。","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"将光标上移一行,并选中前一位置与当前位置之间的所有符号。","Common.Controllers.Shortcuts.txtDescriptionSelectPageDown":"从光标位置选择到屏幕下方的页面部分。","Common.Controllers.Shortcuts.txtDescriptionSelectPageUp":"从光标位置选择到屏幕上方的页面部分。","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"选择光标右侧的一个字符。","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"从光标位置选择到单词末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage":"从光标位置选择到下一页开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage":"从光标位置选择到上一页开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument":"从光标处选择到PDF末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"从光标位置选择到当前行末尾的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument":"从光标处选择到PDF开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"从光标位置选择到当前行开头的文本片段。","Common.Controllers.Shortcuts.txtDescriptionShowAll":"显示或隐藏非打印字符。","Common.Controllers.Shortcuts.txtDescriptionSoftHyphen":"在光标位置插入软连字符。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat":"保留所复制文本的源格式。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly":"粘贴不带原始格式的文本。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable":"将复制的表格作为嵌套表粘贴到现有表格的选定单元格中。","Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells":"用复制的数据替换现有表格的内容。","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"启用/禁用将应用程序中的操作传递给屏幕阅读器。","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"提升列表/缩进级别(当光标位于段首时)。","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"降低列表/缩进级别(当光标位于段首时)。","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"将所选文本加删除线。","Common.Controllers.Shortcuts.txtDescriptionSubscript":"将所选文本缩小并放在文本行的下方,例如化学式中的写法。","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"将所选文本缩小并放在文本行的上方,例如分数中的写法。","Common.Controllers.Shortcuts.txtDescriptionTrademarkSign":"在光标位置插入商标符号。","Common.Controllers.Shortcuts.txtDescriptionUnderline":"将所选文本加下划线。","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"减少段落左缩进。","Common.Controllers.Shortcuts.txtDescriptionUpdateFields":"更新字段(例如目录)。","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"在光标位于链接时访问该链接。","Common.Controllers.Shortcuts.txtDescriptionZoom100":"将当前PDF的“缩放”参数重置为默认的100%。","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"放大当前编辑的PDF。","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"缩小当前编辑的PDF。","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelApplyHeading1":"ApplyHeading1","Common.Controllers.Shortcuts.txtLabelApplyHeading2":"ApplyHeading2","Common.Controllers.Shortcuts.txtLabelApplyHeading3":"ApplyHeading3","Common.Controllers.Shortcuts.txtLabelApplyListBullet":"ApplyListBullet","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption":"ChooseNextComboBoxOption","Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption":"ChoosePreviousComboBoxOption","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCopyrightSign":"CopyrightSign","Common.Controllers.Shortcuts.txtLabelCut":"剪切","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEmDash":"EmDash","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft":"EquationChangeAlignmentLeft","Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight":"EquationChangeAlignmentRight","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis":"HorizontalEllipsis","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertColumnBreak":"InsertColumnBreak","Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow":"InsertEndnoteNow","Common.Controllers.Shortcuts.txtLabelInsertEquation":"InsertEquation","Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow":"InsertFootnoteNow","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm":"InsertLineBreakMultilineForm","Common.Controllers.Shortcuts.txtLabelInsertPageBreak":"InsertPageBreak","Common.Controllers.Shortcuts.txtLabelInsertPageNumber":"InsertPageNumber","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelInsertTableBreak":"InsertTableBreak","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMixedIndent":"MixedIndent","Common.Controllers.Shortcuts.txtLabelMixedUnIndent":"MixedUnIndent","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndDocument":"MoveToEndDocument","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader":"MoveToLowerHeader","Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter":"MoveToLowerHeaderFooter","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextForm":"MoveToNextForm","Common.Controllers.Shortcuts.txtLabelMoveToNextPage":"MoveToNextPage","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm":"MoveToPreviousForm","Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage":"MoveToPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartDocument":"MoveToStartDocument","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage":"MoveToStartNextPage","Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage":"MoveToStartPreviousPage","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader":"MoveToUpperHeader","Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter":"MoveToUpperHeaderFooter","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen":"NonBreakingHyphen","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRegisteredSign":"RegisteredSign","Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol":"ReplaceUnicodeToSymbol","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelScrollDown":"ScrollDown","Common.Controllers.Shortcuts.txtLabelScrollUp":"ScrollUp","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectPageDown":"SelectPageDown","Common.Controllers.Shortcuts.txtLabelSelectPageUp":"SelectPageUp","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage":"SelectToBeginNextPage","Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage":"SelectToBeginPreviousPage","Common.Controllers.Shortcuts.txtLabelSelectToEndDocument":"SelectToEndDocument","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToStartDocument":"SelectToStartDocument","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowAll":"ShowAll","Common.Controllers.Shortcuts.txtLabelSoftHyphen":"SoftHyphen","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat":"SpecialOptionsKeepSourceFormat","Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly":"SpecialOptionsKeepTextOnly","Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable":"SpecialOptionsNestTable","Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells":"SpecialOptionsOverwriteCells","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelTrademarkSign":"TrademarkSign","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUpdateFields":"UpdateFields","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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":"三维簇状柱形图","Common.define.chartData.textBarNormal3dPerspective":"三维柱形图","Common.define.chartData.textBarStacked":"堆积柱形图","Common.define.chartData.textBarStacked3d":"三维堆积柱形图","Common.define.chartData.textBarStackedPer":"100%堆积柱状图","Common.define.chartData.textBarStackedPer3d":"三维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":"三维簇状条形图","Common.define.chartData.textHBarStacked":"堆积条形图","Common.define.chartData.textHBarStacked3d":"三维堆积条形图","Common.define.chartData.textHBarStackedPer":"100%堆积条形图","Common.define.chartData.textHBarStackedPer3d":"三维100%堆积条形图","Common.define.chartData.textLine":"折线图","Common.define.chartData.textLine3d":"三维折线图","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":"三维饼图","Common.define.chartData.textPoint":"XY(散点图)","Common.define.chartData.textRadar":"雷达图","Common.define.chartData.textRadarFilled":"填充雷达图","Common.define.chartData.textRadarMarker":"带标记的雷达","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.define.smartArt.textAccentedPicture":"重点图片","Common.define.smartArt.textAccentProcess":"重点流程","Common.define.smartArt.textAlternatingFlow":"交替流程","Common.define.smartArt.textAlternatingHexagons":"交替六边形","Common.define.smartArt.textAlternatingPictureBlocks":"交替图片块","Common.define.smartArt.textAlternatingPictureCircles":"交替图片圆形","Common.define.smartArt.textArchitectureLayout":"结构布局","Common.define.smartArt.textArrowRibbon":"带状箭头","Common.define.smartArt.textAscendingPictureAccentProcess":"升序图片重点流程","Common.define.smartArt.textBalance":"平衡","Common.define.smartArt.textBasicBendingProcess":"基本蛇形流程","Common.define.smartArt.textBasicBlockList":"基本列表","Common.define.smartArt.textBasicChevronProcess":"基本V形流程","Common.define.smartArt.textBasicCycle":"基本循环","Common.define.smartArt.textBasicMatrix":"基本矩阵","Common.define.smartArt.textBasicPie":"基本饼图","Common.define.smartArt.textBasicProcess":"基本流程","Common.define.smartArt.textBasicPyramid":"基本棱锥图","Common.define.smartArt.textBasicRadial":"基本放射图","Common.define.smartArt.textBasicTarget":"基本目标图","Common.define.smartArt.textBasicTimeline":"基本时间轴","Common.define.smartArt.textBasicVenn":"基本维恩图","Common.define.smartArt.textBendingPictureAccentList":"蛇形图片重点列表","Common.define.smartArt.textBendingPictureBlocks":"蛇形图片块","Common.define.smartArt.textBendingPictureCaption":"蛇形图片标题","Common.define.smartArt.textBendingPictureCaptionList":"蛇形图片标题列表","Common.define.smartArt.textBendingPictureSemiTranparentText":"蛇形图片半透明文字","Common.define.smartArt.textBlockCycle":"块循环","Common.define.smartArt.textBubblePictureList":"气泡图列表","Common.define.smartArt.textCaptionedPictures":"带标题的图片","Common.define.smartArt.textChevronAccentProcess":"V型重点流程","Common.define.smartArt.textChevronList":"V型列表","Common.define.smartArt.textCircleAccentTimeline":"圆形重点时间线","Common.define.smartArt.textCircleArrowProcess":"圆形箭头流程","Common.define.smartArt.textCirclePictureHierarchy":"圆形图片层次结构","Common.define.smartArt.textCircleProcess":"圆形流程","Common.define.smartArt.textCircleRelationship":"圆形关系","Common.define.smartArt.textCircularBendingProcess":"环状蛇形流程","Common.define.smartArt.textCircularPictureCallout":"环形图片标注","Common.define.smartArt.textClosedChevronProcess":"闭合V型流程","Common.define.smartArt.textContinuousArrowProcess":"连续箭头流程","Common.define.smartArt.textContinuousBlockProcess":"连续块流程","Common.define.smartArt.textContinuousCycle":"连续循环","Common.define.smartArt.textContinuousPictureList":"连续图片列表","Common.define.smartArt.textConvergingArrows":"汇聚箭头","Common.define.smartArt.textConvergingRadial":"汇聚放射图","Common.define.smartArt.textConvergingText":"汇聚文本","Common.define.smartArt.textCounterbalanceArrows":"平衡箭头","Common.define.smartArt.textCycle":"循环","Common.define.smartArt.textCycleMatrix":"循环矩阵","Common.define.smartArt.textDescendingBlockList":"降序块列表","Common.define.smartArt.textDescendingProcess":"降序流程","Common.define.smartArt.textDetailedProcess":"详细流程","Common.define.smartArt.textDivergingArrows":"发散箭头","Common.define.smartArt.textDivergingRadial":"发散射线","Common.define.smartArt.textEquation":"公式","Common.define.smartArt.textFramedTextPicture":"带边框的文本图片","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"齿轮","Common.define.smartArt.textGridMatrix":"网格矩阵","Common.define.smartArt.textGroupedList":"分组列表","Common.define.smartArt.textHalfCircleOrganizationChart":"半圆组织结构图","Common.define.smartArt.textHexagonCluster":"六边形集群","Common.define.smartArt.textHexagonRadial":"六边形射线","Common.define.smartArt.textHierarchy":"层级结构","Common.define.smartArt.textHierarchyList":"层级结构列表","Common.define.smartArt.textHorizontalBulletList":"水平项目符号列表","Common.define.smartArt.textHorizontalHierarchy":"水平层次结构","Common.define.smartArt.textHorizontalLabeledHierarchy":"水平标记层次","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"水平多级层次结构","Common.define.smartArt.textHorizontalOrganizationChart":"水平组织结构图","Common.define.smartArt.textHorizontalPictureList":"水平图片列表","Common.define.smartArt.textIncreasingArrowProcess":"递增箭头流程","Common.define.smartArt.textIncreasingCircleProcess":"递增圆圈流程","Common.define.smartArt.textInterconnectedBlockProcess":"互连块流程","Common.define.smartArt.textInterconnectedRings":"互连环图","Common.define.smartArt.textInvertedPyramid":"倒棱锥图","Common.define.smartArt.textLabeledHierarchy":"标记的层次结构","Common.define.smartArt.textLinearVenn":"线性韦恩图","Common.define.smartArt.textLinedList":"线型列表","Common.define.smartArt.textList":"列表","Common.define.smartArt.textMatrix":"矩阵","Common.define.smartArt.textMultidirectionalCycle":"多方向循环","Common.define.smartArt.textNameAndTitleOrganizationChart":"姓名和职务组织结构图","Common.define.smartArt.textNestedTarget":"嵌套目标","Common.define.smartArt.textNondirectionalCycle":"非定向循环","Common.define.smartArt.textOpposingArrows":"反向箭头","Common.define.smartArt.textOpposingIdeas":"相反观点","Common.define.smartArt.textOrganizationChart":"组织图","Common.define.smartArt.textOther":"其他","Common.define.smartArt.textPhasedProcess":"阶段化流程","Common.define.smartArt.textPicture":"图片","Common.define.smartArt.textPictureAccentBlocks":"图片重点块","Common.define.smartArt.textPictureAccentList":"图片重点列表","Common.define.smartArt.textPictureAccentProcess":"图片重点流程","Common.define.smartArt.textPictureCaptionList":"图片标题列表","Common.define.smartArt.textPictureFrame":"图片框架","Common.define.smartArt.textPictureGrid":"图片网格","Common.define.smartArt.textPictureLineup":"图片排列","Common.define.smartArt.textPictureOrganizationChart":"图片组织图","Common.define.smartArt.textPictureStrips":"图片条纹","Common.define.smartArt.textPieProcess":"饼图流程","Common.define.smartArt.textPlusAndMinus":"加减","Common.define.smartArt.textProcess":"流程","Common.define.smartArt.textProcessArrows":"流程箭头","Common.define.smartArt.textProcessList":"流程列表","Common.define.smartArt.textPyramid":"棱锥图","Common.define.smartArt.textPyramidList":"棱锥图列表","Common.define.smartArt.textRadialCluster":"放射状群集","Common.define.smartArt.textRadialCycle":"射线循环","Common.define.smartArt.textRadialList":"射线列表","Common.define.smartArt.textRadialPictureList":"放射状图片列表","Common.define.smartArt.textRadialVenn":"射线韦恩图","Common.define.smartArt.textRandomToResultProcess":"随机结果流程","Common.define.smartArt.textRelationship":"关系","Common.define.smartArt.textRepeatingBendingProcess":"重复蛇形流程","Common.define.smartArt.textReverseList":"反向列表","Common.define.smartArt.textSegmentedCycle":"分段循环","Common.define.smartArt.textSegmentedProcess":"交错流程","Common.define.smartArt.textSegmentedPyramid":"分段棱锥图","Common.define.smartArt.textSnapshotPictureList":"快照图片列表","Common.define.smartArt.textSpiralPicture":"螺旋图片","Common.define.smartArt.textSquareAccentList":"方形重点列表","Common.define.smartArt.textStackedList":"堆积列表","Common.define.smartArt.textStackedVenn":"堆积韦恩图","Common.define.smartArt.textStaggeredProcess":"交错流程","Common.define.smartArt.textStepDownProcess":"步骤下移流程","Common.define.smartArt.textStepUpProcess":"步骤上移流程","Common.define.smartArt.textSubStepProcess":"子步骤流程","Common.define.smartArt.textTabbedArc":"选项卡拱形图","Common.define.smartArt.textTableHierarchy":"表层次结构","Common.define.smartArt.textTableList":"表格列表","Common.define.smartArt.textTabList":"选项卡列表","Common.define.smartArt.textTargetList":"目标列表","Common.define.smartArt.textTextCycle":"文本循环","Common.define.smartArt.textThemePictureAccent":"主题图片重点","Common.define.smartArt.textThemePictureAlternatingAccent":"主题图片交替重点","Common.define.smartArt.textThemePictureGrid":"主题图片网格","Common.define.smartArt.textTitledMatrix":"标题矩阵","Common.define.smartArt.textTitledPictureAccentList":"标题图片重点列表","Common.define.smartArt.textTitledPictureBlocks":"标题图片块","Common.define.smartArt.textTitlePictureLineup":"标题图片排列","Common.define.smartArt.textTrapezoidList":"梯形列表","Common.define.smartArt.textUpwardArrow":"向上箭头","Common.define.smartArt.textVaryingWidthList":"可变宽度列表","Common.define.smartArt.textVerticalAccentList":"垂直重点列表","Common.define.smartArt.textVerticalArrowList":"垂直箭头列表","Common.define.smartArt.textVerticalBendingProcess":"垂直蛇形流程","Common.define.smartArt.textVerticalBlockList":"垂直块列表","Common.define.smartArt.textVerticalBoxList":"垂直方框列表","Common.define.smartArt.textVerticalBracketList":"垂直括号列表","Common.define.smartArt.textVerticalBulletList":"垂直项目符号列表","Common.define.smartArt.textVerticalChevronList":"垂直V型列表","Common.define.smartArt.textVerticalCircleList":"垂直循环列表","Common.define.smartArt.textVerticalCurvedList":"垂直曲线列表","Common.define.smartArt.textVerticalEquation":"垂直公式","Common.define.smartArt.textVerticalPictureAccentList":"垂直图片重点列表","Common.define.smartArt.textVerticalPictureList":"垂直图片列表","Common.define.smartArt.textVerticalProcess":"垂直流程","Common.Translation.textMoreButton":"更多","Common.Translation.tipFileLocked":"文档编辑被锁定,您可以稍后进行更改并将其保存为本地副本。","Common.Translation.tipFileReadOnly":"该文件是只读的。若要保留更改,请使用新名称或将文件保存在其他位置。","Common.Translation.warnFileLocked":"您无法编辑此文件,因为它正在另一个应用程序中进行编辑。","Common.Translation.warnFileLockedBtnEdit":"创建副本","Common.Translation.warnFileLockedBtnView":"打开以供查看","Common.UI.ButtonColored.textAutoColor":"自动","Common.UI.ButtonColored.textEyedropper":"拾色器","Common.UI.ButtonColored.textNewColor":"更多颜色","Common.UI.Calendar.textApril":"四月","Common.UI.Calendar.textAugust":"八月","Common.UI.Calendar.textDecember":"十二月","Common.UI.Calendar.textFebruary":"二月","Common.UI.Calendar.textJanuary":"一月","Common.UI.Calendar.textJuly":"七月","Common.UI.Calendar.textJune":"六月","Common.UI.Calendar.textMarch":"三月","Common.UI.Calendar.textMay":"五月","Common.UI.Calendar.textMonths":"月","Common.UI.Calendar.textNovember":"十一月","Common.UI.Calendar.textOctober":"十月","Common.UI.Calendar.textSeptember":"九月","Common.UI.Calendar.textShortApril":"四月","Common.UI.Calendar.textShortAugust":"八月","Common.UI.Calendar.textShortDecember":"十二月","Common.UI.Calendar.textShortFebruary":"二月","Common.UI.Calendar.textShortFriday":"周五","Common.UI.Calendar.textShortJanuary":"一月","Common.UI.Calendar.textShortJuly":"七月","Common.UI.Calendar.textShortJune":"六月","Common.UI.Calendar.textShortMarch":"三月","Common.UI.Calendar.textShortMay":"五月","Common.UI.Calendar.textShortMonday":"周一","Common.UI.Calendar.textShortNovember":"十一月","Common.UI.Calendar.textShortOctober":"十月","Common.UI.Calendar.textShortSaturday":"周六","Common.UI.Calendar.textShortSeptember":"九月","Common.UI.Calendar.textShortSunday":"周日","Common.UI.Calendar.textShortThursday":"周四","Common.UI.Calendar.textShortTuesday":"周二","Common.UI.Calendar.textShortWednesday":"周三","Common.UI.Calendar.textYears":"年","Common.UI.ExtendedColorDialog.addButtonText":"添加","Common.UI.ExtendedColorDialog.textCurrent":"当前","Common.UI.ExtendedColorDialog.textHexErr":"输入的值不正确。
请输入000000和FFFFFF之间的值。","Common.UI.ExtendedColorDialog.textNew":"新增","Common.UI.ExtendedColorDialog.textRGBErr":"输入的值不正确。
请输入介于0和255之间的数值。","Common.UI.HSBColorPicker.textNoColor":"无颜色","Common.UI.InputFieldBtnCalendar.textDate":"选择日期","Common.UI.InputFieldBtnPassword.textHintHidePwd":"隐藏密码","Common.UI.InputFieldBtnPassword.textHintHold":"按住显示密码","Common.UI.InputFieldBtnPassword.textHintShowPwd":"显示密码","Common.UI.SearchBar.capFind":"搜索","Common.UI.SearchBar.capFindRedact":"查找密文","Common.UI.SearchBar.textFind":"查找","Common.UI.SearchBar.tipCloseSearch":"关闭搜索","Common.UI.SearchBar.tipNextResult":"下一个结果","Common.UI.SearchBar.tipOpenAdvancedSettings":"打开高级设置","Common.UI.SearchBar.tipOpenAdvancedSettingsRedact":"查找并标记密文","Common.UI.SearchBar.tipPreviousResult":"上一个结果","Common.UI.SearchDialog.textHighlight":"高亮显示结果","Common.UI.SearchDialog.textMatchCase":"区分大小写","Common.UI.SearchDialog.textReplaceDef":"输入替换文字","Common.UI.SearchDialog.textSearchStart":"在这里输入你的文字","Common.UI.SearchDialog.textTitle":"查找和替换","Common.UI.SearchDialog.textTitle2":"查找","Common.UI.SearchDialog.textWholeWords":"仅限完整单词","Common.UI.SearchDialog.txtBtnHideReplace":"隐藏替换","Common.UI.SearchDialog.txtBtnReplace":"替换","Common.UI.SearchDialog.txtBtnReplaceAll":"全部替换","Common.UI.SynchronizeTip.textDontShow":"不要再显示此消息","Common.UI.SynchronizeTip.textGotIt":"知道了","Common.UI.SynchronizeTip.textNew":"新建","Common.UI.SynchronizeTip.textSynchronize":"文档已被其他用户更改
请单击保存更改并重新加载更新。","Common.UI.ThemeColorPalette.textRecentColors":"最近使用的颜色","Common.UI.ThemeColorPalette.textStandartColors":"标准颜色","Common.UI.ThemeColorPalette.textThemeColors":"主题颜色","Common.UI.ThemeColorPalette.textTransparent":"透明","Common.UI.Themes.txtThemeClassicLight":"经典浅色","Common.UI.Themes.txtThemeContrastDark":"高对比度深色","Common.UI.Themes.txtThemeDark":"深色","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"浅色","Common.UI.Themes.txtThemeModernDark":"现代深色","Common.UI.Themes.txtThemeModernLight":"现代浅色","Common.UI.Themes.txtThemeSystem":"和系統一致","Common.UI.Window.cancelButtonText":"取消","Common.UI.Window.closeButtonText":"关闭","Common.UI.Window.noButtonText":"否","Common.UI.Window.okButtonText":"确定","Common.UI.Window.textConfirmation":"确认","Common.UI.Window.textDontShow":"不要再显示此消息","Common.UI.Window.textError":"错误","Common.UI.Window.textInformation":"信息","Common.UI.Window.textWarning":"警告","Common.UI.Window.yesButtonText":"是","Common.Utils.Metric.txtCm":"厘米","Common.Utils.Metric.txtPt":"磅","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"重点色","Common.Utils.ThemeColor.txtAqua":"湖绿色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黑色","Common.Utils.ThemeColor.txtBlue":"蓝色","Common.Utils.ThemeColor.txtBrightGreen":"明亮绿色","Common.Utils.ThemeColor.txtBrown":"棕色","Common.Utils.ThemeColor.txtDarkBlue":"深蓝色","Common.Utils.ThemeColor.txtDarker":"更暗","Common.Utils.ThemeColor.txtDarkGray":"深灰色","Common.Utils.ThemeColor.txtDarkGreen":"深绿色","Common.Utils.ThemeColor.txtDarkPurple":"深紫色","Common.Utils.ThemeColor.txtDarkRed":"深红色","Common.Utils.ThemeColor.txtDarkTeal":"深青色","Common.Utils.ThemeColor.txtDarkYellow":"深黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"绿色","Common.Utils.ThemeColor.txtIndigo":"靛蓝色","Common.Utils.ThemeColor.txtLavender":"薰衣草色","Common.Utils.ThemeColor.txtLightBlue":"浅蓝色","Common.Utils.ThemeColor.txtLighter":"较浅色的","Common.Utils.ThemeColor.txtLightGray":"浅灰色","Common.Utils.ThemeColor.txtLightGreen":"浅绿色","Common.Utils.ThemeColor.txtLightOrange":"浅橙色","Common.Utils.ThemeColor.txtLightYellow":"浅黄色","Common.Utils.ThemeColor.txtOrange":"橙色","Common.Utils.ThemeColor.txtPink":"粉红色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"红色","Common.Utils.ThemeColor.txtRose":"玫瑰色","Common.Utils.ThemeColor.txtSkyBlue":"天蓝色","Common.Utils.ThemeColor.txtTeal":"青色","Common.Utils.ThemeColor.txttext":"文本","Common.Utils.ThemeColor.txtTurquosie":"绿松石","Common.Utils.ThemeColor.txtViolet":"紫罗兰","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"地址:","Common.Views.About.txtLicensee":"被许可人","Common.Views.About.txtLicensor":"许可商","Common.Views.About.txtMail":"电子邮件:","Common.Views.About.txtPoweredBy":"技术支持方","Common.Views.About.txtTel":"电话:","Common.Views.About.txtVersion":"版本","Common.Views.Chat.textChat":"聊天","Common.Views.Chat.textClosePanel":"关闭聊天","Common.Views.Chat.textEnterMessage":"在这里输入你的信息","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.mniFilterComments":"显示批注","Common.Views.Comments.mniFilterGroups":"按组筛选","Common.Views.Comments.mniPositionAsc":"从顶部","Common.Views.Comments.mniPositionDesc":"从底部","Common.Views.Comments.textAdd":"添加","Common.Views.Comments.textAddComment":"添加批注","Common.Views.Comments.textAddCommentToDoc":"向文档添加批注","Common.Views.Comments.textAddReply":"添加回复","Common.Views.Comments.textAll":"全部","Common.Views.Comments.textAnonym":"访客","Common.Views.Comments.textCancel":"取消","Common.Views.Comments.textClose":"关闭","Common.Views.Comments.textClosePanel":"关闭批注","Common.Views.Comments.textComment":"批注","Common.Views.Comments.textComments":"批注","Common.Views.Comments.textEdit":"确定","Common.Views.Comments.textEnterCommentHint":"在这里输入您的批注","Common.Views.Comments.textHintAddComment":"添加批注","Common.Views.Comments.textOpen":"未解决","Common.Views.Comments.textOpenAgain":"再次打开","Common.Views.Comments.textReply":"回复","Common.Views.Comments.textResolve":"解决","Common.Views.Comments.textResolved":"已解决","Common.Views.Comments.textSort":"排序批注","Common.Views.Comments.textSortFilter":"排序和过滤批注","Common.Views.Comments.textSortFilterMore":"排序、过滤、以及更多","Common.Views.Comments.textSortMore":"排序以及更多","Common.Views.Comments.textViewResolved":"您无权重新打开批注","Common.Views.Comments.txtEmpty":"文档中没有任何批注。","Common.Views.CopyWarningDialog.textDontShow":"不要再显示此消息","Common.Views.CopyWarningDialog.textMsg":"使用编辑器工具栏按钮和右键快捷菜单进行的复制,剪切和粘贴操作将仅在此编辑器选项卡中执行。

要在编辑器选项卡之外复制或粘贴到应用程序,请使用以下键盘组合:","Common.Views.CopyWarningDialog.textTitle":"复制,剪切和粘贴操作","Common.Views.CopyWarningDialog.textToCopy":"用于复制","Common.Views.CopyWarningDialog.textToCut":"用于剪切","Common.Views.CopyWarningDialog.textToPaste":"用于粘贴","Common.Views.CustomizeQuickAccessDialog.textDownload":"下载","Common.Views.CustomizeQuickAccessDialog.textMsg":"请检查快速访问工具栏上的命令","Common.Views.CustomizeQuickAccessDialog.textPrint":"打印","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"快速打印","Common.Views.CustomizeQuickAccessDialog.textRedo":"重做","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"自定义快速访问","Common.Views.CustomizeQuickAccessDialog.textUndo":"撤销","Common.Views.DocumentAccessDialog.textLoading":"加载中…","Common.Views.DocumentAccessDialog.textTitle":"分享设置","Common.Views.Draw.hintEraser":"橡皮擦","Common.Views.Draw.hintSelect":"请选择","Common.Views.Draw.txtEraser":"橡皮擦","Common.Views.Draw.txtHighlighter":"荧光笔","Common.Views.Draw.txtMM":"毫米","Common.Views.Draw.txtPen":"笔","Common.Views.Draw.txtSelect":"请选择","Common.Views.Draw.txtSize":"粗细","Common.Views.ExternalDiagramEditor.textTitle":"图表编辑器","Common.Views.ExternalEditor.textClose":"关闭","Common.Views.ExternalEditor.textSave":"保存并退出","Common.Views.ExternalLinksDlg.closeButtonText":"关闭","Common.Views.ExternalLinksDlg.textAutoUpdate":"自动更新来自链接源的数据","Common.Views.ExternalLinksDlg.textChange":"更改来源","Common.Views.ExternalLinksDlg.textDelete":"断开链接","Common.Views.ExternalLinksDlg.textDeleteAll":"断开所有链接","Common.Views.ExternalLinksDlg.textOk":"确定","Common.Views.ExternalLinksDlg.textOpen":"打开源文件","Common.Views.ExternalLinksDlg.textSource":"来源","Common.Views.ExternalLinksDlg.textStatus":"状态","Common.Views.ExternalLinksDlg.textUnknown":"未知","Common.Views.ExternalLinksDlg.textUpdate":"更新值","Common.Views.ExternalLinksDlg.textUpdateAll":"全部更新","Common.Views.ExternalLinksDlg.textUpdating":"正在更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部链接","Common.Views.Header.ariaQuickAccessToolbar":"快速访问工具栏","Common.Views.Header.labelCoUsersDescr":"正在编辑文件的用户:","Common.Views.Header.textAddFavorite":"收藏","Common.Views.Header.textAdvSettings":"高级设置","Common.Views.Header.textAnnotateDesc":"填写表单或注释","Common.Views.Header.textBack":"打开文件所在位置","Common.Views.Header.textClose":"关闭文件","Common.Views.Header.textComment":"批注","Common.Views.Header.textCommentDesc":"所有更改都将保存到文件中。实时协作","Common.Views.Header.textCompactView":"隐藏工具栏","Common.Views.Header.textDownload":"下载","Common.Views.Header.textEdit":"编辑","Common.Views.Header.textEditDesc":"所有更改都将保存到文件中。实时协作","Common.Views.Header.textEditDescNoCoedit":"添加或编辑文本、形状、图像等。","Common.Views.Header.textHideLines":"隐藏标尺","Common.Views.Header.textHideStatusBar":"隐藏状态栏","Common.Views.Header.textPrint":"打印","Common.Views.Header.textReadOnly":"只读","Common.Views.Header.textRemoveFavorite":"从收藏夹中删除","Common.Views.Header.textShare":"分享","Common.Views.Header.textView":"查看","Common.Views.Header.textViewDesc":"所有更改都在本地保存","Common.Views.Header.textViewDescNoCoedit":"查看或注释","Common.Views.Header.textZoom":"缩放","Common.Views.Header.tipAccessRights":"管理文档访问权限","Common.Views.Header.tipComment":"批注","Common.Views.Header.tipCustomizeQuickAccessToolbar":"自定义快速访问工具栏","Common.Views.Header.tipDownload":"下载文件","Common.Views.Header.tipEdit":"编辑","Common.Views.Header.tipGoEdit":"编辑当前文件","Common.Views.Header.tipPrint":"打印文件","Common.Views.Header.tipPrintQuick":"快速打印","Common.Views.Header.tipRedo":"重做","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"查找","Common.Views.Header.tipUndo":"撤消","Common.Views.Header.tipUsers":"查看用户","Common.Views.Header.tipView":"查看","Common.Views.Header.tipViewSettings":"视图设置","Common.Views.Header.tipViewUsers":"查看用户和管理文档访问权限","Common.Views.Header.txtAccessRights":"更改访问权限","Common.Views.Header.txtRename":"重命名","Common.Views.ImageFromUrlDialog.textUrl":"粘貼圖片網址:","Common.Views.ImageFromUrlDialog.txtEmpty":"这是必填栏","Common.Views.ImageFromUrlDialog.txtNotUrl":"该字段应该是“http://www.example.com”格式的URL","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Input a prompt for the query","Common.Views.MacrosAiDialog.textCreate":"Create","Common.Views.MacrosDialog.textAutostart":"Autostart","Common.Views.MacrosDialog.textConvertFromVBA":"Convert from VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convert macros from VBA","Common.Views.MacrosDialog.textCopy":"Copy","Common.Views.MacrosDialog.textCreateFromDesc":"Create from description","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Create macros from description","Common.Views.MacrosDialog.textCustomFunction":"Custom function","Common.Views.MacrosDialog.textCustomFunctions":"Custom functions","Common.Views.MacrosDialog.textDebug":"Debug","Common.Views.MacrosDialog.textDelete":"Delete","Common.Views.MacrosDialog.textFunctions":"Functions","Common.Views.MacrosDialog.textLoading":"Loading...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Make autostart","Common.Views.MacrosDialog.textRename":"Rename","Common.Views.MacrosDialog.textRun":"Run","Common.Views.MacrosDialog.textSave":"Save","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Unmake autostart","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"Add custom function","Common.Views.MacrosDialog.tipFunctionCopy":"Copy custom function","Common.Views.MacrosDialog.tipFunctionDelete":"Delete custom function","Common.Views.MacrosDialog.tipFunctionRename":"Rename custom function","Common.Views.MacrosDialog.tipMacrosAdd":"Add macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copy macros","Common.Views.MacrosDialog.tipMacrosDebug":"Debug macros","Common.Views.MacrosDialog.tipMacrosRename":"Rename macros","Common.Views.MacrosDialog.tipMacrosRun":"Run macros","Common.Views.MacrosDialog.tipRedo":"Redo","Common.Views.MacrosDialog.tipUndo":"Undo","Common.Views.OpenDialog.closeButtonText":"关闭文件","Common.Views.OpenDialog.txtEncoding":"编码","Common.Views.OpenDialog.txtIncorrectPwd":"密码不正确。","Common.Views.OpenDialog.txtOpenFile":"输入密码来打开文件","Common.Views.OpenDialog.txtPassword":"密码","Common.Views.OpenDialog.txtPreview":"预览","Common.Views.OpenDialog.txtProtected":"输入密码并打开文件后,将重置文件的当前密码。","Common.Views.OpenDialog.txtTitle":"选择%1选项","Common.Views.OpenDialog.txtTitleProtected":"受保护的文件","Common.Views.PasswordDialog.txtDescription":"设置密码以保护此文档","Common.Views.PasswordDialog.txtIncorrectPwd":"确认密码不相同","Common.Views.PasswordDialog.txtPassword":"密码","Common.Views.PasswordDialog.txtRepeat":"重复密码","Common.Views.PasswordDialog.txtTitle":"设置密码","Common.Views.PasswordDialog.txtWarning":"警告:如果您丢失或忘记了密码,则无法恢复。请安全的保存密码。","Common.Views.PluginDlg.textDock":"置顶插件","Common.Views.PluginDlg.textLoading":"载入中","Common.Views.PluginPanel.textClosePanel":"关闭插件","Common.Views.PluginPanel.textHidePanel":"折叠插件","Common.Views.PluginPanel.textLoading":"载入中","Common.Views.PluginPanel.textUndock":"取消置顶插件","Common.Views.Plugins.groupCaption":"插件","Common.Views.Plugins.strPlugins":"插件","Common.Views.Plugins.textBackgroundPlugins":"后台插件","Common.Views.Plugins.textClosePanel":"关闭插件","Common.Views.Plugins.textLoading":"载入中","Common.Views.Plugins.textSettings":"设置","Common.Views.Plugins.textStart":"开始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"后台插件列表","Common.Views.Protection.hintAddPwd":"使用密码加密文档","Common.Views.Protection.hintDelPwd":"删除密码","Common.Views.Protection.hintPwd":"更改或删除密码","Common.Views.Protection.hintSignature":"添加数字签名或签名栏","Common.Views.Protection.txtAddPwd":"添加密码","Common.Views.Protection.txtChangePwd":"修改密码","Common.Views.Protection.txtDeletePwd":"删除密码","Common.Views.Protection.txtEncrypt":"加密","Common.Views.Protection.txtInvisibleSignature":"添加数字签名","Common.Views.Protection.txtSignature":"签名","Common.Views.Protection.txtSignatureLine":"添加签名栏","Common.Views.RecentFiles.txtOpenRecent":"打开最近文件","Common.Views.RenameDialog.textName":"文件名","Common.Views.RenameDialog.txtInvalidName":"文件名不能包含以下任何字符:","Common.Views.ReviewChanges.strFast":"Fast","Common.Views.ReviewChanges.strFastDesc":"Real-time co-editing. All changes are saved automatically.","Common.Views.ReviewChanges.strStrict":"Strict","Common.Views.ReviewChanges.strStrictDesc":"Use the 'Save' button to sync the changes you and others make.","Common.Views.ReviewChanges.tipCoAuthMode":"Set co-editing mode","Common.Views.ReviewChanges.tipCommentRem":"Delete comments","Common.Views.ReviewChanges.tipCommentRemCurrent":"Delete current comments","Common.Views.ReviewChanges.tipCommentResolve":"Resolve comments","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolve current comments","Common.Views.ReviewChanges.tipHistory":"Show version history","Common.Views.ReviewChanges.tipSharing":"Manage document access rights","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Close","Common.Views.ReviewChanges.txtCoAuthMode":"Co-editing Mode","Common.Views.ReviewChanges.txtCommentRemAll":"Delete all comments","Common.Views.ReviewChanges.txtCommentRemCurrent":"Delete current comments","Common.Views.ReviewChanges.txtCommentRemMy":"Delete my comments","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Delete my current comments","Common.Views.ReviewChanges.txtCommentRemove":"Delete","Common.Views.ReviewChanges.txtCommentResolve":"Resolve","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolve all comments","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolve current comments","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolve my comments","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolve my current comments","Common.Views.ReviewChanges.txtHistory":"Version history","Common.Views.ReviewChanges.txtSharing":"Sharing","Common.Views.ReviewPopover.textAdd":"添加","Common.Views.ReviewPopover.textAddReply":"添加回复","Common.Views.ReviewPopover.textCancel":"取消","Common.Views.ReviewPopover.textClose":"关闭","Common.Views.ReviewPopover.textComment":"批注","Common.Views.ReviewPopover.textEdit":"确定","Common.Views.ReviewPopover.textEnterComment":"在这里输入您的批注","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.ReviewPopover.textViewResolved":"您无权重新打开批注","Common.Views.ReviewPopover.txtAccept":"同意","Common.Views.ReviewPopover.txtDeleteTip":"删除","Common.Views.ReviewPopover.txtEditTip":"编辑","Common.Views.ReviewPopover.txtReject":"否决","Common.Views.SaveAsDlg.textLoading":"载入中","Common.Views.SaveAsDlg.textTitle":"要保存的文件夹","Common.Views.SearchPanel.textCaseSensitive":"区分大小写","Common.Views.SearchPanel.textCloseSearch":"关闭搜索","Common.Views.SearchPanel.textContentChanged":"文件已更改。","Common.Views.SearchPanel.textFind":"查找","Common.Views.SearchPanel.textFindAndRedact":"查找并标记密文","Common.Views.SearchPanel.textFindAndReplace":"查找和替换","Common.Views.SearchPanel.textFindRedact":"查找并标记密文","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}个项目已成功替换。","Common.Views.SearchPanel.textMark":"标记密文","Common.Views.SearchPanel.textMarkAll":"全部标记","Common.Views.SearchPanel.textMatchUsingRegExp":"使用正则表达式匹配","Common.Views.SearchPanel.textNoMatches":"找不到匹配信息","Common.Views.SearchPanel.textNoSearchResults":"没有搜索结果","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"已替换{0}/{1}项。其余{2}个项目已被其他用户锁定。","Common.Views.SearchPanel.textReplace":"替换","Common.Views.SearchPanel.textReplaceAll":"全部替换","Common.Views.SearchPanel.textReplaceWith":"替换为","Common.Views.SearchPanel.textSearchAgain":"{0}执行新的搜索{1}以获得准确的结果。","Common.Views.SearchPanel.textSearchHasStopped":"搜索已停止","Common.Views.SearchPanel.textSearchResults":"搜索结果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"搜索结果","Common.Views.SearchPanel.textTooManyResults":"此处显示的结果太多","Common.Views.SearchPanel.textWholeWords":"仅限完整单词","Common.Views.SearchPanel.tipNextResult":"下一个结果","Common.Views.SearchPanel.tipPreviousResult":"上一个结果","Common.Views.SelectFileDlg.textLoading":"载入中","Common.Views.SelectFileDlg.textTitle":"选择数据源","Common.Views.ShapeShadowDialog.txtAngle":"角度","Common.Views.ShapeShadowDialog.txtDistance":"距离","Common.Views.ShapeShadowDialog.txtSize":"大小","Common.Views.ShapeShadowDialog.txtTitle":"调整阴影","Common.Views.ShapeShadowDialog.txtTransparency":"透明度","Common.Views.ShortcutsDialog.txtDescription":"描述","Common.Views.ShortcutsDialog.txtEmpty":"未找到匹配项,请调整搜索条件。","Common.Views.ShortcutsDialog.txtRestoreAll":"将所有设置恢复为默认值","Common.Views.ShortcutsDialog.txtRestoreContinue":"您确定要继续操作吗?","Common.Views.ShortcutsDialog.txtRestoreDescription":"所有快捷键设置将恢复为默认值。","Common.Views.ShortcutsDialog.txtRestoreToDefault":"恢复为默认","Common.Views.ShortcutsDialog.txtSearch":"搜索","Common.Views.ShortcutsDialog.txtTitle":"键盘快捷键","Common.Views.ShortcutsEditDialog.txtAction":"操作","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"输入所需快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"%1操作使用的快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"%1操作使用的快捷键,无法更改","Common.Views.ShortcutsEditDialog.txtInputWarnOne":" %1操作使用的快捷键","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"%1操作使用的快捷键,无法更改","Common.Views.ShortcutsEditDialog.txtNewShortcut":"新建快捷键","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"您确定要继续操作吗?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"“%1”操作的所有快捷键将恢复为默认值。","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"恢复为默认","Common.Views.ShortcutsEditDialog.txtTitle":"编辑快捷键","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"输入所需快捷键","Common.Views.UserNameDialog.textDontShow":"不要再次询问我","Common.Views.UserNameDialog.textLabel":"标签:","Common.Views.UserNameDialog.textLabelError":"标签不能为空。","PDFE.Controllers.InsTab.textAccent":"重音符","PDFE.Controllers.InsTab.textBracket":"括号","PDFE.Controllers.InsTab.textFraction":"分数","PDFE.Controllers.InsTab.textFunction":"函数","PDFE.Controllers.InsTab.textInsert":"插入","PDFE.Controllers.InsTab.textIntegral":"积分","PDFE.Controllers.InsTab.textLargeOperator":"大型运算符","PDFE.Controllers.InsTab.textLimitAndLog":"极限和对数","PDFE.Controllers.InsTab.textMatrix":"矩阵","PDFE.Controllers.InsTab.textOperator":"运算符","PDFE.Controllers.InsTab.textRadical":"根式","PDFE.Controllers.InsTab.textScript":"脚本","PDFE.Controllers.InsTab.textShape":"形状","PDFE.Controllers.InsTab.textSymbols":"符号","PDFE.Controllers.InsTab.txtAccent_Accent":"尖音符","PDFE.Controllers.InsTab.txtAccent_ArrowD":"上方的左右箭头","PDFE.Controllers.InsTab.txtAccent_ArrowL":"上方的左箭头","PDFE.Controllers.InsTab.txtAccent_ArrowR":"上方的向右箭头","PDFE.Controllers.InsTab.txtAccent_Bar":"划线","PDFE.Controllers.InsTab.txtAccent_BarBot":"下划线","PDFE.Controllers.InsTab.txtAccent_BarTop":"上划线","PDFE.Controllers.InsTab.txtAccent_BorderBox":"带方框的公式(包含占位符)","PDFE.Controllers.InsTab.txtAccent_BorderBoxCustom":"带框公式(示例)","PDFE.Controllers.InsTab.txtAccent_Check":"检查","PDFE.Controllers.InsTab.txtAccent_CurveBracketBot":"底括号","PDFE.Controllers.InsTab.txtAccent_CurveBracketTop":"上大括号","PDFE.Controllers.InsTab.txtAccent_Custom_1":"向量 A","PDFE.Controllers.InsTab.txtAccent_Custom_2":"带有上划线的ABC","PDFE.Controllers.InsTab.txtAccent_Custom_3":"x XOR y 带有上横线","PDFE.Controllers.InsTab.txtAccent_DDDot":"三点","PDFE.Controllers.InsTab.txtAccent_DDot":"双点","PDFE.Controllers.InsTab.txtAccent_Dot":"点","PDFE.Controllers.InsTab.txtAccent_DoubleBar":"双重横杠","PDFE.Controllers.InsTab.txtAccent_Grave":"重音符号","PDFE.Controllers.InsTab.txtAccent_GroupBot":"下面的分组字符","PDFE.Controllers.InsTab.txtAccent_GroupTop":"上面的分组字符","PDFE.Controllers.InsTab.txtAccent_HarpoonL":"上方左矢","PDFE.Controllers.InsTab.txtAccent_HarpoonR":"上方的向右箭头","PDFE.Controllers.InsTab.txtAccent_Hat":"帽子","PDFE.Controllers.InsTab.txtAccent_Smile":"短音符","PDFE.Controllers.InsTab.txtAccent_Tilde":"波浪号","PDFE.Controllers.InsTab.txtBasicShapes":"基本形状","PDFE.Controllers.InsTab.txtBracket_Angle":"尖括号","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_2":"带分隔符的尖括号","PDFE.Controllers.InsTab.txtBracket_Angle_Delimiter_3":"带两个分隔符的尖括号","PDFE.Controllers.InsTab.txtBracket_Angle_NoneOpen":"直角括号","PDFE.Controllers.InsTab.txtBracket_Angle_OpenNone":"左尖括号","PDFE.Controllers.InsTab.txtBracket_Curve":"花括号","PDFE.Controllers.InsTab.txtBracket_Curve_Delimiter_2":"带分隔符的花括号","PDFE.Controllers.InsTab.txtBracket_Curve_NoneOpen":"右大括号","PDFE.Controllers.InsTab.txtBracket_Curve_OpenNone":"左大括号","PDFE.Controllers.InsTab.txtBracket_Custom_1":"案例(两种情况)","PDFE.Controllers.InsTab.txtBracket_Custom_2":"案例(三种情况)","PDFE.Controllers.InsTab.txtBracket_Custom_3":"堆栈对象","PDFE.Controllers.InsTab.txtBracket_Custom_4":"括号中的堆栈对象","PDFE.Controllers.InsTab.txtBracket_Custom_5":"案例示例","PDFE.Controllers.InsTab.txtBracket_Custom_6":"二项式系数","PDFE.Controllers.InsTab.txtBracket_Custom_7":"尖括号中的二项式系数","PDFE.Controllers.InsTab.txtBracket_Line":"竖线","PDFE.Controllers.InsTab.txtBracket_Line_NoneOpen":"右竖线","PDFE.Controllers.InsTab.txtBracket_Line_OpenNone":"左侧竖线","PDFE.Controllers.InsTab.txtBracket_LineDouble":"双竖条","PDFE.Controllers.InsTab.txtBracket_LineDouble_NoneOpen":"右侧双竖线","PDFE.Controllers.InsTab.txtBracket_LineDouble_OpenNone":"左双竖线","PDFE.Controllers.InsTab.txtBracket_LowLim":"底部整数","PDFE.Controllers.InsTab.txtBracket_LowLim_NoneNone":"右flooor ","PDFE.Controllers.InsTab.txtBracket_LowLim_OpenNone":"左侧floor","PDFE.Controllers.InsTab.txtBracket_Round":"圆括号","PDFE.Controllers.InsTab.txtBracket_Round_Delimiter_2":"带分隔符的括号","PDFE.Controllers.InsTab.txtBracket_Round_NoneOpen":"右括号","PDFE.Controllers.InsTab.txtBracket_Round_OpenNone":"左括号","PDFE.Controllers.InsTab.txtBracket_Square":"方括号","PDFE.Controllers.InsTab.txtBracket_Square_CloseClose":"两个右方括号之间的占位符","PDFE.Controllers.InsTab.txtBracket_Square_CloseOpen":"倒置方括号","PDFE.Controllers.InsTab.txtBracket_Square_NoneOpen":"右侧方括号","PDFE.Controllers.InsTab.txtBracket_Square_OpenNone":"左方括号","PDFE.Controllers.InsTab.txtBracket_Square_OpenOpen":"两个左方括号之间的占位符","PDFE.Controllers.InsTab.txtBracket_SquareDouble":"双方括号","PDFE.Controllers.InsTab.txtBracket_SquareDouble_NoneOpen":"右侧双方括号","PDFE.Controllers.InsTab.txtBracket_SquareDouble_OpenNone":"左双方括号","PDFE.Controllers.InsTab.txtBracket_UppLim":"天花板","PDFE.Controllers.InsTab.txtBracket_UppLim_NoneOpen":"右ceiling","PDFE.Controllers.InsTab.txtBracket_UppLim_OpenNone":"左侧ceiling","PDFE.Controllers.InsTab.txtButtons":"按钮","PDFE.Controllers.InsTab.txtCallouts":"标注","PDFE.Controllers.InsTab.txtCharts":"图表","PDFE.Controllers.InsTab.txtFiguredArrows":"图形箭头","PDFE.Controllers.InsTab.txtFractionDiagonal":"倾斜分数","PDFE.Controllers.InsTab.txtFractionDifferential_1":"dx 除以 dy","PDFE.Controllers.InsTab.txtFractionDifferential_2":"Δy 除以 Δx","PDFE.Controllers.InsTab.txtFractionDifferential_3":"偏微分 y 对偏微分 x","PDFE.Controllers.InsTab.txtFractionDifferential_4":"Δx 除以 Δy","PDFE.Controllers.InsTab.txtFractionHorizontal":"线性分数","PDFE.Controllers.InsTab.txtFractionPi_2":"Pi除以2","PDFE.Controllers.InsTab.txtFractionSmall":"小分数","PDFE.Controllers.InsTab.txtFractionVertical":"堆积分数","PDFE.Controllers.InsTab.txtFunction_1_Cos":"反余弦函数","PDFE.Controllers.InsTab.txtFunction_1_Cosh":"双曲反余弦函数","PDFE.Controllers.InsTab.txtFunction_1_Cot":"反余切函数","PDFE.Controllers.InsTab.txtFunction_1_Coth":"双曲反余切函数","PDFE.Controllers.InsTab.txtFunction_1_Csc":"反余割函数","PDFE.Controllers.InsTab.txtFunction_1_Csch":"双曲反余割函数","PDFE.Controllers.InsTab.txtFunction_1_Sec":"反正割函数","PDFE.Controllers.InsTab.txtFunction_1_Sech":"双曲反割线函数","PDFE.Controllers.InsTab.txtFunction_1_Sin":"反正弦函数","PDFE.Controllers.InsTab.txtFunction_1_Sinh":"双曲反正弦函数","PDFE.Controllers.InsTab.txtFunction_1_Tan":"反正切函数","PDFE.Controllers.InsTab.txtFunction_1_Tanh":"双曲反正切函数","PDFE.Controllers.InsTab.txtFunction_Cos":"余弦函数","PDFE.Controllers.InsTab.txtFunction_Cosh":"双曲余弦函数","PDFE.Controllers.InsTab.txtFunction_Cot":"余切函数","PDFE.Controllers.InsTab.txtFunction_Coth":"双曲余切函数","PDFE.Controllers.InsTab.txtFunction_Csc":"余割函数","PDFE.Controllers.InsTab.txtFunction_Csch":"双曲余割函数","PDFE.Controllers.InsTab.txtFunction_Custom_1":"正弦波","PDFE.Controllers.InsTab.txtFunction_Custom_2":"Cos 2x","PDFE.Controllers.InsTab.txtFunction_Custom_3":"正切函数","PDFE.Controllers.InsTab.txtFunction_Sec":"正割函数","PDFE.Controllers.InsTab.txtFunction_Sech":"双曲正割函数","PDFE.Controllers.InsTab.txtFunction_Sin":"正弦函数","PDFE.Controllers.InsTab.txtFunction_Sinh":"双曲正弦函数","PDFE.Controllers.InsTab.txtFunction_Tan":"正切函数","PDFE.Controllers.InsTab.txtFunction_Tanh":"双曲正切函数","PDFE.Controllers.InsTab.txtIntegral":"积分","PDFE.Controllers.InsTab.txtIntegral_dtheta":"微分 θ","PDFE.Controllers.InsTab.txtIntegral_dx":"微分x","PDFE.Controllers.InsTab.txtIntegral_dy":"微分y","PDFE.Controllers.InsTab.txtIntegralCenterSubSup":"与堆叠极限的积分","PDFE.Controllers.InsTab.txtIntegralDouble":"双积分","PDFE.Controllers.InsTab.txtIntegralDoubleCenterSubSup":"具有堆叠极限的二重积分","PDFE.Controllers.InsTab.txtIntegralDoubleSubSup":"带极限的二重积分","PDFE.Controllers.InsTab.txtIntegralOriented":"轮廓积分","PDFE.Controllers.InsTab.txtIntegralOrientedCenterSubSup":"具有堆叠极限的等高线积分","PDFE.Controllers.InsTab.txtIntegralOrientedDouble":"曲面积分","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleCenterSubSup":"带堆叠限制的曲面积分","PDFE.Controllers.InsTab.txtIntegralOrientedDoubleSubSup":"带限制的曲面积分","PDFE.Controllers.InsTab.txtIntegralOrientedSubSup":"带限制的等高线积分","PDFE.Controllers.InsTab.txtIntegralOrientedTriple":"体积积分","PDFE.Controllers.InsTab.txtIntegralOrientedTripleCenterSubSup":"带堆叠限制的体积积分","PDFE.Controllers.InsTab.txtIntegralOrientedTripleSubSup":"带限制的体积积分","PDFE.Controllers.InsTab.txtIntegralSubSup":"带极限的积分","PDFE.Controllers.InsTab.txtIntegralTriple":"三重积分","PDFE.Controllers.InsTab.txtIntegralTripleCenterSubSup":"带堆叠限制的三重积分","PDFE.Controllers.InsTab.txtIntegralTripleSubSup":"带限制的三重积分","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction":"逻辑与","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSub":"带下限的逻辑行","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_CenterSubSup":"带限制的逻辑与","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_Sub":"带下标下限的逻辑行","PDFE.Controllers.InsTab.txtLargeOperator_Conjunction_SubSup":"带上下标限制的逻辑行","PDFE.Controllers.InsTab.txtLargeOperator_CoProd":"联产品","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSub":"有下限的联产品","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_CenterSubSup":"有限制的联产品","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_Sub":"有下标下限的联产品","PDFE.Controllers.InsTab.txtLargeOperator_CoProd_SubSup":"具有下标/上标限制的联共同产品","PDFE.Controllers.InsTab.txtLargeOperator_Custom_1":"对n的k求和选择k","PDFE.Controllers.InsTab.txtLargeOperator_Custom_2":"从i等于0到n的求和","PDFE.Controllers.InsTab.txtLargeOperator_Custom_3":"使用两个索引的求和示例","PDFE.Controllers.InsTab.txtLargeOperator_Custom_4":"乘积示例","PDFE.Controllers.InsTab.txtLargeOperator_Custom_5":"并集示例","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction":"逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSub":"带下限的逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_CenterSubSup":"带限制的逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_Sub":"带下标下限的逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Disjunction_SubSup":"带下标/上标限制的逻辑或","PDFE.Controllers.InsTab.txtLargeOperator_Intersection":"交集","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSub":"带下限的交集","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_CenterSubSup":"带限制的交集","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_Sub":"带下标下限的交集","PDFE.Controllers.InsTab.txtLargeOperator_Intersection_SubSup":"带下标/上标限制的交集","PDFE.Controllers.InsTab.txtLargeOperator_Prod":"乘积","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSub":"带下限的乘积","PDFE.Controllers.InsTab.txtLargeOperator_Prod_CenterSubSup":"带限制的乘积","PDFE.Controllers.InsTab.txtLargeOperator_Prod_Sub":"带下标下限的乘积","PDFE.Controllers.InsTab.txtLargeOperator_Prod_SubSup":"带下标/上标极限的乘积","PDFE.Controllers.InsTab.txtLargeOperator_Sum":"求和","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSub":"带下限的求和","PDFE.Controllers.InsTab.txtLargeOperator_Sum_CenterSubSup":"带限制的求和","PDFE.Controllers.InsTab.txtLargeOperator_Sum_Sub":"带下标下限的求和","PDFE.Controllers.InsTab.txtLargeOperator_Sum_SubSup":"带上下标限制的求和","PDFE.Controllers.InsTab.txtLargeOperator_Union":"并集","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSub":"带下限的并集","PDFE.Controllers.InsTab.txtLargeOperator_Union_CenterSubSup":"带限制的并集","PDFE.Controllers.InsTab.txtLargeOperator_Union_Sub":"带下标下限的并集","PDFE.Controllers.InsTab.txtLargeOperator_Union_SubSup":"带上下标限制的并集","PDFE.Controllers.InsTab.txtLimitLog_Custom_1":"限制范例","PDFE.Controllers.InsTab.txtLimitLog_Custom_2":"最大范例","PDFE.Controllers.InsTab.txtLimitLog_Lim":"限制","PDFE.Controllers.InsTab.txtLimitLog_Ln":"自然对数","PDFE.Controllers.InsTab.txtLimitLog_Log":"对数","PDFE.Controllers.InsTab.txtLimitLog_LogBase":"对数","PDFE.Controllers.InsTab.txtLimitLog_Max":"最大值","PDFE.Controllers.InsTab.txtLimitLog_Min":"最小值","PDFE.Controllers.InsTab.txtLines":"行","PDFE.Controllers.InsTab.txtMath":"数学","PDFE.Controllers.InsTab.txtMatrix_1_2":"1x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_1_3":"1x3空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_1":"2x1空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_2":"2x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_2_DLineBracket":"以双竖线表示的空的2x2矩阵","PDFE.Controllers.InsTab.txtMatrix_2_2_LineBracket":"空的2x2行列式","PDFE.Controllers.InsTab.txtMatrix_2_2_RoundBracket":"带圆括号的2x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_2_SquareBracket":"带方形括号的2x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_2_3":"2x3空矩阵","PDFE.Controllers.InsTab.txtMatrix_3_1":"3x1空矩阵","PDFE.Controllers.InsTab.txtMatrix_3_2":"3x2空矩阵","PDFE.Controllers.InsTab.txtMatrix_3_3":"3x3空矩阵","PDFE.Controllers.InsTab.txtMatrix_Dots_Baseline":"基线点","PDFE.Controllers.InsTab.txtMatrix_Dots_Center":"中线点","PDFE.Controllers.InsTab.txtMatrix_Dots_Diagonal":"对角点","PDFE.Controllers.InsTab.txtMatrix_Dots_Vertical":"垂直点","PDFE.Controllers.InsTab.txtMatrix_Flat_Round":"括号中的稀疏矩阵","PDFE.Controllers.InsTab.txtMatrix_Flat_Square":"括号中的稀疏矩阵","PDFE.Controllers.InsTab.txtMatrix_Identity_2":"2x2带零的单位矩阵","PDFE.Controllers.InsTab.txtMatrix_Identity_2_NoZeros":"除了对角线以外都是空白的2x2单位矩阵","PDFE.Controllers.InsTab.txtMatrix_Identity_3":"3x3含有零的单位矩阵","PDFE.Controllers.InsTab.txtMatrix_Identity_3_NoZeros":"3x3除了对角线以外都是空白的单位矩阵","PDFE.Controllers.InsTab.txtOperator_ArrowD_Bot":"下方的左右箭头","PDFE.Controllers.InsTab.txtOperator_ArrowD_Top":"上方的左右箭头","PDFE.Controllers.InsTab.txtOperator_ArrowL_Bot":"下方的左箭头","PDFE.Controllers.InsTab.txtOperator_ArrowL_Top":"上方的左箭头","PDFE.Controllers.InsTab.txtOperator_ArrowR_Bot":"下方的向右箭头","PDFE.Controllers.InsTab.txtOperator_ArrowR_Top":"上方的向右箭头","PDFE.Controllers.InsTab.txtOperator_ColonEquals":"冒号等号","PDFE.Controllers.InsTab.txtOperator_Custom_1":"统一","PDFE.Controllers.InsTab.txtOperator_Custom_2":"三角形区域","PDFE.Controllers.InsTab.txtOperator_Definition":"等同于定义","PDFE.Controllers.InsTab.txtOperator_DeltaEquals":"Delta 等于","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Bot":"下方的左右双箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowD_Top":"上方的左右双箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Bot":"下方的左箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowL_Top":"上方的左箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Bot":"下方的向右箭头","PDFE.Controllers.InsTab.txtOperator_DoubleArrowR_Top":"上方的向右箭头","PDFE.Controllers.InsTab.txtOperator_EqualsEquals":"等于等于","PDFE.Controllers.InsTab.txtOperator_MinusEquals":"减号等号","PDFE.Controllers.InsTab.txtOperator_PlusEquals":"加号等号","PDFE.Controllers.InsTab.txtOperator_UnitOfMeasure":"测量者","PDFE.Controllers.InsTab.txtRadicalCustom_1":"二次方程式的右侧","PDFE.Controllers.InsTab.txtRadicalCustom_2":"a的平方加b的平方的平方根","PDFE.Controllers.InsTab.txtRadicalRoot_2":"带次数的平方根","PDFE.Controllers.InsTab.txtRadicalRoot_3":"立方根","PDFE.Controllers.InsTab.txtRadicalRoot_n":"开n次根号","PDFE.Controllers.InsTab.txtRadicalSqrt":"平方根","PDFE.Controllers.InsTab.txtRectangles":"矩形","PDFE.Controllers.InsTab.txtScriptCustom_1":"x下标y的平方","PDFE.Controllers.InsTab.txtScriptCustom_2":"e 的负 i omega t 次方","PDFE.Controllers.InsTab.txtScriptCustom_3":"x 的平方","PDFE.Controllers.InsTab.txtScriptCustom_4":"Y左上标n左下标1","PDFE.Controllers.InsTab.txtScriptSub":"下标","PDFE.Controllers.InsTab.txtScriptSubSup":"下标-上标","PDFE.Controllers.InsTab.txtScriptSubSupLeft":"左下标上标","PDFE.Controllers.InsTab.txtScriptSup":"上标","PDFE.Controllers.InsTab.txtShape_accentBorderCallout1":"线形标注1(带边框和强调线)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout2":"线形标注2(带边框和强调线)","PDFE.Controllers.InsTab.txtShape_accentBorderCallout3":"线形标注3(带边框和强调线)","PDFE.Controllers.InsTab.txtShape_accentCallout1":"线形标注1(强调线)","PDFE.Controllers.InsTab.txtShape_accentCallout2":"线形标注2(强调线)","PDFE.Controllers.InsTab.txtShape_accentCallout3":"线形标注3(强调线)","PDFE.Controllers.InsTab.txtShape_actionButtonBackPrevious":"返回或上一步按钮","PDFE.Controllers.InsTab.txtShape_actionButtonBeginning":"开始按钮","PDFE.Controllers.InsTab.txtShape_actionButtonBlank":"空白按钮","PDFE.Controllers.InsTab.txtShape_actionButtonDocument":"文档按钮","PDFE.Controllers.InsTab.txtShape_actionButtonEnd":"结束按钮","PDFE.Controllers.InsTab.txtShape_actionButtonForwardNext":"“前进”或“下一步”按钮","PDFE.Controllers.InsTab.txtShape_actionButtonHelp":"帮助按钮","PDFE.Controllers.InsTab.txtShape_actionButtonHome":"主页按钮","PDFE.Controllers.InsTab.txtShape_actionButtonInformation":"信息按钮","PDFE.Controllers.InsTab.txtShape_actionButtonMovie":"电影按钮","PDFE.Controllers.InsTab.txtShape_actionButtonReturn":"返回按钮","PDFE.Controllers.InsTab.txtShape_actionButtonSound":"声音按钮","PDFE.Controllers.InsTab.txtShape_arc":"弧","PDFE.Controllers.InsTab.txtShape_bentArrow":"弯曲箭头","PDFE.Controllers.InsTab.txtShape_bentConnector5":"弯头连接器","PDFE.Controllers.InsTab.txtShape_bentConnector5WithArrow":"弯头箭头连接器","PDFE.Controllers.InsTab.txtShape_bentConnector5WithTwoArrows":"弯头双箭头连接器","PDFE.Controllers.InsTab.txtShape_bentUpArrow":"向上弯曲箭头","PDFE.Controllers.InsTab.txtShape_bevel":"斜角","PDFE.Controllers.InsTab.txtShape_blockArc":"空心弧","PDFE.Controllers.InsTab.txtShape_borderCallout1":"线形标注1","PDFE.Controllers.InsTab.txtShape_borderCallout2":"线形标注2","PDFE.Controllers.InsTab.txtShape_borderCallout3":"线形标注3","PDFE.Controllers.InsTab.txtShape_bracePair":"双花括号","PDFE.Controllers.InsTab.txtShape_callout1":"线形标注1(无边框)","PDFE.Controllers.InsTab.txtShape_callout2":"线形标注2(无边框)","PDFE.Controllers.InsTab.txtShape_callout3":"线形标注3(无边框)","PDFE.Controllers.InsTab.txtShape_can":"罐装","PDFE.Controllers.InsTab.txtShape_chevron":"V形","PDFE.Controllers.InsTab.txtShape_chord":"弦","PDFE.Controllers.InsTab.txtShape_circularArrow":"圆形箭头","PDFE.Controllers.InsTab.txtShape_cloud":"云","PDFE.Controllers.InsTab.txtShape_cloudCallout":"云标注","PDFE.Controllers.InsTab.txtShape_corner":"角","PDFE.Controllers.InsTab.txtShape_cube":"立方体","PDFE.Controllers.InsTab.txtShape_curvedConnector3":"弯曲连接器","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithArrow":"弯曲箭头连接器","PDFE.Controllers.InsTab.txtShape_curvedConnector3WithTwoArrows":"弯曲双箭头连接器","PDFE.Controllers.InsTab.txtShape_curvedDownArrow":"向下弯曲箭头","PDFE.Controllers.InsTab.txtShape_curvedLeftArrow":"弯曲左箭头","PDFE.Controllers.InsTab.txtShape_curvedRightArrow":"弯曲右箭头","PDFE.Controllers.InsTab.txtShape_curvedUpArrow":"向上弯曲箭头","PDFE.Controllers.InsTab.txtShape_decagon":"十边形","PDFE.Controllers.InsTab.txtShape_diagStripe":"对角线条纹","PDFE.Controllers.InsTab.txtShape_diamond":"菱形","PDFE.Controllers.InsTab.txtShape_dodecagon":"十二边形","PDFE.Controllers.InsTab.txtShape_donut":"圆环图","PDFE.Controllers.InsTab.txtShape_doubleWave":"双波浪线","PDFE.Controllers.InsTab.txtShape_downArrow":"向下箭头","PDFE.Controllers.InsTab.txtShape_downArrowCallout":"下箭头标注","PDFE.Controllers.InsTab.txtShape_ellipse":"椭圆","PDFE.Controllers.InsTab.txtShape_ellipseRibbon":"向下弯曲的丝带","PDFE.Controllers.InsTab.txtShape_ellipseRibbon2":"向上弯曲缎带","PDFE.Controllers.InsTab.txtShape_flowChartAlternateProcess":"流程图:交替流程","PDFE.Controllers.InsTab.txtShape_flowChartCollate":"流程图:整理","PDFE.Controllers.InsTab.txtShape_flowChartConnector":"流程图:连接器","PDFE.Controllers.InsTab.txtShape_flowChartDecision":"流程图:决策","PDFE.Controllers.InsTab.txtShape_flowChartDelay":"流程图:延迟","PDFE.Controllers.InsTab.txtShape_flowChartDisplay":"流程图:显示","PDFE.Controllers.InsTab.txtShape_flowChartDocument":"流程图:文件","PDFE.Controllers.InsTab.txtShape_flowChartExtract":"流程图:提取","PDFE.Controllers.InsTab.txtShape_flowChartInputOutput":"流程图:数据","PDFE.Controllers.InsTab.txtShape_flowChartInternalStorage":"流程图:内部存储","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDisk":"流程图:磁盘","PDFE.Controllers.InsTab.txtShape_flowChartMagneticDrum":"流程图:直接访问存储器","PDFE.Controllers.InsTab.txtShape_flowChartMagneticTape":"流程图:顺序访问存储器","PDFE.Controllers.InsTab.txtShape_flowChartManualInput":"流程图:手动输入","PDFE.Controllers.InsTab.txtShape_flowChartManualOperation":"流程图:手动操作","PDFE.Controllers.InsTab.txtShape_flowChartMerge":"流程图:合并","PDFE.Controllers.InsTab.txtShape_flowChartMultidocument":"流程图:多文件","PDFE.Controllers.InsTab.txtShape_flowChartOffpageConnector":"流程图:页外连接器","PDFE.Controllers.InsTab.txtShape_flowChartOnlineStorage":"流程图:存储的数据","PDFE.Controllers.InsTab.txtShape_flowChartOr":"流程图:或","PDFE.Controllers.InsTab.txtShape_flowChartPredefinedProcess":"流程图:预定义程序","PDFE.Controllers.InsTab.txtShape_flowChartPreparation":"流程图:准备","PDFE.Controllers.InsTab.txtShape_flowChartProcess":"流程图:流程","PDFE.Controllers.InsTab.txtShape_flowChartPunchedCard":"流程图:卡片","PDFE.Controllers.InsTab.txtShape_flowChartPunchedTape":"流程图:穿孔纸带","PDFE.Controllers.InsTab.txtShape_flowChartSort":"流程图:排序","PDFE.Controllers.InsTab.txtShape_flowChartSummingJunction":"流程图:求和结点","PDFE.Controllers.InsTab.txtShape_flowChartTerminator":"流程图:终止符","PDFE.Controllers.InsTab.txtShape_foldedCorner":"折角","PDFE.Controllers.InsTab.txtShape_frame":"框","PDFE.Controllers.InsTab.txtShape_halfFrame":"半框","PDFE.Controllers.InsTab.txtShape_heart":"心形","PDFE.Controllers.InsTab.txtShape_heptagon":"七边形","PDFE.Controllers.InsTab.txtShape_hexagon":"六边形","PDFE.Controllers.InsTab.txtShape_homePlate":"五角形","PDFE.Controllers.InsTab.txtShape_horizontalScroll":"水平滚动","PDFE.Controllers.InsTab.txtShape_irregularSeal1":"爆炸效果1","PDFE.Controllers.InsTab.txtShape_irregularSeal2":"爆炸效果2","PDFE.Controllers.InsTab.txtShape_leftArrow":"左箭头","PDFE.Controllers.InsTab.txtShape_leftArrowCallout":"左箭头标注","PDFE.Controllers.InsTab.txtShape_leftBrace":"左括号","PDFE.Controllers.InsTab.txtShape_leftBracket":"左括号","PDFE.Controllers.InsTab.txtShape_leftRightArrow":"左右箭头","PDFE.Controllers.InsTab.txtShape_leftRightArrowCallout":"左右箭头标注","PDFE.Controllers.InsTab.txtShape_leftRightUpArrow":"左右向上箭头","PDFE.Controllers.InsTab.txtShape_leftUpArrow":"左上箭头","PDFE.Controllers.InsTab.txtShape_lightningBolt":"闪电符号","PDFE.Controllers.InsTab.txtShape_line":"线条","PDFE.Controllers.InsTab.txtShape_lineWithArrow":"箭头","PDFE.Controllers.InsTab.txtShape_lineWithTwoArrows":"双箭头","PDFE.Controllers.InsTab.txtShape_mathDivide":"除法","PDFE.Controllers.InsTab.txtShape_mathEqual":"等于","PDFE.Controllers.InsTab.txtShape_mathMinus":"减去","PDFE.Controllers.InsTab.txtShape_mathMultiply":"乘","PDFE.Controllers.InsTab.txtShape_mathNotEqual":"不等于","PDFE.Controllers.InsTab.txtShape_mathPlus":"加","PDFE.Controllers.InsTab.txtShape_moon":"月亮","PDFE.Controllers.InsTab.txtShape_noSmoking":"“否”符号","PDFE.Controllers.InsTab.txtShape_notchedRightArrow":"带凹口的右箭头","PDFE.Controllers.InsTab.txtShape_octagon":"八边形","PDFE.Controllers.InsTab.txtShape_parallelogram":"平行四边形","PDFE.Controllers.InsTab.txtShape_pentagon":"五角形","PDFE.Controllers.InsTab.txtShape_pie":"圆饼图","PDFE.Controllers.InsTab.txtShape_plaque":"签署","PDFE.Controllers.InsTab.txtShape_plus":"加","PDFE.Controllers.InsTab.txtShape_polyline1":"涂鸦","PDFE.Controllers.InsTab.txtShape_polyline2":"自由变形","PDFE.Controllers.InsTab.txtShape_quadArrow":"四向箭头","PDFE.Controllers.InsTab.txtShape_quadArrowCallout":"四箭头标注","PDFE.Controllers.InsTab.txtShape_rect":"矩形","PDFE.Controllers.InsTab.txtShape_ribbon":"向下丝带","PDFE.Controllers.InsTab.txtShape_ribbon2":"向上丝带","PDFE.Controllers.InsTab.txtShape_rightArrow":"右箭头","PDFE.Controllers.InsTab.txtShape_rightArrowCallout":"右箭头标注","PDFE.Controllers.InsTab.txtShape_rightBrace":"右大括号","PDFE.Controllers.InsTab.txtShape_rightBracket":"右方括弧","PDFE.Controllers.InsTab.txtShape_round1Rect":"圆形单角矩形","PDFE.Controllers.InsTab.txtShape_round2DiagRect":"圆斜角矩形","PDFE.Controllers.InsTab.txtShape_round2SameRect":"圆形同侧角矩形","PDFE.Controllers.InsTab.txtShape_roundRect":"圆角矩形","PDFE.Controllers.InsTab.txtShape_rtTriangle":"直角三角形","PDFE.Controllers.InsTab.txtShape_smileyFace":"笑脸","PDFE.Controllers.InsTab.txtShape_snip1Rect":"剪下单角矩形","PDFE.Controllers.InsTab.txtShape_snip2DiagRect":"减去对角矩形","PDFE.Controllers.InsTab.txtShape_snip2SameRect":"剪下同一边角矩形","PDFE.Controllers.InsTab.txtShape_snipRoundRect":"减去和圆形单角矩形","PDFE.Controllers.InsTab.txtShape_spline":"曲线","PDFE.Controllers.InsTab.txtShape_star10":"10角星","PDFE.Controllers.InsTab.txtShape_star12":"12 角星形","PDFE.Controllers.InsTab.txtShape_star16":"16角星","PDFE.Controllers.InsTab.txtShape_star24":"24角星","PDFE.Controllers.InsTab.txtShape_star32":"32角星","PDFE.Controllers.InsTab.txtShape_star4":"4角星","PDFE.Controllers.InsTab.txtShape_star5":"5角星","PDFE.Controllers.InsTab.txtShape_star6":"6角星","PDFE.Controllers.InsTab.txtShape_star7":"7角星","PDFE.Controllers.InsTab.txtShape_star8":"8角星","PDFE.Controllers.InsTab.txtShape_stripedRightArrow":"条纹右箭头","PDFE.Controllers.InsTab.txtShape_sun":"太阳","PDFE.Controllers.InsTab.txtShape_teardrop":"泪滴形状","PDFE.Controllers.InsTab.txtShape_textRect":"文本框","PDFE.Controllers.InsTab.txtShape_trapezoid":"梯形","PDFE.Controllers.InsTab.txtShape_triangle":"三角形","PDFE.Controllers.InsTab.txtShape_upArrow":"向上箭头","PDFE.Controllers.InsTab.txtShape_upArrowCallout":"向上箭头标注","PDFE.Controllers.InsTab.txtShape_upDownArrow":"上下箭头","PDFE.Controllers.InsTab.txtShape_uturnArrow":"U形转弯箭头","PDFE.Controllers.InsTab.txtShape_verticalScroll":"垂直滚动","PDFE.Controllers.InsTab.txtShape_wave":"波浪","PDFE.Controllers.InsTab.txtShape_wedgeEllipseCallout":"椭圆形标注","PDFE.Controllers.InsTab.txtShape_wedgeRectCallout":"矩形标注","PDFE.Controllers.InsTab.txtShape_wedgeRoundRectCallout":"圆角矩形标注","PDFE.Controllers.InsTab.txtStarsRibbons":"星星和丝带","PDFE.Controllers.InsTab.txtSymbol_about":"大约","PDFE.Controllers.InsTab.txtSymbol_additional":"补充","PDFE.Controllers.InsTab.txtSymbol_aleph":"Alef","PDFE.Controllers.InsTab.txtSymbol_alpha":"Αlpha","PDFE.Controllers.InsTab.txtSymbol_approx":"几乎等于","PDFE.Controllers.InsTab.txtSymbol_ast":"星号运算符","PDFE.Controllers.InsTab.txtSymbol_beta":"测试版","PDFE.Controllers.InsTab.txtSymbol_beth":"Bet","PDFE.Controllers.InsTab.txtSymbol_bullet":"项目符号运算符","PDFE.Controllers.InsTab.txtSymbol_cap":"交集","PDFE.Controllers.InsTab.txtSymbol_cbrt":"立方根","PDFE.Controllers.InsTab.txtSymbol_cdots":"中线水平省略号","PDFE.Controllers.InsTab.txtSymbol_celsius":"摄氏度","PDFE.Controllers.InsTab.txtSymbol_chi":"Chi","PDFE.Controllers.InsTab.txtSymbol_cong":"约等于","PDFE.Controllers.InsTab.txtSymbol_cup":"并集","PDFE.Controllers.InsTab.txtSymbol_ddots":"向右对角线省略号","PDFE.Controllers.InsTab.txtSymbol_degree":"度","PDFE.Controllers.InsTab.txtSymbol_delta":"Delta","PDFE.Controllers.InsTab.txtSymbol_div":"除号","PDFE.Controllers.InsTab.txtSymbol_downarrow":"向下箭头","PDFE.Controllers.InsTab.txtSymbol_emptyset":"空集","PDFE.Controllers.InsTab.txtSymbol_epsilon":"Epsilon","PDFE.Controllers.InsTab.txtSymbol_equals":"等于","PDFE.Controllers.InsTab.txtSymbol_equiv":"相同于","PDFE.Controllers.InsTab.txtSymbol_eta":"Eta","PDFE.Controllers.InsTab.txtSymbol_exists":"存在","PDFE.Controllers.InsTab.txtSymbol_factorial":"阶乘","PDFE.Controllers.InsTab.txtSymbol_fahrenheit":"华氏度","PDFE.Controllers.InsTab.txtSymbol_forall":"全部","PDFE.Controllers.InsTab.txtSymbol_gamma":"Gamma","PDFE.Controllers.InsTab.txtSymbol_geq":"大于或等于","PDFE.Controllers.InsTab.txtSymbol_gg":"远大于","PDFE.Controllers.InsTab.txtSymbol_greater":"大于","PDFE.Controllers.InsTab.txtSymbol_in":"元素","PDFE.Controllers.InsTab.txtSymbol_inc":"增量","PDFE.Controllers.InsTab.txtSymbol_infinity":"无限","PDFE.Controllers.InsTab.txtSymbol_iota":"Iota","PDFE.Controllers.InsTab.txtSymbol_kappa":"卡帕","PDFE.Controllers.InsTab.txtSymbol_lambda":"Lambda","PDFE.Controllers.InsTab.txtSymbol_leftarrow":"左箭头","PDFE.Controllers.InsTab.txtSymbol_leftrightarrow":"左右箭头","PDFE.Controllers.InsTab.txtSymbol_leq":"小于或等于","PDFE.Controllers.InsTab.txtSymbol_less":"小于","PDFE.Controllers.InsTab.txtSymbol_ll":"远小于","PDFE.Controllers.InsTab.txtSymbol_minus":"减去","PDFE.Controllers.InsTab.txtSymbol_mp":"减号加","PDFE.Controllers.InsTab.txtSymbol_mu":"亩","PDFE.Controllers.InsTab.txtSymbol_nabla":"Nabla","PDFE.Controllers.InsTab.txtSymbol_neq":"不等于","PDFE.Controllers.InsTab.txtSymbol_ni":"包含为成员","PDFE.Controllers.InsTab.txtSymbol_not":"不签名","PDFE.Controllers.InsTab.txtSymbol_notexists":"不存在","PDFE.Controllers.InsTab.txtSymbol_nu":"Nu","PDFE.Controllers.InsTab.txtSymbol_o":"Omicron","PDFE.Controllers.InsTab.txtSymbol_omega":"Omega","PDFE.Controllers.InsTab.txtSymbol_partial":"偏微分","PDFE.Controllers.InsTab.txtSymbol_percent":"百分比","PDFE.Controllers.InsTab.txtSymbol_phi":"Phi","PDFE.Controllers.InsTab.txtSymbol_pi":"Pi","PDFE.Controllers.InsTab.txtSymbol_plus":"加","PDFE.Controllers.InsTab.txtSymbol_pm":"加减","PDFE.Controllers.InsTab.txtSymbol_propto":"比例缩放为","PDFE.Controllers.InsTab.txtSymbol_psi":"Ψ(希腊字母Psi)","PDFE.Controllers.InsTab.txtSymbol_qdrt":"四次方根","PDFE.Controllers.InsTab.txtSymbol_qed":"校验结束","PDFE.Controllers.InsTab.txtSymbol_rddots":"向右对角线省略号","PDFE.Controllers.InsTab.txtSymbol_rho":"Rho希腊字母\"ρ\"","PDFE.Controllers.InsTab.txtSymbol_rightarrow":"右箭头","PDFE.Controllers.InsTab.txtSymbol_sigma":"Sigma","PDFE.Controllers.InsTab.txtSymbol_sqrt":"根号","PDFE.Controllers.InsTab.txtSymbol_tau":"Tau","PDFE.Controllers.InsTab.txtSymbol_therefore":"因此","PDFE.Controllers.InsTab.txtSymbol_theta":"Theta","PDFE.Controllers.InsTab.txtSymbol_times":"乘法符号","PDFE.Controllers.InsTab.txtSymbol_uparrow":"向上箭头","PDFE.Controllers.InsTab.txtSymbol_upsilon":"Upsilon","PDFE.Controllers.InsTab.txtSymbol_varepsilon":"Epsilon变体","PDFE.Controllers.InsTab.txtSymbol_varphi":"Phi 变体","PDFE.Controllers.InsTab.txtSymbol_varpi":"Pi变体","PDFE.Controllers.InsTab.txtSymbol_varrho":"Rho 变量","PDFE.Controllers.InsTab.txtSymbol_varsigma":"Sigma变量","PDFE.Controllers.InsTab.txtSymbol_vartheta":"Theta 变量","PDFE.Controllers.InsTab.txtSymbol_vdots":"垂直省略号","PDFE.Controllers.InsTab.txtSymbol_xsi":"Xi","PDFE.Controllers.InsTab.txtSymbol_zeta":"Zeta","PDFE.Controllers.LeftMenu.leavePageText":"此文档中所有未保存的更改都将丢失
单击“取消”,然后单击“保存”以保存它们。单击“确定”放弃所有未保存的更改。","PDFE.Controllers.LeftMenu.newDocumentTitle":"未命名的文档","PDFE.Controllers.LeftMenu.notcriticalErrorTitle":"警告","PDFE.Controllers.LeftMenu.requestEditRightsText":"正在请求编辑权限...","PDFE.Controllers.LeftMenu.textLoadHistory":"Loading version history...","PDFE.Controllers.LeftMenu.textNoTextFound":"您搜索的数据无法找到。请调整您的搜索选项。","PDFE.Controllers.LeftMenu.textSelectPath":"输入保存文件副本的路径","PDFE.Controllers.LeftMenu.txtCompatible":"文档将保存为新格式。它将允许使用所有编辑器功能,但可能会影响文档布局
如果要使文件与旧的MS Word版本兼容,请使用高级设置的“兼容性”选项。","PDFE.Controllers.LeftMenu.txtUntitled":"无标题","PDFE.Controllers.LeftMenu.warnDownloadAs":"如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?","PDFE.Controllers.LeftMenu.warnDownloadAsPdf":"您的{0}将被转换为可编辑格式。这可能需要一段时间。生成的文档将进行优化以允许您编辑文本,因此它可能与原始{0}不完全相同,尤其是在原始文件包含大量图形的情况下。","PDFE.Controllers.LeftMenu.warnDownloadAsRTF":"如果您继续以此格式保存,某些格式可能会丢失。
您确定要继续吗?","PDFE.Controllers.Main.applyChangesTextText":"载入更改...","PDFE.Controllers.Main.applyChangesTitleText":"加载更改","PDFE.Controllers.Main.confirmMaxChangesSize":"您执行的操作超过了为服务器设置的大小限制
按“撤消”取消上次操作,或按“继续”在本地机器继续操作(您需要下载文件或复制其内容以确保不会丢失任何内容)。","PDFE.Controllers.Main.convertationTimeoutText":"转换超时","PDFE.Controllers.Main.criticalErrorExtText":"按“确定”返回该文件列表。","PDFE.Controllers.Main.criticalErrorExtTextClose":"点击“确定”关闭编辑器。","PDFE.Controllers.Main.criticalErrorTitle":"错误","PDFE.Controllers.Main.downloadErrorText":"下载失败","PDFE.Controllers.Main.downloadMergeText":"下载中…","PDFE.Controllers.Main.downloadMergeTitle":"下载中","PDFE.Controllers.Main.downloadTextText":"正在下载文件...","PDFE.Controllers.Main.downloadTitleText":"正在下载文件","PDFE.Controllers.Main.errorAccessDeny":"您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员.","PDFE.Controllers.Main.errorBadImageUrl":"图片URL地址不正确","PDFE.Controllers.Main.errorCannotPasteImg":"我们无法从剪贴板粘贴此图像,但您可以将其保存到您的设备,然后\n从那里插入此此图片,或者您可以复制图像(不带文本)并将其粘贴到文档中。","PDFE.Controllers.Main.errorCoAuthoringDisconnect":"服务器连接失败。该文档现在无法编辑","PDFE.Controllers.Main.errorComboSeries":"若要创建组合图表,请至少选择两个系列的数据。","PDFE.Controllers.Main.errorConnectToServer":"这份文件无法保存。请检查连接设置或联系您的管理员。
当你点击“OK”按钮,系统将提示您下载文档。","PDFE.Controllers.Main.errorCopyDisabled":"出于安全原因,无法复制本文档中的内容。","PDFE.Controllers.Main.errorDatabaseConnection":"外部错误。
数据库连接错误。如果错误仍然存​​在,请联系支持人员。","PDFE.Controllers.Main.errorDataEncrypted":"加密更改已收到,无法对其解密。","PDFE.Controllers.Main.errorDataRange":"数据范围不正确","PDFE.Controllers.Main.errorDefaultMessage":"错误代码:%1","PDFE.Controllers.Main.errorDirectUrl":"请验证指向文档的链接
此链接必须是要下载的文档的直接链接。","PDFE.Controllers.Main.errorEditingDownloadas":"使用文档时出错
使用“下载为”选项将文件备份副本保存到驱动器。","PDFE.Controllers.Main.errorEditingSaveas":"使用文档时出错
使用“另存为…”选项将文件备份副本保存到驱动器。","PDFE.Controllers.Main.errorEmailClient":"找不到电子邮件客户端。","PDFE.Controllers.Main.errorFilePassProtect":"该文档受密码保护,无法被打开。","PDFE.Controllers.Main.errorFileSizeExceed":"文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。","PDFE.Controllers.Main.errorForceSave":"保存文件时出错。请使用“下载为”选项将文件保存到驱动器,或稍后再试。","PDFE.Controllers.Main.errorInconsistentExt":"打开文件时出错
文件内容与文件扩展名不匹配。","PDFE.Controllers.Main.errorInconsistentExtDocx":"打开文件时出错
文件内容对应于文本文档(例如docx),但文件的扩展名不一致:%1。","PDFE.Controllers.Main.errorInconsistentExtPdf":"打开文件时出错
文件内容对应于以下格式之一:pdf/djvu/xps/oxfs,但文件的扩展名不一致:%1。","PDFE.Controllers.Main.errorInconsistentExtPptx":"打开文件时出错
文件内容对应于演示文稿(例如pptx),但文件的扩展名不一致:%1。","PDFE.Controllers.Main.errorInconsistentExtXlsx":"打开文件时出错
文件内容对应于电子表格(例如xlsx),但文件的扩展名不一致:%1。","PDFE.Controllers.Main.errorKeyEncrypt":"未知密钥描述符","PDFE.Controllers.Main.errorKeyExpire":"密钥描述符已过期","PDFE.Controllers.Main.errorLoadingFont":"字体未加载
请与您的文档服务器管理员联系。","PDFE.Controllers.Main.errorPasswordIsNotCorrect":"您提供的密码不正确
验证CAPS LOCK键是否关闭,并确保使用正确的大写字母。","PDFE.Controllers.Main.errorPDFFormsLocked":"该操作无法执行,因为它会对已锁定的表单造成更改。","PDFE.Controllers.Main.errorSaveWatermark":"该文件包含来自其他域名的水印图片。
要在 PDF 中显示水印,请将图片链接更新为与文档相同的域名,或从电脑上传图片。","PDFE.Controllers.Main.errorServerVersion":"编辑器版本已更新。页面将被重新加载以应用更改。","PDFE.Controllers.Main.errorSessionAbsolute":"文档编辑会话已过期。请重新加载页面","PDFE.Controllers.Main.errorSessionIdle":"这份文件已经很长时间没有编辑了。请重新加载页面。","PDFE.Controllers.Main.errorSessionToken":"与服务器的连接已中断。请重新加载页面。","PDFE.Controllers.Main.errorSetPassword":"无法设置密码。","PDFE.Controllers.Main.errorStockChart":"行顺序不正确,要建立股票图表,将数据按照以下顺序放置在表格上:
开盘价,最高价格,最低价格,收盘价。","PDFE.Controllers.Main.errorTextFormWrongFormat":"输入的值与字段的格式不匹配。","PDFE.Controllers.Main.errorToken":"文档安全令牌的格式不正确
请与您的文档服务器管理员联系。","PDFE.Controllers.Main.errorTokenExpire":"文档安全令牌已过期。
请与您的文档服务器管理员联系。","PDFE.Controllers.Main.errorUpdateVersion":"\n该文件版本已经改变了。该页面将被重新加载。","PDFE.Controllers.Main.errorUpdateVersionOnDisconnect":"网络连接已恢复,文件版本已更改
在继续工作之前,您需要下载文件或复制其内容以确保不会丢失任何内容,然后重新加载此页面。","PDFE.Controllers.Main.errorUserDrop":"该文件现在无法访问。","PDFE.Controllers.Main.errorUsersExceed":"超出原服务计划可允许的帐户数量","PDFE.Controllers.Main.errorViewerDisconnect":"连接失败。您仍然可以查看文档
,但在连接恢复之前无法下载或打印。","PDFE.Controllers.Main.leavePageText":"您在本文档中有未保存的更改。点击“留在这个页面”,然后点击“保存”保存。点击“离开此页面”,放弃所有未保存的更改。","PDFE.Controllers.Main.leavePageTextOnClose":"此文档中所有未保存的更改都将丢失
单击“取消”,然后单击“保存”以保存它们。单击“确定”放弃所有未保存的更改。","PDFE.Controllers.Main.loadFontsTextText":"数据加载中…","PDFE.Controllers.Main.loadFontsTitleText":"数据加载中","PDFE.Controllers.Main.loadFontTextText":"数据加载中…","PDFE.Controllers.Main.loadFontTitleText":"数据加载中","PDFE.Controllers.Main.loadImagesTextText":"图片加载中…","PDFE.Controllers.Main.loadImagesTitleText":"图片加载中","PDFE.Controllers.Main.loadImageTextText":"图片加载中…","PDFE.Controllers.Main.loadImageTitleText":"图片加载中","PDFE.Controllers.Main.loadingDocumentTextText":"文件加载中…","PDFE.Controllers.Main.loadingDocumentTitleText":"文件加载中…","PDFE.Controllers.Main.notcriticalErrorTitle":"警告","PDFE.Controllers.Main.openErrorText":"打开文件时发生错误","PDFE.Controllers.Main.openTextText":"正在打开文档...","PDFE.Controllers.Main.openTitleText":"正在打开文件","PDFE.Controllers.Main.printTextText":"正在列印文件...","PDFE.Controllers.Main.printTitleText":"正在打印文件","PDFE.Controllers.Main.reloadButtonText":"重新加载页面","PDFE.Controllers.Main.requestEditFailedMessageText":"有人正在编辑此文档。请稍后再试。","PDFE.Controllers.Main.requestEditFailedTitleText":"访问被拒绝","PDFE.Controllers.Main.saveErrorText":"保存文件时发生错误","PDFE.Controllers.Main.saveErrorTextDesktop":"无法保存或创建此文件
可能的原因有:
1.该文件是只读的
2.其他用户正在编辑该文件
3.磁盘已满或已损坏。","PDFE.Controllers.Main.saveTextText":"正在保存文档...","PDFE.Controllers.Main.saveTitleText":"正在保存文件","PDFE.Controllers.Main.scriptLoadError":"连接速度过慢,部分组件无法被加载。请重新加载页面。","PDFE.Controllers.Main.splitDividerErrorText":"行数必须为%1的除数。","PDFE.Controllers.Main.splitMaxColsErrorText":"列数必须小于%1。","PDFE.Controllers.Main.splitMaxRowsErrorText":"行数必须小于%1。","PDFE.Controllers.Main.textAnonymous":"匿名用户","PDFE.Controllers.Main.textAnyone":"任何人","PDFE.Controllers.Main.textBuyNow":"访问网站","PDFE.Controllers.Main.textChangesSaved":"所有更改已保存","PDFE.Controllers.Main.textClose":"关闭","PDFE.Controllers.Main.textCloseTip":"点击关闭提示","PDFE.Controllers.Main.textConnectionLost":"正在尝试连接。请检查连接设置。","PDFE.Controllers.Main.textContactUs":"联系销售人员","PDFE.Controllers.Main.textContinue":"继续","PDFE.Controllers.Main.textCustomLoader":"请注意,根据许可条款您无权更改加载程序。
请联系我们的销售部门获取报价。","PDFE.Controllers.Main.textDisconnect":"连接失败","PDFE.Controllers.Main.textGuest":"访客","PDFE.Controllers.Main.textLearnMore":"了解更多","PDFE.Controllers.Main.textLoadingDocument":"文件加载中…","PDFE.Controllers.Main.textLongName":"输入一个少于128个字符的名称。","PDFE.Controllers.Main.textNoLicenseTitle":"已达到许可证最大连接数限制","PDFE.Controllers.Main.textPaidFeature":"付费功能","PDFE.Controllers.Main.textReconnect":"连接已恢复","PDFE.Controllers.Main.textRemember":"记住我对所有文件的选择","PDFE.Controllers.Main.textRenameError":"用户名不能为空。","PDFE.Controllers.Main.textRenameLabel":"输入用于协作的名称","PDFE.Controllers.Main.textShape":"形状","PDFE.Controllers.Main.textStrict":"严格模式","PDFE.Controllers.Main.textText":"文本","PDFE.Controllers.Main.textTryQuickPrint":"您已选择“快速打印”:整个文档将被打印到最近选择的打印机或者默认打印机。
您想要继续吗?","PDFE.Controllers.Main.textTryUndoRedo":"“撤消/恢复”功能对于“快速协同编辑”模式是禁用的
单击“严格模式”按钮切换到严格协同编辑模式,在不受其他用户干扰的情况下编辑文件,并仅在保存更改后发送更改。您可以使用编辑器的高级设置在协同编辑模式之间切换。","PDFE.Controllers.Main.textTryUndoRedoWarn":"快速共同编辑模式下,撤销/重做功能被禁用。","PDFE.Controllers.Main.textUndo":"撤消","PDFE.Controllers.Main.textUpdateVersion":"现在无法编辑该文档。
正在尝试更新文件,请稍候...","PDFE.Controllers.Main.textUpdating":"更新中","PDFE.Controllers.Main.tipLicenseExceeded":"已达到许可证允许的最大同时连接数,因此文档以只读模式打开。

请稍后重试,或者如需编辑权限,请联系文档所有者。","PDFE.Controllers.Main.tipLicenseUsersExceeded":"已达到许可证允许编辑文档的最大用户数量,因此该文档以只读模式打开。

如果您需要编辑权限,请稍后重试或联系文档所有者。","PDFE.Controllers.Main.titleLicenseExp":"许可证过期","PDFE.Controllers.Main.titleLicenseNotActive":"授权证书未激活","PDFE.Controllers.Main.titleReadOnly":"只读模式","PDFE.Controllers.Main.titleServerVersion":"编辑器已更新","PDFE.Controllers.Main.titleUpdateVersion":"版本已变化","PDFE.Controllers.Main.txtArt":"在此输入文字","PDFE.Controllers.Main.txtButton":"按钮","PDFE.Controllers.Main.txtCheckbox":"复选框","PDFE.Controllers.Main.txtChoose":"选择一项","PDFE.Controllers.Main.txtClickToLoad":"单击以加载图像","PDFE.Controllers.Main.txtDiagramTitle":"图表标题","PDFE.Controllers.Main.txtDocUnlockDescription":"输入密码以取消文档保护","PDFE.Controllers.Main.txtDropdown":"下拉菜单","PDFE.Controllers.Main.txtEditingMode":"设置编辑模式..","PDFE.Controllers.Main.txtEnterDate":"输入日期","PDFE.Controllers.Main.txtErrorLoadHistory":"History loading failed","PDFE.Controllers.Main.txtGroup":"组","PDFE.Controllers.Main.txtInvalidGreater":"字段\"{0}\"的值无效:必须大于或等于{1}。","PDFE.Controllers.Main.txtInvalidGreaterLess":"字段\"{0}\"的值无效:必须大于或等于{1}且小于或等于{2}。","PDFE.Controllers.Main.txtInvalidLess":"字段\"{0}\"的值无效:必须小于或等于{1}。","PDFE.Controllers.Main.txtInvalidPdfFormat":"输入的值与字段\"{0}\"的格式不匹配。","PDFE.Controllers.Main.txtInvalidValue":"字段“{0}”的值无效","PDFE.Controllers.Main.txtListbox":"列表框","PDFE.Controllers.Main.txtNeedSynchronize":"您有更新","PDFE.Controllers.Main.txtSaveCopyAsComplete":"已成功保存文件副本","PDFE.Controllers.Main.txtSecurityWarningLinkOk":"此文档正尝试连接到{0}。
如果您信任此网站,请点击“确定”。","PDFE.Controllers.Main.txtSecurityWarningOpenFile":"此文档正在尝试打开文件对话框,请按“确定”打开。","PDFE.Controllers.Main.txtSeries":"序列","PDFE.Controllers.Main.txtSignature":"签名","PDFE.Controllers.Main.txtText":"文本","PDFE.Controllers.Main.txtUnlockTitle":"解除文档保护","PDFE.Controllers.Main.txtValidPdfFormat":"字段值应与格式\"{0}\"匹配。","PDFE.Controllers.Main.txtXAxis":"X轴","PDFE.Controllers.Main.txtYAxis":"Y轴","PDFE.Controllers.Main.unknownErrorText":"未知错误。","PDFE.Controllers.Main.unsupportedBrowserErrorText":"您的浏览器不受支持","PDFE.Controllers.Main.uploadDocExtMessage":"未知文件格式。","PDFE.Controllers.Main.uploadDocFileCountMessage":"未上传任何文档。","PDFE.Controllers.Main.uploadDocSizeMessage":"超出最大文件大小限制。","PDFE.Controllers.Main.uploadImageExtMessage":"未知图片格式。","PDFE.Controllers.Main.uploadImageFileCountMessage":"没有上传图片","PDFE.Controllers.Main.uploadImageSizeMessage":"图像太大。最大大小为25 MB。","PDFE.Controllers.Main.uploadImageTextText":"图片上传中...","PDFE.Controllers.Main.uploadImageTitleText":"图片上传中","PDFE.Controllers.Main.waitText":"请稍候...","PDFE.Controllers.Main.warnBrowserIE9":"该应用程序在IE9上的功能很差。使用IE10或更高版本","PDFE.Controllers.Main.warnBrowserZoom":"您的浏览器当前缩放设置不完全支持。请按Ctrl + 0重设为默认缩放。","PDFE.Controllers.Main.warnLicenseAnonymous":"匿名用户的访问被拒绝
此文档将仅打开以供查看。","PDFE.Controllers.Main.warnLicenseBefore":"许可证未激活
请与管理员联系。","PDFE.Controllers.Main.warnLicenseExp":"您的许可证已过期。
请更新您的许可证并刷新页面。","PDFE.Controllers.Main.warnLicenseLimitedNoAccess":"许可证已过期。
您现在不能使用文档编辑功能
请联系您的管理员。","PDFE.Controllers.Main.warnLicenseLimitedRenewed":"许可证需要更新。
您现在只能使用受限的文档编辑功能。
请联系管理员以获取完整权限","PDFE.Controllers.Main.warnNoLicense":"您已达到同时连接到%1编辑器的限制。此文档将仅打开以供查看
有关个人升级条款,请与%1销售团队联系。","PDFE.Controllers.Main.warnNoLicenseUsers":"您已达到%1编辑器的用户限制。有关个人升级条款,请与%1销售团队联系。","PDFE.Controllers.Main.warnProcessRightsChange":"您被拒绝了编辑文件的权限。","PDFE.Controllers.Navigation.txtBeginning":"文件开头","PDFE.Controllers.Navigation.txtGotoBeginning":"转到文档的开头","PDFE.Controllers.Print.textMarginsLast":"上次自定义","PDFE.Controllers.Print.txtCustom":"自定义","PDFE.Controllers.Print.txtPrintRangeInvalid":"无效的打印范围","PDFE.Controllers.RedactTab.applyButtonText":"应用","PDFE.Controllers.RedactTab.doNotApplyButtonText":"不要应用","PDFE.Controllers.RedactTab.textApplyRedact":"密文信息将从此文档中永久删除。一旦您保存文档,这些信息将无法恢复。","PDFE.Controllers.RedactTab.textEnterPageRange":"输入要标记为密文的页码范围","PDFE.Controllers.RedactTab.textEnterRangeDescription":"例如:1, 2, 8-11","PDFE.Controllers.RedactTab.textRedactPages":"标记页面为密文","PDFE.Controllers.RedactTab.textUnappliedRedactions":"此文档包含尚未应用的密文标记。

在您选择“应用密文”之前,这些标记可以移除,信息也可以恢复。","PDFE.Controllers.RedactTab.tipApplyRedaction":"应用并保存所有密文。未保存的密文仍可撤销。","PDFE.Controllers.RedactTab.tipApplyRedactionHeader":"应用密文","PDFE.Controllers.RedactTab.tipMarkForRedaction":"使用这些工具可在PDF中标记、查找并密文处理敏感内容。","PDFE.Controllers.RedactTab.tipMarkForRedactionHeader":"标记密文","PDFE.Controllers.RedactTab.txtInvalidFormat":"格式无效。请输入单个页码或带短横线的范围,例如2或2-6","PDFE.Controllers.RedactTab.txtInvalidRange":"页码必须在1到{0}之间","PDFE.Controllers.RedactTab.txtReversedRange":"起始页码必须小于或等于结束页码。","PDFE.Controllers.Search.notcriticalErrorTitle":"警告","PDFE.Controllers.Search.textNoTextFound":"无法找到您搜索的数据,请调整您的搜索选项。","PDFE.Controllers.Search.textReplaceSkipped":"替换已完成。 {0}处跳过。","PDFE.Controllers.Search.textReplaceSuccess":"搜索已完成。已替换{0}处","PDFE.Controllers.Search.warnReplaceString":"{0}不是\"替换为\"输入框要求的有效特殊字符。","PDFE.Controllers.Statusbar.textDisconnect":"连接失败
正在尝试连接。请检查连接设置。","PDFE.Controllers.Statusbar.zoomText":"缩放{0}%","PDFE.Controllers.Toolbar.confirmAddFontName":"您要保存的字体在当前设备不可用。
文本将以一种设备字体进行显示,保存的字体在可用时会将其替代。
是否要继续?","PDFE.Controllers.Toolbar.errorAccessDeny":"您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员。","PDFE.Controllers.Toolbar.helpAnnotRect":"探索新的批注工具:矩形、圆形、箭头和连接线。","PDFE.Controllers.Toolbar.helpAnnotRectHeader":"新增批注","PDFE.Controllers.Toolbar.helpPdfCharts":"在PDF中直接插入和编辑图表及智能图形。","PDFE.Controllers.Toolbar.helpPdfChartsHeader":"PDF图表和智能图形","PDFE.Controllers.Toolbar.helpRedactTab":"使用密文功能保护敏感信息,安全删除机密内容。","PDFE.Controllers.Toolbar.helpRedactTabHeader":"PDF密文","PDFE.Controllers.Toolbar.notcriticalErrorTitle":"警告","PDFE.Controllers.Toolbar.textFontSizeErr":"输入的值不正确
请输入一个介于1和300之间的数值","PDFE.Controllers.Toolbar.textGotIt":"知道了","PDFE.Controllers.Toolbar.textRequired":"要发送表单,请填写所有必填项。","PDFE.Controllers.Toolbar.textSubmited":"表单提交成功
点击关闭提示。","PDFE.Controllers.Toolbar.textTabForms":"表单","PDFE.Controllers.Toolbar.textWarning":"警告","PDFE.Controllers.Toolbar.txtDownload":"下载","PDFE.Controllers.Toolbar.txtNeedCommentMode":"要保存对文件的更改,请切换到批注模式。或者,您可以下载修改后的文件的副本。","PDFE.Controllers.Toolbar.txtNeedDownload":"目前,PDF查看器只能将新的更改保存在单独的文件副本中。它不支持共同编辑,除非您共享新的文件版本,否则其他用户不会看到您的更改。","PDFE.Controllers.Toolbar.txtSaveCopy":"保存副本","PDFE.Controllers.Toolbar.txtUntitled":"无标题","PDFE.Controllers.Viewport.textFitPage":"适合页面","PDFE.Controllers.Viewport.textFitWidth":"调整至合适宽度","PDFE.Controllers.Viewport.txtDarkMode":"深色模式","PDFE.Views.ChartSettings.text3dDepth":"深度(基准的%)","PDFE.Views.ChartSettings.text3dHeight":"高度(基准的%)","PDFE.Views.ChartSettings.text3dRotation":"三维旋转","PDFE.Views.ChartSettings.textAdvanced":"显示高级设置","PDFE.Views.ChartSettings.textAutoscale":"自动缩放","PDFE.Views.ChartSettings.textChartType":"更改图表类型","PDFE.Views.ChartSettings.textData":"数据","PDFE.Views.ChartSettings.textDefault":"默认旋转","PDFE.Views.ChartSettings.textDown":"下","PDFE.Views.ChartSettings.textEditData":"编辑数据","PDFE.Views.ChartSettings.textEditLinks":"编辑链接","PDFE.Views.ChartSettings.textHeight":"\n高度","PDFE.Views.ChartSettings.textKeepRatio":"固定比例","PDFE.Views.ChartSettings.textLeft":"左侧","PDFE.Views.ChartSettings.textLinkedData":"关联数据","PDFE.Views.ChartSettings.textNarrow":"窄视图","PDFE.Views.ChartSettings.textPerspective":"透视","PDFE.Views.ChartSettings.textRight":"右侧","PDFE.Views.ChartSettings.textRightAngle":"直角坐标轴","PDFE.Views.ChartSettings.textSelectData":"选择数据","PDFE.Views.ChartSettings.textSize":"大小","PDFE.Views.ChartSettings.textStyle":"样式","PDFE.Views.ChartSettings.textUp":"上","PDFE.Views.ChartSettings.textUpdateData":"更新数据","PDFE.Views.ChartSettings.textWiden":"扩大视图","PDFE.Views.ChartSettings.textWidth":"宽度","PDFE.Views.ChartSettings.textX":"X轴旋转","PDFE.Views.ChartSettings.textY":"Y轴旋转","PDFE.Views.ChartSettingsAdvanced.textAlt":"替代文本","PDFE.Views.ChartSettingsAdvanced.textAltDescription":"说明","PDFE.Views.ChartSettingsAdvanced.textAltTip":"这是一种基于文本呈现视觉对象信息的方式,帮助有视力或认知障碍的人更好地理解图像、形状、图表或表格中的信息。","PDFE.Views.ChartSettingsAdvanced.textAltTitle":"标题","PDFE.Views.ChartSettingsAdvanced.textAuto":"自动","PDFE.Views.ChartSettingsAdvanced.textAxisCrosses":"坐标轴交叉","PDFE.Views.ChartSettingsAdvanced.textAxisPos":"坐标轴位置","PDFE.Views.ChartSettingsAdvanced.textAxisTitle":"标题","PDFE.Views.ChartSettingsAdvanced.textBase":"基线","PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"刻度线之间","PDFE.Views.ChartSettingsAdvanced.textBillions":"十亿","PDFE.Views.ChartSettingsAdvanced.textCategoryName":"分类名称","PDFE.Views.ChartSettingsAdvanced.textCenter":"居中","PDFE.Views.ChartSettingsAdvanced.textChartName":"图表名称","PDFE.Views.ChartSettingsAdvanced.textChartTitle":"图表标题","PDFE.Views.ChartSettingsAdvanced.textCross":"交叉","PDFE.Views.ChartSettingsAdvanced.textCustom":"自定义","PDFE.Views.ChartSettingsAdvanced.textDataLabels":"数据标签","PDFE.Views.ChartSettingsAdvanced.textFit":"适合宽度","PDFE.Views.ChartSettingsAdvanced.textFixed":"固定","PDFE.Views.ChartSettingsAdvanced.textFormat":"标签格式","PDFE.Views.ChartSettingsAdvanced.textFrom":"来自","PDFE.Views.ChartSettingsAdvanced.textGeneral":"常规","PDFE.Views.ChartSettingsAdvanced.textGridLines":"网格线","PDFE.Views.ChartSettingsAdvanced.textHeight":"\n高度","PDFE.Views.ChartSettingsAdvanced.textHideAxis":"隐藏轴","PDFE.Views.ChartSettingsAdvanced.textHigh":"高","PDFE.Views.ChartSettingsAdvanced.textHorAxis":"横轴","PDFE.Views.ChartSettingsAdvanced.textHorAxisSec":"次横轴","PDFE.Views.ChartSettingsAdvanced.textHorizontal":"水平的","PDFE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PDFE.Views.ChartSettingsAdvanced.textHundreds":"百","PDFE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PDFE.Views.ChartSettingsAdvanced.textIn":"在","PDFE.Views.ChartSettingsAdvanced.textInnerBottom":"内侧底部","PDFE.Views.ChartSettingsAdvanced.textInnerTop":"内侧顶部","PDFE.Views.ChartSettingsAdvanced.textKeepRatio":"固定比例","PDFE.Views.ChartSettingsAdvanced.textLabelDist":"坐标轴标签距离","PDFE.Views.ChartSettingsAdvanced.textLabelInterval":"标签之间的间隔","PDFE.Views.ChartSettingsAdvanced.textLabelOptions":"标签选项","PDFE.Views.ChartSettingsAdvanced.textLabelPos":"标签位置","PDFE.Views.ChartSettingsAdvanced.textLayout":"布局","PDFE.Views.ChartSettingsAdvanced.textLeftOverlay":"左侧叠加","PDFE.Views.ChartSettingsAdvanced.textLegendBottom":"底部","PDFE.Views.ChartSettingsAdvanced.textLegendLeft":"左侧","PDFE.Views.ChartSettingsAdvanced.textLegendPos":"图例","PDFE.Views.ChartSettingsAdvanced.textLegendRight":"右侧","PDFE.Views.ChartSettingsAdvanced.textLegendTop":"顶部","PDFE.Views.ChartSettingsAdvanced.textLines":"线","PDFE.Views.ChartSettingsAdvanced.textLogScale":"对数刻度","PDFE.Views.ChartSettingsAdvanced.textLow":"低","PDFE.Views.ChartSettingsAdvanced.textMajor":"主要","PDFE.Views.ChartSettingsAdvanced.textMajorMinor":"主要和次要","PDFE.Views.ChartSettingsAdvanced.textMajorType":"主要类型","PDFE.Views.ChartSettingsAdvanced.textManual":"手动","PDFE.Views.ChartSettingsAdvanced.textMarkers":"标记","PDFE.Views.ChartSettingsAdvanced.textMarksInterval":"标记之间的间隔","PDFE.Views.ChartSettingsAdvanced.textMaxValue":"最大值","PDFE.Views.ChartSettingsAdvanced.textMillions":"百万","PDFE.Views.ChartSettingsAdvanced.textMinor":"次要的","PDFE.Views.ChartSettingsAdvanced.textMinorType":"次要类型","PDFE.Views.ChartSettingsAdvanced.textMinValue":"最小值","PDFE.Views.ChartSettingsAdvanced.textNextToAxis":"在轴旁边","PDFE.Views.ChartSettingsAdvanced.textNone":"无","PDFE.Views.ChartSettingsAdvanced.textNoOverlay":"没有叠加","PDFE.Views.ChartSettingsAdvanced.textOnTickMarks":"刻度标记","PDFE.Views.ChartSettingsAdvanced.textOut":"外部","PDFE.Views.ChartSettingsAdvanced.textOuterTop":"外侧顶部","PDFE.Views.ChartSettingsAdvanced.textOverlay":"覆盖","PDFE.Views.ChartSettingsAdvanced.textPlacement":"放置","PDFE.Views.ChartSettingsAdvanced.textPosition":"位置","PDFE.Views.ChartSettingsAdvanced.textReverse":"按相反顺序排列的值","PDFE.Views.ChartSettingsAdvanced.textRightOverlay":"右侧覆盖","PDFE.Views.ChartSettingsAdvanced.textRotated":"已旋转","PDFE.Views.ChartSettingsAdvanced.textSeparator":"数据标签分隔符","PDFE.Views.ChartSettingsAdvanced.textSeriesName":"序列名称","PDFE.Views.ChartSettingsAdvanced.textSize":"大小","PDFE.Views.ChartSettingsAdvanced.textSmooth":"平滑","PDFE.Views.ChartSettingsAdvanced.textStraight":"校直","PDFE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PDFE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PDFE.Views.ChartSettingsAdvanced.textThousands":"千","PDFE.Views.ChartSettingsAdvanced.textTickOptions":"勾选选项","PDFE.Views.ChartSettingsAdvanced.textTitle":"图表 - 高级设置","PDFE.Views.ChartSettingsAdvanced.textTopLeftCorner":"左上角","PDFE.Views.ChartSettingsAdvanced.textTrillions":"万亿","PDFE.Views.ChartSettingsAdvanced.textUnits":"显示单位","PDFE.Views.ChartSettingsAdvanced.textValue":"值","PDFE.Views.ChartSettingsAdvanced.textVertAxis":"纵轴","PDFE.Views.ChartSettingsAdvanced.textVertAxisSec":"次纵轴","PDFE.Views.ChartSettingsAdvanced.textVertical":"垂直","PDFE.Views.ChartSettingsAdvanced.textWidth":"宽度","PDFE.Views.ChartSettingsDlg.textLeftOverlay":"左侧叠加","PDFE.Views.DocumentHolder.aboveText":"上方","PDFE.Views.DocumentHolder.addCommentText":"添加批注","PDFE.Views.DocumentHolder.advancedChartText":"图表高级设置","PDFE.Views.DocumentHolder.advancedEquationText":"方程式设置","PDFE.Views.DocumentHolder.advancedImageText":"图片高级设置","PDFE.Views.DocumentHolder.advancedParagraphText":"段落高级设置","PDFE.Views.DocumentHolder.advancedShapeText":"形状高级设置","PDFE.Views.DocumentHolder.advancedTableText":"表格高级设置","PDFE.Views.DocumentHolder.AlignBottom":"底部","PDFE.Views.DocumentHolder.AlignCenter":"居中","PDFE.Views.DocumentHolder.AlignJust":"两端对齐","PDFE.Views.DocumentHolder.AlignLeft":"左","PDFE.Views.DocumentHolder.alignmentText":"对齐","PDFE.Views.DocumentHolder.AlignMiddle":"中间","PDFE.Views.DocumentHolder.AlignRight":"右","PDFE.Views.DocumentHolder.AlignText":"文字对齐","PDFE.Views.DocumentHolder.AlignTop":"顶部","PDFE.Views.DocumentHolder.allLinearText":"全部-线性","PDFE.Views.DocumentHolder.allProfText":"全部-专业","PDFE.Views.DocumentHolder.belowText":"下方","PDFE.Views.DocumentHolder.btnChart":"添加、删除或更改图表元素,例如标题、图例、网格线和数据标签","PDFE.Views.DocumentHolder.cellAlignText":"单元格垂直对齐","PDFE.Views.DocumentHolder.cellText":"单元格","PDFE.Views.DocumentHolder.centerText":"居中","PDFE.Views.DocumentHolder.columnText":"列","PDFE.Views.DocumentHolder.confirmAddFontName":"您要保存的字体在当前设备不可用。
文本将以设备字体之一进行显示,保存的字体在可用时会将其替换。
是否要继续?","PDFE.Views.DocumentHolder.currLinearText":"当前-线性","PDFE.Views.DocumentHolder.currProfText":"当前-专业","PDFE.Views.DocumentHolder.deleteColumnText":"删除列","PDFE.Views.DocumentHolder.deleteRowText":"删除行","PDFE.Views.DocumentHolder.deleteTableText":"删除表格","PDFE.Views.DocumentHolder.deleteText":"删除","PDFE.Views.DocumentHolder.DepthAxis":"Z 轴","PDFE.Views.DocumentHolder.direct270Text":"向上旋转文字","PDFE.Views.DocumentHolder.direct90Text":"向下旋转文字","PDFE.Views.DocumentHolder.directHText":"水平的","PDFE.Views.DocumentHolder.directionText":"文字方向","PDFE.Views.DocumentHolder.editChartText":"编辑数据","PDFE.Views.DocumentHolder.editHyperlinkText":"编辑链接","PDFE.Views.DocumentHolder.guestText":"访客","PDFE.Views.DocumentHolder.hideEqToolbar":"隐藏公式工具栏","PDFE.Views.DocumentHolder.hyperlinkText":"链接","PDFE.Views.DocumentHolder.insertColumnLeftText":"左栏","PDFE.Views.DocumentHolder.insertColumnRightText":"右栏","PDFE.Views.DocumentHolder.insertColumnText":"插入列","PDFE.Views.DocumentHolder.insertRowAboveText":"上面的行","PDFE.Views.DocumentHolder.insertRowBelowText":"下面的行","PDFE.Views.DocumentHolder.insertRowText":"插入行","PDFE.Views.DocumentHolder.insertText":"插入","PDFE.Views.DocumentHolder.latexText":"LaTeX","PDFE.Views.DocumentHolder.leftText":"左","PDFE.Views.DocumentHolder.mergeCellsText":"合并单元格","PDFE.Views.DocumentHolder.mniImageFromFile":"来自文件的图片","PDFE.Views.DocumentHolder.mniImageFromStorage":"存储设备中的图片","PDFE.Views.DocumentHolder.mniImageFromUrl":"来自URL地址的图片","PDFE.Views.DocumentHolder.originalSizeText":"实际大小","PDFE.Views.DocumentHolder.removeCommentText":"删除","PDFE.Views.DocumentHolder.removeHyperlinkText":"删除链接","PDFE.Views.DocumentHolder.rightText":"右","PDFE.Views.DocumentHolder.rowText":"行","PDFE.Views.DocumentHolder.selectText":"选择","PDFE.Views.DocumentHolder.showEqToolbar":"显示公式工具栏","PDFE.Views.DocumentHolder.splitCellsText":"拆分单元格","PDFE.Views.DocumentHolder.splitCellTitleText":"拆分单元格","PDFE.Views.DocumentHolder.tableText":"表格","PDFE.Views.DocumentHolder.textArrangeBack":"置于底层","PDFE.Views.DocumentHolder.textArrangeBackward":"下移一层","PDFE.Views.DocumentHolder.textArrangeForward":"向前移动","PDFE.Views.DocumentHolder.textArrangeFront":"放到最上面","PDFE.Views.DocumentHolder.textAxes":"坐标轴","PDFE.Views.DocumentHolder.textAxisTitles":"坐标轴标题","PDFE.Views.DocumentHolder.textBottom":"底部","PDFE.Views.DocumentHolder.textCenter":"居中","PDFE.Views.DocumentHolder.textChartTitle":"图表标题","PDFE.Views.DocumentHolder.textClearField":"清除字段","PDFE.Views.DocumentHolder.textCm":"厘米","PDFE.Views.DocumentHolder.textColor":"颜色","PDFE.Views.DocumentHolder.textCopy":"复制","PDFE.Views.DocumentHolder.textCrop":"裁剪","PDFE.Views.DocumentHolder.textCropFill":"填充","PDFE.Views.DocumentHolder.textCropFit":"适应","PDFE.Views.DocumentHolder.textCustom":"自定义","PDFE.Views.DocumentHolder.textCut":"剪切","PDFE.Views.DocumentHolder.textDataLabels":"数据标签","PDFE.Views.DocumentHolder.textDistributeCols":"分布列","PDFE.Views.DocumentHolder.textDistributeRows":"分布行","PDFE.Views.DocumentHolder.textEditPoints":"编辑点","PDFE.Views.DocumentHolder.textErrorBars":"误差线","PDFE.Views.DocumentHolder.textExponential":"指数","PDFE.Views.DocumentHolder.textFit":"调整至合适宽度","PDFE.Views.DocumentHolder.textFlipH":"水平翻转","PDFE.Views.DocumentHolder.textFlipV":"垂直翻转","PDFE.Views.DocumentHolder.textFontSizeErr":"输入的值不正确
请输入一个介于1和300之间的数值","PDFE.Views.DocumentHolder.textFromFile":"从文件导入","PDFE.Views.DocumentHolder.textFromStorage":"来自存储设备","PDFE.Views.DocumentHolder.textFromUrl":"来自URL","PDFE.Views.DocumentHolder.textGridLines":"网格线","PDFE.Views.DocumentHolder.textHorAxis":"横轴","PDFE.Views.DocumentHolder.textHorAxisSec":"次横轴","PDFE.Views.DocumentHolder.textHorizontalMajor":"主要水平线","PDFE.Views.DocumentHolder.textHorizontalMinor":"次要水平线","PDFE.Views.DocumentHolder.textInnerBottom":"内侧底部","PDFE.Views.DocumentHolder.textInnerTop":"内侧顶部","PDFE.Views.DocumentHolder.textLeft":"左侧","PDFE.Views.DocumentHolder.textLeftData":"左侧","PDFE.Views.DocumentHolder.textLeftOverlay":"左侧叠加","PDFE.Views.DocumentHolder.textLegendPos":"图例","PDFE.Views.DocumentHolder.textLinear":"线性","PDFE.Views.DocumentHolder.textLinearForecast":"线性预测","PDFE.Views.DocumentHolder.textLines":"线","PDFE.Views.DocumentHolder.textMovingAverage":"移动平均 (2)","PDFE.Views.DocumentHolder.textNone":"无","PDFE.Views.DocumentHolder.textNoOverlay":"没有叠加","PDFE.Views.DocumentHolder.textOuterTop":"外侧顶部","PDFE.Views.DocumentHolder.textOverlay":"覆盖","PDFE.Views.DocumentHolder.textPaste":"粘贴","PDFE.Views.DocumentHolder.textRecognize":"编辑文本","PDFE.Views.DocumentHolder.textRedact":"标记文本为密文","PDFE.Views.DocumentHolder.textRedo":"重做","PDFE.Views.DocumentHolder.textReplace":"替换图片","PDFE.Views.DocumentHolder.textResetCrop":"重置裁剪","PDFE.Views.DocumentHolder.textRight":"右侧","PDFE.Views.DocumentHolder.textRightOverlay":"右侧覆盖","PDFE.Views.DocumentHolder.textRotate":"旋转","PDFE.Views.DocumentHolder.textRotate270":"逆时针旋转90°","PDFE.Views.DocumentHolder.textRotate90":"顺时针旋转90°","PDFE.Views.DocumentHolder.textSaveAsPicture":"另存为图片","PDFE.Views.DocumentHolder.textShapeAlignBottom":"底部对齐","PDFE.Views.DocumentHolder.textShapeAlignCenter":"居中对齐","PDFE.Views.DocumentHolder.textShapeAlignLeft":"左对齐","PDFE.Views.DocumentHolder.textShapeAlignMiddle":"居中对齐","PDFE.Views.DocumentHolder.textShapeAlignRight":"右对齐","PDFE.Views.DocumentHolder.textShapeAlignTop":"顶端对齐","PDFE.Views.DocumentHolder.textShapesMerge":"合并形状","PDFE.Views.DocumentHolder.textShowLegendKeys":"显示图例标识","PDFE.Views.DocumentHolder.textShowUpDown":"显示上下滚动条","PDFE.Views.DocumentHolder.textStandardDeviation":"标准偏差","PDFE.Views.DocumentHolder.textStandardError":"标准误差","PDFE.Views.DocumentHolder.textTop":"顶部","PDFE.Views.DocumentHolder.textTrendline":"趋势线","PDFE.Views.DocumentHolder.textUndo":"撤销","PDFE.Views.DocumentHolder.textUpDownBars":"上下滚动条","PDFE.Views.DocumentHolder.textVertAxis":"纵轴","PDFE.Views.DocumentHolder.textVertAxisSec":"次纵轴","PDFE.Views.DocumentHolder.textVerticalMajor":"垂直主轴","PDFE.Views.DocumentHolder.textVerticalMinor":"垂直次轴","PDFE.Views.DocumentHolder.tipIsLocked":"此元素正在由其他用户编辑。","PDFE.Views.DocumentHolder.tipRecognize":"编辑文本","PDFE.Views.DocumentHolder.tipRedact":"标记文本为密文","PDFE.Views.DocumentHolder.txtAddBottom":"添加底部边框","PDFE.Views.DocumentHolder.txtAddFractionBar":"添加分数栏","PDFE.Views.DocumentHolder.txtAddHor":"添加水平线","PDFE.Views.DocumentHolder.txtAddLB":"添加左底边框","PDFE.Views.DocumentHolder.txtAddLeft":"添加左边框","PDFE.Views.DocumentHolder.txtAddLT":"添加左侧顶部边框","PDFE.Views.DocumentHolder.txtAddRight":"添加右边框","PDFE.Views.DocumentHolder.txtAddTop":"添加顶部边框","PDFE.Views.DocumentHolder.txtAddVer":"添加垂直线","PDFE.Views.DocumentHolder.txtAlign":"对齐","PDFE.Views.DocumentHolder.txtAlignToChar":"字符对齐","PDFE.Views.DocumentHolder.txtArrange":"排列","PDFE.Views.DocumentHolder.txtBackground":"背景","PDFE.Views.DocumentHolder.txtBorderProps":"边框属性","PDFE.Views.DocumentHolder.txtBottom":"底部","PDFE.Views.DocumentHolder.txtColumnAlign":"列对齐","PDFE.Views.DocumentHolder.txtCopyPage":"复制页面","PDFE.Views.DocumentHolder.txtCutPage":"剪切页面","PDFE.Views.DocumentHolder.txtDecreaseArg":"减少参数大小","PDFE.Views.DocumentHolder.txtDeleteArg":"删除参数","PDFE.Views.DocumentHolder.txtDeleteBreak":"删除手动的换行符","PDFE.Views.DocumentHolder.txtDeleteChars":"删除包围字符","PDFE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"删除封闭字符和分隔符","PDFE.Views.DocumentHolder.txtDeleteEq":"删除方程式","PDFE.Views.DocumentHolder.txtDeleteGroupChar":"删除字符","PDFE.Views.DocumentHolder.txtDeletePage":"删除页面","PDFE.Views.DocumentHolder.txtDeleteRadical":"删除根号","PDFE.Views.DocumentHolder.txtDistribHor":"水平分布","PDFE.Views.DocumentHolder.txtDistribVert":"垂直分布","PDFE.Views.DocumentHolder.txtEmpty":"(空)","PDFE.Views.DocumentHolder.txtFractionLinear":"改为线性分数","PDFE.Views.DocumentHolder.txtFractionSkewed":"改为倾斜分数","PDFE.Views.DocumentHolder.txtFractionStacked":"改为堆叠分数","PDFE.Views.DocumentHolder.txtGroup":"组","PDFE.Views.DocumentHolder.txtGroupCharOver":"字符在文字上方","PDFE.Views.DocumentHolder.txtGroupCharUnder":"字符在文字下方","PDFE.Views.DocumentHolder.txtHideBottom":"隐藏底部边框","PDFE.Views.DocumentHolder.txtHideBottomLimit":"隐藏下限","PDFE.Views.DocumentHolder.txtHideCloseBracket":"隐藏右括号","PDFE.Views.DocumentHolder.txtHideDegree":"隐藏度数","PDFE.Views.DocumentHolder.txtHideHor":"隐藏水平线","PDFE.Views.DocumentHolder.txtHideLB":"隐藏左底线","PDFE.Views.DocumentHolder.txtHideLeft":"隐藏左边框","PDFE.Views.DocumentHolder.txtHideLT":"隐藏左方顶线","PDFE.Views.DocumentHolder.txtHideOpenBracket":"隐藏左括号","PDFE.Views.DocumentHolder.txtHidePlaceholder":"隐藏占位符","PDFE.Views.DocumentHolder.txtHideRight":"隐藏右边框","PDFE.Views.DocumentHolder.txtHideTop":"隐藏顶部边框","PDFE.Views.DocumentHolder.txtHideTopLimit":"隐藏上限","PDFE.Views.DocumentHolder.txtHideVer":"隐藏垂直线","PDFE.Views.DocumentHolder.txtIncreaseArg":"增加参数大小","PDFE.Views.DocumentHolder.txtInsertArgAfter":"在后面插入参数","PDFE.Views.DocumentHolder.txtInsertArgBefore":"在前面插入参数","PDFE.Views.DocumentHolder.txtInsertBreak":"插入手动分隔符","PDFE.Views.DocumentHolder.txtInsertEqAfter":"在之后插入方程式","PDFE.Views.DocumentHolder.txtInsertEqBefore":"在前面插入方程式","PDFE.Views.DocumentHolder.txtLimitChange":"更改界限位置","PDFE.Views.DocumentHolder.txtLimitOver":"文字上方限制","PDFE.Views.DocumentHolder.txtLimitUnder":"文字下方限制","PDFE.Views.DocumentHolder.txtMatchBrackets":"括号与其内容的高度对齐","PDFE.Views.DocumentHolder.txtMatrixAlign":"矩阵对齐","PDFE.Views.DocumentHolder.txtNewPageAfter":"在后面插入空白页","PDFE.Views.DocumentHolder.txtNewPageBefore":"在前面插入空白页","PDFE.Views.DocumentHolder.txtOpacity":"不透明度","PDFE.Views.DocumentHolder.txtOverbar":"文本上划线","PDFE.Views.DocumentHolder.txtPastePage":"粘贴页面","PDFE.Views.DocumentHolder.txtPastePageAfter":"粘贴到后面","PDFE.Views.DocumentHolder.txtPastePageBefore":"粘贴到前面","PDFE.Views.DocumentHolder.txtPercentage":"百分比","PDFE.Views.DocumentHolder.txtPressLink":"按 {0} 并单击链接","PDFE.Views.DocumentHolder.txtPrintSelection":"打印所选内容","PDFE.Views.DocumentHolder.txtRemFractionBar":"删除分数栏","PDFE.Views.DocumentHolder.txtRemLimit":"取消限制","PDFE.Views.DocumentHolder.txtRemoveAccentChar":"删除强调字符","PDFE.Views.DocumentHolder.txtRemoveBar":"删除栏","PDFE.Views.DocumentHolder.txtRemScripts":"删除脚本","PDFE.Views.DocumentHolder.txtRemSubscript":"删除下标","PDFE.Views.DocumentHolder.txtRemSuperscript":"删除上标","PDFE.Views.DocumentHolder.txtRotateLeft":"向左旋转","PDFE.Views.DocumentHolder.txtRotateRight":"向右旋转","PDFE.Views.DocumentHolder.txtScriptsAfter":"文字后的脚本","PDFE.Views.DocumentHolder.txtScriptsBefore":"文字前的脚本","PDFE.Views.DocumentHolder.txtSelectAll":"全选","PDFE.Views.DocumentHolder.txtShowBottomLimit":"显示底限","PDFE.Views.DocumentHolder.txtShowCloseBracket":"显示结束括号","PDFE.Views.DocumentHolder.txtShowDegree":"显示度数","PDFE.Views.DocumentHolder.txtShowOpenBracket":"显示开始括号","PDFE.Views.DocumentHolder.txtShowPlaceholder":"显示占位符","PDFE.Views.DocumentHolder.txtShowTopLimit":"显示上限","PDFE.Views.DocumentHolder.txtStretchBrackets":"延展括号","PDFE.Views.DocumentHolder.txtTop":"顶部","PDFE.Views.DocumentHolder.txtUnderbar":"文本下划线","PDFE.Views.DocumentHolder.txtUngroup":"取消组合","PDFE.Views.DocumentHolder.txtWarnUrl":"点击此链接可能会对您的设备和数据造成损害。为了保护您的计算机,请仅点击来自可信来源的链接。此位置可能不安全:

{0}

您确定要继续吗?","PDFE.Views.DocumentHolder.unicodeText":"统一码","PDFE.Views.DocumentHolder.vertAlignText":"垂直对齐","PDFE.Views.FileMenu.ariaFileMenu":"文件菜单","PDFE.Views.FileMenu.btnBackCaption":"打开文件所在位置","PDFE.Views.FileMenu.btnCloseEditor":"关闭文件","PDFE.Views.FileMenu.btnCloseMenuCaption":"返回","PDFE.Views.FileMenu.btnCreateNewCaption":"新建","PDFE.Views.FileMenu.btnDownloadCaption":"下载为","PDFE.Views.FileMenu.btnExitCaption":"关闭","PDFE.Views.FileMenu.btnFileOpenCaption":"打开","PDFE.Views.FileMenu.btnHelpCaption":"帮助","PDFE.Views.FileMenu.btnHistoryCaption":"Version History","PDFE.Views.FileMenu.btnInfoCaption":"信息","PDFE.Views.FileMenu.btnPrintCaption":"打印","PDFE.Views.FileMenu.btnProtectCaption":"保护","PDFE.Views.FileMenu.btnRecentFilesCaption":"打开最近文件","PDFE.Views.FileMenu.btnRenameCaption":"重命名","PDFE.Views.FileMenu.btnReturnCaption":"返回文件","PDFE.Views.FileMenu.btnRightsCaption":"访问权限","PDFE.Views.FileMenu.btnSaveAsCaption":"另存为","PDFE.Views.FileMenu.btnSaveCaption":"保存","PDFE.Views.FileMenu.btnSaveCopyAsCaption":"另存副本为","PDFE.Views.FileMenu.btnSettingsCaption":"高级设置","PDFE.Views.FileMenu.btnSuggestCaption":"提出功能建议","PDFE.Views.FileMenu.btnSwitchToMobileCaption":"切换到移动模式","PDFE.Views.FileMenu.btnToEditCaption":"编辑文档","PDFE.Views.FileMenu.textDownload":"下载","PDFE.Views.FileMenuPanels.CreateNew.txtBlank":"空白文件","PDFE.Views.FileMenuPanels.CreateNew.txtCreateNew":"新建","PDFE.Views.FileMenuPanels.DocumentInfo.okButtonText":"应用","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"添加作者","PDFE.Views.FileMenuPanels.DocumentInfo.txtAddText":"添加文字","PDFE.Views.FileMenuPanels.DocumentInfo.txtAppName":"应用程序","PDFE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"作者","PDFE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"更改访问权限","PDFE.Views.FileMenuPanels.DocumentInfo.txtComment":"批注","PDFE.Views.FileMenuPanels.DocumentInfo.txtCommon":"通用","PDFE.Views.FileMenuPanels.DocumentInfo.txtCreated":"已创建","PDFE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文档信息","PDFE.Views.FileMenuPanels.DocumentInfo.txtFastWV":"快速Web视图","PDFE.Views.FileMenuPanels.DocumentInfo.txtLoading":"加载中…","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"上次修改者","PDFE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"上一次更改","PDFE.Views.FileMenuPanels.DocumentInfo.txtNo":"不","PDFE.Views.FileMenuPanels.DocumentInfo.txtOwner":"创建者","PDFE.Views.FileMenuPanels.DocumentInfo.txtPages":"页面","PDFE.Views.FileMenuPanels.DocumentInfo.txtPageSize":"页面大小","PDFE.Views.FileMenuPanels.DocumentInfo.txtParagraphs":"段落","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer":"PDF生成器","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged":"已标记的PDF","PDFE.Views.FileMenuPanels.DocumentInfo.txtPdfVer":"PDF版本","PDFE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"位置","PDFE.Views.FileMenuPanels.DocumentInfo.txtRights":"拥有权限的人","PDFE.Views.FileMenuPanels.DocumentInfo.txtSpaces":"字符 (包括空格)","PDFE.Views.FileMenuPanels.DocumentInfo.txtStatistics":"统计","PDFE.Views.FileMenuPanels.DocumentInfo.txtSubject":"主题","PDFE.Views.FileMenuPanels.DocumentInfo.txtSymbols":"字符","PDFE.Views.FileMenuPanels.DocumentInfo.txtTags":"标签","PDFE.Views.FileMenuPanels.DocumentInfo.txtTitle":"标题","PDFE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"已上传","PDFE.Views.FileMenuPanels.DocumentInfo.txtWords":"单词","PDFE.Views.FileMenuPanels.DocumentInfo.txtYes":"是","PDFE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"访问权限","PDFE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"更改访问权限","PDFE.Views.FileMenuPanels.DocumentRights.txtRights":"拥有权限的人","PDFE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"密码保护","PDFE.Views.FileMenuPanels.ProtectDoc.strProtect":"保护文档","PDFE.Views.FileMenuPanels.ProtectDoc.strSignature":"签名保护","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"文档含有效签名
文档受到保护,不可编辑。","PDFE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"为确保文档的完整性可添加
隐形数字签名","PDFE.Views.FileMenuPanels.ProtectDoc.txtEdit":"编辑文档","PDFE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"编辑将删除文档中的签名
是否继续?","PDFE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"此文件已使用密码保护。","PDFE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument":"使用密码加密此文档","PDFE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"此文件需要签名。","PDFE.Views.FileMenuPanels.ProtectDoc.txtSigned":"文档含有效签名。文档受到保护,不可编辑。","PDFE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"文件中的一些数字签名无效或无法验证。该文件受到保护,无法编辑。","PDFE.Views.FileMenuPanels.ProtectDoc.txtView":"查看签名","PDFE.Views.FileMenuPanels.Settings.okButtonText":"应用","PDFE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同編輯模式","PDFE.Views.FileMenuPanels.Settings.strFast":"快速","PDFE.Views.FileMenuPanels.Settings.strFontRender":"字体设置","PDFE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"键盘快捷键","PDFE.Views.FileMenuPanels.Settings.strRTLSupport":"RTL 界面 (文字从右到左)","PDFE.Views.FileMenuPanels.Settings.strShowChanges":"实时协作变更","PDFE.Views.FileMenuPanels.Settings.strShowComments":"在文本中显示批注","PDFE.Views.FileMenuPanels.Settings.strShowOthersChanges":"显示来自其他用户的更改","PDFE.Views.FileMenuPanels.Settings.strShowResolvedComments":"显示已解决的批注","PDFE.Views.FileMenuPanels.Settings.strStrict":"严格","PDFE.Views.FileMenuPanels.Settings.strTabStyle":"选项卡样式","PDFE.Views.FileMenuPanels.Settings.strTheme":"界面主题","PDFE.Views.FileMenuPanels.Settings.strUnit":"计量单位","PDFE.Views.FileMenuPanels.Settings.strZoom":"默认缩放值","PDFE.Views.FileMenuPanels.Settings.textAutoRecover":"保存自动恢复信息","PDFE.Views.FileMenuPanels.Settings.textAutoSave":"自动保存","PDFE.Views.FileMenuPanels.Settings.textDisabled":"已禁用","PDFE.Views.FileMenuPanels.Settings.textFill":"填写","PDFE.Views.FileMenuPanels.Settings.textForceSave":"保存中间版本","PDFE.Views.FileMenuPanels.Settings.textLine":"线条","PDFE.Views.FileMenuPanels.Settings.textMinute":"每一分钟","PDFE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"高级设置","PDFE.Views.FileMenuPanels.Settings.txtAll":"查看全部","PDFE.Views.FileMenuPanels.Settings.txtAppearance":"外观","PDFE.Views.FileMenuPanels.Settings.txtCacheMode":"默认缓存模式","PDFE.Views.FileMenuPanels.Settings.txtCm":"厘米","PDFE.Views.FileMenuPanels.Settings.txtCollaboration":"协作","PDFE.Views.FileMenuPanels.Settings.txtCustomize":"自定义","PDFE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"自定义快速访问","PDFE.Views.FileMenuPanels.Settings.txtDarkMode":"启用文档深色模式","PDFE.Views.FileMenuPanels.Settings.txtEditingSaving":"编辑并保存","PDFE.Views.FileMenuPanels.Settings.txtFastTip":"实时共同编辑。所有更改都会自动保存","PDFE.Views.FileMenuPanels.Settings.txtFitPage":"适合页面","PDFE.Views.FileMenuPanels.Settings.txtFitWidth":"调整至合适宽度","PDFE.Views.FileMenuPanels.Settings.txtHieroglyphs":"象形文字","PDFE.Views.FileMenuPanels.Settings.txtInch":"英寸","PDFE.Views.FileMenuPanels.Settings.txtLast":"最后查看","PDFE.Views.FileMenuPanels.Settings.txtLastUsed":"最后一次使用","PDFE.Views.FileMenuPanels.Settings.txtMac":"按照 OS X 样式","PDFE.Views.FileMenuPanels.Settings.txtNative":"本地","PDFE.Views.FileMenuPanels.Settings.txtNone":"无查看","PDFE.Views.FileMenuPanels.Settings.txtPt":"点","PDFE.Views.FileMenuPanels.Settings.txtQuickPrint":"编辑器标题栏显示“快速打印”按钮","PDFE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"文档将打印到最近选择的打印机或者默认打印机","PDFE.Views.FileMenuPanels.Settings.txtScreenReader":"打开屏幕朗读器支持","PDFE.Views.FileMenuPanels.Settings.txtStrictTip":"使用“保存”按钮同步您和其他人所做的更改","PDFE.Views.FileMenuPanels.Settings.txtTabBack":"使用工具栏颜色作为选项卡背景","PDFE.Views.FileMenuPanels.Settings.txtUseAltKey":"按 Alt 键后可通过键盘在用户界面中导航","PDFE.Views.FileMenuPanels.Settings.txtUseAnnotateBar":"选择文本时使用迷你工具栏","PDFE.Views.FileMenuPanels.Settings.txtUseOptionKey":"用Option键使用键盘浏览用户界面","PDFE.Views.FileMenuPanels.Settings.txtWin":"按照 Windows 样式","PDFE.Views.FileMenuPanels.Settings.txtWorkspace":"工作区","PDFE.Views.FileMenuPanels.txtCustomizeQuickAccess":"自定义快速访问","PDFE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"下载为","PDFE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"另存副本为","PDFE.Views.FormatSettingsDialog.textAfter":"段后无间距","PDFE.Views.FormatSettingsDialog.textAfterSpace":"段后有间距","PDFE.Views.FormatSettingsDialog.textBefore":"段前无间距","PDFE.Views.FormatSettingsDialog.textBeforeSpace":"段前有间距","PDFE.Views.FormatSettingsDialog.textCategory":"分类","PDFE.Views.FormatSettingsDialog.textDate":"日期","PDFE.Views.FormatSettingsDialog.textDecimal":"小数位数","PDFE.Views.FormatSettingsDialog.textFormat":"格式","PDFE.Views.FormatSettingsDialog.textLocation":"符号位置","PDFE.Views.FormatSettingsDialog.textMask":"任意掩模","PDFE.Views.FormatSettingsDialog.textNegative":"负数样式","PDFE.Views.FormatSettingsDialog.textNone":"无","PDFE.Views.FormatSettingsDialog.textNumber":"数值","PDFE.Views.FormatSettingsDialog.textParens":"显示括号","PDFE.Views.FormatSettingsDialog.textPercent":"百分比","PDFE.Views.FormatSettingsDialog.textPhone":"电话号码","PDFE.Views.FormatSettingsDialog.textRed":"使用红色文本","PDFE.Views.FormatSettingsDialog.textReg":"正则表达式","PDFE.Views.FormatSettingsDialog.textSeparator":"分隔符样式","PDFE.Views.FormatSettingsDialog.textSpecial":"特殊","PDFE.Views.FormatSettingsDialog.textSSN":"社会保障号码","PDFE.Views.FormatSettingsDialog.textSymbol":"货币符号","PDFE.Views.FormatSettingsDialog.textTime":"时间","PDFE.Views.FormatSettingsDialog.textTitle":"格式设置","PDFE.Views.FormatSettingsDialog.textZipCode":"邮政编码","PDFE.Views.FormatSettingsDialog.textZipCode4":"邮政编码 + 4","PDFE.Views.FormatSettingsDialog.txtCustom":"自定义","PDFE.Views.FormatSettingsDialog.txtSample":"例:","PDFE.Views.FormSettings.textAdvanced":"显示高级设置","PDFE.Views.FormSettings.textAlways":"总是","PDFE.Views.FormSettings.textAnamorphic":"不按比例","PDFE.Views.FormSettings.textArabic":"阿拉伯语","PDFE.Views.FormSettings.textAutofit":"自动适应","PDFE.Views.FormSettings.textBackgroundColor":"背景颜色","PDFE.Views.FormSettings.textBehavior":"行为","PDFE.Views.FormSettings.textBeveled":"倾斜的","PDFE.Views.FormSettings.textBorder":"边框","PDFE.Views.FormSettings.textButton":"按钮","PDFE.Views.FormSettings.textChbStyle":"复选框样式","PDFE.Views.FormSettings.textCheck":"检查","PDFE.Views.FormSettings.textCheckbox":"复选框","PDFE.Views.FormSettings.textCheckDefault":"复选框默认选中","PDFE.Views.FormSettings.textCircle":"圆形","PDFE.Views.FormSettings.textClear":"清除","PDFE.Views.FormSettings.textColor":"颜色","PDFE.Views.FormSettings.textComb":"文字组合","PDFE.Views.FormSettings.textCombobox":"组合框","PDFE.Views.FormSettings.textCommit":"立即提交选定的值","PDFE.Views.FormSettings.textCross":"交叉","PDFE.Views.FormSettings.textCustomText":"允许自定义文本","PDFE.Views.FormSettings.textDashed":"虚线","PDFE.Views.FormSettings.textDate":"日期","PDFE.Views.FormSettings.textDateField":"日期和时间字段","PDFE.Views.FormSettings.textDiamond":"菱形","PDFE.Views.FormSettings.textDown":"下","PDFE.Views.FormSettings.textExport":"出口额","PDFE.Views.FormSettings.textField":"文本字段","PDFE.Views.FormSettings.textFitBounds":"适应边框","PDFE.Views.FormSettings.textFormat":"格式","PDFE.Views.FormSettings.textFromFile":"来自文件","PDFE.Views.FormSettings.textFromStorage":"来自存储设备","PDFE.Views.FormSettings.textFromUrl":"来自URL地址","PDFE.Views.FormSettings.textHindi":"印地语","PDFE.Views.FormSettings.textHover":"滚动","PDFE.Views.FormSettings.textHowScale":"尺寸","PDFE.Views.FormSettings.textIcon":"图标","PDFE.Views.FormSettings.textIconLeft":"图标位于左边,标签位于右边","PDFE.Views.FormSettings.textIconOnly":"仅图标","PDFE.Views.FormSettings.textIconTop":"图标位于顶部,标签位于底部","PDFE.Views.FormSettings.textImage":"图片","PDFE.Views.FormSettings.textInset":"插图","PDFE.Views.FormSettings.textInvert":"倒置","PDFE.Views.FormSettings.textLabel":"附加语","PDFE.Views.FormSettings.textLabelLeft":"标签位于左边,图标位于右边","PDFE.Views.FormSettings.textLabelTop":"标签位于顶部,图标位于底部","PDFE.Views.FormSettings.textLayout":"布局","PDFE.Views.FormSettings.textListBox":"列表框","PDFE.Views.FormSettings.textLock":"锁定","PDFE.Views.FormSettings.textMask":"任意掩模","PDFE.Views.FormSettings.textMaxChars":"字符限制","PDFE.Views.FormSettings.textMedium":"中","PDFE.Views.FormSettings.textMulti":"多行","PDFE.Views.FormSettings.textMultisel":"多项选择","PDFE.Views.FormSettings.textName":"名称","PDFE.Views.FormSettings.textNever":"从不","PDFE.Views.FormSettings.textNoBorder":"无边框","PDFE.Views.FormSettings.textNoFill":"无填充","PDFE.Views.FormSettings.textNone":"无","PDFE.Views.FormSettings.textNormal":"上","PDFE.Views.FormSettings.textNumber":"数值","PDFE.Views.FormSettings.textNumeral":"数字","PDFE.Views.FormSettings.textOrientation":"方向","PDFE.Views.FormSettings.textOutline":"大纲","PDFE.Views.FormSettings.textOverlay":"图标上方的标签","PDFE.Views.FormSettings.textPassword":"密码","PDFE.Views.FormSettings.textPercent":"百分比","PDFE.Views.FormSettings.textPhone":"电话号码","PDFE.Views.FormSettings.textPlaceholder":"占位符","PDFE.Views.FormSettings.textPlacement":"图标放置","PDFE.Views.FormSettings.textProportional":"按比例","PDFE.Views.FormSettings.textPush":"推动","PDFE.Views.FormSettings.textRadiobox":"单选按钮","PDFE.Views.FormSettings.textRadioChoice":"单选按钮选项","PDFE.Views.FormSettings.textRadioDefault":"按钮默认选中","PDFE.Views.FormSettings.textRadioStyle":"按钮样式","PDFE.Views.FormSettings.textReadonly":"只读","PDFE.Views.FormSettings.textReg":"正则表达式","PDFE.Views.FormSettings.textRequired":"必填","PDFE.Views.FormSettings.textScale":"何时缩放","PDFE.Views.FormSettings.textScroll":"滚动长文本","PDFE.Views.FormSettings.textSelect":"选择","PDFE.Views.FormSettings.textSolid":"实心","PDFE.Views.FormSettings.textSpecial":"特殊","PDFE.Views.FormSettings.textSquare":"方形","PDFE.Views.FormSettings.textSSN":"社会保障号码","PDFE.Views.FormSettings.textStar":"星","PDFE.Views.FormSettings.textState":"省/州","PDFE.Views.FormSettings.textStyle":"样式","PDFE.Views.FormSettings.textText":"文本","PDFE.Views.FormSettings.textTextOnly":"仅标签","PDFE.Views.FormSettings.textThick":"粗","PDFE.Views.FormSettings.textThickness":"粗度","PDFE.Views.FormSettings.textThin":"细","PDFE.Views.FormSettings.textTime":"时间","PDFE.Views.FormSettings.textTip":"提示","PDFE.Views.FormSettings.textTipAdd":"添加新值","PDFE.Views.FormSettings.textTipDelete":"删除值","PDFE.Views.FormSettings.textTipDown":"下移","PDFE.Views.FormSettings.textTipUp":"上移","PDFE.Views.FormSettings.textTooBig":"图片太大","PDFE.Views.FormSettings.textTooSmall":"图片太小","PDFE.Views.FormSettings.textUnderline":"下划线","PDFE.Views.FormSettings.textUnison":"具有相同名称和选项的按钮同时被选中","PDFE.Views.FormSettings.textUnlock":"解锁","PDFE.Views.FormSettings.textValue":"数值选项","PDFE.Views.FormSettings.textZipCode":"邮政编码","PDFE.Views.FormSettings.textZipCode4":"邮政编码 + 4","PDFE.Views.FormSettings.txtCustom":"自定义","PDFE.Views.FormsTab.capBtnCheckBox":"复选框","PDFE.Views.FormsTab.capBtnComboBox":"组合框","PDFE.Views.FormsTab.capBtnDropDown":"列表框","PDFE.Views.FormsTab.capBtnEmail":"电子邮件","PDFE.Views.FormsTab.capBtnImage":"图片","PDFE.Views.FormsTab.capBtnNext":"下一个字段","PDFE.Views.FormsTab.capBtnPhone":"电话号码","PDFE.Views.FormsTab.capBtnPrev":"上一个字段","PDFE.Views.FormsTab.capBtnRadioBox":"单选按钮","PDFE.Views.FormsTab.capBtnText":"文本字段","PDFE.Views.FormsTab.capCreditCard":"信用卡","PDFE.Views.FormsTab.capDateTime":"日期和时间","PDFE.Views.FormsTab.capZipCode":"邮政编码","PDFE.Views.FormsTab.textAnyone":"任何人","PDFE.Views.FormsTab.textClear":"清除字段","PDFE.Views.FormsTab.textClearFields":"清除所有字段","PDFE.Views.FormsTab.tipCheckBox":"插入复选框","PDFE.Views.FormsTab.tipComboBox":"插入组合框","PDFE.Views.FormsTab.tipCreditCard":"插入信用卡号","PDFE.Views.FormsTab.tipDateTime":"插入日期和时间","PDFE.Views.FormsTab.tipDropDown":"插入列表框","PDFE.Views.FormsTab.tipEmailField":"插入电子邮件地址","PDFE.Views.FormsTab.tipImageField":"插入图片","PDFE.Views.FormsTab.tipNextForm":"转到下一个字段","PDFE.Views.FormsTab.tipPhoneField":"插入电话号码","PDFE.Views.FormsTab.tipPrevForm":"转到上一个字段","PDFE.Views.FormsTab.tipRadioBox":"插入单选按钮","PDFE.Views.FormsTab.tipTextField":"插入文本字段","PDFE.Views.FormsTab.tipZipCode":"插入邮政编码","PDFE.Views.HyperlinkSettingsDialog.strDisplay":"显示","PDFE.Views.HyperlinkSettingsDialog.strLinkTo":"链接到","PDFE.Views.HyperlinkSettingsDialog.textDefault":"所选文本片段","PDFE.Views.HyperlinkSettingsDialog.textEmptyDesc":"在这里输入标题","PDFE.Views.HyperlinkSettingsDialog.textEmptyLink":"在这里输入链接","PDFE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"在这里输入工具提示","PDFE.Views.HyperlinkSettingsDialog.textExternalLink":"外部链接","PDFE.Views.HyperlinkSettingsDialog.textInternalLink":"本文档中的页面","PDFE.Views.HyperlinkSettingsDialog.textPages":"页面","PDFE.Views.HyperlinkSettingsDialog.textSelectFile":"选择文件","PDFE.Views.HyperlinkSettingsDialog.textTipText":"屏幕提示文字","PDFE.Views.HyperlinkSettingsDialog.textTitle":"链接设置","PDFE.Views.HyperlinkSettingsDialog.txtCreateDesc":"使用滚动条、鼠标和缩放功能选择目标视图,然后点击“设置链接”按钮创建链接目标。","PDFE.Views.HyperlinkSettingsDialog.txtCreateLink":"创建前往查看","PDFE.Views.HyperlinkSettingsDialog.txtEmpty":"这是必填栏","PDFE.Views.HyperlinkSettingsDialog.txtFirst":"第一页","PDFE.Views.HyperlinkSettingsDialog.txtLast":"最后一页","PDFE.Views.HyperlinkSettingsDialog.txtNext":"下一页","PDFE.Views.HyperlinkSettingsDialog.txtNotUrl":"该字段应该为“http://www.example.com”格式的URL","PDFE.Views.HyperlinkSettingsDialog.txtPage":"页面","PDFE.Views.HyperlinkSettingsDialog.txtPageView":"转到页面视图","PDFE.Views.HyperlinkSettingsDialog.txtPrev":"上一页","PDFE.Views.HyperlinkSettingsDialog.txtSetLink":"设置链接","PDFE.Views.HyperlinkSettingsDialog.txtSizeLimit":"此字段限制为2083个字符","PDFE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"输入网址或选择文件","PDFE.Views.ImageSettings.strTransparency":"透明度","PDFE.Views.ImageSettings.textAdvanced":"显示高级设置","PDFE.Views.ImageSettings.textCrop":"裁剪","PDFE.Views.ImageSettings.textCropFill":"填充","PDFE.Views.ImageSettings.textCropFit":"适应","PDFE.Views.ImageSettings.textCropToShape":"裁剪成形状","PDFE.Views.ImageSettings.textEdit":"编辑","PDFE.Views.ImageSettings.textEditObject":"编辑对象","PDFE.Views.ImageSettings.textFitPage":"适合页面","PDFE.Views.ImageSettings.textFlip":"翻转","PDFE.Views.ImageSettings.textFromFile":"从文件导入","PDFE.Views.ImageSettings.textFromStorage":"来自存储设备","PDFE.Views.ImageSettings.textFromUrl":"来自URL","PDFE.Views.ImageSettings.textHeight":"\n高度","PDFE.Views.ImageSettings.textHint270":"逆时针旋转90°","PDFE.Views.ImageSettings.textHint90":"顺时针旋转90°","PDFE.Views.ImageSettings.textHintFlipH":"水平翻转","PDFE.Views.ImageSettings.textHintFlipV":"垂直翻转","PDFE.Views.ImageSettings.textInsert":"替换图片","PDFE.Views.ImageSettings.textOriginalSize":"实际大小","PDFE.Views.ImageSettings.textRecentlyUsed":"最近使用的","PDFE.Views.ImageSettings.textResetCrop":"重置裁剪","PDFE.Views.ImageSettings.textRotate90":"旋转90°","PDFE.Views.ImageSettings.textRotation":"旋转","PDFE.Views.ImageSettings.textSize":"大小","PDFE.Views.ImageSettings.textWidth":"宽度","PDFE.Views.ImageSettingsAdvanced.textAlt":"替代文本","PDFE.Views.ImageSettingsAdvanced.textAltDescription":"描述","PDFE.Views.ImageSettingsAdvanced.textAltTip":"视觉对象信息的另一种基于文本的表示方式,将读取给视力或认知障碍的人,以帮助他们更好地理解图像、形状、图表或表格中的信息。","PDFE.Views.ImageSettingsAdvanced.textAltTitle":"标题","PDFE.Views.ImageSettingsAdvanced.textAngle":"角度","PDFE.Views.ImageSettingsAdvanced.textCenter":"居中","PDFE.Views.ImageSettingsAdvanced.textFlipped":"已翻转的","PDFE.Views.ImageSettingsAdvanced.textFrom":"来自","PDFE.Views.ImageSettingsAdvanced.textGeneral":"常规","PDFE.Views.ImageSettingsAdvanced.textHeight":"\n高度","PDFE.Views.ImageSettingsAdvanced.textHorizontal":"水平的","PDFE.Views.ImageSettingsAdvanced.textHorizontally":"水平地","PDFE.Views.ImageSettingsAdvanced.textImageName":"图片名称","PDFE.Views.ImageSettingsAdvanced.textKeepRatio":"不变比例","PDFE.Views.ImageSettingsAdvanced.textOriginalSize":"实际大小","PDFE.Views.ImageSettingsAdvanced.textPlacement":"放置","PDFE.Views.ImageSettingsAdvanced.textPosition":"位置","PDFE.Views.ImageSettingsAdvanced.textRotation":"旋转","PDFE.Views.ImageSettingsAdvanced.textSize":"大小","PDFE.Views.ImageSettingsAdvanced.textTitle":"图片 - 高级设置","PDFE.Views.ImageSettingsAdvanced.textTopLeftCorner":"左上角","PDFE.Views.ImageSettingsAdvanced.textVertical":"垂直","PDFE.Views.ImageSettingsAdvanced.textVertically":"垂直地","PDFE.Views.ImageSettingsAdvanced.textWidth":"宽度","PDFE.Views.InsTab.capBlankPage":"空白页","PDFE.Views.InsTab.capBtnDateTime":"日期和时间","PDFE.Views.InsTab.capBtnInsHeaderFooter":"页眉和页脚","PDFE.Views.InsTab.capBtnInsSmartArt":"智能图形","PDFE.Views.InsTab.capBtnInsSymbol":"符号","PDFE.Views.InsTab.capBtnPageNum":"页码","PDFE.Views.InsTab.capInsertChart":"图表","PDFE.Views.InsTab.capInsertEquation":"方程式","PDFE.Views.InsTab.capInsertHyperlink":"链接","PDFE.Views.InsTab.capInsertImage":"图片","PDFE.Views.InsTab.capInsertShape":"形状","PDFE.Views.InsTab.capInsertTable":"表格","PDFE.Views.InsTab.capInsertText":"文本框","PDFE.Views.InsTab.capInsertTextArt":"艺术字","PDFE.Views.InsTab.capInsPage":"插入页面","PDFE.Views.InsTab.mniCustomTable":"插入自定义表格","PDFE.Views.InsTab.mniImageFromFile":"来自文件的图片","PDFE.Views.InsTab.mniImageFromStorage":"存储设备中的图片","PDFE.Views.InsTab.mniImageFromUrl":"图片来自网络","PDFE.Views.InsTab.mniInsertSSE":"插入电子表格","PDFE.Views.InsTab.textAlpha":"希腊文小字母阿尔法","PDFE.Views.InsTab.textBetta":"希腊文小字母贝塔","PDFE.Views.InsTab.textBlackHeart":"黑心套装","PDFE.Views.InsTab.textBullet":"项目符号","PDFE.Views.InsTab.textCopyright":"版权符号","PDFE.Views.InsTab.textDegree":"度数符号","PDFE.Views.InsTab.textDelta":"希腊文小字母得尔塔","PDFE.Views.InsTab.textDivision":"除号","PDFE.Views.InsTab.textDollar":"美元符号","PDFE.Views.InsTab.textEuro":"欧元符号","PDFE.Views.InsTab.textGreaterEqual":"大于或等于","PDFE.Views.InsTab.textInfinity":"无限","PDFE.Views.InsTab.textLessEqual":"小于或等于","PDFE.Views.InsTab.textLetterPi":"希腊文小字母 Pi","PDFE.Views.InsTab.textMoreSymbols":"更多符号","PDFE.Views.InsTab.textNotEqualTo":"不等于","PDFE.Views.InsTab.textOneHalf":"普通分数一半","PDFE.Views.InsTab.textOneQuarter":"普通分数四分之一","PDFE.Views.InsTab.textPlusMinus":"正负号","PDFE.Views.InsTab.textRecentlyUsed":"最近使用的","PDFE.Views.InsTab.textRegistered":"注册标志","PDFE.Views.InsTab.textSection":"章节标志","PDFE.Views.InsTab.textSmile":"白色笑脸","PDFE.Views.InsTab.textSquareRoot":"平方根","PDFE.Views.InsTab.textTilde":"波浪号","PDFE.Views.InsTab.textTradeMark":"商标标志","PDFE.Views.InsTab.textYen":"日元符号","PDFE.Views.InsTab.tipChangeChart":"更改图表类型","PDFE.Views.InsTab.tipDateTime":"插入当前日期和时间","PDFE.Views.InsTab.tipEditHeaderFooter":"编辑页眉或页脚","PDFE.Views.InsTab.tipInsertChart":"插入图表","PDFE.Views.InsTab.tipInsertEquation":"插入方程","PDFE.Views.InsTab.tipInsertHorizontalText":"插入水平文本框","PDFE.Views.InsTab.tipInsertHyperlink":"添加链接","PDFE.Views.InsTab.tipInsertImage":"插入图片","PDFE.Views.InsTab.tipInsertPage":"插入空白页","PDFE.Views.InsTab.tipInsertPageAfter":"在后面插入空白页","PDFE.Views.InsTab.tipInsertShape":"插入形状","PDFE.Views.InsTab.tipInsertSmartArt":"插入智能图形","PDFE.Views.InsTab.tipInsertSymbol":"插入符号","PDFE.Views.InsTab.tipInsertTable":"插入表格","PDFE.Views.InsTab.tipInsertText":"插入文本框","PDFE.Views.InsTab.tipInsertTextArt":"插入艺术字","PDFE.Views.InsTab.tipInsertVerticalText":"插入垂直文本框","PDFE.Views.InsTab.tipPageNum":"插入页码","PDFE.Views.InsTab.txtNewPageAfter":"在后面插入空白页","PDFE.Views.InsTab.txtNewPageBefore":"在前面插入空白页","PDFE.Views.LeftMenu.ariaLeftMenu":"左侧菜单","PDFE.Views.LeftMenu.tipAbout":"关于","PDFE.Views.LeftMenu.tipChat":"聊天","PDFE.Views.LeftMenu.tipComments":"批注","PDFE.Views.LeftMenu.tipNavigation":"导航","PDFE.Views.LeftMenu.tipOutline":"标题","PDFE.Views.LeftMenu.tipPageThumbnails":"页面缩略图","PDFE.Views.LeftMenu.tipPlugins":"插件","PDFE.Views.LeftMenu.tipSearch":"查找","PDFE.Views.LeftMenu.tipSupport":"反馈和支持","PDFE.Views.LeftMenu.tipTitles":"标题","PDFE.Views.LeftMenu.txtDeveloper":"开发者模式","PDFE.Views.LeftMenu.txtEditor":"PDF编辑器","PDFE.Views.LeftMenu.txtLimit":"限制访问","PDFE.Views.LeftMenu.txtTrial":"试用模式","PDFE.Views.LeftMenu.txtTrialDev":"试用开发者模式","PDFE.Views.Navigation.strNavigate":"标题","PDFE.Views.Navigation.txtClosePanel":"关闭标题","PDFE.Views.Navigation.txtCollapse":"折叠全部","PDFE.Views.Navigation.txtEmptyItem":"空标题","PDFE.Views.Navigation.txtEmptyViewer":"文档中没有标题。","PDFE.Views.Navigation.txtExpand":"展开全部","PDFE.Views.Navigation.txtExpandToLevel":"展开到级别","PDFE.Views.Navigation.txtFontSize":"字体大小","PDFE.Views.Navigation.txtLarge":"大","PDFE.Views.Navigation.txtMedium":"中等","PDFE.Views.Navigation.txtSettings":"标题设置","PDFE.Views.Navigation.txtSmall":"小","PDFE.Views.Navigation.txtWrapHeadings":"换行长标题","PDFE.Views.PageThumbnails.textClosePanel":"关闭页面缩略图","PDFE.Views.PageThumbnails.textHighlightVisiblePart":"高亮显示页面的可见部分","PDFE.Views.PageThumbnails.textPageThumbnails":"页面缩略图","PDFE.Views.PageThumbnails.textThumbnailsSettings":"缩略图设置","PDFE.Views.PageThumbnails.textThumbnailsSize":"缩略图设置大小","PDFE.Views.ParagraphSettings.strLineHeight":"行间距","PDFE.Views.ParagraphSettings.strParagraphSpacing":"段落间距","PDFE.Views.ParagraphSettings.strSpacingAfter":"后","PDFE.Views.ParagraphSettings.strSpacingBefore":"之前","PDFE.Views.ParagraphSettings.textAdvanced":"显示高级设置","PDFE.Views.ParagraphSettings.textAt":"在","PDFE.Views.ParagraphSettings.textAtLeast":"最小值","PDFE.Views.ParagraphSettings.textAuto":"多个","PDFE.Views.ParagraphSettings.textExact":"固定值","PDFE.Views.ParagraphSettings.txtAutoText":"自动","PDFE.Views.ParagraphSettingsAdvanced.noTabs":"指定的选项卡将显示在此字段中","PDFE.Views.ParagraphSettingsAdvanced.strAllCaps":"全部大写","PDFE.Views.ParagraphSettingsAdvanced.strDirection":"方向","PDFE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"双删除线","PDFE.Views.ParagraphSettingsAdvanced.strIndent":"缩进","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","PDFE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"行间距","PDFE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"右","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"后","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"之前","PDFE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"特殊","PDFE.Views.ParagraphSettingsAdvanced.strParagraphFont":"字体 ","PDFE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"缩进和间距","PDFE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型大写字母","PDFE.Views.ParagraphSettingsAdvanced.strSpacing":"间距","PDFE.Views.ParagraphSettingsAdvanced.strStrike":"删除线","PDFE.Views.ParagraphSettingsAdvanced.strSubscript":"下标","PDFE.Views.ParagraphSettingsAdvanced.strSuperscript":"上标","PDFE.Views.ParagraphSettingsAdvanced.strTabs":"标签","PDFE.Views.ParagraphSettingsAdvanced.textAlign":"对齐","PDFE.Views.ParagraphSettingsAdvanced.textAuto":"多个","PDFE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"字符间距","PDFE.Views.ParagraphSettingsAdvanced.textDefault":"默认选项卡","PDFE.Views.ParagraphSettingsAdvanced.textDirLtr":"从左到右","PDFE.Views.ParagraphSettingsAdvanced.textDirRtl":"从右到左","PDFE.Views.ParagraphSettingsAdvanced.textEffects":"效果","PDFE.Views.ParagraphSettingsAdvanced.textExact":"固定值","PDFE.Views.ParagraphSettingsAdvanced.textFirstLine":"第一行","PDFE.Views.ParagraphSettingsAdvanced.textHanging":"悬挂","PDFE.Views.ParagraphSettingsAdvanced.textJustified":"两端对齐","PDFE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(无)","PDFE.Views.ParagraphSettingsAdvanced.textRemove":"删除","PDFE.Views.ParagraphSettingsAdvanced.textRemoveAll":"删除所有","PDFE.Views.ParagraphSettingsAdvanced.textSet":"指定","PDFE.Views.ParagraphSettingsAdvanced.textTabCenter":"居中","PDFE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","PDFE.Views.ParagraphSettingsAdvanced.textTabPosition":"标签的位置","PDFE.Views.ParagraphSettingsAdvanced.textTabRight":"右","PDFE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 高级设置","PDFE.Views.ParagraphSettingsAdvanced.txtAutoText":"自动","PDFE.Views.PrintWithPreview.textMarginsLast":"上次自定义","PDFE.Views.PrintWithPreview.textMarginsModerate":"中等","PDFE.Views.PrintWithPreview.textMarginsNarrow":"缩小","PDFE.Views.PrintWithPreview.textMarginsNormal":"常规","PDFE.Views.PrintWithPreview.textMarginsWide":"宽","PDFE.Views.PrintWithPreview.txtAllPages":"所有页面","PDFE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"黑白打印","PDFE.Views.PrintWithPreview.txtBothSides":"双面打印","PDFE.Views.PrintWithPreview.txtBothSidesLongDesc":"长边翻页","PDFE.Views.PrintWithPreview.txtBothSidesShortDesc":"短边翻页","PDFE.Views.PrintWithPreview.txtBottom":"下","PDFE.Views.PrintWithPreview.txtColorPrinting":"彩色打印","PDFE.Views.PrintWithPreview.txtContent":"Content","PDFE.Views.PrintWithPreview.txtCopies":"副本","PDFE.Views.PrintWithPreview.txtCurrentPage":"当前页面","PDFE.Views.PrintWithPreview.txtCustom":"自定义","PDFE.Views.PrintWithPreview.txtCustomPages":"自定义打印","PDFE.Views.PrintWithPreview.txtDocument":"Document","PDFE.Views.PrintWithPreview.txtDocumentAndMarkups":"Document and Markups","PDFE.Views.PrintWithPreview.txtDocumentAndStamps":"Document and Stamps","PDFE.Views.PrintWithPreview.txtFormFieldsOnly":"Form fields only","PDFE.Views.PrintWithPreview.txtLandscape":"横向","PDFE.Views.PrintWithPreview.txtLeft":"左","PDFE.Views.PrintWithPreview.txtMargins":"边距","PDFE.Views.PrintWithPreview.txtOf":"共 {0} 页","PDFE.Views.PrintWithPreview.txtOneSide":"单面打印","PDFE.Views.PrintWithPreview.txtOneSideDesc":"仅在页面的一侧打印","PDFE.Views.PrintWithPreview.txtPage":"页面","PDFE.Views.PrintWithPreview.txtPageNumInvalid":"页码无效","PDFE.Views.PrintWithPreview.txtPageOrientation":"页面方向","PDFE.Views.PrintWithPreview.txtPages":"页面","PDFE.Views.PrintWithPreview.txtPageSize":"页面大小","PDFE.Views.PrintWithPreview.txtPortrait":"纵向","PDFE.Views.PrintWithPreview.txtPrint":"打印","PDFE.Views.PrintWithPreview.txtPrinter":"打印机","PDFE.Views.PrintWithPreview.txtPrinterNotSelected":"未选择打印机","PDFE.Views.PrintWithPreview.txtPrintersNotFound":"未找到打印机","PDFE.Views.PrintWithPreview.txtPrintPdf":"打印为 PDF","PDFE.Views.PrintWithPreview.txtPrintRange":"打印范围","PDFE.Views.PrintWithPreview.txtPrintSides":"打印面","PDFE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"使用系统对话框打印","PDFE.Views.PrintWithPreview.txtRight":"右","PDFE.Views.PrintWithPreview.txtSelection":"选择","PDFE.Views.PrintWithPreview.txtTop":"顶部","PDFE.Views.PrintWithPreview.txtWaitingForPrinters":"正在等待打印机","PDFE.Views.RedactTab.capApplyRedactions":"应用密文","PDFE.Views.RedactTab.capFindRedact":"查找密文","PDFE.Views.RedactTab.capMarkRedact":"标记密文","PDFE.Views.RedactTab.capRedactPages":"页面密文","PDFE.Views.RedactTab.tipApplyRedactions":"应用密文","PDFE.Views.RedactTab.tipFindRedact":"查找并标记密文","PDFE.Views.RedactTab.tipMarkForRedact":"标记密文","PDFE.Views.RedactTab.tipRedactPages":"标记页面为密文","PDFE.Views.RedactTab.txtMarkCurrentPage":"标记当前页","PDFE.Views.RedactTab.txtSelectRange":"选择范围","PDFE.Views.RightMenu.ariaRightMenu":"右侧菜单","PDFE.Views.RightMenu.txtChartSettings":"图表设置","PDFE.Views.RightMenu.txtFormSettings":"表单设置","PDFE.Views.RightMenu.txtImageSettings":"图像设置","PDFE.Views.RightMenu.txtParagraphSettings":"段落设置","PDFE.Views.RightMenu.txtShapeSettings":"形状设置","PDFE.Views.RightMenu.txtTableSettings":"表格设置","PDFE.Views.RightMenu.txtTextArtSettings":"艺术字设置","PDFE.Views.ShapeSettings.strBackground":"背景颜色","PDFE.Views.ShapeSettings.strChange":"更改形状","PDFE.Views.ShapeSettings.strColor":"颜色","PDFE.Views.ShapeSettings.strFill":"填充","PDFE.Views.ShapeSettings.strForeground":"前景颜色","PDFE.Views.ShapeSettings.strPattern":"图案","PDFE.Views.ShapeSettings.strShadow":"显示阴影","PDFE.Views.ShapeSettings.strSize":"粗细","PDFE.Views.ShapeSettings.strStroke":"线条","PDFE.Views.ShapeSettings.strTransparency":"不透明度","PDFE.Views.ShapeSettings.strType":"类型","PDFE.Views.ShapeSettings.textAdjustShadow":"调整阴影","PDFE.Views.ShapeSettings.textAdvanced":"显示高级设置","PDFE.Views.ShapeSettings.textAngle":"角度","PDFE.Views.ShapeSettings.textBorderSizeErr":"输入的值不正确。
请输入介于0 pt和1584 pt之间的值。","PDFE.Views.ShapeSettings.textColor":"颜色填充","PDFE.Views.ShapeSettings.textDirection":"方向","PDFE.Views.ShapeSettings.textEditPoints":"编辑点","PDFE.Views.ShapeSettings.textEditShape":"编辑形状","PDFE.Views.ShapeSettings.textEmptyPattern":"无图案","PDFE.Views.ShapeSettings.textEyedropper":"拾色器","PDFE.Views.ShapeSettings.textFlip":"翻转","PDFE.Views.ShapeSettings.textFromFile":"从文件导入","PDFE.Views.ShapeSettings.textFromStorage":"来自存储设备","PDFE.Views.ShapeSettings.textFromUrl":"来自URL","PDFE.Views.ShapeSettings.textGradient":"渐变点","PDFE.Views.ShapeSettings.textGradientFill":"渐变填充","PDFE.Views.ShapeSettings.textHint270":"逆时针旋转90°","PDFE.Views.ShapeSettings.textHint90":"顺时针旋转90°","PDFE.Views.ShapeSettings.textHintFlipH":"水平翻转","PDFE.Views.ShapeSettings.textHintFlipV":"垂直翻转","PDFE.Views.ShapeSettings.textImageTexture":"图片或纹理","PDFE.Views.ShapeSettings.textLinear":"线性","PDFE.Views.ShapeSettings.textMoreColors":"更多颜色","PDFE.Views.ShapeSettings.textNoFill":"无填充","PDFE.Views.ShapeSettings.textNoShadow":"无阴影","PDFE.Views.ShapeSettings.textPatternFill":"图案","PDFE.Views.ShapeSettings.textPosition":"位置","PDFE.Views.ShapeSettings.textRadial":"放射状","PDFE.Views.ShapeSettings.textRecentlyUsed":"最近使用的","PDFE.Views.ShapeSettings.textRotate90":"旋转90°","PDFE.Views.ShapeSettings.textRotation":"旋转","PDFE.Views.ShapeSettings.textSelectImage":"选择图片","PDFE.Views.ShapeSettings.textSelectTexture":"选择","PDFE.Views.ShapeSettings.textShadow":"阴影","PDFE.Views.ShapeSettings.textStretch":"延伸","PDFE.Views.ShapeSettings.textStyle":"样式","PDFE.Views.ShapeSettings.textTexture":"来自纹理","PDFE.Views.ShapeSettings.textTile":"Tile","PDFE.Views.ShapeSettings.tipAddGradientPoint":"添加渐变点","PDFE.Views.ShapeSettings.tipRemoveGradientPoint":"删除渐变点","PDFE.Views.ShapeSettings.txtBrownPaper":"牛皮纸","PDFE.Views.ShapeSettings.txtCanvas":"画布","PDFE.Views.ShapeSettings.txtCarton":"纸盒","PDFE.Views.ShapeSettings.txtDarkFabric":"深色面料","PDFE.Views.ShapeSettings.txtGrain":"颗粒","PDFE.Views.ShapeSettings.txtGranite":"花岗岩","PDFE.Views.ShapeSettings.txtGreyPaper":"灰色纸张","PDFE.Views.ShapeSettings.txtKnit":"编织","PDFE.Views.ShapeSettings.txtLeather":"皮革","PDFE.Views.ShapeSettings.txtNoBorders":"无线条","PDFE.Views.ShapeSettings.txtOffsetBottom":"偏移:下","PDFE.Views.ShapeSettings.txtOffsetBottomLeft":"偏移:左下","PDFE.Views.ShapeSettings.txtOffsetBottomRight":"偏移:右下","PDFE.Views.ShapeSettings.txtOffsetCenter":"偏移:中心","PDFE.Views.ShapeSettings.txtOffsetLeft":"偏移:左","PDFE.Views.ShapeSettings.txtOffsetRight":"偏移:右","PDFE.Views.ShapeSettings.txtOffsetTop":"偏移:上","PDFE.Views.ShapeSettings.txtOffsetTopLeft":"偏移:左上","PDFE.Views.ShapeSettings.txtOffsetTopRight":"偏移:右上","PDFE.Views.ShapeSettings.txtPapyrus":"纸莎草","PDFE.Views.ShapeSettings.txtWood":"木头","PDFE.Views.ShapeSettingsAdvanced.strColumns":"列","PDFE.Views.ShapeSettingsAdvanced.strMargins":"文字填充","PDFE.Views.ShapeSettingsAdvanced.textAlt":"替代文本","PDFE.Views.ShapeSettingsAdvanced.textAltDescription":"描述","PDFE.Views.ShapeSettingsAdvanced.textAltTip":"视觉对象信息的另一种基于文本的表示方式,将读取给视力或认知障碍的人,以帮助他们更好地理解图像、形状、图表或表格中的信息。","PDFE.Views.ShapeSettingsAdvanced.textAltTitle":"标题","PDFE.Views.ShapeSettingsAdvanced.textAngle":"角度","PDFE.Views.ShapeSettingsAdvanced.textArrows":"箭头","PDFE.Views.ShapeSettingsAdvanced.textAutofit":"自动适应","PDFE.Views.ShapeSettingsAdvanced.textBeginSize":"初始大小","PDFE.Views.ShapeSettingsAdvanced.textBeginStyle":"初始样式","PDFE.Views.ShapeSettingsAdvanced.textBevel":"斜角","PDFE.Views.ShapeSettingsAdvanced.textBottom":"底部","PDFE.Views.ShapeSettingsAdvanced.textCapType":"大写字母样式","PDFE.Views.ShapeSettingsAdvanced.textCenter":"居中","PDFE.Views.ShapeSettingsAdvanced.textColNumber":"列数","PDFE.Views.ShapeSettingsAdvanced.textEndSize":"末端尺寸","PDFE.Views.ShapeSettingsAdvanced.textEndStyle":"末端样式","PDFE.Views.ShapeSettingsAdvanced.textFlat":"平面","PDFE.Views.ShapeSettingsAdvanced.textFlipped":"已翻转的","PDFE.Views.ShapeSettingsAdvanced.textFrom":"来自","PDFE.Views.ShapeSettingsAdvanced.textGeneral":"常规","PDFE.Views.ShapeSettingsAdvanced.textHeight":"\n高度","PDFE.Views.ShapeSettingsAdvanced.textHorizontal":"水平的","PDFE.Views.ShapeSettingsAdvanced.textHorizontally":"水平地","PDFE.Views.ShapeSettingsAdvanced.textJoinType":"加入类型","PDFE.Views.ShapeSettingsAdvanced.textKeepRatio":"不变比例","PDFE.Views.ShapeSettingsAdvanced.textLeft":"左","PDFE.Views.ShapeSettingsAdvanced.textLineStyle":"线型","PDFE.Views.ShapeSettingsAdvanced.textMiter":"斜接角","PDFE.Views.ShapeSettingsAdvanced.textNofit":"不自动调整","PDFE.Views.ShapeSettingsAdvanced.textPlacement":"放置","PDFE.Views.ShapeSettingsAdvanced.textPosition":"位置","PDFE.Views.ShapeSettingsAdvanced.textResizeFit":"调整形状大小以适应文本","PDFE.Views.ShapeSettingsAdvanced.textRight":"右","PDFE.Views.ShapeSettingsAdvanced.textRotation":"旋转","PDFE.Views.ShapeSettingsAdvanced.textRound":"圆","PDFE.Views.ShapeSettingsAdvanced.textShapeName":"形状名称","PDFE.Views.ShapeSettingsAdvanced.textShrink":"溢出时缩小文本","PDFE.Views.ShapeSettingsAdvanced.textSize":"大小","PDFE.Views.ShapeSettingsAdvanced.textSpacing":"列之间的间距","PDFE.Views.ShapeSettingsAdvanced.textSquare":"方形","PDFE.Views.ShapeSettingsAdvanced.textTextBox":"文本框","PDFE.Views.ShapeSettingsAdvanced.textTitle":"形状 - 高级设置","PDFE.Views.ShapeSettingsAdvanced.textTop":"顶部","PDFE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"左上角","PDFE.Views.ShapeSettingsAdvanced.textVertical":"垂直","PDFE.Views.ShapeSettingsAdvanced.textVertically":"垂直地","PDFE.Views.ShapeSettingsAdvanced.textWeightArrows":"重量和箭头","PDFE.Views.ShapeSettingsAdvanced.textWidth":"宽度","PDFE.Views.ShapeSettingsAdvanced.txtNone":"无","PDFE.Views.Statusbar.goToPageText":"转到页面","PDFE.Views.Statusbar.pageIndexText":"第{0}页共{1}页","PDFE.Views.Statusbar.tipFitPage":"适合页面","PDFE.Views.Statusbar.tipFitWidth":"调整至合适宽度","PDFE.Views.Statusbar.tipHandTool":"手动工具","PDFE.Views.Statusbar.tipPageNext":"跳转到下一页","PDFE.Views.Statusbar.tipPagePrev":"跳转到上一页","PDFE.Views.Statusbar.tipSelectTool":"选择工具","PDFE.Views.Statusbar.tipZoomFactor":"缩放","PDFE.Views.Statusbar.tipZoomIn":"放大","PDFE.Views.Statusbar.tipZoomOut":"缩小","PDFE.Views.Statusbar.txtPageNumInvalid":"页码无效","PDFE.Views.TableSettings.deleteColumnText":"删除列","PDFE.Views.TableSettings.deleteRowText":"删除行","PDFE.Views.TableSettings.deleteTableText":"删除表格","PDFE.Views.TableSettings.insertColumnLeftText":"在左侧插入列","PDFE.Views.TableSettings.insertColumnRightText":"向右侧插入列","PDFE.Views.TableSettings.insertRowAboveText":"在上方插入行","PDFE.Views.TableSettings.insertRowBelowText":"在下方插入行","PDFE.Views.TableSettings.mergeCellsText":"合并单元格","PDFE.Views.TableSettings.selectCellText":"选择单元格","PDFE.Views.TableSettings.selectColumnText":"选择列","PDFE.Views.TableSettings.selectRowText":"选择行","PDFE.Views.TableSettings.selectTableText":"选择表格","PDFE.Views.TableSettings.splitCellsText":"拆分单元格","PDFE.Views.TableSettings.splitCellTitleText":"拆分单元格","PDFE.Views.TableSettings.textAdvanced":"显示高级设置","PDFE.Views.TableSettings.textBackColor":"背景颜色","PDFE.Views.TableSettings.textBanded":"带状","PDFE.Views.TableSettings.textBorderColor":"颜色","PDFE.Views.TableSettings.textBorders":"边框样式","PDFE.Views.TableSettings.textCellSize":"单元格大小","PDFE.Views.TableSettings.textColumns":"列","PDFE.Views.TableSettings.textDistributeCols":"分布列","PDFE.Views.TableSettings.textDistributeRows":"分布行","PDFE.Views.TableSettings.textEdit":"行和列","PDFE.Views.TableSettings.textEmptyTemplate":"无模板","PDFE.Views.TableSettings.textFirst":"第一","PDFE.Views.TableSettings.textHeader":"标题","PDFE.Views.TableSettings.textHeight":"\n高度","PDFE.Views.TableSettings.textLast":"最后","PDFE.Views.TableSettings.textRows":"行","PDFE.Views.TableSettings.textSelectBorders":"选择要更改并应用样式的边框","PDFE.Views.TableSettings.textTemplate":"从模板中选择","PDFE.Views.TableSettings.textTotal":"总数","PDFE.Views.TableSettings.textWidth":"宽度","PDFE.Views.TableSettings.tipAll":"设置外边框和所有内框线","PDFE.Views.TableSettings.tipBottom":"仅设置外底边框","PDFE.Views.TableSettings.tipInner":"仅设定内部框线","PDFE.Views.TableSettings.tipInnerHor":"仅设置水平内框线","PDFE.Views.TableSettings.tipInnerVert":"仅设置垂直内线","PDFE.Views.TableSettings.tipLeft":"仅设置外部左边框","PDFE.Views.TableSettings.tipNone":"设置无边框","PDFE.Views.TableSettings.tipOuter":"仅设定外部边框","PDFE.Views.TableSettings.tipRight":"仅设置右外边框","PDFE.Views.TableSettings.tipTop":"仅设定外部顶框线","PDFE.Views.TableSettings.txtGroupTable_Custom":"自定义","PDFE.Views.TableSettings.txtGroupTable_Dark":"深色","PDFE.Views.TableSettings.txtGroupTable_Light":"浅色","PDFE.Views.TableSettings.txtGroupTable_Medium":"中等","PDFE.Views.TableSettings.txtGroupTable_Optimal":"最佳匹配文件","PDFE.Views.TableSettings.txtNoBorders":"无边框","PDFE.Views.TableSettings.txtTable_Accent":"重点色","PDFE.Views.TableSettings.txtTable_DarkStyle":"深色风格","PDFE.Views.TableSettings.txtTable_LightStyle":"浅色风格","PDFE.Views.TableSettings.txtTable_MediumStyle":"中等样式","PDFE.Views.TableSettings.txtTable_NoGrid":"无网格线","PDFE.Views.TableSettings.txtTable_NoStyle":"无风格","PDFE.Views.TableSettings.txtTable_TableGrid":"表格网格","PDFE.Views.TableSettings.txtTable_ThemedStyle":"主题样式","PDFE.Views.TableSettingsAdvanced.textAlt":"替代文本","PDFE.Views.TableSettingsAdvanced.textAltDescription":"描述","PDFE.Views.TableSettingsAdvanced.textAltTip":"视觉对象信息的另一种基于文本的表示方式,将读取给视力或认知障碍的人,以帮助他们更好地理解图像、形状、图表或表格中的信息。","PDFE.Views.TableSettingsAdvanced.textAltTitle":"标题","PDFE.Views.TableSettingsAdvanced.textBottom":"底部","PDFE.Views.TableSettingsAdvanced.textCenter":"居中","PDFE.Views.TableSettingsAdvanced.textCheckMargins":"使用默认页边距","PDFE.Views.TableSettingsAdvanced.textDefaultMargins":"默认边距","PDFE.Views.TableSettingsAdvanced.textFrom":"来自","PDFE.Views.TableSettingsAdvanced.textGeneral":"常规","PDFE.Views.TableSettingsAdvanced.textHeight":"\n高度","PDFE.Views.TableSettingsAdvanced.textHorizontal":"水平的","PDFE.Views.TableSettingsAdvanced.textKeepRatio":"不变比例","PDFE.Views.TableSettingsAdvanced.textLeft":"左","PDFE.Views.TableSettingsAdvanced.textMargins":"单元格边距","PDFE.Views.TableSettingsAdvanced.textPlacement":"放置","PDFE.Views.TableSettingsAdvanced.textPosition":"位置","PDFE.Views.TableSettingsAdvanced.textRight":"右","PDFE.Views.TableSettingsAdvanced.textSize":"大小","PDFE.Views.TableSettingsAdvanced.textTableName":"表格名称","PDFE.Views.TableSettingsAdvanced.textTitle":"表格-高级设置","PDFE.Views.TableSettingsAdvanced.textTop":"顶部","PDFE.Views.TableSettingsAdvanced.textTopLeftCorner":"左上角","PDFE.Views.TableSettingsAdvanced.textVertical":"垂直","PDFE.Views.TableSettingsAdvanced.textWidth":"宽度","PDFE.Views.TableSettingsAdvanced.textWidthSpaces":"边距","PDFE.Views.TextArtSettings.strBackground":"背景颜色","PDFE.Views.TextArtSettings.strColor":"颜色","PDFE.Views.TextArtSettings.strFill":"填充","PDFE.Views.TextArtSettings.strForeground":"前景颜色","PDFE.Views.TextArtSettings.strPattern":"图案","PDFE.Views.TextArtSettings.strSize":"粗细","PDFE.Views.TextArtSettings.strStroke":"线条","PDFE.Views.TextArtSettings.strTransparency":"不透明度","PDFE.Views.TextArtSettings.strType":"类型","PDFE.Views.TextArtSettings.textAngle":"角度","PDFE.Views.TextArtSettings.textBorderSizeErr":"输入的值不正确。
请输入介于0 pt和1584 pt之间的值。","PDFE.Views.TextArtSettings.textColor":"颜色填充","PDFE.Views.TextArtSettings.textDirection":"方向","PDFE.Views.TextArtSettings.textEmptyPattern":"无图案","PDFE.Views.TextArtSettings.textFromFile":"从文件导入","PDFE.Views.TextArtSettings.textFromUrl":"来自URL","PDFE.Views.TextArtSettings.textGradient":"渐变点","PDFE.Views.TextArtSettings.textGradientFill":"渐变填充","PDFE.Views.TextArtSettings.textImageTexture":"图片或纹理","PDFE.Views.TextArtSettings.textLinear":"线性","PDFE.Views.TextArtSettings.textNoFill":"无填充","PDFE.Views.TextArtSettings.textPatternFill":"图案","PDFE.Views.TextArtSettings.textPosition":"位置","PDFE.Views.TextArtSettings.textRadial":"放射状","PDFE.Views.TextArtSettings.textSelectTexture":"选择","PDFE.Views.TextArtSettings.textStretch":"延伸","PDFE.Views.TextArtSettings.textStyle":"样式","PDFE.Views.TextArtSettings.textTemplate":"模板","PDFE.Views.TextArtSettings.textTexture":"来自纹理","PDFE.Views.TextArtSettings.textTile":"Tile","PDFE.Views.TextArtSettings.textTransform":"转换","PDFE.Views.TextArtSettings.tipAddGradientPoint":"添加渐变点","PDFE.Views.TextArtSettings.tipRemoveGradientPoint":"删除渐变点","PDFE.Views.TextArtSettings.txtBrownPaper":"牛皮纸","PDFE.Views.TextArtSettings.txtCanvas":"画布","PDFE.Views.TextArtSettings.txtCarton":"纸盒","PDFE.Views.TextArtSettings.txtDarkFabric":"深色面料","PDFE.Views.TextArtSettings.txtGrain":"颗粒","PDFE.Views.TextArtSettings.txtGranite":"花岗岩","PDFE.Views.TextArtSettings.txtGreyPaper":"灰色纸张","PDFE.Views.TextArtSettings.txtKnit":"编织","PDFE.Views.TextArtSettings.txtLeather":"皮革","PDFE.Views.TextArtSettings.txtNoBorders":"无线条","PDFE.Views.TextArtSettings.txtPapyrus":"纸莎草","PDFE.Views.TextArtSettings.txtWood":"木头","PDFE.Views.Toolbar.capBtnAddComment":"添加批注","PDFE.Views.Toolbar.capBtnArrowComment":"箭头","PDFE.Views.Toolbar.capBtnCircleComment":"圆形","PDFE.Views.Toolbar.capBtnComment":"批注","PDFE.Views.Toolbar.capBtnDelPage":"删除页面","PDFE.Views.Toolbar.capBtnDownloadForm":"下载为 PDF","PDFE.Views.Toolbar.capBtnEditText":"编辑文本","PDFE.Views.Toolbar.capBtnHand":"手","PDFE.Views.Toolbar.capBtnNext":"下一个字段","PDFE.Views.Toolbar.capBtnPolyLineComment":"连接线","PDFE.Views.Toolbar.capBtnPrev":"上一个字段","PDFE.Views.Toolbar.capBtnRecognize":"编辑文本","PDFE.Views.Toolbar.capBtnRectComment":"矩形","PDFE.Views.Toolbar.capBtnRotate":"旋转","PDFE.Views.Toolbar.capBtnRotatePage":"旋转页面","PDFE.Views.Toolbar.capBtnSaveForm":"另存为 PDF","PDFE.Views.Toolbar.capBtnSaveFormDesktop":"另存为...","PDFE.Views.Toolbar.capBtnSelect":"请选择","PDFE.Views.Toolbar.capBtnShowComments":"显示批注","PDFE.Views.Toolbar.capBtnStamp":"图章","PDFE.Views.Toolbar.capBtnSubmit":"提交","PDFE.Views.Toolbar.capBtnTextCallout":"文本标注","PDFE.Views.Toolbar.capBtnTextComment":"文本批注","PDFE.Views.Toolbar.mniCapitalizeWords":"每个单词首字母大写","PDFE.Views.Toolbar.mniInsertSSE":"插入电子表格","PDFE.Views.Toolbar.mniLowerCase":"小写","PDFE.Views.Toolbar.mniSentenceCase":"句首字母大写","PDFE.Views.Toolbar.mniToggleCase":"切换大小写","PDFE.Views.Toolbar.mniUpperCase":"大写","PDFE.Views.Toolbar.strMenuNoFill":"无填充","PDFE.Views.Toolbar.textAlignBottom":"将文本对齐到底部","PDFE.Views.Toolbar.textAlignCenter":"文字居中","PDFE.Views.Toolbar.textAlignJust":"两端对齐","PDFE.Views.Toolbar.textAlignLeft":"左对齐文本","PDFE.Views.Toolbar.textAlignMiddle":"文字居中对齐","PDFE.Views.Toolbar.textAlignRight":"右对齐文本","PDFE.Views.Toolbar.textAlignTop":"将文本对齐到顶部","PDFE.Views.Toolbar.textArrangeBack":"置于底层","PDFE.Views.Toolbar.textArrangeBackward":"下移一层","PDFE.Views.Toolbar.textArrangeForward":"向前移动","PDFE.Views.Toolbar.textArrangeFront":"放到最上面","PDFE.Views.Toolbar.textBold":"加粗","PDFE.Views.Toolbar.textClear":"清除字段","PDFE.Views.Toolbar.textClearFields":"清除所有字段","PDFE.Views.Toolbar.textColumnsCustom":"自定义列","PDFE.Views.Toolbar.textColumnsOne":"一列","PDFE.Views.Toolbar.textColumnsThree":"三列","PDFE.Views.Toolbar.textColumnsTwo":"两列","PDFE.Views.Toolbar.textDirLtr":"从左到右","PDFE.Views.Toolbar.textDirRtl":"从右到左","PDFE.Views.Toolbar.textEditMode":"编辑PDF","PDFE.Views.Toolbar.textHighlight":"高亮","PDFE.Views.Toolbar.textItalic":"斜体","PDFE.Views.Toolbar.textListSettings":"列表设置","PDFE.Views.Toolbar.textShapeAlignBottom":"底部对齐","PDFE.Views.Toolbar.textShapeAlignCenter":"居中对齐","PDFE.Views.Toolbar.textShapeAlignLeft":"左对齐","PDFE.Views.Toolbar.textShapeAlignMiddle":"居中对齐","PDFE.Views.Toolbar.textShapeAlignRight":"右对齐","PDFE.Views.Toolbar.textShapeAlignTop":"顶端对齐","PDFE.Views.Toolbar.textShapesCombine":"组合","PDFE.Views.Toolbar.textShapesFragment":"拆分","PDFE.Views.Toolbar.textShapesIntersect":"相交","PDFE.Views.Toolbar.textShapesSubstract":"剪除","PDFE.Views.Toolbar.textShapesUnion":"结合","PDFE.Views.Toolbar.textStrikeout":"删除","PDFE.Views.Toolbar.textSubmited":"表单提交成功","PDFE.Views.Toolbar.textSubscript":"下标","PDFE.Views.Toolbar.textSuperscript":"上标","PDFE.Views.Toolbar.textTabCollaboration":"Collaboration","PDFE.Views.Toolbar.textTabComment":"批注","PDFE.Views.Toolbar.textTabEdit":"编辑","PDFE.Views.Toolbar.textTabFile":"文件","PDFE.Views.Toolbar.textTabHome":"开始","PDFE.Views.Toolbar.textTabInsert":"插入","PDFE.Views.Toolbar.textTabRedact":"密文","PDFE.Views.Toolbar.textTabView":"视图","PDFE.Views.Toolbar.textUnderline":"下划线","PDFE.Views.Toolbar.tipAddComment":"添加批注","PDFE.Views.Toolbar.tipChangeCase":"更改大小写","PDFE.Views.Toolbar.tipClearStyle":"清除样式","PDFE.Views.Toolbar.tipColumns":"插入列","PDFE.Views.Toolbar.tipCopy":"复制","PDFE.Views.Toolbar.tipCut":"剪切","PDFE.Views.Toolbar.tipDecFont":"递减字体大小","PDFE.Views.Toolbar.tipDecPrLeft":"减少缩进","PDFE.Views.Toolbar.tipDelPage":"删除页面","PDFE.Views.Toolbar.tipDownload":"下载文件","PDFE.Views.Toolbar.tipDownloadForm":"将文件下载为可填写的PDF文档","PDFE.Views.Toolbar.tipEditMode":"添加或编辑文本、形状、图像等。","PDFE.Views.Toolbar.tipEditText":"编辑文本","PDFE.Views.Toolbar.tipFirstPage":"转到第一页","PDFE.Views.Toolbar.tipFontColor":"字体颜色","PDFE.Views.Toolbar.tipFontName":"字体 ","PDFE.Views.Toolbar.tipFontSize":"字体大小","PDFE.Views.Toolbar.tipHAligh":"水平对齐","PDFE.Views.Toolbar.tipHandTool":"手动工具","PDFE.Views.Toolbar.tipHighlightColor":"高亮色","PDFE.Views.Toolbar.tipIncFont":"增加字体大小","PDFE.Views.Toolbar.tipIncPrLeft":"增加缩进","PDFE.Views.Toolbar.tipInsertArrowComment":"绘制箭头","PDFE.Views.Toolbar.tipInsertCircleComment":"绘制圆形或椭圆","PDFE.Views.Toolbar.tipInsertPolyLineComment":"绘制相互连接的线条","PDFE.Views.Toolbar.tipInsertRectComment":"绘制矩形或正方形","PDFE.Views.Toolbar.tipInsertStamp":"插入图章","PDFE.Views.Toolbar.tipInsertTextCallout":"插入文字标注","PDFE.Views.Toolbar.tipInsertTextComment":"插入文字批注","PDFE.Views.Toolbar.tipLastPage":"转到最后一页","PDFE.Views.Toolbar.tipLineSpace":"行间距","PDFE.Views.Toolbar.tipMarkers":"项目符号","PDFE.Views.Toolbar.tipMarkersArrow":"箭头项目符号","PDFE.Views.Toolbar.tipMarkersCheckmark":"选中标记项目符号","PDFE.Views.Toolbar.tipMarkersDash":"连字符项目符号","PDFE.Views.Toolbar.tipMarkersFRhombus":"实心菱形项目符号","PDFE.Views.Toolbar.tipMarkersFRound":"实心圆形项目符号","PDFE.Views.Toolbar.tipMarkersFSquare":"实心方形项目符号","PDFE.Views.Toolbar.tipMarkersHRound":"空心圆形项目符号","PDFE.Views.Toolbar.tipMarkersStar":"星形项目符号","PDFE.Views.Toolbar.tipNextForm":"跳转到下一个字段","PDFE.Views.Toolbar.tipNextPage":"跳转到下一页","PDFE.Views.Toolbar.tipNone":"无","PDFE.Views.Toolbar.tipNumbers":"编号","PDFE.Views.Toolbar.tipPaste":"粘贴","PDFE.Views.Toolbar.tipPrevForm":"跳转到上一个字段","PDFE.Views.Toolbar.tipPrevPage":"跳转到上一页","PDFE.Views.Toolbar.tipPrint":"打印","PDFE.Views.Toolbar.tipPrintQuick":"快速打印","PDFE.Views.Toolbar.tipRecognize":"编辑文本","PDFE.Views.Toolbar.tipRedo":"重做","PDFE.Views.Toolbar.tipRotate":"旋转页面","PDFE.Views.Toolbar.tipSave":"保存","PDFE.Views.Toolbar.tipSaveCoauth":"保存您的更改以供其他用户查看","PDFE.Views.Toolbar.tipSaveForm":"将文件另存为可填写的PDF","PDFE.Views.Toolbar.tipSelectAll":"全选","PDFE.Views.Toolbar.tipSelectTool":"选择工具","PDFE.Views.Toolbar.tipShapeAlign":"对齐形状","PDFE.Views.Toolbar.tipShapeArrange":"排列形状","PDFE.Views.Toolbar.tipShapeMerge":"合并形状","PDFE.Views.Toolbar.tipSubmit":"提交表单","PDFE.Views.Toolbar.tipSynchronize":"文档已被其他用户更改。请单击保存更改并重新加载更新。","PDFE.Views.Toolbar.tipTextDir":"文本方向","PDFE.Views.Toolbar.tipUndo":"撤消","PDFE.Views.Toolbar.tipVAligh":"垂直对齐","PDFE.Views.Toolbar.txtArrowComment":"箭头","PDFE.Views.Toolbar.txtCircleComment":"圆形","PDFE.Views.Toolbar.txtDistribHor":"水平分布","PDFE.Views.Toolbar.txtDistribVert":"垂直分布","PDFE.Views.Toolbar.txtGroup":"组","PDFE.Views.Toolbar.txtMM":"mm","PDFE.Views.Toolbar.txtObjectsAlign":"对齐选定的对象","PDFE.Views.Toolbar.txtOpacity":"不透明度","PDFE.Views.Toolbar.txtPageAlign":"与页面对齐","PDFE.Views.Toolbar.txtPolyLineComment":"连接线","PDFE.Views.Toolbar.txtRectComment":"矩形","PDFE.Views.Toolbar.txtRotateLeft":"向左旋转","PDFE.Views.Toolbar.txtRotatePage":"旋转页面","PDFE.Views.Toolbar.txtRotatePageRight":"向右旋转页面","PDFE.Views.Toolbar.txtRotateRight":"向右旋转","PDFE.Views.Toolbar.txtSize":"大小","PDFE.Views.Toolbar.txtUngroup":"取消组合","PDFE.Views.ViewTab.capBtnRecognize":"编辑文本","PDFE.Views.ViewTab.textAlwaysShowToolbar":"始终显示工具栏","PDFE.Views.ViewTab.textDarkDocument":"深色模式文档","PDFE.Views.ViewTab.textEditMode":"编辑PDF","PDFE.Views.ViewTab.textFill":"填写","PDFE.Views.ViewTab.textFitToPage":"适合页面","PDFE.Views.ViewTab.textFitToWidth":"适应宽度","PDFE.Views.ViewTab.textInterfaceTheme":"界面主题","PDFE.Views.ViewTab.textLeftMenu":"左侧面板","PDFE.Views.ViewTab.textLine":"线条","PDFE.Views.ViewTab.textNavigation":"导航","PDFE.Views.ViewTab.textOutline":"标题","PDFE.Views.ViewTab.textRightMenu":"右侧面板","PDFE.Views.ViewTab.textStatusBar":"状态栏","PDFE.Views.ViewTab.textTabStyle":"选项卡样式","PDFE.Views.ViewTab.textZoom":"缩放","PDFE.Views.ViewTab.tipDarkDocument":"深色模式文档","PDFE.Views.ViewTab.tipEditMode":"添加或编辑文本、形状、图像等。","PDFE.Views.ViewTab.tipFitToPage":"适合页面","PDFE.Views.ViewTab.tipFitToWidth":"调整至合适宽度","PDFE.Views.ViewTab.tipHeadings":"标题","PDFE.Views.ViewTab.tipInterfaceTheme":"界面主题","PDFE.Views.ViewTab.tipRecognize":"编辑文本","PDFE.Views.ViewTab.textMacros":"Macros","PDFE.Views.ViewTab.tipMacros":"Macros"} \ No newline at end of file diff --git a/public/web-apps/apps/presentationeditor/main/locale/ja.json b/public/web-apps/apps/presentationeditor/main/locale/ja.json index ce8060119..12a44fb8f 100644 --- a/public/web-apps/apps/presentationeditor/main/locale/ja.json +++ b/public/web-apps/apps/presentationeditor/main/locale/ja.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.ExternalDiagramEditor.textAnonymous":"匿名","Common.Controllers.ExternalDiagramEditor.textClose":"閉じる","Common.Controllers.ExternalDiagramEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalDiagramEditor.warningTitle":"警告","Common.Controllers.ExternalLinks.textAddExternalData":"外部ソースへのリンクが追加されました。このようなリンクは、「データ」タブで更新することができます。","Common.Controllers.ExternalLinks.textDontUpdate":"アップデートしない","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"エラー:アップデートに失敗しました","Common.Controllers.ExternalLinks.warnUpdateExternalData":"このワークブックには、安全でない可能性のある1つまたは複数の外部ソースへのリンクが含まれています。
リンクを信頼する場合は、最新のデータを取得するためにそれらを更新してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"このドキュメントには、安全でない可能性のある外部ソースへのリンクが1つ以上含まれています。
リンクを信頼できる場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"このプレゼンテーションには、安全でない可能性のある外部ソースへのリンクが含まれています。
リンクを信頼する場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalOleEditor.textAnonymous":"匿名","Common.Controllers.ExternalOleEditor.textClose":"閉じる","Common.Controllers.ExternalOleEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalOleEditor.warningTitle":"警告","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"履歴の読み込みに失敗しました","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","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":"集合縦棒 - 第2軸の折れ線","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.textRadar":"レーダーチャート","Common.define.chartData.textRadarFilled":"塗りつぶしレーダー","Common.define.chartData.textRadarMarker":"マーカー付きレーダー","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.define.effectData.textAcross":"横方向","Common.define.effectData.textAppear":"表示","Common.define.effectData.textArcDown":"アーチ (下)","Common.define.effectData.textArcLeft":"アーチ (左)","Common.define.effectData.textArcRight":"アーチ (右)","Common.define.effectData.textArcs":"アーチ","Common.define.effectData.textArcUp":"アーチ (上)","Common.define.effectData.textBasic":"基本","Common.define.effectData.textBasicSwivel":"ベーシックスイベル","Common.define.effectData.textBasicZoom":"ベーシックズーム","Common.define.effectData.textBean":"豆","Common.define.effectData.textBlinds":"ブラインド","Common.define.effectData.textBlink":"ブリンク","Common.define.effectData.textBoldFlash":"ボールドフラッシュ","Common.define.effectData.textBoldReveal":"太字表示","Common.define.effectData.textBoomerang":"ブーメラン","Common.define.effectData.textBounce":"バウンド","Common.define.effectData.textBounceLeft":"バウンド (左へ)","Common.define.effectData.textBounceRight":"バウンド (右へ)","Common.define.effectData.textBox":"ボックス","Common.define.effectData.textBrushColor":"ブラシの色","Common.define.effectData.textCenterRevolve":"リボルブ","Common.define.effectData.textCheckerboard":"チェッカーボード","Common.define.effectData.textCircle":"円","Common.define.effectData.textCollapse":"折りたたみ","Common.define.effectData.textColorPulse":"カラーパルス","Common.define.effectData.textComplementaryColor":"補色","Common.define.effectData.textComplementaryColor2":"補色2","Common.define.effectData.textCompress":"圧縮","Common.define.effectData.textContrast":"コントラスト","Common.define.effectData.textContrastingColor":"カラーコントラスト","Common.define.effectData.textCredits":"クレジット","Common.define.effectData.textCrescentMoon":"三日月","Common.define.effectData.textCurveDown":"カーブ (下)","Common.define.effectData.textCurvedSquare":"四角形 (曲線)","Common.define.effectData.textCurvedX":"曲線 (X 型)","Common.define.effectData.textCurvyLeft":"湾曲カーブ (左)","Common.define.effectData.textCurvyRight":"湾曲カーブ (右)","Common.define.effectData.textCurvyStar":"星 (曲線)","Common.define.effectData.textCustomPath":"カスタムパス","Common.define.effectData.textCuverUp":"カーブ (上)","Common.define.effectData.textDarken":"暗く","Common.define.effectData.textDecayingWave":"波線 (減衰曲線)","Common.define.effectData.textDesaturate":"彩度を下げる","Common.define.effectData.textDiagonalDownRight":"対角線 (右下へ)","Common.define.effectData.textDiagonalUpRight":"対角線 (右上へ)","Common.define.effectData.textDiamond":"ひし型","Common.define.effectData.textDisappear":"消失","Common.define.effectData.textDissolveIn":"ディゾルブイン","Common.define.effectData.textDissolveOut":"ディゾルブアウト","Common.define.effectData.textDown":"下","Common.define.effectData.textDrop":"ドロップ","Common.define.effectData.textEmphasis":"強調効果","Common.define.effectData.textEntrance":"開始効果","Common.define.effectData.textEqualTriangle":"正三角形","Common.define.effectData.textExciting":"華やか","Common.define.effectData.textExit":"終了効果","Common.define.effectData.textExpand":"拡張する","Common.define.effectData.textFade":"フェード","Common.define.effectData.textFigureFour":"8 の字 (ダブル)","Common.define.effectData.textFillColor":"塗りつぶしの色","Common.define.effectData.textFlip":"反転する","Common.define.effectData.textFloat":"フロート","Common.define.effectData.textFloatDown":"フロートダウン","Common.define.effectData.textFloatIn":"フロートイン","Common.define.effectData.textFloatOut":"フロートアウト","Common.define.effectData.textFloatUp":"フロートアップ","Common.define.effectData.textFlyIn":"スライドイン","Common.define.effectData.textFlyOut":"スライドアウト","Common.define.effectData.textFontColor":"フォントの色","Common.define.effectData.textFootball":"フットボール","Common.define.effectData.textFromBottom":"下から","Common.define.effectData.textFromBottomLeft":"左下から","Common.define.effectData.textFromBottomRight":"右下から","Common.define.effectData.textFromLeft":"左から","Common.define.effectData.textFromRight":"右から","Common.define.effectData.textFromTop":"上から","Common.define.effectData.textFromTopLeft":"左上から","Common.define.effectData.textFromTopRight":"右上から","Common.define.effectData.textFunnel":"漏斗","Common.define.effectData.textGrowShrink":"拡大/収縮","Common.define.effectData.textGrowTurn":"グローとターン","Common.define.effectData.textGrowWithColor":"カラーで拡大","Common.define.effectData.textHeart":"ハート","Common.define.effectData.textHeartbeat":"ハートビート","Common.define.effectData.textHexagon":"六角形","Common.define.effectData.textHorizontal":"水平","Common.define.effectData.textHorizontalFigure":"8 の字 (横)","Common.define.effectData.textHorizontalIn":"ワイプイン (横)","Common.define.effectData.textHorizontalOut":"ワイプアウト (横)","Common.define.effectData.textIn":"中に","Common.define.effectData.textInFromScreenCenter":"画面中央から中に","Common.define.effectData.textInSlightly":"少しだけ中","Common.define.effectData.textInToScreenBottom":"画面下に","Common.define.effectData.textInToScreenCenter":"画面中央に","Common.define.effectData.textInvertedSquare":"四角形 (転回)","Common.define.effectData.textInvertedTriangle":"三角形 (転回)","Common.define.effectData.textLeft":"左","Common.define.effectData.textLeftDown":"左下","Common.define.effectData.textLeftUp":"左上","Common.define.effectData.textLighten":"明るく","Common.define.effectData.textLineColor":"線の色","Common.define.effectData.textLines":"線","Common.define.effectData.textLinesCurves":"線と曲線","Common.define.effectData.textLoopDeLoop":"ループ","Common.define.effectData.textLoops":"ループ","Common.define.effectData.textModerate":"標準","Common.define.effectData.textNeutron":"ニュートロン","Common.define.effectData.textObjectCenter":"オブジェクトの中央","Common.define.effectData.textObjectColor":"オブジェクトの色","Common.define.effectData.textOctagon":"八角形","Common.define.effectData.textOut":"外","Common.define.effectData.textOutFromScreenBottom":"画面下部から外へ","Common.define.effectData.textOutSlightly":"少しだけ外","Common.define.effectData.textOutToScreenCenter":"画面中央へ","Common.define.effectData.textParallelogram":"平行四辺形","Common.define.effectData.textPath":"モーションパス","Common.define.effectData.textPathCurve":"曲線","Common.define.effectData.textPathLine":"線","Common.define.effectData.textPathScribble":"フリーハンド","Common.define.effectData.textPeanut":"ピーナッツ","Common.define.effectData.textPeekIn":"ピークイン","Common.define.effectData.textPeekOut":"ピークアウト","Common.define.effectData.textPentagon":"五角形","Common.define.effectData.textPinwheel":"ピンウィール","Common.define.effectData.textPlus":"プラス","Common.define.effectData.textPointStar":"ポイントスター","Common.define.effectData.textPointStar4":"4ポイントスター","Common.define.effectData.textPointStar5":"5ポイントスター","Common.define.effectData.textPointStar6":"6ポイントスター","Common.define.effectData.textPointStar8":"8ポイントスター","Common.define.effectData.textPulse":"パルス","Common.define.effectData.textRandomBars":"ランダムストライプ","Common.define.effectData.textRight":"右","Common.define.effectData.textRightDown":"右下","Common.define.effectData.textRightTriangle":"直角三角形","Common.define.effectData.textRightUp":"右上","Common.define.effectData.textRiseUp":"ライズアップ","Common.define.effectData.textSCurve1":"カーブ S 型 (1)","Common.define.effectData.textSCurve2":"カーブ S 型 (2)","Common.define.effectData.textShape":"図形","Common.define.effectData.textShapes":"図形","Common.define.effectData.textShimmer":"シマー","Common.define.effectData.textShrinkTurn":"縮小および回転","Common.define.effectData.textSineWave":"波線 (正弦曲線)","Common.define.effectData.textSinkDown":"シンクダウン","Common.define.effectData.textSlideCenter":"スライドの中央","Common.define.effectData.textSpecial":"特殊","Common.define.effectData.textSpin":"スピン","Common.define.effectData.textSpinner":"スピナー","Common.define.effectData.textSpiralIn":"内側にスパイラル","Common.define.effectData.textSpiralLeft":"左へスパイラル","Common.define.effectData.textSpiralOut":"外側にスパイラル","Common.define.effectData.textSpiralRight":"右へスパイラル","Common.define.effectData.textSplit":"分割","Common.define.effectData.textSpoke1":"1スポーク","Common.define.effectData.textSpoke2":"2スポーク","Common.define.effectData.textSpoke3":"3スポーク","Common.define.effectData.textSpoke4":"4スポーク","Common.define.effectData.textSpoke8":"8スポーク","Common.define.effectData.textSpring":"スプリング","Common.define.effectData.textSquare":"四角","Common.define.effectData.textStairsDown":"下り階段","Common.define.effectData.textStretch":"ストレッチ","Common.define.effectData.textStrips":"ストリップ","Common.define.effectData.textSubtle":"弱","Common.define.effectData.textSwivel":"スイベル","Common.define.effectData.textSwoosh":"スウッシュ","Common.define.effectData.textTeardrop":"涙の滴","Common.define.effectData.textTeeter":"シーソー","Common.define.effectData.textToBottom":"下へ","Common.define.effectData.textToBottomLeft":"左下へ","Common.define.effectData.textToBottomRight":"右下へ","Common.define.effectData.textToFromScreenBottom":"画面下部へ","Common.define.effectData.textToLeft":"左へ","Common.define.effectData.textToRight":"右へ","Common.define.effectData.textToTop":"上へ","Common.define.effectData.textToTopLeft":"左上へ","Common.define.effectData.textToTopRight":"右上へ","Common.define.effectData.textTransparency":"透過性","Common.define.effectData.textTrapezoid":"台形","Common.define.effectData.textTurnDown":"ターン (下へ)","Common.define.effectData.textTurnDownRight":"ターン (右下へ)","Common.define.effectData.textTurns":"ターン","Common.define.effectData.textTurnUp":"ターン (上へ)","Common.define.effectData.textTurnUpRight":"ターン (右上へ)","Common.define.effectData.textUnderline":"アンダーライン","Common.define.effectData.textUp":"上","Common.define.effectData.textVertical":"縦","Common.define.effectData.textVerticalFigure":"8 の字 (縦)","Common.define.effectData.textVerticalIn":"縦(中)","Common.define.effectData.textVerticalOut":"縦(外)","Common.define.effectData.textWave":"波","Common.define.effectData.textWedge":"くさび形","Common.define.effectData.textWheel":"ホイール","Common.define.effectData.textWhip":"ホイップ","Common.define.effectData.textWipe":"ワイプ","Common.define.effectData.textZigzag":"ジグザグ","Common.define.effectData.textZoom":"ズーム","Common.define.gridlineData.txtCm":"センチ","Common.define.gridlineData.txtPt":"pt","Common.define.smartArt.textAccentedPicture":"アクセント付きの図","Common.define.smartArt.textAccentProcess":"アクセントプロセス","Common.define.smartArt.textAlternatingFlow":"波型ステップ","Common.define.smartArt.textAlternatingHexagons":"左右交替積み上げ六角形","Common.define.smartArt.textAlternatingPictureBlocks":"左右交替積み上げ画像ブロック","Common.define.smartArt.textAlternatingPictureCircles":"円形付き画像ジグザグ表示","Common.define.smartArt.textArchitectureLayout":"アーキテクチャ レイアウト","Common.define.smartArt.textArrowRibbon":"リボン状の矢印","Common.define.smartArt.textAscendingPictureAccentProcess":"アクセント画像付き上昇ステップ","Common.define.smartArt.textBalance":"バランス","Common.define.smartArt.textBasicBendingProcess":"基本蛇行ステップ","Common.define.smartArt.textBasicBlockList":"カード型リスト","Common.define.smartArt.textBasicChevronProcess":"プロセス","Common.define.smartArt.textBasicCycle":"基本の循環","Common.define.smartArt.textBasicMatrix":"基本マトリックス","Common.define.smartArt.textBasicPie":"円グラフ","Common.define.smartArt.textBasicProcess":"基本ステップ","Common.define.smartArt.textBasicPyramid":"基本ピラミッド","Common.define.smartArt.textBasicRadial":"基本放射","Common.define.smartArt.textBasicTarget":"ターゲット","Common.define.smartArt.textBasicTimeline":"タイムライン","Common.define.smartArt.textBasicVenn":"基本ベン図","Common.define.smartArt.textBendingPictureAccentList":"画像付きカード型リスト","Common.define.smartArt.textBendingPictureBlocks":"自動配置の画像ブロック","Common.define.smartArt.textBendingPictureCaption":"自動配置の表題付き画像","Common.define.smartArt.textBendingPictureCaptionList":"自動配置の表題付き画像レイアウト","Common.define.smartArt.textBendingPictureSemiTranparentText":"自動配置の半透明テキスト付き画像","Common.define.smartArt.textBlockCycle":"ボックス循環","Common.define.smartArt.textBubblePictureList":"バブル状画像リスト","Common.define.smartArt.textCaptionedPictures":"表題付き画像","Common.define.smartArt.textChevronAccentProcess":"アクセントステップ","Common.define.smartArt.textChevronList":"プロセス リスト","Common.define.smartArt.textCircleAccentTimeline":"円形組み合わせタイムライン","Common.define.smartArt.textCircleArrowProcess":"円形矢印プロセス","Common.define.smartArt.textCirclePictureHierarchy":"円形画像を使用した階層","Common.define.smartArt.textCircleProcess":"円形プロセス","Common.define.smartArt.textCircleRelationship":"円の関連付け","Common.define.smartArt.textCircularBendingProcess":"円形蛇行ステップ","Common.define.smartArt.textCircularPictureCallout":"円形画像を使った吹き出し","Common.define.smartArt.textClosedChevronProcess":"開始点強調型プロセス","Common.define.smartArt.textContinuousArrowProcess":"大きな矢印のプロセス","Common.define.smartArt.textContinuousBlockProcess":"矢印と長方形のプロセス","Common.define.smartArt.textContinuousCycle":"連続性強調循環","Common.define.smartArt.textContinuousPictureList":"矢印付き画像リスト","Common.define.smartArt.textConvergingArrows":"内向き矢印","Common.define.smartArt.textConvergingRadial":"集中","Common.define.smartArt.textConvergingText":"内向きテキスト","Common.define.smartArt.textCounterbalanceArrows":"対立とバランスの矢印","Common.define.smartArt.textCycle":"循環","Common.define.smartArt.textCycleMatrix":"循環マトリックス","Common.define.smartArt.textDescendingBlockList":"ブロックの降順リスト","Common.define.smartArt.textDescendingProcess":"降順プロセス","Common.define.smartArt.textDetailedProcess":"詳述プロセス","Common.define.smartArt.textDivergingArrows":"左右逆方向矢印","Common.define.smartArt.textDivergingRadial":"矢印付き放射","Common.define.smartArt.textEquation":"数式","Common.define.smartArt.textFramedTextPicture":"フレームに表示されるテキスト画像","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"歯車","Common.define.smartArt.textGridMatrix":"グリッド マトリックス","Common.define.smartArt.textGroupedList":"グループ リスト","Common.define.smartArt.textHalfCircleOrganizationChart":"アーチ型線で飾られた組織図","Common.define.smartArt.textHexagonCluster":"蜂の巣状の六角形","Common.define.smartArt.textHexagonRadial":"六角形放射","Common.define.smartArt.textHierarchy":"階層","Common.define.smartArt.textHierarchyList":"階層リスト","Common.define.smartArt.textHorizontalBulletList":"横方向箇条書きリスト","Common.define.smartArt.textHorizontalHierarchy":"横方向階層","Common.define.smartArt.textHorizontalLabeledHierarchy":"ラベル付き横方向階層","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"複数レベル対応の横方向階層","Common.define.smartArt.textHorizontalOrganizationChart":"水平方向の組織図","Common.define.smartArt.textHorizontalPictureList":"横方向画像リスト","Common.define.smartArt.textIncreasingArrowProcess":"上昇矢印のプロセス","Common.define.smartArt.textIncreasingCircleProcess":"上昇円プロセス","Common.define.smartArt.textInterconnectedBlockProcess":"相互接続された長方形のプロセス","Common.define.smartArt.textInterconnectedRings":"互いにつながったリング","Common.define.smartArt.textInvertedPyramid":"反転ピラミッド","Common.define.smartArt.textLabeledHierarchy":"ラベル付き階層","Common.define.smartArt.textLinearVenn":"横方向ベン図","Common.define.smartArt.textLinedList":"線区切りリスト","Common.define.smartArt.textList":"リスト","Common.define.smartArt.textMatrix":"マトリックス","Common.define.smartArt.textMultidirectionalCycle":"双方向循環","Common.define.smartArt.textNameAndTitleOrganizationChart":"氏名/役職名付き組織図","Common.define.smartArt.textNestedTarget":"包含","Common.define.smartArt.textNondirectionalCycle":"矢印無し循環","Common.define.smartArt.textOpposingArrows":"上下逆方向矢印","Common.define.smartArt.textOpposingIdeas":"対立する案","Common.define.smartArt.textOrganizationChart":"組織図","Common.define.smartArt.textOther":"その他","Common.define.smartArt.textPhasedProcess":"フェーズ プロセス","Common.define.smartArt.textPicture":"画像","Common.define.smartArt.textPictureAccentBlocks":"画像アクセントのブロック","Common.define.smartArt.textPictureAccentList":"画像アクセントのリスト","Common.define.smartArt.textPictureAccentProcess":"画像アクセントのプロセス","Common.define.smartArt.textPictureCaptionList":"画像キャプションのリスト","Common.define.smartArt.textPictureFrame":"フォトフレーム","Common.define.smartArt.textPictureGrid":"画像グリッド","Common.define.smartArt.textPictureLineup":"画像ラインアップ","Common.define.smartArt.textPictureOrganizationChart":"画像付き組織図","Common.define.smartArt.textPictureStrips":"画像付きラベル","Common.define.smartArt.textPieProcess":"円グラフのプロセス","Common.define.smartArt.textPlusAndMinus":"プラスとマイナス","Common.define.smartArt.textProcess":"プロセス","Common.define.smartArt.textProcessArrows":"矢印型ステップ","Common.define.smartArt.textProcessList":"プロセスのリスト","Common.define.smartArt.textPyramid":"ピラミッド","Common.define.smartArt.textPyramidList":"ピラミッドのリスト","Common.define.smartArt.textRadialCluster":"放射ブロック","Common.define.smartArt.textRadialCycle":"中心付き循環","Common.define.smartArt.textRadialList":"放射リスト","Common.define.smartArt.textRadialPictureList":"放射画像リスト","Common.define.smartArt.textRadialVenn":"放射型ベン図","Common.define.smartArt.textRandomToResultProcess":"複数案をまとめるステップ","Common.define.smartArt.textRelationship":"関係","Common.define.smartArt.textRepeatingBendingProcess":"改行型蛇行ステップ","Common.define.smartArt.textReverseList":"逆順リスト","Common.define.smartArt.textSegmentedCycle":"円型循環","Common.define.smartArt.textSegmentedProcess":"分割ステップ","Common.define.smartArt.textSegmentedPyramid":"分割ピラミッド","Common.define.smartArt.textSnapshotPictureList":"スナップショット画像リスト","Common.define.smartArt.textSpiralPicture":"渦巻き画像","Common.define.smartArt.textSquareAccentList":"箇条書き記号アクセントのリスト","Common.define.smartArt.textStackedList":"積み上げリスト","Common.define.smartArt.textStackedVenn":"包含型ベン図","Common.define.smartArt.textStaggeredProcess":"段違いステップ","Common.define.smartArt.textStepDownProcess":"ステップ ダウンのプロセス","Common.define.smartArt.textStepUpProcess":"ステップアップのプロセス","Common.define.smartArt.textSubStepProcess":"サブステップのプロセス","Common.define.smartArt.textTabbedArc":"円弧状タブ","Common.define.smartArt.textTableHierarchy":"積み木型の階層","Common.define.smartArt.textTableList":"表型リスト","Common.define.smartArt.textTabList":"タブ付きリスト","Common.define.smartArt.textTargetList":"ターゲットのリスト","Common.define.smartArt.textTextCycle":"テキスト循環","Common.define.smartArt.textThemePictureAccent":"テーマ画像アクセント","Common.define.smartArt.textThemePictureAlternatingAccent":"テーマ画像交互のアクセント","Common.define.smartArt.textThemePictureGrid":"テーマ画像グリッド","Common.define.smartArt.textTitledMatrix":"タイトル付きマトリックス","Common.define.smartArt.textTitledPictureAccentList":"画像付き横方向リスト","Common.define.smartArt.textTitledPictureBlocks":"タイトル付き画像ブロック","Common.define.smartArt.textTitlePictureLineup":"タイトル付き画像ラインアップ","Common.define.smartArt.textTrapezoidList":"台形リスト","Common.define.smartArt.textUpwardArrow":"上向き矢印","Common.define.smartArt.textVaryingWidthList":"可変幅リスト","Common.define.smartArt.textVerticalAccentList":"縦方向アクセントのリスト","Common.define.smartArt.textVerticalArrowList":"縦方向矢印リスト","Common.define.smartArt.textVerticalBendingProcess":"縦型蛇行ステップ","Common.define.smartArt.textVerticalBlockList":"縦方向ボックス リスト","Common.define.smartArt.textVerticalBoxList":"縦方向リスト","Common.define.smartArt.textVerticalBracketList":"縦方向ブラケット リスト","Common.define.smartArt.textVerticalBulletList":"縦方向箇条書きリスト","Common.define.smartArt.textVerticalChevronList":"縦方向プロセス","Common.define.smartArt.textVerticalCircleList":"縦方向円リスト","Common.define.smartArt.textVerticalCurvedList":"縦方向カーブのリスト","Common.define.smartArt.textVerticalEquation":"縦型の数式","Common.define.smartArt.textVerticalPictureAccentList":"縦方向円形画像リスト","Common.define.smartArt.textVerticalPictureList":"縦方向画像リスト","Common.define.smartArt.textVerticalProcess":"縦方向ステップ","Common.Translation.textMoreButton":"もっと","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"閲覧するため開く","Common.UI.ButtonColored.textAutoColor":"自動","Common.UI.ButtonColored.textEyedropper":"スポイト","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":"金","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":"木","Common.UI.Calendar.textShortTuesday":"火","Common.UI.Calendar.textShortWednesday":"水","Common.UI.Calendar.textYears":"年","Common.UI.ComboBorderSize.txtNoBorders":"枠線なし","Common.UI.ComboBorderSizeEditable.txtNoBorders":"枠線なし","Common.UI.ComboDataView.emptyComboText":"スタイルなし","Common.UI.ExtendedColorDialog.addButtonText":"追加する","Common.UI.ExtendedColorDialog.textCurrent":"現在","Common.UI.ExtendedColorDialog.textHexErr":"入力された値が正しくありません。
000000〜FFFFFFの数値を入力してください。","Common.UI.ExtendedColorDialog.textNew":"新しい","Common.UI.ExtendedColorDialog.textRGBErr":"入力された値が正しくありません。
0〜255の数値を入力してください。","Common.UI.HSBColorPicker.textNoColor":"色なし","Common.UI.InputFieldBtnCalendar.textDate":"日付の選択","Common.UI.InputFieldBtnPassword.textHintHidePwd":"パスワードを表示しない","Common.UI.InputFieldBtnPassword.textHintHold":"長押しでパスワード表示","Common.UI.InputFieldBtnPassword.textHintShowPwd":"パスワードを表示","Common.UI.SearchBar.textFind":"検索する","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果のハイライト","Common.UI.SearchDialog.textMatchCase":"大文字と小文字の区別","Common.UI.SearchDialog.textReplaceDef":"代替テキストを挿入する","Common.UI.SearchDialog.textSearchStart":"ここにテキストを挿入してください。","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索する","Common.UI.SearchDialog.textWholeWords":"単語全体のみ","Common.UI.SearchDialog.txtBtnHideReplace":"置換を表示しない","Common.UI.SearchDialog.txtBtnReplace":"置き換える","Common.UI.SearchDialog.txtBtnReplaceAll":"全てを置き換える","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"このドキュメントは他のユーザーによって変更されました。クリックして変更内容を保存し、更新を再読み込みしてください。","Common.UI.ThemeColorPalette.textRecentColors":"最近使った色","Common.UI.ThemeColorPalette.textStandartColors":"標準の色","Common.UI.ThemeColorPalette.textThemeColors":"テーマの色","Common.UI.Themes.txtThemeClassicLight":"明るい(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"暗い","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"ライト","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":"警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"アクセント","Common.Utils.ThemeColor.txtAqua":"水色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黒色","Common.Utils.ThemeColor.txtBlue":"青色","Common.Utils.ThemeColor.txtBrightGreen":"明るい緑","Common.Utils.ThemeColor.txtBrown":"茶色","Common.Utils.ThemeColor.txtDarkBlue":"濃い青色","Common.Utils.ThemeColor.txtDarker":"より濃い","Common.Utils.ThemeColor.txtDarkGray":"濃い灰色","Common.Utils.ThemeColor.txtDarkGreen":"濃い緑色","Common.Utils.ThemeColor.txtDarkPurple":"濃い紫色","Common.Utils.ThemeColor.txtDarkRed":"濃い赤色","Common.Utils.ThemeColor.txtDarkTeal":"濃い青緑色","Common.Utils.ThemeColor.txtDarkYellow":"濃い黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"緑色","Common.Utils.ThemeColor.txtIndigo":"インディゴ","Common.Utils.ThemeColor.txtLavender":"ラベンダー","Common.Utils.ThemeColor.txtLightBlue":"明るい青色","Common.Utils.ThemeColor.txtLighter":"より明るい","Common.Utils.ThemeColor.txtLightGray":"明るい灰色","Common.Utils.ThemeColor.txtLightGreen":"明るい緑色","Common.Utils.ThemeColor.txtLightOrange":"明るいオレンジ色","Common.Utils.ThemeColor.txtLightYellow":"明るい黄色","Common.Utils.ThemeColor.txtOrange":"オレンジ色","Common.Utils.ThemeColor.txtPink":"ピンク色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"赤色","Common.Utils.ThemeColor.txtRose":"ローズ色","Common.Utils.ThemeColor.txtSkyBlue":"スカイブルー色","Common.Utils.ThemeColor.txtTeal":"青緑色","Common.Utils.ThemeColor.txttext":"テキスト","Common.Utils.ThemeColor.txtTurquosie":"ターコイズ色","Common.Utils.ThemeColor.txtViolet":"バイオレット色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"アドレス:","Common.Views.About.txtLicensee":"ライセンス所有者","Common.Views.About.txtLicensor":"ライセンサー","Common.Views.About.txtMail":"Email:","Common.Views.About.txtPoweredBy":"によって提供されています。","Common.Views.About.txtTel":"電話番号:","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.textDoubleSpaces":"スペース2回でピリオドを入力する","Common.Views.AutoCorrectDialog.textFLCells":"テーブルセルの最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textFLDont":"次の項目の後は大文字にしない:","Common.Views.AutoCorrectDialog.textFLSentence":"文章の最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textForLangFL":"言語の例外:","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":"入力時に置き換える\n\t","Common.Views.AutoCorrectDialog.textReplaceType":"入力時にテキストを置き換える","Common.Views.AutoCorrectDialog.textReset":"リセット","Common.Views.AutoCorrectDialog.textResetAll":"デフォルト設定にリセットする","Common.Views.AutoCorrectDialog.textRestore":"復元する","Common.Views.AutoCorrectDialog.textTitle":"オートコレクト","Common.Views.AutoCorrectDialog.textWarnAddFL":"例外は、大文字または小文字の文字のみを含む必要があります。","Common.Views.AutoCorrectDialog.textWarnAddRec":"認識される関数には、大文字または小文字のAからZまでの文字のみを含める必要があります。","Common.Views.AutoCorrectDialog.textWarnResetFL":"追加した例外は削除され、削除した例外は元に戻ります。続行しますか?","Common.Views.AutoCorrectDialog.textWarnResetRec":"追加した式はすべて削除され、削除された式が復元されます。 このまま続けますか?","Common.Views.AutoCorrectDialog.warnReplace":"%1のオートコレクトのエントリはすでに存在します。 置き換えますか?","Common.Views.AutoCorrectDialog.warnReset":"追加したオートコレクトはすべて削除され、変更されたものは元の値に復元されます。 このまま続けますか?","Common.Views.AutoCorrectDialog.warnRestore":"%1のオートコレクトエントリは元の値にリセットされます。 続けますか?","Common.Views.Chat.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"ここにメッセージを挿入する","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.mniFilterComments":"コメントの表示","Common.Views.Comments.mniFilterGroups":"グループでフィルター","Common.Views.Comments.mniPositionAsc":"上から","Common.Views.Comments.mniPositionDesc":"下から","Common.Views.Comments.textAdd":"追加する","Common.Views.Comments.textAddComment":"コメントを追加","Common.Views.Comments.textAddCommentToDoc":"ドキュメントにコメントを追加","Common.Views.Comments.textAddReply":"返信を追加","Common.Views.Comments.textAll":"すべて","Common.Views.Comments.textAnonym":"ゲスト","Common.Views.Comments.textCancel":"キャンセル","Common.Views.Comments.textClose":"閉じる","Common.Views.Comments.textClosePanel":"コメントを閉じる","Common.Views.Comments.textComment":"コメント","Common.Views.Comments.textComments":"コメント","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"ここにコメントを挿入してください。","Common.Views.Comments.textHintAddComment":"コメントを追加","Common.Views.Comments.textOpen":"開く","Common.Views.Comments.textOpenAgain":"もう一度開く","Common.Views.Comments.textReply":"返信する","Common.Views.Comments.textResolve":"解決する","Common.Views.Comments.textResolved":"解決済み","Common.Views.Comments.textSort":"コメントを並べ替える","Common.Views.Comments.textSortFilter":"コメントの並べ替えとフィルター","Common.Views.Comments.textSortFilterMore":"並び替え、フィルター、その他","Common.Views.Comments.textSortMore":"並び替えなど","Common.Views.Comments.textViewResolved":"コメントを再開する権限がありません","Common.Views.Comments.txtEmpty":"ドキュメントにはコメントがありません。","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"エディターツールバーのボタンやコンテキストメニューの操作によるコピー、カット、ペーストの動作は、このエディタータブ内でのみ実行されます。

エディタータブ以外のアプリケーションとの間でコピーまたは貼り付けを行うには、次のキーボードの組み合わせを使用して下さい:","Common.Views.CopyWarningDialog.textTitle":"コピー,切り取り,貼り付け","Common.Views.CopyWarningDialog.textToCopy":"コピー","Common.Views.CopyWarningDialog.textToCut":"切り取り","Common.Views.CopyWarningDialog.textToPaste":"貼り付け","Common.Views.CustomizeQuickAccessDialog.textDownload":"ダウンロード","Common.Views.CustomizeQuickAccessDialog.textMsg":"クイックアクセスツールバーに表示されるコマンドをチェックしてください","Common.Views.CustomizeQuickAccessDialog.textPrint":"印刷","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"クイックプリント","Common.Views.CustomizeQuickAccessDialog.textRedo":"やり直す","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textStartOver":"先頭から表示する","Common.Views.CustomizeQuickAccessDialog.textTitle":"クイックアクセスのカスタマイズ","Common.Views.CustomizeQuickAccessDialog.textUndo":"元に戻す","Common.Views.DocumentAccessDialog.textLoading":"読み込み中...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.DocumentPropertyDialog.errorDate":"カレンダーから値を選択して日付として保存できます。
値を手動で入力した場合は、テキストとして保存されます。","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"いいえ","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"はい","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"プロパティはタイトルが必要です","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"タイトル","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"「はい」または「いいえ」","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"日付","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"タイプ","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"数","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"有効な数値を入力してください","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"テキスト","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"プロパティには値が必要です","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"値","Common.Views.DocumentPropertyDialog.txtTitle":"新しいドキュメントのプロパティ","Common.Views.Draw.hintEraser":"消しゴム","Common.Views.Draw.hintSelect":"選択","Common.Views.Draw.txtEraser":"消しゴム","Common.Views.Draw.txtHighlighter":"蛍光ペン","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"ペン","Common.Views.Draw.txtSelect":"選択","Common.Views.Draw.txtSize":"サイズ","Common.Views.ExternalDiagramEditor.textTitle":"グラフエディター","Common.Views.ExternalEditor.textClose":"閉じる","Common.Views.ExternalEditor.textSave":"保存&終了","Common.Views.ExternalLinksDlg.closeButtonText":"閉じる","Common.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","Common.Views.ExternalLinksDlg.textChange":"変更元","Common.Views.ExternalLinksDlg.textDelete":"リンクの解除","Common.Views.ExternalLinksDlg.textDeleteAll":"すべてのリンクを解除","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"オープンソース","Common.Views.ExternalLinksDlg.textSource":"ソース","Common.Views.ExternalLinksDlg.textStatus":"ステータス","Common.Views.ExternalLinksDlg.textUnknown":"不明","Common.Views.ExternalLinksDlg.textUpdate":"値の更新","Common.Views.ExternalLinksDlg.textUpdateAll":"すべて更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部リンク","Common.Views.ExternalOleEditor.textTitle":"スプレッドシートエディター","Common.Views.FormatSettingsDialog.textCategory":"カテゴリ","Common.Views.FormatSettingsDialog.textDecimal":"小数点","Common.Views.FormatSettingsDialog.textFormat":"フォーマット","Common.Views.FormatSettingsDialog.textLinked":"ソースにリンクした","Common.Views.FormatSettingsDialog.textLocale":"ロケール設定","Common.Views.FormatSettingsDialog.textSeparator":"1000の区切り文字を使用する","Common.Views.FormatSettingsDialog.textSymbols":"記号","Common.Views.FormatSettingsDialog.textTitle":"数値の書式","Common.Views.FormatSettingsDialog.txtAccounting":"会計","Common.Views.FormatSettingsDialog.txtAs10":"10分の5(5/10)として","Common.Views.FormatSettingsDialog.txtAs100":"100分の50(50/100)として","Common.Views.FormatSettingsDialog.txtAs16":"16分の8(8/16)として","Common.Views.FormatSettingsDialog.txtAs2":"2分の1(1/2)として","Common.Views.FormatSettingsDialog.txtAs4":"4分の2(2/4)として","Common.Views.FormatSettingsDialog.txtAs8":"8分の4(4/8)として","Common.Views.FormatSettingsDialog.txtCurrency":"通貨","Common.Views.FormatSettingsDialog.txtCustom":"カスタム","Common.Views.FormatSettingsDialog.txtCustomWarning":"カスタム番号の形式を慎重に入力してください。 Spreadsheet Editorは、xlsxファイルに影響を与える可能性のあるエラーについてカスタム形式をチェックしません。","Common.Views.FormatSettingsDialog.txtDate":"日付","Common.Views.FormatSettingsDialog.txtFraction":"分数","Common.Views.FormatSettingsDialog.txtGeneral":"標準","Common.Views.FormatSettingsDialog.txtNone":"なし","Common.Views.FormatSettingsDialog.txtNumber":"数字","Common.Views.FormatSettingsDialog.txtPercentage":"パーセンテージ","Common.Views.FormatSettingsDialog.txtSample":"例:","Common.Views.FormatSettingsDialog.txtScientific":"学術的","Common.Views.FormatSettingsDialog.txtText":"テキスト","Common.Views.FormatSettingsDialog.txtTime":"時間","Common.Views.FormatSettingsDialog.txtUpto1":"最大1桁(1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"最大2桁(12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"最大3桁(131/135)","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りとしてマークする","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textBack":"ファイルの場所を開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideNotes":"ノートを非表示にする","Common.Views.Header.textHideStatusBar":"ステータスバーを表示しない","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textSaveBegin":"保存中...","Common.Views.Header.textSaveChanged":"変更済み","Common.Views.Header.textSaveEnd":"全ての変更点が保存されました","Common.Views.Header.textSaveExpander":"全ての変更点が保存されました","Common.Views.Header.textShare":"共有","Common.Views.Header.textStartOver":"先頭から表示する","Common.Views.Header.textZoom":"ズーム","Common.Views.Header.tipAccessRights":"文書のアクセス許可の管理","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDownload":"ファイルをダウンロードする","Common.Views.Header.tipGoEdit":"現在のファイルを編集する","Common.Views.Header.tipPrint":"ファイルを印刷する","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直し","Common.Views.Header.tipSave":"保存する","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipStartOver":"スライドショーを最初から開始する","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUndock":"別のウィンドウにドッキングを解除する","Common.Views.Header.tipUsers":"ユーザーを表示する","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.textHighlightDeleted":"削除されたところをハイライトする","Common.Views.History.textMore":"もっと見る","Common.Views.History.textRestore":"復元する","Common.Views.History.textShow":"拡張する","Common.Views.History.textShowAll":"変更の詳細を表示する","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"バージョン履歴","Common.Views.ImageFromUrlDialog.textUrl":"画像URLの貼り付け:","Common.Views.ImageFromUrlDialog.txtEmpty":"このフィールドは必須項目です","Common.Views.ImageFromUrlDialog.txtNotUrl":"リンクの入力内容は「http://www.example.com」形式のURLである必要があります。","Common.Views.InsertTableDialog.textInvalidRowsCols":"有効な行と列の数を指定する必要があります。","Common.Views.InsertTableDialog.txtColumns":"列数","Common.Views.InsertTableDialog.txtMaxText":"このフィールドの最大値は{0}です。","Common.Views.InsertTableDialog.txtMinText":"このフィールドの最小値は{0}です。","Common.Views.InsertTableDialog.txtRows":"行数","Common.Views.InsertTableDialog.txtTitle":"表のサイズ","Common.Views.InsertTableDialog.txtTitleSplit":"セルの分割","Common.Views.LanguageDialog.labelSelect":"文書の言語を選択する","Common.Views.ListSettingsDialog.textBulleted":"箇条書き形式","Common.Views.ListSettingsDialog.textFromFile":"ファイルから","Common.Views.ListSettingsDialog.textFromStorage":"ストレージから","Common.Views.ListSettingsDialog.textFromUrl":"URLから","Common.Views.ListSettingsDialog.textNumbering":"番号付き","Common.Views.ListSettingsDialog.textSelect":"選択する","Common.Views.ListSettingsDialog.tipChange":"箇条書きを変更","Common.Views.ListSettingsDialog.txtBullet":"箇条書き","Common.Views.ListSettingsDialog.txtColor":"色","Common.Views.ListSettingsDialog.txtImage":"画像","Common.Views.ListSettingsDialog.txtImport":"インポート","Common.Views.ListSettingsDialog.txtNewBullet":"新しい行頭文字","Common.Views.ListSettingsDialog.txtNewImage":"新しい画像","Common.Views.ListSettingsDialog.txtNone":"なし","Common.Views.ListSettingsDialog.txtOfText":"テキストの%","Common.Views.ListSettingsDialog.txtSize":"サイズ","Common.Views.ListSettingsDialog.txtStart":"から開始","Common.Views.ListSettingsDialog.txtSymbol":"記号","Common.Views.ListSettingsDialog.txtTitle":"リストの設定","Common.Views.ListSettingsDialog.txtType":"タイプ","Common.Views.MacrosAiDialog.textAreaPlaceholder":"クエリのプロンプトを入力してください","Common.Views.MacrosAiDialog.textCreate":"作成","Common.Views.MacrosDialog.textAutostart":"自動起動","Common.Views.MacrosDialog.textConvertFromVBA":"VBAから変換する","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"マクロをVBAから変換する","Common.Views.MacrosDialog.textCopy":"コピー","Common.Views.MacrosDialog.textCreateFromDesc":"説明から作成する","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"マクロを説明から作成する","Common.Views.MacrosDialog.textCustomFunction":"カスタム関数","Common.Views.MacrosDialog.textCustomFunctions":"カスタム関数","Common.Views.MacrosDialog.textDebug":"デバッグ","Common.Views.MacrosDialog.textDelete":"削除","Common.Views.MacrosDialog.textFunctions":"関数","Common.Views.MacrosDialog.textLoading":"読み込んでいます...","Common.Views.MacrosDialog.textMacro":"マクロ","Common.Views.MacrosDialog.textMacros":"マクロ","Common.Views.MacrosDialog.textMakeAutostart":"自動起動に設定","Common.Views.MacrosDialog.textRename":"名前の変更","Common.Views.MacrosDialog.textRun":"実行","Common.Views.MacrosDialog.textSave":"保存","Common.Views.MacrosDialog.textTitle":"マクロ","Common.Views.MacrosDialog.textUnMakeAutostart":"自動起動を解除","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"カスタム関数を追加","Common.Views.MacrosDialog.tipFunctionCopy":"カスタム関数のコピー","Common.Views.MacrosDialog.tipFunctionDelete":"カスタム関数の削除","Common.Views.MacrosDialog.tipFunctionRename":"カスタム関数名の変更","Common.Views.MacrosDialog.tipMacrosAdd":"マクロを追加","Common.Views.MacrosDialog.tipMacrosCopy":"マクロのコピー","Common.Views.MacrosDialog.tipMacrosDebug":"マクロのデバッグ","Common.Views.MacrosDialog.tipMacrosRename":"マクロ名の変更","Common.Views.MacrosDialog.tipMacrosRun":"マクロの実行","Common.Views.MacrosDialog.tipRedo":"やり直す","Common.Views.MacrosDialog.tipUndo":"元に戻す","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":"この文書を保護するためのパスワードを設定してください。","Common.Views.PasswordDialog.txtIncorrectPwd":"先に入力したパスワードと一致しません。","Common.Views.PasswordDialog.txtPassword":"パスワード","Common.Views.PasswordDialog.txtRepeat":"パスワードを再入力","Common.Views.PasswordDialog.txtTitle":"パスワードの設定","Common.Views.PasswordDialog.txtWarning":"警告: パスワードを忘れると元に戻せません。安全な場所に記録してください。","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除する","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"開始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.Plugins.tipMore":"もっと","Common.Views.Protection.hintAddPwd":"パスワードを使用して暗号化する","Common.Views.Protection.hintDelPwd":"パスワードの削除","Common.Views.Protection.hintPwd":"パスワードを変更するか削除する","Common.Views.Protection.hintSignature":"デジタル署名かデジタル署名行を追加する","Common.Views.Protection.txtAddPwd":"パスワードを追加","Common.Views.Protection.txtChangePwd":"パスワードを変更する","Common.Views.Protection.txtDeletePwd":"パスワードを削除する","Common.Views.Protection.txtEncrypt":"暗号化する","Common.Views.Protection.txtInvisibleSignature":"デジタル署名を追加","Common.Views.Protection.txtSignature":"署名","Common.Views.Protection.txtSignatureLine":"署名欄を追加","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","Common.Views.RenameDialog.textName":"ファイル名","Common.Views.RenameDialog.txtInvalidName":"ファイル名に次の文字を使うことはできません。","Common.Views.ReviewChanges.hintNext":"次の変更箇所へ","Common.Views.ReviewChanges.hintPrev":"前の​​変更箇所へ","Common.Views.ReviewChanges.strFast":"高速","Common.Views.ReviewChanges.strFastDesc":"リアルタイム共同編集モードです。すべての変更は自動的に保存されます。","Common.Views.ReviewChanges.strStrict":"厳格","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":"変更履歴","Common.Views.ReviewChanges.tipReviewView":"変更内容を表示するモードを選択してください","Common.Views.ReviewChanges.tipSetDocLang":"文書の言語を設定する","Common.Views.ReviewChanges.tipSetSpelling":"スペルチェック","Common.Views.ReviewChanges.tipSharing":"文書のアクセス許可の管理","Common.Views.ReviewChanges.txtAccept":"承諾","Common.Views.ReviewChanges.txtAcceptAll":"すべての変更を承諾する","Common.Views.ReviewChanges.txtAcceptChanges":"変更を承諾する","Common.Views.ReviewChanges.txtAcceptCurrent":"現在の変更を承諾する","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":"最終版","Common.Views.ReviewChanges.txtHistory":"バージョン履歴","Common.Views.ReviewChanges.txtMarkup":"全ての変更(編集)","Common.Views.ReviewChanges.txtMarkupCap":"マークアップ","Common.Views.ReviewChanges.txtNext":"次へ","Common.Views.ReviewChanges.txtOriginal":"すべての変更が拒否されました(プレビュー)","Common.Views.ReviewChanges.txtOriginalCap":"初版","Common.Views.ReviewChanges.txtPrev":"前回の","Common.Views.ReviewChanges.txtReject":"拒否する","Common.Views.ReviewChanges.txtRejectAll":"すべての変更を拒否する","Common.Views.ReviewChanges.txtRejectChanges":"変更を拒否する","Common.Views.ReviewChanges.txtRejectCurrent":"現在の変更を拒否する","Common.Views.ReviewChanges.txtSharing":"共有","Common.Views.ReviewChanges.txtSpelling":"スペルチェック","Common.Views.ReviewChanges.txtTurnon":"変更履歴","Common.Views.ReviewChanges.txtView":"表示モード","Common.Views.ReviewPopover.textAdd":"追加する","Common.Views.ReviewPopover.textAddReply":"返信を追加","Common.Views.ReviewPopover.textCancel":"キャンセル","Common.Views.ReviewPopover.textClose":"閉じる","Common.Views.ReviewPopover.textComment":"コメント","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"ここにコメントを入力してください","Common.Views.ReviewPopover.textMention":"+メンションされるユーザーは文書にアクセスのメール通知を送信します","Common.Views.ReviewPopover.textMentionNotify":"+メンションされるユーザーはメールで通知されます","Common.Views.ReviewPopover.textOpenAgain":"もう一度開く","Common.Views.ReviewPopover.textReply":"返信する","Common.Views.ReviewPopover.textResolve":"解決する","Common.Views.ReviewPopover.textViewResolved":"コメントを再開する権限がありません","Common.Views.ReviewPopover.txtDeleteTip":"削除する","Common.Views.ReviewPopover.txtEditTip":"編集する","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字を区別する","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索する","Common.Views.SearchPanel.textFindAndReplace":"検索して置換する","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textNoMatches":"一致する結果がありません","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"置換する","Common.Views.SearchPanel.textReplaceAll":"全てを置換する","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.ShapeShadowDialog.txtAngle":"角","Common.Views.ShapeShadowDialog.txtDistance":"距離","Common.Views.ShapeShadowDialog.txtSize":"サイズ","Common.Views.ShapeShadowDialog.txtTitle":"影の調整","Common.Views.ShapeShadowDialog.txtTransparency":"透過性","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":"画像を選択する","Common.Views.SignDialog.textSignature":"署名は次のようになります:","Common.Views.SignDialog.textTitle":"文書に署名する","Common.Views.SignDialog.textUseImage":"または「画像を選択」をクリックして、画像を署名として使用します","Common.Views.SignDialog.textValid":"%1から%2まで有効","Common.Views.SignDialog.tipFontName":"フォント名","Common.Views.SignDialog.tipFontSize":"フォントのサイズ","Common.Views.SignSettingsDialog.textAllowComment":"署名者が署名ダイアログボックスにコメントを追加できるようにする","Common.Views.SignSettingsDialog.textDefInstruction":"このドキュメントに署名する前に、署名するコンテンツが正しいことを確認してください。","Common.Views.SignSettingsDialog.textInfoEmail":"署名候補者のメールアドレス","Common.Views.SignSettingsDialog.textInfoName":"署名候補者","Common.Views.SignSettingsDialog.textInfoTitle":"署名候補者の役職","Common.Views.SignSettingsDialog.textInstructions":"署名者への説明書","Common.Views.SignSettingsDialog.textShowDate":"署名欄に署名日を表示する","Common.Views.SignSettingsDialog.textTitle":"署名の設定","Common.Views.SignSettingsDialog.txtEmpty":"このフィールドは必須項目です","Common.Views.SymbolTableDialog.textCharacter":"文字","Common.Views.SymbolTableDialog.textCode":"UnicodeHEX値","Common.Views.SymbolTableDialog.textCopyright":"著作権マーク","Common.Views.SymbolTableDialog.textDCQuote":"二重引用符を終了する","Common.Views.SymbolTableDialog.textDOQuote":"二重の引用符(左)","Common.Views.SymbolTableDialog.textEllipsis":"水平の省略記号","Common.Views.SymbolTableDialog.textEmDash":"全角ダッシュ","Common.Views.SymbolTableDialog.textEmSpace":"全角スペース","Common.Views.SymbolTableDialog.textEnDash":"半角ダッシュ","Common.Views.SymbolTableDialog.textEnSpace":"半角スペース","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.DocumentHolder.textLongName":"255文字以内の名前を入力してください。","PE.Controllers.DocumentHolder.textNameLayout":"レイアウト名","PE.Controllers.DocumentHolder.textNameMaster":"マスター名","PE.Controllers.DocumentHolder.textRenameTitleLayout":"レイアウト名を変更","PE.Controllers.DocumentHolder.textRenameTitleMaster":"マスター名の変更","PE.Controllers.LeftMenu.leavePageText":"変更を保存せずにドキュメントを閉じると変更が失われます。
「キャンセル」をクリックし、「保存」をクリックして保存してください。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","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.textSelectPath":"ファイルのコピーを保存するために新しいタイトルを入力してください","PE.Controllers.LeftMenu.txtUntitled":"タイトルなし","PE.Controllers.Main.applyChangesTextText":"データの読み込み中...","PE.Controllers.Main.applyChangesTitleText":"データの読み込み中","PE.Controllers.Main.confirmMaxChangesSize":"アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。","PE.Controllers.Main.convertationTimeoutText":"変換のタイムアウトを超過しました。","PE.Controllers.Main.criticalErrorExtText":"OKボタンを押すとドキュメントリストに戻ります。","PE.Controllers.Main.criticalErrorExtTextClose":"[OK]を押してエディターを閉じます。","PE.Controllers.Main.criticalErrorTitle":"エラー","PE.Controllers.Main.downloadErrorText":"ダウンロードに失敗しました","PE.Controllers.Main.downloadTextText":"プレゼンテーションのダウンロード中...","PE.Controllers.Main.downloadTitleText":"プレゼンテーションのダウンロード中","PE.Controllers.Main.errorAccessDeny":"権限のない操作を実行しようとしています。
ドキュメントサーバーの管理者にご連絡ください。","PE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません","PE.Controllers.Main.errorCannotPasteImg":"この画像をクリップボードから貼り付けることはできませんが、端末に保存してそこから挿入したり、\nテキストを含まない画像をコピーしてプレゼンテーションに貼り付けたりすることが可能です。","PE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。現在、文書を編集することができません。","PE.Controllers.Main.errorComboSeries":"組み合わせチャートを作成するには、最低2つのデータを選択します。","PE.Controllers.Main.errorConnectToServer":"文書を保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
OKボタンをクリックするとドキュメントをダウンロードするように求められます。","PE.Controllers.Main.errorDatabaseConnection":"外部エラーです。
データベース接続エラーです。この問題が解決しない場合は、サポートにお問い合わせください。 ","PE.Controllers.Main.errorDataEncrypted":"暗号化された変更を受け取りましたが、解読できません。","PE.Controllers.Main.errorDataRange":"データ範囲が正しくありません。","PE.Controllers.Main.errorDefaultMessage":"エラーコード: %1","PE.Controllers.Main.errorDirectUrl":"ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。","PE.Controllers.Main.errorEditingDownloadas":"文書の処理中にエラーが発生しました。
コンピューターにファイルのバックアップコピーを保存するために、「名前を付けてダウンロード」をご使用ください。","PE.Controllers.Main.errorEditingSaveas":"文書の処理中にエラーが発生しました。
コンピューターにファイルのバックアップを保存するために、「名前を付けてダウンロード」をご使用ください。","PE.Controllers.Main.errorEmailClient":"メールクライアントが見つかりませんでした。","PE.Controllers.Main.errorFilePassProtect":"文書がパスワードで保護されているため、開くことができません。","PE.Controllers.Main.errorFileSizeExceed":"ファイルサイズがサーバーで設定された制限を超過しています。
Documentサーバー管理者に詳細をお問い合わせください。","PE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。コンピューターにファイルを保存するために、「名前を付けてダウンロード」を使用するか、または後で再度お試しください。","PE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","PE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","PE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","PE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","PE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","PE.Controllers.Main.errorKeyEncrypt":"不明なキーの記述子","PE.Controllers.Main.errorKeyExpire":"キー記述子の有効期限が切れました","PE.Controllers.Main.errorLoadingFont":"フォントが読み込まれていません。
ドキュメントサーバーの管理者に連絡してください。","PE.Controllers.Main.errorSaveWatermark":"このファイルには、別のドメインにリンクされた透かし画像が含まれています。
PDFで見えるようにするには、文書と同じドメインからリンクされるように透かし画像を更新するか、コンピュータからアップロードしてください。","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":"ドキュメントセキュリティトークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。","PE.Controllers.Main.errorTokenExpire":"ドキュメントセキュリティトークンの有効期限が切れています。
ドキュメントサーバーの管理者に連絡してください。","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":"このプレゼンテーションで保存されていない変更はすべて失われます。
保存するには「キャンセル」をクリックし、「保存」をクリックしてください。「OK 」をクリックすると、保存されていないすべての変更が破棄されます。","PE.Controllers.Main.loadFontsTextText":"データの読み込み中...","PE.Controllers.Main.loadFontsTitleText":"データの読み込み中","PE.Controllers.Main.loadFontTextText":"データの読み込み中...","PE.Controllers.Main.loadFontTitleText":"データの読み込み中","PE.Controllers.Main.loadImagesTextText":"画像の読み込み中...","PE.Controllers.Main.loadImagesTitleText":"画像の読み込み中","PE.Controllers.Main.loadImageTextText":"画像の読み込み中...","PE.Controllers.Main.loadImageTitleText":"画像の読み込み中","PE.Controllers.Main.loadingDocumentTextText":"プレゼンテーションの読み込み中...","PE.Controllers.Main.loadingDocumentTitleText":"プレゼンテーションの読み込み中...","PE.Controllers.Main.loadThemeTextText":"テーマの読み込み中...","PE.Controllers.Main.loadThemeTitleText":"テーマの読み込み中","PE.Controllers.Main.notcriticalErrorTitle":"警告","PE.Controllers.Main.openErrorText":"ファイルを読み込み中にエラーが発生しました。","PE.Controllers.Main.openTextText":"プレゼンテーションの読み込み中...","PE.Controllers.Main.openTitleText":"プレゼンテーションの読み込み中","PE.Controllers.Main.printTextText":"プレゼンテーションの印刷中...","PE.Controllers.Main.printTitleText":"プレゼンテーションの印刷中","PE.Controllers.Main.reloadButtonText":"ページを再読み込み","PE.Controllers.Main.requestEditFailedMessageText":"現在、誰かがこのプレゼンテーションを編集しています。後で再試行してください。","PE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","PE.Controllers.Main.saveErrorText":"ファイルを保存中にエラーが発生しました。","PE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","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.textConnectionLost":"接続中です。接続設定をご確認ください。","PE.Controllers.Main.textContactUs":"営業部に連絡する","PE.Controllers.Main.textContinue":"続ける","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":"ライセンス制限に達しました","PE.Controllers.Main.textObject":"オブジェクト","PE.Controllers.Main.textPaidFeature":"有料機能","PE.Controllers.Main.textReconnect":"接続が回復しました","PE.Controllers.Main.textRemember":"すべてのファイルに選択を保存する","PE.Controllers.Main.textRememberMacros":"すべてのマクロに、この選択を記憶する","PE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","PE.Controllers.Main.textRenameLabel":"コラボレーションに使用する名前を入力して下さい。","PE.Controllers.Main.textRequestMacros":"マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?","PE.Controllers.Main.textShape":"図形","PE.Controllers.Main.textStrict":"厳格モード","PE.Controllers.Main.textText":"テキスト","PE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","PE.Controllers.Main.textTryUndoRedo":"高速共同編集モードでは、元に戻す/やり直し機能は無効になります。
「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。","PE.Controllers.Main.textTryUndoRedoWarn":"高速共同編集モードでは、元に戻す/やり直し機能が無効になります。","PE.Controllers.Main.textUndo":"元に戻す","PE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","PE.Controllers.Main.textUpdating":"アップデート中","PE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","PE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","PE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","PE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","PE.Controllers.Main.titleReadOnly":"閲覧専用モード","PE.Controllers.Main.titleServerVersion":"編集者が更新されました","PE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","PE.Controllers.Main.txtAddFirstSlide":"クリックして最初のスライドを追加","PE.Controllers.Main.txtAddNotes":"クリックでメモを追加","PE.Controllers.Main.txtAnimationPane":"アニメーションパネル","PE.Controllers.Main.txtArt":"ここにテキストを入力","PE.Controllers.Main.txtBasicShapes":"基本図形","PE.Controllers.Main.txtButtons":"ボタン","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.txtEnd":"終了: ${0}s","PE.Controllers.Main.txtErrorLoadHistory":"履歴の読み込みに失敗しました。","PE.Controllers.Main.txtFiguredArrows":"図形矢印","PE.Controllers.Main.txtFirstSlide":"最初のスライド","PE.Controllers.Main.txtFooter":"フッター","PE.Controllers.Main.txtHeader":"ヘッダー","PE.Controllers.Main.txtImage":"画像","PE.Controllers.Main.txtLastSlide":"最後のスライド","PE.Controllers.Main.txtLines":"線","PE.Controllers.Main.txtLoading":"読み込み中...","PE.Controllers.Main.txtLoop":"ループ: ${0}s","PE.Controllers.Main.txtMath":"数学","PE.Controllers.Main.txtMedia":"メディア","PE.Controllers.Main.txtNeedSynchronize":"更新があります","PE.Controllers.Main.txtNextSlide":"次のスライド","PE.Controllers.Main.txtNone":"なし","PE.Controllers.Main.txtPicture":"画像","PE.Controllers.Main.txtPlayAll":"すべてを再生","PE.Controllers.Main.txtPlayFrom":"再生","PE.Controllers.Main.txtPlaySelected":"選択された項目を再生","PE.Controllers.Main.txtPrevSlide":"前のスライド","PE.Controllers.Main.txtRectangles":"四角形","PE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","PE.Controllers.Main.txtScheme_Aspect":"アスペクト","PE.Controllers.Main.txtScheme_Blue":"青色","PE.Controllers.Main.txtScheme_Blue_Green":"ブルーグリーン","PE.Controllers.Main.txtScheme_Blue_II":"青色II","PE.Controllers.Main.txtScheme_Blue_Warm":"ブルーウォーム","PE.Controllers.Main.txtScheme_Grayscale":"グレースケール","PE.Controllers.Main.txtScheme_Green":"緑色","PE.Controllers.Main.txtScheme_Green_Yellow":"黄緑色","PE.Controllers.Main.txtScheme_Marquee":"マーキー","PE.Controllers.Main.txtScheme_Median":"中位数","PE.Controllers.Main.txtScheme_Office":"Office","PE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","PE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","PE.Controllers.Main.txtScheme_Orange":"オレンジ色","PE.Controllers.Main.txtScheme_Orange_Red":"オレンジ赤色","PE.Controllers.Main.txtScheme_Paper":"紙","PE.Controllers.Main.txtScheme_Red":"赤色","PE.Controllers.Main.txtScheme_Red_Orange":"オレンジ赤色","PE.Controllers.Main.txtScheme_Red_Violet":"赤紫色","PE.Controllers.Main.txtScheme_Slipstream":"スリップストリーム","PE.Controllers.Main.txtScheme_Violet":"バイオレット色","PE.Controllers.Main.txtScheme_Violet_II":"バイオレット II","PE.Controllers.Main.txtScheme_Yellow":"黄色","PE.Controllers.Main.txtScheme_Yellow_Orange":"オレンジ黄色","PE.Controllers.Main.txtSeries":"系列","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":"角","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":"半フレーム","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":"爆発 1","PE.Controllers.Main.txtShape_irregularSeal2":"爆発 2","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":"1つの角を丸めた四角形","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":"1つの角を切り取った四角形","PE.Controllers.Main.txtShape_snip2DiagRect":"対角する2つの角を切り取った四角形","PE.Controllers.Main.txtShape_snip2SameRect":"片側の2つの角を切り取った四角形","PE.Controllers.Main.txtShape_snipRoundRect":"1つの角を切り取り1つの角を丸めた四角形","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":"グラフとテキスト","PE.Controllers.Main.txtSldLtTClipArtAndTx":"クリップアートとテキスト","PE.Controllers.Main.txtSldLtTClipArtAndVertTx":"クリップアートと縦書きテキスト","PE.Controllers.Main.txtSldLtTCust":"カスタム","PE.Controllers.Main.txtSldLtTDgm":"図表","PE.Controllers.Main.txtSldLtTFourObj":"四つのオブジェクト","PE.Controllers.Main.txtSldLtTMediaAndTx":"メディアとテキスト","PE.Controllers.Main.txtSldLtTObj":"タイトルとオブジェクト","PE.Controllers.Main.txtSldLtTObjAndTwoObj":"一つのオブジェクトと二つのオブジェクト","PE.Controllers.Main.txtSldLtTObjAndTx":"オブジェクトとテキスト","PE.Controllers.Main.txtSldLtTObjOnly":"オブジェクト","PE.Controllers.Main.txtSldLtTObjOverTx":"テキストの上にオブジェクト","PE.Controllers.Main.txtSldLtTObjTx":"タイトル、オブジェクトと説明文","PE.Controllers.Main.txtSldLtTPicTx":"画像と説明文","PE.Controllers.Main.txtSldLtTSecHead":"セクション見出し","PE.Controllers.Main.txtSldLtTTbl":"テーブル","PE.Controllers.Main.txtSldLtTTitle":"タイトル","PE.Controllers.Main.txtSldLtTTitleOnly":"タイトルのみ","PE.Controllers.Main.txtSldLtTTwoColTx":"2段組みテキスト","PE.Controllers.Main.txtSldLtTTwoObj":"二つのオブジェクト","PE.Controllers.Main.txtSldLtTTwoObjAndObj":"二つのオブジェクトとオブジェクト","PE.Controllers.Main.txtSldLtTTwoObjAndTx":"二つのオブジェクトとテキスト","PE.Controllers.Main.txtSldLtTTwoObjOverTx":"テキストの上に二つのオブジェクト","PE.Controllers.Main.txtSldLtTTwoTxTwoObj":"二つのテキストと二つのオブジェクト","PE.Controllers.Main.txtSldLtTTx":"テキスト","PE.Controllers.Main.txtSldLtTTxAndChart":"テキストとグラフ","PE.Controllers.Main.txtSldLtTTxAndClipArt":"テキストとクリップアート","PE.Controllers.Main.txtSldLtTTxAndMedia":"テキストとメディア","PE.Controllers.Main.txtSldLtTTxAndObj":"テキストとオブジェクト","PE.Controllers.Main.txtSldLtTTxAndTwoObj":"テキストと二つのオブジェクト","PE.Controllers.Main.txtSldLtTTxOverObj":"オブジェクトの上にテキスト","PE.Controllers.Main.txtSldLtTVertTitleAndTx":"縦書きタイトルとテキスト","PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart":"縦書きタイトルとグラフの上にテキスト","PE.Controllers.Main.txtSldLtTVertTx":"縦書きテキスト","PE.Controllers.Main.txtSlideNumber":"スライド番号","PE.Controllers.Main.txtSlideSubtitle":"スライドの小見出し","PE.Controllers.Main.txtSlideText":"スライドのテキスト","PE.Controllers.Main.txtSlideTitle":"スライドのタイトル","PE.Controllers.Main.txtStarsRibbons":"スター&リボン","PE.Controllers.Main.txtStart":"スタート: ${0}s","PE.Controllers.Main.txtStop":"停止","PE.Controllers.Main.txtTheme_basic":"基本","PE.Controllers.Main.txtTheme_blank":"空白","PE.Controllers.Main.txtTheme_classic":"クラシック","PE.Controllers.Main.txtTheme_corner":"角","PE.Controllers.Main.txtTheme_dotted":"ドット付き","PE.Controllers.Main.txtTheme_green":"グリーン","PE.Controllers.Main.txtTheme_green_leaf":"緑色の葉","PE.Controllers.Main.txtTheme_lines":"線","PE.Controllers.Main.txtTheme_office":"Office","PE.Controllers.Main.txtTheme_office_theme":"Officeテーマ","PE.Controllers.Main.txtTheme_official":"公式","PE.Controllers.Main.txtTheme_pixel":"ピクセル","PE.Controllers.Main.txtTheme_safari":"Safari","PE.Controllers.Main.txtTheme_turtle":"亀","PE.Controllers.Main.txtXAxis":"X軸","PE.Controllers.Main.txtYAxis":"Y軸","PE.Controllers.Main.txtZoom":"拡大図","PE.Controllers.Main.unknownErrorText":"不明なエラーです。","PE.Controllers.Main.unsupportedBrowserErrorText":"お使いのブラウザはサポートされていません。","PE.Controllers.Main.updateChartText":"チャートのデータが更新中です…","PE.Controllers.Main.uploadImageExtMessage":"不明な画像形式です。","PE.Controllers.Main.uploadImageFileCountMessage":"画像のアップロードはありません。","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":"お使いのブラウザの現在のZoomの設定は完全にはサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。","PE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","PE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","PE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページを再読み込みしてください。","PE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","PE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください。","PE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","PE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。","PE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","PE.Controllers.Print.txtPrintRangeInvalid":"無効な印刷範囲","PE.Controllers.Search.notcriticalErrorTitle":" 警告","PE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。他の検索設定を選択してください。","PE.Controllers.Search.textReplaceSkipped":"置換が行われました。スキップされた発生回数は{0}です。","PE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました。","PE.Controllers.Search.warnReplaceString":"{0}は、「置換」ボックスで有効な特殊文字ではありません","PE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","PE.Controllers.Statusbar.zoomText":"ズーム{0}%","PE.Controllers.Toolbar.confirmAddFontName":"保存しようとしているフォントを現在のデバイスで使用することができません。
システムフォントを使って、テキストのスタイルが表示されます。利用可能になったとき、保存されたフォントが適用されます。
続行しますか。","PE.Controllers.Toolbar.textAccent":"ダイアクリティカル・マーク","PE.Controllers.Toolbar.textBracket":"括弧","PE.Controllers.Toolbar.textFontSizeErr":"入力された値が正しくありません。
1〜300の数値を入力してください。","PE.Controllers.Toolbar.textFraction":"分数","PE.Controllers.Toolbar.textFunction":"関数","PE.Controllers.Toolbar.textInsert":"挿入","PE.Controllers.Toolbar.textIntegral":"積分","PE.Controllers.Toolbar.textLargeOperator":"大型演算子","PE.Controllers.Toolbar.textLimitAndLog":"極限と対数","PE.Controllers.Toolbar.textMatrix":"行列","PE.Controllers.Toolbar.textOperator":"演算子","PE.Controllers.Toolbar.textRadical":"ラジカル","PE.Controllers.Toolbar.textScript":"スクリプト","PE.Controllers.Toolbar.textSymbols":"記号","PE.Controllers.Toolbar.textWarning":"警告","PE.Controllers.Toolbar.txtAccent_Accent":"アキュート","PE.Controllers.Toolbar.txtAccent_ArrowD":"左右双方向矢印 (上)","PE.Controllers.Toolbar.txtAccent_ArrowL":"左に矢印 (上)","PE.Controllers.Toolbar.txtAccent_ArrowR":"右向き矢印 (上)","PE.Controllers.Toolbar.txtAccent_Bar":"横棒グラフ","PE.Controllers.Toolbar.txtAccent_BarBot":"アンダーバー","PE.Controllers.Toolbar.txtAccent_BarTop":"オーバーライン","PE.Controllers.Toolbar.txtAccent_BorderBox":"四角囲み数式 (プレースホルダ付き)","PE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"四角囲み数式 (例)","PE.Controllers.Toolbar.txtAccent_Check":"チェック","PE.Controllers.Toolbar.txtAccent_CurveBracketBot":"下括弧","PE.Controllers.Toolbar.txtAccent_CurveBracketTop":"上括弧","PE.Controllers.Toolbar.txtAccent_Custom_1":"ベクトルA","PE.Controllers.Toolbar.txtAccent_Custom_2":"オーバーライン付き ABC","PE.Controllers.Toolbar.txtAccent_Custom_3":"x XORとオーバーライン","PE.Controllers.Toolbar.txtAccent_DDDot":"トリプルドット","PE.Controllers.Toolbar.txtAccent_DDot":"二重ドット","PE.Controllers.Toolbar.txtAccent_Dot":"点","PE.Controllers.Toolbar.txtAccent_DoubleBar":"二重オーバーライン","PE.Controllers.Toolbar.txtAccent_Grave":"グレイヴ","PE.Controllers.Toolbar.txtAccent_GroupBot":"グループ文字 (下)","PE.Controllers.Toolbar.txtAccent_GroupTop":"グループ文字 (上)","PE.Controllers.Toolbar.txtAccent_HarpoonL":"左半矢印(上)","PE.Controllers.Toolbar.txtAccent_HarpoonR":"右向き半矢印 (上)","PE.Controllers.Toolbar.txtAccent_Hat":"ハット","PE.Controllers.Toolbar.txtAccent_Smile":"ブレーヴェ","PE.Controllers.Toolbar.txtAccent_Tilde":"チルダ","PE.Controllers.Toolbar.txtBracket_Angle":"括弧","PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"山かっこと縦棒","PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"山かっこと縦棒 2 本","PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"終わり山かっこ","PE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"始め山かっこ","PE.Controllers.Toolbar.txtBracket_Curve":"中かっこ","PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"中かっこと縦棒","PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"右中かっこ","PE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"左中かっこ","PE.Controllers.Toolbar.txtBracket_Custom_1":"場合分け(条件2つ)","PE.Controllers.Toolbar.txtBracket_Custom_2":"場合分け (条件3つ)","PE.Controllers.Toolbar.txtBracket_Custom_3":"縦並びオブジェクト","PE.Controllers.Toolbar.txtBracket_Custom_4":"縦並びオブジェクト (かっこ付き)","PE.Controllers.Toolbar.txtBracket_Custom_5":"場合分けの例","PE.Controllers.Toolbar.txtBracket_Custom_6":"二項係数","PE.Controllers.Toolbar.txtBracket_Custom_7":"二項係数 (山かっこ付き)","PE.Controllers.Toolbar.txtBracket_Line":"縦棒","PE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"縦棒 (右のみ)","PE.Controllers.Toolbar.txtBracket_Line_OpenNone":"縦棒 (左のみ)","PE.Controllers.Toolbar.txtBracket_LineDouble":"二重縦棒","PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"二重縦棒 (右のみ)","PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"単一括弧","PE.Controllers.Toolbar.txtBracket_LowLim":"終わりかっこ","PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"床関数 (右記号)","PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"床関数 (左記号)","PE.Controllers.Toolbar.txtBracket_Round":"括弧","PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"括弧と区切り線","PE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"右かっこ","PE.Controllers.Toolbar.txtBracket_Round_OpenNone":"左かっこ","PE.Controllers.Toolbar.txtBracket_Square":"大かっこ","PE.Controllers.Toolbar.txtBracket_Square_CloseClose":"右の角括弧の間のプレースホルダー","PE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"反転した角括弧","PE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"右角かっこ","PE.Controllers.Toolbar.txtBracket_Square_OpenNone":"左角かっこ","PE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"左の角括弧の間のプレースホルダー","PE.Controllers.Toolbar.txtBracket_SquareDouble":"二重の角括弧","PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"右ダブル角型かっこ","PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"左ダブル角型かっこ","PE.Controllers.Toolbar.txtBracket_UppLim":"天井大かっこ","PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"天井関数 (右記号)","PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"単一かっこ","PE.Controllers.Toolbar.txtFractionDiagonal":"分数 (斜め)","PE.Controllers.Toolbar.txtFractionDifferential_1":"微分","PE.Controllers.Toolbar.txtFractionDifferential_2":"大文字デルタ y/大文字デルタ x","PE.Controllers.Toolbar.txtFractionDifferential_3":"部分的なxに対する部分的なy","PE.Controllers.Toolbar.txtFractionDifferential_4":"デルタ y/デルタ x","PE.Controllers.Toolbar.txtFractionHorizontal":"分数 (横)","PE.Controllers.Toolbar.txtFractionPi_2":"円周率を2で割る","PE.Controllers.Toolbar.txtFractionSmall":"分数 (小)","PE.Controllers.Toolbar.txtFractionVertical":"分数 (縦)","PE.Controllers.Toolbar.txtFunction_1_Cos":"逆余弦関数","PE.Controllers.Toolbar.txtFunction_1_Cosh":"双曲線逆余弦関数","PE.Controllers.Toolbar.txtFunction_1_Cot":"逆余接関数","PE.Controllers.Toolbar.txtFunction_1_Coth":"双曲線逆共接関数","PE.Controllers.Toolbar.txtFunction_1_Csc":"逆余割関数","PE.Controllers.Toolbar.txtFunction_1_Csch":"逆双曲線余割関数","PE.Controllers.Toolbar.txtFunction_1_Sec":"逆正割関数","PE.Controllers.Toolbar.txtFunction_1_Sech":"双曲線逆正割関数","PE.Controllers.Toolbar.txtFunction_1_Sin":"逆正弦関数","PE.Controllers.Toolbar.txtFunction_1_Sinh":"双曲線逆正弦関数","PE.Controllers.Toolbar.txtFunction_1_Tan":"逆正接関数","PE.Controllers.Toolbar.txtFunction_1_Tanh":"双曲線逆正接関数","PE.Controllers.Toolbar.txtFunction_Cos":"余弦関数","PE.Controllers.Toolbar.txtFunction_Cosh":"双曲線余弦関数","PE.Controllers.Toolbar.txtFunction_Cot":"余接関数","PE.Controllers.Toolbar.txtFunction_Coth":"双曲線余接関数","PE.Controllers.Toolbar.txtFunction_Csc":"余割関数\t","PE.Controllers.Toolbar.txtFunction_Csch":"双曲線余割関数","PE.Controllers.Toolbar.txtFunction_Custom_1":"Sin θ","PE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","PE.Controllers.Toolbar.txtFunction_Custom_3":"正接数式","PE.Controllers.Toolbar.txtFunction_Sec":"正割関数","PE.Controllers.Toolbar.txtFunction_Sech":"双曲線正割関数","PE.Controllers.Toolbar.txtFunction_Sin":"正弦関数","PE.Controllers.Toolbar.txtFunction_Sinh":"双曲線正弦関数","PE.Controllers.Toolbar.txtFunction_Tan":"正接関数","PE.Controllers.Toolbar.txtFunction_Tanh":"双曲線正接関数","PE.Controllers.Toolbar.txtIntegral":"積分","PE.Controllers.Toolbar.txtIntegral_dtheta":"微分シータ","PE.Controllers.Toolbar.txtIntegral_dx":"微分x","PE.Controllers.Toolbar.txtIntegral_dy":"微分y","PE.Controllers.Toolbar.txtIntegralCenterSubSup":"積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralDouble":"二重積分","PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"二重積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralDoubleSubSup":"二重積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralOriented":"周回積分","PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"線積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralOrientedDouble":"面積分","PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"面積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"面積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralOrientedSubSup":"線積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralOrientedTriple":"体積積分","PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"体積積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"体積積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralSubSup":"積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralTriple":"三重積分","PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"三重積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralTripleSubSup":"三重積分 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Conjunction":"論理積","PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"論理積 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"論理積 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"論理積 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"論理積 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_CoProd":"余積","PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"下端付き余積","PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"極限付き余積","PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"下端下付き双対積","PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"上下付き極限付き双対積","PE.Controllers.Toolbar.txtLargeOperator_Custom_1":"n から k を選ぶ場合の k の総和","PE.Controllers.Toolbar.txtLargeOperator_Custom_2":"総和 (i = 0 から n まで)","PE.Controllers.Toolbar.txtLargeOperator_Custom_3":"添え字 2 個を使う総和の例","PE.Controllers.Toolbar.txtLargeOperator_Custom_4":"積の例","PE.Controllers.Toolbar.txtLargeOperator_Custom_5":"和集合の例","PE.Controllers.Toolbar.txtLargeOperator_Disjunction":"論理和","PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"論理和 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"論理和 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"論理和 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"論理和 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Intersection":"共通集合","PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"積集合 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"積集合 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"積集合 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"積集合 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Prod":"乗積","PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"積 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"積 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"積 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"積 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Sum":"合計","PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"総和 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"総和 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"総和 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"総和 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Union":"和集合","PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"和集合 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"和集合 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"和集合 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"和集合 (下付き/上付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLimitLog_Custom_1":"極限の例","PE.Controllers.Toolbar.txtLimitLog_Custom_2":"最大値の例","PE.Controllers.Toolbar.txtLimitLog_Lim":"極限","PE.Controllers.Toolbar.txtLimitLog_Ln":"自然対数","PE.Controllers.Toolbar.txtLimitLog_Log":"対数","PE.Controllers.Toolbar.txtLimitLog_LogBase":"対数","PE.Controllers.Toolbar.txtLimitLog_Max":"最大","PE.Controllers.Toolbar.txtLimitLog_Min":"最小","PE.Controllers.Toolbar.txtMatrix_1_2":"1x2空行列","PE.Controllers.Toolbar.txtMatrix_1_3":"1x3空行列","PE.Controllers.Toolbar.txtMatrix_2_1":"2x1 空行列","PE.Controllers.Toolbar.txtMatrix_2_2":"2x2 空行列","PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"空の 2x2 行列 (二重縦棒付き)","PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"空の 2x2 行列式","PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"空の 2x2 行列 (かっこ付き)","PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"空の 2x2 行列 (大かっこ付き)","PE.Controllers.Toolbar.txtMatrix_2_3":"2x3 空行列","PE.Controllers.Toolbar.txtMatrix_3_1":"3x1 空行列","PE.Controllers.Toolbar.txtMatrix_3_2":"3x2 空行列","PE.Controllers.Toolbar.txtMatrix_3_3":"3x3 空行列","PE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"基準線点","PE.Controllers.Toolbar.txtMatrix_Dots_Center":"ミッドラインドット","PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"斜めドット","PE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"縦向きドット","PE.Controllers.Toolbar.txtMatrix_Flat_Round":"疎行列 (かっこ付き)","PE.Controllers.Toolbar.txtMatrix_Flat_Square":"疎行列 (大かっこ付き)","PE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 単位行列 (0 あり)","PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"空白の対角セルを持つ 2x2 の単位行列","PE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 単位行列 (0 あり)","PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3 単位行列 (対角線上以外のセルは空白)","PE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"左右双方向矢印 (下)","PE.Controllers.Toolbar.txtOperator_ArrowD_Top":"左右双方向矢印 (上)","PE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"左に矢印 (下)","PE.Controllers.Toolbar.txtOperator_ArrowL_Top":"左に矢印 (上)","PE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"右向き矢印 (下)","PE.Controllers.Toolbar.txtOperator_ArrowR_Top":"右向き矢印 (上)","PE.Controllers.Toolbar.txtOperator_ColonEquals":"コロンイコール","PE.Controllers.Toolbar.txtOperator_Custom_1":"導出","PE.Controllers.Toolbar.txtOperator_Custom_2":"デルタ収量","PE.Controllers.Toolbar.txtOperator_Definition":"定義上等しい","PE.Controllers.Toolbar.txtOperator_DeltaEquals":"デルタ付き等号","PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"左右双方向矢印 (下)","PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"左右双方向矢印 (上)","PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"左に矢印 (下)","PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"左に矢印 (上)","PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"右向き矢印 (下)","PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"右向き矢印 (上)","PE.Controllers.Toolbar.txtOperator_EqualsEquals":"イコールイコール","PE.Controllers.Toolbar.txtOperator_MinusEquals":"マイナスイコール","PE.Controllers.Toolbar.txtOperator_PlusEquals":"プラスイコール","PE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"によって測定","PE.Controllers.Toolbar.txtRadicalCustom_1":"二次方程式の解の公式の右辺","PE.Controllers.Toolbar.txtRadicalCustom_2":"a の 2 乗と b の 2 乗の和の平方根","PE.Controllers.Toolbar.txtRadicalRoot_2":"次数付き平方根","PE.Controllers.Toolbar.txtRadicalRoot_3":"立方根","PE.Controllers.Toolbar.txtRadicalRoot_n":"度付きラジカル","PE.Controllers.Toolbar.txtRadicalSqrt":"平方根","PE.Controllers.Toolbar.txtScriptCustom_1":"x 下付き文字 y の 2 乗","PE.Controllers.Toolbar.txtScriptCustom_2":"e のマイナス i ω t 乗","PE.Controllers.Toolbar.txtScriptCustom_3":"x の 2 乗","PE.Controllers.Toolbar.txtScriptCustom_4":"Y 左上付き文字 n 左下付き文字 1","PE.Controllers.Toolbar.txtScriptSub":"下付き文字","PE.Controllers.Toolbar.txtScriptSubSup":"下付き文字 - 上付き文字","PE.Controllers.Toolbar.txtScriptSubSupLeft":"左下付き文字 - 上付き文字","PE.Controllers.Toolbar.txtScriptSup":"上付き文字","PE.Controllers.Toolbar.txtSymbol_about":"約","PE.Controllers.Toolbar.txtSymbol_additional":"補数","PE.Controllers.Toolbar.txtSymbol_aleph":"アレフ","PE.Controllers.Toolbar.txtSymbol_alpha":"アルファ","PE.Controllers.Toolbar.txtSymbol_approx":"にほぼ等しい","PE.Controllers.Toolbar.txtSymbol_ast":"アスタリスク","PE.Controllers.Toolbar.txtSymbol_beta":"ベータ","PE.Controllers.Toolbar.txtSymbol_beth":"ベート","PE.Controllers.Toolbar.txtSymbol_bullet":"箇条書きの演算子","PE.Controllers.Toolbar.txtSymbol_cap":"共通集合","PE.Controllers.Toolbar.txtSymbol_cbrt":"立方根","PE.Controllers.Toolbar.txtSymbol_cdots":"水平中央の省略記号","PE.Controllers.Toolbar.txtSymbol_celsius":"摂氏","PE.Controllers.Toolbar.txtSymbol_chi":"カイ","PE.Controllers.Toolbar.txtSymbol_cong":"にほぼ等しい","PE.Controllers.Toolbar.txtSymbol_cup":"和集合","PE.Controllers.Toolbar.txtSymbol_ddots":"下右斜めの省略記号","PE.Controllers.Toolbar.txtSymbol_degree":"度","PE.Controllers.Toolbar.txtSymbol_delta":"デルタ","PE.Controllers.Toolbar.txtSymbol_div":"除算記号","PE.Controllers.Toolbar.txtSymbol_downarrow":"下矢印","PE.Controllers.Toolbar.txtSymbol_emptyset":"空集合","PE.Controllers.Toolbar.txtSymbol_epsilon":"イプシロン","PE.Controllers.Toolbar.txtSymbol_equals":"イコール","PE.Controllers.Toolbar.txtSymbol_equiv":"と同一","PE.Controllers.Toolbar.txtSymbol_eta":"エータ","PE.Controllers.Toolbar.txtSymbol_exists":"存在します\t","PE.Controllers.Toolbar.txtSymbol_factorial":"階乗","PE.Controllers.Toolbar.txtSymbol_fahrenheit":"華氏","PE.Controllers.Toolbar.txtSymbol_forall":"全てに","PE.Controllers.Toolbar.txtSymbol_gamma":"ガンマ","PE.Controllers.Toolbar.txtSymbol_geq":"次の値より大きいか等しい","PE.Controllers.Toolbar.txtSymbol_gg":"次の値よりはるかに大きい","PE.Controllers.Toolbar.txtSymbol_greater":"次の値より大きい","PE.Controllers.Toolbar.txtSymbol_in":"属する","PE.Controllers.Toolbar.txtSymbol_inc":"増分","PE.Controllers.Toolbar.txtSymbol_infinity":"無限","PE.Controllers.Toolbar.txtSymbol_iota":"イオタ","PE.Controllers.Toolbar.txtSymbol_kappa":"カッパ","PE.Controllers.Toolbar.txtSymbol_lambda":"ラムダ","PE.Controllers.Toolbar.txtSymbol_leftarrow":"左矢印","PE.Controllers.Toolbar.txtSymbol_leftrightarrow":"左右矢印","PE.Controllers.Toolbar.txtSymbol_leq":"次の値より小さいか等しい","PE.Controllers.Toolbar.txtSymbol_less":"次の値より小さい","PE.Controllers.Toolbar.txtSymbol_ll":"次の値よりはるかに小さい","PE.Controllers.Toolbar.txtSymbol_minus":"マイナス","PE.Controllers.Toolbar.txtSymbol_mp":"マイナスプラス","PE.Controllers.Toolbar.txtSymbol_mu":"ミュー","PE.Controllers.Toolbar.txtSymbol_nabla":"ナブラ","PE.Controllers.Toolbar.txtSymbol_neq":"と等しくない","PE.Controllers.Toolbar.txtSymbol_ni":"含む","PE.Controllers.Toolbar.txtSymbol_not":"否定記号","PE.Controllers.Toolbar.txtSymbol_notexists":"存在しません","PE.Controllers.Toolbar.txtSymbol_nu":"ニュー","PE.Controllers.Toolbar.txtSymbol_o":"オミクロン","PE.Controllers.Toolbar.txtSymbol_omega":"オメガ","PE.Controllers.Toolbar.txtSymbol_partial":"偏微分","PE.Controllers.Toolbar.txtSymbol_percent":"パーセンテージ","PE.Controllers.Toolbar.txtSymbol_phi":"ファイ","PE.Controllers.Toolbar.txtSymbol_pi":"パイ","PE.Controllers.Toolbar.txtSymbol_plus":"プラス","PE.Controllers.Toolbar.txtSymbol_pm":"プラスマイナス","PE.Controllers.Toolbar.txtSymbol_propto":"に比例","PE.Controllers.Toolbar.txtSymbol_psi":"プサイ","PE.Controllers.Toolbar.txtSymbol_qdrt":"四乗根","PE.Controllers.Toolbar.txtSymbol_qed":"証明終了","PE.Controllers.Toolbar.txtSymbol_rddots":"斜め(右上)の省略記号","PE.Controllers.Toolbar.txtSymbol_rho":"ロー","PE.Controllers.Toolbar.txtSymbol_rightarrow":"右矢印","PE.Controllers.Toolbar.txtSymbol_sigma":"シグマ","PE.Controllers.Toolbar.txtSymbol_sqrt":"根号","PE.Controllers.Toolbar.txtSymbol_tau":"タウ","PE.Controllers.Toolbar.txtSymbol_therefore":"従って","PE.Controllers.Toolbar.txtSymbol_theta":"シータ","PE.Controllers.Toolbar.txtSymbol_times":"乗算記号","PE.Controllers.Toolbar.txtSymbol_uparrow":"上矢印","PE.Controllers.Toolbar.txtSymbol_upsilon":"ウプシロン","PE.Controllers.Toolbar.txtSymbol_varepsilon":"イプシロン (別形)","PE.Controllers.Toolbar.txtSymbol_varphi":"ファイ (別形)","PE.Controllers.Toolbar.txtSymbol_varpi":"パイ","PE.Controllers.Toolbar.txtSymbol_varrho":"ロー (別形)","PE.Controllers.Toolbar.txtSymbol_varsigma":"シグマ (別形)","PE.Controllers.Toolbar.txtSymbol_vartheta":"シータ (別形)","PE.Controllers.Toolbar.txtSymbol_vdots":"垂直線の省略記号","PE.Controllers.Toolbar.txtSymbol_xsi":"グザイ","PE.Controllers.Toolbar.txtSymbol_zeta":"ゼータ","PE.Controllers.Viewport.textFitPage":"スライドに合わせる","PE.Controllers.Viewport.textFitWidth":"幅に合わせる","PE.Views.Animation.str0_5":"0.5秒(さらに速く)","PE.Views.Animation.str1":"1秒(速く)","PE.Views.Animation.str2":"2秒(中)","PE.Views.Animation.str20":"20秒(非常に遅い)","PE.Views.Animation.str3":"3秒(遅い)","PE.Views.Animation.str5":"5秒(さらに遅く)","PE.Views.Animation.strDelay":"遅延","PE.Views.Animation.strDuration":"期間","PE.Views.Animation.strRepeat":"繰り返し","PE.Views.Animation.strRewind":"巻き戻し","PE.Views.Animation.strStart":"開始","PE.Views.Animation.strTrigger":"トリガー","PE.Views.Animation.textAutoPreview":"自動プレビュー","PE.Views.Animation.textMoreEffects":"その他のエフェクトを表示","PE.Views.Animation.textMoveEarlier":"先に移動する","PE.Views.Animation.textMoveLater":"後に移動する","PE.Views.Animation.textMultiple":"倍数","PE.Views.Animation.textNone":"なし","PE.Views.Animation.textNoRepeat":"(なし)","PE.Views.Animation.textOnClickOf":"クリック時:","PE.Views.Animation.textOnClickSequence":"クリックシーケンス","PE.Views.Animation.textStartAfterPrevious":"直前の動作の後","PE.Views.Animation.textStartOnClick":"クリック時","PE.Views.Animation.textStartWithPrevious":"直前の動作と同時","PE.Views.Animation.textUntilEndOfSlide":"スライドの最後まで","PE.Views.Animation.textUntilNextClick":"次のクリックまで","PE.Views.Animation.txtAddEffect":"アニメーションを追加","PE.Views.Animation.txtAnimationPane":"アニメーション ウィンドウ","PE.Views.Animation.txtParameters":"オプション","PE.Views.Animation.txtPreview":"プレビュー","PE.Views.Animation.txtSec":"秒","PE.Views.AnimationDialog.textPreviewEffect":"効果のプレビュー","PE.Views.AnimationDialog.textTitle":"その他のエフェクト","PE.Views.ChartSettings.text3dDepth":"深さ(ベースに対する割合)","PE.Views.ChartSettings.text3dHeight":"高さ(ベースに対する割合)","PE.Views.ChartSettings.text3dRotation":"3D回転","PE.Views.ChartSettings.textAdvanced":"詳細設定の表示","PE.Views.ChartSettings.textAutoscale":"自動スケーリング","PE.Views.ChartSettings.textChartType":"グラフの種類を変更","PE.Views.ChartSettings.textData":"データ","PE.Views.ChartSettings.textDefault":"デフォルト回転","PE.Views.ChartSettings.textDown":"下","PE.Views.ChartSettings.textEditData":"データを編集","PE.Views.ChartSettings.textEditLinks":"リンクの編集","PE.Views.ChartSettings.textHeight":"高さ","PE.Views.ChartSettings.textKeepRatio":"一定の比率","PE.Views.ChartSettings.textLeft":"左","PE.Views.ChartSettings.textLinkedData":"リンク済みのデータ","PE.Views.ChartSettings.textNarrow":"狭角","PE.Views.ChartSettings.textPerspective":"分析観点","PE.Views.ChartSettings.textRight":"右","PE.Views.ChartSettings.textRightAngle":"軸の直交","PE.Views.ChartSettings.textSelectData":"データの選択","PE.Views.ChartSettings.textSize":"サイズ","PE.Views.ChartSettings.textStyle":"スタイル","PE.Views.ChartSettings.textUp":"上","PE.Views.ChartSettings.textUpdateData":"データの更新","PE.Views.ChartSettings.textWiden":"広角","PE.Views.ChartSettings.textWidth":"幅","PE.Views.ChartSettings.textX":"X 回転","PE.Views.ChartSettings.textY":"Y 回転","PE.Views.ChartSettingsAdvanced.textAlt":"代替テキスト","PE.Views.ChartSettingsAdvanced.textAltDescription":"説明","PE.Views.ChartSettingsAdvanced.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","PE.Views.ChartSettingsAdvanced.textAltTitle":"タイトル","PE.Views.ChartSettingsAdvanced.textAuto":"自動","PE.Views.ChartSettingsAdvanced.textAxisCrosses":"軸との交点","PE.Views.ChartSettingsAdvanced.textAxisPos":"軸の位置","PE.Views.ChartSettingsAdvanced.textAxisTitle":"タイトル","PE.Views.ChartSettingsAdvanced.textBase":"ベース","PE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"目盛りの間","PE.Views.ChartSettingsAdvanced.textBillions":"十億","PE.Views.ChartSettingsAdvanced.textCategoryName":"カテゴリ名","PE.Views.ChartSettingsAdvanced.textCenter":"中央揃え","PE.Views.ChartSettingsAdvanced.textChartName":"チャート名","PE.Views.ChartSettingsAdvanced.textChartTitle":"チャートのタイトル","PE.Views.ChartSettingsAdvanced.textCross":"十字","PE.Views.ChartSettingsAdvanced.textCustom":"カスタム","PE.Views.ChartSettingsAdvanced.textDataLabels":"データラベル","PE.Views.ChartSettingsAdvanced.textFit":"幅に合わせる","PE.Views.ChartSettingsAdvanced.textFixed":"固定","PE.Views.ChartSettingsAdvanced.textFormat":"ラベルの書式","PE.Views.ChartSettingsAdvanced.textFrom":"基準","PE.Views.ChartSettingsAdvanced.textGeneral":"一般","PE.Views.ChartSettingsAdvanced.textGridLines":"グリッド線","PE.Views.ChartSettingsAdvanced.textHeight":"高さ","PE.Views.ChartSettingsAdvanced.textHideAxis":"軸を非表示","PE.Views.ChartSettingsAdvanced.textHigh":"高い","PE.Views.ChartSettingsAdvanced.textHorAxis":"横軸","PE.Views.ChartSettingsAdvanced.textHorAxisSec":"二次横軸","PE.Views.ChartSettingsAdvanced.textHorizontal":"水平","PE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PE.Views.ChartSettingsAdvanced.textHundreds":"百","PE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PE.Views.ChartSettingsAdvanced.textIn":"中","PE.Views.ChartSettingsAdvanced.textInnerBottom":"内部(下)","PE.Views.ChartSettingsAdvanced.textInnerTop":"内部(上)","PE.Views.ChartSettingsAdvanced.textKeepRatio":"一定の比率","PE.Views.ChartSettingsAdvanced.textLabelDist":"軸ラベルの距離","PE.Views.ChartSettingsAdvanced.textLabelInterval":"ラベルの間の間隔","PE.Views.ChartSettingsAdvanced.textLabelOptions":"ラベルのオプション","PE.Views.ChartSettingsAdvanced.textLabelPos":"ラベルの位置","PE.Views.ChartSettingsAdvanced.textLayout":"レイアウト","PE.Views.ChartSettingsAdvanced.textLeftOverlay":"左のオーバーレイ","PE.Views.ChartSettingsAdvanced.textLegendBottom":"下","PE.Views.ChartSettingsAdvanced.textLegendLeft":"左","PE.Views.ChartSettingsAdvanced.textLegendPos":"凡例","PE.Views.ChartSettingsAdvanced.textLegendRight":"右","PE.Views.ChartSettingsAdvanced.textLegendTop":"上","PE.Views.ChartSettingsAdvanced.textLines":"行","PE.Views.ChartSettingsAdvanced.textLogScale":"対数目盛","PE.Views.ChartSettingsAdvanced.textLow":"低","PE.Views.ChartSettingsAdvanced.textMajor":"メジャー","PE.Views.ChartSettingsAdvanced.textMajorMinor":"メジャーとマイナー","PE.Views.ChartSettingsAdvanced.textMajorType":"メジャーの種類","PE.Views.ChartSettingsAdvanced.textManual":"手動","PE.Views.ChartSettingsAdvanced.textMarkers":"マーカー","PE.Views.ChartSettingsAdvanced.textMarksInterval":"マークの間の間隔","PE.Views.ChartSettingsAdvanced.textMaxValue":"最大値","PE.Views.ChartSettingsAdvanced.textMillions":"百万","PE.Views.ChartSettingsAdvanced.textMinor":"マイナー","PE.Views.ChartSettingsAdvanced.textMinorType":"マイナー種類","PE.Views.ChartSettingsAdvanced.textMinValue":"最小値","PE.Views.ChartSettingsAdvanced.textNextToAxis":"軸の隣","PE.Views.ChartSettingsAdvanced.textNone":"なし","PE.Views.ChartSettingsAdvanced.textNoOverlay":"オーバーレイなし","PE.Views.ChartSettingsAdvanced.textOnTickMarks":"目盛","PE.Views.ChartSettingsAdvanced.textOut":"外","PE.Views.ChartSettingsAdvanced.textOuterTop":"外側上部","PE.Views.ChartSettingsAdvanced.textOverlay":"オーバーレイ","PE.Views.ChartSettingsAdvanced.textPlacement":"位置","PE.Views.ChartSettingsAdvanced.textPosition":"位置","PE.Views.ChartSettingsAdvanced.textReverse":"軸を反転する","PE.Views.ChartSettingsAdvanced.textRightOverlay":"右オーバーレイ","PE.Views.ChartSettingsAdvanced.textRotated":"回転された","PE.Views.ChartSettingsAdvanced.textSeparator":"日付のラベルの区切り記号","PE.Views.ChartSettingsAdvanced.textSeriesName":"系列の名前","PE.Views.ChartSettingsAdvanced.textSize":"サイズ","PE.Views.ChartSettingsAdvanced.textSmooth":"スムーズ","PE.Views.ChartSettingsAdvanced.textStraight":"直線","PE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PE.Views.ChartSettingsAdvanced.textThousands":"千","PE.Views.ChartSettingsAdvanced.textTickOptions":"ティックのオプション","PE.Views.ChartSettingsAdvanced.textTitle":"グラフ - 詳細設定","PE.Views.ChartSettingsAdvanced.textTopLeftCorner":"左上隅","PE.Views.ChartSettingsAdvanced.textTrillions":"兆","PE.Views.ChartSettingsAdvanced.textUnits":"表示単位","PE.Views.ChartSettingsAdvanced.textValue":"値","PE.Views.ChartSettingsAdvanced.textVertAxis":"縦軸","PE.Views.ChartSettingsAdvanced.textVertAxisSec":"二次縦軸","PE.Views.ChartSettingsAdvanced.textVertical":"縦","PE.Views.ChartSettingsAdvanced.textWidth":"幅","PE.Views.ChartSettingsDlg.textLeftOverlay":"左のオーバーレイ","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.advancedChartText":"チャートの詳細設定","PE.Views.DocumentHolder.advancedEquationText":"数式設定","PE.Views.DocumentHolder.advancedImageText":"画像の詳細設定","PE.Views.DocumentHolder.advancedParagraphText":"段落の詳細設定","PE.Views.DocumentHolder.advancedShapeText":"図形の詳細設定","PE.Views.DocumentHolder.advancedTableText":"テーブルの詳細設定","PE.Views.DocumentHolder.alignmentText":"配置","PE.Views.DocumentHolder.allLinearText":"すべて - 線形","PE.Views.DocumentHolder.allProfText":"すべて - プロフェッショナル","PE.Views.DocumentHolder.belowText":"下","PE.Views.DocumentHolder.btnChart":"タイトル、凡例、目盛線、データ ラベルなどのグラフ要素を追加、削除、または変更します","PE.Views.DocumentHolder.cellAlignText":"セルの縦方向の配置","PE.Views.DocumentHolder.cellText":"セル","PE.Views.DocumentHolder.centerText":"中央揃え","PE.Views.DocumentHolder.columnText":"列","PE.Views.DocumentHolder.currLinearText":"現在 - 線形","PE.Views.DocumentHolder.currProfText":"現在 - プロフェッショナル","PE.Views.DocumentHolder.deleteColumnText":"列を削除","PE.Views.DocumentHolder.deleteRowText":"行を削除","PE.Views.DocumentHolder.deleteTableText":"表を削除する","PE.Views.DocumentHolder.deleteText":"削除する","PE.Views.DocumentHolder.DepthAxis":"Z軸","PE.Views.DocumentHolder.direct270Text":"上にテキストを回転","PE.Views.DocumentHolder.direct90Text":"下にテキストを回転","PE.Views.DocumentHolder.directHText":"水平","PE.Views.DocumentHolder.directionText":"文字列の方向","PE.Views.DocumentHolder.editChartText":"データを編集","PE.Views.DocumentHolder.editHyperlinkText":"ハイパーリンクを編集","PE.Views.DocumentHolder.hideEqToolbar":"方程式ツールバーを非表示にする","PE.Views.DocumentHolder.hyperlinkText":"ハイパーリンク","PE.Views.DocumentHolder.ignoreAllSpellText":"全て無視する","PE.Views.DocumentHolder.ignoreSpellText":"無視する","PE.Views.DocumentHolder.insertColumnLeftText":"左の列","PE.Views.DocumentHolder.insertColumnRightText":"右の列","PE.Views.DocumentHolder.insertColumnText":"列の挿入","PE.Views.DocumentHolder.insertRowAboveText":"行 (上)","PE.Views.DocumentHolder.insertRowBelowText":"行(下)","PE.Views.DocumentHolder.insertRowText":"行の挿入","PE.Views.DocumentHolder.insertText":"挿入","PE.Views.DocumentHolder.langText":"言語の選択","PE.Views.DocumentHolder.latexText":"LaTeX","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.removeHyperlinkText":"ハイパーリンクを削除","PE.Views.DocumentHolder.rightText":"右","PE.Views.DocumentHolder.rowText":"行","PE.Views.DocumentHolder.selectText":"選択","PE.Views.DocumentHolder.showEqToolbar":"方程式ツールバーの表示","PE.Views.DocumentHolder.spellcheckText":"スペルチェック","PE.Views.DocumentHolder.splitCellsText":"セルを分割...","PE.Views.DocumentHolder.splitCellTitleText":"セルを分割","PE.Views.DocumentHolder.tableText":"テーブル","PE.Views.DocumentHolder.textAddHGuides":"水平方向のガイドの追加","PE.Views.DocumentHolder.textAddVGuides":"垂直方向のガイドの追加","PE.Views.DocumentHolder.textArrangeBack":"最背面ヘ移動","PE.Views.DocumentHolder.textArrangeBackward":"背面ヘ移動","PE.Views.DocumentHolder.textArrangeForward":"前面ヘ移動","PE.Views.DocumentHolder.textArrangeFront":"最前面ヘ移動","PE.Views.DocumentHolder.textAxes":"座標軸","PE.Views.DocumentHolder.textAxisTitles":"軸のタイトル","PE.Views.DocumentHolder.textBottom":"下","PE.Views.DocumentHolder.textCenter":"中央揃え","PE.Views.DocumentHolder.textChartTitle":"チャートのタイトル","PE.Views.DocumentHolder.textClearGuides":"ガイドのクリア","PE.Views.DocumentHolder.textCm":"センチ","PE.Views.DocumentHolder.textCopy":"コピーする","PE.Views.DocumentHolder.textCrop":"トリミング","PE.Views.DocumentHolder.textCropFill":"塗りつぶし","PE.Views.DocumentHolder.textCropFit":"合わせる","PE.Views.DocumentHolder.textCustom":"ユーザー設定","PE.Views.DocumentHolder.textCut":"切り取り","PE.Views.DocumentHolder.textDataLabels":"データラベル","PE.Views.DocumentHolder.textDataTable":"データ表","PE.Views.DocumentHolder.textDeleteGuide":"ガイドの削除","PE.Views.DocumentHolder.textDeleteLayout":"レイアウトの削除","PE.Views.DocumentHolder.textDeleteMaster":"マスター削除","PE.Views.DocumentHolder.textDistributeCols":"列の幅を揃える","PE.Views.DocumentHolder.textDistributeRows":"行の高さを揃える","PE.Views.DocumentHolder.textDuplicateLayout":"レイアウトの複製","PE.Views.DocumentHolder.textDuplicateSlideMaster":"スライドマスターの複製","PE.Views.DocumentHolder.textEditObject":"オブジェクトを編集","PE.Views.DocumentHolder.textEditPoints":"頂点を編集","PE.Views.DocumentHolder.textErrorBars":"誤差範囲","PE.Views.DocumentHolder.textExponential":"指数","PE.Views.DocumentHolder.textFit":"幅に合わせる","PE.Views.DocumentHolder.textFlipH":"左右に反転","PE.Views.DocumentHolder.textFlipV":"上下に反転","PE.Views.DocumentHolder.textFromFile":"ファイルから","PE.Views.DocumentHolder.textFromStorage":"ストレージから","PE.Views.DocumentHolder.textFromUrl":"URLから","PE.Views.DocumentHolder.textGridlines":"グリッド線","PE.Views.DocumentHolder.textGuides":"ガイド","PE.Views.DocumentHolder.textHorAxis":"横軸","PE.Views.DocumentHolder.textHorAxisSec":"二次横軸","PE.Views.DocumentHolder.textHorizontalMajor":"主要な水平線","PE.Views.DocumentHolder.textHorizontalMinor":"二次的な水平線","PE.Views.DocumentHolder.textInnerBottom":"内部(下)","PE.Views.DocumentHolder.textInnerTop":"内部(上)","PE.Views.DocumentHolder.textInsertLayout":"インサートレイアウト","PE.Views.DocumentHolder.textInsertSlideMaster":"スライドマスターの挿入","PE.Views.DocumentHolder.textLeftData":"左","PE.Views.DocumentHolder.textLegendPos":"凡例","PE.Views.DocumentHolder.textLinear":"線形","PE.Views.DocumentHolder.textLinearForecast":"線形予測","PE.Views.DocumentHolder.textLines":"行","PE.Views.DocumentHolder.textMovingAverage":"移動平均 (2)","PE.Views.DocumentHolder.textNextPage":"次のスライド","PE.Views.DocumentHolder.textNone":"なし","PE.Views.DocumentHolder.textNoOverlay":"オーバーレイなし","PE.Views.DocumentHolder.textOuterTop":"外側上部","PE.Views.DocumentHolder.textOverlay":"オーバーレイ","PE.Views.DocumentHolder.textPaste":"貼り付け","PE.Views.DocumentHolder.textPreserveSlideMaster":"マスターを保存","PE.Views.DocumentHolder.textPrevPage":"前のスライド","PE.Views.DocumentHolder.textRemove":"削除","PE.Views.DocumentHolder.textRemoveUnpreserveMasters":"保存しないことにしたマスターは、どのスライドでも使用されていません。
これらのマスターを削除しますか?","PE.Views.DocumentHolder.textRenameLayout":"レイアウト名を変更","PE.Views.DocumentHolder.textRenameMaster":"マスター名の変更","PE.Views.DocumentHolder.textReplace":"画像を置き換える","PE.Views.DocumentHolder.textResetCrop":"トリミングをリセット","PE.Views.DocumentHolder.textRight":"右","PE.Views.DocumentHolder.textRightOverlay":"右オーバーレイ","PE.Views.DocumentHolder.textRotate":"回転","PE.Views.DocumentHolder.textRotate270":"反時計回りに90度回転","PE.Views.DocumentHolder.textRotate90":"時計回りに90度回転","PE.Views.DocumentHolder.textRulers":"ルーラー","PE.Views.DocumentHolder.textSaveAsPicture":"画像として保存","PE.Views.DocumentHolder.textShapeAlignBottom":"下揃え","PE.Views.DocumentHolder.textShapeAlignCenter":"中央揃え\t","PE.Views.DocumentHolder.textShapeAlignLeft":"左揃え","PE.Views.DocumentHolder.textShapeAlignMiddle":"上下中央揃え","PE.Views.DocumentHolder.textShapeAlignRight":"右揃え","PE.Views.DocumentHolder.textShapeAlignTop":"上揃え","PE.Views.DocumentHolder.textShapesMerge":"図形を結合","PE.Views.DocumentHolder.textShowDataTable":"データ表の表示","PE.Views.DocumentHolder.textShowGridlines":"枠線を表示する","PE.Views.DocumentHolder.textShowGuides":"ガイドを表示","PE.Views.DocumentHolder.textShowLegendKeys":"凡例キーの表示","PE.Views.DocumentHolder.textShowUpDown":"上昇/下降バーを表示","PE.Views.DocumentHolder.textSlideSettings":"スライド設定","PE.Views.DocumentHolder.textSmartGuides":"スマートガイド","PE.Views.DocumentHolder.textSnapObjects":"スナップオブジェクトをグリッドに","PE.Views.DocumentHolder.textStandardDeviation":"標準偏差","PE.Views.DocumentHolder.textStandardError":"標準誤差","PE.Views.DocumentHolder.textStartAfterPrevious":"前回終了後のスタート","PE.Views.DocumentHolder.textStartOnClick":"クリック時","PE.Views.DocumentHolder.textStartWithPrevious":"前回の続きから","PE.Views.DocumentHolder.textTop":"上","PE.Views.DocumentHolder.textTrendline":"トレンドライン","PE.Views.DocumentHolder.textUndo":"元に戻す","PE.Views.DocumentHolder.textUpDownBars":"上下スクロールバー","PE.Views.DocumentHolder.textVertAxis":"縦軸","PE.Views.DocumentHolder.textVertAxisSec":"二次縦軸","PE.Views.DocumentHolder.textVerticalMajor":"主要の縦軸","PE.Views.DocumentHolder.textVerticalMinor":"二次的な縦軸","PE.Views.DocumentHolder.textZoomIn":"拡大","PE.Views.DocumentHolder.textZoomOut":"縮小","PE.Views.DocumentHolder.tipGuides":"ガイドを表示","PE.Views.DocumentHolder.tipIsLocked":"今、この要素が他のユーザーによって編集されています。","PE.Views.DocumentHolder.toDictionaryText":"辞書に追加","PE.Views.DocumentHolder.txtAddBottom":"下罫線を追加","PE.Views.DocumentHolder.txtAddFractionBar":"分数線を追加","PE.Views.DocumentHolder.txtAddHor":"水平線を追加","PE.Views.DocumentHolder.txtAddLB":"左下罫線を追加","PE.Views.DocumentHolder.txtAddLeft":"左罫線を追加","PE.Views.DocumentHolder.txtAddLT":"左上罫線を追加","PE.Views.DocumentHolder.txtAddRight":"右罫線を追加","PE.Views.DocumentHolder.txtAddTop":"上罫線を追加","PE.Views.DocumentHolder.txtAddVer":"縦線を追加","PE.Views.DocumentHolder.txtAlign":"整列","PE.Views.DocumentHolder.txtAlignToChar":"文字に合わせる","PE.Views.DocumentHolder.txtArrange":"順序","PE.Views.DocumentHolder.txtBackground":"背景","PE.Views.DocumentHolder.txtBorderProps":"罫線の​​プロパティ","PE.Views.DocumentHolder.txtBottom":"下","PE.Views.DocumentHolder.txtChangeLayout":"レイアウトの変更","PE.Views.DocumentHolder.txtChangeTheme":"テーマの変更","PE.Views.DocumentHolder.txtColumnAlign":"列の配置","PE.Views.DocumentHolder.txtDecreaseArg":"引数のサイズの縮小","PE.Views.DocumentHolder.txtDeleteArg":"引数を削除","PE.Views.DocumentHolder.txtDeleteBreak":"任意指定の改行を削除","PE.Views.DocumentHolder.txtDeleteChars":"囲まれた文字の削除","PE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"囲み文字と区切り文字の削除","PE.Views.DocumentHolder.txtDeleteEq":"数式を削除","PE.Views.DocumentHolder.txtDeleteGroupChar":"文字を削除","PE.Views.DocumentHolder.txtDeleteRadical":"冪根を削除する","PE.Views.DocumentHolder.txtDeleteSlide":"スライドを削除する","PE.Views.DocumentHolder.txtDestEmbed":"送信先のテーマを使用してワークブックを埋め込む","PE.Views.DocumentHolder.txtDestLink":"目的地のテーマとリンクデータを使用する","PE.Views.DocumentHolder.txtDistribHor":"水平に整列する","PE.Views.DocumentHolder.txtDistribVert":"上下に整列","PE.Views.DocumentHolder.txtDuplicateSlide":"スライドの複製","PE.Views.DocumentHolder.txtFractionLinear":"分数(横)に変更","PE.Views.DocumentHolder.txtFractionSkewed":"分数(斜め)に変更","PE.Views.DocumentHolder.txtFractionStacked":"分数(縦)に変更\t","PE.Views.DocumentHolder.txtGroup":"グループ","PE.Views.DocumentHolder.txtGroupCharOver":"テキストの上の文字","PE.Views.DocumentHolder.txtGroupCharUnder":"テキスト下の文字","PE.Views.DocumentHolder.txtHideBottom":"下罫線を表示しない","PE.Views.DocumentHolder.txtHideBottomLimit":"下極限を表示しない","PE.Views.DocumentHolder.txtHideCloseBracket":"右括弧を表示しない","PE.Views.DocumentHolder.txtHideDegree":"次数を表示しない","PE.Views.DocumentHolder.txtHideHor":"横線を表示しない","PE.Views.DocumentHolder.txtHideLB":"左(下)の線を表示しない","PE.Views.DocumentHolder.txtHideLeft":"左罫線を表示しない","PE.Views.DocumentHolder.txtHideLT":"左(上)の線を表示しない","PE.Views.DocumentHolder.txtHideOpenBracket":"左括弧を表示しない","PE.Views.DocumentHolder.txtHidePlaceholder":"プレースホルダを表示しない","PE.Views.DocumentHolder.txtHideRight":"右罫線を表示しない","PE.Views.DocumentHolder.txtHideTop":"上罫線を表示しない","PE.Views.DocumentHolder.txtHideTopLimit":"上極限を表示しない","PE.Views.DocumentHolder.txtHideVer":"縦線を表示しない","PE.Views.DocumentHolder.txtIncreaseArg":"引数のサイズの拡大","PE.Views.DocumentHolder.txtInsAudio":"オーディオの挿入","PE.Views.DocumentHolder.txtInsChart":"グラフの挿入","PE.Views.DocumentHolder.txtInsertArgAfter":"の後に引数を挿入","PE.Views.DocumentHolder.txtInsertArgBefore":"の前に引数を挿入","PE.Views.DocumentHolder.txtInsertBreak":"手動ブレークを挿入","PE.Views.DocumentHolder.txtInsertEqAfter":"後に方程式を挿入","PE.Views.DocumentHolder.txtInsertEqBefore":"前に方程式を挿入","PE.Views.DocumentHolder.txtInsImage":"画像をファイルから挿入する","PE.Views.DocumentHolder.txtInsImageUrl":"画像をURLから挿入する","PE.Views.DocumentHolder.txtInsSmartArt":"SmartArtの挿入","PE.Views.DocumentHolder.txtInsTable":"テーブルの挿入","PE.Views.DocumentHolder.txtInsVideo":"ビデオを挿入","PE.Views.DocumentHolder.txtKeepTextOnly":"テキストのみ保存","PE.Views.DocumentHolder.txtLimitChange":"制限の位置を変更する","PE.Views.DocumentHolder.txtLimitOver":"テキストの上に制限する","PE.Views.DocumentHolder.txtLimitUnder":"テキストの下に制限する","PE.Views.DocumentHolder.txtMatchBrackets":"括弧を引数の高さに合わせる","PE.Views.DocumentHolder.txtMatrixAlign":"行列の配置","PE.Views.DocumentHolder.txtMoveSlidesToEnd":"スライドを最後に移動","PE.Views.DocumentHolder.txtMoveSlidesToStart":"スライドを最初に移動","PE.Views.DocumentHolder.txtNewSlide":"新しいスライド","PE.Views.DocumentHolder.txtOverbar":"テキストの上にバー","PE.Views.DocumentHolder.txtPasteDestFormat":"宛先テーマを使用する","PE.Views.DocumentHolder.txtPastePicture":"画像","PE.Views.DocumentHolder.txtPasteSourceFormat":"元の書式付けを保存する","PE.Views.DocumentHolder.txtPressLink":"{0}キーを押しながらクリックしてリンク先を表示","PE.Views.DocumentHolder.txtPreview":"スライドショーの開始","PE.Views.DocumentHolder.txtPrintSelection":"選択範囲の印刷","PE.Views.DocumentHolder.txtRemFractionBar":"分数線の削除","PE.Views.DocumentHolder.txtRemLimit":"制限を削除する","PE.Views.DocumentHolder.txtRemoveAccentChar":"アクセント記号を削除","PE.Views.DocumentHolder.txtRemoveBar":"上/下線の削除","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":"すべてを選択","PE.Views.DocumentHolder.txtShowBottomLimit":"下限を表示する","PE.Views.DocumentHolder.txtShowCloseBracket":"右大括弧を表示","PE.Views.DocumentHolder.txtShowDegree":"次数を表示","PE.Views.DocumentHolder.txtShowOpenBracket":"左大括弧を表示","PE.Views.DocumentHolder.txtShowPlaceholder":"プレースホルダーの表示","PE.Views.DocumentHolder.txtShowTopLimit":"上限を表示する","PE.Views.DocumentHolder.txtSlide":"スライド","PE.Views.DocumentHolder.txtSlideHide":"スライドを非表示にする","PE.Views.DocumentHolder.txtSourceEmbed":"元の書式を保持&ワークブックを埋め込む","PE.Views.DocumentHolder.txtSourceLink":"ソース形式とリンクデータを維持する","PE.Views.DocumentHolder.txtStretchBrackets":"括弧の拡大","PE.Views.DocumentHolder.txtTop":"トップ","PE.Views.DocumentHolder.txtUnderbar":"テキストの下にバー","PE.Views.DocumentHolder.txtUngroup":"グループ解除","PE.Views.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。
本当に続けてよろしいですか?","PE.Views.DocumentHolder.unicodeText":"Unicode","PE.Views.DocumentHolder.vertAlignText":"垂直方向の配置","PE.Views.DocumentPreview.goToSlideText":"スライドへジャンプ","PE.Views.DocumentPreview.slideIndexText":"スライド {0}/{1}","PE.Views.DocumentPreview.txtClose":"スライドショーを閉じる","PE.Views.DocumentPreview.txtDraw":"描画","PE.Views.DocumentPreview.txtEndSlideshow":"スライドショーの終了","PE.Views.DocumentPreview.txtEraser":"消しゴム","PE.Views.DocumentPreview.txtEraseScreen":"画面をクリア","PE.Views.DocumentPreview.txtExitFullScreen":"全画面表示の終了","PE.Views.DocumentPreview.txtFinalMessage":"スライドプレビューの終わりです。終了するには、クリックしてください。","PE.Views.DocumentPreview.txtFullScreen":"全画面表示","PE.Views.DocumentPreview.txtHighlighter":"蛍光ペン","PE.Views.DocumentPreview.txtInkColor":"インクの色","PE.Views.DocumentPreview.txtNext":"次のスライド","PE.Views.DocumentPreview.txtPageNumInvalid":"スライド番号が正しくありません。","PE.Views.DocumentPreview.txtPause":"プレゼンテーションの一時停止","PE.Views.DocumentPreview.txtPen":"ペン","PE.Views.DocumentPreview.txtPlay":"プレゼンテーションの開始","PE.Views.DocumentPreview.txtPrev":"前のスライド","PE.Views.DocumentPreview.txtReset":"リセット","PE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","PE.Views.FileMenu.btnAboutCaption":"詳細情報","PE.Views.FileMenu.btnBackCaption":"ファイルの場所を開く","PE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","PE.Views.FileMenu.btnCloseMenuCaption":"戻る","PE.Views.FileMenu.btnCreateNewCaption":"新規作成","PE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","PE.Views.FileMenu.btnExitCaption":"閉じる","PE.Views.FileMenu.btnFileOpenCaption":"開く","PE.Views.FileMenu.btnHelpCaption":"ヘルプ","PE.Views.FileMenu.btnHistoryCaption":"バージョン履歴","PE.Views.FileMenu.btnInfoCaption":"詳細情報","PE.Views.FileMenu.btnPrintCaption":"印刷する","PE.Views.FileMenu.btnProtectCaption":"保護する","PE.Views.FileMenu.btnRecentFilesCaption":"最近開いた","PE.Views.FileMenu.btnRenameCaption":"名前を変更","PE.Views.FileMenu.btnReturnCaption":"プレゼンテーションに戻る","PE.Views.FileMenu.btnRightsCaption":"アクセス権","PE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","PE.Views.FileMenu.btnSaveCaption":"保存する","PE.Views.FileMenu.btnSaveCopyAsCaption":"コピーを別名で保存する","PE.Views.FileMenu.btnSettingsCaption":"詳細設定","PE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","PE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","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.txtAddProperty":"プロパティの追加","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.txtCommon":"共通","PE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成済み","PE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"ドキュメントのプロパティ","PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","PE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","PE.Views.FileMenuPanels.DocumentInfo.txtOwner":"所有者","PE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"位置","PE.Views.FileMenuPanels.DocumentInfo.txtPresentationInfo":"プレゼンテーション情報","PE.Views.FileMenuPanels.DocumentInfo.txtProperties":"プロパティ","PE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"このタイトルのプロパティはすでに存在します","PE.Views.FileMenuPanels.DocumentInfo.txtRights":"権利を有する者","PE.Views.FileMenuPanels.DocumentInfo.txtSubject":"件名","PE.Views.FileMenuPanels.DocumentInfo.txtTags":"タグ","PE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","PE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロード済み","PE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","PE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス権","PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス許可の変更","PE.Views.FileMenuPanels.DocumentRights.txtRights":"権利を有する者","PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"警告","PE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"パスワード付きで","PE.Views.FileMenuPanels.ProtectDoc.strProtect":"プレゼンテーションを保護する","PE.Views.FileMenuPanels.ProtectDoc.strSignature":"署名付きで","PE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有効な署名がプレゼンテーションに追加されました。
プレゼンテーションは編集から保護されています。","PE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"
目に見えないデジタル署名を追加することで、プレゼンテーションの完全性を確保する。","PE.Views.FileMenuPanels.ProtectDoc.txtEdit":"プレゼンテーションの編集","PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"編集すると、プレゼンテーションから署名が削除されます。
続行しますか?","PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"このプレゼンテーションはパスワードで保護されています。","PE.Views.FileMenuPanels.ProtectDoc.txtProtectPresentation":"このプレゼンテーションをパスワードで暗号化する","PE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有効な署名がプレゼンテーションに追加されました。 プレゼンテーションは編集から保護されています。","PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"プレゼンテーションのデジタル署名の一部が無効であるか、認証できませんでした。 プレゼンテーションは編集から保護されています。","PE.Views.FileMenuPanels.ProtectDoc.txtView":"署名の表示","PE.Views.FileMenuPanels.Settings.okButtonText":"適用する","PE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同編集モード","PE.Views.FileMenuPanels.Settings.strFast":"高速","PE.Views.FileMenuPanels.Settings.strFontRender":"フォントヒンティング","PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"大文字がある言葉を無視する","PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"数字のある単語は無視する","PE.Views.FileMenuPanels.Settings.strMacrosSettings":"マクロの設定","PE.Views.FileMenuPanels.Settings.strPasteButton":"貼り付けるときに[貼り付けオプション]ボタンを表示する","PE.Views.FileMenuPanels.Settings.strRTLSupport":"RTLインターフェース","PE.Views.FileMenuPanels.Settings.strShowOthersChanges":"他のユーザーの変更点を表示する","PE.Views.FileMenuPanels.Settings.strStrict":"厳格","PE.Views.FileMenuPanels.Settings.strTabStyle":"タブのスタイル","PE.Views.FileMenuPanels.Settings.strTheme":"インターフェイスのテーマ","PE.Views.FileMenuPanels.Settings.strUnit":"測定単位","PE.Views.FileMenuPanels.Settings.strZoom":"デフォルトのズーム値","PE.Views.FileMenuPanels.Settings.text10Minutes":"10分毎","PE.Views.FileMenuPanels.Settings.text30Minutes":"30分毎","PE.Views.FileMenuPanels.Settings.text5Minutes":"5分毎","PE.Views.FileMenuPanels.Settings.text60Minutes":"1時間毎","PE.Views.FileMenuPanels.Settings.textAlignGuides":"配置ガイド","PE.Views.FileMenuPanels.Settings.textAutoRecover":"自動回復情報を保存する","PE.Views.FileMenuPanels.Settings.textAutoSave":"オートセーブ","PE.Views.FileMenuPanels.Settings.textDisabled":"無効","PE.Views.FileMenuPanels.Settings.textFill":"塗りつぶし","PE.Views.FileMenuPanels.Settings.textForceSave":"中間バージョンの保存","PE.Views.FileMenuPanels.Settings.textLine":"線","PE.Views.FileMenuPanels.Settings.textMinute":"1分毎","PE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"詳細設定","PE.Views.FileMenuPanels.Settings.txtAll":"全て表示","PE.Views.FileMenuPanels.Settings.txtAppearance":"外観","PE.Views.FileMenuPanels.Settings.txtAutoCorrect":"オートコレクト設定…","PE.Views.FileMenuPanels.Settings.txtCacheMode":"デフォルトのキャッシュモード","PE.Views.FileMenuPanels.Settings.txtCm":"センチ","PE.Views.FileMenuPanels.Settings.txtCollaboration":"共同編集","PE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","PE.Views.FileMenuPanels.Settings.txtEditingSaving":"編集と保存","PE.Views.FileMenuPanels.Settings.txtFastTip":"リアルタイムの共同編集 すべての変更は自動的に保存されます","PE.Views.FileMenuPanels.Settings.txtFitSlide":"スライドに合わせる","PE.Views.FileMenuPanels.Settings.txtFitWidth":"幅に合わせる","PE.Views.FileMenuPanels.Settings.txtHieroglyphs":"漢字","PE.Views.FileMenuPanels.Settings.txtInch":"インチ","PE.Views.FileMenuPanels.Settings.txtLast":"最後に表示","PE.Views.FileMenuPanels.Settings.txtLastUsed":"最後に使用した項目","PE.Views.FileMenuPanels.Settings.txtMac":"OS Xとして","PE.Views.FileMenuPanels.Settings.txtNative":"ネイティブ","PE.Views.FileMenuPanels.Settings.txtProofing":"校正","PE.Views.FileMenuPanels.Settings.txtPt":"ポイント","PE.Views.FileMenuPanels.Settings.txtQuickPrint":"クイックプリントボタンをエディタヘッダーに表示","PE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","PE.Views.FileMenuPanels.Settings.txtRunMacros":"全てを有効にする","PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"通知を使用せずにすべてのマクロを有効にする","PE.Views.FileMenuPanels.Settings.txtScreenReader":"スクリーンリーダーのサポートをオンにする","PE.Views.FileMenuPanels.Settings.txtSpellCheck":"スペルチェック","PE.Views.FileMenuPanels.Settings.txtStopMacros":"全てを無効にする","PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"通知を使用せずにすべてのマクロを無効にする","PE.Views.FileMenuPanels.Settings.txtStrictTip":"「保存」ボタンを使用して、あなたや他人が行った変更を同期させることができます","PE.Views.FileMenuPanels.Settings.txtTabBack":"ツールバーの色をタブの背景に使う","PE.Views.FileMenuPanels.Settings.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーを使用します","PE.Views.FileMenuPanels.Settings.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","PE.Views.FileMenuPanels.Settings.txtWarnMacros":"通知を表示する","PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"通知を使用してすべてのマクロを無効にする","PE.Views.FileMenuPanels.Settings.txtWin":"Windowsとして","PE.Views.FileMenuPanels.Settings.txtWorkspace":"ワークスペース","PE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","PE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","PE.Views.GridSettings.textCm":"センチ","PE.Views.GridSettings.textCustom":"ユーザー設定","PE.Views.GridSettings.textSpacing":"間隔","PE.Views.GridSettings.textTitle":"グリッド設定","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.textFormat":"フォーマット","PE.Views.HeaderFooterDialog.textHFTitle":"ヘッダー/フッター設定","PE.Views.HeaderFooterDialog.textLang":"言語","PE.Views.HeaderFooterDialog.textNotes":"ノートと配布資料","PE.Views.HeaderFooterDialog.textNotTitle":"タイトルスライドに表示しない","PE.Views.HeaderFooterDialog.textPageNum":"ページ番号","PE.Views.HeaderFooterDialog.textPreview":"プレビュー","PE.Views.HeaderFooterDialog.textSlide":"スライド","PE.Views.HeaderFooterDialog.textSlideNum":"スライド番号","PE.Views.HeaderFooterDialog.textUpdate":"自動的に更新","PE.Views.HeaderFooterDialog.txtFooter":"フッター","PE.Views.HeaderFooterDialog.txtHeader":"ヘッダー","PE.Views.HyperlinkSettingsDialog.strDisplay":"表示する","PE.Views.HyperlinkSettingsDialog.strLinkTo":"リンク先","PE.Views.HyperlinkSettingsDialog.textDefault":"選択されたテキストフラグメント","PE.Views.HyperlinkSettingsDialog.textEmptyDesc":"ここでキャプションを挿入してください。","PE.Views.HyperlinkSettingsDialog.textEmptyLink":"ここでリンクを挿入してください。","PE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"ここでツールチップを挿入してください。","PE.Views.HyperlinkSettingsDialog.textExternalLink":"外部リンク","PE.Views.HyperlinkSettingsDialog.textInternalLink":"このプレゼンテーションのスライド","PE.Views.HyperlinkSettingsDialog.textSelectFile":"ファイル選択","PE.Views.HyperlinkSettingsDialog.textSlides":"スライド","PE.Views.HyperlinkSettingsDialog.textTipText":"ヒントのテキスト:","PE.Views.HyperlinkSettingsDialog.textTitle":"ハイパーリンクの設定","PE.Views.HyperlinkSettingsDialog.txtEmpty":"このフィールドは必須項目です","PE.Views.HyperlinkSettingsDialog.txtFirst":"最初のスライド","PE.Views.HyperlinkSettingsDialog.txtLast":"最後のスライド","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.HyperlinkSettingsDialog.txtUrlPlaceholder":"ウェブアドレスを入力するか、ファイルを選択してください","PE.Views.ImageSettings.strTransparency":"不透明度","PE.Views.ImageSettings.textAdvanced":"詳細設定の表示","PE.Views.ImageSettings.textCrop":"トリミング","PE.Views.ImageSettings.textCropFill":"塗りつぶし","PE.Views.ImageSettings.textCropFit":"合わせる","PE.Views.ImageSettings.textCropToShape":"図形に合わせてトリミング","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.textRecentlyUsed":"最近使った項目","PE.Views.ImageSettings.textResetCrop":"トリミングをリセット","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.textAltTitle":"タイトル","PE.Views.ImageSettingsAdvanced.textAngle":"角度","PE.Views.ImageSettingsAdvanced.textCenter":"中央揃え","PE.Views.ImageSettingsAdvanced.textFlipped":"反転","PE.Views.ImageSettingsAdvanced.textFrom":"基準","PE.Views.ImageSettingsAdvanced.textGeneral":"一般","PE.Views.ImageSettingsAdvanced.textHeight":"高さ","PE.Views.ImageSettingsAdvanced.textHorizontal":"水平","PE.Views.ImageSettingsAdvanced.textHorizontally":"水平に","PE.Views.ImageSettingsAdvanced.textImageName":"画像名","PE.Views.ImageSettingsAdvanced.textKeepRatio":"一定の比率","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.textTopLeftCorner":"左上隅","PE.Views.ImageSettingsAdvanced.textVertical":"縦","PE.Views.ImageSettingsAdvanced.textVertically":"縦に","PE.Views.ImageSettingsAdvanced.textWidth":"幅","PE.Views.LeftMenu.ariaLeftMenu":"左メニュー","PE.Views.LeftMenu.tipAbout":"詳細情報","PE.Views.LeftMenu.tipChat":"チャット","PE.Views.LeftMenu.tipComments":"コメント","PE.Views.LeftMenu.tipPlugins":"プラグイン","PE.Views.LeftMenu.tipSearch":"検索","PE.Views.LeftMenu.tipSlides":"スライド","PE.Views.LeftMenu.tipSupport":"フィードバック&サポート","PE.Views.LeftMenu.tipTitles":"タイトル","PE.Views.LeftMenu.txtDeveloper":"開発者モード","PE.Views.LeftMenu.txtEditor":"プレゼンテーションエディター","PE.Views.LeftMenu.txtLimit":"制限されたアクセス","PE.Views.LeftMenu.txtTrial":"試用モード","PE.Views.LeftMenu.txtTrialDev":"試用開発者モード","PE.Views.ParagraphSettings.strLineHeight":"行間","PE.Views.ParagraphSettings.strParagraphSpacing":"段落の間隔","PE.Views.ParagraphSettings.strSpacingAfter":"後","PE.Views.ParagraphSettings.strSpacingBefore":"前","PE.Views.ParagraphSettings.textAdvanced":"詳細設定の表示","PE.Views.ParagraphSettings.textAt":"に","PE.Views.ParagraphSettings.textAtLeast":"最小限","PE.Views.ParagraphSettings.textAuto":"倍数","PE.Views.ParagraphSettings.textExact":"固定値","PE.Views.ParagraphSettings.txtAutoText":"オート","PE.Views.ParagraphSettingsAdvanced.noTabs":"指定されたタブは、このフィールドに表示されます。","PE.Views.ParagraphSettingsAdvanced.strAllCaps":"すべて大文字","PE.Views.ParagraphSettingsAdvanced.strDirection":"方向","PE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"二重取り消し線","PE.Views.ParagraphSettingsAdvanced.strIndent":"インデント","PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"行間","PE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"右","PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"後","PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"前","PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"特殊","PE.Views.ParagraphSettingsAdvanced.strParagraphFont":"フォント","PE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"インデント&行間隔","PE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型英大文字\t","PE.Views.ParagraphSettingsAdvanced.strSpacing":"間隔","PE.Views.ParagraphSettingsAdvanced.strStrike":"取り消し線","PE.Views.ParagraphSettingsAdvanced.strSubscript":"下付き文字","PE.Views.ParagraphSettingsAdvanced.strSuperscript":"上付き文字","PE.Views.ParagraphSettingsAdvanced.strTabs":"タブ","PE.Views.ParagraphSettingsAdvanced.textAlign":"配置","PE.Views.ParagraphSettingsAdvanced.textAuto":"倍数","PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"文字間隔","PE.Views.ParagraphSettingsAdvanced.textDefault":"既定のタブ","PE.Views.ParagraphSettingsAdvanced.textDirLtr":"左から右へ","PE.Views.ParagraphSettingsAdvanced.textDirRtl":"右から左へ","PE.Views.ParagraphSettingsAdvanced.textEffects":"エフェクト","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":"中央揃え","PE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","PE.Views.ParagraphSettingsAdvanced.textTabPosition":"タブの位置","PE.Views.ParagraphSettingsAdvanced.textTabRight":"右","PE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 詳細設定","PE.Views.ParagraphSettingsAdvanced.txtAutoText":"オート","PE.Views.PrintWithPreview.txtAllPages":"全てのスライド","PE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"白黒印刷","PE.Views.PrintWithPreview.txtBothSides":"両面印刷","PE.Views.PrintWithPreview.txtBothSidesLongDesc":"長辺を綴じる","PE.Views.PrintWithPreview.txtBothSidesShortDesc":"短辺を綴じる","PE.Views.PrintWithPreview.txtColorPrinting":"カラー印刷","PE.Views.PrintWithPreview.txtCopies":"コピー","PE.Views.PrintWithPreview.txtCurrentPage":"現在のスライド","PE.Views.PrintWithPreview.txtCustom":"カスタム","PE.Views.PrintWithPreview.txtCustomPages":"カスタム印刷","PE.Views.PrintWithPreview.txtEmptyTable":"プレゼンテーションが空白のため、印刷できるスライドがありません。","PE.Views.PrintWithPreview.txtHeaderFooterSettings":"ヘッダー/フッター設定","PE.Views.PrintWithPreview.txtOf":"{0}から","PE.Views.PrintWithPreview.txtOneSide":"片面印刷","PE.Views.PrintWithPreview.txtOneSideDesc":"ページの片面のみを印刷する","PE.Views.PrintWithPreview.txtPage":"スライド","PE.Views.PrintWithPreview.txtPageNumInvalid":"スライド番号無効","PE.Views.PrintWithPreview.txtPages":"スライド","PE.Views.PrintWithPreview.txtPaperSize":"用紙サイズ","PE.Views.PrintWithPreview.txtPrint":"印刷","PE.Views.PrintWithPreview.txtPrinter":"プリンター","PE.Views.PrintWithPreview.txtPrinterNotSelected":"プリンターが選択されていない","PE.Views.PrintWithPreview.txtPrintersNotFound":"プリンターが見つかりません","PE.Views.PrintWithPreview.txtPrintPdf":"PDFに印刷","PE.Views.PrintWithPreview.txtPrintRange":"印刷範囲\t","PE.Views.PrintWithPreview.txtPrintSides":"両面印刷","PE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"システムダイアログで印刷する","PE.Views.PrintWithPreview.txtWaitingForPrinters":"プリンターを待っています","PE.Views.RightMenu.ariaRightMenu":"右メニュー","PE.Views.RightMenu.txtChartSettings":"グラフの設定","PE.Views.RightMenu.txtImageSettings":"画像の設定","PE.Views.RightMenu.txtParagraphSettings":"段落の設定","PE.Views.RightMenu.txtShapeSettings":"図形の設定","PE.Views.RightMenu.txtSignatureSettings":"署名の設定","PE.Views.RightMenu.txtSlideSettings":"スライド設定","PE.Views.RightMenu.txtTableSettings":"表の設定","PE.Views.RightMenu.txtTextArtSettings":"テキストアートの設定","PE.Views.ShapeSettings.strBackground":"背景色","PE.Views.ShapeSettings.strChange":"図形の変更","PE.Views.ShapeSettings.strColor":"色","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.strType":"タイプ","PE.Views.ShapeSettings.textAdjustShadow":"影の調整","PE.Views.ShapeSettings.textAdvanced":"詳細設定の表示","PE.Views.ShapeSettings.textAngle":"角度","PE.Views.ShapeSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","PE.Views.ShapeSettings.textColor":"色で塗りつぶし","PE.Views.ShapeSettings.textDirection":"方向","PE.Views.ShapeSettings.textEditPoints":"頂点の編集","PE.Views.ShapeSettings.textEditShape":"図形の編集","PE.Views.ShapeSettings.textEmptyPattern":"パターンなし","PE.Views.ShapeSettings.textEyedropper":"スポイト","PE.Views.ShapeSettings.textFlip":"反転する","PE.Views.ShapeSettings.textFromFile":"ファイルから","PE.Views.ShapeSettings.textFromStorage":"ストレージから","PE.Views.ShapeSettings.textFromUrl":"URLから","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.textMoreColors":"その他の色","PE.Views.ShapeSettings.textNoFill":"塗りつぶしなし","PE.Views.ShapeSettings.textNoShadow":"影なし","PE.Views.ShapeSettings.textPatternFill":"パターン","PE.Views.ShapeSettings.textPosition":"位置","PE.Views.ShapeSettings.textRadial":"ラジアル","PE.Views.ShapeSettings.textRecentlyUsed":"最近使った項目","PE.Views.ShapeSettings.textRotate90":"90度回転","PE.Views.ShapeSettings.textRotation":"回転","PE.Views.ShapeSettings.textSelectImage":"画像の選択","PE.Views.ShapeSettings.textSelectTexture":"選択","PE.Views.ShapeSettings.textShadow":"影","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":"キャンバス","PE.Views.ShapeSettings.txtCarton":"カートン","PE.Views.ShapeSettings.txtDarkFabric":"ダークファブリック","PE.Views.ShapeSettings.txtGrain":"粒子","PE.Views.ShapeSettings.txtGranite":"花崗岩","PE.Views.ShapeSettings.txtGreyPaper":"グレー紙","PE.Views.ShapeSettings.txtKnit":"ニット","PE.Views.ShapeSettings.txtLeather":"レザー","PE.Views.ShapeSettings.txtNoBorders":"線なし","PE.Views.ShapeSettings.txtOffsetBottom":"オフセット:下","PE.Views.ShapeSettings.txtOffsetBottomLeft":"オフセット:左下","PE.Views.ShapeSettings.txtOffsetBottomRight":"オフセット:右下","PE.Views.ShapeSettings.txtOffsetCenter":"オフセット:中央","PE.Views.ShapeSettings.txtOffsetLeft":"オフセット:左","PE.Views.ShapeSettings.txtOffsetRight":"オフセット:右","PE.Views.ShapeSettings.txtOffsetTop":"オフセット:上","PE.Views.ShapeSettings.txtOffsetTopLeft":"オフセット:左上","PE.Views.ShapeSettings.txtOffsetTopRight":"オフセット:右上","PE.Views.ShapeSettings.txtPapyrus":"パピルス","PE.Views.ShapeSettings.txtWood":"木","PE.Views.ShapeSettingsAdvanced.strColumns":"列","PE.Views.ShapeSettingsAdvanced.strMargins":"テキストの埋め込み文字","PE.Views.ShapeSettingsAdvanced.textAlt":"代替テキスト","PE.Views.ShapeSettingsAdvanced.textAltDescription":"説明","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":"斜角","PE.Views.ShapeSettingsAdvanced.textBottom":"下","PE.Views.ShapeSettingsAdvanced.textCapType":"線の先端","PE.Views.ShapeSettingsAdvanced.textCenter":"中央揃え","PE.Views.ShapeSettingsAdvanced.textColNumber":"列数","PE.Views.ShapeSettingsAdvanced.textEndSize":"終点のサイズ","PE.Views.ShapeSettingsAdvanced.textEndStyle":"終点のスタイル","PE.Views.ShapeSettingsAdvanced.textFlat":"フラット","PE.Views.ShapeSettingsAdvanced.textFlipped":"反転","PE.Views.ShapeSettingsAdvanced.textFrom":"基準","PE.Views.ShapeSettingsAdvanced.textGeneral":"一般","PE.Views.ShapeSettingsAdvanced.textHeight":"高さ","PE.Views.ShapeSettingsAdvanced.textHorizontal":"水平","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.textPlacement":"位置","PE.Views.ShapeSettingsAdvanced.textPosition":"位置","PE.Views.ShapeSettingsAdvanced.textResizeFit":"テキストに合わせて図形を調整","PE.Views.ShapeSettingsAdvanced.textRight":"右","PE.Views.ShapeSettingsAdvanced.textRotation":"回転","PE.Views.ShapeSettingsAdvanced.textRound":"円い","PE.Views.ShapeSettingsAdvanced.textShapeName":"図形名","PE.Views.ShapeSettingsAdvanced.textShrink":"はみ出す場合だけ自動調整する","PE.Views.ShapeSettingsAdvanced.textSize":"サイズ","PE.Views.ShapeSettingsAdvanced.textSpacing":"列の間隔","PE.Views.ShapeSettingsAdvanced.textSquare":"四角","PE.Views.ShapeSettingsAdvanced.textTextBox":"テキストボックス","PE.Views.ShapeSettingsAdvanced.textTitle":"図形 - 詳細設定","PE.Views.ShapeSettingsAdvanced.textTop":"トップ","PE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"左上隅","PE.Views.ShapeSettingsAdvanced.textVertical":"縦","PE.Views.ShapeSettingsAdvanced.textVertically":"縦に","PE.Views.ShapeSettingsAdvanced.textWeightArrows":"太さ&矢印","PE.Views.ShapeSettingsAdvanced.textWidth":"幅","PE.Views.ShapeSettingsAdvanced.txtNone":"なし","PE.Views.SignatureSettings.notcriticalErrorTitle":"警告","PE.Views.SignatureSettings.strDelete":"署名の削除","PE.Views.SignatureSettings.strDetails":"署名の詳細","PE.Views.SignatureSettings.strInvalid":"無効な署名","PE.Views.SignatureSettings.strSign":"署名する","PE.Views.SignatureSettings.strSignature":"署名","PE.Views.SignatureSettings.strValid":"有効な署名","PE.Views.SignatureSettings.txtContinueEditing":"無視して編集する","PE.Views.SignatureSettings.txtEditWarning":"編集すると、プレゼンテーションから署名が削除されます。
続行しますか?","PE.Views.SignatureSettings.txtRemoveWarning":"この署名を削除しますか?
この操作は元に戻せません。","PE.Views.SignatureSettings.txtSigned":"有効な署名がプレゼンテーションに追加されました。 プレゼンテーションは編集から保護されています。","PE.Views.SignatureSettings.txtSignedInvalid":"プレゼンテーションのデジタル署名の一部が無効であるか、認証できませんでした。 プレゼンテーションは編集から保護されています。","PE.Views.SlideMasterTab.capAddLayout":"レイアウトの追加","PE.Views.SlideMasterTab.capAddSlideMaster":"スライドマスターの追加","PE.Views.SlideMasterTab.capCloseMaster":"マスターを閉じる","PE.Views.SlideMasterTab.capInsertPlaceholder":"プレースホルダーの挿入","PE.Views.SlideMasterTab.textChart":"チャート","PE.Views.SlideMasterTab.textContent":"コンテンツ","PE.Views.SlideMasterTab.textContentVertical":"コンテンツ(縦型)","PE.Views.SlideMasterTab.textFooters":"フッター","PE.Views.SlideMasterTab.textPicture":"画像","PE.Views.SlideMasterTab.textSmartArt":"SmartArt","PE.Views.SlideMasterTab.textTable":"表","PE.Views.SlideMasterTab.textText":"テキスト","PE.Views.SlideMasterTab.textTextVertical":"テキスト(縦)","PE.Views.SlideMasterTab.textTitle":"タイトル","PE.Views.SlideMasterTab.tipAddLayout":"レイアウトの追加","PE.Views.SlideMasterTab.tipAddSlideMaster":"スライドマスターの追加","PE.Views.SlideMasterTab.tipCloseMaster":"マスターを閉じる","PE.Views.SlideMasterTab.tipInsertChartPlaceholder":"チャート・プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertContentPlaceholder":"コンテンツ・プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertContentVerticalPlaceholder":"コンテンツ(垂直)プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertPicturePlaceholder":"画像プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertPlaceholder":"プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertSmartArtPlaceholder":"SmartArtプレースホルダの挿入","PE.Views.SlideMasterTab.tipInsertTablePlaceholder":"テーブル・プレースホルダの挿入","PE.Views.SlideMasterTab.tipInsertTextPlaceholder":"テキストプレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertTextVerticalPlaceholder":"テキスト(縦書き)プレースホルダーの挿入","PE.Views.SlideSettings.strApplyAllSlides":"全てのスライドに適用する","PE.Views.SlideSettings.strBackground":"背景色","PE.Views.SlideSettings.strBackgroundGraphics":"背景グラフィックを表示する","PE.Views.SlideSettings.strBackgroundReset":"背景をリセットする","PE.Views.SlideSettings.strColor":"色","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":"方向","PE.Views.SlideSettings.textEmptyPattern":"パターンなし","PE.Views.SlideSettings.textFromFile":"ファイルから","PE.Views.SlideSettings.textFromStorage":"ストレージから","PE.Views.SlideSettings.textFromUrl":"URLから","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":"キャンバス","PE.Views.SlideSettings.txtCarton":"カートン","PE.Views.SlideSettings.txtDarkFabric":"ダークファブリック","PE.Views.SlideSettings.txtGrain":"粒子","PE.Views.SlideSettings.txtGranite":"花崗岩","PE.Views.SlideSettings.txtGreyPaper":"グレー紙","PE.Views.SlideSettings.txtKnit":"ニット","PE.Views.SlideSettings.txtLeather":"レザー","PE.Views.SlideSettings.txtPapyrus":"パピルス","PE.Views.SlideSettings.txtWood":"木","PE.Views.SlideshowSettings.textLoop":"Escキーが押されるまで繰り返す","PE.Views.SlideshowSettings.textTitle":"設定を表示","PE.Views.SlideSizeSettings.strLandscape":"横向き","PE.Views.SlideSizeSettings.strPortrait":"縦向き","PE.Views.SlideSizeSettings.textHeight":"高さ","PE.Views.SlideSizeSettings.textSlideOrientation":"スライドの向き","PE.Views.SlideSizeSettings.textSlideSize":"スライドのサイズ","PE.Views.SlideSizeSettings.textTitle":"スライドのサイズを設定","PE.Views.SlideSizeSettings.textWidth":"幅","PE.Views.SlideSizeSettings.txt35":"35mmのスライド","PE.Views.SlideSizeSettings.txtA3":"A3 297x420 mm","PE.Views.SlideSizeSettings.txtA4":"A4 210 x 297 mm","PE.Views.SlideSizeSettings.txtB4":"B4(ICO)(250x353 mm)","PE.Views.SlideSizeSettings.txtB5":"B5(ICO)(176x250 mm)","PE.Views.SlideSizeSettings.txtBanner":"バナー","PE.Views.SlideSizeSettings.txtCustom":"カスタム","PE.Views.SlideSizeSettings.txtLedger":"帳簿用紙(11x17インチ)","PE.Views.SlideSizeSettings.txtLetter":"便箋 (8.5x11インチ)","PE.Views.SlideSizeSettings.txtOverhead":"オーバーヘッド","PE.Views.SlideSizeSettings.txtSlideNum":"スライド番号","PE.Views.SlideSizeSettings.txtStandard":"標準(4:3)","PE.Views.SlideSizeSettings.txtWidescreen":"ワイドスクリーン","PE.Views.Statusbar.goToPageText":"スライドへジャンプ","PE.Views.Statusbar.pageIndexText":"スライド {0}/{1}","PE.Views.Statusbar.textShowBegin":"先頭から表示する","PE.Views.Statusbar.textShowCurrent":"現在のスライドからの表示","PE.Views.Statusbar.textShowPresenterView":"発表者ビューを表示","PE.Views.Statusbar.textSlideMaster":"スライドマスター","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.tipZoomIn":"ズームイン","PE.Views.Statusbar.tipZoomOut":"ズームアウト","PE.Views.Statusbar.txtPageNumInvalid":"スライド番号が正しくありません。","PE.Views.TableSettings.deleteColumnText":"列を削除","PE.Views.TableSettings.deleteRowText":"行を削除","PE.Views.TableSettings.deleteTableText":"表を削除する","PE.Views.TableSettings.insertColumnLeftText":"左に列を挿入","PE.Views.TableSettings.insertColumnRightText":"右に列を挿入","PE.Views.TableSettings.insertRowAboveText":"上に行を挿入","PE.Views.TableSettings.insertRowBelowText":"下に行を挿入","PE.Views.TableSettings.mergeCellsText":"セルの結合","PE.Views.TableSettings.selectCellText":"セルの選択","PE.Views.TableSettings.selectColumnText":"列の選択","PE.Views.TableSettings.selectRowText":"行の選択","PE.Views.TableSettings.selectTableText":"テーブルの選択","PE.Views.TableSettings.splitCellsText":"セルを分割...","PE.Views.TableSettings.splitCellTitleText":"セルの分割","PE.Views.TableSettings.textAdvanced":"詳細設定の表示","PE.Views.TableSettings.textBackColor":"背景色","PE.Views.TableSettings.textBanded":"縞模様","PE.Views.TableSettings.textBorderColor":"色","PE.Views.TableSettings.textBorders":"罫線のスタイル","PE.Views.TableSettings.textCellSize":"セルのサイズ","PE.Views.TableSettings.textColumns":"列","PE.Views.TableSettings.textDistributeCols":"列の幅を揃える","PE.Views.TableSettings.textDistributeRows":"行の高さを揃える","PE.Views.TableSettings.textEdit":"行/列","PE.Views.TableSettings.textEmptyTemplate":"テンプレートなし","PE.Views.TableSettings.textFirst":"最初の","PE.Views.TableSettings.textHeader":"ヘッダー","PE.Views.TableSettings.textHeight":"高さ","PE.Views.TableSettings.textLast":"最後","PE.Views.TableSettings.textRows":"行","PE.Views.TableSettings.textSelectBorders":"選択したスタイルを適用する罫線を選択してください。 ","PE.Views.TableSettings.textTemplate":"テンプレートから選択する","PE.Views.TableSettings.textTotal":"合計","PE.Views.TableSettings.textWidth":"幅","PE.Views.TableSettings.tipAll":"外枠とすべての内枠の線を設定","PE.Views.TableSettings.tipBottom":"外部の罫線(下)だけを設定","PE.Views.TableSettings.tipInner":"内部の線だけを設定","PE.Views.TableSettings.tipInnerHor":"横線内部の線だけを設定","PE.Views.TableSettings.tipInnerVert":"縦方向の内線のみを設定","PE.Views.TableSettings.tipLeft":"外部の罫線(左)だけを設定","PE.Views.TableSettings.tipNone":"罫線の設定なし","PE.Views.TableSettings.tipOuter":"外枠の罫線だけを設定","PE.Views.TableSettings.tipRight":"外部の罫線(右)だけを設定","PE.Views.TableSettings.tipTop":"外部の罫線(上)だけを設定","PE.Views.TableSettings.txtGroupTable_Custom":"ユーザー設定","PE.Views.TableSettings.txtGroupTable_Dark":"ダーク","PE.Views.TableSettings.txtGroupTable_Light":"ライト","PE.Views.TableSettings.txtGroupTable_Medium":"中","PE.Views.TableSettings.txtGroupTable_Optimal":"ドキュメントに最適なスタイル","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.textAltTitle":"タイトル","PE.Views.TableSettingsAdvanced.textBottom":"下","PE.Views.TableSettingsAdvanced.textCenter":"中央揃え","PE.Views.TableSettingsAdvanced.textCheckMargins":"既定の余白を使用","PE.Views.TableSettingsAdvanced.textDefaultMargins":"既定の余白","PE.Views.TableSettingsAdvanced.textFrom":"基準","PE.Views.TableSettingsAdvanced.textGeneral":"一般","PE.Views.TableSettingsAdvanced.textHeight":"高さ","PE.Views.TableSettingsAdvanced.textHorizontal":"水平","PE.Views.TableSettingsAdvanced.textKeepRatio":"一定の比率","PE.Views.TableSettingsAdvanced.textLeft":"左","PE.Views.TableSettingsAdvanced.textMargins":"セルの余白","PE.Views.TableSettingsAdvanced.textPlacement":"位置","PE.Views.TableSettingsAdvanced.textPosition":"位置","PE.Views.TableSettingsAdvanced.textRight":"右","PE.Views.TableSettingsAdvanced.textSize":"サイズ","PE.Views.TableSettingsAdvanced.textTableName":"表の名前","PE.Views.TableSettingsAdvanced.textTitle":"表 - 詳細設定","PE.Views.TableSettingsAdvanced.textTop":"トップ","PE.Views.TableSettingsAdvanced.textTopLeftCorner":"左上隅","PE.Views.TableSettingsAdvanced.textVertical":"縦","PE.Views.TableSettingsAdvanced.textWidth":"幅","PE.Views.TableSettingsAdvanced.textWidthSpaces":"余白","PE.Views.TextArtSettings.strBackground":"背景色","PE.Views.TextArtSettings.strColor":"色","PE.Views.TextArtSettings.strFill":"塗りつぶし","PE.Views.TextArtSettings.strForeground":"前景色","PE.Views.TextArtSettings.strPattern":"パターン","PE.Views.TextArtSettings.strSize":"サイズ","PE.Views.TextArtSettings.strStroke":"線","PE.Views.TextArtSettings.strTransparency":"不透明度","PE.Views.TextArtSettings.strType":"タイプ","PE.Views.TextArtSettings.textAngle":"角度","PE.Views.TextArtSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","PE.Views.TextArtSettings.textColor":"色で塗りつぶし","PE.Views.TextArtSettings.textDirection":"方向","PE.Views.TextArtSettings.textEmptyPattern":"パターンなし","PE.Views.TextArtSettings.textFromFile":"ファイルから","PE.Views.TextArtSettings.textFromUrl":"URLから","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":"ストレッチ","PE.Views.TextArtSettings.textStyle":"スタイル","PE.Views.TextArtSettings.textTemplate":"テンプレート","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":"キャンバス","PE.Views.TextArtSettings.txtCarton":"カートン","PE.Views.TextArtSettings.txtDarkFabric":"ダークファブリック","PE.Views.TextArtSettings.txtGrain":"粒子","PE.Views.TextArtSettings.txtGranite":"花崗岩","PE.Views.TextArtSettings.txtGreyPaper":"グレー紙","PE.Views.TextArtSettings.txtKnit":"ニット","PE.Views.TextArtSettings.txtLeather":"レザー","PE.Views.TextArtSettings.txtNoBorders":"線なし","PE.Views.TextArtSettings.txtPapyrus":"パピルス","PE.Views.TextArtSettings.txtWood":"木","PE.Views.Toolbar.capAddSlide":"スライドの追加","PE.Views.Toolbar.capBtnAddComment":"コメントを追加","PE.Views.Toolbar.capBtnComment":"コメント","PE.Views.Toolbar.capBtnDateTime":"日付と時刻","PE.Views.Toolbar.capBtnInsHeaderFooter":"ヘッダー/フッター","PE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","PE.Views.Toolbar.capBtnInsSymbol":"記号","PE.Views.Toolbar.capBtnSlideNum":"スライド番号","PE.Views.Toolbar.capInsertAudio":"オーディオ","PE.Views.Toolbar.capInsertChart":"グラフ","PE.Views.Toolbar.capInsertEquation":"方程式\t","PE.Views.Toolbar.capInsertHyperlink":"ハイパーリンク","PE.Views.Toolbar.capInsertImage":"画像","PE.Views.Toolbar.capInsertShape":"図形","PE.Views.Toolbar.capInsertTable":"表","PE.Views.Toolbar.capInsertText":"テキストボックス","PE.Views.Toolbar.capInsertTextArt":"テキストアート","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.mniInsertSSE":"スプレッドシートを挿入","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":"両端揃え","PE.Views.Toolbar.textAlignLeft":"テキストの左揃え","PE.Views.Toolbar.textAlignMiddle":"テキストを中央揃え","PE.Views.Toolbar.textAlignRight":"テキストの右揃え","PE.Views.Toolbar.textAlignTop":"テキストの上揃え","PE.Views.Toolbar.textAlpha":"ギリシャ小文字アルファ","PE.Views.Toolbar.textArrangeBack":"最背面ヘ移動","PE.Views.Toolbar.textArrangeBackward":"背面ヘ移動","PE.Views.Toolbar.textArrangeForward":"前面ヘ移動","PE.Views.Toolbar.textArrangeFront":"最前面ヘ移動","PE.Views.Toolbar.textBetta":"ギリシャ小文字ベータ","PE.Views.Toolbar.textBlackHeart":"ブラック・ハート・スーツ","PE.Views.Toolbar.textBold":"太字","PE.Views.Toolbar.textBullet":"箇条書き","PE.Views.Toolbar.textColumnsCustom":"カスタム設定の列","PE.Views.Toolbar.textColumnsOne":"1列","PE.Views.Toolbar.textColumnsThree":"3列","PE.Views.Toolbar.textColumnsTwo":"2列","PE.Views.Toolbar.textCopyright":"著作権マーク","PE.Views.Toolbar.textDegree":"度記号","PE.Views.Toolbar.textDelta":"ギリシャ小文字デルタ","PE.Views.Toolbar.textDirLtr":"左から右へ","PE.Views.Toolbar.textDirRtl":"右から左へ","PE.Views.Toolbar.textDivision":"除算記号","PE.Views.Toolbar.textDollar":"ドル記号","PE.Views.Toolbar.textEuro":"ユーロ記号","PE.Views.Toolbar.textGreaterEqual":"以上","PE.Views.Toolbar.textInfinity":"無限","PE.Views.Toolbar.textItalic":"イタリック体","PE.Views.Toolbar.textLessEqual":"以下","PE.Views.Toolbar.textLetterPi":"ギリシャの小文字ピー","PE.Views.Toolbar.textLineSpaceOptions":"行間オプション","PE.Views.Toolbar.textListSettings":"リストの設定","PE.Views.Toolbar.textMoreSymbols":"その他の記号","PE.Views.Toolbar.textNotEqualTo":"同等ではない","PE.Views.Toolbar.textOneHalf":"普通分数の1/2","PE.Views.Toolbar.textOneQuarter":"普通分数の1/4","PE.Views.Toolbar.textPlusMinus":"プラスマイナス記号","PE.Views.Toolbar.textRecentlyUsed":"最近使った項目","PE.Views.Toolbar.textRegistered":"登録商標マーク","PE.Views.Toolbar.textSection":"節記号","PE.Views.Toolbar.textShapeAlignBottom":"下揃え","PE.Views.Toolbar.textShapeAlignCenter":"中央揃え\t","PE.Views.Toolbar.textShapeAlignLeft":"左揃え","PE.Views.Toolbar.textShapeAlignMiddle":"上下中央揃え","PE.Views.Toolbar.textShapeAlignRight":"右揃え","PE.Views.Toolbar.textShapeAlignTop":"上揃え","PE.Views.Toolbar.textShapesCombine":"結合","PE.Views.Toolbar.textShapesFragment":"断片","PE.Views.Toolbar.textShapesIntersect":"交差","PE.Views.Toolbar.textShapesSubstract":"減算","PE.Views.Toolbar.textShapesUnion":"連合","PE.Views.Toolbar.textShowBegin":"先頭から表示する","PE.Views.Toolbar.textShowCurrent":"現在のスライドからの表示","PE.Views.Toolbar.textShowPresenterView":"発表者ビューを表示","PE.Views.Toolbar.textShowSettings":"設定を表示","PE.Views.Toolbar.textSmile":"白い笑顔","PE.Views.Toolbar.textSquareRoot":"平方根","PE.Views.Toolbar.textStrikeout":"取り消し線","PE.Views.Toolbar.textSubscript":"下付き文字","PE.Views.Toolbar.textSuperscript":"上付き文字","PE.Views.Toolbar.textTabAnimation":"アニメーション","PE.Views.Toolbar.textTabCollaboration":"共同編集","PE.Views.Toolbar.textTabDesign":"デザイン","PE.Views.Toolbar.textTabDraw":"描画","PE.Views.Toolbar.textTabFile":"ファイル","PE.Views.Toolbar.textTabHome":"ホーム","PE.Views.Toolbar.textTabInsert":"挿入","PE.Views.Toolbar.textTabProtect":"保護","PE.Views.Toolbar.textTabSlideMaster":"スライドマスター","PE.Views.Toolbar.textTabTransitions":"切り替え","PE.Views.Toolbar.textTabView":"表示","PE.Views.Toolbar.textTilde":"チルダ","PE.Views.Toolbar.textTitleError":"エラー","PE.Views.Toolbar.textTradeMark":"商標マーク","PE.Views.Toolbar.textUnderline":"アンダーライン","PE.Views.Toolbar.textYen":"円記号","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":"配色を変更","PE.Views.Toolbar.tipColumns":"列を挿入する","PE.Views.Toolbar.tipCopy":"コピーする","PE.Views.Toolbar.tipCopyStyle":"スタイルをコピーする","PE.Views.Toolbar.tipCut":"切り取り","PE.Views.Toolbar.tipDateTime":"現在の日付と時刻を挿入","PE.Views.Toolbar.tipDecFont":"フォントサイズの縮小","PE.Views.Toolbar.tipDecPrLeft":"インデントを減らす","PE.Views.Toolbar.tipEditHeaderFooter":"ヘッダーまたはフッターの編集","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.tipInsertHorizontalText":"横書きテキストボックスの挿入","PE.Views.Toolbar.tipInsertHyperlink":"ハイパーリンクを追加","PE.Views.Toolbar.tipInsertImage":"画像を挿入","PE.Views.Toolbar.tipInsertShape":"図形を挿入","PE.Views.Toolbar.tipInsertSmartArt":"SmartArtの挿入","PE.Views.Toolbar.tipInsertSymbol":"記号を挿入","PE.Views.Toolbar.tipInsertTable":"表の挿入","PE.Views.Toolbar.tipInsertText":"テキストボックスを挿入","PE.Views.Toolbar.tipInsertTextArt":"テキストアートの挿入","PE.Views.Toolbar.tipInsertVerticalText":"縦書きテキストボックスの挿入","PE.Views.Toolbar.tipInsertVideo":"ビデオを挿入","PE.Views.Toolbar.tipLineSpace":"行間","PE.Views.Toolbar.tipMarkers":"箇条書き","PE.Views.Toolbar.tipMarkersArrow":"箇条書き(矢印)","PE.Views.Toolbar.tipMarkersCheckmark":"箇条書き(チェックマーク)","PE.Views.Toolbar.tipMarkersDash":"「ダッシュ」記号","PE.Views.Toolbar.tipMarkersFRhombus":"箇条書き(ひし形)","PE.Views.Toolbar.tipMarkersFRound":"箇条書き(丸)","PE.Views.Toolbar.tipMarkersFSquare":"箇条書き(四角)","PE.Views.Toolbar.tipMarkersHRound":"箇条書き(円)","PE.Views.Toolbar.tipMarkersStar":"箇条書き(星)","PE.Views.Toolbar.tipNone":"なし","PE.Views.Toolbar.tipNumbers":"ナンバリング","PE.Views.Toolbar.tipPaste":"貼り付け","PE.Views.Toolbar.tipPreview":"スライドショーの開始","PE.Views.Toolbar.tipPrint":"印刷する","PE.Views.Toolbar.tipPrintQuick":"クイックプリント","PE.Views.Toolbar.tipRedo":"やり直す","PE.Views.Toolbar.tipReplace":"置き換え","PE.Views.Toolbar.tipSave":"保存する","PE.Views.Toolbar.tipSaveCoauth":"変更内容を保存して、他のユーザーが確認できるようにします。","PE.Views.Toolbar.tipSelectAll":"すべて選択","PE.Views.Toolbar.tipShapeAlign":"図形の配置","PE.Views.Toolbar.tipShapeArrange":"配置","PE.Views.Toolbar.tipShapesMerge":"図形を結合","PE.Views.Toolbar.tipSlideNum":"スライド番号の追加","PE.Views.Toolbar.tipSlideSize":"スライドサイズの選択","PE.Views.Toolbar.tipSlideTheme":"スライドのテーマ","PE.Views.Toolbar.tipTextDir":"テキスト方向","PE.Views.Toolbar.tipUndo":"元に戻す","PE.Views.Toolbar.tipVAligh":"垂直揃え","PE.Views.Toolbar.tipViewSettings":"表示の設定","PE.Views.Toolbar.txtColors":"色","PE.Views.Toolbar.txtDistribHor":"水平に整列する","PE.Views.Toolbar.txtDistribVert":"上下に整列する","PE.Views.Toolbar.txtDuplicateSlide":"スライドの複製","PE.Views.Toolbar.txtGroup":"グループ","PE.Views.Toolbar.txtObjectsAlign":"選択したオブジェクトを整列する","PE.Views.Toolbar.txtSlideAlign":"スライドに合わせる","PE.Views.Toolbar.txtSlideSize":"スライドのサイズ","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.textHorizontalIn":"水平(中)","PE.Views.Transitions.textHorizontalOut":"水平(外)","PE.Views.Transitions.textLeft":"左","PE.Views.Transitions.textMorph":"変形","PE.Views.Transitions.textMorphLetters":"文字","PE.Views.Transitions.textMorphObjects":"オブジェクト","PE.Views.Transitions.textMorphWord":"言葉","PE.Views.Transitions.textNone":"なし","PE.Views.Transitions.textPush":"押す","PE.Views.Transitions.textRandom":"ランダム","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.txtParameters":"オプション","PE.Views.Transitions.txtPreview":"プレビュー","PE.Views.Transitions.txtSec":"秒","PE.Views.ViewTab.capBtnHand":"手のひら","PE.Views.ViewTab.capBtnSelect":"選択","PE.Views.ViewTab.textAddHGuides":"水平方向のガイドの追加","PE.Views.ViewTab.textAddVGuides":"垂直方向のガイドの追加","PE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","PE.Views.ViewTab.textClearGuides":"ガイドのクリア","PE.Views.ViewTab.textCm":"センチ","PE.Views.ViewTab.textCustom":"ユーザー設定","PE.Views.ViewTab.textFill":"塗りつぶし","PE.Views.ViewTab.textFitToSlide":"スライドに合わせる","PE.Views.ViewTab.textFitToWidth":"幅に合わせる","PE.Views.ViewTab.textGridlines":"グリッド線","PE.Views.ViewTab.textGuides":"ガイド","PE.Views.ViewTab.textInterfaceTheme":"インターフェイスのテーマ","PE.Views.ViewTab.textLeftMenu":"左パネル","PE.Views.ViewTab.textLine":"線","PE.Views.ViewTab.textMacros":"マクロ","PE.Views.ViewTab.textNormal":"標準","PE.Views.ViewTab.textNotes":"ノート","PE.Views.ViewTab.textRightMenu":"右パネル","PE.Views.ViewTab.textRulers":"ルーラー","PE.Views.ViewTab.textShowGridlines":"枠線を表示する","PE.Views.ViewTab.textShowGuides":"ガイドを表示","PE.Views.ViewTab.textSlideMaster":"スライドマスター","PE.Views.ViewTab.textSmartGuides":"スマートガイド","PE.Views.ViewTab.textSnapObjects":"スナップオブジェクトをグリッドに","PE.Views.ViewTab.textStatusBar":"ステータスバー","PE.Views.ViewTab.textTabStyle":"タブのスタイル","PE.Views.ViewTab.textZoom":"ズーム","PE.Views.ViewTab.tipFitToSlide":"スライドに合わせる","PE.Views.ViewTab.tipFitToWidth":"幅に合わせる","PE.Views.ViewTab.tipGridlines":"枠線を表示する","PE.Views.ViewTab.tipGuides":"ガイドを表示","PE.Views.ViewTab.tipHandTool":"「手のひら」ツール","PE.Views.ViewTab.tipInterfaceTheme":"インターフェースのテーマ","PE.Views.ViewTab.tipMacros":"マクロ","PE.Views.ViewTab.tipNormal":"標準","PE.Views.ViewTab.tipSelectTool":"選択ツール","PE.Views.ViewTab.tipSlideMaster":"スライドマスター"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.ExternalDiagramEditor.textAnonymous":"匿名","Common.Controllers.ExternalDiagramEditor.textClose":"閉じる","Common.Controllers.ExternalDiagramEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalDiagramEditor.warningTitle":"警告","Common.Controllers.ExternalLinks.textAddExternalData":"外部ソースへのリンクが追加されました。このようなリンクは、「データ」タブで更新することができます。","Common.Controllers.ExternalLinks.textDontUpdate":"アップデートしない","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"エラー:アップデートに失敗しました","Common.Controllers.ExternalLinks.warnUpdateExternalData":"このワークブックには、安全でない可能性のある1つまたは複数の外部ソースへのリンクが含まれています。
リンクを信頼する場合は、最新のデータを取得するためにそれらを更新してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"このドキュメントには、安全でない可能性のある外部ソースへのリンクが1つ以上含まれています。
リンクを信頼できる場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"このプレゼンテーションには、安全でない可能性のある外部ソースへのリンクが含まれています。
リンクを信頼する場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalOleEditor.textAnonymous":"匿名","Common.Controllers.ExternalOleEditor.textClose":"閉じる","Common.Controllers.ExternalOleEditor.warningText":"他のユーザーが編集しているのためオブジェクトが無効になります。","Common.Controllers.ExternalOleEditor.warningTitle":"警告","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"履歴の読み込みに失敗しました","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","Common.Controllers.Shortcuts.txtDescriptionAddNewRow":"Add a new row at the bottom of the table.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown":"Use the keyboard arrow to move the selected object by a big step down.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft":"Use the keyboard arrow to move the selected object by a big step to the left.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight":"Use the keyboard arrow to move the selected object by a big step to the right.","Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp":"Use the keyboard arrow to move the selected object by a big step up.","Common.Controllers.Shortcuts.txtDescriptionBold":"Make the font of the selected text fragment bold, giving it a heavier appearance.","Common.Controllers.Shortcuts.txtDescriptionBulletList":"Create an unordered bulleted list from the selected text fragment, or start a new one.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Center the text between the left and the right edges.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Close the current presentation window.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Close a menu or modal window. Reset adding shapes mode. Remove the cursor from the shape content. Remove selection step by step (e.g., if the content of a shape within a group is selected, the cursor will be removed from the content first, then from the shape, then from the group). Deselect the copied format. Reset text drag-n-drop. Reset marker selection mode.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Send the selected object/text/slide in the slide list to the computer clipboard memory. The copied object can be later inserted to another place in the same presentation.","Common.Controllers.Shortcuts.txtDescriptionCopyFormat":"Copy the formatting from the selected fragment of the currently edited text. The copied formatting can be later applied to another text fragment in the same presentation.","Common.Controllers.Shortcuts.txtDescriptionCut":"Cut the selected object/text/slide in the slide list and send it to the computer clipboard memory. The cut object can be later inserted to another place in the same presentation.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Decrease the size of the font for the selected text fragment 1 point.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Delete one character/selection/graphical object to the left of the cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Delete one word/selection/graphical object to the left of the cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Delete one character/selection/graphical object to the right of the cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Delete one word/selection/graphical object to the right of the cursor.","Common.Controllers.Shortcuts.txtDescriptionDemonstrationClosePreview":"End a presentation. For the web version, the first pressing of Esc is an exit from the full-screen mode of a browser, the second one is an exit from the demonstration mode.","Common.Controllers.Shortcuts.txtDescriptionDemonstrationGoToFirstSlide":"Navigate to the first slide.","Common.Controllers.Shortcuts.txtDescriptionDemonstrationGoToLastSlide":"Navigate to the last slide.","Common.Controllers.Shortcuts.txtDescriptionDemonstrationGoToNextSlide":"Display the next transition effect or advance to the next slide.","Common.Controllers.Shortcuts.txtDescriptionDemonstrationGoToPreviousSlide":"Display the previous transition effect or return to the previous slide.","Common.Controllers.Shortcuts.txtDescriptionDemonstrationStartPresentation":"Start a presentation from the beginning.","Common.Controllers.Shortcuts.txtDescriptionDuplicate":"Duplicate the selected slide in the list.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"When the chart title is selected, if the title is empty, move the cursor to the beginning of the line, otherwise select the text.","Common.Controllers.Shortcuts.txtDescriptionEditDeselectAll":"Deselect all the selection.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repeat the latest undone action.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Select all the slides (in the slides list) or all the objects within the slide (in the slide editing area) or all the text (within the text box) - depending on where the mouse cursor is located.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"When the shape is selected, if it does not contain content, create content and move the cursor to the beginning of the line. If the content is empty, move the cursor to it, otherwise select the entire content.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Reverse the latest performed action.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insert an en dash to the right of the cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Add a new paragraph or add a new line to the Title/Subtitle placeholder.","Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell":"Start a new paragraph within a cell. If cells are selected, delete their contents. If the table is selected, move the cursor to the first cell. If it is empty, move the cursor to the beginning, otherwise select the contents of the cell.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Add a new placeholder to the equation argument.","Common.Controllers.Shortcuts.txtDescriptionEuroSign":"Insert the Euro sign at the current cursor position.","Common.Controllers.Shortcuts.txtDescriptionGoToFirstSlide":"Go to the first slide of the currently edited presentation/first thumbnail in the thumbnails list.","Common.Controllers.Shortcuts.txtDescriptionGoToLastSlide":"Go to the last slide of the currently edited presentation/last thumbnail in the thumbnails list.","Common.Controllers.Shortcuts.txtDescriptionGoToNextPlaceholder":"Move to the next title or body text placeholder. If it is the last placeholder on a slide, this will insert a new slide with the same slide layout as the original slide.","Common.Controllers.Shortcuts.txtDescriptionGoToNextSlide":"Go to the next slide of the currently edited presentation/next thumbnail in the thumbnails list.","Common.Controllers.Shortcuts.txtDescriptionGoToPreviousSlide":"Go to the previous slide of the currently edited presentation/previous thumbnail in the thumbnails list.","Common.Controllers.Shortcuts.txtDescriptionGroup":"Group the selected objects.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Increase the size of the font for the selected text fragment 1 point.","Common.Controllers.Shortcuts.txtDescriptionIndent":"Increase the paragraph left indent by one tabulation position.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insert a link which can be used to go to a web address or to a certain slide in the presentation.","Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak":"Add a line break to the text.","Common.Controllers.Shortcuts.txtDescriptionInsertTab":"Add the tab character to a paragraph.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Make the font of the selected text fragment slightly slanted to the right.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Justify the text in the paragraph, adding additional space between words so that the left and the right text edges will be aligned with the paragraph margins.","Common.Controllers.Shortcuts.txtDescriptionKeepSourceFormat":"Keep the source formatting of the copied text.","Common.Controllers.Shortcuts.txtDescriptionKeepTextOnly":"Paste the text without its original formatting.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Align left with the text lined up on the left side of the text box, the right side remains unaligned.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown":"Hold down the specified key and use the keyboard arrow to move the selected object down by one pixel at a time.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft":"Hold down the specified key and use the keyboard arrow to move the selected object to the left by one pixel at a time.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight":"Hold down the specified key and use the keyboard arrow to move the selected object to the right by one pixel at a time.","Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp":"Hold down the specified key and use the keyboard arrow to move the selected object up by one pixel at a time.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject":"Move focus to the next object after the currently selected one.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject":"Move focus to the previous object before the currently selected one.","Common.Controllers.Shortcuts.txtDescriptionMoveSlideDown":"Move the selected slide or several selected slides below the following one in the list (when the focus is on thumbnails).","Common.Controllers.Shortcuts.txtDescriptionMoveSlideToBegin":"Move the selected slide or several slides to the very first position in the list (when the focus is on thumbnails).","Common.Controllers.Shortcuts.txtDescriptionMoveSlideToEnd":"Move the selected slide or several slides to the very last position in the list (when the focus is on thumbnails).","Common.Controllers.Shortcuts.txtDescriptionMoveSlideUp":"Move the selected slide or several selected slides above the previous one in the list (when the focus is on thumbnails).","Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine":"Move the cursor one line down.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndContent":"Put the cursor to the end of the currently edited text box or to the lower right cell of a table.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine":"Put the cursor to the end of the currently edited line.","Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord":"Move the cursor one word to the right.","Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar":"Move the cursor one character to the left.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell":"Go to the next cell in a table row.","Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow":"Go to the next row in a table.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell":"Go to the previous cell in a table row.","Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow":"Go to the previous row in a table.","Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar":"Move the cursor one character to the right.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartContent":"Put the cursor to the beginning of the currently edited text box or to the upper left cell of a table.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine":"Put the cursor to the beginning of the currently edited line.","Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord":"Move the cursor to the beginning of a word or one word to the left.","Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine":"Move the cursor one line up.","Common.Controllers.Shortcuts.txtDescriptionNewSlide":"Create a new slide and add it after the selected one in the list. The Ctrl+M shortcut is also used to create the first slide in the presentation, which does not contain any slides.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Switch to the next file tab in Desktop Editors or browser tab in Online Editors.","Common.Controllers.Shortcuts.txtDescriptionNextModalControl":"Navigate between controls to give focus to the next control in modal dialogues.","Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace":"Create a space between characters which cannot be used to start a new line.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Open the Chat panel in the Online Editors and send a message.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Open a data entry field where you can add the text of your comment.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Open the Comments panel to add your own comment or reply to comments from other users.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Open the selected element contextual menu.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Open the standard dialog box that allows selecting an existing file. If you select the file in this dialog box and click Open, the file will be opened in a new tab or window of Desktop Editors.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Open the File panel to save, download, print the current presentation, view its info, create a new presentation or open an existing one, access the Presentation Editor help or advanced settings.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Open the Find and Replace menu (panel) with the replacement field to replace one or more occurrences of the found characters.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Open the Find dialog window to start searching for a character/word/phrase in the currently edited presentation.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Open the Presentation Editor Help menu.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insert the previously copied object/text/slide in the slide list from the computer clipboard memory to the current cursor position. The object can be previously copied from the same presentation, from another presentation, from another editor, or from some other program.","Common.Controllers.Shortcuts.txtDescriptionPasteAsPicture":"Paste the text as an image so that it cannot be edited.","Common.Controllers.Shortcuts.txtDescriptionPasteFormat":"Apply the previously copied formatting to the text in the currently edited text box.","Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat":"Insert the previously copied text fragment from the computer clipboard memory to the current cursor position without preserving its original formatting. The text can be previously copied from the same document, from another document, or from some other program.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Switch to the previous file tab in Desktop Editors or browser tab in Online Editors.","Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl":"Navigate between controls to give focus to the previous control in modal dialogues.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Print the presentation with one of the available printers or save it to a file.","Common.Controllers.Shortcuts.txtDescriptionRemoveSlide":"Remove the currently selected slide in the list, or several selected slides.","Common.Controllers.Shortcuts.txtDescriptionResetChar":"Clear formatting of the selected text fragment.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Align right with the text lined up on the right side of the text box, the left side remains unaligned.","Common.Controllers.Shortcuts.txtDescriptionSave":"Save all the changes to the presentation currently edited with the Presentation Editor. The active file will be saved under its current name, in the same location and file format.","Common.Controllers.Shortcuts.txtDescriptionSaveAs":"Open the Download as... panel to save the currently edited presentation to the hard disk drive of your computer in one of the supported formats.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar":"Select one character to the left of the cursor position.","Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord":"Select a text fragment from the cursor to the beginning of a word.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Move the cursor one line down, selecting all symbols between the previous and current cursor position.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Move the cursor one line up, selecting all symbols between the previous and current cursor position.","Common.Controllers.Shortcuts.txtDescriptionSelectNextSlide":"Add the next slide in the slide list to the selection (when the focus is on thumbnails).","Common.Controllers.Shortcuts.txtDescriptionSelectPreviousSlide":"Add the previous slide in the slide list to the selection (when the focus is on thumbnails).","Common.Controllers.Shortcuts.txtDescriptionSelectRightChar":"Select one character to the right of the cursor position.","Common.Controllers.Shortcuts.txtDescriptionSelectRightWord":"Select a text fragment from the cursor to the end of a word.","Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine":"Select a text fragment from the cursor to the end of the current line.","Common.Controllers.Shortcuts.txtDescriptionSelectToFirstSlide":"Select slides to the first slide starting from the current slide where the focus is located in the thumbnails list.","Common.Controllers.Shortcuts.txtDescriptionSelectToLastSlide":"Select slides to the last slide starting from the current slide where the focus is located in the thumbnails list.","Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine":"Select a text fragment from the cursor to the beginning of the current line.","Common.Controllers.Shortcuts.txtDescriptionShowParaMarks":"Show or hide the display of nonprinting characters.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Enables/disables the transmission of actions performed in the application for screen readers.","Common.Controllers.Shortcuts.txtDescriptionStartIndent":"Add a level to the numbering of a paragraph (with the cursor at the beginning of a line).","Common.Controllers.Shortcuts.txtDescriptionStartUnIndent":"Remove a level from the numbering of a paragraph (with the cursor at the beginning of a line).","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Make the selected text fragment struck out with a line going through the letters.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Make the selected text fragment smaller, placing it to the lower part of the text line, e.g. as in chemical formulas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Make the selected text fragment smaller, placing it to the upper part of the text line, e.g. as in fractions.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Make the selected text fragment underlined with a line going under the letters.","Common.Controllers.Shortcuts.txtDescriptionUnGroup":"Ungroup the selected group of objects.","Common.Controllers.Shortcuts.txtDescriptionUnIndent":"Decrease the paragraph left indent by one tabulation position.","Common.Controllers.Shortcuts.txtDescriptionUseDestinationTheme":"Apply the formatting specified by the theme of the current presentation.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visit a link (with the cursor in the link).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Reset the 'Zoom' parameter of the current presentation to the default 'Fit to slide' value.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Zoom in the currently edited presentation.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Zoom out the currently edited presentation.","Common.Controllers.Shortcuts.txtLabelAddNewRow":"AddNewRow","Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown":"BigMoveObjectDown","Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft":"BigMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight":"BigMoveObjectRight","Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp":"BigMoveObjectUp","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelBulletList":"BulletList","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCopyFormat":"CopyFormat","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelDemonstrationClosePreview":"DemonstrationClosePreview","Common.Controllers.Shortcuts.txtLabelDemonstrationGoToFirstSlide":"DemonstrationGoToFirstSlide","Common.Controllers.Shortcuts.txtLabelDemonstrationGoToLastSlide":"DemonstrationGoToLastSlide","Common.Controllers.Shortcuts.txtLabelDemonstrationGoToNextSlide":"DemonstrationGoToNextSlide","Common.Controllers.Shortcuts.txtLabelDemonstrationGoToPreviousSlide":"DemonstrationGoToPreviousSlide","Common.Controllers.Shortcuts.txtLabelDemonstrationStartPresentation":"DemonstrationStartPresentation","Common.Controllers.Shortcuts.txtLabelDuplicate":"Duplicate","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditDeselectAll":"EditDeselectAll","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEndParagraphCell":"EndParagraphCell","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelEuroSign":"EuroSign","Common.Controllers.Shortcuts.txtLabelGoToFirstSlide":"GoToFirstSlide","Common.Controllers.Shortcuts.txtLabelGoToLastSlide":"GoToLastSlide","Common.Controllers.Shortcuts.txtLabelGoToNextPlaceholder":"GoToNextPlaceholder","Common.Controllers.Shortcuts.txtLabelGoToNextSlide":"GoToNextSlide","Common.Controllers.Shortcuts.txtLabelGoToPreviousSlide":"GoToPreviousSlide","Common.Controllers.Shortcuts.txtLabelGroup":"Group","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelIndent":"Indent","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelInsertLineBreak":"InsertLineBreak","Common.Controllers.Shortcuts.txtLabelInsertTab":"InsertTab","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelKeepSourceFormat":"KeepSourceFormat","Common.Controllers.Shortcuts.txtLabelKeepTextOnly":"KeepTextOnly","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown":"LittleMoveObjectDown","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft":"LittleMoveObjectLeft","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight":"LittleMoveObjectRight","Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp":"LittleMoveObjectUp","Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject":"MoveFocusToNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject":"MoveFocusToPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveSlideDown":"MoveSlideDown","Common.Controllers.Shortcuts.txtLabelMoveSlideToBegin":"MoveSlideToBegin","Common.Controllers.Shortcuts.txtLabelMoveSlideToEnd":"MoveSlideToEnd","Common.Controllers.Shortcuts.txtLabelMoveSlideUp":"MoveSlideUp","Common.Controllers.Shortcuts.txtLabelMoveToDownLine":"MoveToDownLine","Common.Controllers.Shortcuts.txtLabelMoveToEndContent":"MoveToEndContent","Common.Controllers.Shortcuts.txtLabelMoveToEndLine":"MoveToEndLine","Common.Controllers.Shortcuts.txtLabelMoveToEndWord":"MoveToEndWord","Common.Controllers.Shortcuts.txtLabelMoveToLeftChar":"MoveToLeftChar","Common.Controllers.Shortcuts.txtLabelMoveToNextCell":"MoveToNextCell","Common.Controllers.Shortcuts.txtLabelMoveToNextRow":"MoveToNextRow","Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell":"MoveToPreviousCell","Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow":"MoveToPreviousRow","Common.Controllers.Shortcuts.txtLabelMoveToRightChar":"MoveToRightChar","Common.Controllers.Shortcuts.txtLabelMoveToStartContent":"MoveToStartContent","Common.Controllers.Shortcuts.txtLabelMoveToStartLine":"MoveToStartLine","Common.Controllers.Shortcuts.txtLabelMoveToStartWord":"MoveToStartWord","Common.Controllers.Shortcuts.txtLabelMoveToUpLine":"MoveToUpLine","Common.Controllers.Shortcuts.txtLabelNewSlide":"NewSlide","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextModalControl":"NextModalControl","Common.Controllers.Shortcuts.txtLabelNonBreakingSpace":"NonBreakingSpace","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteAsPicture":"PasteAsPicture","Common.Controllers.Shortcuts.txtLabelPasteFormat":"PasteFormat","Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat":"PasteTextWithoutFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousModalControl":"PreviousModalControl","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRemoveSlide":"RemoveSlide","Common.Controllers.Shortcuts.txtLabelResetChar":"ResetChar","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSaveAs":"SaveAs","Common.Controllers.Shortcuts.txtLabelSelectLeftChar":"SelectLeftChar","Common.Controllers.Shortcuts.txtLabelSelectLeftWord":"SelectLeftWord","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectNextSlide":"SelectNextSlide","Common.Controllers.Shortcuts.txtLabelSelectPreviousSlide":"SelectPreviousSlide","Common.Controllers.Shortcuts.txtLabelSelectRightChar":"SelectRightChar","Common.Controllers.Shortcuts.txtLabelSelectRightWord":"SelectRightWord","Common.Controllers.Shortcuts.txtLabelSelectToEndLine":"SelectToEndLine","Common.Controllers.Shortcuts.txtLabelSelectToFirstSlide":"SelectToFirstSlide","Common.Controllers.Shortcuts.txtLabelSelectToLastSlide":"SelectToLastSlide","Common.Controllers.Shortcuts.txtLabelSelectToStartLine":"SelectToStartLine","Common.Controllers.Shortcuts.txtLabelShowParaMarks":"ShowParaMarks","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStartIndent":"StartIndent","Common.Controllers.Shortcuts.txtLabelStartUnIndent":"StartUnIndent","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelUnGroup":"UnGroup","Common.Controllers.Shortcuts.txtLabelUnIndent":"UnIndent","Common.Controllers.Shortcuts.txtLabelUseDestinationTheme":"UseDestinationTheme","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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":"集合縦棒 - 第2軸の折れ線","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.textRadar":"レーダーチャート","Common.define.chartData.textRadarFilled":"塗りつぶしレーダー","Common.define.chartData.textRadarMarker":"マーカー付きレーダー","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.define.effectData.textAcross":"横方向","Common.define.effectData.textAppear":"表示","Common.define.effectData.textArcDown":"アーチ (下)","Common.define.effectData.textArcLeft":"アーチ (左)","Common.define.effectData.textArcRight":"アーチ (右)","Common.define.effectData.textArcs":"アーチ","Common.define.effectData.textArcUp":"アーチ (上)","Common.define.effectData.textBasic":"基本","Common.define.effectData.textBasicSwivel":"ベーシックスイベル","Common.define.effectData.textBasicZoom":"ベーシックズーム","Common.define.effectData.textBean":"豆","Common.define.effectData.textBlinds":"ブラインド","Common.define.effectData.textBlink":"ブリンク","Common.define.effectData.textBoldFlash":"ボールドフラッシュ","Common.define.effectData.textBoldReveal":"太字表示","Common.define.effectData.textBoomerang":"ブーメラン","Common.define.effectData.textBounce":"バウンド","Common.define.effectData.textBounceLeft":"バウンド (左へ)","Common.define.effectData.textBounceRight":"バウンド (右へ)","Common.define.effectData.textBox":"ボックス","Common.define.effectData.textBrushColor":"ブラシの色","Common.define.effectData.textCenterRevolve":"リボルブ","Common.define.effectData.textCheckerboard":"チェッカーボード","Common.define.effectData.textCircle":"円","Common.define.effectData.textCollapse":"折りたたみ","Common.define.effectData.textColorPulse":"カラーパルス","Common.define.effectData.textComplementaryColor":"補色","Common.define.effectData.textComplementaryColor2":"補色2","Common.define.effectData.textCompress":"圧縮","Common.define.effectData.textContrast":"コントラスト","Common.define.effectData.textContrastingColor":"カラーコントラスト","Common.define.effectData.textCredits":"クレジット","Common.define.effectData.textCrescentMoon":"三日月","Common.define.effectData.textCurveDown":"カーブ (下)","Common.define.effectData.textCurvedSquare":"四角形 (曲線)","Common.define.effectData.textCurvedX":"曲線 (X 型)","Common.define.effectData.textCurvyLeft":"湾曲カーブ (左)","Common.define.effectData.textCurvyRight":"湾曲カーブ (右)","Common.define.effectData.textCurvyStar":"星 (曲線)","Common.define.effectData.textCustomPath":"カスタムパス","Common.define.effectData.textCuverUp":"カーブ (上)","Common.define.effectData.textDarken":"暗く","Common.define.effectData.textDecayingWave":"波線 (減衰曲線)","Common.define.effectData.textDesaturate":"彩度を下げる","Common.define.effectData.textDiagonalDownRight":"対角線 (右下へ)","Common.define.effectData.textDiagonalUpRight":"対角線 (右上へ)","Common.define.effectData.textDiamond":"ひし型","Common.define.effectData.textDisappear":"消失","Common.define.effectData.textDissolveIn":"ディゾルブイン","Common.define.effectData.textDissolveOut":"ディゾルブアウト","Common.define.effectData.textDown":"下","Common.define.effectData.textDrop":"ドロップ","Common.define.effectData.textEmphasis":"強調効果","Common.define.effectData.textEntrance":"開始効果","Common.define.effectData.textEqualTriangle":"正三角形","Common.define.effectData.textExciting":"華やか","Common.define.effectData.textExit":"終了効果","Common.define.effectData.textExpand":"拡張する","Common.define.effectData.textFade":"フェード","Common.define.effectData.textFigureFour":"8 の字 (ダブル)","Common.define.effectData.textFillColor":"塗りつぶしの色","Common.define.effectData.textFlip":"反転する","Common.define.effectData.textFloat":"フロート","Common.define.effectData.textFloatDown":"フロートダウン","Common.define.effectData.textFloatIn":"フロートイン","Common.define.effectData.textFloatOut":"フロートアウト","Common.define.effectData.textFloatUp":"フロートアップ","Common.define.effectData.textFlyIn":"スライドイン","Common.define.effectData.textFlyOut":"スライドアウト","Common.define.effectData.textFontColor":"フォントの色","Common.define.effectData.textFootball":"フットボール","Common.define.effectData.textFromBottom":"下から","Common.define.effectData.textFromBottomLeft":"左下から","Common.define.effectData.textFromBottomRight":"右下から","Common.define.effectData.textFromLeft":"左から","Common.define.effectData.textFromRight":"右から","Common.define.effectData.textFromTop":"上から","Common.define.effectData.textFromTopLeft":"左上から","Common.define.effectData.textFromTopRight":"右上から","Common.define.effectData.textFunnel":"漏斗","Common.define.effectData.textGrowShrink":"拡大/収縮","Common.define.effectData.textGrowTurn":"グローとターン","Common.define.effectData.textGrowWithColor":"カラーで拡大","Common.define.effectData.textHeart":"ハート","Common.define.effectData.textHeartbeat":"ハートビート","Common.define.effectData.textHexagon":"六角形","Common.define.effectData.textHorizontal":"水平","Common.define.effectData.textHorizontalFigure":"8 の字 (横)","Common.define.effectData.textHorizontalIn":"ワイプイン (横)","Common.define.effectData.textHorizontalOut":"ワイプアウト (横)","Common.define.effectData.textIn":"中に","Common.define.effectData.textInFromScreenCenter":"画面中央から中に","Common.define.effectData.textInSlightly":"少しだけ中","Common.define.effectData.textInToScreenBottom":"画面下に","Common.define.effectData.textInToScreenCenter":"画面中央に","Common.define.effectData.textInvertedSquare":"四角形 (転回)","Common.define.effectData.textInvertedTriangle":"三角形 (転回)","Common.define.effectData.textLeft":"左","Common.define.effectData.textLeftDown":"左下","Common.define.effectData.textLeftUp":"左上","Common.define.effectData.textLighten":"明るく","Common.define.effectData.textLineColor":"線の色","Common.define.effectData.textLines":"線","Common.define.effectData.textLinesCurves":"線と曲線","Common.define.effectData.textLoopDeLoop":"ループ","Common.define.effectData.textLoops":"ループ","Common.define.effectData.textModerate":"標準","Common.define.effectData.textNeutron":"ニュートロン","Common.define.effectData.textObjectCenter":"オブジェクトの中央","Common.define.effectData.textObjectColor":"オブジェクトの色","Common.define.effectData.textOctagon":"八角形","Common.define.effectData.textOut":"外","Common.define.effectData.textOutFromScreenBottom":"画面下部から外へ","Common.define.effectData.textOutSlightly":"少しだけ外","Common.define.effectData.textOutToScreenCenter":"画面中央へ","Common.define.effectData.textParallelogram":"平行四辺形","Common.define.effectData.textPath":"モーションパス","Common.define.effectData.textPathCurve":"曲線","Common.define.effectData.textPathLine":"線","Common.define.effectData.textPathScribble":"フリーハンド","Common.define.effectData.textPeanut":"ピーナッツ","Common.define.effectData.textPeekIn":"ピークイン","Common.define.effectData.textPeekOut":"ピークアウト","Common.define.effectData.textPentagon":"五角形","Common.define.effectData.textPinwheel":"ピンウィール","Common.define.effectData.textPlus":"プラス","Common.define.effectData.textPointStar":"ポイントスター","Common.define.effectData.textPointStar4":"4ポイントスター","Common.define.effectData.textPointStar5":"5ポイントスター","Common.define.effectData.textPointStar6":"6ポイントスター","Common.define.effectData.textPointStar8":"8ポイントスター","Common.define.effectData.textPulse":"パルス","Common.define.effectData.textRandomBars":"ランダムストライプ","Common.define.effectData.textRight":"右","Common.define.effectData.textRightDown":"右下","Common.define.effectData.textRightTriangle":"直角三角形","Common.define.effectData.textRightUp":"右上","Common.define.effectData.textRiseUp":"ライズアップ","Common.define.effectData.textSCurve1":"カーブ S 型 (1)","Common.define.effectData.textSCurve2":"カーブ S 型 (2)","Common.define.effectData.textShape":"図形","Common.define.effectData.textShapes":"図形","Common.define.effectData.textShimmer":"シマー","Common.define.effectData.textShrinkTurn":"縮小および回転","Common.define.effectData.textSineWave":"波線 (正弦曲線)","Common.define.effectData.textSinkDown":"シンクダウン","Common.define.effectData.textSlideCenter":"スライドの中央","Common.define.effectData.textSpecial":"特殊","Common.define.effectData.textSpin":"スピン","Common.define.effectData.textSpinner":"スピナー","Common.define.effectData.textSpiralIn":"内側にスパイラル","Common.define.effectData.textSpiralLeft":"左へスパイラル","Common.define.effectData.textSpiralOut":"外側にスパイラル","Common.define.effectData.textSpiralRight":"右へスパイラル","Common.define.effectData.textSplit":"分割","Common.define.effectData.textSpoke1":"1スポーク","Common.define.effectData.textSpoke2":"2スポーク","Common.define.effectData.textSpoke3":"3スポーク","Common.define.effectData.textSpoke4":"4スポーク","Common.define.effectData.textSpoke8":"8スポーク","Common.define.effectData.textSpring":"スプリング","Common.define.effectData.textSquare":"四角","Common.define.effectData.textStairsDown":"下り階段","Common.define.effectData.textStretch":"ストレッチ","Common.define.effectData.textStrips":"ストリップ","Common.define.effectData.textSubtle":"弱","Common.define.effectData.textSwivel":"スイベル","Common.define.effectData.textSwoosh":"スウッシュ","Common.define.effectData.textTeardrop":"涙の滴","Common.define.effectData.textTeeter":"シーソー","Common.define.effectData.textToBottom":"下へ","Common.define.effectData.textToBottomLeft":"左下へ","Common.define.effectData.textToBottomRight":"右下へ","Common.define.effectData.textToFromScreenBottom":"画面下部へ","Common.define.effectData.textToLeft":"左へ","Common.define.effectData.textToRight":"右へ","Common.define.effectData.textToTop":"上へ","Common.define.effectData.textToTopLeft":"左上へ","Common.define.effectData.textToTopRight":"右上へ","Common.define.effectData.textTransparency":"透過性","Common.define.effectData.textTrapezoid":"台形","Common.define.effectData.textTurnDown":"ターン (下へ)","Common.define.effectData.textTurnDownRight":"ターン (右下へ)","Common.define.effectData.textTurns":"ターン","Common.define.effectData.textTurnUp":"ターン (上へ)","Common.define.effectData.textTurnUpRight":"ターン (右上へ)","Common.define.effectData.textUnderline":"アンダーライン","Common.define.effectData.textUp":"上","Common.define.effectData.textVertical":"縦","Common.define.effectData.textVerticalFigure":"8 の字 (縦)","Common.define.effectData.textVerticalIn":"縦(中)","Common.define.effectData.textVerticalOut":"縦(外)","Common.define.effectData.textWave":"波","Common.define.effectData.textWedge":"くさび形","Common.define.effectData.textWheel":"ホイール","Common.define.effectData.textWhip":"ホイップ","Common.define.effectData.textWipe":"ワイプ","Common.define.effectData.textZigzag":"ジグザグ","Common.define.effectData.textZoom":"ズーム","Common.define.gridlineData.txtCm":"センチ","Common.define.gridlineData.txtPt":"pt","Common.define.smartArt.textAccentedPicture":"アクセント付きの図","Common.define.smartArt.textAccentProcess":"アクセントプロセス","Common.define.smartArt.textAlternatingFlow":"波型ステップ","Common.define.smartArt.textAlternatingHexagons":"左右交替積み上げ六角形","Common.define.smartArt.textAlternatingPictureBlocks":"左右交替積み上げ画像ブロック","Common.define.smartArt.textAlternatingPictureCircles":"円形付き画像ジグザグ表示","Common.define.smartArt.textArchitectureLayout":"アーキテクチャ レイアウト","Common.define.smartArt.textArrowRibbon":"リボン状の矢印","Common.define.smartArt.textAscendingPictureAccentProcess":"アクセント画像付き上昇ステップ","Common.define.smartArt.textBalance":"バランス","Common.define.smartArt.textBasicBendingProcess":"基本蛇行ステップ","Common.define.smartArt.textBasicBlockList":"カード型リスト","Common.define.smartArt.textBasicChevronProcess":"プロセス","Common.define.smartArt.textBasicCycle":"基本の循環","Common.define.smartArt.textBasicMatrix":"基本マトリックス","Common.define.smartArt.textBasicPie":"円グラフ","Common.define.smartArt.textBasicProcess":"基本ステップ","Common.define.smartArt.textBasicPyramid":"基本ピラミッド","Common.define.smartArt.textBasicRadial":"基本放射","Common.define.smartArt.textBasicTarget":"ターゲット","Common.define.smartArt.textBasicTimeline":"タイムライン","Common.define.smartArt.textBasicVenn":"基本ベン図","Common.define.smartArt.textBendingPictureAccentList":"画像付きカード型リスト","Common.define.smartArt.textBendingPictureBlocks":"自動配置の画像ブロック","Common.define.smartArt.textBendingPictureCaption":"自動配置の表題付き画像","Common.define.smartArt.textBendingPictureCaptionList":"自動配置の表題付き画像レイアウト","Common.define.smartArt.textBendingPictureSemiTranparentText":"自動配置の半透明テキスト付き画像","Common.define.smartArt.textBlockCycle":"ボックス循環","Common.define.smartArt.textBubblePictureList":"バブル状画像リスト","Common.define.smartArt.textCaptionedPictures":"表題付き画像","Common.define.smartArt.textChevronAccentProcess":"アクセントステップ","Common.define.smartArt.textChevronList":"プロセス リスト","Common.define.smartArt.textCircleAccentTimeline":"円形組み合わせタイムライン","Common.define.smartArt.textCircleArrowProcess":"円形矢印プロセス","Common.define.smartArt.textCirclePictureHierarchy":"円形画像を使用した階層","Common.define.smartArt.textCircleProcess":"円形プロセス","Common.define.smartArt.textCircleRelationship":"円の関連付け","Common.define.smartArt.textCircularBendingProcess":"円形蛇行ステップ","Common.define.smartArt.textCircularPictureCallout":"円形画像を使った吹き出し","Common.define.smartArt.textClosedChevronProcess":"開始点強調型プロセス","Common.define.smartArt.textContinuousArrowProcess":"大きな矢印のプロセス","Common.define.smartArt.textContinuousBlockProcess":"矢印と長方形のプロセス","Common.define.smartArt.textContinuousCycle":"連続性強調循環","Common.define.smartArt.textContinuousPictureList":"矢印付き画像リスト","Common.define.smartArt.textConvergingArrows":"内向き矢印","Common.define.smartArt.textConvergingRadial":"集中","Common.define.smartArt.textConvergingText":"内向きテキスト","Common.define.smartArt.textCounterbalanceArrows":"対立とバランスの矢印","Common.define.smartArt.textCycle":"循環","Common.define.smartArt.textCycleMatrix":"循環マトリックス","Common.define.smartArt.textDescendingBlockList":"ブロックの降順リスト","Common.define.smartArt.textDescendingProcess":"降順プロセス","Common.define.smartArt.textDetailedProcess":"詳述プロセス","Common.define.smartArt.textDivergingArrows":"左右逆方向矢印","Common.define.smartArt.textDivergingRadial":"矢印付き放射","Common.define.smartArt.textEquation":"数式","Common.define.smartArt.textFramedTextPicture":"フレームに表示されるテキスト画像","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"歯車","Common.define.smartArt.textGridMatrix":"グリッド マトリックス","Common.define.smartArt.textGroupedList":"グループ リスト","Common.define.smartArt.textHalfCircleOrganizationChart":"アーチ型線で飾られた組織図","Common.define.smartArt.textHexagonCluster":"蜂の巣状の六角形","Common.define.smartArt.textHexagonRadial":"六角形放射","Common.define.smartArt.textHierarchy":"階層","Common.define.smartArt.textHierarchyList":"階層リスト","Common.define.smartArt.textHorizontalBulletList":"横方向箇条書きリスト","Common.define.smartArt.textHorizontalHierarchy":"横方向階層","Common.define.smartArt.textHorizontalLabeledHierarchy":"ラベル付き横方向階層","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"複数レベル対応の横方向階層","Common.define.smartArt.textHorizontalOrganizationChart":"水平方向の組織図","Common.define.smartArt.textHorizontalPictureList":"横方向画像リスト","Common.define.smartArt.textIncreasingArrowProcess":"上昇矢印のプロセス","Common.define.smartArt.textIncreasingCircleProcess":"上昇円プロセス","Common.define.smartArt.textInterconnectedBlockProcess":"相互接続された長方形のプロセス","Common.define.smartArt.textInterconnectedRings":"互いにつながったリング","Common.define.smartArt.textInvertedPyramid":"反転ピラミッド","Common.define.smartArt.textLabeledHierarchy":"ラベル付き階層","Common.define.smartArt.textLinearVenn":"横方向ベン図","Common.define.smartArt.textLinedList":"線区切りリスト","Common.define.smartArt.textList":"リスト","Common.define.smartArt.textMatrix":"マトリックス","Common.define.smartArt.textMultidirectionalCycle":"双方向循環","Common.define.smartArt.textNameAndTitleOrganizationChart":"氏名/役職名付き組織図","Common.define.smartArt.textNestedTarget":"包含","Common.define.smartArt.textNondirectionalCycle":"矢印無し循環","Common.define.smartArt.textOpposingArrows":"上下逆方向矢印","Common.define.smartArt.textOpposingIdeas":"対立する案","Common.define.smartArt.textOrganizationChart":"組織図","Common.define.smartArt.textOther":"その他","Common.define.smartArt.textPhasedProcess":"フェーズ プロセス","Common.define.smartArt.textPicture":"画像","Common.define.smartArt.textPictureAccentBlocks":"画像アクセントのブロック","Common.define.smartArt.textPictureAccentList":"画像アクセントのリスト","Common.define.smartArt.textPictureAccentProcess":"画像アクセントのプロセス","Common.define.smartArt.textPictureCaptionList":"画像キャプションのリスト","Common.define.smartArt.textPictureFrame":"フォトフレーム","Common.define.smartArt.textPictureGrid":"画像グリッド","Common.define.smartArt.textPictureLineup":"画像ラインアップ","Common.define.smartArt.textPictureOrganizationChart":"画像付き組織図","Common.define.smartArt.textPictureStrips":"画像付きラベル","Common.define.smartArt.textPieProcess":"円グラフのプロセス","Common.define.smartArt.textPlusAndMinus":"プラスとマイナス","Common.define.smartArt.textProcess":"プロセス","Common.define.smartArt.textProcessArrows":"矢印型ステップ","Common.define.smartArt.textProcessList":"プロセスのリスト","Common.define.smartArt.textPyramid":"ピラミッド","Common.define.smartArt.textPyramidList":"ピラミッドのリスト","Common.define.smartArt.textRadialCluster":"放射ブロック","Common.define.smartArt.textRadialCycle":"中心付き循環","Common.define.smartArt.textRadialList":"放射リスト","Common.define.smartArt.textRadialPictureList":"放射画像リスト","Common.define.smartArt.textRadialVenn":"放射型ベン図","Common.define.smartArt.textRandomToResultProcess":"複数案をまとめるステップ","Common.define.smartArt.textRelationship":"関係","Common.define.smartArt.textRepeatingBendingProcess":"改行型蛇行ステップ","Common.define.smartArt.textReverseList":"逆順リスト","Common.define.smartArt.textSegmentedCycle":"円型循環","Common.define.smartArt.textSegmentedProcess":"分割ステップ","Common.define.smartArt.textSegmentedPyramid":"分割ピラミッド","Common.define.smartArt.textSnapshotPictureList":"スナップショット画像リスト","Common.define.smartArt.textSpiralPicture":"渦巻き画像","Common.define.smartArt.textSquareAccentList":"箇条書き記号アクセントのリスト","Common.define.smartArt.textStackedList":"積み上げリスト","Common.define.smartArt.textStackedVenn":"包含型ベン図","Common.define.smartArt.textStaggeredProcess":"段違いステップ","Common.define.smartArt.textStepDownProcess":"ステップ ダウンのプロセス","Common.define.smartArt.textStepUpProcess":"ステップアップのプロセス","Common.define.smartArt.textSubStepProcess":"サブステップのプロセス","Common.define.smartArt.textTabbedArc":"円弧状タブ","Common.define.smartArt.textTableHierarchy":"積み木型の階層","Common.define.smartArt.textTableList":"表型リスト","Common.define.smartArt.textTabList":"タブ付きリスト","Common.define.smartArt.textTargetList":"ターゲットのリスト","Common.define.smartArt.textTextCycle":"テキスト循環","Common.define.smartArt.textThemePictureAccent":"テーマ画像アクセント","Common.define.smartArt.textThemePictureAlternatingAccent":"テーマ画像交互のアクセント","Common.define.smartArt.textThemePictureGrid":"テーマ画像グリッド","Common.define.smartArt.textTitledMatrix":"タイトル付きマトリックス","Common.define.smartArt.textTitledPictureAccentList":"画像付き横方向リスト","Common.define.smartArt.textTitledPictureBlocks":"タイトル付き画像ブロック","Common.define.smartArt.textTitlePictureLineup":"タイトル付き画像ラインアップ","Common.define.smartArt.textTrapezoidList":"台形リスト","Common.define.smartArt.textUpwardArrow":"上向き矢印","Common.define.smartArt.textVaryingWidthList":"可変幅リスト","Common.define.smartArt.textVerticalAccentList":"縦方向アクセントのリスト","Common.define.smartArt.textVerticalArrowList":"縦方向矢印リスト","Common.define.smartArt.textVerticalBendingProcess":"縦型蛇行ステップ","Common.define.smartArt.textVerticalBlockList":"縦方向ボックス リスト","Common.define.smartArt.textVerticalBoxList":"縦方向リスト","Common.define.smartArt.textVerticalBracketList":"縦方向ブラケット リスト","Common.define.smartArt.textVerticalBulletList":"縦方向箇条書きリスト","Common.define.smartArt.textVerticalChevronList":"縦方向プロセス","Common.define.smartArt.textVerticalCircleList":"縦方向円リスト","Common.define.smartArt.textVerticalCurvedList":"縦方向カーブのリスト","Common.define.smartArt.textVerticalEquation":"縦型の数式","Common.define.smartArt.textVerticalPictureAccentList":"縦方向円形画像リスト","Common.define.smartArt.textVerticalPictureList":"縦方向画像リスト","Common.define.smartArt.textVerticalProcess":"縦方向ステップ","Common.Translation.textMoreButton":"もっと","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"閲覧するため開く","Common.UI.ButtonColored.textAutoColor":"自動","Common.UI.ButtonColored.textEyedropper":"スポイト","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":"金","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":"木","Common.UI.Calendar.textShortTuesday":"火","Common.UI.Calendar.textShortWednesday":"水","Common.UI.Calendar.textYears":"年","Common.UI.ComboBorderSize.txtNoBorders":"枠線なし","Common.UI.ComboBorderSizeEditable.txtNoBorders":"枠線なし","Common.UI.ComboDataView.emptyComboText":"スタイルなし","Common.UI.ExtendedColorDialog.addButtonText":"追加する","Common.UI.ExtendedColorDialog.textCurrent":"現在","Common.UI.ExtendedColorDialog.textHexErr":"入力された値が正しくありません。
000000〜FFFFFFの数値を入力してください。","Common.UI.ExtendedColorDialog.textNew":"新しい","Common.UI.ExtendedColorDialog.textRGBErr":"入力された値が正しくありません。
0〜255の数値を入力してください。","Common.UI.HSBColorPicker.textNoColor":"色なし","Common.UI.InputFieldBtnCalendar.textDate":"日付の選択","Common.UI.InputFieldBtnPassword.textHintHidePwd":"パスワードを表示しない","Common.UI.InputFieldBtnPassword.textHintHold":"長押しでパスワード表示","Common.UI.InputFieldBtnPassword.textHintShowPwd":"パスワードを表示","Common.UI.SearchBar.textFind":"検索する","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果のハイライト","Common.UI.SearchDialog.textMatchCase":"大文字と小文字の区別","Common.UI.SearchDialog.textReplaceDef":"代替テキストを挿入する","Common.UI.SearchDialog.textSearchStart":"ここにテキストを挿入してください。","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索する","Common.UI.SearchDialog.textWholeWords":"単語全体のみ","Common.UI.SearchDialog.txtBtnHideReplace":"置換を表示しない","Common.UI.SearchDialog.txtBtnReplace":"置き換える","Common.UI.SearchDialog.txtBtnReplaceAll":"全てを置き換える","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"このドキュメントは他のユーザーによって変更されました。クリックして変更内容を保存し、更新を再読み込みしてください。","Common.UI.ThemeColorPalette.textRecentColors":"最近使った色","Common.UI.ThemeColorPalette.textStandartColors":"標準の色","Common.UI.ThemeColorPalette.textThemeColors":"テーマの色","Common.UI.Themes.txtThemeClassicLight":"明るい(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"暗い","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"ライト","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":"警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"アクセント","Common.Utils.ThemeColor.txtAqua":"水色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黒色","Common.Utils.ThemeColor.txtBlue":"青色","Common.Utils.ThemeColor.txtBrightGreen":"明るい緑","Common.Utils.ThemeColor.txtBrown":"茶色","Common.Utils.ThemeColor.txtDarkBlue":"濃い青色","Common.Utils.ThemeColor.txtDarker":"より濃い","Common.Utils.ThemeColor.txtDarkGray":"濃い灰色","Common.Utils.ThemeColor.txtDarkGreen":"濃い緑色","Common.Utils.ThemeColor.txtDarkPurple":"濃い紫色","Common.Utils.ThemeColor.txtDarkRed":"濃い赤色","Common.Utils.ThemeColor.txtDarkTeal":"濃い青緑色","Common.Utils.ThemeColor.txtDarkYellow":"濃い黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"緑色","Common.Utils.ThemeColor.txtIndigo":"インディゴ","Common.Utils.ThemeColor.txtLavender":"ラベンダー","Common.Utils.ThemeColor.txtLightBlue":"明るい青色","Common.Utils.ThemeColor.txtLighter":"より明るい","Common.Utils.ThemeColor.txtLightGray":"明るい灰色","Common.Utils.ThemeColor.txtLightGreen":"明るい緑色","Common.Utils.ThemeColor.txtLightOrange":"明るいオレンジ色","Common.Utils.ThemeColor.txtLightYellow":"明るい黄色","Common.Utils.ThemeColor.txtOrange":"オレンジ色","Common.Utils.ThemeColor.txtPink":"ピンク色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"赤色","Common.Utils.ThemeColor.txtRose":"ローズ色","Common.Utils.ThemeColor.txtSkyBlue":"スカイブルー色","Common.Utils.ThemeColor.txtTeal":"青緑色","Common.Utils.ThemeColor.txttext":"テキスト","Common.Utils.ThemeColor.txtTurquosie":"ターコイズ色","Common.Utils.ThemeColor.txtViolet":"バイオレット色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"アドレス:","Common.Views.About.txtLicensee":"ライセンス所有者","Common.Views.About.txtLicensor":"ライセンサー","Common.Views.About.txtMail":"Email:","Common.Views.About.txtPoweredBy":"によって提供されています。","Common.Views.About.txtTel":"電話番号:","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.textDoubleSpaces":"スペース2回でピリオドを入力する","Common.Views.AutoCorrectDialog.textFLCells":"テーブルセルの最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textFLDont":"次の項目の後は大文字にしない:","Common.Views.AutoCorrectDialog.textFLSentence":"文章の最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textForLangFL":"言語の例外:","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":"入力時に置き換える\n\t","Common.Views.AutoCorrectDialog.textReplaceType":"入力時にテキストを置き換える","Common.Views.AutoCorrectDialog.textReset":"リセット","Common.Views.AutoCorrectDialog.textResetAll":"デフォルト設定にリセットする","Common.Views.AutoCorrectDialog.textRestore":"復元する","Common.Views.AutoCorrectDialog.textTitle":"オートコレクト","Common.Views.AutoCorrectDialog.textWarnAddFL":"例外は、大文字または小文字の文字のみを含む必要があります。","Common.Views.AutoCorrectDialog.textWarnAddRec":"認識される関数には、大文字または小文字のAからZまでの文字のみを含める必要があります。","Common.Views.AutoCorrectDialog.textWarnResetFL":"追加した例外は削除され、削除した例外は元に戻ります。続行しますか?","Common.Views.AutoCorrectDialog.textWarnResetRec":"追加した式はすべて削除され、削除された式が復元されます。 このまま続けますか?","Common.Views.AutoCorrectDialog.warnReplace":"%1のオートコレクトのエントリはすでに存在します。 置き換えますか?","Common.Views.AutoCorrectDialog.warnReset":"追加したオートコレクトはすべて削除され、変更されたものは元の値に復元されます。 このまま続けますか?","Common.Views.AutoCorrectDialog.warnRestore":"%1のオートコレクトエントリは元の値にリセットされます。 続けますか?","Common.Views.Chat.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"ここにメッセージを挿入する","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.mniFilterComments":"コメントの表示","Common.Views.Comments.mniFilterGroups":"グループでフィルター","Common.Views.Comments.mniPositionAsc":"上から","Common.Views.Comments.mniPositionDesc":"下から","Common.Views.Comments.textAdd":"追加する","Common.Views.Comments.textAddComment":"コメントを追加","Common.Views.Comments.textAddCommentToDoc":"ドキュメントにコメントを追加","Common.Views.Comments.textAddReply":"返信を追加","Common.Views.Comments.textAll":"すべて","Common.Views.Comments.textAnonym":"ゲスト","Common.Views.Comments.textCancel":"キャンセル","Common.Views.Comments.textClose":"閉じる","Common.Views.Comments.textClosePanel":"コメントを閉じる","Common.Views.Comments.textComment":"コメント","Common.Views.Comments.textComments":"コメント","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"ここにコメントを挿入してください。","Common.Views.Comments.textHintAddComment":"コメントを追加","Common.Views.Comments.textOpen":"開く","Common.Views.Comments.textOpenAgain":"もう一度開く","Common.Views.Comments.textReply":"返信する","Common.Views.Comments.textResolve":"解決する","Common.Views.Comments.textResolved":"解決済み","Common.Views.Comments.textSort":"コメントを並べ替える","Common.Views.Comments.textSortFilter":"コメントの並べ替えとフィルター","Common.Views.Comments.textSortFilterMore":"並び替え、フィルター、その他","Common.Views.Comments.textSortMore":"並び替えなど","Common.Views.Comments.textViewResolved":"コメントを再開する権限がありません","Common.Views.Comments.txtEmpty":"ドキュメントにはコメントがありません。","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"エディターツールバーのボタンやコンテキストメニューの操作によるコピー、カット、ペーストの動作は、このエディタータブ内でのみ実行されます。

エディタータブ以外のアプリケーションとの間でコピーまたは貼り付けを行うには、次のキーボードの組み合わせを使用して下さい:","Common.Views.CopyWarningDialog.textTitle":"コピー,切り取り,貼り付け","Common.Views.CopyWarningDialog.textToCopy":"コピー","Common.Views.CopyWarningDialog.textToCut":"切り取り","Common.Views.CopyWarningDialog.textToPaste":"貼り付け","Common.Views.CustomizeQuickAccessDialog.textDownload":"ダウンロード","Common.Views.CustomizeQuickAccessDialog.textMsg":"クイックアクセスツールバーに表示されるコマンドをチェックしてください","Common.Views.CustomizeQuickAccessDialog.textPrint":"印刷","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"クイックプリント","Common.Views.CustomizeQuickAccessDialog.textRedo":"やり直す","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textStartOver":"先頭から表示する","Common.Views.CustomizeQuickAccessDialog.textTitle":"クイックアクセスのカスタマイズ","Common.Views.CustomizeQuickAccessDialog.textUndo":"元に戻す","Common.Views.DocumentAccessDialog.textLoading":"読み込み中...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.DocumentPropertyDialog.errorDate":"カレンダーから値を選択して日付として保存できます。
値を手動で入力した場合は、テキストとして保存されます。","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"いいえ","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"はい","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"プロパティはタイトルが必要です","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"タイトル","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"「はい」または「いいえ」","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"日付","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"タイプ","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"数","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"有効な数値を入力してください","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"テキスト","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"プロパティには値が必要です","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"値","Common.Views.DocumentPropertyDialog.txtTitle":"新しいドキュメントのプロパティ","Common.Views.Draw.hintEraser":"消しゴム","Common.Views.Draw.hintSelect":"選択","Common.Views.Draw.txtEraser":"消しゴム","Common.Views.Draw.txtHighlighter":"蛍光ペン","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"ペン","Common.Views.Draw.txtSelect":"選択","Common.Views.Draw.txtSize":"サイズ","Common.Views.ExternalDiagramEditor.textTitle":"グラフエディター","Common.Views.ExternalEditor.textClose":"閉じる","Common.Views.ExternalEditor.textSave":"保存&終了","Common.Views.ExternalLinksDlg.closeButtonText":"閉じる","Common.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","Common.Views.ExternalLinksDlg.textChange":"変更元","Common.Views.ExternalLinksDlg.textDelete":"リンクの解除","Common.Views.ExternalLinksDlg.textDeleteAll":"すべてのリンクを解除","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"オープンソース","Common.Views.ExternalLinksDlg.textSource":"ソース","Common.Views.ExternalLinksDlg.textStatus":"ステータス","Common.Views.ExternalLinksDlg.textUnknown":"不明","Common.Views.ExternalLinksDlg.textUpdate":"値の更新","Common.Views.ExternalLinksDlg.textUpdateAll":"すべて更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部リンク","Common.Views.ExternalOleEditor.textTitle":"スプレッドシートエディター","Common.Views.FormatSettingsDialog.textCategory":"カテゴリ","Common.Views.FormatSettingsDialog.textDecimal":"小数点","Common.Views.FormatSettingsDialog.textFormat":"フォーマット","Common.Views.FormatSettingsDialog.textLinked":"ソースにリンクした","Common.Views.FormatSettingsDialog.textLocale":"ロケール設定","Common.Views.FormatSettingsDialog.textSeparator":"1000の区切り文字を使用する","Common.Views.FormatSettingsDialog.textSymbols":"記号","Common.Views.FormatSettingsDialog.textTitle":"数値の書式","Common.Views.FormatSettingsDialog.txtAccounting":"会計","Common.Views.FormatSettingsDialog.txtAs10":"10分の5(5/10)として","Common.Views.FormatSettingsDialog.txtAs100":"100分の50(50/100)として","Common.Views.FormatSettingsDialog.txtAs16":"16分の8(8/16)として","Common.Views.FormatSettingsDialog.txtAs2":"2分の1(1/2)として","Common.Views.FormatSettingsDialog.txtAs4":"4分の2(2/4)として","Common.Views.FormatSettingsDialog.txtAs8":"8分の4(4/8)として","Common.Views.FormatSettingsDialog.txtCurrency":"通貨","Common.Views.FormatSettingsDialog.txtCustom":"カスタム","Common.Views.FormatSettingsDialog.txtCustomWarning":"カスタム番号の形式を慎重に入力してください。 Spreadsheet Editorは、xlsxファイルに影響を与える可能性のあるエラーについてカスタム形式をチェックしません。","Common.Views.FormatSettingsDialog.txtDate":"日付","Common.Views.FormatSettingsDialog.txtFraction":"分数","Common.Views.FormatSettingsDialog.txtGeneral":"標準","Common.Views.FormatSettingsDialog.txtNone":"なし","Common.Views.FormatSettingsDialog.txtNumber":"数字","Common.Views.FormatSettingsDialog.txtPercentage":"パーセンテージ","Common.Views.FormatSettingsDialog.txtSample":"例:","Common.Views.FormatSettingsDialog.txtScientific":"学術的","Common.Views.FormatSettingsDialog.txtText":"テキスト","Common.Views.FormatSettingsDialog.txtTime":"時間","Common.Views.FormatSettingsDialog.txtUpto1":"最大1桁(1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"最大2桁(12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"最大3桁(131/135)","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りとしてマークする","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textBack":"ファイルの場所を開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideNotes":"ノートを非表示にする","Common.Views.Header.textHideStatusBar":"ステータスバーを表示しない","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textSaveBegin":"保存中...","Common.Views.Header.textSaveChanged":"変更済み","Common.Views.Header.textSaveEnd":"全ての変更点が保存されました","Common.Views.Header.textSaveExpander":"全ての変更点が保存されました","Common.Views.Header.textShare":"共有","Common.Views.Header.textStartOver":"先頭から表示する","Common.Views.Header.textZoom":"ズーム","Common.Views.Header.tipAccessRights":"文書のアクセス許可の管理","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDownload":"ファイルをダウンロードする","Common.Views.Header.tipGoEdit":"現在のファイルを編集する","Common.Views.Header.tipPrint":"ファイルを印刷する","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直し","Common.Views.Header.tipSave":"保存する","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipStartOver":"スライドショーを最初から開始する","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUndock":"別のウィンドウにドッキングを解除する","Common.Views.Header.tipUsers":"ユーザーを表示する","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.textHighlightDeleted":"削除されたところをハイライトする","Common.Views.History.textMore":"もっと見る","Common.Views.History.textRestore":"復元する","Common.Views.History.textShow":"拡張する","Common.Views.History.textShowAll":"変更の詳細を表示する","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"バージョン履歴","Common.Views.ImageFromUrlDialog.textUrl":"画像URLの貼り付け:","Common.Views.ImageFromUrlDialog.txtEmpty":"このフィールドは必須項目です","Common.Views.ImageFromUrlDialog.txtNotUrl":"リンクの入力内容は「http://www.example.com」形式のURLである必要があります。","Common.Views.InsertTableDialog.textInvalidRowsCols":"有効な行と列の数を指定する必要があります。","Common.Views.InsertTableDialog.txtColumns":"列数","Common.Views.InsertTableDialog.txtMaxText":"このフィールドの最大値は{0}です。","Common.Views.InsertTableDialog.txtMinText":"このフィールドの最小値は{0}です。","Common.Views.InsertTableDialog.txtRows":"行数","Common.Views.InsertTableDialog.txtTitle":"表のサイズ","Common.Views.InsertTableDialog.txtTitleSplit":"セルの分割","Common.Views.LanguageDialog.labelSelect":"文書の言語を選択する","Common.Views.ListSettingsDialog.textBulleted":"箇条書き形式","Common.Views.ListSettingsDialog.textFromFile":"ファイルから","Common.Views.ListSettingsDialog.textFromStorage":"ストレージから","Common.Views.ListSettingsDialog.textFromUrl":"URLから","Common.Views.ListSettingsDialog.textNumbering":"番号付き","Common.Views.ListSettingsDialog.textSelect":"選択する","Common.Views.ListSettingsDialog.tipChange":"箇条書きを変更","Common.Views.ListSettingsDialog.txtBullet":"箇条書き","Common.Views.ListSettingsDialog.txtColor":"色","Common.Views.ListSettingsDialog.txtImage":"画像","Common.Views.ListSettingsDialog.txtImport":"インポート","Common.Views.ListSettingsDialog.txtNewBullet":"新しい行頭文字","Common.Views.ListSettingsDialog.txtNewImage":"新しい画像","Common.Views.ListSettingsDialog.txtNone":"なし","Common.Views.ListSettingsDialog.txtOfText":"テキストの%","Common.Views.ListSettingsDialog.txtSize":"サイズ","Common.Views.ListSettingsDialog.txtStart":"から開始","Common.Views.ListSettingsDialog.txtSymbol":"記号","Common.Views.ListSettingsDialog.txtTitle":"リストの設定","Common.Views.ListSettingsDialog.txtType":"タイプ","Common.Views.MacrosAiDialog.textAreaPlaceholder":"クエリのプロンプトを入力してください","Common.Views.MacrosAiDialog.textCreate":"作成","Common.Views.MacrosDialog.textAutostart":"自動起動","Common.Views.MacrosDialog.textConvertFromVBA":"VBAから変換する","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"マクロをVBAから変換する","Common.Views.MacrosDialog.textCopy":"コピー","Common.Views.MacrosDialog.textCreateFromDesc":"説明から作成する","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"マクロを説明から作成する","Common.Views.MacrosDialog.textCustomFunction":"カスタム関数","Common.Views.MacrosDialog.textCustomFunctions":"カスタム関数","Common.Views.MacrosDialog.textDebug":"デバッグ","Common.Views.MacrosDialog.textDelete":"削除","Common.Views.MacrosDialog.textFunctions":"関数","Common.Views.MacrosDialog.textLoading":"読み込んでいます...","Common.Views.MacrosDialog.textMacro":"マクロ","Common.Views.MacrosDialog.textMacros":"マクロ","Common.Views.MacrosDialog.textMakeAutostart":"自動起動に設定","Common.Views.MacrosDialog.textRename":"名前の変更","Common.Views.MacrosDialog.textRun":"実行","Common.Views.MacrosDialog.textSave":"保存","Common.Views.MacrosDialog.textTitle":"マクロ","Common.Views.MacrosDialog.textUnMakeAutostart":"自動起動を解除","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"カスタム関数を追加","Common.Views.MacrosDialog.tipFunctionCopy":"カスタム関数のコピー","Common.Views.MacrosDialog.tipFunctionDelete":"カスタム関数の削除","Common.Views.MacrosDialog.tipFunctionRename":"カスタム関数名の変更","Common.Views.MacrosDialog.tipMacrosAdd":"マクロを追加","Common.Views.MacrosDialog.tipMacrosCopy":"マクロのコピー","Common.Views.MacrosDialog.tipMacrosDebug":"マクロのデバッグ","Common.Views.MacrosDialog.tipMacrosRename":"マクロ名の変更","Common.Views.MacrosDialog.tipMacrosRun":"マクロの実行","Common.Views.MacrosDialog.tipRedo":"やり直す","Common.Views.MacrosDialog.tipUndo":"元に戻す","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":"この文書を保護するためのパスワードを設定してください。","Common.Views.PasswordDialog.txtIncorrectPwd":"先に入力したパスワードと一致しません。","Common.Views.PasswordDialog.txtPassword":"パスワード","Common.Views.PasswordDialog.txtRepeat":"パスワードを再入力","Common.Views.PasswordDialog.txtTitle":"パスワードの設定","Common.Views.PasswordDialog.txtWarning":"警告: パスワードを忘れると元に戻せません。安全な場所に記録してください。","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除する","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"開始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.Plugins.tipMore":"もっと","Common.Views.Protection.hintAddPwd":"パスワードを使用して暗号化する","Common.Views.Protection.hintDelPwd":"パスワードの削除","Common.Views.Protection.hintPwd":"パスワードを変更するか削除する","Common.Views.Protection.hintSignature":"デジタル署名かデジタル署名行を追加する","Common.Views.Protection.txtAddPwd":"パスワードを追加","Common.Views.Protection.txtChangePwd":"パスワードを変更する","Common.Views.Protection.txtDeletePwd":"パスワードを削除する","Common.Views.Protection.txtEncrypt":"暗号化する","Common.Views.Protection.txtInvisibleSignature":"デジタル署名を追加","Common.Views.Protection.txtSignature":"署名","Common.Views.Protection.txtSignatureLine":"署名欄を追加","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","Common.Views.RenameDialog.textName":"ファイル名","Common.Views.RenameDialog.txtInvalidName":"ファイル名に次の文字を使うことはできません。","Common.Views.ReviewChanges.hintNext":"次の変更箇所へ","Common.Views.ReviewChanges.hintPrev":"前の​​変更箇所へ","Common.Views.ReviewChanges.strFast":"高速","Common.Views.ReviewChanges.strFastDesc":"リアルタイム共同編集モードです。すべての変更は自動的に保存されます。","Common.Views.ReviewChanges.strStrict":"厳格","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":"変更履歴","Common.Views.ReviewChanges.tipReviewView":"変更内容を表示するモードを選択してください","Common.Views.ReviewChanges.tipSetDocLang":"文書の言語を設定する","Common.Views.ReviewChanges.tipSetSpelling":"スペルチェック","Common.Views.ReviewChanges.tipSharing":"文書のアクセス許可の管理","Common.Views.ReviewChanges.txtAccept":"承諾","Common.Views.ReviewChanges.txtAcceptAll":"すべての変更を承諾する","Common.Views.ReviewChanges.txtAcceptChanges":"変更を承諾する","Common.Views.ReviewChanges.txtAcceptCurrent":"現在の変更を承諾する","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":"最終版","Common.Views.ReviewChanges.txtHistory":"バージョン履歴","Common.Views.ReviewChanges.txtMarkup":"全ての変更(編集)","Common.Views.ReviewChanges.txtMarkupCap":"マークアップ","Common.Views.ReviewChanges.txtNext":"次へ","Common.Views.ReviewChanges.txtOriginal":"すべての変更が拒否されました(プレビュー)","Common.Views.ReviewChanges.txtOriginalCap":"初版","Common.Views.ReviewChanges.txtPrev":"前回の","Common.Views.ReviewChanges.txtReject":"拒否する","Common.Views.ReviewChanges.txtRejectAll":"すべての変更を拒否する","Common.Views.ReviewChanges.txtRejectChanges":"変更を拒否する","Common.Views.ReviewChanges.txtRejectCurrent":"現在の変更を拒否する","Common.Views.ReviewChanges.txtSharing":"共有","Common.Views.ReviewChanges.txtSpelling":"スペルチェック","Common.Views.ReviewChanges.txtTurnon":"変更履歴","Common.Views.ReviewChanges.txtView":"表示モード","Common.Views.ReviewPopover.textAdd":"追加する","Common.Views.ReviewPopover.textAddReply":"返信を追加","Common.Views.ReviewPopover.textCancel":"キャンセル","Common.Views.ReviewPopover.textClose":"閉じる","Common.Views.ReviewPopover.textComment":"コメント","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"ここにコメントを入力してください","Common.Views.ReviewPopover.textMention":"+メンションされるユーザーは文書にアクセスのメール通知を送信します","Common.Views.ReviewPopover.textMentionNotify":"+メンションされるユーザーはメールで通知されます","Common.Views.ReviewPopover.textOpenAgain":"もう一度開く","Common.Views.ReviewPopover.textReply":"返信する","Common.Views.ReviewPopover.textResolve":"解決する","Common.Views.ReviewPopover.textViewResolved":"コメントを再開する権限がありません","Common.Views.ReviewPopover.txtDeleteTip":"削除する","Common.Views.ReviewPopover.txtEditTip":"編集する","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字を区別する","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索する","Common.Views.SearchPanel.textFindAndReplace":"検索して置換する","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textNoMatches":"一致する結果がありません","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"置換する","Common.Views.SearchPanel.textReplaceAll":"全てを置換する","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.ShapeShadowDialog.txtAngle":"角","Common.Views.ShapeShadowDialog.txtDistance":"距離","Common.Views.ShapeShadowDialog.txtSize":"サイズ","Common.Views.ShapeShadowDialog.txtTitle":"影の調整","Common.Views.ShapeShadowDialog.txtTransparency":"透過性","Common.Views.ShortcutsDialog.txtDescription":"Description","Common.Views.ShortcutsDialog.txtEmpty":"No matches found. Adjust your search.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restore All to Defaults","Common.Views.ShortcutsDialog.txtRestoreContinue":"Do you want to continue?","Common.Views.ShortcutsDialog.txtRestoreDescription":"All shortcuts settings will be restored to default.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restore to default","Common.Views.ShortcutsDialog.txtSearch":"Search","Common.Views.ShortcutsDialog.txtTitle":"Keyboard Shortcuts","Common.Views.ShortcutsEditDialog.txtAction":"Action","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Type desired shortcut","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"The shortcut used by actions %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"The shortcut used by actions %1 and can’t be changed","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"The shortcut used by action %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"The shortcut used by action %1 and can’t be changed","Common.Views.ShortcutsEditDialog.txtNewShortcut":"New shortcut","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Do you want to continue?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"All shortcuts for action “%1” will be restored to default.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restore to default","Common.Views.ShortcutsEditDialog.txtTitle":"Edit shortcut","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Type desired shortcut","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":"画像を選択する","Common.Views.SignDialog.textSignature":"署名は次のようになります:","Common.Views.SignDialog.textTitle":"文書に署名する","Common.Views.SignDialog.textUseImage":"または「画像を選択」をクリックして、画像を署名として使用します","Common.Views.SignDialog.textValid":"%1から%2まで有効","Common.Views.SignDialog.tipFontName":"フォント名","Common.Views.SignDialog.tipFontSize":"フォントのサイズ","Common.Views.SignSettingsDialog.textAllowComment":"署名者が署名ダイアログボックスにコメントを追加できるようにする","Common.Views.SignSettingsDialog.textDefInstruction":"このドキュメントに署名する前に、署名するコンテンツが正しいことを確認してください。","Common.Views.SignSettingsDialog.textInfoEmail":"署名候補者のメールアドレス","Common.Views.SignSettingsDialog.textInfoName":"署名候補者","Common.Views.SignSettingsDialog.textInfoTitle":"署名候補者の役職","Common.Views.SignSettingsDialog.textInstructions":"署名者への説明書","Common.Views.SignSettingsDialog.textShowDate":"署名欄に署名日を表示する","Common.Views.SignSettingsDialog.textTitle":"署名の設定","Common.Views.SignSettingsDialog.txtEmpty":"このフィールドは必須項目です","Common.Views.SymbolTableDialog.textCharacter":"文字","Common.Views.SymbolTableDialog.textCode":"UnicodeHEX値","Common.Views.SymbolTableDialog.textCopyright":"著作権マーク","Common.Views.SymbolTableDialog.textDCQuote":"二重引用符を終了する","Common.Views.SymbolTableDialog.textDOQuote":"二重の引用符(左)","Common.Views.SymbolTableDialog.textEllipsis":"水平の省略記号","Common.Views.SymbolTableDialog.textEmDash":"全角ダッシュ","Common.Views.SymbolTableDialog.textEmSpace":"全角スペース","Common.Views.SymbolTableDialog.textEnDash":"半角ダッシュ","Common.Views.SymbolTableDialog.textEnSpace":"半角スペース","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.DocumentHolder.textLongName":"255文字以内の名前を入力してください。","PE.Controllers.DocumentHolder.textNameLayout":"レイアウト名","PE.Controllers.DocumentHolder.textNameMaster":"マスター名","PE.Controllers.DocumentHolder.textRenameTitleLayout":"レイアウト名を変更","PE.Controllers.DocumentHolder.textRenameTitleMaster":"マスター名の変更","PE.Controllers.LeftMenu.leavePageText":"変更を保存せずにドキュメントを閉じると変更が失われます。
「キャンセル」をクリックし、「保存」をクリックして保存してください。「OK」をクリックすると、保存されていないすべての変更が破棄されます。","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.textSelectPath":"ファイルのコピーを保存するために新しいタイトルを入力してください","PE.Controllers.LeftMenu.txtUntitled":"タイトルなし","PE.Controllers.Main.applyChangesTextText":"データの読み込み中...","PE.Controllers.Main.applyChangesTitleText":"データの読み込み中","PE.Controllers.Main.confirmMaxChangesSize":"アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。","PE.Controllers.Main.convertationTimeoutText":"変換のタイムアウトを超過しました。","PE.Controllers.Main.criticalErrorExtText":"OKボタンを押すとドキュメントリストに戻ります。","PE.Controllers.Main.criticalErrorExtTextClose":"[OK]を押してエディターを閉じます。","PE.Controllers.Main.criticalErrorTitle":"エラー","PE.Controllers.Main.downloadErrorText":"ダウンロードに失敗しました","PE.Controllers.Main.downloadTextText":"プレゼンテーションのダウンロード中...","PE.Controllers.Main.downloadTitleText":"プレゼンテーションのダウンロード中","PE.Controllers.Main.errorAccessDeny":"権限のない操作を実行しようとしています。
ドキュメントサーバーの管理者にご連絡ください。","PE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません","PE.Controllers.Main.errorCannotPasteImg":"この画像をクリップボードから貼り付けることはできませんが、端末に保存してそこから挿入したり、\nテキストを含まない画像をコピーしてプレゼンテーションに貼り付けたりすることが可能です。","PE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。現在、文書を編集することができません。","PE.Controllers.Main.errorComboSeries":"組み合わせチャートを作成するには、最低2つのデータを選択します。","PE.Controllers.Main.errorConnectToServer":"文書を保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
OKボタンをクリックするとドキュメントをダウンロードするように求められます。","PE.Controllers.Main.errorCopyDisabled":"For security reasons, the contents of this document cannot be copied.","PE.Controllers.Main.errorDatabaseConnection":"外部エラーです。
データベース接続エラーです。この問題が解決しない場合は、サポートにお問い合わせください。 ","PE.Controllers.Main.errorDataEncrypted":"暗号化された変更を受け取りましたが、解読できません。","PE.Controllers.Main.errorDataRange":"データ範囲が正しくありません。","PE.Controllers.Main.errorDefaultMessage":"エラーコード: %1","PE.Controllers.Main.errorDirectUrl":"ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。","PE.Controllers.Main.errorEditingDownloadas":"文書の処理中にエラーが発生しました。
コンピューターにファイルのバックアップコピーを保存するために、「名前を付けてダウンロード」をご使用ください。","PE.Controllers.Main.errorEditingSaveas":"文書の処理中にエラーが発生しました。
コンピューターにファイルのバックアップを保存するために、「名前を付けてダウンロード」をご使用ください。","PE.Controllers.Main.errorEmailClient":"メールクライアントが見つかりませんでした。","PE.Controllers.Main.errorFilePassProtect":"文書がパスワードで保護されているため、開くことができません。","PE.Controllers.Main.errorFileSizeExceed":"ファイルサイズがサーバーで設定された制限を超過しています。
Documentサーバー管理者に詳細をお問い合わせください。","PE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。コンピューターにファイルを保存するために、「名前を付けてダウンロード」を使用するか、または後で再度お試しください。","PE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","PE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","PE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","PE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","PE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","PE.Controllers.Main.errorKeyEncrypt":"不明なキーの記述子","PE.Controllers.Main.errorKeyExpire":"キー記述子の有効期限が切れました","PE.Controllers.Main.errorLoadingFont":"フォントが読み込まれていません。
ドキュメントサーバーの管理者に連絡してください。","PE.Controllers.Main.errorSaveWatermark":"このファイルには、別のドメインにリンクされた透かし画像が含まれています。
PDFで見えるようにするには、文書と同じドメインからリンクされるように透かし画像を更新するか、コンピュータからアップロードしてください。","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":"ドキュメントセキュリティトークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。","PE.Controllers.Main.errorTokenExpire":"ドキュメントセキュリティトークンの有効期限が切れています。
ドキュメントサーバーの管理者に連絡してください。","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":"このプレゼンテーションで保存されていない変更はすべて失われます。
保存するには「キャンセル」をクリックし、「保存」をクリックしてください。「OK 」をクリックすると、保存されていないすべての変更が破棄されます。","PE.Controllers.Main.loadFontsTextText":"データの読み込み中...","PE.Controllers.Main.loadFontsTitleText":"データの読み込み中","PE.Controllers.Main.loadFontTextText":"データの読み込み中...","PE.Controllers.Main.loadFontTitleText":"データの読み込み中","PE.Controllers.Main.loadImagesTextText":"画像の読み込み中...","PE.Controllers.Main.loadImagesTitleText":"画像の読み込み中","PE.Controllers.Main.loadImageTextText":"画像の読み込み中...","PE.Controllers.Main.loadImageTitleText":"画像の読み込み中","PE.Controllers.Main.loadingDocumentTextText":"プレゼンテーションの読み込み中...","PE.Controllers.Main.loadingDocumentTitleText":"プレゼンテーションの読み込み中...","PE.Controllers.Main.loadThemeTextText":"テーマの読み込み中...","PE.Controllers.Main.loadThemeTitleText":"テーマの読み込み中","PE.Controllers.Main.notcriticalErrorTitle":"警告","PE.Controllers.Main.openErrorText":"ファイルを読み込み中にエラーが発生しました。","PE.Controllers.Main.openTextText":"プレゼンテーションの読み込み中...","PE.Controllers.Main.openTitleText":"プレゼンテーションの読み込み中","PE.Controllers.Main.printTextText":"プレゼンテーションの印刷中...","PE.Controllers.Main.printTitleText":"プレゼンテーションの印刷中","PE.Controllers.Main.reloadButtonText":"ページを再読み込み","PE.Controllers.Main.requestEditFailedMessageText":"現在、誰かがこのプレゼンテーションを編集しています。後で再試行してください。","PE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","PE.Controllers.Main.saveErrorText":"ファイルを保存中にエラーが発生しました。","PE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","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.textConnectionLost":"接続中です。接続設定をご確認ください。","PE.Controllers.Main.textContactUs":"営業部に連絡する","PE.Controllers.Main.textContinue":"続ける","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":"ライセンス制限に達しました","PE.Controllers.Main.textObject":"オブジェクト","PE.Controllers.Main.textPaidFeature":"有料機能","PE.Controllers.Main.textReconnect":"接続が回復しました","PE.Controllers.Main.textRemember":"すべてのファイルに選択を保存する","PE.Controllers.Main.textRememberMacros":"すべてのマクロに、この選択を記憶する","PE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","PE.Controllers.Main.textRenameLabel":"コラボレーションに使用する名前を入力して下さい。","PE.Controllers.Main.textRequestMacros":"マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?","PE.Controllers.Main.textShape":"図形","PE.Controllers.Main.textStrict":"厳格モード","PE.Controllers.Main.textText":"テキスト","PE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","PE.Controllers.Main.textTryUndoRedo":"高速共同編集モードでは、元に戻す/やり直し機能は無効になります。
「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。","PE.Controllers.Main.textTryUndoRedoWarn":"高速共同編集モードでは、元に戻す/やり直し機能が無効になります。","PE.Controllers.Main.textUndo":"元に戻す","PE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","PE.Controllers.Main.textUpdating":"アップデート中","PE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","PE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","PE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","PE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","PE.Controllers.Main.titleReadOnly":"閲覧専用モード","PE.Controllers.Main.titleServerVersion":"編集者が更新されました","PE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","PE.Controllers.Main.txtAddFirstSlide":"クリックして最初のスライドを追加","PE.Controllers.Main.txtAddNotes":"クリックでメモを追加","PE.Controllers.Main.txtAnimationPane":"アニメーションパネル","PE.Controllers.Main.txtArt":"ここにテキストを入力","PE.Controllers.Main.txtBasicShapes":"基本図形","PE.Controllers.Main.txtButtons":"ボタン","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.txtEnd":"終了: ${0}s","PE.Controllers.Main.txtErrorLoadHistory":"履歴の読み込みに失敗しました。","PE.Controllers.Main.txtFiguredArrows":"図形矢印","PE.Controllers.Main.txtFirstSlide":"最初のスライド","PE.Controllers.Main.txtFooter":"フッター","PE.Controllers.Main.txtHeader":"ヘッダー","PE.Controllers.Main.txtImage":"画像","PE.Controllers.Main.txtLastSlide":"最後のスライド","PE.Controllers.Main.txtLines":"線","PE.Controllers.Main.txtLoading":"読み込み中...","PE.Controllers.Main.txtLoop":"ループ: ${0}s","PE.Controllers.Main.txtMath":"数学","PE.Controllers.Main.txtMedia":"メディア","PE.Controllers.Main.txtNeedSynchronize":"更新があります","PE.Controllers.Main.txtNextSlide":"次のスライド","PE.Controllers.Main.txtNone":"なし","PE.Controllers.Main.txtPicture":"画像","PE.Controllers.Main.txtPlayAll":"すべてを再生","PE.Controllers.Main.txtPlayFrom":"再生","PE.Controllers.Main.txtPlaySelected":"選択された項目を再生","PE.Controllers.Main.txtPrevSlide":"前のスライド","PE.Controllers.Main.txtRectangles":"四角形","PE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","PE.Controllers.Main.txtScheme_Aspect":"アスペクト","PE.Controllers.Main.txtScheme_Blue":"青色","PE.Controllers.Main.txtScheme_Blue_Green":"ブルーグリーン","PE.Controllers.Main.txtScheme_Blue_II":"青色II","PE.Controllers.Main.txtScheme_Blue_Warm":"ブルーウォーム","PE.Controllers.Main.txtScheme_Grayscale":"グレースケール","PE.Controllers.Main.txtScheme_Green":"緑色","PE.Controllers.Main.txtScheme_Green_Yellow":"黄緑色","PE.Controllers.Main.txtScheme_Marquee":"マーキー","PE.Controllers.Main.txtScheme_Median":"中位数","PE.Controllers.Main.txtScheme_Office":"Office","PE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","PE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","PE.Controllers.Main.txtScheme_Orange":"オレンジ色","PE.Controllers.Main.txtScheme_Orange_Red":"オレンジ赤色","PE.Controllers.Main.txtScheme_Paper":"紙","PE.Controllers.Main.txtScheme_Red":"赤色","PE.Controllers.Main.txtScheme_Red_Orange":"オレンジ赤色","PE.Controllers.Main.txtScheme_Red_Violet":"赤紫色","PE.Controllers.Main.txtScheme_Slipstream":"スリップストリーム","PE.Controllers.Main.txtScheme_Violet":"バイオレット色","PE.Controllers.Main.txtScheme_Violet_II":"バイオレット II","PE.Controllers.Main.txtScheme_Yellow":"黄色","PE.Controllers.Main.txtScheme_Yellow_Orange":"オレンジ黄色","PE.Controllers.Main.txtSeries":"系列","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":"角","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":"半フレーム","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":"爆発 1","PE.Controllers.Main.txtShape_irregularSeal2":"爆発 2","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":"1つの角を丸めた四角形","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":"1つの角を切り取った四角形","PE.Controllers.Main.txtShape_snip2DiagRect":"対角する2つの角を切り取った四角形","PE.Controllers.Main.txtShape_snip2SameRect":"片側の2つの角を切り取った四角形","PE.Controllers.Main.txtShape_snipRoundRect":"1つの角を切り取り1つの角を丸めた四角形","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":"グラフとテキスト","PE.Controllers.Main.txtSldLtTClipArtAndTx":"クリップアートとテキスト","PE.Controllers.Main.txtSldLtTClipArtAndVertTx":"クリップアートと縦書きテキスト","PE.Controllers.Main.txtSldLtTCust":"カスタム","PE.Controllers.Main.txtSldLtTDgm":"図表","PE.Controllers.Main.txtSldLtTFourObj":"四つのオブジェクト","PE.Controllers.Main.txtSldLtTMediaAndTx":"メディアとテキスト","PE.Controllers.Main.txtSldLtTObj":"タイトルとオブジェクト","PE.Controllers.Main.txtSldLtTObjAndTwoObj":"一つのオブジェクトと二つのオブジェクト","PE.Controllers.Main.txtSldLtTObjAndTx":"オブジェクトとテキスト","PE.Controllers.Main.txtSldLtTObjOnly":"オブジェクト","PE.Controllers.Main.txtSldLtTObjOverTx":"テキストの上にオブジェクト","PE.Controllers.Main.txtSldLtTObjTx":"タイトル、オブジェクトと説明文","PE.Controllers.Main.txtSldLtTPicTx":"画像と説明文","PE.Controllers.Main.txtSldLtTSecHead":"セクション見出し","PE.Controllers.Main.txtSldLtTTbl":"テーブル","PE.Controllers.Main.txtSldLtTTitle":"タイトル","PE.Controllers.Main.txtSldLtTTitleOnly":"タイトルのみ","PE.Controllers.Main.txtSldLtTTwoColTx":"2段組みテキスト","PE.Controllers.Main.txtSldLtTTwoObj":"二つのオブジェクト","PE.Controllers.Main.txtSldLtTTwoObjAndObj":"二つのオブジェクトとオブジェクト","PE.Controllers.Main.txtSldLtTTwoObjAndTx":"二つのオブジェクトとテキスト","PE.Controllers.Main.txtSldLtTTwoObjOverTx":"テキストの上に二つのオブジェクト","PE.Controllers.Main.txtSldLtTTwoTxTwoObj":"二つのテキストと二つのオブジェクト","PE.Controllers.Main.txtSldLtTTx":"テキスト","PE.Controllers.Main.txtSldLtTTxAndChart":"テキストとグラフ","PE.Controllers.Main.txtSldLtTTxAndClipArt":"テキストとクリップアート","PE.Controllers.Main.txtSldLtTTxAndMedia":"テキストとメディア","PE.Controllers.Main.txtSldLtTTxAndObj":"テキストとオブジェクト","PE.Controllers.Main.txtSldLtTTxAndTwoObj":"テキストと二つのオブジェクト","PE.Controllers.Main.txtSldLtTTxOverObj":"オブジェクトの上にテキスト","PE.Controllers.Main.txtSldLtTVertTitleAndTx":"縦書きタイトルとテキスト","PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart":"縦書きタイトルとグラフの上にテキスト","PE.Controllers.Main.txtSldLtTVertTx":"縦書きテキスト","PE.Controllers.Main.txtSlideNumber":"スライド番号","PE.Controllers.Main.txtSlideSubtitle":"スライドの小見出し","PE.Controllers.Main.txtSlideText":"スライドのテキスト","PE.Controllers.Main.txtSlideTitle":"スライドのタイトル","PE.Controllers.Main.txtStarsRibbons":"スター&リボン","PE.Controllers.Main.txtStart":"スタート: ${0}s","PE.Controllers.Main.txtStop":"停止","PE.Controllers.Main.txtTheme_basic":"基本","PE.Controllers.Main.txtTheme_blank":"空白","PE.Controllers.Main.txtTheme_classic":"クラシック","PE.Controllers.Main.txtTheme_corner":"角","PE.Controllers.Main.txtTheme_dotted":"ドット付き","PE.Controllers.Main.txtTheme_green":"グリーン","PE.Controllers.Main.txtTheme_green_leaf":"緑色の葉","PE.Controllers.Main.txtTheme_lines":"線","PE.Controllers.Main.txtTheme_office":"Office","PE.Controllers.Main.txtTheme_office_theme":"Officeテーマ","PE.Controllers.Main.txtTheme_official":"公式","PE.Controllers.Main.txtTheme_pixel":"ピクセル","PE.Controllers.Main.txtTheme_safari":"Safari","PE.Controllers.Main.txtTheme_turtle":"亀","PE.Controllers.Main.txtXAxis":"X軸","PE.Controllers.Main.txtYAxis":"Y軸","PE.Controllers.Main.txtZoom":"拡大図","PE.Controllers.Main.unknownErrorText":"不明なエラーです。","PE.Controllers.Main.unsupportedBrowserErrorText":"お使いのブラウザはサポートされていません。","PE.Controllers.Main.updateChartText":"チャートのデータが更新中です…","PE.Controllers.Main.uploadImageExtMessage":"不明な画像形式です。","PE.Controllers.Main.uploadImageFileCountMessage":"画像のアップロードはありません。","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":"お使いのブラウザの現在のZoomの設定は完全にはサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。","PE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","PE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","PE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページを再読み込みしてください。","PE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","PE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください。","PE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","PE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。","PE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","PE.Controllers.Print.txtPrintRangeInvalid":"無効な印刷範囲","PE.Controllers.Search.notcriticalErrorTitle":" 警告","PE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。他の検索設定を選択してください。","PE.Controllers.Search.textReplaceSkipped":"置換が行われました。スキップされた発生回数は{0}です。","PE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました。","PE.Controllers.Search.warnReplaceString":"{0}は、「置換」ボックスで有効な特殊文字ではありません","PE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","PE.Controllers.Statusbar.zoomText":"ズーム{0}%","PE.Controllers.Toolbar.confirmAddFontName":"保存しようとしているフォントを現在のデバイスで使用することができません。
システムフォントを使って、テキストのスタイルが表示されます。利用可能になったとき、保存されたフォントが適用されます。
続行しますか。","PE.Controllers.Toolbar.helpChartElements":"Easily toggle the visibility of chart elements with several clicks.","PE.Controllers.Toolbar.helpChartElementsHeader":"Chart elements display","PE.Controllers.Toolbar.helpCommentFilter":"Manage your view by toggling between open and resolved comments in the left panel.","PE.Controllers.Toolbar.helpCommentFilterHeader":"Comment filters","PE.Controllers.Toolbar.helpMasterTab":"Access the Slide Master settings in the dedicated toolbar tab for easier control.","PE.Controllers.Toolbar.helpMasterTabHeader":"Slide Master tab","PE.Controllers.Toolbar.textAccent":"ダイアクリティカル・マーク","PE.Controllers.Toolbar.textBracket":"括弧","PE.Controllers.Toolbar.textFontSizeErr":"入力された値が正しくありません。
1〜300の数値を入力してください。","PE.Controllers.Toolbar.textFraction":"分数","PE.Controllers.Toolbar.textFunction":"関数","PE.Controllers.Toolbar.textInsert":"挿入","PE.Controllers.Toolbar.textIntegral":"積分","PE.Controllers.Toolbar.textLargeOperator":"大型演算子","PE.Controllers.Toolbar.textLimitAndLog":"極限と対数","PE.Controllers.Toolbar.textMatrix":"行列","PE.Controllers.Toolbar.textOperator":"演算子","PE.Controllers.Toolbar.textRadical":"ラジカル","PE.Controllers.Toolbar.textScript":"スクリプト","PE.Controllers.Toolbar.textSymbols":"記号","PE.Controllers.Toolbar.textWarning":"警告","PE.Controllers.Toolbar.txtAccent_Accent":"アキュート","PE.Controllers.Toolbar.txtAccent_ArrowD":"左右双方向矢印 (上)","PE.Controllers.Toolbar.txtAccent_ArrowL":"左に矢印 (上)","PE.Controllers.Toolbar.txtAccent_ArrowR":"右向き矢印 (上)","PE.Controllers.Toolbar.txtAccent_Bar":"横棒グラフ","PE.Controllers.Toolbar.txtAccent_BarBot":"アンダーバー","PE.Controllers.Toolbar.txtAccent_BarTop":"オーバーライン","PE.Controllers.Toolbar.txtAccent_BorderBox":"四角囲み数式 (プレースホルダ付き)","PE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"四角囲み数式 (例)","PE.Controllers.Toolbar.txtAccent_Check":"チェック","PE.Controllers.Toolbar.txtAccent_CurveBracketBot":"下括弧","PE.Controllers.Toolbar.txtAccent_CurveBracketTop":"上括弧","PE.Controllers.Toolbar.txtAccent_Custom_1":"ベクトルA","PE.Controllers.Toolbar.txtAccent_Custom_2":"オーバーライン付き ABC","PE.Controllers.Toolbar.txtAccent_Custom_3":"x XORとオーバーライン","PE.Controllers.Toolbar.txtAccent_DDDot":"トリプルドット","PE.Controllers.Toolbar.txtAccent_DDot":"二重ドット","PE.Controllers.Toolbar.txtAccent_Dot":"点","PE.Controllers.Toolbar.txtAccent_DoubleBar":"二重オーバーライン","PE.Controllers.Toolbar.txtAccent_Grave":"グレイヴ","PE.Controllers.Toolbar.txtAccent_GroupBot":"グループ文字 (下)","PE.Controllers.Toolbar.txtAccent_GroupTop":"グループ文字 (上)","PE.Controllers.Toolbar.txtAccent_HarpoonL":"左半矢印(上)","PE.Controllers.Toolbar.txtAccent_HarpoonR":"右向き半矢印 (上)","PE.Controllers.Toolbar.txtAccent_Hat":"ハット","PE.Controllers.Toolbar.txtAccent_Smile":"ブレーヴェ","PE.Controllers.Toolbar.txtAccent_Tilde":"チルダ","PE.Controllers.Toolbar.txtBracket_Angle":"括弧","PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"山かっこと縦棒","PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"山かっこと縦棒 2 本","PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"終わり山かっこ","PE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"始め山かっこ","PE.Controllers.Toolbar.txtBracket_Curve":"中かっこ","PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"中かっこと縦棒","PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"右中かっこ","PE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"左中かっこ","PE.Controllers.Toolbar.txtBracket_Custom_1":"場合分け(条件2つ)","PE.Controllers.Toolbar.txtBracket_Custom_2":"場合分け (条件3つ)","PE.Controllers.Toolbar.txtBracket_Custom_3":"縦並びオブジェクト","PE.Controllers.Toolbar.txtBracket_Custom_4":"縦並びオブジェクト (かっこ付き)","PE.Controllers.Toolbar.txtBracket_Custom_5":"場合分けの例","PE.Controllers.Toolbar.txtBracket_Custom_6":"二項係数","PE.Controllers.Toolbar.txtBracket_Custom_7":"二項係数 (山かっこ付き)","PE.Controllers.Toolbar.txtBracket_Line":"縦棒","PE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"縦棒 (右のみ)","PE.Controllers.Toolbar.txtBracket_Line_OpenNone":"縦棒 (左のみ)","PE.Controllers.Toolbar.txtBracket_LineDouble":"二重縦棒","PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"二重縦棒 (右のみ)","PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"単一括弧","PE.Controllers.Toolbar.txtBracket_LowLim":"終わりかっこ","PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"床関数 (右記号)","PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"床関数 (左記号)","PE.Controllers.Toolbar.txtBracket_Round":"括弧","PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"括弧と区切り線","PE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"右かっこ","PE.Controllers.Toolbar.txtBracket_Round_OpenNone":"左かっこ","PE.Controllers.Toolbar.txtBracket_Square":"大かっこ","PE.Controllers.Toolbar.txtBracket_Square_CloseClose":"右の角括弧の間のプレースホルダー","PE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"反転した角括弧","PE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"右角かっこ","PE.Controllers.Toolbar.txtBracket_Square_OpenNone":"左角かっこ","PE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"左の角括弧の間のプレースホルダー","PE.Controllers.Toolbar.txtBracket_SquareDouble":"二重の角括弧","PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"右ダブル角型かっこ","PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"左ダブル角型かっこ","PE.Controllers.Toolbar.txtBracket_UppLim":"天井大かっこ","PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"天井関数 (右記号)","PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"単一かっこ","PE.Controllers.Toolbar.txtFractionDiagonal":"分数 (斜め)","PE.Controllers.Toolbar.txtFractionDifferential_1":"微分","PE.Controllers.Toolbar.txtFractionDifferential_2":"大文字デルタ y/大文字デルタ x","PE.Controllers.Toolbar.txtFractionDifferential_3":"部分的なxに対する部分的なy","PE.Controllers.Toolbar.txtFractionDifferential_4":"デルタ y/デルタ x","PE.Controllers.Toolbar.txtFractionHorizontal":"分数 (横)","PE.Controllers.Toolbar.txtFractionPi_2":"円周率を2で割る","PE.Controllers.Toolbar.txtFractionSmall":"分数 (小)","PE.Controllers.Toolbar.txtFractionVertical":"分数 (縦)","PE.Controllers.Toolbar.txtFunction_1_Cos":"逆余弦関数","PE.Controllers.Toolbar.txtFunction_1_Cosh":"双曲線逆余弦関数","PE.Controllers.Toolbar.txtFunction_1_Cot":"逆余接関数","PE.Controllers.Toolbar.txtFunction_1_Coth":"双曲線逆共接関数","PE.Controllers.Toolbar.txtFunction_1_Csc":"逆余割関数","PE.Controllers.Toolbar.txtFunction_1_Csch":"逆双曲線余割関数","PE.Controllers.Toolbar.txtFunction_1_Sec":"逆正割関数","PE.Controllers.Toolbar.txtFunction_1_Sech":"双曲線逆正割関数","PE.Controllers.Toolbar.txtFunction_1_Sin":"逆正弦関数","PE.Controllers.Toolbar.txtFunction_1_Sinh":"双曲線逆正弦関数","PE.Controllers.Toolbar.txtFunction_1_Tan":"逆正接関数","PE.Controllers.Toolbar.txtFunction_1_Tanh":"双曲線逆正接関数","PE.Controllers.Toolbar.txtFunction_Cos":"余弦関数","PE.Controllers.Toolbar.txtFunction_Cosh":"双曲線余弦関数","PE.Controllers.Toolbar.txtFunction_Cot":"余接関数","PE.Controllers.Toolbar.txtFunction_Coth":"双曲線余接関数","PE.Controllers.Toolbar.txtFunction_Csc":"余割関数\t","PE.Controllers.Toolbar.txtFunction_Csch":"双曲線余割関数","PE.Controllers.Toolbar.txtFunction_Custom_1":"Sin θ","PE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","PE.Controllers.Toolbar.txtFunction_Custom_3":"正接数式","PE.Controllers.Toolbar.txtFunction_Sec":"正割関数","PE.Controllers.Toolbar.txtFunction_Sech":"双曲線正割関数","PE.Controllers.Toolbar.txtFunction_Sin":"正弦関数","PE.Controllers.Toolbar.txtFunction_Sinh":"双曲線正弦関数","PE.Controllers.Toolbar.txtFunction_Tan":"正接関数","PE.Controllers.Toolbar.txtFunction_Tanh":"双曲線正接関数","PE.Controllers.Toolbar.txtIntegral":"積分","PE.Controllers.Toolbar.txtIntegral_dtheta":"微分シータ","PE.Controllers.Toolbar.txtIntegral_dx":"微分x","PE.Controllers.Toolbar.txtIntegral_dy":"微分y","PE.Controllers.Toolbar.txtIntegralCenterSubSup":"積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralDouble":"二重積分","PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"二重積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralDoubleSubSup":"二重積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralOriented":"周回積分","PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"線積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralOrientedDouble":"面積分","PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"面積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"面積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralOrientedSubSup":"線積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralOrientedTriple":"体積積分","PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"体積積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"体積積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralSubSup":"積分 (上下端値あり)","PE.Controllers.Toolbar.txtIntegralTriple":"三重積分","PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"三重積分 (上下端値を上下に配置)","PE.Controllers.Toolbar.txtIntegralTripleSubSup":"三重積分 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Conjunction":"論理積","PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"論理積 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"論理積 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"論理積 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"論理積 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_CoProd":"余積","PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"下端付き余積","PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"極限付き余積","PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"下端下付き双対積","PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"上下付き極限付き双対積","PE.Controllers.Toolbar.txtLargeOperator_Custom_1":"n から k を選ぶ場合の k の総和","PE.Controllers.Toolbar.txtLargeOperator_Custom_2":"総和 (i = 0 から n まで)","PE.Controllers.Toolbar.txtLargeOperator_Custom_3":"添え字 2 個を使う総和の例","PE.Controllers.Toolbar.txtLargeOperator_Custom_4":"積の例","PE.Controllers.Toolbar.txtLargeOperator_Custom_5":"和集合の例","PE.Controllers.Toolbar.txtLargeOperator_Disjunction":"論理和","PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"論理和 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"論理和 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"論理和 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"論理和 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Intersection":"共通集合","PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"積集合 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"積集合 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"積集合 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"積集合 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Prod":"乗積","PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"積 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"積 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"積 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"積 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Sum":"合計","PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"総和 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"総和 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"総和 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"総和 (上付き/下付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Union":"和集合","PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"和集合 (下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"和集合 (上下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"和集合 (下付き文字の下端値あり)","PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"和集合 (下付き/上付き文字の上下端値あり)","PE.Controllers.Toolbar.txtLimitLog_Custom_1":"極限の例","PE.Controllers.Toolbar.txtLimitLog_Custom_2":"最大値の例","PE.Controllers.Toolbar.txtLimitLog_Lim":"極限","PE.Controllers.Toolbar.txtLimitLog_Ln":"自然対数","PE.Controllers.Toolbar.txtLimitLog_Log":"対数","PE.Controllers.Toolbar.txtLimitLog_LogBase":"対数","PE.Controllers.Toolbar.txtLimitLog_Max":"最大","PE.Controllers.Toolbar.txtLimitLog_Min":"最小","PE.Controllers.Toolbar.txtMatrix_1_2":"1x2空行列","PE.Controllers.Toolbar.txtMatrix_1_3":"1x3空行列","PE.Controllers.Toolbar.txtMatrix_2_1":"2x1 空行列","PE.Controllers.Toolbar.txtMatrix_2_2":"2x2 空行列","PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"空の 2x2 行列 (二重縦棒付き)","PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"空の 2x2 行列式","PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"空の 2x2 行列 (かっこ付き)","PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"空の 2x2 行列 (大かっこ付き)","PE.Controllers.Toolbar.txtMatrix_2_3":"2x3 空行列","PE.Controllers.Toolbar.txtMatrix_3_1":"3x1 空行列","PE.Controllers.Toolbar.txtMatrix_3_2":"3x2 空行列","PE.Controllers.Toolbar.txtMatrix_3_3":"3x3 空行列","PE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"基準線点","PE.Controllers.Toolbar.txtMatrix_Dots_Center":"ミッドラインドット","PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"斜めドット","PE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"縦向きドット","PE.Controllers.Toolbar.txtMatrix_Flat_Round":"疎行列 (かっこ付き)","PE.Controllers.Toolbar.txtMatrix_Flat_Square":"疎行列 (大かっこ付き)","PE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 単位行列 (0 あり)","PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"空白の対角セルを持つ 2x2 の単位行列","PE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 単位行列 (0 あり)","PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3 単位行列 (対角線上以外のセルは空白)","PE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"左右双方向矢印 (下)","PE.Controllers.Toolbar.txtOperator_ArrowD_Top":"左右双方向矢印 (上)","PE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"左に矢印 (下)","PE.Controllers.Toolbar.txtOperator_ArrowL_Top":"左に矢印 (上)","PE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"右向き矢印 (下)","PE.Controllers.Toolbar.txtOperator_ArrowR_Top":"右向き矢印 (上)","PE.Controllers.Toolbar.txtOperator_ColonEquals":"コロンイコール","PE.Controllers.Toolbar.txtOperator_Custom_1":"導出","PE.Controllers.Toolbar.txtOperator_Custom_2":"デルタ収量","PE.Controllers.Toolbar.txtOperator_Definition":"定義上等しい","PE.Controllers.Toolbar.txtOperator_DeltaEquals":"デルタ付き等号","PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"左右双方向矢印 (下)","PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"左右双方向矢印 (上)","PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"左に矢印 (下)","PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"左に矢印 (上)","PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"右向き矢印 (下)","PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"右向き矢印 (上)","PE.Controllers.Toolbar.txtOperator_EqualsEquals":"イコールイコール","PE.Controllers.Toolbar.txtOperator_MinusEquals":"マイナスイコール","PE.Controllers.Toolbar.txtOperator_PlusEquals":"プラスイコール","PE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"によって測定","PE.Controllers.Toolbar.txtRadicalCustom_1":"二次方程式の解の公式の右辺","PE.Controllers.Toolbar.txtRadicalCustom_2":"a の 2 乗と b の 2 乗の和の平方根","PE.Controllers.Toolbar.txtRadicalRoot_2":"次数付き平方根","PE.Controllers.Toolbar.txtRadicalRoot_3":"立方根","PE.Controllers.Toolbar.txtRadicalRoot_n":"度付きラジカル","PE.Controllers.Toolbar.txtRadicalSqrt":"平方根","PE.Controllers.Toolbar.txtScriptCustom_1":"x 下付き文字 y の 2 乗","PE.Controllers.Toolbar.txtScriptCustom_2":"e のマイナス i ω t 乗","PE.Controllers.Toolbar.txtScriptCustom_3":"x の 2 乗","PE.Controllers.Toolbar.txtScriptCustom_4":"Y 左上付き文字 n 左下付き文字 1","PE.Controllers.Toolbar.txtScriptSub":"下付き文字","PE.Controllers.Toolbar.txtScriptSubSup":"下付き文字 - 上付き文字","PE.Controllers.Toolbar.txtScriptSubSupLeft":"左下付き文字 - 上付き文字","PE.Controllers.Toolbar.txtScriptSup":"上付き文字","PE.Controllers.Toolbar.txtSymbol_about":"約","PE.Controllers.Toolbar.txtSymbol_additional":"補数","PE.Controllers.Toolbar.txtSymbol_aleph":"アレフ","PE.Controllers.Toolbar.txtSymbol_alpha":"アルファ","PE.Controllers.Toolbar.txtSymbol_approx":"にほぼ等しい","PE.Controllers.Toolbar.txtSymbol_ast":"アスタリスク","PE.Controllers.Toolbar.txtSymbol_beta":"ベータ","PE.Controllers.Toolbar.txtSymbol_beth":"ベート","PE.Controllers.Toolbar.txtSymbol_bullet":"箇条書きの演算子","PE.Controllers.Toolbar.txtSymbol_cap":"共通集合","PE.Controllers.Toolbar.txtSymbol_cbrt":"立方根","PE.Controllers.Toolbar.txtSymbol_cdots":"水平中央の省略記号","PE.Controllers.Toolbar.txtSymbol_celsius":"摂氏","PE.Controllers.Toolbar.txtSymbol_chi":"カイ","PE.Controllers.Toolbar.txtSymbol_cong":"にほぼ等しい","PE.Controllers.Toolbar.txtSymbol_cup":"和集合","PE.Controllers.Toolbar.txtSymbol_ddots":"下右斜めの省略記号","PE.Controllers.Toolbar.txtSymbol_degree":"度","PE.Controllers.Toolbar.txtSymbol_delta":"デルタ","PE.Controllers.Toolbar.txtSymbol_div":"除算記号","PE.Controllers.Toolbar.txtSymbol_downarrow":"下矢印","PE.Controllers.Toolbar.txtSymbol_emptyset":"空集合","PE.Controllers.Toolbar.txtSymbol_epsilon":"イプシロン","PE.Controllers.Toolbar.txtSymbol_equals":"イコール","PE.Controllers.Toolbar.txtSymbol_equiv":"と同一","PE.Controllers.Toolbar.txtSymbol_eta":"エータ","PE.Controllers.Toolbar.txtSymbol_exists":"存在します\t","PE.Controllers.Toolbar.txtSymbol_factorial":"階乗","PE.Controllers.Toolbar.txtSymbol_fahrenheit":"華氏","PE.Controllers.Toolbar.txtSymbol_forall":"全てに","PE.Controllers.Toolbar.txtSymbol_gamma":"ガンマ","PE.Controllers.Toolbar.txtSymbol_geq":"次の値より大きいか等しい","PE.Controllers.Toolbar.txtSymbol_gg":"次の値よりはるかに大きい","PE.Controllers.Toolbar.txtSymbol_greater":"次の値より大きい","PE.Controllers.Toolbar.txtSymbol_in":"属する","PE.Controllers.Toolbar.txtSymbol_inc":"増分","PE.Controllers.Toolbar.txtSymbol_infinity":"無限","PE.Controllers.Toolbar.txtSymbol_iota":"イオタ","PE.Controllers.Toolbar.txtSymbol_kappa":"カッパ","PE.Controllers.Toolbar.txtSymbol_lambda":"ラムダ","PE.Controllers.Toolbar.txtSymbol_leftarrow":"左矢印","PE.Controllers.Toolbar.txtSymbol_leftrightarrow":"左右矢印","PE.Controllers.Toolbar.txtSymbol_leq":"次の値より小さいか等しい","PE.Controllers.Toolbar.txtSymbol_less":"次の値より小さい","PE.Controllers.Toolbar.txtSymbol_ll":"次の値よりはるかに小さい","PE.Controllers.Toolbar.txtSymbol_minus":"マイナス","PE.Controllers.Toolbar.txtSymbol_mp":"マイナスプラス","PE.Controllers.Toolbar.txtSymbol_mu":"ミュー","PE.Controllers.Toolbar.txtSymbol_nabla":"ナブラ","PE.Controllers.Toolbar.txtSymbol_neq":"と等しくない","PE.Controllers.Toolbar.txtSymbol_ni":"含む","PE.Controllers.Toolbar.txtSymbol_not":"否定記号","PE.Controllers.Toolbar.txtSymbol_notexists":"存在しません","PE.Controllers.Toolbar.txtSymbol_nu":"ニュー","PE.Controllers.Toolbar.txtSymbol_o":"オミクロン","PE.Controllers.Toolbar.txtSymbol_omega":"オメガ","PE.Controllers.Toolbar.txtSymbol_partial":"偏微分","PE.Controllers.Toolbar.txtSymbol_percent":"パーセンテージ","PE.Controllers.Toolbar.txtSymbol_phi":"ファイ","PE.Controllers.Toolbar.txtSymbol_pi":"パイ","PE.Controllers.Toolbar.txtSymbol_plus":"プラス","PE.Controllers.Toolbar.txtSymbol_pm":"プラスマイナス","PE.Controllers.Toolbar.txtSymbol_propto":"に比例","PE.Controllers.Toolbar.txtSymbol_psi":"プサイ","PE.Controllers.Toolbar.txtSymbol_qdrt":"四乗根","PE.Controllers.Toolbar.txtSymbol_qed":"証明終了","PE.Controllers.Toolbar.txtSymbol_rddots":"斜め(右上)の省略記号","PE.Controllers.Toolbar.txtSymbol_rho":"ロー","PE.Controllers.Toolbar.txtSymbol_rightarrow":"右矢印","PE.Controllers.Toolbar.txtSymbol_sigma":"シグマ","PE.Controllers.Toolbar.txtSymbol_sqrt":"根号","PE.Controllers.Toolbar.txtSymbol_tau":"タウ","PE.Controllers.Toolbar.txtSymbol_therefore":"従って","PE.Controllers.Toolbar.txtSymbol_theta":"シータ","PE.Controllers.Toolbar.txtSymbol_times":"乗算記号","PE.Controllers.Toolbar.txtSymbol_uparrow":"上矢印","PE.Controllers.Toolbar.txtSymbol_upsilon":"ウプシロン","PE.Controllers.Toolbar.txtSymbol_varepsilon":"イプシロン (別形)","PE.Controllers.Toolbar.txtSymbol_varphi":"ファイ (別形)","PE.Controllers.Toolbar.txtSymbol_varpi":"パイ","PE.Controllers.Toolbar.txtSymbol_varrho":"ロー (別形)","PE.Controllers.Toolbar.txtSymbol_varsigma":"シグマ (別形)","PE.Controllers.Toolbar.txtSymbol_vartheta":"シータ (別形)","PE.Controllers.Toolbar.txtSymbol_vdots":"垂直線の省略記号","PE.Controllers.Toolbar.txtSymbol_xsi":"グザイ","PE.Controllers.Toolbar.txtSymbol_zeta":"ゼータ","PE.Controllers.Viewport.textFitPage":"スライドに合わせる","PE.Controllers.Viewport.textFitWidth":"幅に合わせる","PE.Views.Animation.str0_5":"0.5秒(さらに速く)","PE.Views.Animation.str1":"1秒(速く)","PE.Views.Animation.str2":"2秒(中)","PE.Views.Animation.str20":"20秒(非常に遅い)","PE.Views.Animation.str3":"3秒(遅い)","PE.Views.Animation.str5":"5秒(さらに遅く)","PE.Views.Animation.strDelay":"遅延","PE.Views.Animation.strDuration":"期間","PE.Views.Animation.strRepeat":"繰り返し","PE.Views.Animation.strRewind":"巻き戻し","PE.Views.Animation.strStart":"開始","PE.Views.Animation.strTrigger":"トリガー","PE.Views.Animation.textAutoPreview":"自動プレビュー","PE.Views.Animation.textMoreEffects":"その他のエフェクトを表示","PE.Views.Animation.textMoveEarlier":"先に移動する","PE.Views.Animation.textMoveLater":"後に移動する","PE.Views.Animation.textMultiple":"倍数","PE.Views.Animation.textNone":"なし","PE.Views.Animation.textNoRepeat":"(なし)","PE.Views.Animation.textOnClickOf":"クリック時:","PE.Views.Animation.textOnClickSequence":"クリックシーケンス","PE.Views.Animation.textStartAfterPrevious":"直前の動作の後","PE.Views.Animation.textStartOnClick":"クリック時","PE.Views.Animation.textStartWithPrevious":"直前の動作と同時","PE.Views.Animation.textUntilEndOfSlide":"スライドの最後まで","PE.Views.Animation.textUntilNextClick":"次のクリックまで","PE.Views.Animation.txtAddEffect":"アニメーションを追加","PE.Views.Animation.txtAnimationPane":"アニメーション ウィンドウ","PE.Views.Animation.txtParameters":"オプション","PE.Views.Animation.txtPreview":"プレビュー","PE.Views.Animation.txtSec":"秒","PE.Views.AnimationDialog.textPreviewEffect":"効果のプレビュー","PE.Views.AnimationDialog.textTitle":"その他のエフェクト","PE.Views.ChartSettings.text3dDepth":"深さ(ベースに対する割合)","PE.Views.ChartSettings.text3dHeight":"高さ(ベースに対する割合)","PE.Views.ChartSettings.text3dRotation":"3D回転","PE.Views.ChartSettings.textAdvanced":"詳細設定の表示","PE.Views.ChartSettings.textAutoscale":"自動スケーリング","PE.Views.ChartSettings.textChartType":"グラフの種類を変更","PE.Views.ChartSettings.textData":"データ","PE.Views.ChartSettings.textDefault":"デフォルト回転","PE.Views.ChartSettings.textDown":"下","PE.Views.ChartSettings.textEditData":"データを編集","PE.Views.ChartSettings.textEditLinks":"リンクの編集","PE.Views.ChartSettings.textHeight":"高さ","PE.Views.ChartSettings.textKeepRatio":"一定の比率","PE.Views.ChartSettings.textLeft":"左","PE.Views.ChartSettings.textLinkedData":"リンク済みのデータ","PE.Views.ChartSettings.textNarrow":"狭角","PE.Views.ChartSettings.textPerspective":"分析観点","PE.Views.ChartSettings.textRight":"右","PE.Views.ChartSettings.textRightAngle":"軸の直交","PE.Views.ChartSettings.textSelectData":"データの選択","PE.Views.ChartSettings.textSize":"サイズ","PE.Views.ChartSettings.textStyle":"スタイル","PE.Views.ChartSettings.textUp":"上","PE.Views.ChartSettings.textUpdateData":"データの更新","PE.Views.ChartSettings.textWiden":"広角","PE.Views.ChartSettings.textWidth":"幅","PE.Views.ChartSettings.textX":"X 回転","PE.Views.ChartSettings.textY":"Y 回転","PE.Views.ChartSettingsAdvanced.textAlt":"代替テキスト","PE.Views.ChartSettingsAdvanced.textAltDescription":"説明","PE.Views.ChartSettingsAdvanced.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","PE.Views.ChartSettingsAdvanced.textAltTitle":"タイトル","PE.Views.ChartSettingsAdvanced.textAuto":"自動","PE.Views.ChartSettingsAdvanced.textAxisCrosses":"軸との交点","PE.Views.ChartSettingsAdvanced.textAxisPos":"軸の位置","PE.Views.ChartSettingsAdvanced.textAxisTitle":"タイトル","PE.Views.ChartSettingsAdvanced.textBase":"ベース","PE.Views.ChartSettingsAdvanced.textBetweenTickMarks":"目盛りの間","PE.Views.ChartSettingsAdvanced.textBillions":"十億","PE.Views.ChartSettingsAdvanced.textCategoryName":"カテゴリ名","PE.Views.ChartSettingsAdvanced.textCenter":"中央揃え","PE.Views.ChartSettingsAdvanced.textChartName":"チャート名","PE.Views.ChartSettingsAdvanced.textChartTitle":"チャートのタイトル","PE.Views.ChartSettingsAdvanced.textCross":"十字","PE.Views.ChartSettingsAdvanced.textCustom":"カスタム","PE.Views.ChartSettingsAdvanced.textDataLabels":"データラベル","PE.Views.ChartSettingsAdvanced.textFit":"幅に合わせる","PE.Views.ChartSettingsAdvanced.textFixed":"固定","PE.Views.ChartSettingsAdvanced.textFormat":"ラベルの書式","PE.Views.ChartSettingsAdvanced.textFrom":"基準","PE.Views.ChartSettingsAdvanced.textGeneral":"一般","PE.Views.ChartSettingsAdvanced.textGridLines":"グリッド線","PE.Views.ChartSettingsAdvanced.textHeight":"高さ","PE.Views.ChartSettingsAdvanced.textHideAxis":"軸を非表示","PE.Views.ChartSettingsAdvanced.textHigh":"高い","PE.Views.ChartSettingsAdvanced.textHorAxis":"横軸","PE.Views.ChartSettingsAdvanced.textHorAxisSec":"二次横軸","PE.Views.ChartSettingsAdvanced.textHorizontal":"水平","PE.Views.ChartSettingsAdvanced.textHundredMil":"100 000 000","PE.Views.ChartSettingsAdvanced.textHundreds":"百","PE.Views.ChartSettingsAdvanced.textHundredThousands":"100 000","PE.Views.ChartSettingsAdvanced.textIn":"中","PE.Views.ChartSettingsAdvanced.textInnerBottom":"内部(下)","PE.Views.ChartSettingsAdvanced.textInnerTop":"内部(上)","PE.Views.ChartSettingsAdvanced.textKeepRatio":"一定の比率","PE.Views.ChartSettingsAdvanced.textLabelDist":"軸ラベルの距離","PE.Views.ChartSettingsAdvanced.textLabelInterval":"ラベルの間の間隔","PE.Views.ChartSettingsAdvanced.textLabelOptions":"ラベルのオプション","PE.Views.ChartSettingsAdvanced.textLabelPos":"ラベルの位置","PE.Views.ChartSettingsAdvanced.textLayout":"レイアウト","PE.Views.ChartSettingsAdvanced.textLeftOverlay":"左のオーバーレイ","PE.Views.ChartSettingsAdvanced.textLegendBottom":"下","PE.Views.ChartSettingsAdvanced.textLegendLeft":"左","PE.Views.ChartSettingsAdvanced.textLegendPos":"凡例","PE.Views.ChartSettingsAdvanced.textLegendRight":"右","PE.Views.ChartSettingsAdvanced.textLegendTop":"上","PE.Views.ChartSettingsAdvanced.textLines":"行","PE.Views.ChartSettingsAdvanced.textLogScale":"対数目盛","PE.Views.ChartSettingsAdvanced.textLow":"低","PE.Views.ChartSettingsAdvanced.textMajor":"メジャー","PE.Views.ChartSettingsAdvanced.textMajorMinor":"メジャーとマイナー","PE.Views.ChartSettingsAdvanced.textMajorType":"メジャーの種類","PE.Views.ChartSettingsAdvanced.textManual":"手動","PE.Views.ChartSettingsAdvanced.textMarkers":"マーカー","PE.Views.ChartSettingsAdvanced.textMarksInterval":"マークの間の間隔","PE.Views.ChartSettingsAdvanced.textMaxValue":"最大値","PE.Views.ChartSettingsAdvanced.textMillions":"百万","PE.Views.ChartSettingsAdvanced.textMinor":"マイナー","PE.Views.ChartSettingsAdvanced.textMinorType":"マイナー種類","PE.Views.ChartSettingsAdvanced.textMinValue":"最小値","PE.Views.ChartSettingsAdvanced.textNextToAxis":"軸の隣","PE.Views.ChartSettingsAdvanced.textNone":"なし","PE.Views.ChartSettingsAdvanced.textNoOverlay":"オーバーレイなし","PE.Views.ChartSettingsAdvanced.textOnTickMarks":"目盛","PE.Views.ChartSettingsAdvanced.textOut":"外","PE.Views.ChartSettingsAdvanced.textOuterTop":"外側上部","PE.Views.ChartSettingsAdvanced.textOverlay":"オーバーレイ","PE.Views.ChartSettingsAdvanced.textPlacement":"位置","PE.Views.ChartSettingsAdvanced.textPosition":"位置","PE.Views.ChartSettingsAdvanced.textReverse":"軸を反転する","PE.Views.ChartSettingsAdvanced.textRightOverlay":"右オーバーレイ","PE.Views.ChartSettingsAdvanced.textRotated":"回転された","PE.Views.ChartSettingsAdvanced.textSeparator":"日付のラベルの区切り記号","PE.Views.ChartSettingsAdvanced.textSeriesName":"系列の名前","PE.Views.ChartSettingsAdvanced.textSize":"サイズ","PE.Views.ChartSettingsAdvanced.textSmooth":"スムーズ","PE.Views.ChartSettingsAdvanced.textStraight":"直線","PE.Views.ChartSettingsAdvanced.textTenMillions":"10 000 000","PE.Views.ChartSettingsAdvanced.textTenThousands":"10 000","PE.Views.ChartSettingsAdvanced.textThousands":"千","PE.Views.ChartSettingsAdvanced.textTickOptions":"ティックのオプション","PE.Views.ChartSettingsAdvanced.textTitle":"グラフ - 詳細設定","PE.Views.ChartSettingsAdvanced.textTopLeftCorner":"左上隅","PE.Views.ChartSettingsAdvanced.textTrillions":"兆","PE.Views.ChartSettingsAdvanced.textUnits":"表示単位","PE.Views.ChartSettingsAdvanced.textValue":"値","PE.Views.ChartSettingsAdvanced.textVertAxis":"縦軸","PE.Views.ChartSettingsAdvanced.textVertAxisSec":"二次縦軸","PE.Views.ChartSettingsAdvanced.textVertical":"縦","PE.Views.ChartSettingsAdvanced.textWidth":"幅","PE.Views.ChartSettingsDlg.textLeftOverlay":"左のオーバーレイ","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.advancedChartText":"チャートの詳細設定","PE.Views.DocumentHolder.advancedEquationText":"数式設定","PE.Views.DocumentHolder.advancedImageText":"画像の詳細設定","PE.Views.DocumentHolder.advancedParagraphText":"段落の詳細設定","PE.Views.DocumentHolder.advancedShapeText":"図形の詳細設定","PE.Views.DocumentHolder.advancedTableText":"テーブルの詳細設定","PE.Views.DocumentHolder.AlignBottom":"Bottom","PE.Views.DocumentHolder.AlignCenter":"Center","PE.Views.DocumentHolder.AlignJust":"Justify","PE.Views.DocumentHolder.AlignLeft":"Left","PE.Views.DocumentHolder.alignmentText":"配置","PE.Views.DocumentHolder.AlignMiddle":"Middle","PE.Views.DocumentHolder.AlignRight":"Right","PE.Views.DocumentHolder.AlignText":"Text alignment","PE.Views.DocumentHolder.AlignTop":"Top","PE.Views.DocumentHolder.allLinearText":"すべて - 線形","PE.Views.DocumentHolder.allProfText":"すべて - プロフェッショナル","PE.Views.DocumentHolder.belowText":"下","PE.Views.DocumentHolder.btnChart":"タイトル、凡例、目盛線、データ ラベルなどのグラフ要素を追加、削除、または変更します","PE.Views.DocumentHolder.cellAlignText":"セルの縦方向の配置","PE.Views.DocumentHolder.cellText":"セル","PE.Views.DocumentHolder.centerText":"中央揃え","PE.Views.DocumentHolder.columnText":"列","PE.Views.DocumentHolder.currLinearText":"現在 - 線形","PE.Views.DocumentHolder.currProfText":"現在 - プロフェッショナル","PE.Views.DocumentHolder.deleteColumnText":"列を削除","PE.Views.DocumentHolder.deleteRowText":"行を削除","PE.Views.DocumentHolder.deleteTableText":"表を削除する","PE.Views.DocumentHolder.deleteText":"削除する","PE.Views.DocumentHolder.DepthAxis":"Z軸","PE.Views.DocumentHolder.direct270Text":"上にテキストを回転","PE.Views.DocumentHolder.direct90Text":"下にテキストを回転","PE.Views.DocumentHolder.directHText":"水平","PE.Views.DocumentHolder.directionText":"文字列の方向","PE.Views.DocumentHolder.editChartText":"データを編集","PE.Views.DocumentHolder.editHyperlinkText":"ハイパーリンクを編集","PE.Views.DocumentHolder.hideEqToolbar":"方程式ツールバーを非表示にする","PE.Views.DocumentHolder.hyperlinkText":"ハイパーリンク","PE.Views.DocumentHolder.ignoreAllSpellText":"全て無視する","PE.Views.DocumentHolder.ignoreSpellText":"無視する","PE.Views.DocumentHolder.insertColumnLeftText":"左の列","PE.Views.DocumentHolder.insertColumnRightText":"右の列","PE.Views.DocumentHolder.insertColumnText":"列の挿入","PE.Views.DocumentHolder.insertRowAboveText":"行 (上)","PE.Views.DocumentHolder.insertRowBelowText":"行(下)","PE.Views.DocumentHolder.insertRowText":"行の挿入","PE.Views.DocumentHolder.insertText":"挿入","PE.Views.DocumentHolder.langText":"言語の選択","PE.Views.DocumentHolder.latexText":"LaTeX","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.removeHyperlinkText":"ハイパーリンクを削除","PE.Views.DocumentHolder.rightText":"右","PE.Views.DocumentHolder.rowText":"行","PE.Views.DocumentHolder.selectText":"選択","PE.Views.DocumentHolder.showEqToolbar":"方程式ツールバーの表示","PE.Views.DocumentHolder.spellcheckText":"スペルチェック","PE.Views.DocumentHolder.splitCellsText":"セルを分割...","PE.Views.DocumentHolder.splitCellTitleText":"セルを分割","PE.Views.DocumentHolder.tableText":"テーブル","PE.Views.DocumentHolder.textAddHGuides":"水平方向のガイドの追加","PE.Views.DocumentHolder.textAddVGuides":"垂直方向のガイドの追加","PE.Views.DocumentHolder.textArrangeBack":"最背面ヘ移動","PE.Views.DocumentHolder.textArrangeBackward":"背面ヘ移動","PE.Views.DocumentHolder.textArrangeForward":"前面ヘ移動","PE.Views.DocumentHolder.textArrangeFront":"最前面ヘ移動","PE.Views.DocumentHolder.textAxes":"座標軸","PE.Views.DocumentHolder.textAxisTitles":"軸のタイトル","PE.Views.DocumentHolder.textBottom":"下","PE.Views.DocumentHolder.textCenter":"中央揃え","PE.Views.DocumentHolder.textChartTitle":"チャートのタイトル","PE.Views.DocumentHolder.textClearGuides":"ガイドのクリア","PE.Views.DocumentHolder.textCm":"センチ","PE.Views.DocumentHolder.textCopy":"コピーする","PE.Views.DocumentHolder.textCrop":"トリミング","PE.Views.DocumentHolder.textCropFill":"塗りつぶし","PE.Views.DocumentHolder.textCropFit":"合わせる","PE.Views.DocumentHolder.textCustom":"ユーザー設定","PE.Views.DocumentHolder.textCut":"切り取り","PE.Views.DocumentHolder.textDataLabels":"データラベル","PE.Views.DocumentHolder.textDataTable":"データ表","PE.Views.DocumentHolder.textDeleteGuide":"ガイドの削除","PE.Views.DocumentHolder.textDeleteLayout":"レイアウトの削除","PE.Views.DocumentHolder.textDeleteMaster":"マスター削除","PE.Views.DocumentHolder.textDistributeCols":"列の幅を揃える","PE.Views.DocumentHolder.textDistributeRows":"行の高さを揃える","PE.Views.DocumentHolder.textDuplicateLayout":"レイアウトの複製","PE.Views.DocumentHolder.textDuplicateSlideMaster":"スライドマスターの複製","PE.Views.DocumentHolder.textEditObject":"オブジェクトを編集","PE.Views.DocumentHolder.textEditPoints":"頂点を編集","PE.Views.DocumentHolder.textErrorBars":"誤差範囲","PE.Views.DocumentHolder.textExponential":"指数","PE.Views.DocumentHolder.textFit":"幅に合わせる","PE.Views.DocumentHolder.textFlipH":"左右に反転","PE.Views.DocumentHolder.textFlipV":"上下に反転","PE.Views.DocumentHolder.textFromFile":"ファイルから","PE.Views.DocumentHolder.textFromStorage":"ストレージから","PE.Views.DocumentHolder.textFromUrl":"URLから","PE.Views.DocumentHolder.textGridlines":"グリッド線","PE.Views.DocumentHolder.textGuides":"ガイド","PE.Views.DocumentHolder.textHorAxis":"横軸","PE.Views.DocumentHolder.textHorAxisSec":"二次横軸","PE.Views.DocumentHolder.textHorizontalMajor":"主要な水平線","PE.Views.DocumentHolder.textHorizontalMinor":"二次的な水平線","PE.Views.DocumentHolder.textInnerBottom":"内部(下)","PE.Views.DocumentHolder.textInnerTop":"内部(上)","PE.Views.DocumentHolder.textInsertLayout":"インサートレイアウト","PE.Views.DocumentHolder.textInsertSlideMaster":"スライドマスターの挿入","PE.Views.DocumentHolder.textLeft":"Left","PE.Views.DocumentHolder.textLeftData":"左","PE.Views.DocumentHolder.textLeftOverlay":"Left Overlay","PE.Views.DocumentHolder.textLegendPos":"凡例","PE.Views.DocumentHolder.textLinear":"線形","PE.Views.DocumentHolder.textLinearForecast":"線形予測","PE.Views.DocumentHolder.textLines":"行","PE.Views.DocumentHolder.textMovingAverage":"移動平均 (2)","PE.Views.DocumentHolder.textNextPage":"次のスライド","PE.Views.DocumentHolder.textNone":"なし","PE.Views.DocumentHolder.textNoOverlay":"オーバーレイなし","PE.Views.DocumentHolder.textOuterTop":"外側上部","PE.Views.DocumentHolder.textOverlay":"オーバーレイ","PE.Views.DocumentHolder.textPaste":"貼り付け","PE.Views.DocumentHolder.textPreserveSlideMaster":"マスターを保存","PE.Views.DocumentHolder.textPrevPage":"前のスライド","PE.Views.DocumentHolder.textRemove":"削除","PE.Views.DocumentHolder.textRemoveUnpreserveMasters":"保存しないことにしたマスターは、どのスライドでも使用されていません。
これらのマスターを削除しますか?","PE.Views.DocumentHolder.textRenameLayout":"レイアウト名を変更","PE.Views.DocumentHolder.textRenameMaster":"マスター名の変更","PE.Views.DocumentHolder.textReplace":"画像を置き換える","PE.Views.DocumentHolder.textResetCrop":"トリミングをリセット","PE.Views.DocumentHolder.textRight":"右","PE.Views.DocumentHolder.textRightOverlay":"右オーバーレイ","PE.Views.DocumentHolder.textRotate":"回転","PE.Views.DocumentHolder.textRotate270":"反時計回りに90度回転","PE.Views.DocumentHolder.textRotate90":"時計回りに90度回転","PE.Views.DocumentHolder.textRulers":"ルーラー","PE.Views.DocumentHolder.textSaveAsPicture":"画像として保存","PE.Views.DocumentHolder.textShapeAlignBottom":"下揃え","PE.Views.DocumentHolder.textShapeAlignCenter":"中央揃え\t","PE.Views.DocumentHolder.textShapeAlignLeft":"左揃え","PE.Views.DocumentHolder.textShapeAlignMiddle":"上下中央揃え","PE.Views.DocumentHolder.textShapeAlignRight":"右揃え","PE.Views.DocumentHolder.textShapeAlignTop":"上揃え","PE.Views.DocumentHolder.textShapesMerge":"図形を結合","PE.Views.DocumentHolder.textShowDataTable":"データ表の表示","PE.Views.DocumentHolder.textShowGridlines":"枠線を表示する","PE.Views.DocumentHolder.textShowGuides":"ガイドを表示","PE.Views.DocumentHolder.textShowLegendKeys":"凡例キーの表示","PE.Views.DocumentHolder.textShowUpDown":"上昇/下降バーを表示","PE.Views.DocumentHolder.textSlideSettings":"スライド設定","PE.Views.DocumentHolder.textSmartGuides":"スマートガイド","PE.Views.DocumentHolder.textSnapObjects":"スナップオブジェクトをグリッドに","PE.Views.DocumentHolder.textStandardDeviation":"標準偏差","PE.Views.DocumentHolder.textStandardError":"標準誤差","PE.Views.DocumentHolder.textStartAfterPrevious":"前回終了後のスタート","PE.Views.DocumentHolder.textStartOnClick":"クリック時","PE.Views.DocumentHolder.textStartWithPrevious":"前回の続きから","PE.Views.DocumentHolder.textTop":"上","PE.Views.DocumentHolder.textTrendline":"トレンドライン","PE.Views.DocumentHolder.textUndo":"元に戻す","PE.Views.DocumentHolder.textUpDownBars":"上下スクロールバー","PE.Views.DocumentHolder.textVertAxis":"縦軸","PE.Views.DocumentHolder.textVertAxisSec":"二次縦軸","PE.Views.DocumentHolder.textVerticalMajor":"主要の縦軸","PE.Views.DocumentHolder.textVerticalMinor":"二次的な縦軸","PE.Views.DocumentHolder.textZoomIn":"拡大","PE.Views.DocumentHolder.textZoomOut":"縮小","PE.Views.DocumentHolder.tipGuides":"ガイドを表示","PE.Views.DocumentHolder.tipIsLocked":"今、この要素が他のユーザーによって編集されています。","PE.Views.DocumentHolder.toDictionaryText":"辞書に追加","PE.Views.DocumentHolder.txtAddBottom":"下罫線を追加","PE.Views.DocumentHolder.txtAddFractionBar":"分数線を追加","PE.Views.DocumentHolder.txtAddHor":"水平線を追加","PE.Views.DocumentHolder.txtAddLB":"左下罫線を追加","PE.Views.DocumentHolder.txtAddLeft":"左罫線を追加","PE.Views.DocumentHolder.txtAddLT":"左上罫線を追加","PE.Views.DocumentHolder.txtAddRight":"右罫線を追加","PE.Views.DocumentHolder.txtAddTop":"上罫線を追加","PE.Views.DocumentHolder.txtAddVer":"縦線を追加","PE.Views.DocumentHolder.txtAlign":"整列","PE.Views.DocumentHolder.txtAlignToChar":"文字に合わせる","PE.Views.DocumentHolder.txtArrange":"順序","PE.Views.DocumentHolder.txtBackground":"背景","PE.Views.DocumentHolder.txtBorderProps":"罫線の​​プロパティ","PE.Views.DocumentHolder.txtBottom":"下","PE.Views.DocumentHolder.txtChangeLayout":"レイアウトの変更","PE.Views.DocumentHolder.txtChangeTheme":"テーマの変更","PE.Views.DocumentHolder.txtColumnAlign":"列の配置","PE.Views.DocumentHolder.txtDecreaseArg":"引数のサイズの縮小","PE.Views.DocumentHolder.txtDeleteArg":"引数を削除","PE.Views.DocumentHolder.txtDeleteBreak":"任意指定の改行を削除","PE.Views.DocumentHolder.txtDeleteChars":"囲まれた文字の削除","PE.Views.DocumentHolder.txtDeleteCharsAndSeparators":"囲み文字と区切り文字の削除","PE.Views.DocumentHolder.txtDeleteEq":"数式を削除","PE.Views.DocumentHolder.txtDeleteGroupChar":"文字を削除","PE.Views.DocumentHolder.txtDeleteRadical":"冪根を削除する","PE.Views.DocumentHolder.txtDeleteSlide":"スライドを削除する","PE.Views.DocumentHolder.txtDestEmbed":"送信先のテーマを使用してワークブックを埋め込む","PE.Views.DocumentHolder.txtDestLink":"目的地のテーマとリンクデータを使用する","PE.Views.DocumentHolder.txtDistribHor":"水平に整列する","PE.Views.DocumentHolder.txtDistribVert":"上下に整列","PE.Views.DocumentHolder.txtDuplicateSlide":"スライドの複製","PE.Views.DocumentHolder.txtFractionLinear":"分数(横)に変更","PE.Views.DocumentHolder.txtFractionSkewed":"分数(斜め)に変更","PE.Views.DocumentHolder.txtFractionStacked":"分数(縦)に変更\t","PE.Views.DocumentHolder.txtGroup":"グループ","PE.Views.DocumentHolder.txtGroupCharOver":"テキストの上の文字","PE.Views.DocumentHolder.txtGroupCharUnder":"テキスト下の文字","PE.Views.DocumentHolder.txtHideBottom":"下罫線を表示しない","PE.Views.DocumentHolder.txtHideBottomLimit":"下極限を表示しない","PE.Views.DocumentHolder.txtHideCloseBracket":"右括弧を表示しない","PE.Views.DocumentHolder.txtHideDegree":"次数を表示しない","PE.Views.DocumentHolder.txtHideHor":"横線を表示しない","PE.Views.DocumentHolder.txtHideLB":"左(下)の線を表示しない","PE.Views.DocumentHolder.txtHideLeft":"左罫線を表示しない","PE.Views.DocumentHolder.txtHideLT":"左(上)の線を表示しない","PE.Views.DocumentHolder.txtHideOpenBracket":"左括弧を表示しない","PE.Views.DocumentHolder.txtHidePlaceholder":"プレースホルダを表示しない","PE.Views.DocumentHolder.txtHideRight":"右罫線を表示しない","PE.Views.DocumentHolder.txtHideTop":"上罫線を表示しない","PE.Views.DocumentHolder.txtHideTopLimit":"上極限を表示しない","PE.Views.DocumentHolder.txtHideVer":"縦線を表示しない","PE.Views.DocumentHolder.txtIncreaseArg":"引数のサイズの拡大","PE.Views.DocumentHolder.txtInsAudio":"オーディオの挿入","PE.Views.DocumentHolder.txtInsChart":"グラフの挿入","PE.Views.DocumentHolder.txtInsertArgAfter":"の後に引数を挿入","PE.Views.DocumentHolder.txtInsertArgBefore":"の前に引数を挿入","PE.Views.DocumentHolder.txtInsertBreak":"手動ブレークを挿入","PE.Views.DocumentHolder.txtInsertEqAfter":"後に方程式を挿入","PE.Views.DocumentHolder.txtInsertEqBefore":"前に方程式を挿入","PE.Views.DocumentHolder.txtInsImage":"画像をファイルから挿入する","PE.Views.DocumentHolder.txtInsImageUrl":"画像をURLから挿入する","PE.Views.DocumentHolder.txtInsSmartArt":"SmartArtの挿入","PE.Views.DocumentHolder.txtInsTable":"テーブルの挿入","PE.Views.DocumentHolder.txtInsVideo":"ビデオを挿入","PE.Views.DocumentHolder.txtKeepTextOnly":"テキストのみ保存","PE.Views.DocumentHolder.txtLimitChange":"制限の位置を変更する","PE.Views.DocumentHolder.txtLimitOver":"テキストの上に制限する","PE.Views.DocumentHolder.txtLimitUnder":"テキストの下に制限する","PE.Views.DocumentHolder.txtMatchBrackets":"括弧を引数の高さに合わせる","PE.Views.DocumentHolder.txtMatrixAlign":"行列の配置","PE.Views.DocumentHolder.txtMoveSlidesToEnd":"スライドを最後に移動","PE.Views.DocumentHolder.txtMoveSlidesToStart":"スライドを最初に移動","PE.Views.DocumentHolder.txtNewSlide":"新しいスライド","PE.Views.DocumentHolder.txtOverbar":"テキストの上にバー","PE.Views.DocumentHolder.txtPasteDestFormat":"宛先テーマを使用する","PE.Views.DocumentHolder.txtPastePicture":"画像","PE.Views.DocumentHolder.txtPasteSourceFormat":"元の書式付けを保存する","PE.Views.DocumentHolder.txtPercentage":"Percentage","PE.Views.DocumentHolder.txtPressLink":"{0}キーを押しながらクリックしてリンク先を表示","PE.Views.DocumentHolder.txtPreview":"スライドショーの開始","PE.Views.DocumentHolder.txtPrintSelection":"選択範囲の印刷","PE.Views.DocumentHolder.txtRemFractionBar":"分数線の削除","PE.Views.DocumentHolder.txtRemLimit":"制限を削除する","PE.Views.DocumentHolder.txtRemoveAccentChar":"アクセント記号を削除","PE.Views.DocumentHolder.txtRemoveBar":"上/下線の削除","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":"すべてを選択","PE.Views.DocumentHolder.txtShowBottomLimit":"下限を表示する","PE.Views.DocumentHolder.txtShowCloseBracket":"右大括弧を表示","PE.Views.DocumentHolder.txtShowDegree":"次数を表示","PE.Views.DocumentHolder.txtShowOpenBracket":"左大括弧を表示","PE.Views.DocumentHolder.txtShowPlaceholder":"プレースホルダーの表示","PE.Views.DocumentHolder.txtShowTopLimit":"上限を表示する","PE.Views.DocumentHolder.txtSlide":"スライド","PE.Views.DocumentHolder.txtSlideHide":"スライドを非表示にする","PE.Views.DocumentHolder.txtSourceEmbed":"元の書式を保持&ワークブックを埋め込む","PE.Views.DocumentHolder.txtSourceLink":"ソース形式とリンクデータを維持する","PE.Views.DocumentHolder.txtStretchBrackets":"括弧の拡大","PE.Views.DocumentHolder.txtTop":"トップ","PE.Views.DocumentHolder.txtUnderbar":"テキストの下にバー","PE.Views.DocumentHolder.txtUngroup":"グループ解除","PE.Views.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。
本当に続けてよろしいですか?","PE.Views.DocumentHolder.unicodeText":"Unicode","PE.Views.DocumentHolder.vertAlignText":"垂直方向の配置","PE.Views.DocumentPreview.goToSlideText":"スライドへジャンプ","PE.Views.DocumentPreview.slideIndexText":"スライド {0}/{1}","PE.Views.DocumentPreview.txtClose":"スライドショーを閉じる","PE.Views.DocumentPreview.txtDraw":"描画","PE.Views.DocumentPreview.txtEndSlideshow":"スライドショーの終了","PE.Views.DocumentPreview.txtEraser":"消しゴム","PE.Views.DocumentPreview.txtEraseScreen":"画面をクリア","PE.Views.DocumentPreview.txtExitFullScreen":"全画面表示の終了","PE.Views.DocumentPreview.txtFinalMessage":"スライドプレビューの終わりです。終了するには、クリックしてください。","PE.Views.DocumentPreview.txtFullScreen":"全画面表示","PE.Views.DocumentPreview.txtHighlighter":"蛍光ペン","PE.Views.DocumentPreview.txtInkColor":"インクの色","PE.Views.DocumentPreview.txtNext":"次のスライド","PE.Views.DocumentPreview.txtPageNumInvalid":"スライド番号が正しくありません。","PE.Views.DocumentPreview.txtPause":"プレゼンテーションの一時停止","PE.Views.DocumentPreview.txtPen":"ペン","PE.Views.DocumentPreview.txtPlay":"プレゼンテーションの開始","PE.Views.DocumentPreview.txtPointer":"Laser pointer","PE.Views.DocumentPreview.txtPrev":"前のスライド","PE.Views.DocumentPreview.txtReset":"リセット","PE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","PE.Views.FileMenu.btnAboutCaption":"詳細情報","PE.Views.FileMenu.btnBackCaption":"ファイルの場所を開く","PE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","PE.Views.FileMenu.btnCloseMenuCaption":"戻る","PE.Views.FileMenu.btnCreateNewCaption":"新規作成","PE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","PE.Views.FileMenu.btnExitCaption":"閉じる","PE.Views.FileMenu.btnFileOpenCaption":"開く","PE.Views.FileMenu.btnHelpCaption":"ヘルプ","PE.Views.FileMenu.btnHistoryCaption":"バージョン履歴","PE.Views.FileMenu.btnInfoCaption":"詳細情報","PE.Views.FileMenu.btnPrintCaption":"印刷する","PE.Views.FileMenu.btnProtectCaption":"保護する","PE.Views.FileMenu.btnRecentFilesCaption":"最近開いた","PE.Views.FileMenu.btnRenameCaption":"名前を変更","PE.Views.FileMenu.btnReturnCaption":"プレゼンテーションに戻る","PE.Views.FileMenu.btnRightsCaption":"アクセス権","PE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","PE.Views.FileMenu.btnSaveCaption":"保存する","PE.Views.FileMenu.btnSaveCopyAsCaption":"コピーを別名で保存する","PE.Views.FileMenu.btnSettingsCaption":"詳細設定","PE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","PE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","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.txtAddProperty":"プロパティの追加","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.txtCommon":"共通","PE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成済み","PE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"ドキュメントのプロパティ","PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","PE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","PE.Views.FileMenuPanels.DocumentInfo.txtOwner":"所有者","PE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"位置","PE.Views.FileMenuPanels.DocumentInfo.txtPresentationInfo":"プレゼンテーション情報","PE.Views.FileMenuPanels.DocumentInfo.txtProperties":"プロパティ","PE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"このタイトルのプロパティはすでに存在します","PE.Views.FileMenuPanels.DocumentInfo.txtRights":"権利を有する者","PE.Views.FileMenuPanels.DocumentInfo.txtSubject":"件名","PE.Views.FileMenuPanels.DocumentInfo.txtTags":"タグ","PE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","PE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロード済み","PE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","PE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス権","PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス許可の変更","PE.Views.FileMenuPanels.DocumentRights.txtRights":"権利を有する者","PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"警告","PE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"パスワード付きで","PE.Views.FileMenuPanels.ProtectDoc.strProtect":"プレゼンテーションを保護する","PE.Views.FileMenuPanels.ProtectDoc.strSignature":"署名付きで","PE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有効な署名がプレゼンテーションに追加されました。
プレゼンテーションは編集から保護されています。","PE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"
目に見えないデジタル署名を追加することで、プレゼンテーションの完全性を確保する。","PE.Views.FileMenuPanels.ProtectDoc.txtEdit":"プレゼンテーションの編集","PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"編集すると、プレゼンテーションから署名が削除されます。
続行しますか?","PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"このプレゼンテーションはパスワードで保護されています。","PE.Views.FileMenuPanels.ProtectDoc.txtProtectPresentation":"このプレゼンテーションをパスワードで暗号化する","PE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有効な署名がプレゼンテーションに追加されました。 プレゼンテーションは編集から保護されています。","PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"プレゼンテーションのデジタル署名の一部が無効であるか、認証できませんでした。 プレゼンテーションは編集から保護されています。","PE.Views.FileMenuPanels.ProtectDoc.txtView":"署名の表示","PE.Views.FileMenuPanels.Settings.okButtonText":"適用する","PE.Views.FileMenuPanels.Settings.strCoAuthMode":"共同編集モード","PE.Views.FileMenuPanels.Settings.strFast":"高速","PE.Views.FileMenuPanels.Settings.strFontRender":"フォントヒンティング","PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE":"大文字がある言葉を無視する","PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers":"数字のある単語は無視する","PE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Keyboard Shortcuts","PE.Views.FileMenuPanels.Settings.strMacrosSettings":"マクロの設定","PE.Views.FileMenuPanels.Settings.strPasteButton":"貼り付けるときに[貼り付けオプション]ボタンを表示する","PE.Views.FileMenuPanels.Settings.strRTLSupport":"RTLインターフェース","PE.Views.FileMenuPanels.Settings.strShowOthersChanges":"他のユーザーの変更点を表示する","PE.Views.FileMenuPanels.Settings.strStrict":"厳格","PE.Views.FileMenuPanels.Settings.strTabStyle":"タブのスタイル","PE.Views.FileMenuPanels.Settings.strTheme":"インターフェイスのテーマ","PE.Views.FileMenuPanels.Settings.strUnit":"測定単位","PE.Views.FileMenuPanels.Settings.strZoom":"デフォルトのズーム値","PE.Views.FileMenuPanels.Settings.text10Minutes":"10分毎","PE.Views.FileMenuPanels.Settings.text30Minutes":"30分毎","PE.Views.FileMenuPanels.Settings.text5Minutes":"5分毎","PE.Views.FileMenuPanels.Settings.text60Minutes":"1時間毎","PE.Views.FileMenuPanels.Settings.textAlignGuides":"配置ガイド","PE.Views.FileMenuPanels.Settings.textAutoRecover":"自動回復情報を保存する","PE.Views.FileMenuPanels.Settings.textAutoSave":"オートセーブ","PE.Views.FileMenuPanels.Settings.textDisabled":"無効","PE.Views.FileMenuPanels.Settings.textFill":"塗りつぶし","PE.Views.FileMenuPanels.Settings.textForceSave":"中間バージョンの保存","PE.Views.FileMenuPanels.Settings.textLine":"線","PE.Views.FileMenuPanels.Settings.textMinute":"1分毎","PE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"詳細設定","PE.Views.FileMenuPanels.Settings.txtAll":"全て表示","PE.Views.FileMenuPanels.Settings.txtAppearance":"外観","PE.Views.FileMenuPanels.Settings.txtAutoCorrect":"オートコレクト設定…","PE.Views.FileMenuPanels.Settings.txtCacheMode":"デフォルトのキャッシュモード","PE.Views.FileMenuPanels.Settings.txtCm":"センチ","PE.Views.FileMenuPanels.Settings.txtCollaboration":"共同編集","PE.Views.FileMenuPanels.Settings.txtCustomize":"Customize","PE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","PE.Views.FileMenuPanels.Settings.txtEditingSaving":"編集と保存","PE.Views.FileMenuPanels.Settings.txtFastTip":"リアルタイムの共同編集 すべての変更は自動的に保存されます","PE.Views.FileMenuPanels.Settings.txtFitSlide":"スライドに合わせる","PE.Views.FileMenuPanels.Settings.txtFitWidth":"幅に合わせる","PE.Views.FileMenuPanels.Settings.txtHieroglyphs":"漢字","PE.Views.FileMenuPanels.Settings.txtInch":"インチ","PE.Views.FileMenuPanels.Settings.txtLast":"最後に表示","PE.Views.FileMenuPanels.Settings.txtLastUsed":"最後に使用した項目","PE.Views.FileMenuPanels.Settings.txtMac":"OS Xとして","PE.Views.FileMenuPanels.Settings.txtNative":"ネイティブ","PE.Views.FileMenuPanels.Settings.txtProofing":"校正","PE.Views.FileMenuPanels.Settings.txtPt":"ポイント","PE.Views.FileMenuPanels.Settings.txtQuickPrint":"クイックプリントボタンをエディタヘッダーに表示","PE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","PE.Views.FileMenuPanels.Settings.txtRunMacros":"全てを有効にする","PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc":"通知を使用せずにすべてのマクロを有効にする","PE.Views.FileMenuPanels.Settings.txtScreenReader":"スクリーンリーダーのサポートをオンにする","PE.Views.FileMenuPanels.Settings.txtSpellCheck":"スペルチェック","PE.Views.FileMenuPanels.Settings.txtStopMacros":"全てを無効にする","PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc":"通知を使用せずにすべてのマクロを無効にする","PE.Views.FileMenuPanels.Settings.txtStrictTip":"「保存」ボタンを使用して、あなたや他人が行った変更を同期させることができます","PE.Views.FileMenuPanels.Settings.txtTabBack":"ツールバーの色をタブの背景に使う","PE.Views.FileMenuPanels.Settings.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーを使用します","PE.Views.FileMenuPanels.Settings.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","PE.Views.FileMenuPanels.Settings.txtWarnMacros":"通知を表示する","PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc":"通知を使用してすべてのマクロを無効にする","PE.Views.FileMenuPanels.Settings.txtWin":"Windowsとして","PE.Views.FileMenuPanels.Settings.txtWorkspace":"ワークスペース","PE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","PE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","PE.Views.GridSettings.textCm":"センチ","PE.Views.GridSettings.textCustom":"ユーザー設定","PE.Views.GridSettings.textSpacing":"間隔","PE.Views.GridSettings.textTitle":"グリッド設定","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.textFormat":"フォーマット","PE.Views.HeaderFooterDialog.textHFTitle":"ヘッダー/フッター設定","PE.Views.HeaderFooterDialog.textLang":"言語","PE.Views.HeaderFooterDialog.textNotes":"ノートと配布資料","PE.Views.HeaderFooterDialog.textNotTitle":"タイトルスライドに表示しない","PE.Views.HeaderFooterDialog.textPageNum":"ページ番号","PE.Views.HeaderFooterDialog.textPreview":"プレビュー","PE.Views.HeaderFooterDialog.textSlide":"スライド","PE.Views.HeaderFooterDialog.textSlideNum":"スライド番号","PE.Views.HeaderFooterDialog.textUpdate":"自動的に更新","PE.Views.HeaderFooterDialog.txtFooter":"フッター","PE.Views.HeaderFooterDialog.txtHeader":"ヘッダー","PE.Views.HyperlinkSettingsDialog.strDisplay":"表示する","PE.Views.HyperlinkSettingsDialog.strLinkTo":"リンク先","PE.Views.HyperlinkSettingsDialog.textDefault":"選択されたテキストフラグメント","PE.Views.HyperlinkSettingsDialog.textEmptyDesc":"ここでキャプションを挿入してください。","PE.Views.HyperlinkSettingsDialog.textEmptyLink":"ここでリンクを挿入してください。","PE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"ここでツールチップを挿入してください。","PE.Views.HyperlinkSettingsDialog.textExternalLink":"外部リンク","PE.Views.HyperlinkSettingsDialog.textInternalLink":"このプレゼンテーションのスライド","PE.Views.HyperlinkSettingsDialog.textSelectFile":"ファイル選択","PE.Views.HyperlinkSettingsDialog.textSlides":"スライド","PE.Views.HyperlinkSettingsDialog.textTipText":"ヒントのテキスト:","PE.Views.HyperlinkSettingsDialog.textTitle":"ハイパーリンクの設定","PE.Views.HyperlinkSettingsDialog.txtEmpty":"このフィールドは必須項目です","PE.Views.HyperlinkSettingsDialog.txtFirst":"最初のスライド","PE.Views.HyperlinkSettingsDialog.txtLast":"最後のスライド","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.HyperlinkSettingsDialog.txtUrlPlaceholder":"ウェブアドレスを入力するか、ファイルを選択してください","PE.Views.ImageSettings.strTransparency":"不透明度","PE.Views.ImageSettings.textAdvanced":"詳細設定の表示","PE.Views.ImageSettings.textCrop":"トリミング","PE.Views.ImageSettings.textCropFill":"塗りつぶし","PE.Views.ImageSettings.textCropFit":"合わせる","PE.Views.ImageSettings.textCropToShape":"図形に合わせてトリミング","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.textRecentlyUsed":"最近使った項目","PE.Views.ImageSettings.textResetCrop":"トリミングをリセット","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.textAltTitle":"タイトル","PE.Views.ImageSettingsAdvanced.textAngle":"角度","PE.Views.ImageSettingsAdvanced.textCenter":"中央揃え","PE.Views.ImageSettingsAdvanced.textFlipped":"反転","PE.Views.ImageSettingsAdvanced.textFrom":"基準","PE.Views.ImageSettingsAdvanced.textGeneral":"一般","PE.Views.ImageSettingsAdvanced.textHeight":"高さ","PE.Views.ImageSettingsAdvanced.textHorizontal":"水平","PE.Views.ImageSettingsAdvanced.textHorizontally":"水平に","PE.Views.ImageSettingsAdvanced.textImageName":"画像名","PE.Views.ImageSettingsAdvanced.textKeepRatio":"一定の比率","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.textTopLeftCorner":"左上隅","PE.Views.ImageSettingsAdvanced.textVertical":"縦","PE.Views.ImageSettingsAdvanced.textVertically":"縦に","PE.Views.ImageSettingsAdvanced.textWidth":"幅","PE.Views.LeftMenu.ariaLeftMenu":"左メニュー","PE.Views.LeftMenu.tipAbout":"詳細情報","PE.Views.LeftMenu.tipChat":"チャット","PE.Views.LeftMenu.tipComments":"コメント","PE.Views.LeftMenu.tipPlugins":"プラグイン","PE.Views.LeftMenu.tipSearch":"検索","PE.Views.LeftMenu.tipSlides":"スライド","PE.Views.LeftMenu.tipSupport":"フィードバック&サポート","PE.Views.LeftMenu.tipTitles":"タイトル","PE.Views.LeftMenu.txtDeveloper":"開発者モード","PE.Views.LeftMenu.txtEditor":"プレゼンテーションエディター","PE.Views.LeftMenu.txtLimit":"制限されたアクセス","PE.Views.LeftMenu.txtTrial":"試用モード","PE.Views.LeftMenu.txtTrialDev":"試用開発者モード","PE.Views.ParagraphSettings.strLineHeight":"行間","PE.Views.ParagraphSettings.strParagraphSpacing":"段落の間隔","PE.Views.ParagraphSettings.strSpacingAfter":"後","PE.Views.ParagraphSettings.strSpacingBefore":"前","PE.Views.ParagraphSettings.textAdvanced":"詳細設定の表示","PE.Views.ParagraphSettings.textAt":"に","PE.Views.ParagraphSettings.textAtLeast":"最小限","PE.Views.ParagraphSettings.textAuto":"倍数","PE.Views.ParagraphSettings.textExact":"固定値","PE.Views.ParagraphSettings.txtAutoText":"オート","PE.Views.ParagraphSettingsAdvanced.noTabs":"指定されたタブは、このフィールドに表示されます。","PE.Views.ParagraphSettingsAdvanced.strAllCaps":"すべて大文字","PE.Views.ParagraphSettingsAdvanced.strDirection":"方向","PE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"二重取り消し線","PE.Views.ParagraphSettingsAdvanced.strIndent":"インデント","PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"行間","PE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"右","PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"後","PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"前","PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"特殊","PE.Views.ParagraphSettingsAdvanced.strParagraphFont":"フォント","PE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"インデント&行間隔","PE.Views.ParagraphSettingsAdvanced.strSmallCaps":"小型英大文字\t","PE.Views.ParagraphSettingsAdvanced.strSpacing":"間隔","PE.Views.ParagraphSettingsAdvanced.strStrike":"取り消し線","PE.Views.ParagraphSettingsAdvanced.strSubscript":"下付き文字","PE.Views.ParagraphSettingsAdvanced.strSuperscript":"上付き文字","PE.Views.ParagraphSettingsAdvanced.strTabs":"タブ","PE.Views.ParagraphSettingsAdvanced.textAlign":"配置","PE.Views.ParagraphSettingsAdvanced.textAuto":"倍数","PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"文字間隔","PE.Views.ParagraphSettingsAdvanced.textDefault":"既定のタブ","PE.Views.ParagraphSettingsAdvanced.textDirLtr":"左から右へ","PE.Views.ParagraphSettingsAdvanced.textDirRtl":"右から左へ","PE.Views.ParagraphSettingsAdvanced.textEffects":"エフェクト","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":"中央揃え","PE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","PE.Views.ParagraphSettingsAdvanced.textTabPosition":"タブの位置","PE.Views.ParagraphSettingsAdvanced.textTabRight":"右","PE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 詳細設定","PE.Views.ParagraphSettingsAdvanced.txtAutoText":"オート","PE.Views.PrintWithPreview.txtAllPages":"全てのスライド","PE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"白黒印刷","PE.Views.PrintWithPreview.txtBothSides":"両面印刷","PE.Views.PrintWithPreview.txtBothSidesLongDesc":"長辺を綴じる","PE.Views.PrintWithPreview.txtBothSidesShortDesc":"短辺を綴じる","PE.Views.PrintWithPreview.txtColorPrinting":"カラー印刷","PE.Views.PrintWithPreview.txtCopies":"コピー","PE.Views.PrintWithPreview.txtCurrentPage":"現在のスライド","PE.Views.PrintWithPreview.txtCustom":"カスタム","PE.Views.PrintWithPreview.txtCustomPages":"カスタム印刷","PE.Views.PrintWithPreview.txtEmptyTable":"プレゼンテーションが空白のため、印刷できるスライドがありません。","PE.Views.PrintWithPreview.txtHeaderFooterSettings":"ヘッダー/フッター設定","PE.Views.PrintWithPreview.txtOf":"{0}から","PE.Views.PrintWithPreview.txtOneSide":"片面印刷","PE.Views.PrintWithPreview.txtOneSideDesc":"ページの片面のみを印刷する","PE.Views.PrintWithPreview.txtPage":"スライド","PE.Views.PrintWithPreview.txtPageNumInvalid":"スライド番号無効","PE.Views.PrintWithPreview.txtPages":"スライド","PE.Views.PrintWithPreview.txtPaperSize":"用紙サイズ","PE.Views.PrintWithPreview.txtPrint":"印刷","PE.Views.PrintWithPreview.txtPrinter":"プリンター","PE.Views.PrintWithPreview.txtPrinterNotSelected":"プリンターが選択されていない","PE.Views.PrintWithPreview.txtPrintersNotFound":"プリンターが見つかりません","PE.Views.PrintWithPreview.txtPrintPdf":"PDFに印刷","PE.Views.PrintWithPreview.txtPrintRange":"印刷範囲\t","PE.Views.PrintWithPreview.txtPrintSides":"両面印刷","PE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"システムダイアログで印刷する","PE.Views.PrintWithPreview.txtWaitingForPrinters":"プリンターを待っています","PE.Views.RightMenu.ariaRightMenu":"右メニュー","PE.Views.RightMenu.txtChartSettings":"グラフの設定","PE.Views.RightMenu.txtImageSettings":"画像の設定","PE.Views.RightMenu.txtParagraphSettings":"段落の設定","PE.Views.RightMenu.txtShapeSettings":"図形の設定","PE.Views.RightMenu.txtSignatureSettings":"署名の設定","PE.Views.RightMenu.txtSlideSettings":"スライド設定","PE.Views.RightMenu.txtTableSettings":"表の設定","PE.Views.RightMenu.txtTextArtSettings":"テキストアートの設定","PE.Views.ShapeSettings.strBackground":"背景色","PE.Views.ShapeSettings.strChange":"図形の変更","PE.Views.ShapeSettings.strColor":"色","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.strType":"タイプ","PE.Views.ShapeSettings.textAdjustShadow":"影の調整","PE.Views.ShapeSettings.textAdvanced":"詳細設定の表示","PE.Views.ShapeSettings.textAngle":"角度","PE.Views.ShapeSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","PE.Views.ShapeSettings.textColor":"色で塗りつぶし","PE.Views.ShapeSettings.textDirection":"方向","PE.Views.ShapeSettings.textEditPoints":"頂点の編集","PE.Views.ShapeSettings.textEditShape":"図形の編集","PE.Views.ShapeSettings.textEmptyPattern":"パターンなし","PE.Views.ShapeSettings.textEyedropper":"スポイト","PE.Views.ShapeSettings.textFlip":"反転する","PE.Views.ShapeSettings.textFromFile":"ファイルから","PE.Views.ShapeSettings.textFromStorage":"ストレージから","PE.Views.ShapeSettings.textFromUrl":"URLから","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.textMoreColors":"その他の色","PE.Views.ShapeSettings.textNoFill":"塗りつぶしなし","PE.Views.ShapeSettings.textNoShadow":"影なし","PE.Views.ShapeSettings.textPatternFill":"パターン","PE.Views.ShapeSettings.textPosition":"位置","PE.Views.ShapeSettings.textRadial":"ラジアル","PE.Views.ShapeSettings.textRecentlyUsed":"最近使った項目","PE.Views.ShapeSettings.textRotate90":"90度回転","PE.Views.ShapeSettings.textRotation":"回転","PE.Views.ShapeSettings.textSelectImage":"画像の選択","PE.Views.ShapeSettings.textSelectTexture":"選択","PE.Views.ShapeSettings.textShadow":"影","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":"キャンバス","PE.Views.ShapeSettings.txtCarton":"カートン","PE.Views.ShapeSettings.txtDarkFabric":"ダークファブリック","PE.Views.ShapeSettings.txtGrain":"粒子","PE.Views.ShapeSettings.txtGranite":"花崗岩","PE.Views.ShapeSettings.txtGreyPaper":"グレー紙","PE.Views.ShapeSettings.txtKnit":"ニット","PE.Views.ShapeSettings.txtLeather":"レザー","PE.Views.ShapeSettings.txtNoBorders":"線なし","PE.Views.ShapeSettings.txtOffsetBottom":"オフセット:下","PE.Views.ShapeSettings.txtOffsetBottomLeft":"オフセット:左下","PE.Views.ShapeSettings.txtOffsetBottomRight":"オフセット:右下","PE.Views.ShapeSettings.txtOffsetCenter":"オフセット:中央","PE.Views.ShapeSettings.txtOffsetLeft":"オフセット:左","PE.Views.ShapeSettings.txtOffsetRight":"オフセット:右","PE.Views.ShapeSettings.txtOffsetTop":"オフセット:上","PE.Views.ShapeSettings.txtOffsetTopLeft":"オフセット:左上","PE.Views.ShapeSettings.txtOffsetTopRight":"オフセット:右上","PE.Views.ShapeSettings.txtPapyrus":"パピルス","PE.Views.ShapeSettings.txtWood":"木","PE.Views.ShapeSettingsAdvanced.strColumns":"列","PE.Views.ShapeSettingsAdvanced.strMargins":"テキストの埋め込み文字","PE.Views.ShapeSettingsAdvanced.textAlt":"代替テキスト","PE.Views.ShapeSettingsAdvanced.textAltDescription":"説明","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":"斜角","PE.Views.ShapeSettingsAdvanced.textBottom":"下","PE.Views.ShapeSettingsAdvanced.textCapType":"線の先端","PE.Views.ShapeSettingsAdvanced.textCenter":"中央揃え","PE.Views.ShapeSettingsAdvanced.textColNumber":"列数","PE.Views.ShapeSettingsAdvanced.textEndSize":"終点のサイズ","PE.Views.ShapeSettingsAdvanced.textEndStyle":"終点のスタイル","PE.Views.ShapeSettingsAdvanced.textFlat":"フラット","PE.Views.ShapeSettingsAdvanced.textFlipped":"反転","PE.Views.ShapeSettingsAdvanced.textFrom":"基準","PE.Views.ShapeSettingsAdvanced.textGeneral":"一般","PE.Views.ShapeSettingsAdvanced.textHeight":"高さ","PE.Views.ShapeSettingsAdvanced.textHorizontal":"水平","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.textPlacement":"位置","PE.Views.ShapeSettingsAdvanced.textPosition":"位置","PE.Views.ShapeSettingsAdvanced.textResizeFit":"テキストに合わせて図形を調整","PE.Views.ShapeSettingsAdvanced.textRight":"右","PE.Views.ShapeSettingsAdvanced.textRotation":"回転","PE.Views.ShapeSettingsAdvanced.textRound":"円い","PE.Views.ShapeSettingsAdvanced.textShapeName":"図形名","PE.Views.ShapeSettingsAdvanced.textShrink":"はみ出す場合だけ自動調整する","PE.Views.ShapeSettingsAdvanced.textSize":"サイズ","PE.Views.ShapeSettingsAdvanced.textSpacing":"列の間隔","PE.Views.ShapeSettingsAdvanced.textSquare":"四角","PE.Views.ShapeSettingsAdvanced.textTextBox":"テキストボックス","PE.Views.ShapeSettingsAdvanced.textTitle":"図形 - 詳細設定","PE.Views.ShapeSettingsAdvanced.textTop":"トップ","PE.Views.ShapeSettingsAdvanced.textTopLeftCorner":"左上隅","PE.Views.ShapeSettingsAdvanced.textVertical":"縦","PE.Views.ShapeSettingsAdvanced.textVertically":"縦に","PE.Views.ShapeSettingsAdvanced.textWeightArrows":"太さ&矢印","PE.Views.ShapeSettingsAdvanced.textWidth":"幅","PE.Views.ShapeSettingsAdvanced.txtNone":"なし","PE.Views.SignatureSettings.notcriticalErrorTitle":"警告","PE.Views.SignatureSettings.strDelete":"署名の削除","PE.Views.SignatureSettings.strDetails":"署名の詳細","PE.Views.SignatureSettings.strInvalid":"無効な署名","PE.Views.SignatureSettings.strSign":"署名する","PE.Views.SignatureSettings.strSignature":"署名","PE.Views.SignatureSettings.strValid":"有効な署名","PE.Views.SignatureSettings.txtContinueEditing":"無視して編集する","PE.Views.SignatureSettings.txtEditWarning":"編集すると、プレゼンテーションから署名が削除されます。
続行しますか?","PE.Views.SignatureSettings.txtRemoveWarning":"この署名を削除しますか?
この操作は元に戻せません。","PE.Views.SignatureSettings.txtSigned":"有効な署名がプレゼンテーションに追加されました。 プレゼンテーションは編集から保護されています。","PE.Views.SignatureSettings.txtSignedInvalid":"プレゼンテーションのデジタル署名の一部が無効であるか、認証できませんでした。 プレゼンテーションは編集から保護されています。","PE.Views.SlideMasterTab.capAddLayout":"レイアウトの追加","PE.Views.SlideMasterTab.capAddSlideMaster":"スライドマスターの追加","PE.Views.SlideMasterTab.capCloseMaster":"マスターを閉じる","PE.Views.SlideMasterTab.capInsertPlaceholder":"プレースホルダーの挿入","PE.Views.SlideMasterTab.textChart":"チャート","PE.Views.SlideMasterTab.textContent":"コンテンツ","PE.Views.SlideMasterTab.textContentVertical":"コンテンツ(縦型)","PE.Views.SlideMasterTab.textFooters":"フッター","PE.Views.SlideMasterTab.textPicture":"画像","PE.Views.SlideMasterTab.textSmartArt":"SmartArt","PE.Views.SlideMasterTab.textTable":"表","PE.Views.SlideMasterTab.textText":"テキスト","PE.Views.SlideMasterTab.textTextVertical":"テキスト(縦)","PE.Views.SlideMasterTab.textTitle":"タイトル","PE.Views.SlideMasterTab.tipAddLayout":"レイアウトの追加","PE.Views.SlideMasterTab.tipAddSlideMaster":"スライドマスターの追加","PE.Views.SlideMasterTab.tipCloseMaster":"マスターを閉じる","PE.Views.SlideMasterTab.tipInsertChartPlaceholder":"チャート・プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertContentPlaceholder":"コンテンツ・プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertContentVerticalPlaceholder":"コンテンツ(垂直)プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertPicturePlaceholder":"画像プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertPlaceholder":"プレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertSmartArtPlaceholder":"SmartArtプレースホルダの挿入","PE.Views.SlideMasterTab.tipInsertTablePlaceholder":"テーブル・プレースホルダの挿入","PE.Views.SlideMasterTab.tipInsertTextPlaceholder":"テキストプレースホルダーの挿入","PE.Views.SlideMasterTab.tipInsertTextVerticalPlaceholder":"テキスト(縦書き)プレースホルダーの挿入","PE.Views.SlideSettings.strApplyAllSlides":"全てのスライドに適用する","PE.Views.SlideSettings.strBackground":"背景色","PE.Views.SlideSettings.strBackgroundGraphics":"背景グラフィックを表示する","PE.Views.SlideSettings.strBackgroundReset":"背景をリセットする","PE.Views.SlideSettings.strColor":"色","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":"方向","PE.Views.SlideSettings.textEmptyPattern":"パターンなし","PE.Views.SlideSettings.textFromFile":"ファイルから","PE.Views.SlideSettings.textFromStorage":"ストレージから","PE.Views.SlideSettings.textFromUrl":"URLから","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":"キャンバス","PE.Views.SlideSettings.txtCarton":"カートン","PE.Views.SlideSettings.txtDarkFabric":"ダークファブリック","PE.Views.SlideSettings.txtGrain":"粒子","PE.Views.SlideSettings.txtGranite":"花崗岩","PE.Views.SlideSettings.txtGreyPaper":"グレー紙","PE.Views.SlideSettings.txtKnit":"ニット","PE.Views.SlideSettings.txtLeather":"レザー","PE.Views.SlideSettings.txtPapyrus":"パピルス","PE.Views.SlideSettings.txtWood":"木","PE.Views.SlideshowSettings.textLoop":"Escキーが押されるまで繰り返す","PE.Views.SlideshowSettings.textTitle":"設定を表示","PE.Views.SlideSizeSettings.strLandscape":"横向き","PE.Views.SlideSizeSettings.strPortrait":"縦向き","PE.Views.SlideSizeSettings.textHeight":"高さ","PE.Views.SlideSizeSettings.textSlideOrientation":"スライドの向き","PE.Views.SlideSizeSettings.textSlideSize":"スライドのサイズ","PE.Views.SlideSizeSettings.textTitle":"スライドのサイズを設定","PE.Views.SlideSizeSettings.textWidth":"幅","PE.Views.SlideSizeSettings.txt35":"35mmのスライド","PE.Views.SlideSizeSettings.txtA3":"A3 297x420 mm","PE.Views.SlideSizeSettings.txtA4":"A4 210 x 297 mm","PE.Views.SlideSizeSettings.txtB4":"B4(ICO)(250x353 mm)","PE.Views.SlideSizeSettings.txtB5":"B5(ICO)(176x250 mm)","PE.Views.SlideSizeSettings.txtBanner":"バナー","PE.Views.SlideSizeSettings.txtCustom":"カスタム","PE.Views.SlideSizeSettings.txtLedger":"帳簿用紙(11x17インチ)","PE.Views.SlideSizeSettings.txtLetter":"便箋 (8.5x11インチ)","PE.Views.SlideSizeSettings.txtOverhead":"オーバーヘッド","PE.Views.SlideSizeSettings.txtSlideNum":"スライド番号","PE.Views.SlideSizeSettings.txtStandard":"標準(4:3)","PE.Views.SlideSizeSettings.txtWidescreen":"ワイドスクリーン","PE.Views.Statusbar.goToPageText":"スライドへジャンプ","PE.Views.Statusbar.pageIndexText":"スライド {0}/{1}","PE.Views.Statusbar.textShowBegin":"先頭から表示する","PE.Views.Statusbar.textShowCurrent":"現在のスライドからの表示","PE.Views.Statusbar.textShowPresenterView":"発表者ビューを表示","PE.Views.Statusbar.textSlideMaster":"スライドマスター","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.tipZoomIn":"ズームイン","PE.Views.Statusbar.tipZoomOut":"ズームアウト","PE.Views.Statusbar.txtPageNumInvalid":"スライド番号が正しくありません。","PE.Views.TableSettings.deleteColumnText":"列を削除","PE.Views.TableSettings.deleteRowText":"行を削除","PE.Views.TableSettings.deleteTableText":"表を削除する","PE.Views.TableSettings.insertColumnLeftText":"左に列を挿入","PE.Views.TableSettings.insertColumnRightText":"右に列を挿入","PE.Views.TableSettings.insertRowAboveText":"上に行を挿入","PE.Views.TableSettings.insertRowBelowText":"下に行を挿入","PE.Views.TableSettings.mergeCellsText":"セルの結合","PE.Views.TableSettings.selectCellText":"セルの選択","PE.Views.TableSettings.selectColumnText":"列の選択","PE.Views.TableSettings.selectRowText":"行の選択","PE.Views.TableSettings.selectTableText":"テーブルの選択","PE.Views.TableSettings.splitCellsText":"セルを分割...","PE.Views.TableSettings.splitCellTitleText":"セルの分割","PE.Views.TableSettings.textAdvanced":"詳細設定の表示","PE.Views.TableSettings.textBackColor":"背景色","PE.Views.TableSettings.textBanded":"縞模様","PE.Views.TableSettings.textBorderColor":"色","PE.Views.TableSettings.textBorders":"罫線のスタイル","PE.Views.TableSettings.textCellSize":"セルのサイズ","PE.Views.TableSettings.textColumns":"列","PE.Views.TableSettings.textDistributeCols":"列の幅を揃える","PE.Views.TableSettings.textDistributeRows":"行の高さを揃える","PE.Views.TableSettings.textEdit":"行/列","PE.Views.TableSettings.textEmptyTemplate":"テンプレートなし","PE.Views.TableSettings.textFirst":"最初の","PE.Views.TableSettings.textHeader":"ヘッダー","PE.Views.TableSettings.textHeight":"高さ","PE.Views.TableSettings.textLast":"最後","PE.Views.TableSettings.textRows":"行","PE.Views.TableSettings.textSelectBorders":"選択したスタイルを適用する罫線を選択してください。 ","PE.Views.TableSettings.textTemplate":"テンプレートから選択する","PE.Views.TableSettings.textTotal":"合計","PE.Views.TableSettings.textWidth":"幅","PE.Views.TableSettings.tipAll":"外枠とすべての内枠の線を設定","PE.Views.TableSettings.tipBottom":"外部の罫線(下)だけを設定","PE.Views.TableSettings.tipInner":"内部の線だけを設定","PE.Views.TableSettings.tipInnerHor":"横線内部の線だけを設定","PE.Views.TableSettings.tipInnerVert":"縦方向の内線のみを設定","PE.Views.TableSettings.tipLeft":"外部の罫線(左)だけを設定","PE.Views.TableSettings.tipNone":"罫線の設定なし","PE.Views.TableSettings.tipOuter":"外枠の罫線だけを設定","PE.Views.TableSettings.tipRight":"外部の罫線(右)だけを設定","PE.Views.TableSettings.tipTop":"外部の罫線(上)だけを設定","PE.Views.TableSettings.txtGroupTable_Custom":"ユーザー設定","PE.Views.TableSettings.txtGroupTable_Dark":"ダーク","PE.Views.TableSettings.txtGroupTable_Light":"ライト","PE.Views.TableSettings.txtGroupTable_Medium":"中","PE.Views.TableSettings.txtGroupTable_Optimal":"ドキュメントに最適なスタイル","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.textAltTitle":"タイトル","PE.Views.TableSettingsAdvanced.textBottom":"下","PE.Views.TableSettingsAdvanced.textCenter":"中央揃え","PE.Views.TableSettingsAdvanced.textCheckMargins":"既定の余白を使用","PE.Views.TableSettingsAdvanced.textDefaultMargins":"既定の余白","PE.Views.TableSettingsAdvanced.textFrom":"基準","PE.Views.TableSettingsAdvanced.textGeneral":"一般","PE.Views.TableSettingsAdvanced.textHeight":"高さ","PE.Views.TableSettingsAdvanced.textHorizontal":"水平","PE.Views.TableSettingsAdvanced.textKeepRatio":"一定の比率","PE.Views.TableSettingsAdvanced.textLeft":"左","PE.Views.TableSettingsAdvanced.textMargins":"セルの余白","PE.Views.TableSettingsAdvanced.textPlacement":"位置","PE.Views.TableSettingsAdvanced.textPosition":"位置","PE.Views.TableSettingsAdvanced.textRight":"右","PE.Views.TableSettingsAdvanced.textSize":"サイズ","PE.Views.TableSettingsAdvanced.textTableName":"表の名前","PE.Views.TableSettingsAdvanced.textTitle":"表 - 詳細設定","PE.Views.TableSettingsAdvanced.textTop":"トップ","PE.Views.TableSettingsAdvanced.textTopLeftCorner":"左上隅","PE.Views.TableSettingsAdvanced.textVertical":"縦","PE.Views.TableSettingsAdvanced.textWidth":"幅","PE.Views.TableSettingsAdvanced.textWidthSpaces":"余白","PE.Views.TextArtSettings.strBackground":"背景色","PE.Views.TextArtSettings.strColor":"色","PE.Views.TextArtSettings.strFill":"塗りつぶし","PE.Views.TextArtSettings.strForeground":"前景色","PE.Views.TextArtSettings.strPattern":"パターン","PE.Views.TextArtSettings.strSize":"サイズ","PE.Views.TextArtSettings.strStroke":"線","PE.Views.TextArtSettings.strTransparency":"不透明度","PE.Views.TextArtSettings.strType":"タイプ","PE.Views.TextArtSettings.textAngle":"角度","PE.Views.TextArtSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","PE.Views.TextArtSettings.textColor":"色で塗りつぶし","PE.Views.TextArtSettings.textDirection":"方向","PE.Views.TextArtSettings.textEmptyPattern":"パターンなし","PE.Views.TextArtSettings.textFromFile":"ファイルから","PE.Views.TextArtSettings.textFromUrl":"URLから","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":"ストレッチ","PE.Views.TextArtSettings.textStyle":"スタイル","PE.Views.TextArtSettings.textTemplate":"テンプレート","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":"キャンバス","PE.Views.TextArtSettings.txtCarton":"カートン","PE.Views.TextArtSettings.txtDarkFabric":"ダークファブリック","PE.Views.TextArtSettings.txtGrain":"粒子","PE.Views.TextArtSettings.txtGranite":"花崗岩","PE.Views.TextArtSettings.txtGreyPaper":"グレー紙","PE.Views.TextArtSettings.txtKnit":"ニット","PE.Views.TextArtSettings.txtLeather":"レザー","PE.Views.TextArtSettings.txtNoBorders":"線なし","PE.Views.TextArtSettings.txtPapyrus":"パピルス","PE.Views.TextArtSettings.txtWood":"木","PE.Views.Toolbar.capAddSlide":"スライドの追加","PE.Views.Toolbar.capBtnAddComment":"コメントを追加","PE.Views.Toolbar.capBtnComment":"コメント","PE.Views.Toolbar.capBtnDateTime":"日付と時刻","PE.Views.Toolbar.capBtnInsHeaderFooter":"ヘッダー/フッター","PE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","PE.Views.Toolbar.capBtnInsSymbol":"記号","PE.Views.Toolbar.capBtnSlideNum":"スライド番号","PE.Views.Toolbar.capInsertAudio":"オーディオ","PE.Views.Toolbar.capInsertChart":"グラフ","PE.Views.Toolbar.capInsertEquation":"方程式\t","PE.Views.Toolbar.capInsertHyperlink":"ハイパーリンク","PE.Views.Toolbar.capInsertImage":"画像","PE.Views.Toolbar.capInsertShape":"図形","PE.Views.Toolbar.capInsertTable":"表","PE.Views.Toolbar.capInsertText":"テキストボックス","PE.Views.Toolbar.capInsertTextArt":"テキストアート","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.mniInsertSSE":"スプレッドシートを挿入","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":"両端揃え","PE.Views.Toolbar.textAlignLeft":"テキストの左揃え","PE.Views.Toolbar.textAlignMiddle":"テキストを中央揃え","PE.Views.Toolbar.textAlignRight":"テキストの右揃え","PE.Views.Toolbar.textAlignTop":"テキストの上揃え","PE.Views.Toolbar.textAlpha":"ギリシャ小文字アルファ","PE.Views.Toolbar.textArrangeBack":"最背面ヘ移動","PE.Views.Toolbar.textArrangeBackward":"背面ヘ移動","PE.Views.Toolbar.textArrangeForward":"前面ヘ移動","PE.Views.Toolbar.textArrangeFront":"最前面ヘ移動","PE.Views.Toolbar.textBetta":"ギリシャ小文字ベータ","PE.Views.Toolbar.textBlackHeart":"ブラック・ハート・スーツ","PE.Views.Toolbar.textBold":"太字","PE.Views.Toolbar.textBullet":"箇条書き","PE.Views.Toolbar.textColumnsCustom":"カスタム設定の列","PE.Views.Toolbar.textColumnsOne":"1列","PE.Views.Toolbar.textColumnsThree":"3列","PE.Views.Toolbar.textColumnsTwo":"2列","PE.Views.Toolbar.textCopyright":"著作権マーク","PE.Views.Toolbar.textDegree":"度記号","PE.Views.Toolbar.textDelta":"ギリシャ小文字デルタ","PE.Views.Toolbar.textDirLtr":"左から右へ","PE.Views.Toolbar.textDirRtl":"右から左へ","PE.Views.Toolbar.textDivision":"除算記号","PE.Views.Toolbar.textDollar":"ドル記号","PE.Views.Toolbar.textEuro":"ユーロ記号","PE.Views.Toolbar.textGreaterEqual":"以上","PE.Views.Toolbar.textInfinity":"無限","PE.Views.Toolbar.textItalic":"イタリック体","PE.Views.Toolbar.textLessEqual":"以下","PE.Views.Toolbar.textLetterPi":"ギリシャの小文字ピー","PE.Views.Toolbar.textLineSpaceOptions":"行間オプション","PE.Views.Toolbar.textListSettings":"リストの設定","PE.Views.Toolbar.textMoreSymbols":"その他の記号","PE.Views.Toolbar.textNotEqualTo":"同等ではない","PE.Views.Toolbar.textOneHalf":"普通分数の1/2","PE.Views.Toolbar.textOneQuarter":"普通分数の1/4","PE.Views.Toolbar.textPlusMinus":"プラスマイナス記号","PE.Views.Toolbar.textRecentlyUsed":"最近使った項目","PE.Views.Toolbar.textRegistered":"登録商標マーク","PE.Views.Toolbar.textSection":"節記号","PE.Views.Toolbar.textShapeAlignBottom":"下揃え","PE.Views.Toolbar.textShapeAlignCenter":"中央揃え\t","PE.Views.Toolbar.textShapeAlignLeft":"左揃え","PE.Views.Toolbar.textShapeAlignMiddle":"上下中央揃え","PE.Views.Toolbar.textShapeAlignRight":"右揃え","PE.Views.Toolbar.textShapeAlignTop":"上揃え","PE.Views.Toolbar.textShapesCombine":"結合","PE.Views.Toolbar.textShapesFragment":"断片","PE.Views.Toolbar.textShapesIntersect":"交差","PE.Views.Toolbar.textShapesSubstract":"減算","PE.Views.Toolbar.textShapesUnion":"連合","PE.Views.Toolbar.textShowBegin":"先頭から表示する","PE.Views.Toolbar.textShowCurrent":"現在のスライドからの表示","PE.Views.Toolbar.textShowPresenterView":"発表者ビューを表示","PE.Views.Toolbar.textShowSettings":"設定を表示","PE.Views.Toolbar.textSmile":"白い笑顔","PE.Views.Toolbar.textSquareRoot":"平方根","PE.Views.Toolbar.textStrikeout":"取り消し線","PE.Views.Toolbar.textSubscript":"下付き文字","PE.Views.Toolbar.textSuperscript":"上付き文字","PE.Views.Toolbar.textTabAnimation":"アニメーション","PE.Views.Toolbar.textTabCollaboration":"共同編集","PE.Views.Toolbar.textTabDesign":"デザイン","PE.Views.Toolbar.textTabDraw":"描画","PE.Views.Toolbar.textTabFile":"ファイル","PE.Views.Toolbar.textTabHome":"ホーム","PE.Views.Toolbar.textTabInsert":"挿入","PE.Views.Toolbar.textTabProtect":"保護","PE.Views.Toolbar.textTabSlideMaster":"スライドマスター","PE.Views.Toolbar.textTabTransitions":"切り替え","PE.Views.Toolbar.textTabView":"表示","PE.Views.Toolbar.textTilde":"チルダ","PE.Views.Toolbar.textTitleError":"エラー","PE.Views.Toolbar.textTradeMark":"商標マーク","PE.Views.Toolbar.textUnderline":"アンダーライン","PE.Views.Toolbar.textYen":"円記号","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":"配色を変更","PE.Views.Toolbar.tipColumns":"列を挿入する","PE.Views.Toolbar.tipCopy":"コピーする","PE.Views.Toolbar.tipCopyStyle":"スタイルをコピーする","PE.Views.Toolbar.tipCut":"切り取り","PE.Views.Toolbar.tipDateTime":"現在の日付と時刻を挿入","PE.Views.Toolbar.tipDecFont":"フォントサイズの縮小","PE.Views.Toolbar.tipDecPrLeft":"インデントを減らす","PE.Views.Toolbar.tipEditHeaderFooter":"ヘッダーまたはフッターの編集","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.tipInsertHorizontalText":"横書きテキストボックスの挿入","PE.Views.Toolbar.tipInsertHyperlink":"ハイパーリンクを追加","PE.Views.Toolbar.tipInsertImage":"画像を挿入","PE.Views.Toolbar.tipInsertShape":"図形を挿入","PE.Views.Toolbar.tipInsertSmartArt":"SmartArtの挿入","PE.Views.Toolbar.tipInsertSymbol":"記号を挿入","PE.Views.Toolbar.tipInsertTable":"表の挿入","PE.Views.Toolbar.tipInsertText":"テキストボックスを挿入","PE.Views.Toolbar.tipInsertTextArt":"テキストアートの挿入","PE.Views.Toolbar.tipInsertVerticalText":"縦書きテキストボックスの挿入","PE.Views.Toolbar.tipInsertVideo":"ビデオを挿入","PE.Views.Toolbar.tipLineSpace":"行間","PE.Views.Toolbar.tipMarkers":"箇条書き","PE.Views.Toolbar.tipMarkersArrow":"箇条書き(矢印)","PE.Views.Toolbar.tipMarkersCheckmark":"箇条書き(チェックマーク)","PE.Views.Toolbar.tipMarkersDash":"「ダッシュ」記号","PE.Views.Toolbar.tipMarkersFRhombus":"箇条書き(ひし形)","PE.Views.Toolbar.tipMarkersFRound":"箇条書き(丸)","PE.Views.Toolbar.tipMarkersFSquare":"箇条書き(四角)","PE.Views.Toolbar.tipMarkersHRound":"箇条書き(円)","PE.Views.Toolbar.tipMarkersStar":"箇条書き(星)","PE.Views.Toolbar.tipNone":"なし","PE.Views.Toolbar.tipNumbers":"ナンバリング","PE.Views.Toolbar.tipPaste":"貼り付け","PE.Views.Toolbar.tipPreview":"スライドショーの開始","PE.Views.Toolbar.tipPrint":"印刷する","PE.Views.Toolbar.tipPrintQuick":"クイックプリント","PE.Views.Toolbar.tipRedo":"やり直す","PE.Views.Toolbar.tipReplace":"置き換え","PE.Views.Toolbar.tipSave":"保存する","PE.Views.Toolbar.tipSaveCoauth":"変更内容を保存して、他のユーザーが確認できるようにします。","PE.Views.Toolbar.tipSelectAll":"すべて選択","PE.Views.Toolbar.tipShapeAlign":"図形の配置","PE.Views.Toolbar.tipShapeArrange":"配置","PE.Views.Toolbar.tipShapesMerge":"図形を結合","PE.Views.Toolbar.tipSlideNum":"スライド番号の追加","PE.Views.Toolbar.tipSlideSize":"スライドサイズの選択","PE.Views.Toolbar.tipSlideTheme":"スライドのテーマ","PE.Views.Toolbar.tipTextDir":"テキスト方向","PE.Views.Toolbar.tipUndo":"元に戻す","PE.Views.Toolbar.tipVAligh":"垂直揃え","PE.Views.Toolbar.tipViewSettings":"表示の設定","PE.Views.Toolbar.txtColors":"色","PE.Views.Toolbar.txtDistribHor":"水平に整列する","PE.Views.Toolbar.txtDistribVert":"上下に整列する","PE.Views.Toolbar.txtDuplicateSlide":"スライドの複製","PE.Views.Toolbar.txtGroup":"グループ","PE.Views.Toolbar.txtObjectsAlign":"選択したオブジェクトを整列する","PE.Views.Toolbar.txtSlideAlign":"スライドに合わせる","PE.Views.Toolbar.txtSlideSize":"スライドのサイズ","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.textHorizontalIn":"水平(中)","PE.Views.Transitions.textHorizontalOut":"水平(外)","PE.Views.Transitions.textLeft":"左","PE.Views.Transitions.textMorph":"変形","PE.Views.Transitions.textMorphLetters":"文字","PE.Views.Transitions.textMorphObjects":"オブジェクト","PE.Views.Transitions.textMorphWord":"言葉","PE.Views.Transitions.textNone":"なし","PE.Views.Transitions.textPush":"押す","PE.Views.Transitions.textRandom":"ランダム","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.txtParameters":"オプション","PE.Views.Transitions.txtPreview":"プレビュー","PE.Views.Transitions.txtSec":"秒","PE.Views.ViewTab.capBtnHand":"手のひら","PE.Views.ViewTab.capBtnSelect":"選択","PE.Views.ViewTab.textAddHGuides":"水平方向のガイドの追加","PE.Views.ViewTab.textAddVGuides":"垂直方向のガイドの追加","PE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","PE.Views.ViewTab.textClearGuides":"ガイドのクリア","PE.Views.ViewTab.textCm":"センチ","PE.Views.ViewTab.textCustom":"ユーザー設定","PE.Views.ViewTab.textFill":"塗りつぶし","PE.Views.ViewTab.textFitToSlide":"スライドに合わせる","PE.Views.ViewTab.textFitToWidth":"幅に合わせる","PE.Views.ViewTab.textGridlines":"グリッド線","PE.Views.ViewTab.textGuides":"ガイド","PE.Views.ViewTab.textInterfaceTheme":"インターフェイスのテーマ","PE.Views.ViewTab.textLeftMenu":"左パネル","PE.Views.ViewTab.textLine":"線","PE.Views.ViewTab.textMacros":"マクロ","PE.Views.ViewTab.textNormal":"標準","PE.Views.ViewTab.textNotes":"ノート","PE.Views.ViewTab.textPauseMacro":"Pause recording","PE.Views.ViewTab.textRecMacro":"Record macro","PE.Views.ViewTab.textResumeMacro":"Resume recording","PE.Views.ViewTab.textRightMenu":"右パネル","PE.Views.ViewTab.textRulers":"ルーラー","PE.Views.ViewTab.textShowGridlines":"枠線を表示する","PE.Views.ViewTab.textShowGuides":"ガイドを表示","PE.Views.ViewTab.textSlideMaster":"スライドマスター","PE.Views.ViewTab.textSmartGuides":"スマートガイド","PE.Views.ViewTab.textSnapObjects":"スナップオブジェクトをグリッドに","PE.Views.ViewTab.textStatusBar":"ステータスバー","PE.Views.ViewTab.textStopMacro":"Stop recording","PE.Views.ViewTab.textTabStyle":"タブのスタイル","PE.Views.ViewTab.textZoom":"ズーム","PE.Views.ViewTab.tipFitToSlide":"スライドに合わせる","PE.Views.ViewTab.tipFitToWidth":"幅に合わせる","PE.Views.ViewTab.tipGridlines":"枠線を表示する","PE.Views.ViewTab.tipGuides":"ガイドを表示","PE.Views.ViewTab.tipHandTool":"「手のひら」ツール","PE.Views.ViewTab.tipInterfaceTheme":"インターフェースのテーマ","PE.Views.ViewTab.tipMacros":"マクロ","PE.Views.ViewTab.tipNormal":"標準","PE.Views.ViewTab.tipPauseMacro":"Pause recording","PE.Views.ViewTab.tipRecMacro":"Record macro","PE.Views.ViewTab.tipResumeMacro":"Resume recording","PE.Views.ViewTab.tipSelectTool":"選択ツール","PE.Views.ViewTab.tipSlideMaster":"スライドマスター","PE.Views.ViewTab.tipStopMacro":"Stop recording"} \ No newline at end of file diff --git a/public/web-apps/apps/spreadsheeteditor/main/locale/es.json b/public/web-apps/apps/spreadsheeteditor/main/locale/es.json index 6d8c48962..9a58f30f2 100644 --- a/public/web-apps/apps/spreadsheeteditor/main/locale/es.json +++ b/public/web-apps/apps/spreadsheeteditor/main/locale/es.json @@ -1 +1 @@ -{"cancelButtonText":"Cancelar","Common.Controllers.Chat.notcriticalErrorTitle":"Aviso","Common.Controllers.Desktop.hintBtnHome":"Mostrar ventana principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Crear a partir de plantilla","Common.Controllers.ExternalLinks.textAddExternalData":"Se ha añadido el enlace a un origen externo. Puede actualizar tales enlaces en la pestaña «Datos».","Common.Controllers.ExternalLinks.textContinue":"Continuar","Common.Controllers.ExternalLinks.textDontUpdate":"No actualizar","Common.Controllers.ExternalLinks.textTurnOff":"Desactivar actualización automática","Common.Controllers.ExternalLinks.textUpdate":"Actualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Se ha producido un error al actualizar","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdate":"Este libro de trabajo contiene enlaces a fuentes externas que se actualizan automáticamente. Esto podría resultar inseguro.

Si confía en ellos, haga clic en Continuar.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdateDE":"Este documento contiene enlaces a fuentes externas que se actualizan automáticamente. Esto podría ser inseguro.

Si confía en ellos, pulse Continuar.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdatePE":"Esta presentación contiene enlaces a fuentes externas que se actualizan automáticamente. Esto podría ser inseguro.

Si confía en ellos, pulse Continuar.","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Este libro de trabajo contiene enlaces a una o más fuentes externas que podrían ser inseguras.
Si confía en estos enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta presentación contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.History.notcriticalErrorTitle":"Advertencia","Common.Controllers.History.txtErrorLoadHistory":"Error al cargar el historial","Common.Controllers.Plugins.helpMoveMacros":"Para empezar a trabajar con macros, cambie a la pestaña Vista.","Common.Controllers.Plugins.helpMoveMacrosHeader":"El botón Macros desplazado","Common.Controllers.Plugins.helpUseMacros":"Encuentre el botón Macros aquí","Common.Controllers.Plugins.helpUseMacrosHeader":"Acceso actualizado a las macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Los plugins se han instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} se ha instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textRunInstalledPlugins":"Ejecutar plugins instalados","Common.Controllers.Plugins.textRunPlugin":"Ejecutar plugin","Common.Controllers.Shortcuts.txtDescriptionAddLineBreak":"Añadir un salto de línea sin comenzar un nuevo párrafo al introducir texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionAutoFill":"Utilizar este acceso directo en una celda vacía situada encima o debajo de los valores existentes en la columna. Aparecerá una lista desplegable con los valores existentes. Seleccione uno de los valores de texto disponibles para rellenar una celda vacía.","Common.Controllers.Shortcuts.txtDescriptionBold":"Hacer que la fuente del fragmento de texto seleccionado sea más oscura y gruesa de lo normal, o eliminar el formato en negrita.","Common.Controllers.Shortcuts.txtDescriptionCellAddSeparator":"Insertar un separador dentro de una celda activa.","Common.Controllers.Shortcuts.txtDescriptionCellCurrencyFormat":"Aplicar el formato Moneda con dos decimales.","Common.Controllers.Shortcuts.txtDescriptionCellDateFormat":"Aplicar el formato Fecha con el día, el mes y el año.","Common.Controllers.Shortcuts.txtDescriptionCellEditorSwitchReference":"Cambiar el tipo de referencia a una celda en la barra de fórmulas (absoluta, relativa).","Common.Controllers.Shortcuts.txtDescriptionCellEntryCancel":"Cancelar una entrada en la celda seleccionada o en la barra de fórmulas.","Common.Controllers.Shortcuts.txtDescriptionCellExponentialFormat":"Aplicar el formato numérico exponencial con dos decimales.","Common.Controllers.Shortcuts.txtDescriptionCellGeneralFormat":"Aplicar el formato numérico general.","Common.Controllers.Shortcuts.txtDescriptionCellInsertDate":"Insertar la fecha de hoy en una celda activa.","Common.Controllers.Shortcuts.txtDescriptionCellInsertSumFunction":"Insertar la función SUM en la celda seleccionada.","Common.Controllers.Shortcuts.txtDescriptionCellInsertTime":"Insertar la hora actual en una celda activa.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellDown":"Desplazarse a la celda inferior.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellLeft":"Pasar a la celda de la izquierda.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellRight":"Pasar a la celda de la derecha.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellUp":"Desplazarse a la celda superior.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomEdge":"Resaltar una celda en el borde inferior de la región de datos visible.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomNonBlank":"Resaltar la siguiente celda con los datos que aparecen a continuación en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCellMoveDown":"Resaltar una celda debajo de la celda seleccionada actualmente.","Common.Controllers.Shortcuts.txtDescriptionCellMoveEndSpreadsheet":"Resaltar la celda inferior derecha utilizada en la hoja de cálculo situada en la fila inferior con datos de la columna más a la derecha con datos. Si el cursor se encuentra en la barra de fórmulas, se colocará al final del texto.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstCell":"Resaltar la celda A1.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstColumn":"Resaltar una celda en la columna A de la fila actual.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeft":"Resaltar una celda a la izquierda de la celda seleccionada actualmente.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeftNonBlank":"Resaltar la siguiente celda con datos a la izquierda en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRight":"Resaltar una celda a la derecha de la celda seleccionada actualmente.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRightNonBlank":"Resaltar la siguiente celda con datos a la derecha en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopEdge":"Resaltar una celda en el borde superior de la región de datos visible.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopNonBlank":"Resaltar la siguiente celda con los datos anteriores en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCellMoveUp":"Resaltar una celda por encima de la seleccionada actualmente.","Common.Controllers.Shortcuts.txtDescriptionCellNumberFormat":"Aplicar el formato numérico con dos decimales, separador de miles y signo menos (-) para los valores negativos.","Common.Controllers.Shortcuts.txtDescriptionCellPercentFormat":"Aplicar el formato Porcentaje sin decimales.","Common.Controllers.Shortcuts.txtDescriptionCellStartNewLine":"Iniciar una nueva línea en la misma celda.","Common.Controllers.Shortcuts.txtDescriptionCellTimeFormat":"Aplicar el formato Hora con la hora y los minutos, y AM o PM.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Cambiar un párrafo entre centrado y alineado a la izquierda. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionClearActiveCellContent":"Eliminar el contenido (datos y fórmulas) de la celda activa sin afectar al formato de la celda ni a los comentarios.","Common.Controllers.Shortcuts.txtDescriptionClearSelectedCellsContent":"Eliminar el contenido (datos y fórmulas) de todas las celdas seleccionadas sin afectar al formato de las celdas ni a los comentarios.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Cerrar la ventana actual de la hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Cerrar un menú o una ventana modal. Suspender la copia de formatos. Restablecer el modo de añadir formas. Borrar el portapapeles al cortar/copiar celdas. Ocultar el botón Pegado especial.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveDown":"Completar una entrada de celda en la celda seleccionada o en la barra de fórmulas y pasar a la celda inferior.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveLeft":"Completar una entrada de celda en la celda seleccionada o en la barra de fórmulas y pasar a la celda de la izquierda.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveRight":"Completar una entrada de celda en la celda seleccionada o en la barra de fórmulas y pasar a la celda de la derecha.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveUp":"Completar una entrada en la celda seleccionada y pasar a la celda superior.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryStay":"Completar una entrada de celda en la celda seleccionada o en la barra de fórmulas y permanecer en ella.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Enviar los datos/gráficos seleccionados al portapapeles del ordenador. Los datos copiados se pueden insertar posteriormente en otro lugar de la misma hoja de cálculo, en otra hoja de cálculo o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionCut":"Cortar los datos/gráficos seleccionados y enviarlos al portapapeles del ordenador. Los datos cortados se pueden insertar posteriormente en otro lugar de la misma hoja de cálculo, en otra hoja de cálculo o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Disminuir el tamaño de la fuente del fragmento de texto seleccionado en 1 punto. Funciona solo con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Eliminar un carácter a la izquierda en la barra de fórmulas o en la celda seleccionada cuando el modo de edición de celdas está activado. Eliminar la selección. También elimina el contenido de la celda activa. También es aplicable al texto de los objetos gráficos.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Eliminar una palabra, selección a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Eliminar un carácter a la derecha en la barra de fórmulas o en la celda seleccionada cuando el modo de edición de celdas está activado. Eliminar la selección. También elimina el contenido de las celdas seleccionadas (datos y fórmulas) sin afectar a los formatos de celda ni a los comentarios. También se aplica al texto de los objetos gráficos.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Eliminar una palabra, selección a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionDownloadAs":"Abrir el panel Descargar como... para guardar la hoja de cálculo actualmente editada en el disco duro del ordenador en uno de los formatos compatibles.","Common.Controllers.Shortcuts.txtDescriptionDrawingAddTab":"Añadir el carácter de tabulación al contenido del objeto.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Cuando se seleccione el título del gráfico, seleccionar el texto.","Common.Controllers.Shortcuts.txtDescriptionEditOpenCellEditor":"Editar la celda activa y colocar el punto de inserción al final del contenido de la celda. Si la edición en una celda está desactivada, el punto de inserción se moverá a la barra de fórmulas.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repetir la última acción deshecha.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Seleccionar todo el contenido de la forma (cuando el cursor se encuentra dentro del contenido de la forma). Seleccionar todo el contenido de la celda (cuando el cursor se encuentra dentro de la celda).","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Cuando se seleccione la forma, si no contiene contenido, crear contenido y mover el cursor al principio de la línea. Si el contenido está vacío, mover el cursor hacia él; de lo contrario, seleccionar todo el contenido.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Revertir la última acción realizada.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insertar un guión corto a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Terminar el párrafo actual y comenzar uno nuevo al introducir texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Añadir un nuevo marcador de posición al argumento de la ecuación.","Common.Controllers.Shortcuts.txtDescriptionExitAddingShapesMode":"Salir del modo de añadir formas. Eliminar la selección paso a paso (por ejemplo, si se selecciona el contenido de una forma dentro de un grupo, el cursor se eliminará primero del contenido, luego de la forma y, por último, del grupo).","Common.Controllers.Shortcuts.txtDescriptionFillSelectedCellRange":"Rellenar el rango de celdas seleccionado con la entrada actual. Seleccione un rango de celdas, escriba los datos en la celda activa y pulse las teclas especificadas para rellenar todas las celdas seleccionadas con los datos introducidos.","Common.Controllers.Shortcuts.txtDescriptionFormatAsTableTemplate":"Aplicar una plantilla de tabla a un rango de celdas seleccionado.","Common.Controllers.Shortcuts.txtDescriptionFormatTableAddSummaryRow":"Añadir la fila de resumen para una tabla formateada.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar el tamaño de la fuente del fragmento de texto seleccionado en 1 punto. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insertar un enlace que se puede utilizar para acceder a una dirección web.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Hacer que la fuente del fragmento de texto seleccionado aparezca en cursiva y ligeramente inclinada, o eliminar el formato en cursiva.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Cambiar un párrafo entre justificado y alineado a la izquierda. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinear un párrafo a la izquierda. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningLine":"Colocar el cursor al principio de la línea que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningText":"Colocar el cursor al principio del texto en una celda o forma.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterLeft":"Mover el cursor un carácter a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterRight":"Mover el cursor un carácter a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineDown":"Mover el cursor una línea hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineUp":"Mover el cursor una línea hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionMoveEndLine":"Colocar el cursor al final de la línea que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveEndText":"Colocar el cursor al final del texto en una celda o forma.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusNextObject":"Mover el foco al siguiente objeto después del seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusPreviousObject":"Mover el foco al objeto anterior al seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepBottom":"Utilizar las flechas del teclado para desplazar el objeto seleccionado un paso grande hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepLeft":"Utilizar las flechas del teclado para mover el objeto seleccionado un paso grande hacia la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepRight":"Utilizar las flechas del teclado para mover el objeto seleccionado un paso grande hacia la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepUp":"Utilizar las flechas del teclado para mover el objeto seleccionado un paso grande hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepBottom":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia abajo un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepLeft":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la izquierda un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepRight":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la derecha un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepUp":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia arriba un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMoveWordLeft":"Mover el cursor una palabra a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveWordRight":"Mover el cursor una palabra a la derecha.","Common.Controllers.Shortcuts.txtDescriptionNavigateNextControl":"Navegar entre los controles para dar el foco al siguiente control en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionNavigatePreviousControl":"Navegar entre los controles para dar el foco al control anterior en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Cambiar a la siguiente pestaña de archivo en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionNextWorksheet":"Pasar a la siguiente hoja de la hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abrir el panel Chat en los editores en línea y enviar un mensaje.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abrir un campo de entrada de datos donde se puede añadir el texto del comentario.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abrir el panel Comentarios para añadir su propio comentario o responder a los comentarios de otros usuarios.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abrir el menú contextual del elemento seleccionado.","Common.Controllers.Shortcuts.txtDescriptionOpenDeleteCellsWindow":"Abrir el cuadro de diálogo para eliminar celdas dentro de la hoja de cálculo actual con un parámetro añadido de desplazamiento hacia la izquierda, desplazamiento hacia arriba, eliminación de una fila completa o una columna completa.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abrir el cuadro de diálogo estándar que permite seleccionar un archivo existente. Si selecciona el archivo en este cuadro de diálogo y hace clic en Abrir, el archivo se abrirá en una nueva pestaña o ventana de los editores de escritorio.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abrir el panel Archivo para guardar, descargar, imprimir la hoja de cálculo actual, ver su información, crear una nueva hoja de cálculo o abrir una existente, acceder al menú de ayuda del editor de hojas de cálculo o a su configuración avanzada.","Common.Controllers.Shortcuts.txtDescriptionOpenFilterWindow":"En el encabezado de una columna con filtro, abrir la ventana del filtro.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abrir el menú (panel) Buscar y reemplazar con el campo de reemplazo para reemplazar una o más apariciones de los caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abrir la ventana del cuadro de diálogo Buscar para comenzar a buscar una celda que contenga los caracteres requeridos.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abrir el menú Ayuda del editor de hojas de cálculo.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertCellsWindow":"Abrir el cuadro de diálogo para insertar nuevas celdas dentro de la hoja de cálculo actual con un parámetro añadido de desplazamiento hacia la derecha, desplazamiento hacia abajo, inserción de una fila completa o una columna completa.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertFunctionDialog":"Abrir el cuadro de diálogo para insertar una nueva función seleccionándola de la lista proporcionada.","Common.Controllers.Shortcuts.txtDescriptionOpenNumberFormatDialog":"Abrir el cuadro de diálogo Formato numérico.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insertar los datos o gráficos previamente copiados o cortados del portapapeles del ordenador en la posición actual del cursor. Los datos pueden haberse copiado previamente de la misma hoja de cálculo, de otra hoja de cálculo o de algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaAllFormatting":"Pegar fórmulas con todo el formato de datos.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaColumnWidth":"Pegar fórmulas con todo el formato de datos y establecer el ancho de la columna de origen para el rango de celdas.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNoBorders":"Pegar fórmulas con todo el formato de datos excepto los bordes de las celdas.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNumberFormat":"Pegar fórmulas con el formato aplicado a los números.","Common.Controllers.Shortcuts.txtDescriptionPasteLink":"Pegar el enlace externo en una celda o rango de celdas de otra hoja de cálculo dentro del portal actual (en el editor en línea) o en un archivo local (en el editor de escritorio).","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormatting":"Pegar solo el formato de la celda sin pegar el contenido de la celda.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormula":"Pegar fórmulas sin pegar el formato de los datos.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyValue":"Pegar los resultados de la fórmula sin pegar el formato de los datos.","Common.Controllers.Shortcuts.txtDescriptionPasteValueAllFormatting":"Pegar los resultados de la fórmula con todo el formato de los datos.","Common.Controllers.Shortcuts.txtDescriptionPasteValueNumberFormat":"Pegar los resultados de la fórmula con el formato aplicado a los números.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Cambiar a la pestaña del archivo anterior en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionPreviousWorksheet":"Pasar a la hoja anterior de la hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprimir la hoja de cálculo con una de las impresoras disponibles o guardarla en un archivo.","Common.Controllers.Shortcuts.txtDescriptionRecalculateActiveSheet":"Recalcular la hoja de cálculo actual.","Common.Controllers.Shortcuts.txtDescriptionRecalculateAll":"Recalcular todo el libro.","Common.Controllers.Shortcuts.txtDescriptionRefreshAllPivots":"Actualizar todas las tablas dinámicas.","Common.Controllers.Shortcuts.txtDescriptionRefreshSelectedPivots":"Actualizar la tabla dinámica seleccionada anteriormente.","Common.Controllers.Shortcuts.txtDescriptionRemoveGraphicalObject":"Eliminar el objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Cambiar la alineación de un párrafo de derecha a izquierda. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionSave":"Guardar todos los cambios realizados en la hoja de cálculo editada actualmente con el editor de hojas de cálculo. El archivo activo se guardará con su nombre, ubicación y formato de archivo actuales.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningLine":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningText":"Seleccionar un fragmento de texto desde el cursor hasta el principio del texto en una celda o forma.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningWorksheet":"Seleccionar un fragmento desde las celdas seleccionadas actualmente hasta el principio de la hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterLeft":"Seleccionar un carácter a la izquierda de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterRight":"Seleccionar un carácter a la derecha de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectColumn":"Seleccionar una columna completa en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorBeginningRow":"Seleccionar un fragmento desde el cursor hasta el principio de la fila actual.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorEndRow":"Seleccionar un fragmento desde el cursor hasta el final de la fila actual.","Common.Controllers.Shortcuts.txtDescriptionSelectDownOneScreen":"Ampliar la selección para incluir todas las celdas que se encuentran una pantalla más abajo de la celda activa. Se seleccionarán todas las celdas de las columnas del rango seleccionado anteriormente.","Common.Controllers.Shortcuts.txtDescriptionSelectEndLine":"Seleccionar un fragmento de texto desde el cursor hasta el final de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionSelectEndText":"Seleccionar un fragmento de texto desde el cursor hasta el final del texto en una celda o forma.","Common.Controllers.Shortcuts.txtDescriptionSelectFirstColumn":"Ampliar la selección a la primera columna (A).","Common.Controllers.Shortcuts.txtDescriptionSelectLastUsedCell":"Seleccionar un fragmento desde las celdas seleccionadas actualmente hasta la última celda utilizada en la hoja de cálculo (en la fila inferior con datos de la columna más a la derecha con datos). Si el cursor se encuentra en la barra de fórmulas, se seleccionará todo el texto de la barra de fórmulas desde la posición del cursor hasta el final, sin afectar a la altura de la barra de fórmulas.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mover el cursor una línea hacia abajo, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mover el cursor una línea hacia arriba, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankDown":"Ampliar la selección a la celda no vacía más cercana en la misma columna, debajo de la celda activa. Si la celda siguiente está vacía, la selección se ampliará a la siguiente celda no vacía.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankRight":"Ampliar la selección a la celda no vacía más cercana en la misma fila a la derecha de la celda activa. Si la celda siguiente está vacía, la selección se ampliará a la siguiente celda no vacía.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankUp":"Ampliar la selección a la celda no vacía más cercana en la misma columna, arriba de la celda activa. Si la celda siguiente está en blanco, la selección se ampliará a la siguiente celda no vacía.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankDown":"Seleccionar celdas hasta la siguiente celda no vacía debajo de la celda activa o hasta el borde del área visible.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankLeft":"Seleccionar celdas hasta la siguiente celda no vacía a la izquierda de la celda activa o hasta el borde del área visible.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankRight":"Seleccionar celdas hasta la siguiente celda no vacía a la derecha de la celda activa o hasta el borde del área visible.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankUp":"Seleccionar celdas hasta la siguiente celda no vacía por encima de la celda activa o hasta el borde del área visible.","Common.Controllers.Shortcuts.txtDescriptionSelectNonblankLeft":"Ampliar la selección a la celda no en blanco situada a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellDown":"Seleccionar una celda más abajo.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellLeft":"Seleccionar una celda a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellRight":"Seleccionar una celda a la derecha.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellUp":"Seleccionar una celda más arriba.","Common.Controllers.Shortcuts.txtDescriptionSelectRow":"Seleccionar una fila completa en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionSelectUpOneScreen":"Ampliar la selección para incluir todas las celdas de una pantalla por encima de la celda activa. Se seleccionarán todas las celdas de las columnas del rango seleccionado anteriormente.","Common.Controllers.Shortcuts.txtDescriptionSelectWordLeft":"Seleccionar una palabra a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectWordRight":"Seleccionar una palabra a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionShowFormulas":"Mostrar funciones (no sus valores) en una hoja para imprimirlas.","Common.Controllers.Shortcuts.txtDescriptionSlicerClearSelectedValues":"Borrar los valores seleccionados para un segmentador.","Common.Controllers.Shortcuts.txtDescriptionSlicerSwitchMultiSelect":"Habilitar/deshabilitar la selección múltiple para un segmentador.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Activar/desactivar la transmisión de acciones realizadas en la aplicación para lectores de pantalla.","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Hacer que el fragmento de texto seleccionado aparezca tachado con una línea que atraviesa las letras, o eliminar el formato de tachado.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte inferior de la línea de texto, por ejemplo, como en las fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte superior de la línea de texto, por ejemplo, como en las fracciones.","Common.Controllers.Shortcuts.txtDescriptionToggleAutoFilter":"Habilitar un filtro para un rango de celdas seleccionado o eliminar el filtro.","Common.Controllers.Shortcuts.txtDescriptionTranspose":"Pegar datos cambiándolos de columnas a filas, o viceversa. Esta opción está disponible para rangos de datos normales, pero no para tablas formateadas.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Hacer que el fragmento de texto seleccionado aparezca subrayado con una línea debajo de las letras, o eliminar el subrayado.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visitar un hiperenlace (con el cursor sobre el hiperenlace).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Restablecer el parámetro «Ampliación» de la hoja de cálculo actual al valor predeterminado del 100 %.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Ampliar la hoja de cálculo que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Alejar la hoja de cálculo que se está editando actualmente.","Common.Controllers.Shortcuts.txtLabelAddLineBreak":"AddLineBreak","Common.Controllers.Shortcuts.txtLabelAutoFill":"AutoFill","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCellAddSeparator":"CellAddSeparator","Common.Controllers.Shortcuts.txtLabelCellCurrencyFormat":"CellCurrencyFormat","Common.Controllers.Shortcuts.txtLabelCellDateFormat":"CellDateFormat","Common.Controllers.Shortcuts.txtLabelCellEditorSwitchReference":"CellEditorSwitchReference","Common.Controllers.Shortcuts.txtLabelCellEntryCancel":"CellEntryCancel","Common.Controllers.Shortcuts.txtLabelCellExponentialFormat":"CellExponentialFormat","Common.Controllers.Shortcuts.txtLabelCellGeneralFormat":"CellGeneralFormat","Common.Controllers.Shortcuts.txtLabelCellInsertDate":"CellInsertDate","Common.Controllers.Shortcuts.txtLabelCellInsertSumFunction":"CellInsertSumFunction","Common.Controllers.Shortcuts.txtLabelCellInsertTime":"CellInsertTime","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellDown":"CellMoveActiveCellDown","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellLeft":"CellMoveActiveCellLeft","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellRight":"CellMoveActiveCellRight","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellUp":"CellMoveActiveCellUp","Common.Controllers.Shortcuts.txtLabelCellMoveBottomEdge":"CellMoveBottomEdge","Common.Controllers.Shortcuts.txtLabelCellMoveBottomNonBlank":"CellMoveBottomNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveDown":"CellMoveDown","Common.Controllers.Shortcuts.txtLabelCellMoveEndSpreadsheet":"CellMoveEndSpreadsheet","Common.Controllers.Shortcuts.txtLabelCellMoveFirstCell":"CellMoveFirstCell","Common.Controllers.Shortcuts.txtLabelCellMoveFirstColumn":"CellMoveFirstColumn","Common.Controllers.Shortcuts.txtLabelCellMoveLeft":"CellMoveLeft","Common.Controllers.Shortcuts.txtLabelCellMoveLeftNonBlank":"CellMoveLeftNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveRight":"CellMoveRight","Common.Controllers.Shortcuts.txtLabelCellMoveRightNonBlank":"CellMoveRightNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveTopEdge":"CellMoveTopEdge","Common.Controllers.Shortcuts.txtLabelCellMoveTopNonBlank":"CellMoveTopNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveUp":"CellMoveUp","Common.Controllers.Shortcuts.txtLabelCellNumberFormat":"CellNumberFormat","Common.Controllers.Shortcuts.txtLabelCellPercentFormat":"CellPercentFormat","Common.Controllers.Shortcuts.txtLabelCellStartNewLine":"CellStartNewLine","Common.Controllers.Shortcuts.txtLabelCellTimeFormat":"CellTimeFormat","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelClearActiveCellContent":"ClearActiveCellContent","Common.Controllers.Shortcuts.txtLabelClearSelectedCellsContent":"ClearSelectedCellsContent","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveDown":"CompleteCellEntryMoveDown","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveLeft":"CompleteCellEntryMoveLeft","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveRight":"CompleteCellEntryMoveRight","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveUp":"CompleteCellEntryMoveUp","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryStay":"CompleteCellEntryStay","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelDownloadAs":"DownloadAs","Common.Controllers.Shortcuts.txtLabelDrawingAddTab":"DrawingAddTab","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditOpenCellEditor":"EditOpenCellEditor","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelExitAddingShapesMode":"ExitAddingShapesMode","Common.Controllers.Shortcuts.txtLabelFillSelectedCellRange":"FillSelectedCellRange","Common.Controllers.Shortcuts.txtLabelFormatAsTableTemplate":"FormatAsTableTemplate","Common.Controllers.Shortcuts.txtLabelFormatTableAddSummaryRow":"FormatTableAddSummaryRow","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelMoveBeginningLine":"MoveBeginningLine","Common.Controllers.Shortcuts.txtLabelMoveBeginningText":"MoveBeginningText","Common.Controllers.Shortcuts.txtLabelMoveCharacterLeft":"MoveCharacterLeft","Common.Controllers.Shortcuts.txtLabelMoveCharacterRight":"MoveCharacterRight","Common.Controllers.Shortcuts.txtLabelMoveCursorLineDown":"MoveCursorLineDown","Common.Controllers.Shortcuts.txtLabelMoveCursorLineUp":"MoveCursorLineUp","Common.Controllers.Shortcuts.txtLabelMoveEndLine":"MoveEndLine","Common.Controllers.Shortcuts.txtLabelMoveEndText":"MoveEndText","Common.Controllers.Shortcuts.txtLabelMoveFocusNextObject":"MoveFocusNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusPreviousObject":"MoveFocusPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepBottom":"MoveShapeBigStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepLeft":"MoveShapeBigStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepRight":"MoveShapeBigStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepUp":"MoveShapeBigStepUp","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepBottom":"MoveShapeLittleStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepLeft":"MoveShapeLittleStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepRight":"MoveShapeLittleStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepUp":"MoveShapeLittleStepUp","Common.Controllers.Shortcuts.txtLabelMoveWordLeft":"MoveWordLeft","Common.Controllers.Shortcuts.txtLabelMoveWordRight":"MoveWordRight","Common.Controllers.Shortcuts.txtLabelNavigateNextControl":"NavigateNextControl","Common.Controllers.Shortcuts.txtLabelNavigatePreviousControl":"NavigatePreviousControl","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextWorksheet":"NextWorksheet","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenDeleteCellsWindow":"OpenDeleteCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFilterWindow":"OpenFilterWindow","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelOpenInsertCellsWindow":"OpenInsertCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenInsertFunctionDialog":"OpenInsertFunctionDialog","Common.Controllers.Shortcuts.txtLabelOpenNumberFormatDialog":"OpenNumberFormatDialog","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormulaAllFormatting":"PasteFormulaAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteFormulaColumnWidth":"PasteFormulaColumnWidth","Common.Controllers.Shortcuts.txtLabelPasteFormulaNoBorders":"PasteFormulaNoBorders","Common.Controllers.Shortcuts.txtLabelPasteFormulaNumberFormat":"PasteFormulaNumberFormat","Common.Controllers.Shortcuts.txtLabelPasteLink":"PasteLink","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormatting":"PasteOnlyFormatting","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormula":"PasteOnlyFormula","Common.Controllers.Shortcuts.txtLabelPasteOnlyValue":"PasteOnlyValue","Common.Controllers.Shortcuts.txtLabelPasteValueAllFormatting":"PasteValueAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteValueNumberFormat":"PasteValueNumberFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousWorksheet":"PreviousWorksheet","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRecalculateActiveSheet":"RecalculateActiveSheet","Common.Controllers.Shortcuts.txtLabelRecalculateAll":"RecalculateAll","Common.Controllers.Shortcuts.txtLabelRefreshAllPivots":"RefreshAllPivots","Common.Controllers.Shortcuts.txtLabelRefreshSelectedPivots":"RefreshSelectedPivots","Common.Controllers.Shortcuts.txtLabelRemoveGraphicalObject":"RemoveGraphicalObject","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSelectBeginningLine":"SelectBeginningLine","Common.Controllers.Shortcuts.txtLabelSelectBeginningText":"SelectBeginningText","Common.Controllers.Shortcuts.txtLabelSelectBeginningWorksheet":"SelectBeginningWorksheet","Common.Controllers.Shortcuts.txtLabelSelectCharacterLeft":"SelectCharacterLeft","Common.Controllers.Shortcuts.txtLabelSelectCharacterRight":"SelectCharacterRight","Common.Controllers.Shortcuts.txtLabelSelectColumn":"SelectColumn","Common.Controllers.Shortcuts.txtLabelSelectCursorBeginningRow":"SelectCursorBeginningRow","Common.Controllers.Shortcuts.txtLabelSelectCursorEndRow":"SelectCursorEndRow","Common.Controllers.Shortcuts.txtLabelSelectDownOneScreen":"SelectDownOneScreen","Common.Controllers.Shortcuts.txtLabelSelectEndLine":"SelectEndLine","Common.Controllers.Shortcuts.txtLabelSelectEndText":"SelectEndText","Common.Controllers.Shortcuts.txtLabelSelectFirstColumn":"SelectFirstColumn","Common.Controllers.Shortcuts.txtLabelSelectLastUsedCell":"SelectLastUsedCell","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankDown":"SelectNearestNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankRight":"SelectNearestNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankUp":"SelectNearestNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankDown":"SelectNextNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankLeft":"SelectNextNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankRight":"SelectNextNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankUp":"SelectNextNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNonblankLeft":"SelectNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellDown":"SelectOneCellDown","Common.Controllers.Shortcuts.txtLabelSelectOneCellLeft":"SelectOneCellLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellRight":"SelectOneCellRight","Common.Controllers.Shortcuts.txtLabelSelectOneCellUp":"SelectOneCellUp","Common.Controllers.Shortcuts.txtLabelSelectRow":"SelectRow","Common.Controllers.Shortcuts.txtLabelSelectUpOneScreen":"SelectUpOneScreen","Common.Controllers.Shortcuts.txtLabelSelectWordLeft":"SelectWordLeft","Common.Controllers.Shortcuts.txtLabelSelectWordRight":"SelectWordRight","Common.Controllers.Shortcuts.txtLabelShowFormulas":"ShowFormulas","Common.Controllers.Shortcuts.txtLabelSlicerClearSelectedValues":"SlicerClearSelectedValues","Common.Controllers.Shortcuts.txtLabelSlicerSwitchMultiSelect":"SlicerSwitchMultiSelect","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelToggleAutoFilter":"ToggleAutoFilter","Common.Controllers.Shortcuts.txtLabelTranspose":"Transpose","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área apilada","Common.define.chartData.textAreaStackedPer":"Área apilada 100% ","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Columna agrupada","Common.define.chartData.textBarNormal3d":"Columna 3D agrupada","Common.define.chartData.textBarNormal3dPerspective":"Columna 3D","Common.define.chartData.textBarStacked":"Columna apilada","Common.define.chartData.textBarStacked3d":"Columna 3D apilada","Common.define.chartData.textBarStackedPer":"Columna apilada 100%","Common.define.chartData.textBarStackedPer3d":"Columna 3D apilada 100%","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Gráfico de columnas","Common.define.chartData.textColumnSpark":"Histograma","Common.define.chartData.textCombo":"Combinado","Common.define.chartData.textComboAreaBar":"Área apilada - Columna agrupada","Common.define.chartData.textComboBarLine":"Columna agrupada - Línea","Common.define.chartData.textComboBarLineSecondary":"Columna agrupada - Línea en eje secundario","Common.define.chartData.textComboCustom":"Combinación personalizada","Common.define.chartData.textDoughnut":"Anillo","Common.define.chartData.textHBarNormal":"Barra agrupada","Common.define.chartData.textHBarNormal3d":"Barra 3D agrupada","Common.define.chartData.textHBarStacked":"Barra apilada","Common.define.chartData.textHBarStacked3d":"Barra 3D apilada","Common.define.chartData.textHBarStackedPer":"Barra apilada 100%","Common.define.chartData.textHBarStackedPer3d":"Barra 3D apilada 100%","Common.define.chartData.textLine":"Línea","Common.define.chartData.textLine3d":"Línea 3D","Common.define.chartData.textLineMarker":"Línea con marcadores","Common.define.chartData.textLineSpark":"Línea","Common.define.chartData.textLineStacked":"Línea apilada","Common.define.chartData.textLineStackedMarker":"Línea apilada con marcadores","Common.define.chartData.textLineStackedPer":"Línea apilada 100%","Common.define.chartData.textLineStackedPerMarker":"Línea apilada con marcadores 100%","Common.define.chartData.textPie":"Gráfico circular","Common.define.chartData.textPie3d":"Circular 3D","Common.define.chartData.textPoint":"XY (Dispersión)","Common.define.chartData.textRadar":"Radial","Common.define.chartData.textRadarFilled":"Radial relleno","Common.define.chartData.textRadarMarker":"Radial con marcadores","Common.define.chartData.textScatter":"Dispersión","Common.define.chartData.textScatterLine":"Dispersión con líneas rectas","Common.define.chartData.textScatterLineMarker":"Dispersión con líneas rectas y marcadores","Common.define.chartData.textScatterSmooth":"Dispersión con líneas suavizadas","Common.define.chartData.textScatterSmoothMarker":"Dispersión con líneas suavizadas y marcadores","Common.define.chartData.textSparks":"Minigráficos","Common.define.chartData.textStock":"De cotizaciones","Common.define.chartData.textSurface":"Superficie","Common.define.chartData.textWinLossSpark":"Ganancia/pérdida","Common.define.conditionalData.exampleText":"AaBbCcYyZz","Common.define.conditionalData.noFormatText":"Sin formato establecido","Common.define.conditionalData.text1Above":"1 por encima de des. est.","Common.define.conditionalData.text1Below":"1 por debajo de des. est.","Common.define.conditionalData.text2Above":"2 por encima de des. est.","Common.define.conditionalData.text2Below":"2 por debajo de des. est.","Common.define.conditionalData.text3Above":"3 por encima de des. est.","Common.define.conditionalData.text3Below":"3 por debajo de des. est.","Common.define.conditionalData.textAbove":"Encima","Common.define.conditionalData.textAverage":"Promedio","Common.define.conditionalData.textBegins":"Empieza con","Common.define.conditionalData.textBelow":"Debajo","Common.define.conditionalData.textBetween":"Entre","Common.define.conditionalData.textBlank":"En blanco","Common.define.conditionalData.textBlanks":"Contiene celdas en blanco","Common.define.conditionalData.textBottom":"Inferior","Common.define.conditionalData.textContains":"Contiene","Common.define.conditionalData.textDataBar":"Barra de datos","Common.define.conditionalData.textDate":"Fecha","Common.define.conditionalData.textDuplicate":"Duplicar","Common.define.conditionalData.textEnds":"Termina con","Common.define.conditionalData.textEqAbove":"Igual o superior a","Common.define.conditionalData.textEqBelow":"Igual o menor que","Common.define.conditionalData.textEqual":"Igual que","Common.define.conditionalData.textError":"Error","Common.define.conditionalData.textErrors":"Contiene errores","Common.define.conditionalData.textFormula":"Fórmula","Common.define.conditionalData.textGreater":"Mayor que","Common.define.conditionalData.textGreaterEq":"Mayor o igual a","Common.define.conditionalData.textIconSets":"Conjuntos de iconos","Common.define.conditionalData.textLast7days":"En los últimos 7 días","Common.define.conditionalData.textLastMonth":"Mes pasado","Common.define.conditionalData.textLastWeek":"Semana pasada","Common.define.conditionalData.textLess":"Menor que","Common.define.conditionalData.textLessEq":"Menor o igual a","Common.define.conditionalData.textNextMonth":"Mes siguiente","Common.define.conditionalData.textNextWeek":"Semana siguiente","Common.define.conditionalData.textNotBetween":"No está entre","Common.define.conditionalData.textNotBlanks":"No contiene celdas en blanco","Common.define.conditionalData.textNotContains":"No contiene","Common.define.conditionalData.textNotEqual":"No igual a","Common.define.conditionalData.textNotErrors":"No contiene errores","Common.define.conditionalData.textText":"Texto","Common.define.conditionalData.textThisMonth":"Este mes","Common.define.conditionalData.textThisWeek":"Esta semana","Common.define.conditionalData.textToday":"Hoy","Common.define.conditionalData.textTomorrow":"Mañana","Common.define.conditionalData.textTop":"Superior","Common.define.conditionalData.textUnique":"Único","Common.define.conditionalData.textValue":"El valor es","Common.define.conditionalData.textYesterday":"Ayer","Common.define.smartArt.textAccentedPicture":"Imagen destacada","Common.define.smartArt.textAccentProcess":"Proceso destacado","Common.define.smartArt.textAlternatingFlow":"Flujo alternativo","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternativos","Common.define.smartArt.textAlternatingPictureBlocks":"Bloques de imágenes alternativos","Common.define.smartArt.textAlternatingPictureCircles":"Círculos con imágenes alternativos","Common.define.smartArt.textArchitectureLayout":"Diseño de arquitectura","Common.define.smartArt.textArrowRibbon":"Cinta de flechas","Common.define.smartArt.textAscendingPictureAccentProcess":"Proceso de imágenes destacadas ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Proceso curvo básico","Common.define.smartArt.textBasicBlockList":"Lista de bloques básica","Common.define.smartArt.textBasicChevronProcess":"Proceso cheurón básico","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Circular básico","Common.define.smartArt.textBasicProcess":"Proceso básico","Common.define.smartArt.textBasicPyramid":"Pirámide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Objetivo básico","Common.define.smartArt.textBasicTimeline":"Escala de tiempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista destacada con círculos abajo","Common.define.smartArt.textBendingPictureBlocks":" Bloques de imágenes con cuadro","Common.define.smartArt.textBendingPictureCaption":"Imagen curvada con títulos","Common.define.smartArt.textBendingPictureCaptionList":"Lista de imágenes curvadas con títulos","Common.define.smartArt.textBendingPictureSemiTranparentText":"Imágenes curvadas con texto semitransparente","Common.define.smartArt.textBlockCycle":"Ciclo de bloques","Common.define.smartArt.textBubblePictureList":"Lista de imágenes con burbujas","Common.define.smartArt.textCaptionedPictures":"Imágenes con títulos","Common.define.smartArt.textChevronAccentProcess":"Proceso cheurón destacado","Common.define.smartArt.textChevronList":"Lista de cheurones","Common.define.smartArt.textCircleAccentTimeline":"Línea de tiempo con círculos","Common.define.smartArt.textCircleArrowProcess":"Proceso de círculos con flecha","Common.define.smartArt.textCirclePictureHierarchy":"Jerarquía con imágenes en círculos","Common.define.smartArt.textCircleProcess":"Proceso de círculos","Common.define.smartArt.textCircleRelationship":"Relación de círculo","Common.define.smartArt.textCircularBendingProcess":"Proceso curvo circular","Common.define.smartArt.textCircularPictureCallout":"Llamada de imagen circular","Common.define.smartArt.textClosedChevronProcess":"Proceso de cheurón cerrado","Common.define.smartArt.textContinuousArrowProcess":"Proceso de flechas continuo","Common.define.smartArt.textContinuousBlockProcess":"Proceso de bloque continuo","Common.define.smartArt.textContinuousCycle":"Ciclo continuo","Common.define.smartArt.textContinuousPictureList":"Lista de imágenes continua","Common.define.smartArt.textConvergingArrows":"Flechas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Flechas de contrapeso","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista de bloques descendente","Common.define.smartArt.textDescendingProcess":"Proceso descendente","Common.define.smartArt.textDetailedProcess":"Proceso detallado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Ecuación","Common.define.smartArt.textFramedTextPicture":"Imagen de texto enmarcado","Common.define.smartArt.textFunnel":"Embudo","Common.define.smartArt.textGear":"Engranaje","Common.define.smartArt.textGridMatrix":"Matriz de cuadrícula","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organigrama con semicírculos","Common.define.smartArt.textHexagonCluster":"Grupo de hexágonos","Common.define.smartArt.textHexagonRadial":"Radial con hexágonos","Common.define.smartArt.textHierarchy":"Jerarquía","Common.define.smartArt.textHierarchyList":"Lista de jerarquías","Common.define.smartArt.textHorizontalBulletList":"Lista de viñetas horizontal","Common.define.smartArt.textHorizontalHierarchy":"Jerarquía horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Jerarquía etiquetada horizontal","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Jerarquía horizontal de varios niveles","Common.define.smartArt.textHorizontalOrganizationChart":"Organigrama horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista horizontal de imágenes","Common.define.smartArt.textIncreasingArrowProcess":"Proceso de flechas crecientes","Common.define.smartArt.textIncreasingCircleProcess":"Proceso de círculos crecientes","Common.define.smartArt.textInterconnectedBlockProcess":"Proceso de bloques interconectados","Common.define.smartArt.textInterconnectedRings":"Anillos interconectados","Common.define.smartArt.textInvertedPyramid":"Pirámide invertida","Common.define.smartArt.textLabeledHierarchy":"Jerarquía etiquetada","Common.define.smartArt.textLinearVenn":"Venn lineal","Common.define.smartArt.textLinedList":"Lista alineada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidireccional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigrama con nombres y cargos","Common.define.smartArt.textNestedTarget":"Objetivo anidado","Common.define.smartArt.textNondirectionalCycle":"Ciclo sin dirección","Common.define.smartArt.textOpposingArrows":"Flechas opuestas","Common.define.smartArt.textOpposingIdeas":"Ideas opuestas","Common.define.smartArt.textOrganizationChart":"Organigrama","Common.define.smartArt.textOther":"Otro","Common.define.smartArt.textPhasedProcess":"Proceso en fases","Common.define.smartArt.textPicture":"Imagen","Common.define.smartArt.textPictureAccentBlocks":"Imágenes destacadas en bloques","Common.define.smartArt.textPictureAccentList":"Lista de imágenes destacadas","Common.define.smartArt.textPictureAccentProcess":"Proceso de imágenes destacadas","Common.define.smartArt.textPictureCaptionList":"Lista de títulos de imágenes","Common.define.smartArt.textPictureFrame":"Marco de fotos","Common.define.smartArt.textPictureGrid":"Imágenes en cuadrícula","Common.define.smartArt.textPictureLineup":"Imágenes en paralelo","Common.define.smartArt.textPictureOrganizationChart":"Organigrama con imágenes","Common.define.smartArt.textPictureStrips":"Imágenes en columna","Common.define.smartArt.textPieProcess":"Proceso circular","Common.define.smartArt.textPlusAndMinus":"Más y menos","Common.define.smartArt.textProcess":"Proceso","Common.define.smartArt.textProcessArrows":"Flechas de proceso","Common.define.smartArt.textProcessList":"Lista de procesos","Common.define.smartArt.textPyramid":"Pirámide","Common.define.smartArt.textPyramidList":"Lista en pirámide","Common.define.smartArt.textRadialCluster":"Diseño radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista radial con imágenes","Common.define.smartArt.textRadialVenn":"Venn radial","Common.define.smartArt.textRandomToResultProcess":"Proceso de azar a resultado","Common.define.smartArt.textRelationship":"Relación","Common.define.smartArt.textRepeatingBendingProcess":"Proceso curvo repetitivo","Common.define.smartArt.textReverseList":"Lista inversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Proceso segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirámide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de imágenes instantáneas","Common.define.smartArt.textSpiralPicture":"Imagen en espiral","Common.define.smartArt.textSquareAccentList":"Lista de imágenes con cuadrados","Common.define.smartArt.textStackedList":"Lista apilada","Common.define.smartArt.textStackedVenn":"Venn apilado","Common.define.smartArt.textStaggeredProcess":"Proceso escalonado","Common.define.smartArt.textStepDownProcess":"Proceso de nivel inferior","Common.define.smartArt.textStepUpProcess":"Proceso de nivel superior","Common.define.smartArt.textSubStepProcess":"Proceso de pasos secundarios","Common.define.smartArt.textTabbedArc":"Arco con pestañas","Common.define.smartArt.textTableHierarchy":"Jerarquía de tabla","Common.define.smartArt.textTableList":"Lista de tablas","Common.define.smartArt.textTabList":"Lista de pestañas","Common.define.smartArt.textTargetList":"Lista de objetivo","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Imágenes temáticas destacadas","Common.define.smartArt.textThemePictureAlternatingAccent":"Imágenes temáticas destacadas alternativas","Common.define.smartArt.textThemePictureGrid":"Imágenes temáticas en cuadrícula","Common.define.smartArt.textTitledMatrix":"Matriz con títulos","Common.define.smartArt.textTitledPictureAccentList":"Lista de imágenes destacadas con título","Common.define.smartArt.textTitledPictureBlocks":"Bloques de imágenes con títulos","Common.define.smartArt.textTitlePictureLineup":"Serie de imágenes con título","Common.define.smartArt.textTrapezoidList":"Lista de trapezoides","Common.define.smartArt.textUpwardArrow":"Flecha arriba","Common.define.smartArt.textVaryingWidthList":"Lista de ancho variable","Common.define.smartArt.textVerticalAccentList":"Lista con rectángulos en vertical","Common.define.smartArt.textVerticalArrowList":"Lista vertical de flechas","Common.define.smartArt.textVerticalBendingProcess":"Proceso curvo vertical","Common.define.smartArt.textVerticalBlockList":"Lista de bloques verticales","Common.define.smartArt.textVerticalBoxList":"Lista vertical de cuadros","Common.define.smartArt.textVerticalBracketList":"Lista vertical con corchetes","Common.define.smartArt.textVerticalBulletList":"Lista vertical de viñetas","Common.define.smartArt.textVerticalChevronList":"Lista vertical de cheurones","Common.define.smartArt.textVerticalCircleList":"Lista con círculos en vertical","Common.define.smartArt.textVerticalCurvedList":"Lista curvada vertical","Common.define.smartArt.textVerticalEquation":"Ecuación vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista con círculos a la izquierda","Common.define.smartArt.textVerticalPictureList":"Lista vertical de imágenes","Common.define.smartArt.textVerticalProcess":"Proceso vertical","Common.Translation.textMoreButton":"Más","Common.Translation.tipFileLocked":"El documento está bloqueado para su edición. Puede hacer cambios y guardarlo como copia local más tarde.","Common.Translation.tipFileReadOnly":"El archivo es de solo lectura. Para no perder los cambios, guarde el archivo con otro nombre o en otra ubicación.","Common.Translation.warnFileLocked":"El archivo está siendo editado en otra aplicación. Puede continuar editándolo y guardarlo como una copia.","Common.Translation.warnFileLockedBtnEdit":"Crear copia","Common.Translation.warnFileLockedBtnView":"Abrir en solo lectura","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Cuentagotas","Common.UI.ButtonColored.textNewColor":"Más colores","Common.UI.Calendar.textApril":"abril","Common.UI.Calendar.textAugust":"agosto","Common.UI.Calendar.textDecember":"diciembre","Common.UI.Calendar.textFebruary":"febrero","Common.UI.Calendar.textJanuary":"enero","Common.UI.Calendar.textJuly":"julio","Common.UI.Calendar.textJune":"junio","Common.UI.Calendar.textMarch":"marzo","Common.UI.Calendar.textMay":"mayo","Common.UI.Calendar.textMonths":"meses","Common.UI.Calendar.textNovember":"noviembre","Common.UI.Calendar.textOctober":"octubre","Common.UI.Calendar.textSeptember":"septiembre","Common.UI.Calendar.textShortApril":"abr.","Common.UI.Calendar.textShortAugust":"ago.","Common.UI.Calendar.textShortDecember":"dic.","Common.UI.Calendar.textShortFebruary":"feb.","Common.UI.Calendar.textShortFriday":"vie.","Common.UI.Calendar.textShortJanuary":"ene.","Common.UI.Calendar.textShortJuly":"jul.","Common.UI.Calendar.textShortJune":"jun.","Common.UI.Calendar.textShortMarch":"mar.","Common.UI.Calendar.textShortMay":"mayo","Common.UI.Calendar.textShortMonday":"lu.","Common.UI.Calendar.textShortNovember":"nov.","Common.UI.Calendar.textShortOctober":"oct.","Common.UI.Calendar.textShortSaturday":"sáb.","Common.UI.Calendar.textShortSeptember":"sep.","Common.UI.Calendar.textShortSunday":"dom.","Common.UI.Calendar.textShortThursday":"jue.","Common.UI.Calendar.textShortTuesday":"mar.","Common.UI.Calendar.textShortWednesday":"mie.","Common.UI.Calendar.textYears":"años","Common.UI.ComboBorderSize.txtNoBorders":"Sin bordes","Common.UI.ComboBorderSizeEditable.txtNoBorders":"Sin bordes","Common.UI.ComboDataView.emptyComboText":"Sin estilo","Common.UI.ExtendedColorDialog.addButtonText":"Añadir","Common.UI.ExtendedColorDialog.textCurrent":"Actual","Common.UI.ExtendedColorDialog.textHexErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor de 000000 a FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Nuevo","Common.UI.ExtendedColorDialog.textRGBErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico de 0 a 225.","Common.UI.HSBColorPicker.textNoColor":"Sin color","Common.UI.InputField.txtEmpty":"Este campo es obligatorio","Common.UI.InputFieldBtnCalendar.textDate":"Seleccionar fecha","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar la contraseña","Common.UI.InputFieldBtnPassword.textHintHold":"Manténgalo pulsado para mostrar la contraseña","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar la contraseña","Common.UI.SearchBar.textFind":"Buscar","Common.UI.SearchBar.tipCloseSearch":"Cerrar búsqueda","Common.UI.SearchBar.tipNextResult":"Resultado siguiente","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abrir los ajustes avanzados","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Resaltar resultados","Common.UI.SearchDialog.textMatchCase":"Distinguir mayúsculas y minúsculas","Common.UI.SearchDialog.textReplaceDef":"Introduzca el texto de sustitución","Common.UI.SearchDialog.textSearchStart":"Introduzca su texto aquí","Common.UI.SearchDialog.textTitle":"Buscar y reemplazar","Common.UI.SearchDialog.textTitle2":"Buscar","Common.UI.SearchDialog.textWholeWords":"Solo palabras completas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar sustitución","Common.UI.SearchDialog.txtBtnReplace":"Reemplazar","Common.UI.SearchDialog.txtBtnReplaceAll":"Reemplazar todo","Common.UI.SynchronizeTip.textDontShow":"No volver a mostrar este mensaje","Common.UI.SynchronizeTip.textGotIt":"Entiendo","Common.UI.SynchronizeTip.textNew":"Nuevo","Common.UI.SynchronizeTip.textSynchronize":"El documento ha sido cambiado por otro usuario.
Por favor haga clic para guardar sus cambios y recargue las actualizaciones.","Common.UI.ThemeColorPalette.textRecentColors":"Colores recientes","Common.UI.ThemeColorPalette.textStandartColors":"Colores estándar","Common.UI.ThemeColorPalette.textThemeColors":"Colores de tema","Common.UI.Themes.txtThemeClassicLight":"Clásico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste oscuro","Common.UI.Themes.txtThemeDark":"Oscuro","Common.UI.Themes.txtThemeGray":"Gris","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Moderno oscuro","Common.UI.Themes.txtThemeModernLight":"Moderno claro","Common.UI.Themes.txtThemeSystem":"Igual que el sistema","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Cerrar","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"Aceptar","Common.UI.Window.textConfirmation":"Confirmación","Common.UI.Window.textDontShow":"No volver a mostrar este mensaje","Common.UI.Window.textError":"Error","Common.UI.Window.textInformation":"Información","Common.UI.Window.textWarning":"Aviso","Common.UI.Window.yesButtonText":"Sí","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Control","Common.Utils.String.textShift":"Mayús","Common.Utils.ThemeColor.txtaccent":"Acento","Common.Utils.ThemeColor.txtAqua":"Aguamarina","Common.Utils.ThemeColor.txtbackground":"Fondo","Common.Utils.ThemeColor.txtBlack":"Negro","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde vivo","Common.Utils.ThemeColor.txtBrown":"Marrón","Common.Utils.ThemeColor.txtDarkBlue":"Azul oscuro","Common.Utils.ThemeColor.txtDarker":"Más oscuro","Common.Utils.ThemeColor.txtDarkGray":"Gris oscuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde oscuro","Common.Utils.ThemeColor.txtDarkPurple":"Púrpura oscuro","Common.Utils.ThemeColor.txtDarkRed":"Rojo oscuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde azulado oscuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarillo oscuro","Common.Utils.ThemeColor.txtGold":"Oro","Common.Utils.ThemeColor.txtGray":"Gris","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Añil","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Más claro","Common.Utils.ThemeColor.txtLightGray":"Gris claro","Common.Utils.ThemeColor.txtLightGreen":"Verde claro","Common.Utils.ThemeColor.txtLightOrange":"Naranja claro","Common.Utils.ThemeColor.txtLightYellow":"Amarillo claro","Common.Utils.ThemeColor.txtOrange":"Naranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Púrpura","Common.Utils.ThemeColor.txtRed":"Rojo","Common.Utils.ThemeColor.txtRose":"Rosa claro","Common.Utils.ThemeColor.txtSkyBlue":"Azul cielo","Common.Utils.ThemeColor.txtTeal":"Verde azulado","Common.Utils.ThemeColor.txttext":"Texto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Blanco","Common.Utils.ThemeColor.txtYellow":"Amarillo","Common.Views.About.txtAddress":"dirección: ","Common.Views.About.txtLicensee":"LICENCIATARIO ","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"correo: ","Common.Views.About.txtPoweredBy":"Desarrollado por","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versión ","Common.Views.AutoCorrectDialog.textAdd":"Añadir","Common.Views.AutoCorrectDialog.textApplyAsWork":"Aplicar mientras escribe","Common.Views.AutoCorrectDialog.textAutoCorrect":"Autocorrección de texto","Common.Views.AutoCorrectDialog.textAutoFormat":"Autoformato mientras escribe","Common.Views.AutoCorrectDialog.textBy":"Por","Common.Views.AutoCorrectDialog.textDelete":"Eliminar","Common.Views.AutoCorrectDialog.textFLSentence":"Poner en mayúscula la primera letra de una oración","Common.Views.AutoCorrectDialog.textHyperlink":"Rutas de red e internet con enlaces","Common.Views.AutoCorrectDialog.textMathCorrect":"Autocorrección matemática","Common.Views.AutoCorrectDialog.textNewRowCol":"Incluir nuevas filas y columnas en la tabla","Common.Views.AutoCorrectDialog.textRecognized":"Funciones reconocidas","Common.Views.AutoCorrectDialog.textRecognizedDesc":"Las siguientes expresiones son expresiones matemáticas reconocidas. No se pondrán en cursiva automáticamente.","Common.Views.AutoCorrectDialog.textReplace":"Reemplazar","Common.Views.AutoCorrectDialog.textReplaceText":"Reemplazar mientras escribe","Common.Views.AutoCorrectDialog.textReplaceType":"Reemplazar texto mientras escribe","Common.Views.AutoCorrectDialog.textReset":"Restablecer","Common.Views.AutoCorrectDialog.textResetAll":"Restablecer ajustes predeterminados","Common.Views.AutoCorrectDialog.textRestore":"Restaurar","Common.Views.AutoCorrectDialog.textTitle":"Autocorrección","Common.Views.AutoCorrectDialog.textWarnAddRec":"Las funciones reconocidas deben contener solo letras de la A a la Z, mayúsculas o minúsculas.","Common.Views.AutoCorrectDialog.textWarnResetRec":"Cualquier expresión que haya añadido se eliminará y las eliminadas se restaurarán. ¿Desea continuar?","Common.Views.AutoCorrectDialog.warnReplace":"La entrada de autocorreción para %1 ya existe. ¿Desea reemplazarla?","Common.Views.AutoCorrectDialog.warnReset":"Las autocorrecciones que haya añadido se eliminarán y las modificadas recuperarán sus valores originales. ¿Desea continuar?","Common.Views.AutoCorrectDialog.warnRestore":"La entrada de autocorrección para %1 será restablecida a su valor original. ¿Desea continuar?","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Cerrar chat","Common.Views.Chat.textEnterMessage":"Introduzca su mensaje aquí","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor de Z a A","Common.Views.Comments.mniDateAsc":"Más antiguo","Common.Views.Comments.mniDateDesc":"Más reciente","Common.Views.Comments.mniFilterComments":"Mostrar comentarios","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"Desde arriba","Common.Views.Comments.mniPositionDesc":"Desde abajo","Common.Views.Comments.textAdd":"Añadir","Common.Views.Comments.textAddComment":"Añadir comentario","Common.Views.Comments.textAddCommentToDoc":"Añadir comentario al documento","Common.Views.Comments.textAddReply":"Añadir respuesta","Common.Views.Comments.textAll":"Todo","Common.Views.Comments.textAnonym":"Visitante","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Cerrar","Common.Views.Comments.textClosePanel":"Cerrar comentarios","Common.Views.Comments.textComment":"Comentario","Common.Views.Comments.textComments":"Comentarios","Common.Views.Comments.textEdit":"Aceptar","Common.Views.Comments.textEnterCommentHint":"Introduzca su comentario aquí","Common.Views.Comments.textHintAddComment":"Añadir comentario","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir de nuevo","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resuelto","Common.Views.Comments.textSort":"Ordenar comentarios","Common.Views.Comments.textSortFilter":"Ordenar y filtrar comentarios","Common.Views.Comments.textSortFilterMore":"Ordenar, filtrar y mucho más","Common.Views.Comments.textSortMore":"Ordenar y más","Common.Views.Comments.textViewResolved":"No tiene permiso para volver a abrir el comentario","Common.Views.Comments.txtEmpty":"Sin comentarios en la hoja.","Common.Views.CopyWarningDialog.textDontShow":"No volver a mostrar este mensaje","Common.Views.CopyWarningDialog.textMsg":"Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y del menú contextual solo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, use las siguientes combinaciones de teclas:","Common.Views.CopyWarningDialog.textTitle":"Acciones de Copiar, Cortar y Pegar","Common.Views.CopyWarningDialog.textToCopy":"para copiar","Common.Views.CopyWarningDialog.textToCut":"para cortar","Common.Views.CopyWarningDialog.textToPaste":"para pegar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Descargar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Marque los comandos que se mostrarán en la barra de herramientas Acceso rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impresión rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Rehacer","Common.Views.CustomizeQuickAccessDialog.textSave":"Guardar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalizar acceso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Deshacer","Common.Views.DocumentAccessDialog.textLoading":"Cargando...","Common.Views.DocumentAccessDialog.textTitle":"Ajustes de uso compartido","Common.Views.DocumentPropertyDialog.errorDate":"Puede elegir un valor del calendario para almacenar el valor como Fecha.
Si introduce un valor manualmente, se almacenará como Texto.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"No","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"Sí","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"La propiedad debe tener un título","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"Título","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"Sí\" or \"No\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"Fecha","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"Tipo","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"Número","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"Indique un número válido","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"Texto","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"La propiedad debe tener un valor","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"Valor","Common.Views.DocumentPropertyDialog.txtTitle":"Nueva propiedad del documento","Common.Views.Draw.hintEraser":"Borrador","Common.Views.Draw.hintSelect":"Seleccionar","Common.Views.Draw.txtEraser":"Borrador","Common.Views.Draw.txtHighlighter":"Marcador de resaltado","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Bolígrafo","Common.Views.Draw.txtSelect":"Seleccionar","Common.Views.Draw.txtSize":"Tamaño","Common.Views.EditNameDialog.textLabel":"Etiqueta:","Common.Views.EditNameDialog.textLabelError":"La etiqueta no debe estar vacía.","Common.Views.ExternalLinksDlg.closeButtonText":"Cerrar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Actualizar automáticamente los datos de las fuentes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Cambiar fuente","Common.Views.ExternalLinksDlg.textDelete":"Quitar enlaces","Common.Views.ExternalLinksDlg.textDeleteAll":"Quitar todos los enlaces","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Abrir fuente","Common.Views.ExternalLinksDlg.textSource":"Fuente","Common.Views.ExternalLinksDlg.textStatus":"Estado","Common.Views.ExternalLinksDlg.textUnknown":"Desconocido","Common.Views.ExternalLinksDlg.textUpdate":"Actualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Actualizar todo","Common.Views.ExternalLinksDlg.textUpdating":"Actualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Enlaces externos","Common.Views.FormatSettingsDialog.textCategory":"Categoría","Common.Views.FormatSettingsDialog.textDecimal":"Decimal","Common.Views.FormatSettingsDialog.textFormat":"Formato","Common.Views.FormatSettingsDialog.textLinked":"Vinculado al origen","Common.Views.FormatSettingsDialog.textLocale":"Configuración regional","Common.Views.FormatSettingsDialog.textSeparator":"Usar separador de millares","Common.Views.FormatSettingsDialog.textSymbols":"Símbolos","Common.Views.FormatSettingsDialog.textTitle":"Formato de número","Common.Views.FormatSettingsDialog.txtAccounting":"Financiero","Common.Views.FormatSettingsDialog.txtAs10":"Décimas (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"Сentésimas (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"Dieciseisavos (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"Mitades (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"Cuartos (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"Octavos (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"Moneda","Common.Views.FormatSettingsDialog.txtCustom":"Personalizado","Common.Views.FormatSettingsDialog.txtCustomWarning":"Por favor, introduzca el formato de número personalizado con cuidado. El editor de hojas de cálculo no comprueba los formatos personalizados para detectar errores que puedan afectar al archivo xlsx.","Common.Views.FormatSettingsDialog.txtDate":"Fecha","Common.Views.FormatSettingsDialog.txtFraction":"Fracción","Common.Views.FormatSettingsDialog.txtGeneral":"General","Common.Views.FormatSettingsDialog.txtNone":"Ningún","Common.Views.FormatSettingsDialog.txtNumber":"Número","Common.Views.FormatSettingsDialog.txtPercentage":"Porcentaje","Common.Views.FormatSettingsDialog.txtSample":"Ejemplo:","Common.Views.FormatSettingsDialog.txtScientific":"Científico","Common.Views.FormatSettingsDialog.txtText":"Texto","Common.Views.FormatSettingsDialog.txtTime":"Hora","Common.Views.FormatSettingsDialog.txtUpto1":"Hasta un dígito (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"Hasta dos dígitos (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"Hasta tres dígitos (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"Barra de herramientas de acceso rápido","Common.Views.Header.labelCoUsersDescr":"Usuarios que están editando el archivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Ajustes avanzados","Common.Views.Header.textBack":"Abrir ubicación del archivo","Common.Views.Header.textClose":"Cerrar archivo","Common.Views.Header.textCompactView":"Ocultar barra de herramientas","Common.Views.Header.textHideLines":"Ocultar reglas","Common.Views.Header.textHideStatusBar":"Combinar las barras de hoja y de estado","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Solo lectura","Common.Views.Header.textRemoveFavorite":"Eliminar de Favoritos","Common.Views.Header.textSaveBegin":"Guardando...","Common.Views.Header.textSaveChanged":"Modificado","Common.Views.Header.textSaveEnd":"Se han guardado todos los cambios","Common.Views.Header.textSaveExpander":"Se han guardado todos los cambios","Common.Views.Header.textShare":"Compartir","Common.Views.Header.textZoom":"Ampliación","Common.Views.Header.tipAccessRights":"Gestionar permisos de acceso al documento","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalizar la barra de herramientas Acceso rápido","Common.Views.Header.tipDownload":"Descargar archivo","Common.Views.Header.tipGoEdit":"Editar el archivo actual","Common.Views.Header.tipPrint":"Imprimir archivo","Common.Views.Header.tipPrintQuick":"Impresión rápida","Common.Views.Header.tipRedo":"Rehacer","Common.Views.Header.tipSave":"Guardar","Common.Views.Header.tipSearch":"Buscar","Common.Views.Header.tipUndo":"Deshacer","Common.Views.Header.tipUndock":"Desacoplar en una ventana independiente","Common.Views.Header.tipUsers":"Ver usuarios","Common.Views.Header.tipViewSettings":"Mostrar ajustes","Common.Views.Header.tipViewUsers":"Ver usuarios y gestionar permisos de acceso a documentos","Common.Views.Header.txtAccessRights":"Cambiar permisos de acceso","Common.Views.Header.txtRename":"Cambiar nombre","Common.Views.History.textCloseHistory":"Cerrar historial","Common.Views.History.textHide":"Contraer","Common.Views.History.textHideAll":"Ocultar cambios detallados","Common.Views.History.textHighlightDeleted":"Resaltar eliminado","Common.Views.History.textMore":"Más","Common.Views.History.textRestore":"Restaurar","Common.Views.History.textShow":"Expandir","Common.Views.History.textShowAll":"Mostrar cambios detallados","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"Historial de versiones","Common.Views.ImageFromUrlDialog.textUrl":"URL de la imagen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo es obligatorio","Common.Views.ImageFromUrlDialog.txtNotUrl":"Este campo debe ser una URL en el formato \"http://www.example.com\"","Common.Views.ListSettingsDialog.textBulleted":"Con viñetas","Common.Views.ListSettingsDialog.textFromFile":"Desde archivo","Common.Views.ListSettingsDialog.textFromStorage":"Desde almacenamiento","Common.Views.ListSettingsDialog.textFromUrl":"Desde URL","Common.Views.ListSettingsDialog.textNumbering":"Numerado","Common.Views.ListSettingsDialog.textSelect":"Seleccionar desde","Common.Views.ListSettingsDialog.tipChange":"Cambiar viñeta","Common.Views.ListSettingsDialog.txtBullet":"Viñeta","Common.Views.ListSettingsDialog.txtColor":"Color","Common.Views.ListSettingsDialog.txtImage":"Imagen","Common.Views.ListSettingsDialog.txtImport":"Importación","Common.Views.ListSettingsDialog.txtNewBullet":"Nueva viñeta","Common.Views.ListSettingsDialog.txtNewImage":"Imagen nueva","Common.Views.ListSettingsDialog.txtNone":"Ninguno","Common.Views.ListSettingsDialog.txtOfText":"% de texto","Common.Views.ListSettingsDialog.txtSize":"Tamaño","Common.Views.ListSettingsDialog.txtStart":"Empezar en","Common.Views.ListSettingsDialog.txtSymbol":"Símbolo","Common.Views.ListSettingsDialog.txtTitle":"Ajustes de lista","Common.Views.ListSettingsDialog.txtType":"Tipo","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Introduzca un prompt para la consulta","Common.Views.MacrosAiDialog.textCreate":"Crear","Common.Views.MacrosDialog.textAutostart":"Inicio automático","Common.Views.MacrosDialog.textConvertFromVBA":"Convertir desde VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convertir macros desde VBA","Common.Views.MacrosDialog.textCopy":"Copiar ","Common.Views.MacrosDialog.textCreateFromDesc":"Crear a partir de la descripción","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Crear macros a partir de la descripción","Common.Views.MacrosDialog.textCustomFunction":"Función personalizada","Common.Views.MacrosDialog.textCustomFunctions":"Funciones personalizadas","Common.Views.MacrosDialog.textDebug":"Depurar","Common.Views.MacrosDialog.textDelete":"Eliminar","Common.Views.MacrosDialog.textFunctions":"Funciones","Common.Views.MacrosDialog.textLoading":"Cargando...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Crear inicio automático","Common.Views.MacrosDialog.textRename":"Renombrar","Common.Views.MacrosDialog.textRun":"Ejecutar","Common.Views.MacrosDialog.textSave":"Guardar","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Desactivar inicio automático","Common.Views.MacrosDialog.tipAI":"IA","Common.Views.MacrosDialog.tipFunctionAdd":"Añadir función personalizada","Common.Views.MacrosDialog.tipFunctionCopy":"Copiar función personalizada","Common.Views.MacrosDialog.tipFunctionDelete":"Eliminar función personalizada","Common.Views.MacrosDialog.tipFunctionRename":"Renombrar función personalizada","Common.Views.MacrosDialog.tipMacrosAdd":"Añadir macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copiar macros","Common.Views.MacrosDialog.tipMacrosDebug":"Depurar macros","Common.Views.MacrosDialog.tipMacrosRename":"Renombrar macros","Common.Views.MacrosDialog.tipMacrosRun":"Ejecutar macros","Common.Views.MacrosDialog.tipRedo":"Rehacer","Common.Views.MacrosDialog.tipUndo":"Deshacer","Common.Views.OpenDialog.closeButtonText":"Cerrar archivo","Common.Views.OpenDialog.textInvalidRange":"Rango de celdas inválido","Common.Views.OpenDialog.textSelectData":"Seleccionar datos","Common.Views.OpenDialog.txtAdvanced":"Avanzado","Common.Views.OpenDialog.txtColon":"Dos puntos","Common.Views.OpenDialog.txtComma":"Coma","Common.Views.OpenDialog.txtDelimiter":"Delimitador","Common.Views.OpenDialog.txtDestData":"Elija dónde situar los datos","Common.Views.OpenDialog.txtEmpty":"Este campo es obligatorio","Common.Views.OpenDialog.txtEncoding":"Codificación ","Common.Views.OpenDialog.txtIncorrectPwd":"La contraseña es incorrecta","Common.Views.OpenDialog.txtOpenFile":"Escriba la contraseña para abrir el archivo","Common.Views.OpenDialog.txtOther":"Otro","Common.Views.OpenDialog.txtPassword":"Contraseña","Common.Views.OpenDialog.txtPreview":"Vista previa","Common.Views.OpenDialog.txtProtected":"Una vez que se ha introducido la contraseña y abierto el archivo, la contraseña actual al archivo se restablecerá","Common.Views.OpenDialog.txtSemicolon":"Punto y coma","Common.Views.OpenDialog.txtSpace":"Espacio","Common.Views.OpenDialog.txtTab":"Tabulador","Common.Views.OpenDialog.txtTitle":"Elegir opciones de %1","Common.Views.OpenDialog.txtTitleProtected":"Archivo protegido","Common.Views.PasswordDialog.txtDescription":"Establezca una contraseña para proteger este documento","Common.Views.PasswordDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","Common.Views.PasswordDialog.txtPassword":"Contraseña","Common.Views.PasswordDialog.txtRepeat":"Repita la contraseña","Common.Views.PasswordDialog.txtTitle":"Establecer contraseña","Common.Views.PasswordDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdela en un lugar seguro.","Common.Views.PluginDlg.textDock":"Anclar plugin","Common.Views.PluginDlg.textLoading":"Cargando","Common.Views.PluginPanel.textClosePanel":"Cerrar plugin","Common.Views.PluginPanel.textHidePanel":"Contraer plugin","Common.Views.PluginPanel.textLoading":"Cargando","Common.Views.PluginPanel.textUndock":"Desanclar plugin","Common.Views.Plugins.groupCaption":"Extensiones","Common.Views.Plugins.strPlugins":"Extensiones","Common.Views.Plugins.textBackgroundPlugins":"Plugins de fondo","Common.Views.Plugins.textClosePanel":"Cerrar extensión","Common.Views.Plugins.textLoading":"Cargando","Common.Views.Plugins.textSettings":"Ajustes","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Detener","Common.Views.Plugins.textTheListOfBackgroundPlugins":"La lista de plugins de fondo","Common.Views.Plugins.tipMore":"Más","Common.Views.Protection.hintAddPwd":"Cifrar con contraseña","Common.Views.Protection.hintDelPwd":"Eliminar contraseña","Common.Views.Protection.hintPwd":"Cambie o elimine la contraseña","Common.Views.Protection.hintSignature":"Añadir firma digital o línea de firma","Common.Views.Protection.txtAddPwd":"Añadir contraseña","Common.Views.Protection.txtChangePwd":"Cambiar contraseña","Common.Views.Protection.txtDeletePwd":"Eliminar contraseña","Common.Views.Protection.txtEncrypt":"Cifrar","Common.Views.Protection.txtInvisibleSignature":"Añadir firma digital","Common.Views.Protection.txtSignature":"Firma","Common.Views.Protection.txtSignatureLine":"Añadir línea de firma","Common.Views.RecentFiles.txtOpenRecent":"Abrir reciente","Common.Views.RenameDialog.textName":"Nombre del archivo","Common.Views.RenameDialog.txtInvalidName":"El nombre del archivo no debe contener los símbolos siguientes:","Common.Views.ReviewChanges.hintNext":"Al cambio siguiente","Common.Views.ReviewChanges.hintPrev":"Al cambio anterior","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedición en tiempo real. Todos los cambios se guardan de forma automática.","Common.Views.ReviewChanges.strStrict":"Estricto","Common.Views.ReviewChanges.strStrictDesc":"Use el botón \"Guardar\" para sincronizar los cambios que usted y otros realicen.","Common.Views.ReviewChanges.tipAcceptCurrent":"Aceptar cambio actual","Common.Views.ReviewChanges.tipCoAuthMode":"Establecer modo de coedición","Common.Views.ReviewChanges.tipCommentRem":"Eliminar comentarios","Common.Views.ReviewChanges.tipCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentarios","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver los comentarios actuales","Common.Views.ReviewChanges.tipHistory":"Mostrar historial de versiones","Common.Views.ReviewChanges.tipRejectCurrent":"Rechazar cambio actual","Common.Views.ReviewChanges.tipReview":"Rastrear cambios","Common.Views.ReviewChanges.tipReviewView":"Seleccionar modo en que presentar los cambios","Common.Views.ReviewChanges.tipSetDocLang":"Establecer el idioma de documento","Common.Views.ReviewChanges.tipSetSpelling":"Сorrección ortográfica","Common.Views.ReviewChanges.tipSharing":"Gestionar permisos de acceso al documento","Common.Views.ReviewChanges.txtAccept":"Aceptar","Common.Views.ReviewChanges.txtAcceptAll":"Aceptar todos los cambios","Common.Views.ReviewChanges.txtAcceptChanges":"Aceptar cambios","Common.Views.ReviewChanges.txtAcceptCurrent":"Aceptar cambio actual","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Cerrar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedición","Common.Views.ReviewChanges.txtCommentRemAll":"Eliminar todos los comentarios","Common.Views.ReviewChanges.txtCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.txtCommentRemMy":"Eliminar mis comentarios","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Eliminar mis comentarios actuales","Common.Views.ReviewChanges.txtCommentRemove":"Eliminar","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos los comentarios","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentarios actuales","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver mis comentarios","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver mis comentarios actuales","Common.Views.ReviewChanges.txtDocLang":"Idioma","Common.Views.ReviewChanges.txtFinal":"Todos los cambio aceptados (vista previa)","Common.Views.ReviewChanges.txtFinalCap":"Final","Common.Views.ReviewChanges.txtHistory":"Historial de versiones","Common.Views.ReviewChanges.txtMarkup":"Todos los cambios (edición)","Common.Views.ReviewChanges.txtMarkupCap":"Margen","Common.Views.ReviewChanges.txtNext":"Siguiente","Common.Views.ReviewChanges.txtOriginal":"Todos los cambios rechazados (Vista previa)","Common.Views.ReviewChanges.txtOriginalCap":"Original","Common.Views.ReviewChanges.txtPrev":"Anterior","Common.Views.ReviewChanges.txtReject":"Rechazar","Common.Views.ReviewChanges.txtRejectAll":"Rechazar todos los cambios","Common.Views.ReviewChanges.txtRejectChanges":"Rechazar cambios","Common.Views.ReviewChanges.txtRejectCurrent":"Rechazar Cambio Actual","Common.Views.ReviewChanges.txtSharing":"Compartir","Common.Views.ReviewChanges.txtSpelling":"Сorrección ortográfica","Common.Views.ReviewChanges.txtTurnon":"Rastrear cambios","Common.Views.ReviewChanges.txtView":"Modo de visualización","Common.Views.ReviewPopover.textAdd":"Añadir","Common.Views.ReviewPopover.textAddReply":"Añadir respuesta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Cerrar","Common.Views.ReviewPopover.textComment":"Comentario","Common.Views.ReviewPopover.textEdit":"Aceptar","Common.Views.ReviewPopover.textEnterComment":"Introduzca su comentario aquí","Common.Views.ReviewPopover.textMention":"+mención proporcionará acceso al documento y enviará un correo","Common.Views.ReviewPopover.textMentionNotify":"+mención notificará al usuario por correo","Common.Views.ReviewPopover.textOpenAgain":"Abrir de nuevo","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"No tiene permiso para volver a abrir el comentario","Common.Views.ReviewPopover.txtDeleteTip":"Eliminar","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.SaveAsDlg.textLoading":"Cargando","Common.Views.SaveAsDlg.textTitle":"Carpeta en donde guardar","Common.Views.SearchPanel.textByColumns":"Por columnas","Common.Views.SearchPanel.textByRows":"Por filas","Common.Views.SearchPanel.textCaseSensitive":"Distinguir mayúsculas y minúsculas","Common.Views.SearchPanel.textCell":"Celda","Common.Views.SearchPanel.textCloseSearch":"Cerrar búsqueda","Common.Views.SearchPanel.textContentChanged":"Se ha modificado el documento","Common.Views.SearchPanel.textFind":"Buscar","Common.Views.SearchPanel.textFindAndReplace":"Buscar y reemplazar","Common.Views.SearchPanel.textFormula":"Fórmula","Common.Views.SearchPanel.textFormulas":"Fórmulas","Common.Views.SearchPanel.textItemEntireCell":"Todo el contenido de celda","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} elementos reemplazados correctamente.","Common.Views.SearchPanel.textLookIn":"Buscar en","Common.Views.SearchPanel.textMatchUsingRegExp":"Coincidir utilizando expresiones regulares","Common.Views.SearchPanel.textName":"Nombre","Common.Views.SearchPanel.textNoMatches":"No hay coincidencias","Common.Views.SearchPanel.textNoSearchResults":"No hay resultados de búsqueda","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} elementos reemplazados. Los {2} elementos restantes están bloqueados por otros usuarios.","Common.Views.SearchPanel.textReplace":"Reemplazar","Common.Views.SearchPanel.textReplaceAll":"Reemplazar todo","Common.Views.SearchPanel.textReplaceWith":"Reemplazar por","Common.Views.SearchPanel.textSearch":"Búsqueda","Common.Views.SearchPanel.textSearchAgain":"{0}Realiza nueva búsqueda{1} para obtener resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"La búsqueda se ha detenido","Common.Views.SearchPanel.textSearchOptions":"Opciones de búsqueda","Common.Views.SearchPanel.textSearchResults":"Resultados de búsqueda: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados de búsqueda","Common.Views.SearchPanel.textSelectDataRange":"Seleccionar rango de datos","Common.Views.SearchPanel.textSheet":"Hoja","Common.Views.SearchPanel.textSpecificRange":"Intervalo específico","Common.Views.SearchPanel.textTooManyResults":"Hay demasiados resultados para mostrar aquí","Common.Views.SearchPanel.textValue":"Valor","Common.Views.SearchPanel.textValues":"Valores","Common.Views.SearchPanel.textWholeWords":"Solo palabras completas","Common.Views.SearchPanel.textWithin":"Dentro de","Common.Views.SearchPanel.textWorkbook":"Libro de trabajo","Common.Views.SearchPanel.tipNextResult":"Resultado siguiente","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Cargando","Common.Views.SelectFileDlg.textTitle":"Seleccionar origen de datos","Common.Views.ShapeShadowDialog.txtAngle":"Ángulo","Common.Views.ShapeShadowDialog.txtDistance":"Distancia","Common.Views.ShapeShadowDialog.txtSize":"Tamaño","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparencia","Common.Views.ShortcutsDialog.txtDescription":"Descripción","Common.Views.ShortcutsDialog.txtEmpty":"No se han encontrado coincidencias. Ajuste su búsqueda.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restablecer todos los valores predeterminados","Common.Views.ShortcutsDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todos los ajustes de los accesos directos se restablecerán a los valores predeterminados.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsDialog.txtSearch":"Búsqueda","Common.Views.ShortcutsDialog.txtTitle":"Accesos directos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Acción","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Escriba el acceso directo deseado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"El acceso directo utilizado por las acciones %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"El acceso directo utilizado por las acciones %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"El acceso directo utilizado por la acción %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"El acceso directo utilizado por la acción %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Nuevo acceso directo","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos los accesos directos para la acción «%1» se restablecerán a los valores predeterminados.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsEditDialog.txtTitle":"Editar acceso directo","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Escriba el acceso directo deseado","Common.Views.SignDialog.textBold":"Negrita","Common.Views.SignDialog.textCertificate":"Certificado","Common.Views.SignDialog.textChange":"Cambiar","Common.Views.SignDialog.textInputName":"Introduzca el nombre del firmante","Common.Views.SignDialog.textItalic":"Cursiva","Common.Views.SignDialog.textNameError":"El nombre del firmante no debe estar vacío.","Common.Views.SignDialog.textPurpose":"Propósito al firmar este documento","Common.Views.SignDialog.textSelect":"Seleccionar","Common.Views.SignDialog.textSelectImage":"Seleccionar imagen","Common.Views.SignDialog.textSignature":"La firma se ve como","Common.Views.SignDialog.textTitle":"Firmar documento","Common.Views.SignDialog.textUseImage":"o pulse en 'Seleccionar imagen' para usar una imagen como firma","Common.Views.SignDialog.textValid":"Válido desde %1 hasta %2","Common.Views.SignDialog.tipFontName":"Nombre de la fuente","Common.Views.SignDialog.tipFontSize":"Tamaño de la fuente","Common.Views.SignSettingsDialog.textAllowComment":"Permitir al firmante añadir comentarios en el diálogo de la firma","Common.Views.SignSettingsDialog.textDefInstruction":"Antes de firmar este documento, verifique que el contenido que está firmando es correcto.","Common.Views.SignSettingsDialog.textInfoEmail":"Correo electrónico del firmante sugerido","Common.Views.SignSettingsDialog.textInfoName":"Firmante sugerido","Common.Views.SignSettingsDialog.textInfoTitle":"Título del firmante sugerido","Common.Views.SignSettingsDialog.textInstructions":"Instrucciones para el firmante","Common.Views.SignSettingsDialog.textShowDate":"Mostrar fecha de la firma","Common.Views.SignSettingsDialog.textTitle":"Configuración de firma","Common.Views.SignSettingsDialog.txtEmpty":"Este campo es obligatorio","Common.Views.SymbolTableDialog.textCharacter":"Carácter","Common.Views.SymbolTableDialog.textCode":"Valor hexadecimal de Unicode","Common.Views.SymbolTableDialog.textCopyright":"Signo de «copyright»","Common.Views.SymbolTableDialog.textDCQuote":"Comillas dobles de cierre","Common.Views.SymbolTableDialog.textDOQuote":"Comillas dobles de apertura","Common.Views.SymbolTableDialog.textEllipsis":"Puntos suspensivos","Common.Views.SymbolTableDialog.textEmDash":"Raya","Common.Views.SymbolTableDialog.textEmSpace":"Espacio largo","Common.Views.SymbolTableDialog.textEnDash":"Guion corto","Common.Views.SymbolTableDialog.textEnSpace":"Espacio corto","Common.Views.SymbolTableDialog.textFont":"Fuente","Common.Views.SymbolTableDialog.textNBHyphen":"Guion de no separación","Common.Views.SymbolTableDialog.textNBSpace":"Espacio de no separación","Common.Views.SymbolTableDialog.textPilcrow":"Signo de antígrafo","Common.Views.SymbolTableDialog.textQEmSpace":"1/4 de espacio largo","Common.Views.SymbolTableDialog.textRange":"Rango","Common.Views.SymbolTableDialog.textRecent":"Símbolos utilizados recientemente","Common.Views.SymbolTableDialog.textRegistered":"Signo de marca registrada","Common.Views.SymbolTableDialog.textSCQuote":"Comillas simples de cierre","Common.Views.SymbolTableDialog.textSection":"Signo de párrafo","Common.Views.SymbolTableDialog.textShortcut":"Tecla de método abreviado","Common.Views.SymbolTableDialog.textSHyphen":"Guion opcional","Common.Views.SymbolTableDialog.textSOQuote":"Comillas simples de apertura","Common.Views.SymbolTableDialog.textSpecial":"Caracteres especiales","Common.Views.SymbolTableDialog.textSymbols":"Símbolos","Common.Views.SymbolTableDialog.textTitle":"Símbolo","Common.Views.SymbolTableDialog.textTradeMark":"Símbolo de marca registrada","Common.Views.UserNameDialog.textDontShow":"No volver a preguntarme","Common.Views.UserNameDialog.textLabel":"Etiqueta:","Common.Views.UserNameDialog.textLabelError":"La etiqueta no debe estar vacía.","SSE.Controllers.DataTab.strSheet":"Hoja","SSE.Controllers.DataTab.textColumns":"Columnas","SSE.Controllers.DataTab.textContinue":"Continuar","SSE.Controllers.DataTab.textEmptyUrl":"Debe especificar la URL.","SSE.Controllers.DataTab.textRows":"Filas","SSE.Controllers.DataTab.textTurnOff":"Desactivar actualización automática","SSE.Controllers.DataTab.textWizard":"Texto en columnas","SSE.Controllers.DataTab.txtContinue":"Continuar","SSE.Controllers.DataTab.txtDataValidation":"Validación de datos","SSE.Controllers.DataTab.txtExpand":"Expandir","SSE.Controllers.DataTab.txtExpandRemDuplicates":"Los datos junto a la selección no serán eliminados. ¿Quiere ampliar la selección para incluir los datos adyacentes o continuar solo con las celdas actualmente seleccionadas?","SSE.Controllers.DataTab.txtExtendDataValidation":"La selección contiene algunas celdas sin ajustes de Validación de Datos.
¿Desea extender la Validación de Datos a estas celdas?","SSE.Controllers.DataTab.txtImportWizard":"Importación de texto","SSE.Controllers.DataTab.txtMaxFeasible":"Se ha alcanzado el número máximo de soluciones viables. ¿Continuar de todos modos?","SSE.Controllers.DataTab.txtMaxIterations":"Se ha alcanzado el límite máximo de iteraciones. ¿Continuar de todos modos?","SSE.Controllers.DataTab.txtMaxSubproblem":"Se ha alcanzado el número máximo de subproblemas. ¿Continuar de todos modos?","SSE.Controllers.DataTab.txtMaxTime":"Se ha alcanzado el límite de tiempo máximo. ¿Continuar de todos modos?","SSE.Controllers.DataTab.txtRemDuplicates":"Eliminar duplicados","SSE.Controllers.DataTab.txtRemoveDataValidation":"La selección contiene más de un tipo de validación.
¿Eliminar los ajustes actuales y continuar?","SSE.Controllers.DataTab.txtRemSelected":"Eliminar en los seleccionados","SSE.Controllers.DataTab.txtStop":"Detener","SSE.Controllers.DataTab.txtTrialSolution":"Mostrar solución de prueba","SSE.Controllers.DataTab.txtUrlTitle":"Introduzca una URL con los datos","SSE.Controllers.DocumentHolder.alignmentText":"Alineación","SSE.Controllers.DocumentHolder.centerText":"Al centro","SSE.Controllers.DocumentHolder.deleteColumnText":"Eliminar columna","SSE.Controllers.DocumentHolder.deleteRowText":"Eliminar fila","SSE.Controllers.DocumentHolder.deleteText":"Eliminar","SSE.Controllers.DocumentHolder.errorInvalidLink":"El enlace no existe. Por favor, corrija o elimine el enlace.","SSE.Controllers.DocumentHolder.guestText":"Visitante","SSE.Controllers.DocumentHolder.insertColumnLeftText":"Columna izquierda","SSE.Controllers.DocumentHolder.insertColumnRightText":"Columna derecha","SSE.Controllers.DocumentHolder.insertRowAboveText":"Fila de arriba","SSE.Controllers.DocumentHolder.insertRowBelowText":"Fila debajo","SSE.Controllers.DocumentHolder.insertText":"Insertar","SSE.Controllers.DocumentHolder.leftText":"A la izquierda","SSE.Controllers.DocumentHolder.notcriticalErrorTitle":"Aviso","SSE.Controllers.DocumentHolder.rightText":"A la derecha","SSE.Controllers.DocumentHolder.textArgument":"Argumento","SSE.Controllers.DocumentHolder.textAutoCorrectSettings":"Opciones de Autocorrección","SSE.Controllers.DocumentHolder.textChangeColumnWidth":"Ancho de columna {0} símbolos ({1} píxeles)","SSE.Controllers.DocumentHolder.textChangeRowHeight":"Altura de fila {0} puntos ({1} píxeles)","SSE.Controllers.DocumentHolder.textCtrlClick":"Haga clic en el enlace para abrirlo o haga clic y mantenga pulsado el botón del ratón para seleccionar la celda.","SSE.Controllers.DocumentHolder.textInsertLeft":"Insertar columna a la izquierda","SSE.Controllers.DocumentHolder.textInsertTop":"Insertar fila arriba","SSE.Controllers.DocumentHolder.textPasteSpecial":"Pegado especial","SSE.Controllers.DocumentHolder.textStopExpand":"Interrumpir la expansión automática de las tablas","SSE.Controllers.DocumentHolder.textSym":"sím","SSE.Controllers.DocumentHolder.tipIsLocked":"Este elemento está siendo editado por otro usuario.","SSE.Controllers.DocumentHolder.txtAboveAve":"Superior a la media","SSE.Controllers.DocumentHolder.txtAddBottom":"Añadir borde inferior","SSE.Controllers.DocumentHolder.txtAddFractionBar":"Añadir barra de fracción","SSE.Controllers.DocumentHolder.txtAddHor":"Añadir línea horizontal","SSE.Controllers.DocumentHolder.txtAddLB":"Añadir línea inferior izquierda","SSE.Controllers.DocumentHolder.txtAddLeft":"Añadir borde izquierdo","SSE.Controllers.DocumentHolder.txtAddLT":"Añadir línea superior izquierda","SSE.Controllers.DocumentHolder.txtAddRight":"Añadir borde derecho","SSE.Controllers.DocumentHolder.txtAddTop":"Añadir borde superior","SSE.Controllers.DocumentHolder.txtAddVer":"Añadir línea vertical","SSE.Controllers.DocumentHolder.txtAlignToChar":"Alinear a carácter","SSE.Controllers.DocumentHolder.txtAll":"(Todos)","SSE.Controllers.DocumentHolder.txtAllTableHint":"Devuelve todo el contenido de la tabla o de las columnas de la tabla especificadas, incluyendo las cabeceras de las columnas, los datos y las filas totales","SSE.Controllers.DocumentHolder.txtAnd":"y","SSE.Controllers.DocumentHolder.txtBegins":"Empieza con","SSE.Controllers.DocumentHolder.txtBelowAve":"Debajo de la media","SSE.Controllers.DocumentHolder.txtBlanks":"(Vacíos)","SSE.Controllers.DocumentHolder.txtBorderProps":"Propiedades de borde","SSE.Controllers.DocumentHolder.txtBottom":"Abajo ","SSE.Controllers.DocumentHolder.txtByField":"%1 de %2","SSE.Controllers.DocumentHolder.txtColumn":"Columna","SSE.Controllers.DocumentHolder.txtColumnAlign":"Alineación de columna","SSE.Controllers.DocumentHolder.txtContains":"Contiene","SSE.Controllers.DocumentHolder.txtCopySuccess":"Enlace copiado al portapapeles","SSE.Controllers.DocumentHolder.txtDataTableHint":"Devuelve las celdas de datos de la tabla o de las columnas de la tabla especificadas","SSE.Controllers.DocumentHolder.txtDecreaseArg":"Disminuir tamaño de argumento","SSE.Controllers.DocumentHolder.txtDeleteArg":"Eliminar argumento","SSE.Controllers.DocumentHolder.txtDeleteBreak":"Eliminar abertura manual","SSE.Controllers.DocumentHolder.txtDeleteChars":"Eliminar carácteres encerrados","SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators":"Eliminar caracteres encerrados y separadores","SSE.Controllers.DocumentHolder.txtDeleteEq":"Eliminar ecuación","SSE.Controllers.DocumentHolder.txtDeleteGroupChar":"Eliminar carácter","SSE.Controllers.DocumentHolder.txtDeleteRadical":"Eliminar radical","SSE.Controllers.DocumentHolder.txtEnds":"Termina con","SSE.Controllers.DocumentHolder.txtEquals":"Iguales","SSE.Controllers.DocumentHolder.txtEqualsToCellColor":"Igual al color de celda","SSE.Controllers.DocumentHolder.txtEqualsToFontColor":"Igual al color de fuente","SSE.Controllers.DocumentHolder.txtExpand":"Expandir y ordenar","SSE.Controllers.DocumentHolder.txtExpandSort":"Los datos al lado del rango seleccionado no serán ordenados. ¿Quiere Usted expandir el rango seleccionado para incluir datos de las celdas adyacentes o continuar ordenación del rango seleccionado?","SSE.Controllers.DocumentHolder.txtFilterBottom":"Más bajo","SSE.Controllers.DocumentHolder.txtFilterTop":"Superior","SSE.Controllers.DocumentHolder.txtFormula":"Fórmula","SSE.Controllers.DocumentHolder.txtFractionLinear":"Cambiar a la fracción lineal","SSE.Controllers.DocumentHolder.txtFractionSkewed":"Cambiar a la fracción sesgada","SSE.Controllers.DocumentHolder.txtFractionStacked":"Cambiar a la fracción apilada","SSE.Controllers.DocumentHolder.txtGreater":"Mayor que","SSE.Controllers.DocumentHolder.txtGreaterEquals":"Mayor que o igual a","SSE.Controllers.DocumentHolder.txtGroupCharOver":"Carácter por encima del texto","SSE.Controllers.DocumentHolder.txtGroupCharUnder":"Carácter por debajo del texto","SSE.Controllers.DocumentHolder.txtHeadersTableHint":"Devuelve las cabeceras de las columnas de la tabla o de las columnas de la tabla especificadas","SSE.Controllers.DocumentHolder.txtHeight":"Altura","SSE.Controllers.DocumentHolder.txtHideBottom":"Ocultar borde inferior","SSE.Controllers.DocumentHolder.txtHideBottomLimit":"Ocultar límite inferior","SSE.Controllers.DocumentHolder.txtHideCloseBracket":"Ocultar corchete de cierre","SSE.Controllers.DocumentHolder.txtHideDegree":"Ocultar grado","SSE.Controllers.DocumentHolder.txtHideHor":"Ocultar línea horizontal","SSE.Controllers.DocumentHolder.txtHideLB":"Ocultar línea inferior izquierda ","SSE.Controllers.DocumentHolder.txtHideLeft":"Ocultar borde izquierdo","SSE.Controllers.DocumentHolder.txtHideLT":"Ocultar línea superior izquierda","SSE.Controllers.DocumentHolder.txtHideOpenBracket":"Ocultar corchete de apertura","SSE.Controllers.DocumentHolder.txtHidePlaceholder":"Ocultar marcador de posición","SSE.Controllers.DocumentHolder.txtHideRight":"Ocultar borde derecho","SSE.Controllers.DocumentHolder.txtHideTop":"Ocultar borde superior","SSE.Controllers.DocumentHolder.txtHideTopLimit":"Ocultar límite superior","SSE.Controllers.DocumentHolder.txtHideVer":"Ocultar línea vertical","SSE.Controllers.DocumentHolder.txtImportWizard":"Importación de texto","SSE.Controllers.DocumentHolder.txtIncreaseArg":"Aumentar el tamaño del argumento","SSE.Controllers.DocumentHolder.txtInsertArgAfter":"Insertar argumento después","SSE.Controllers.DocumentHolder.txtInsertArgBefore":"Insertar argumento antes","SSE.Controllers.DocumentHolder.txtInsertBreak":"Insertar salto manual","SSE.Controllers.DocumentHolder.txtInsertEqAfter":"Insertar la ecuación después","SSE.Controllers.DocumentHolder.txtInsertEqBefore":"Insertar la ecuación antes","SSE.Controllers.DocumentHolder.txtItems":"objetos","SSE.Controllers.DocumentHolder.txtKeepTextOnly":"Mantener solo texto","SSE.Controllers.DocumentHolder.txtLess":"Menor que","SSE.Controllers.DocumentHolder.txtLessEquals":"Menor que o igual a","SSE.Controllers.DocumentHolder.txtLimitChange":"Cambiar ubicación de límites","SSE.Controllers.DocumentHolder.txtLimitOver":"Límite sobre el texto","SSE.Controllers.DocumentHolder.txtLimitUnder":"Límite debajo del texto","SSE.Controllers.DocumentHolder.txtLockSort":"Se encuentran datos junto a su selección, pero no tiene permisos suficientes para modificar esas celdas.
¿Desea continuar con la selección actual?","SSE.Controllers.DocumentHolder.txtMatchBrackets":"Coincidir corchetes con el alto de los argumentos","SSE.Controllers.DocumentHolder.txtMatrixAlign":"Alineación de la matriz","SSE.Controllers.DocumentHolder.txtNoChoices":"No hay selecciones para llenar la celda.
Se puede seleccionar solo valores de texto de columna para recambio.","SSE.Controllers.DocumentHolder.txtNotBegins":"No empieza con","SSE.Controllers.DocumentHolder.txtNotContains":"No contiene","SSE.Controllers.DocumentHolder.txtNotEnds":"No termina con","SSE.Controllers.DocumentHolder.txtNotEquals":"No es igual","SSE.Controllers.DocumentHolder.txtOr":"o","SSE.Controllers.DocumentHolder.txtOther":"Otro","SSE.Controllers.DocumentHolder.txtOverbar":"Barra sobre texto","SSE.Controllers.DocumentHolder.txtPaste":"Pegar","SSE.Controllers.DocumentHolder.txtPasteBorders":"Formula sin bordes","SSE.Controllers.DocumentHolder.txtPasteColWidths":"Formula + ancho de columna","SSE.Controllers.DocumentHolder.txtPasteDestFormat":"Formato de destino","SSE.Controllers.DocumentHolder.txtPasteFormat":"Pegar solo formato ","SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat":"Formula + formato de número","SSE.Controllers.DocumentHolder.txtPasteFormulas":"Pegar solo formula","SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat":"Formula + todo formateo","SSE.Controllers.DocumentHolder.txtPasteLink":"Pegar enlace","SSE.Controllers.DocumentHolder.txtPasteLinkPicture":"Imagen enlazada","SSE.Controllers.DocumentHolder.txtPasteMerge":"Combinar el formato condicional","SSE.Controllers.DocumentHolder.txtPastePicture":"Imagen","SSE.Controllers.DocumentHolder.txtPasteSourceFormat":"Formato de origen","SSE.Controllers.DocumentHolder.txtPasteTranspose":"Transponer","SSE.Controllers.DocumentHolder.txtPasteValFormat":"Valor + todo formato","SSE.Controllers.DocumentHolder.txtPasteValNumFormat":"Valor + formato de número","SSE.Controllers.DocumentHolder.txtPasteValues":"Pegar solo valor","SSE.Controllers.DocumentHolder.txtPercent":"por ciento","SSE.Controllers.DocumentHolder.txtRedoExpansion":"Rehacer expansión automática de la tabla","SSE.Controllers.DocumentHolder.txtRemFractionBar":"Quitar la barra de fracción","SSE.Controllers.DocumentHolder.txtRemLimit":"Eliminar límite","SSE.Controllers.DocumentHolder.txtRemoveAccentChar":"Quitar acento del carácter","SSE.Controllers.DocumentHolder.txtRemoveBar":"Eliminar barra","SSE.Controllers.DocumentHolder.txtRemoveWarning":"¿Desea eliminar esta firma?
No se puede deshacer.","SSE.Controllers.DocumentHolder.txtRemScripts":"Quitar índices","SSE.Controllers.DocumentHolder.txtRemSubscript":"Quitar subíndice","SSE.Controllers.DocumentHolder.txtRemSuperscript":"Quitar superíndice","SSE.Controllers.DocumentHolder.txtRowHeight":"Altura de fila","SSE.Controllers.DocumentHolder.txtScriptsAfter":"Índices después de texto","SSE.Controllers.DocumentHolder.txtScriptsBefore":"Índices antes de texto","SSE.Controllers.DocumentHolder.txtShowBottomLimit":"Mostrar límite inferior","SSE.Controllers.DocumentHolder.txtShowCloseBracket":"Mostrar corchete de cierre","SSE.Controllers.DocumentHolder.txtShowDegree":"Mostrar grado","SSE.Controllers.DocumentHolder.txtShowOpenBracket":"Mostrar corchete de apertura","SSE.Controllers.DocumentHolder.txtShowPlaceholder":"Mostrar marcador de posición","SSE.Controllers.DocumentHolder.txtShowTopLimit":"Mostrar límite superior","SSE.Controllers.DocumentHolder.txtSorting":"Ordenación","SSE.Controllers.DocumentHolder.txtSortSelected":"Ordenar los objetos seleccionados","SSE.Controllers.DocumentHolder.txtStretchBrackets":"Estirar corchetes","SSE.Controllers.DocumentHolder.txtThisRowHint":"Elija solo esta fila de la columna especificada","SSE.Controllers.DocumentHolder.txtTop":"Superior","SSE.Controllers.DocumentHolder.txtTotalsTableHint":"Devuelve el total de filas de la tabla o de las columnas de la tabla especificadas","SSE.Controllers.DocumentHolder.txtUnderbar":"Barra debajo de texto","SSE.Controllers.DocumentHolder.txtUndoExpansion":"Deshacer la expansión automática de la tabla","SSE.Controllers.DocumentHolder.txtUseTextImport":"Utilizar la importación de texto","SSE.Controllers.DocumentHolder.txtValue":"Valor","SSE.Controllers.DocumentHolder.txtWarnUrl":"Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. Para proteger su ordenador, haga clic solo en los hiperenlaces de fuentes fiables. Esta ubicación puede ser insegura:

{0}

¿Está seguro de que desea continuar?","SSE.Controllers.DocumentHolder.txtWidth":"Ancho","SSE.Controllers.DocumentHolder.warnFilterError":"Necesita la menos un campo de en el área «Valores» para aplicar el filtro de valor.","SSE.Controllers.FormulaDialog.sCategoryAll":"Todo","SSE.Controllers.FormulaDialog.sCategoryCube":"Cubo","SSE.Controllers.FormulaDialog.sCategoryCustom":"Personalizado","SSE.Controllers.FormulaDialog.sCategoryDatabase":"Base de datos","SSE.Controllers.FormulaDialog.sCategoryDateAndTime":"Fecha y hora","SSE.Controllers.FormulaDialog.sCategoryEngineering":"Ingeniería","SSE.Controllers.FormulaDialog.sCategoryFinancial":"Financiero","SSE.Controllers.FormulaDialog.sCategoryInformation":"Información","SSE.Controllers.FormulaDialog.sCategoryLast10":"10 usados por última vez","SSE.Controllers.FormulaDialog.sCategoryLogical":"Lógico","SSE.Controllers.FormulaDialog.sCategoryLookupAndReference":"Búsqueda y referencia","SSE.Controllers.FormulaDialog.sCategoryMathematic":"Matemáticas y trigonometría","SSE.Controllers.FormulaDialog.sCategoryStatistical":"Estadístico","SSE.Controllers.FormulaDialog.sCategoryTextAndData":"Texto y datos","SSE.Controllers.LeftMenu.newDocumentTitle":"Hoja de cálculo sin nombre","SSE.Controllers.LeftMenu.textByColumns":"Columnas","SSE.Controllers.LeftMenu.textByRows":"Filas","SSE.Controllers.LeftMenu.textFormulas":"Fórmulas ","SSE.Controllers.LeftMenu.textItemEntireCell":"Todo el contenido de celda","SSE.Controllers.LeftMenu.textLoadHistory":"Cargando historial de versiones...","SSE.Controllers.LeftMenu.textLookin":"Buscar en","SSE.Controllers.LeftMenu.textNoTextFound":"No se pueden encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","SSE.Controllers.LeftMenu.textReplaceSkipped":"Se ha realizado el reemplazo. Se han omitido {0} coincidencias.","SSE.Controllers.LeftMenu.textReplaceSuccess":"Se ha realizado la búsqueda. Se han sustituido {0} coincidencias.","SSE.Controllers.LeftMenu.textSave":"Guardar","SSE.Controllers.LeftMenu.textSearch":"Buscar","SSE.Controllers.LeftMenu.textSelectPath":"Introduzca un nuevo nombre para guardar la copia del archivo","SSE.Controllers.LeftMenu.textSheet":"Hoja","SSE.Controllers.LeftMenu.textValues":"Valores","SSE.Controllers.LeftMenu.textWarning":"Aviso","SSE.Controllers.LeftMenu.textWithin":"Dentro de","SSE.Controllers.LeftMenu.textWorkbook":"Libro de trabajo","SSE.Controllers.LeftMenu.txtUntitled":"Sin título","SSE.Controllers.LeftMenu.warnDownloadAs":"Si sigue guardando en este formato todas las características a excepción del texto se perderán.
¿Está seguro de que quiere continuar?","SSE.Controllers.LeftMenu.warnDownloadCsv":"El formato CSV no permite guardar un archivo de varias hojas y todos los elementos, excepto el texto.
Para guardar solo la hoja seleccionada en CSV, pulse OK.
Para guardar toda la hoja de cálculo y todas las características, pulse Cancelar y seleccione otro formato.","SSE.Controllers.LeftMenu.warnDownloadCsvSheets":"El formato CSV no admite guardar un archivo de varias hojas.
Para mantener el formato seleccionado y guardar solo la hoja actual, pulse Guardar.
Para guardar la hoja de cálculo actual, pulse Cancelar y guárdela en un formato diferente.","SSE.Controllers.LeftMenu.warnDownloadOds":"Al guardar este archivo, es posible que se pierdan algunas fórmulas, el formato de las celdas u objetos incrustados debido a la compatibilidad limitada con determinados formatos.
¿Está seguro de que desea continuar?","SSE.Controllers.Main.confirmAddCellWatches":"Esta acción añadirá {0} inspecciones de celda.
¿Desea continuar?","SSE.Controllers.Main.confirmAddCellWatchesMax":"Esta acción añadirá solo {0} inspecciones de celda por motivo de ahorrar memoria.
¿Desea continuar?","SSE.Controllers.Main.confirmMaxChangesSize":"El tamaño de las acciones excede la limitación establecida para su servidor.
Pulse \"Deshacer\" para cancelar su última acción o pulse \"Continuar\" para mantener la acción localmente (debe descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada).","SSE.Controllers.Main.confirmMoveCellRange":"El rango de celdas final puede contener los datos. ¿Quiere continuar?","SSE.Controllers.Main.confirmPutMergeRange":"Los datos de origen contienen celdas combinadas.
Habían estado sin combinar antes de que se pegaran en la tabla.","SSE.Controllers.Main.confirmReplaceFormulaInTable":"Las fórmulas de la fila de encabezado se eliminarán y se convertirán en texto estático.
¿Desea continuar?","SSE.Controllers.Main.confirmReplaceHFPicture":"Solo una imagen puede ser insertada en cada sección del encabezado.
Presione \"Reemplazar\" para reemplazar la imagen existente.
Presione \"conservar\" para conservar la imagen existente","SSE.Controllers.Main.convertationTimeoutText":"Se superó el tiempo de espera para la conversión.","SSE.Controllers.Main.criticalErrorExtText":"Pulse \"Aceptar\" para regresar a la lista de documentos.","SSE.Controllers.Main.criticalErrorExtTextClose":"Pulse \"OK\" para cerrar el editor.","SSE.Controllers.Main.criticalErrorTitle":"Error","SSE.Controllers.Main.downloadErrorText":"Error de descarga.","SSE.Controllers.Main.downloadTextText":"Cargando hoja de cálculo...","SSE.Controllers.Main.downloadTitleText":"Cargando hoja de cálculo","SSE.Controllers.Main.errNoDuplicates":"No se han encontrado valores duplicados.","SSE.Controllers.Main.errorAccessDeny":"Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con el administrador del servidor de documentos.","SSE.Controllers.Main.errorArgsRange":"Hay un error en la fórmula introducida.
Se está usando un intervalo de argumentos incorrecto.","SSE.Controllers.Main.errorAutoFilterChange":"La operación no está permitida, ya que está intentando cambiar celdas en una tabla de su hoja.","SSE.Controllers.Main.errorAutoFilterChangeFormatTable":"No se puede realizar la operación para las celdas seleccionadas porque usted no puede mover una parte de la tabla.
Seleccione otro rango de celdas para que toda la tabla sea seleccionada e intente de nuevo.","SSE.Controllers.Main.errorAutoFilterDataRange":"No se puede realizar la operación para el rango de celdas seleccionado.
Seleccione un rango de datos uniforme diferente del existente y vuelva a intentarlo.","SSE.Controllers.Main.errorAutoFilterHiddenRange":"No se puede realizar la operación porque el área contiene celdas filtradas.
Por favor muestre los elementos filtrados y vuelva a intentarlo.","SSE.Controllers.Main.errorBadImageUrl":"La URL de la imagen es incorrecta","SSE.Controllers.Main.errorCalculatedItemInPageField":"El elemento no se puede añadir ni modificar. El informe de la tabla dinámica tiene este campo en Filtros.","SSE.Controllers.Main.errorCannotPasteImg":"No se puede pegar esta imagen desde el portapapeles, pero puede guardarla en su dispositivo e \ninsertarla desde allí, o puede copiar la imagen sin texto y pegarla en la hoja de cálculo.","SSE.Controllers.Main.errorCannotUngroup":"No se puede desagrupar. Para crear un esquema del documento, seleccione filas o columnas y agrúpelas.","SSE.Controllers.Main.errorCannotUseCommandProtectedSheet":"No puede utilizar esta orden en una hoja protegida. Para usar esta orden, desproteja la hoja.
Es posible que se le solicite una contraseña.","SSE.Controllers.Main.errorChangeArray":"No se puede cambiar parte de una matriz.","SSE.Controllers.Main.errorChangeFilteredRange":"Esto cambiará un rango filtrado de la hoja.
Para completar esta tarea, quite los autofiltros.","SSE.Controllers.Main.errorChangeOnProtectedSheet":"La celda o el gráfico que está intentando cambiar se encuentra en una hoja protegida.
Para hacer un cambio, quítele la protección a la hoja. Es posible que se le solicite que introduzca una contraseña.","SSE.Controllers.Main.errorCircularReference":"Hay una o más referencias circulares en las que una fórmula hace referencia a su propia celda directa o indirectamente.
Intente eliminar o cambiar estas referencias, o mover las fórmulas a celdas diferentes.","SSE.Controllers.Main.errorCoAuthoringDisconnect":"Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.","SSE.Controllers.Main.errorConnectToServer":"No se ha podido guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.
Al hacer clic en el botón 'Aceptar' se le solicitará que descargue el documento.","SSE.Controllers.Main.errorConvertXml":"El archivo tiene un formato no compatible.
Solo se puede utilizar el formato XML Spreadsheet 2003.","SSE.Controllers.Main.errorCopyDisabled":"Por motivos de seguridad, el contenido de este documento no se puede copiar.","SSE.Controllers.Main.errorCopyMultiselectArea":"No se puede usar esta orden con varias selecciones.
Seleccione un solo rango e intente de nuevo.","SSE.Controllers.Main.errorCountArg":"Hay un error en la fórmula introducida.
Se está usando un número de argumentos incorrecto.","SSE.Controllers.Main.errorCountArgExceed":"Hay un error en la fórmula introducida.
Se ha excedido el número de argumentos.","SSE.Controllers.Main.errorCreateDefName":"No se pueden editar los rangos con nombres existentes y los nuevos no se pueden crear
en este momento ya que algunos de ellos están editándose.","SSE.Controllers.Main.errorCreateRange":"Los rangos existentes no se pueden editar y los nuevos no se pueden crear
por el momento ya que algunos de ellos se están editando.","SSE.Controllers.Main.errorDatabaseConnection":"Error externo.
Error de conexión a la base de datos. Por favor, póngase en contacto con atención al cliente si el error persiste.","SSE.Controllers.Main.errorDataEncrypted":"Se han recibido cambios cifrados que no pueden descifrarse.","SSE.Controllers.Main.errorDataRange":"Rango de datos incorrecto.","SSE.Controllers.Main.errorDataValidate":"El valor que ha introducido no es válido.
Un usuario ha restringido los valores que pueden ser introducidos en esta celda.","SSE.Controllers.Main.errorDefaultMessage":"Código de error: %1","SSE.Controllers.Main.errorDeleteColumnContainsLockedCell":"Está intentando eliminar una columna que contiene una celda bloqueada. Las celdas bloqueadas no pueden borrarse mientras la hoja esté protegida.
Para borrar una celda bloqueada, desproteja la hoja. Es posible que se le solicite que introduzca una contraseña.","SSE.Controllers.Main.errorDeleteRowContainsLockedCell":"Está intentando eliminar una fila que contiene una celda bloqueada. Las celdas bloqueadas no se pueden eliminar mientras la hoja esté protegida.
Para eliminar una celda bloqueada, desproteja la hoja. Es posible que se le solicite que introduzca una contraseña.","SSE.Controllers.Main.errorDependentsNoFormulas":"El comando de rastreo de dependencias de celdas no encontró formulas que hagan referencia a la celda activa.","SSE.Controllers.Main.errorDirectUrl":"Por favor, compruebe el vínculo al documento.
Este vínculo debe ser un vínculo directo al archivo para descargar.","SSE.Controllers.Main.errorEditingDownloadas":"Se ha producido 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.","SSE.Controllers.Main.errorEditingSaveas":"Se ha producido un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro.","SSE.Controllers.Main.errorEditView":"La vista de hoja existente no puede ser editada y las nuevas no se pueden crear en este momento, ya que algunas de ellas se están editando.","SSE.Controllers.Main.errorEmailClient":"No se ha podido encontrar ningún cliente de correo","SSE.Controllers.Main.errorFilePassProtect":"El archivo está protegido por una contraseña y no puede ser abierto.","SSE.Controllers.Main.errorFileRequest":"Error externo.
Error de solicitud de archivo. Por favor póngase en contacto con soporte si el error persiste.","SSE.Controllers.Main.errorFileSizeExceed":"El tamaño del archivo excede la limitación establecida para su servidor. Por favor, póngase en contacto con el administrador del servidor de documentos para obtener más detalles.","SSE.Controllers.Main.errorFileVKey":"Error externo.
Clave de seguridad incorrecto. Por favor póngase en contacto con soporte si el error persiste.","SSE.Controllers.Main.errorFillRange":"Es imposible rellenar el rango de celdas seleccionado.
Todas las celdas seleccionadas deben tener el mismo tamaño.","SSE.Controllers.Main.errorForceSave":"Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.","SSE.Controllers.Main.errorFormulaInPivotFieldName":"No se puede introducir una fórmula para un elemento o nombre de campo en un informe de tabla dinámica.","SSE.Controllers.Main.errorFormulaName":"Un error en la fórmula introducida.
Nombre de fórmula incorrecto.","SSE.Controllers.Main.errorFormulaParsing":"Error interno mientras analizando la fórmula.","SSE.Controllers.Main.errorFrmlMaxLength":"La longitud de su fórmula excede el límite de 8192 carácteres.
Por favor, edítela e intente de nuevo.","SSE.Controllers.Main.errorFrmlMaxReference":"No puede introducir esta fórmula porque tiene demasiados valores,
referencias de celda, y/o nombres.","SSE.Controllers.Main.errorFrmlMaxTextLength":"Valores de texto en fórmulas son limitados al número de caracteres - 255.
Use la función CONCATENAR u operador de concatenación (&).","SSE.Controllers.Main.errorFrmlWrongReferences":"La función se refiere a una hoja que no existe.
Por favor, compruebe los datos e inténtelo de nuevo.","SSE.Controllers.Main.errorFTChangeTableRangeError":"La operación no se ha podido completar para el rango de celdas seleccionado.
Seleccione un rango de modo que la primera fila de la tabla esté en la misma fila
y la tabla resultante se superponga a la actual.","SSE.Controllers.Main.errorFTRangeIncludedOtherTables":"La operación no se ha podido completar para el rango de celdas seleccionado.
Seleccione un rango que no incluye otras tablas.","SSE.Controllers.Main.errorInconsistentExt":"Se ha producido un error al abrir el archivo.
El contenido del archivo no coincide con la extensión del mismo.","SSE.Controllers.Main.errorInconsistentExtDocx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con documentos de texto (por ejemplo, docx), pero el archivo tiene una extensión inconsistente: %1.","SSE.Controllers.Main.errorInconsistentExtPdf":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con uno de los siguientes formatos: pdf/djvu/xps/oxps, pero el archivo tiene una extensión inconsistente: %1.","SSE.Controllers.Main.errorInconsistentExtPptx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con presentaciones (por ejemplo, pptx), pero el archivo tiene una extensión inconsistente: %1.","SSE.Controllers.Main.errorInconsistentExtXlsx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con hojas de cálculo (por ejemplo, xlsx), pero el archivo tiene una extensión inconsistente: %1.","SSE.Controllers.Main.errorInvalidRef":"Introduzca un nombre correcto para la selección o una referencia válida a la que ir.","SSE.Controllers.Main.errorKeyEncrypt":"Descriptor de clave desconocido","SSE.Controllers.Main.errorKeyExpire":"El descriptor de la clave ha expirado","SSE.Controllers.Main.errorLabledColumnsPivot":"Para crear una tabla dinámica, utilice datos que estén organizados como una lista con columnas etiquetadas.","SSE.Controllers.Main.errorLoadingFont":"Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.","SSE.Controllers.Main.errorLocationOrDataRangeError":"La referencia a la ubicación o al rango de datos no es válida.","SSE.Controllers.Main.errorLockedAll":"No se ha podido realizar la operación porque la hoja ha sido bloqueada por otro usuario.","SSE.Controllers.Main.errorLockedCellGoalSeek":"Una de las celdas implicadas en el proceso de búsqueda de objetivos ha sido modificada por otro usuario.","SSE.Controllers.Main.errorLockedCellPivot":"No puede modificar datos dentro de una tabla dinámica.","SSE.Controllers.Main.errorLockedCellSolver":"Una de las celdas involucradas en el proceso de Solver ha sido modificada por otro usuario.","SSE.Controllers.Main.errorLockedWorksheetRename":"No se puede cambiar el nombre de la hoja en este momento porque otro usuario la está renombrando","SSE.Controllers.Main.errorMacroUnavailableWarning":"No se puede ejecutar la macro %1. Es posible que la macro no esté disponible en este libro o que todas las macros estén desactivadas.","SSE.Controllers.Main.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Controllers.Main.errorMoveRange":"Es imposible cambiar una parte de la celda unida","SSE.Controllers.Main.errorMoveSlicerError":"Las segmentaciones de la tabla no pueden ser copiadas de un libro a otro.
Inténtelo de nuevo al seleccionar toda la tabla y las segmentaciones.","SSE.Controllers.Main.errorMultiCellFormula":"Las fórmulas de matriz con celdas múltiples no están permitidas en las tablas.","SSE.Controllers.Main.errorNoDataToParse":"No se han seleccionado datos para analizar.","SSE.Controllers.Main.errorNotUniqueFieldWithCalculated":"Si una o más tablas dinámicas tienen elementos calculados, no se pueden utilizar campos en el área de datos dos o más veces, o en el área de datos y en otra área al mismo tiempo.","SSE.Controllers.Main.errorOpenWarning":"Una de las fórmulas del archivo excede el límite de 8192 caracteres.
Esta fórmula se ha eliminado.","SSE.Controllers.Main.errorOperandExpected":"La función de sintaxis introducida no es correcta. Le recomendamos verificar si no le hace falta algún paréntesis - '(' o ')'","SSE.Controllers.Main.errorPasswordIsNotCorrect":"La contraseña que ha proporcionado no es correcta.
Verifique que la tecla Bloq Mayús está desactivada y asegúrese de utilizar las mayúsculas correctas.","SSE.Controllers.Main.errorPasteInPivot":"No podemos hacer este cambio para las celdas seleccionadas porque afectaría a una tabla dinámica.
Utilice la lista de campos para cambiar el informe.","SSE.Controllers.Main.errorPasteMaxRange":"El área de copiar no coincide con el área de pegar.
Para pegar las celdas copiadas, por favor, seleccione una zona con el mismo tamaño o haga clic en la primera celda de una fila.","SSE.Controllers.Main.errorPasteMultiSelect":"Esta acción no se puede realizar en un rango de selecciones múltiples.
Seleccione un solo rango y vuelva a intentarlo.","SSE.Controllers.Main.errorPasteSlicerError":"Las segmentaciones de la tabla no se pueden copiar de un libro a otro.","SSE.Controllers.Main.errorPivotFieldNameExists":"El nombre del campo de la tabla dinámica ya existe.","SSE.Controllers.Main.errorPivotGroup":"No se puede agrupar esta selección.","SSE.Controllers.Main.errorPivotOverlap":"El informe de la tabla dinámica no puede superponerse a la tabla.","SSE.Controllers.Main.errorPivotWithoutUnderlying":"El informe de la tabla dinámica se ha guardado sin los datos subyacentes.
Utilice el botón 'Actualizar' para actualizar el informe.","SSE.Controllers.Main.errorPrecedentsNoValidRef":"El comando de rastreo de dependencias de celdas requiere que la celda activa contenga una fórmula con una referencia válida.","SSE.Controllers.Main.errorPrintMaxPagesCount":"Lamentablemente, no es posible imprimir más de 1500 páginas a la vez en la versión actual del programa.
Esta restricción se eliminará en los próximos lanzamientos.","SSE.Controllers.Main.errorProtectedRange":"Este rango no se puede editar.","SSE.Controllers.Main.errorSaveWatermark":"Este archivo contiene una imagen de marca de agua vinculada a otro dominio.
Para que sea visible en PDF, actualice la imagen de marca de agua para que se vincule desde el mismo dominio que su documento, o cárguela desde su ordenador.","SSE.Controllers.Main.errorServerVersion":"La versión del editor se ha actualizado. La página se recargará para aplicar los cambios.","SSE.Controllers.Main.errorSessionAbsolute":"La sesión para editar el documento ha expirado. Por favor, recargue la página.","SSE.Controllers.Main.errorSessionIdle":"El documento no se ha editado durante bastante tiempo. Por favor, recargue la página.","SSE.Controllers.Main.errorSessionToken":"La conexión al servidor se ha interrumpido. Por favor, recargue la página.","SSE.Controllers.Main.errorSetPassword":"No se ha podido establecer la contraseña.","SSE.Controllers.Main.errorSingleColumnOrRowError":"La referencia de la ubicación no es válida porque las celdas no están todas en la misma columna o fila.
Seleccione las celdas que estén todas en una sola columna o fila.","SSE.Controllers.Main.errorStockChart":"Orden de las filas incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja de tal modo:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Controllers.Main.errorToken":"El 'token' de seguridad de documento tiene un formato incorrecto.
Por favor, contacte con el administrador del servidor de documentos.","SSE.Controllers.Main.errorTokenExpire":"El 'token' de seguridad de documento ha expirado.
Por favor, contacte con el administrador del servidor de documentos.","SSE.Controllers.Main.errorUnexpectedGuid":"Error externo.
GUID inesperada. Por favor, póngase en contacto con el servicio de atención al cliente si el error persiste.","SSE.Controllers.Main.errorUpdateVersion":"Se ha cambiado la versión del archivo. La página será actualizada.","SSE.Controllers.Main.errorUpdateVersionOnDisconnect":"Se ha restablecido la conexión a internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.","SSE.Controllers.Main.errorUserDrop":"No se puede acceder al archivo ahora.","SSE.Controllers.Main.errorUsersExceed":"Se superó la cantidad de usuarios permitidos por el plan de precios","SSE.Controllers.Main.errorViewerDisconnect":"Se ha perdido la conexión. Usted todavía puede visualizar el documento,
pero no puede descargarlo o imprimirlo hasta que la conexión sea restaurada y la página sea recargada.","SSE.Controllers.Main.errorWrongBracketsCount":"Hay un error en la fórmula introducida.
Está usando un número incorrecto de corchetes.","SSE.Controllers.Main.errorWrongOperator":"ay un error en la fórmula introducida. Se está usando un operador inválido.
Por favor, corrija el error.","SSE.Controllers.Main.errorWrongPassword":"La contraseña que ha proporcionado no es correcta.","SSE.Controllers.Main.errRemDuplicates":"Valores duplicados encontrados y eliminados: {0}, valores únicos restantes: {1}.","SSE.Controllers.Main.leavePageText":"Usted tiene cambios no guardados en esta hoja de cálculo. Haga clic en 'Permanecer en esta página', después 'Guardar' para guardarlos. Haga clic en 'Abandonar esta página' para descartar todos los cambios no guardados.","SSE.Controllers.Main.leavePageTextOnClose":"Todos los cambios no guardados en esta hoja de cálculo se perderán.
Haga clic en \"Cancelar\" y luego en \"Guardar\" para guardarlos. Haga clic en \"Aceptar\" para deshacerse de todos los cambios no guardados.","SSE.Controllers.Main.loadFontsTextText":"Cargando datos...","SSE.Controllers.Main.loadFontsTitleText":"Cargando datos","SSE.Controllers.Main.loadFontTextText":"Cargando datos...","SSE.Controllers.Main.loadFontTitleText":"Cargando datos","SSE.Controllers.Main.loadImagesTextText":"Cargando imágenes...","SSE.Controllers.Main.loadImagesTitleText":"Cargando imágenes","SSE.Controllers.Main.loadImageTextText":"Cargando imagen...","SSE.Controllers.Main.loadImageTitleText":"Cargando imagen","SSE.Controllers.Main.loadingDocumentTitleText":"Cargando hoja de cálculo","SSE.Controllers.Main.notcriticalErrorTitle":"Aviso","SSE.Controllers.Main.openErrorText":"Se ha producido un error al abrir el archivo ","SSE.Controllers.Main.openTextText":"Abriendo hoja de cálculo...","SSE.Controllers.Main.openTitleText":"Abriendo hoja de cálculo","SSE.Controllers.Main.pastInMergeAreaError":"No se puede cambiar parte de una celda combinada","SSE.Controllers.Main.printTextText":"Imprimiendo hoja de cálculo...","SSE.Controllers.Main.printTitleText":"Imprimiendo hoja de cálculo","SSE.Controllers.Main.reloadButtonText":"Recargar página","SSE.Controllers.Main.requestEditFailedMessageText":"Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.","SSE.Controllers.Main.requestEditFailedTitleText":"Acceso denegado","SSE.Controllers.Main.saveErrorText":"Se ha producido un error al guardar el archivo ","SSE.Controllers.Main.saveErrorTextDesktop":"Este archivo no se puede guardar o crear.
Las razones posibles son:
1. El archivo es de solo lectura.
2. El archivo está siendo editado por otros usuarios.
3. El disco está lleno o corrupto.","SSE.Controllers.Main.saveTextText":"Guardando hoja de cálculo...","SSE.Controllers.Main.saveTitleText":"Guardando hoja de cálculo","SSE.Controllers.Main.scriptLoadError":"La conexión a internet es demasiado lenta, no se han podido cargar algunos componentes. Por favor, recargue la página.","SSE.Controllers.Main.textAnonymous":"Anónimo","SSE.Controllers.Main.textApplyAll":"Aplicar a todas las ecuaciones","SSE.Controllers.Main.textBuyNow":"Visitar sitio web","SSE.Controllers.Main.textChangesSaved":"Todos los cambios se han guardado","SSE.Controllers.Main.textClose":"Cerrar","SSE.Controllers.Main.textCloseTip":"Pulse para cerrar el consejo","SSE.Controllers.Main.textConfirm":"Confirmación","SSE.Controllers.Main.textConnectionLost":"Intentando conectar. Por favor, compruebe los ajustes de conexión.","SSE.Controllers.Main.textContactUs":"Contactar con el equipo de ventas","SSE.Controllers.Main.textContinue":"Continuar","SSE.Controllers.Main.textContinuesOpening":"El archivo sigue abriéndose...","SSE.Controllers.Main.textConvertEquation":"Esta ecuación fue creada con una versión antigua del editor de ecuaciones, el cual ya no es compatible. Para editarla, convierta la ecuación al formato ML de Office Math.
¿Convertir ahora?","SSE.Controllers.Main.textCustomLoader":"Tenga en cuenta que, según los términos de la licencia, usted no tiene permiso para cambiar el cargador.
Por favor, póngase en contacto con nuestro departamento de ventas para obtener más información.","SSE.Controllers.Main.textDisconnect":"Se ha perdido la conexión","SSE.Controllers.Main.textFillOtherRows":"Rellenar otras filas","SSE.Controllers.Main.textFormulaFilledAllRows":"La fórmula ha rellenado {0} filas que tienen datos. Rellenar otras filas vacías puede requerir unos minutos.","SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty":"La fórmula ha rellenado las primeras {0} filas. Rellenar otras filas vacías puede requerir unos minutos.","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData":"La fórmula ha rellenado solo las primeras {0} filas que tienen datos por razones de ahorro de memoria. Hay otras {1} filas con datos en esta hoja. Puede rellenarlas manualmente.","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty":"La fórmula ha rellenado solo las primeras {0} filas por razones de ahorro de memoria. Las demás filas de esta hoja no contienen datos.","SSE.Controllers.Main.textGuest":"Invitado","SSE.Controllers.Main.textHasMacros":"El archivo contiene macros automáticas.
¿Quiere ejecutar macros?","SSE.Controllers.Main.textKeep":"Conservar","SSE.Controllers.Main.textLearnMore":"Más información","SSE.Controllers.Main.textLoadingDocument":"Cargando hoja de cálculo","SSE.Controllers.Main.textLongName":"Escriba un nombre que tenga menos de 128 caracteres.","SSE.Controllers.Main.textNeedSynchronize":"Hay actualizaciones disponibles","SSE.Controllers.Main.textNo":"No","SSE.Controllers.Main.textNoLicenseTitle":"Se ha alcanzado el límite de licencias","SSE.Controllers.Main.textPaidFeature":"Función de pago","SSE.Controllers.Main.textPleaseWait":"La operación puede tomar más tiempo de lo esperado. Espere por favor...","SSE.Controllers.Main.textReconnect":"Se ha restablecido la conexión","SSE.Controllers.Main.textRemember":"Recordar mi elección para todos los archivos","SSE.Controllers.Main.textRememberMacros":"Recordar mi elección para todas las macros","SSE.Controllers.Main.textRenameError":"El nombre de usuario no debe estar vacío.","SSE.Controllers.Main.textRenameLabel":"Escriba un nombre que se utilizará para la colaboración","SSE.Controllers.Main.textReplace":"Reemplazar","SSE.Controllers.Main.textRequestMacros":"Una macro realiza una solicitud a la URL. ¿Quiere permitir la solicitud al %1?","SSE.Controllers.Main.textShape":"Forma","SSE.Controllers.Main.textStrict":"Modo estricto","SSE.Controllers.Main.textText":"Texto","SSE.Controllers.Main.textTryQuickPrint":"Ha seleccionado «impresión rápida»: todo el documento se imprimirá en la última impresora seleccionada o predeterminada.
¿Desea continuar?","SSE.Controllers.Main.textTryUndoRedo":"Las funciones «Deshacer/Rehacer» se desactivan para el modo «coedición rápido».
Haga Clic en el botón \"modo estricto\" para cambiar al modo de «coedición estricta» para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios solo después de guardarlos. Se puede cambiar entre los modos de coedición usando los ajustes avanzados de edición.","SSE.Controllers.Main.textTryUndoRedoWarn":"Las funciones «Deshacer/Rehacer» se desactivan en el modo «coedición rápido».","SSE.Controllers.Main.textUndo":"Deshacer","SSE.Controllers.Main.textUpdateVersion":"El documento no se puede editar en este momento.
Tratando de actualizar el archivo, por favor espere...","SSE.Controllers.Main.textUpdating":"Actualizando","SSE.Controllers.Main.textYes":"Sí","SSE.Controllers.Main.tipLicenseExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de conexiones simultáneas permitidas por la licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","SSE.Controllers.Main.tipLicenseUsersExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de usuarios autorizados a editar documentos por licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","SSE.Controllers.Main.titleLicenseExp":"La licencia ha expirado","SSE.Controllers.Main.titleLicenseNotActive":"Licencia no activa","SSE.Controllers.Main.titleReadOnly":"Modo de sólo lectura","SSE.Controllers.Main.titleServerVersion":"El editor se ha actualizado","SSE.Controllers.Main.titleUpdateVersion":"La versión ha cambiado","SSE.Controllers.Main.txtAccent":"Acento","SSE.Controllers.Main.txtAll":"(Todos)","SSE.Controllers.Main.txtArt":"Su texto aquí","SSE.Controllers.Main.txtBasicShapes":"Formas básicas","SSE.Controllers.Main.txtBlank":"(en blanco)","SSE.Controllers.Main.txtButtons":"Botones","SSE.Controllers.Main.txtByField":"%1 de %2","SSE.Controllers.Main.txtCallouts":"Llamadas","SSE.Controllers.Main.txtCharts":"Gráficos","SSE.Controllers.Main.txtClearFilter":"Borrar filtro","SSE.Controllers.Main.txtColLbls":"Etiquetas de columna","SSE.Controllers.Main.txtColumn":"Columna","SSE.Controllers.Main.txtConfidential":"Confidencial","SSE.Controllers.Main.txtDate":"Fecha","SSE.Controllers.Main.txtDays":"Días","SSE.Controllers.Main.txtDiagramTitle":"Título del gráfico","SSE.Controllers.Main.txtEditingMode":"Establecer el modo de edición...","SSE.Controllers.Main.txtErrorLoadHistory":"Error al cargar el historial","SSE.Controllers.Main.txtFiguredArrows":"Flechas figuradas","SSE.Controllers.Main.txtFile":"Archivo","SSE.Controllers.Main.txtGrandTotal":"Total general","SSE.Controllers.Main.txtGroup":"Agrupar","SSE.Controllers.Main.txtHours":"Horas","SSE.Controllers.Main.txtInfo":"Información","SSE.Controllers.Main.txtLines":"Líneas","SSE.Controllers.Main.txtMath":"Matemáticas","SSE.Controllers.Main.txtMinutes":"Minutos","SSE.Controllers.Main.txtMonths":"Meses","SSE.Controllers.Main.txtMultiSelect":"Selección múltiple","SSE.Controllers.Main.txtNone":"Ninguno","SSE.Controllers.Main.txtOpen":"Abrir","SSE.Controllers.Main.txtOr":"%1 o %2","SSE.Controllers.Main.txtPage":"Página","SSE.Controllers.Main.txtPageOf":"Página %1 de %2","SSE.Controllers.Main.txtPages":"Páginas","SSE.Controllers.Main.txtPicture":"Imagen","SSE.Controllers.Main.txtPivotTable":"Tabla dinámica","SSE.Controllers.Main.txtPreparedBy":"Preparado por","SSE.Controllers.Main.txtPrintArea":"Área_de_impresión","SSE.Controllers.Main.txtQuarter":"Trim.","SSE.Controllers.Main.txtQuarters":"Trimestres","SSE.Controllers.Main.txtRectangles":"Rectángulos","SSE.Controllers.Main.txtRow":"Fila","SSE.Controllers.Main.txtRowLbls":"Etiquetas de fila","SSE.Controllers.Main.txtSaveCopyAsComplete":"La copia del archivo se ha guardado correctamente","SSE.Controllers.Main.txtScheme_Aspect":"Aspecto","SSE.Controllers.Main.txtScheme_Blue":"Azul","SSE.Controllers.Main.txtScheme_Blue_Green":"Verde azulado","SSE.Controllers.Main.txtScheme_Blue_II":"Azul II","SSE.Controllers.Main.txtScheme_Blue_Warm":"Azul cálido","SSE.Controllers.Main.txtScheme_Grayscale":"Escala de grises","SSE.Controllers.Main.txtScheme_Green":"Verde","SSE.Controllers.Main.txtScheme_Green_Yellow":"Verde amarillo","SSE.Controllers.Main.txtScheme_Marquee":"Marquesina","SSE.Controllers.Main.txtScheme_Median":"Medio","SSE.Controllers.Main.txtScheme_Office":"Office","SSE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","SSE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","SSE.Controllers.Main.txtScheme_Orange":"Naranja","SSE.Controllers.Main.txtScheme_Orange_Red":"Rojo naranja","SSE.Controllers.Main.txtScheme_Paper":"Papel","SSE.Controllers.Main.txtScheme_Red":"Rojo","SSE.Controllers.Main.txtScheme_Red_Orange":"Naranja rojo","SSE.Controllers.Main.txtScheme_Red_Violet":"Violeta rojo","SSE.Controllers.Main.txtScheme_Slipstream":"Flujo de aire","SSE.Controllers.Main.txtScheme_Violet":"Violeta","SSE.Controllers.Main.txtScheme_Violet_II":"Violeta II","SSE.Controllers.Main.txtScheme_Yellow":"Amarillo","SSE.Controllers.Main.txtScheme_Yellow_Orange":"Amarillo naranja","SSE.Controllers.Main.txtSeconds":"Segundos","SSE.Controllers.Main.txtSeries":"Serie","SSE.Controllers.Main.txtShape_accentBorderCallout1":"Llamada con línea 1 (borde y barra de énfasis)","SSE.Controllers.Main.txtShape_accentBorderCallout2":"Llamada con línea 2 (borde y barra de énfasis)","SSE.Controllers.Main.txtShape_accentBorderCallout3":"Llamada con línea 3 (borde y barra de énfasis)","SSE.Controllers.Main.txtShape_accentCallout1":"Llamada con línea 1 (barra de énfasis)","SSE.Controllers.Main.txtShape_accentCallout2":"Llamada con línea 2 (barra de énfasis)","SSE.Controllers.Main.txtShape_accentCallout3":"Llamada con línea 3 (barra de énfasis)","SSE.Controllers.Main.txtShape_actionButtonBackPrevious":"Botón de atrás o anterior","SSE.Controllers.Main.txtShape_actionButtonBeginning":"Botón de inicio","SSE.Controllers.Main.txtShape_actionButtonBlank":"Botón en blanco","SSE.Controllers.Main.txtShape_actionButtonDocument":"Botón de documento","SSE.Controllers.Main.txtShape_actionButtonEnd":"Botón de final","SSE.Controllers.Main.txtShape_actionButtonForwardNext":"Botón de adelante o siguiente","SSE.Controllers.Main.txtShape_actionButtonHelp":"Botón de ayuda","SSE.Controllers.Main.txtShape_actionButtonHome":"Botón de inicio","SSE.Controllers.Main.txtShape_actionButtonInformation":"Botón de información","SSE.Controllers.Main.txtShape_actionButtonMovie":"Botón de vídeo","SSE.Controllers.Main.txtShape_actionButtonReturn":"Botón de regreso","SSE.Controllers.Main.txtShape_actionButtonSound":"Botón de sonido","SSE.Controllers.Main.txtShape_arc":"Arco","SSE.Controllers.Main.txtShape_bentArrow":"Flecha doblada","SSE.Controllers.Main.txtShape_bentConnector5":"Conector angular","SSE.Controllers.Main.txtShape_bentConnector5WithArrow":"Conector angular de flecha","SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"Conector angular de flecha doble","SSE.Controllers.Main.txtShape_bentUpArrow":"Flecha doblada hacia arriba","SSE.Controllers.Main.txtShape_bevel":"Bisel","SSE.Controllers.Main.txtShape_blockArc":"Arco de bloque","SSE.Controllers.Main.txtShape_borderCallout1":"Llamada con línea 1","SSE.Controllers.Main.txtShape_borderCallout2":"Llamada con línea 2","SSE.Controllers.Main.txtShape_borderCallout3":"Llamada con línea 3","SSE.Controllers.Main.txtShape_bracePair":"Llaves","SSE.Controllers.Main.txtShape_callout1":"Llamada con línea 1 (sin borde)","SSE.Controllers.Main.txtShape_callout2":"Llamada con línea 2 (sin borde)","SSE.Controllers.Main.txtShape_callout3":"Llamada con línea 3 (sin borde)","SSE.Controllers.Main.txtShape_can":"Сilindro","SSE.Controllers.Main.txtShape_chevron":"Cheurón","SSE.Controllers.Main.txtShape_chord":"Acorde","SSE.Controllers.Main.txtShape_circularArrow":"Flecha circular","SSE.Controllers.Main.txtShape_cloud":"Nube","SSE.Controllers.Main.txtShape_cloudCallout":"Llamada de nube","SSE.Controllers.Main.txtShape_corner":"Esquina","SSE.Controllers.Main.txtShape_cube":"Cubo","SSE.Controllers.Main.txtShape_curvedConnector3":"Conector curvado","SSE.Controllers.Main.txtShape_curvedConnector3WithArrow":"Conector curvado de flecha","SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"Conector curvado de flecha doble","SSE.Controllers.Main.txtShape_curvedDownArrow":"Flecha curvada hacia abajo","SSE.Controllers.Main.txtShape_curvedLeftArrow":"Flecha curvada hacia la izquierda","SSE.Controllers.Main.txtShape_curvedRightArrow":"Flecha curvada hacia la derecha","SSE.Controllers.Main.txtShape_curvedUpArrow":"Flecha curvada hacia arriba","SSE.Controllers.Main.txtShape_decagon":"Decágono","SSE.Controllers.Main.txtShape_diagStripe":"Franja diagonal","SSE.Controllers.Main.txtShape_diamond":"Rombo","SSE.Controllers.Main.txtShape_dodecagon":"Dodecágono","SSE.Controllers.Main.txtShape_donut":"Anillo","SSE.Controllers.Main.txtShape_doubleWave":"Doble onda","SSE.Controllers.Main.txtShape_downArrow":"Flecha abajo","SSE.Controllers.Main.txtShape_downArrowCallout":"Llamada de flecha hacia abajo","SSE.Controllers.Main.txtShape_ellipse":"Elipse","SSE.Controllers.Main.txtShape_ellipseRibbon":"Cinta curvada hacia abajo","SSE.Controllers.Main.txtShape_ellipseRibbon2":"Cinta curvada hacia arriba","SSE.Controllers.Main.txtShape_flowChartAlternateProcess":"Diagrama de flujo: Proceso alternativo","SSE.Controllers.Main.txtShape_flowChartCollate":"Intercalar","SSE.Controllers.Main.txtShape_flowChartConnector":"Conector","SSE.Controllers.Main.txtShape_flowChartDecision":"Decisión","SSE.Controllers.Main.txtShape_flowChartDelay":"Retraso","SSE.Controllers.Main.txtShape_flowChartDisplay":"Pantalla","SSE.Controllers.Main.txtShape_flowChartDocument":"Documento","SSE.Controllers.Main.txtShape_flowChartExtract":"Extracto","SSE.Controllers.Main.txtShape_flowChartInputOutput":"Datos","SSE.Controllers.Main.txtShape_flowChartInternalStorage":"Diagrama de flujo: Almacenamiento interno","SSE.Controllers.Main.txtShape_flowChartMagneticDisk":"Diagrama de flujo: Disco magnético","SSE.Controllers.Main.txtShape_flowChartMagneticDrum":"Diagrama de flujo: Almacenamiento de acceso directo","SSE.Controllers.Main.txtShape_flowChartMagneticTape":"Diagrama de flujo: Almacenamiento de acceso secuencial","SSE.Controllers.Main.txtShape_flowChartManualInput":"Diagrama de flujo: Entrada manual","SSE.Controllers.Main.txtShape_flowChartManualOperation":"Diagrama de flujo: Operación manual","SSE.Controllers.Main.txtShape_flowChartMerge":"Combinar","SSE.Controllers.Main.txtShape_flowChartMultidocument":"Multidocumento","SSE.Controllers.Main.txtShape_flowChartOffpageConnector":"Conector fuera de página","SSE.Controllers.Main.txtShape_flowChartOnlineStorage":"Diagrama de flujo: Datos almacenados","SSE.Controllers.Main.txtShape_flowChartOr":"Diagrama de flujo: O","SSE.Controllers.Main.txtShape_flowChartPredefinedProcess":"Proceso predefinido","SSE.Controllers.Main.txtShape_flowChartPreparation":"Preparación","SSE.Controllers.Main.txtShape_flowChartProcess":"Proceso","SSE.Controllers.Main.txtShape_flowChartPunchedCard":"Tarjeta","SSE.Controllers.Main.txtShape_flowChartPunchedTape":"Diagrama de flujo: Cinta perforada","SSE.Controllers.Main.txtShape_flowChartSort":"Ordenar","SSE.Controllers.Main.txtShape_flowChartSummingJunction":"Diagrama de flujo: Conexión sumadora","SSE.Controllers.Main.txtShape_flowChartTerminator":"Terminador","SSE.Controllers.Main.txtShape_foldedCorner":"Esquina doblada","SSE.Controllers.Main.txtShape_frame":"Marco","SSE.Controllers.Main.txtShape_halfFrame":"Medio marco","SSE.Controllers.Main.txtShape_heart":"Corazón","SSE.Controllers.Main.txtShape_heptagon":"Heptágono","SSE.Controllers.Main.txtShape_hexagon":"Hexágono","SSE.Controllers.Main.txtShape_homePlate":"Pentágono","SSE.Controllers.Main.txtShape_horizontalScroll":"Pergamino horizontal","SSE.Controllers.Main.txtShape_irregularSeal1":"Explosión 1","SSE.Controllers.Main.txtShape_irregularSeal2":"Explosión 2","SSE.Controllers.Main.txtShape_leftArrow":"Flecha izquierda","SSE.Controllers.Main.txtShape_leftArrowCallout":"Llamada de flecha a la izquierda","SSE.Controllers.Main.txtShape_leftBrace":"Abrir llave","SSE.Controllers.Main.txtShape_leftBracket":"Abrir corchete","SSE.Controllers.Main.txtShape_leftRightArrow":"Flecha izquierda y derecha","SSE.Controllers.Main.txtShape_leftRightArrowCallout":"Llamada de flecha izquierda y derecha","SSE.Controllers.Main.txtShape_leftRightUpArrow":"Flecha izquierda, derecha y arriba","SSE.Controllers.Main.txtShape_leftUpArrow":"Flecha izquierda y arriba","SSE.Controllers.Main.txtShape_lightningBolt":"Rayo","SSE.Controllers.Main.txtShape_line":"Línea","SSE.Controllers.Main.txtShape_lineWithArrow":"Flecha","SSE.Controllers.Main.txtShape_lineWithTwoArrows":"Flecha doble","SSE.Controllers.Main.txtShape_mathDivide":"División","SSE.Controllers.Main.txtShape_mathEqual":"Igual","SSE.Controllers.Main.txtShape_mathMinus":"Menos","SSE.Controllers.Main.txtShape_mathMultiply":"Multiplicar","SSE.Controllers.Main.txtShape_mathNotEqual":"No igual","SSE.Controllers.Main.txtShape_mathPlus":"Más","SSE.Controllers.Main.txtShape_moon":"Luna","SSE.Controllers.Main.txtShape_noSmoking":"Señal de prohibición","SSE.Controllers.Main.txtShape_notchedRightArrow":"Flecha a la derecha con muesca","SSE.Controllers.Main.txtShape_octagon":"Octágono","SSE.Controllers.Main.txtShape_parallelogram":"Paralelogramo","SSE.Controllers.Main.txtShape_pentagon":"Pentágono","SSE.Controllers.Main.txtShape_pie":"Sector del círculo","SSE.Controllers.Main.txtShape_plaque":"Signo","SSE.Controllers.Main.txtShape_plus":"Más","SSE.Controllers.Main.txtShape_polyline1":"A mano alzada","SSE.Controllers.Main.txtShape_polyline2":"Forma libre","SSE.Controllers.Main.txtShape_quadArrow":"Flecha cuádruple","SSE.Controllers.Main.txtShape_quadArrowCallout":"Llamada de flecha cuádruple","SSE.Controllers.Main.txtShape_rect":"Rectángulo","SSE.Controllers.Main.txtShape_ribbon":"Cinta hacia abajo","SSE.Controllers.Main.txtShape_ribbon2":"Cinta hacia arriba","SSE.Controllers.Main.txtShape_rightArrow":"Flecha derecha","SSE.Controllers.Main.txtShape_rightArrowCallout":"Llamada de flecha a la derecha","SSE.Controllers.Main.txtShape_rightBrace":"Cerrar llave","SSE.Controllers.Main.txtShape_rightBracket":"Cerrar corchete","SSE.Controllers.Main.txtShape_round1Rect":"Rectángulo sencillo de esquina redondeada","SSE.Controllers.Main.txtShape_round2DiagRect":"Rectángulo de esquina redondeada en diagonal","SSE.Controllers.Main.txtShape_round2SameRect":"Rectángulo de esquina redondeada del mismo lado","SSE.Controllers.Main.txtShape_roundRect":"Rectángulo con esquinas redondeadas","SSE.Controllers.Main.txtShape_rtTriangle":"Triángulo rectángulo","SSE.Controllers.Main.txtShape_smileyFace":"Cara sonriente","SSE.Controllers.Main.txtShape_snip1Rect":"Rectángulo de esquina sencilla recortada","SSE.Controllers.Main.txtShape_snip2DiagRect":"Rectángulo de esquina diagonal recortada","SSE.Controllers.Main.txtShape_snip2SameRect":"Rectángulo de esquina recortada del mismo lado","SSE.Controllers.Main.txtShape_snipRoundRect":"Rectángulo de esquina sencilla redondeada y recortada","SSE.Controllers.Main.txtShape_spline":"Curva","SSE.Controllers.Main.txtShape_star10":"Estrella de 10 puntas","SSE.Controllers.Main.txtShape_star12":"Estrella de 12 puntas","SSE.Controllers.Main.txtShape_star16":"Estrella de 16 puntas","SSE.Controllers.Main.txtShape_star24":"Estrella de 24 puntas","SSE.Controllers.Main.txtShape_star32":"Estrella de 32 puntas","SSE.Controllers.Main.txtShape_star4":"Estrella de 4 puntas","SSE.Controllers.Main.txtShape_star5":"Estrella de 5 puntas","SSE.Controllers.Main.txtShape_star6":"Estrella de 6 puntas","SSE.Controllers.Main.txtShape_star7":"Estrella de 7 puntas","SSE.Controllers.Main.txtShape_star8":"Estrella de 8 puntas","SSE.Controllers.Main.txtShape_stripedRightArrow":"Flecha a la derecha con bandas","SSE.Controllers.Main.txtShape_sun":"Sol","SSE.Controllers.Main.txtShape_teardrop":"Lágrima","SSE.Controllers.Main.txtShape_textRect":"Cuadro de texto","SSE.Controllers.Main.txtShape_trapezoid":"Trapecio","SSE.Controllers.Main.txtShape_triangle":"Triángulo","SSE.Controllers.Main.txtShape_upArrow":"Flecha hacia arriba","SSE.Controllers.Main.txtShape_upArrowCallout":"Llamada de flecha hacia arriba","SSE.Controllers.Main.txtShape_upDownArrow":"Flecha hacia arriba y abajo","SSE.Controllers.Main.txtShape_uturnArrow":"Flecha en U","SSE.Controllers.Main.txtShape_verticalScroll":"Pergamino vertical","SSE.Controllers.Main.txtShape_wave":"Onda","SSE.Controllers.Main.txtShape_wedgeEllipseCallout":"Llamada ovalada","SSE.Controllers.Main.txtShape_wedgeRectCallout":"Llamada rectangular","SSE.Controllers.Main.txtShape_wedgeRoundRectCallout":"Llamada rectangular redondeada","SSE.Controllers.Main.txtSheet":"Hoja","SSE.Controllers.Main.txtSlicer":"Segmentación de datos","SSE.Controllers.Main.txtSolverLookingSolution":"Solver está buscando una solución.","SSE.Controllers.Main.txtStarsRibbons":"Cintas y estrellas","SSE.Controllers.Main.txtStyle_Bad":"Malo","SSE.Controllers.Main.txtStyle_Calculation":"Cálculo","SSE.Controllers.Main.txtStyle_Check_Cell":"Celda de control","SSE.Controllers.Main.txtStyle_Comma":"Financiero","SSE.Controllers.Main.txtStyle_Currency":"Moneda","SSE.Controllers.Main.txtStyle_Explanatory_Text":"Texto explicativo","SSE.Controllers.Main.txtStyle_Good":"Bueno","SSE.Controllers.Main.txtStyle_Heading_1":"Título 1","SSE.Controllers.Main.txtStyle_Heading_2":"Título 2","SSE.Controllers.Main.txtStyle_Heading_3":"Título 3","SSE.Controllers.Main.txtStyle_Heading_4":"Título 4","SSE.Controllers.Main.txtStyle_Input":"Entrada","SSE.Controllers.Main.txtStyle_Linked_Cell":"Celda enlazada","SSE.Controllers.Main.txtStyle_Neutral":"Neutral","SSE.Controllers.Main.txtStyle_Normal":"Normal","SSE.Controllers.Main.txtStyle_Note":"Nota","SSE.Controllers.Main.txtStyle_Output":"Salida","SSE.Controllers.Main.txtStyle_Percent":"Por ciento","SSE.Controllers.Main.txtStyle_Title":"Título","SSE.Controllers.Main.txtStyle_Total":"Total","SSE.Controllers.Main.txtStyle_Warning_Text":"Texto de advertencia","SSE.Controllers.Main.txtTab":"Tabulador","SSE.Controllers.Main.txtTable":"Tabla","SSE.Controllers.Main.txtTime":"Hora","SSE.Controllers.Main.txtUnlock":"Desbloquear","SSE.Controllers.Main.txtUnlockRange":"Desbloquear rango","SSE.Controllers.Main.txtUnlockRangeDescription":"Introduzca la contraseña para cambiar este rango:","SSE.Controllers.Main.txtUnlockRangeWarning":"Un rango que está tratando de cambiar está protegido por contraseña.","SSE.Controllers.Main.txtValues":"Valores","SSE.Controllers.Main.txtView":"Vista","SSE.Controllers.Main.txtXAxis":"Eje X","SSE.Controllers.Main.txtYAxis":"Eje Y","SSE.Controllers.Main.txtYears":"Años","SSE.Controllers.Main.unknownErrorText":"Error desconocido.","SSE.Controllers.Main.unsupportedBrowserErrorText":"Su navegador no es compatible.","SSE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconocido","SSE.Controllers.Main.uploadDocFileCountMessage":"No hay documentos subidos","SSE.Controllers.Main.uploadDocSizeMessage":"Límite de tamaño máximo del documento excedido.","SSE.Controllers.Main.uploadImageExtMessage":"Formato de imagen desconocido.","SSE.Controllers.Main.uploadImageFileCountMessage":"No hay imágenes subidas.","SSE.Controllers.Main.uploadImageSizeMessage":"La imagen es demasiado grande. El tamaño máximo es de 25 MB.","SSE.Controllers.Main.uploadImageTextText":"Subiendo imagen...","SSE.Controllers.Main.uploadImageTitleText":"Subir imagen","SSE.Controllers.Main.waitText":"Por favor, espere...","SSE.Controllers.Main.warnBrowserIE9":"Esta aplicación tiene bajas capacidades en IE9. Utilice IE10 o superior","SSE.Controllers.Main.warnBrowserZoom":"La configuración actual de 'zoom' de su navegador no es compatible por completo. Por favor, restablezca el 'zoom' predeterminado pulsando Ctrl+0.","SSE.Controllers.Main.warnExternalChartProtected":"Este gráfico se basa en los datos de un archivo externo. En esta ventana, sólo puede seleccionar los datos que se mostrarán en el gráfico. Para editar la hoja de cálculo, ábrala en el editor de hojas de cálculo.","SSE.Controllers.Main.warnLicenseAnonymous":"Acceso denegado a usuarios anónimos.
Este documento se abrirá solo para su visualización.","SSE.Controllers.Main.warnLicenseBefore":"Licencia no activa.
Por favor, póngase en contacto con su administrador.","SSE.Controllers.Main.warnLicenseExp":"Su licencia ha expirado.
Por favor, actualice su licencia y recargue la página.","SSE.Controllers.Main.warnLicenseLimitedNoAccess":"Licencia expirada.
No tiene acceso a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador.","SSE.Controllers.Main.warnLicenseLimitedRenewed":"Se requiere que renueve su licencia.
Tiene un acceso limitado a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador para obtener un acceso completo","SSE.Controllers.Main.warnModifyFilter":"Está en un modo en el que los filtros son visibles solo para usted y no se guardan. No puede añadir ni eliminar filtros.
Para guardar la vista actual, utilice Vista de hoja en la pestaña Vista.","SSE.Controllers.Main.warnNoLicense":"Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá en modo de solo lectura.
Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.","SSE.Controllers.Main.warnNoLicenseUsers":"Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.","SSE.Controllers.Main.warnOpenCsv":"El formato CSV no permite guardar un archivo de varias hojas, ni ningún elemento excepto el texto.
Solo se guardará la hoja activa.","SSE.Controllers.Main.warnProcessRightsChange":"Se le ha denegado el permiso para editar este archivo.","SSE.Controllers.PivotTable.strSheet":"Hoja","SSE.Controllers.PivotTable.txtCalculatedItemInPageField":"El elemento no se puede añadir ni modificar. El informe de la tabla dinámica tiene este campo en Filtros.","SSE.Controllers.PivotTable.txtCalculatedItemWarningDefault":"No se permiten acciones con elementos calculados para esta celda activa.","SSE.Controllers.PivotTable.txtNotUniqueFieldWithCalculated":"Si una o más tablas dinámicas tienen elementos calculados, no se pueden utilizar campos en el área de datos dos o más veces, o en el área de datos y en otra área al mismo tiempo.","SSE.Controllers.PivotTable.txtPivotFieldCustomSubtotalsWithCalculatedItems":"Los elementos calculados no funcionan con subtotales personalizados.","SSE.Controllers.PivotTable.txtPivotItemNameNotFound":"No se puede encontrar el nombre de un elemento. Compruebe que ha escrito el nombre correctamente y que el elemento está presente en el informe de la tabla dinámica.","SSE.Controllers.PivotTable.txtWrongDataFieldSubtotalForCalculatedItems":"Los promedios, las desviaciones estándar y las desviaciones no son compatibles cuando un informe de la tabla dinámica tiene elementos calculados.","SSE.Controllers.Print.strAllSheets":"Todas las hojas","SSE.Controllers.Print.textFirstCol":"Primera columna","SSE.Controllers.Print.textFirstRow":"Primera fila","SSE.Controllers.Print.textFrozenCols":"Columnas congeladas","SSE.Controllers.Print.textFrozenRows":"Filas congeladas","SSE.Controllers.Print.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Controllers.Print.textNoRepeat":"No repetir","SSE.Controllers.Print.textRepeat":"Repetir...","SSE.Controllers.Print.textSelectRange":"Seleccionar rango","SSE.Controllers.Print.txtCustom":"Personalizado","SSE.Controllers.Print.txtZoomToPage":"Ampliar a la página","SSE.Controllers.Search.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Controllers.Search.textNoTextFound":"No se pueden encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","SSE.Controllers.Search.textReplaceSkipped":"Se ha realizado el reemplazo. Se han omitido {0} coincidencias.","SSE.Controllers.Search.textReplaceSuccess":"Se ha realizado la búsqueda. Se han sustituido {0} coincidencias.","SSE.Controllers.Statusbar.errNameExists":"Hoja con tal nombre ya existe","SSE.Controllers.Statusbar.errorLastSheet":"Un libro debe contener al menos una hoja visible.","SSE.Controllers.Statusbar.errorRemoveSheet":"Imposible borrar la hoja.","SSE.Controllers.Statusbar.errSheetNameRules":"Ha escrito un nombre de hoja no válido:
- Un nombre de hoja no puede estar vacío.
- Un nombre de hoja no puede contener los siguientes caracteres: \\ / * ? [ ] : o el carácter ' como primer o último carácter.","SSE.Controllers.Statusbar.strSheet":"Hoja","SSE.Controllers.Statusbar.textContinue":"Continuar","SSE.Controllers.Statusbar.textDisconnect":"Se ha perdido la conexión
Intentando conectar. Compruebe la configuración de la conexión.","SSE.Controllers.Statusbar.textSheetViewTip":"Está en el modo Vista de Hoja. Los filtros y la ordenación son visibles solo para usted y aquellos que aún están en esta vista.","SSE.Controllers.Statusbar.textSheetViewTipFilters":"Está en el modo de vista de hoja. Los filtros solo los puede ver usted y los que aún están en esta vista.","SSE.Controllers.Statusbar.warnAddSheetCsv":"El formato CSV no permite guardar un archivo de varias hojas. Solo se guardará la hoja activa. Para mantener todas las hojas, guarde el archivo en un formato diferente.","SSE.Controllers.Statusbar.warnDeleteSheet":"Las hojas seleccionadas pueden contener datos. ¿Está seguro de que quiere proceder?","SSE.Controllers.Statusbar.zoomText":"Ampliación {0}%","SSE.Controllers.TableDesignTab.notcriticalErrorTitle":"Advertencia","SSE.Controllers.TableDesignTab.textExistName":"¡ERROR! Ya existe un rango con tal nombre","SSE.Controllers.TableDesignTab.textInvalidName":"¡ERROR! El nombre de la tabla es inválido","SSE.Controllers.TableDesignTab.textIsLocked":"Este elemento lo está editando otro usuario.","SSE.Controllers.TableDesignTab.textLongOperation":"Operación larga","SSE.Controllers.TableDesignTab.textReservedName":"El nombre que está tratando de usar ya se hace referencia en las fórmulas de la celda. Por favor seleccione otro nombre.","SSE.Controllers.TableDesignTab.textResize":"Tamaño de la tabla","SSE.Controllers.TableDesignTab.warnLongOperation":"La operación que está a punto de realizar podría tomar mucho tiempo para completar.
¿Está seguro que desea continuar?","SSE.Controllers.Toolbar.confirmAddFontName":"El tipo de letra que usted va a guardar no está disponible en este dispositivo.
El estilo de letra se mostrará usando uno de los tipos de letra del sistema, el tipo de letra guardado va a usarse cuando esté disponible.
¿Desea continuar?","SSE.Controllers.Toolbar.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","SSE.Controllers.Toolbar.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Controllers.Toolbar.errorMaxRows":"¡ERROR! El número máximo de series de datos por gráfico es 225","SSE.Controllers.Toolbar.errorStockChart":"Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Controllers.Toolbar.helpChartElements":"Cambie fácilmente la visibilidad de los elementos del gráfico con unos pocos clics.","SSE.Controllers.Toolbar.helpChartElementsHeader":"Visualización de elementos del gráfico","SSE.Controllers.Toolbar.helpCommentFilter":"Gestione su vista alternando entre comentarios abiertos y resueltos en el panel izquierdo.","SSE.Controllers.Toolbar.helpCommentFilterHeader":"Filtros de comentarios","SSE.Controllers.Toolbar.helpRtlDir":"Ajuste la dirección del texto de las celdas para alinearlo con sus necesidades de contenido.","SSE.Controllers.Toolbar.helpRtlDirHeader":"Dirección del texto de la celda","SSE.Controllers.Toolbar.helpTableTab":"Acceda cómodamente a todos los ajustes de formato de tabla en la pestaña dedicada Diseño de tabla.","SSE.Controllers.Toolbar.helpTableTabHeader":"Pestaña Diseño de tabla","SSE.Controllers.Toolbar.textAccent":"Acentos","SSE.Controllers.Toolbar.textBracket":"Corchetes","SSE.Controllers.Toolbar.textDirectional":"Direccional","SSE.Controllers.Toolbar.textFontSizeErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico entre 1 y 409","SSE.Controllers.Toolbar.textFraction":"Fracciones","SSE.Controllers.Toolbar.textFunction":"Funciones","SSE.Controllers.Toolbar.textIndicator":"Hitos","SSE.Controllers.Toolbar.textInsert":"Insertar","SSE.Controllers.Toolbar.textIntegral":"Integrales","SSE.Controllers.Toolbar.textLargeOperator":"Operadores grandes","SSE.Controllers.Toolbar.textLimitAndLog":"Límites y logaritmos","SSE.Controllers.Toolbar.textLongOperation":"Operación larga","SSE.Controllers.Toolbar.textMatrix":"Matrices","SSE.Controllers.Toolbar.textOperator":"Operadores","SSE.Controllers.Toolbar.textPivot":"Tabla dinámica","SSE.Controllers.Toolbar.textRadical":"Radicales","SSE.Controllers.Toolbar.textRating":"Clasificaciones","SSE.Controllers.Toolbar.textRecentlyUsed":"Usados recientemente","SSE.Controllers.Toolbar.textScript":"Índices","SSE.Controllers.Toolbar.textShapes":"Formas","SSE.Controllers.Toolbar.textSymbols":"Símbolos","SSE.Controllers.Toolbar.textWarning":"Aviso","SSE.Controllers.Toolbar.txtAccent_Accent":"Agudo","SSE.Controllers.Toolbar.txtAccent_ArrowD":"Flecha derecha-izquierda superior","SSE.Controllers.Toolbar.txtAccent_ArrowL":"Flecha superior izquierda","SSE.Controllers.Toolbar.txtAccent_ArrowR":"Flecha superior derecha","SSE.Controllers.Toolbar.txtAccent_Bar":"Barra","SSE.Controllers.Toolbar.txtAccent_BarBot":"Barra subyacente","SSE.Controllers.Toolbar.txtAccent_BarTop":"Barra superpuesta","SSE.Controllers.Toolbar.txtAccent_BorderBox":"Fórmula encuadrada (con marcador de posición)","SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"Fórmula encuadrada (ejemplo)","SSE.Controllers.Toolbar.txtAccent_Check":"Comprobar","SSE.Controllers.Toolbar.txtAccent_CurveBracketBot":"Llave subyacente","SSE.Controllers.Toolbar.txtAccent_CurveBracketTop":"Llave superpuesta","SSE.Controllers.Toolbar.txtAccent_Custom_1":"Vector A","SSE.Controllers.Toolbar.txtAccent_Custom_2":"ABC con barra superpuesta","SSE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y con barra superpuesta","SSE.Controllers.Toolbar.txtAccent_DDDot":"Tres puntos","SSE.Controllers.Toolbar.txtAccent_DDot":"Dos puntos","SSE.Controllers.Toolbar.txtAccent_Dot":"Punto","SSE.Controllers.Toolbar.txtAccent_DoubleBar":"Barra doble superpuesta","SSE.Controllers.Toolbar.txtAccent_Grave":"Acento grave","SSE.Controllers.Toolbar.txtAccent_GroupBot":"Carácter de agrupación inferior","SSE.Controllers.Toolbar.txtAccent_GroupTop":"Carácter de agrupación superior","SSE.Controllers.Toolbar.txtAccent_HarpoonL":"Arpón superior hacia la izquierda","SSE.Controllers.Toolbar.txtAccent_HarpoonR":"Arpón superior hacia la derecha","SSE.Controllers.Toolbar.txtAccent_Hat":"Circunflejo","SSE.Controllers.Toolbar.txtAccent_Smile":"Acento breve","SSE.Controllers.Toolbar.txtAccent_Tilde":"Virgulilla","SSE.Controllers.Toolbar.txtBracket_Angle":"Corchetes angulares","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"Corchetes angulares con separador","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"Corchetes angulares con dos separadores","SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"Corchete angular de cierre","SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"Corchete angular de apertura","SSE.Controllers.Toolbar.txtBracket_Curve":"Llaves","SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"Llaves con separador","SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"Llave de cierre","SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"Llave de apertura","SSE.Controllers.Toolbar.txtBracket_Custom_1":"Casos (dos condiciones)","SSE.Controllers.Toolbar.txtBracket_Custom_2":"Casos (tres condiciones)","SSE.Controllers.Toolbar.txtBracket_Custom_3":"Objeto de pila","SSE.Controllers.Toolbar.txtBracket_Custom_4":"Objeto acotado entre paréntesis","SSE.Controllers.Toolbar.txtBracket_Custom_5":"Ejemplo de casos","SSE.Controllers.Toolbar.txtBracket_Custom_6":"Coeficiente de binomio","SSE.Controllers.Toolbar.txtBracket_Custom_7":"Coeficiente binomial en corchetes angulares","SSE.Controllers.Toolbar.txtBracket_Line":"Plecas","SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"Pleca de cierre","SSE.Controllers.Toolbar.txtBracket_Line_OpenNone":"Pleca de apertura","SSE.Controllers.Toolbar.txtBracket_LineDouble":"Plecas dobles","SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"Pleca doble de cierre","SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"Pleca doble de apertura","SSE.Controllers.Toolbar.txtBracket_LowLim":"Corchete inferior","SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"Corchete inferior de cierre","SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"Corchete inferior de apertura","SSE.Controllers.Toolbar.txtBracket_Round":"Paréntesis","SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"Paréntesis con separador","SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"Paréntesis de cierre","SSE.Controllers.Toolbar.txtBracket_Round_OpenNone":"Paréntesis de apertura","SSE.Controllers.Toolbar.txtBracket_Square":"Corchetes","SSE.Controllers.Toolbar.txtBracket_Square_CloseClose":"Marcador de posición entre dos corchetes de cierre","SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"Corchetes invertidos","SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"Corchete de cierre","SSE.Controllers.Toolbar.txtBracket_Square_OpenNone":"Corchete de apertura","SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"Marcador de posición entre dos corchetes de apertura","SSE.Controllers.Toolbar.txtBracket_SquareDouble":"Corchetes dobles","SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"Corchete doble de cierre","SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"Corchete doble de apertura","SSE.Controllers.Toolbar.txtBracket_UppLim":"Corchete de techo","SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"Corchete de techo de cierre","SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"Corchete de techo de apertura","SSE.Controllers.Toolbar.txtDeleteCells":"Eliminar celdas","SSE.Controllers.Toolbar.txtExpand":"Expandir y ordenar","SSE.Controllers.Toolbar.txtExpandSort":"Los datos al lado del rango seleccionado no serán ordenados. ¿Quiere Usted expandir el rango seleccionado para incluir datos de las celdas adyacentes o continuar ordenación del rango seleccionado?","SSE.Controllers.Toolbar.txtFractionDiagonal":"Fracción sesgada","SSE.Controllers.Toolbar.txtFractionDifferential_1":"dx sobre dy","SSE.Controllers.Toolbar.txtFractionDifferential_2":"Delta mayúscula y sobre delta mayúscula x","SSE.Controllers.Toolbar.txtFractionDifferential_3":"y parcial sobre x parcial","SSE.Controllers.Toolbar.txtFractionDifferential_4":"Delta y sobre delta x","SSE.Controllers.Toolbar.txtFractionHorizontal":"Fracción lineal","SSE.Controllers.Toolbar.txtFractionPi_2":"Pi dividir a 2","SSE.Controllers.Toolbar.txtFractionSmall":"Fracción pequeña","SSE.Controllers.Toolbar.txtFractionVertical":"Fracción apilada","SSE.Controllers.Toolbar.txtFunction_1_Cos":"Función de coseno inversa","SSE.Controllers.Toolbar.txtFunction_1_Cosh":"Función de coseno inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Cot":"Función de cotangente inversa","SSE.Controllers.Toolbar.txtFunction_1_Coth":"Función de cotangente inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Csc":"Función de cosecante inversa","SSE.Controllers.Toolbar.txtFunction_1_Csch":"Función de cosecante inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Sec":"Función de secante inversa","SSE.Controllers.Toolbar.txtFunction_1_Sech":"Función de secante inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Sin":"Función de seno inversa","SSE.Controllers.Toolbar.txtFunction_1_Sinh":"Función de seno inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Tan":"Función de tangente inversa","SSE.Controllers.Toolbar.txtFunction_1_Tanh":"Función de tangente inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_Cos":"Función de coseno","SSE.Controllers.Toolbar.txtFunction_Cosh":"Función de coseno hiperbólica","SSE.Controllers.Toolbar.txtFunction_Cot":"Función de cotangente","SSE.Controllers.Toolbar.txtFunction_Coth":"Función de cotangente hiperbólica","SSE.Controllers.Toolbar.txtFunction_Csc":"Función de cosecante","SSE.Controllers.Toolbar.txtFunction_Csch":"Función de cosecante hiperbólica","SSE.Controllers.Toolbar.txtFunction_Custom_1":"Seno zeta","SSE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","SSE.Controllers.Toolbar.txtFunction_Custom_3":"Fórmula de tangente","SSE.Controllers.Toolbar.txtFunction_Sec":"Función de secante","SSE.Controllers.Toolbar.txtFunction_Sech":"Función de secante hiperbólica","SSE.Controllers.Toolbar.txtFunction_Sin":"Función de seno","SSE.Controllers.Toolbar.txtFunction_Sinh":"Función de seno hiperbólica","SSE.Controllers.Toolbar.txtFunction_Tan":"Función de tangente","SSE.Controllers.Toolbar.txtFunction_Tanh":"Función de tangente hiperbólica","SSE.Controllers.Toolbar.txtGroupCell_Custom":"Personalizado","SSE.Controllers.Toolbar.txtGroupCell_DataAndModel":"Datos y modelo","SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral":"Correcto, incorrecto y neutro","SSE.Controllers.Toolbar.txtGroupCell_NoName":"Sin nombre","SSE.Controllers.Toolbar.txtGroupCell_NumberFormat":"Formato de número","SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles":"Estilos de celda temáticos","SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings":"Títulos y encabezados","SSE.Controllers.Toolbar.txtGroupTable_Custom":"Personalizado","SSE.Controllers.Toolbar.txtGroupTable_Dark":"Oscuro","SSE.Controllers.Toolbar.txtGroupTable_Light":"Claro","SSE.Controllers.Toolbar.txtGroupTable_Medium":"Medio","SSE.Controllers.Toolbar.txtInsertCells":"Insertar celdas","SSE.Controllers.Toolbar.txtIntegral":"Integral","SSE.Controllers.Toolbar.txtIntegral_dtheta":"Diferencial zeta","SSE.Controllers.Toolbar.txtIntegral_dx":"Diferencial x","SSE.Controllers.Toolbar.txtIntegral_dy":"Diferencial y","SSE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral con límites acotados","SSE.Controllers.Toolbar.txtIntegralDouble":"Integral doble","SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Integral doble con límites acotados","SSE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Integral doble con límites","SSE.Controllers.Toolbar.txtIntegralOriented":"Integral de contorno","SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"Integral de contorno con límites acotados","SSE.Controllers.Toolbar.txtIntegralOrientedDouble":"Integral de superficie","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Integral de superficie con límites acotados","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"Integral de superficie con límites","SSE.Controllers.Toolbar.txtIntegralOrientedSubSup":"Integral de contorno con límites","SSE.Controllers.Toolbar.txtIntegralOrientedTriple":"Integral de volumen","SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"Integral de volumen con límites acotados","SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"Integral de volumen con límites","SSE.Controllers.Toolbar.txtIntegralSubSup":"Integral con límites","SSE.Controllers.Toolbar.txtIntegralTriple":"Integral triple","SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Integral triple con límites acotados","SSE.Controllers.Toolbar.txtIntegralTripleSubSup":"Integral triple con límites","SSE.Controllers.Toolbar.txtInvalidRange":"¡Error! El rango de las celdas no es válido","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Y lógico","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Y lógico con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Y lógico con límites","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Y lógico con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Y lógico con límites de subíndice/supraíndice","SSE.Controllers.Toolbar.txtLargeOperator_CoProd":"Co-producto","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Coproducto con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Coproducto con límites","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Coproducto con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Coproducto con límites de subíndice/supraíndice","SSE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Sumatoria sobre k de n sobre k","SSE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Sumatoria de i igual a cero a n","SSE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Ejemplo de suma con dos índices","SSE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Ejemplo del producto","SSE.Controllers.Toolbar.txtLargeOperator_Custom_5":"Ejemplo de unión","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction":"O lógico","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"O lógico con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"O lógico con límites","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"O lógico con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"O lógico con límites de subíndice/supraíndice","SSE.Controllers.Toolbar.txtLargeOperator_Intersection":"Intersección","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"Intersección con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"Intersección con límites","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"Intersección con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"Intersección con límites de subíndice/superíndice","SSE.Controllers.Toolbar.txtLargeOperator_Prod":"Producto","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Producto con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Producto con límites","SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Producto con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Producto con límites de subíndice/superíndice","SSE.Controllers.Toolbar.txtLargeOperator_Sum":"Suma","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Sumatoria con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Sumatoria con límites","SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Sumatoria con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Sumatoria con límites de subíndice/supraíndice","SSE.Controllers.Toolbar.txtLargeOperator_Union":"Unión","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"Unión con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"Unión con límites","SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"Unión con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"Unión con límites de subíndice/superíndice","SSE.Controllers.Toolbar.txtLimitLog_Custom_1":"Ejemplo de límite","SSE.Controllers.Toolbar.txtLimitLog_Custom_2":"Ejemplo de máximo","SSE.Controllers.Toolbar.txtLimitLog_Lim":"Límite","SSE.Controllers.Toolbar.txtLimitLog_Ln":"Logaritmo natural","SSE.Controllers.Toolbar.txtLimitLog_Log":"Logaritmo","SSE.Controllers.Toolbar.txtLimitLog_LogBase":"Logaritmo","SSE.Controllers.Toolbar.txtLimitLog_Max":"Máximo","SSE.Controllers.Toolbar.txtLimitLog_Min":"Mínimo","SSE.Controllers.Toolbar.txtLockSort":"Se encuentran datos junto a su selección, pero no tiene permisos suficientes para modificar esas celdas.
¿Desea continuar con la selección actual?","SSE.Controllers.Toolbar.txtMatrix_1_2":"Matriz vacía de 1x2","SSE.Controllers.Toolbar.txtMatrix_1_3":"Matriz vacía de 1x3","SSE.Controllers.Toolbar.txtMatrix_2_1":"Matriz vacía de 2x1","SSE.Controllers.Toolbar.txtMatrix_2_2":"Matriz vacía de 2x2","SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"Matriz de 2 por 2 vacía entre plecas dobles","SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"Determinante de 2 por 2 vacío","SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"Matriz de 2 por 2 vacía entre paréntesis","SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"Matriz de 2 por 2 vacía entre paréntesis","SSE.Controllers.Toolbar.txtMatrix_2_3":"Matriz vacía de 2x3","SSE.Controllers.Toolbar.txtMatrix_3_1":"Matriz vacía de 3x1","SSE.Controllers.Toolbar.txtMatrix_3_2":"Matriz vacía de 3x2","SSE.Controllers.Toolbar.txtMatrix_3_3":"Matriz vacía de 3x3","SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"Puntos en línea base","SSE.Controllers.Toolbar.txtMatrix_Dots_Center":"Puntos en línea media","SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"Puntos diagonales","SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"Puntos verticales","SSE.Controllers.Toolbar.txtMatrix_Flat_Round":"Matriz dispersa entre paréntesis","SSE.Controllers.Toolbar.txtMatrix_Flat_Square":"Matriz dispersa entre corchetes","SSE.Controllers.Toolbar.txtMatrix_Identity_2":"Matriz de identidad de 2x2 con ceros","SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"Matriz de identidad de 2x2 con celdas en blanco que no están en la diagonal","SSE.Controllers.Toolbar.txtMatrix_Identity_3":"Matriz de identidad de 3x3 con ceros","SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"Matriz de identidad de 3x3 con celdas en blanco que no están en la diagonal","SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"Flecha derecha-izquierda inferior","SSE.Controllers.Toolbar.txtOperator_ArrowD_Top":"Flecha derecha-izquierda superior","SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"Flecha inferior izquierda","SSE.Controllers.Toolbar.txtOperator_ArrowL_Top":"Flecha superior izquierda","SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"Flecha inferior derecha","SSE.Controllers.Toolbar.txtOperator_ArrowR_Top":"Flecha superior derecha","SSE.Controllers.Toolbar.txtOperator_ColonEquals":"Dos puntos igual","SSE.Controllers.Toolbar.txtOperator_Custom_1":"Produce","SSE.Controllers.Toolbar.txtOperator_Custom_2":"Produce con delta","SSE.Controllers.Toolbar.txtOperator_Definition":"Igual por definición","SSE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta igual a","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"Flecha doble inferior derecha e izquierda","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"Flecha doble superior derecha e izquierda","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"Flecha inferior izquierda","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"Flecha superior izquierda","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"Flecha inferior derecha","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"Flecha superior derecha","SSE.Controllers.Toolbar.txtOperator_EqualsEquals":"Igual igual","SSE.Controllers.Toolbar.txtOperator_MinusEquals":"Menos igual","SSE.Controllers.Toolbar.txtOperator_PlusEquals":"Más igual","SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"Unidad de medida","SSE.Controllers.Toolbar.txtRadicalCustom_1":"Lado derecho de la fórmula cuadrática","SSE.Controllers.Toolbar.txtRadicalCustom_2":"Raíz cuadrada de un cuadrado más b al cuadrado","SSE.Controllers.Toolbar.txtRadicalRoot_2":"Raíz cuadrada con índice","SSE.Controllers.Toolbar.txtRadicalRoot_3":"Raíz cúbica","SSE.Controllers.Toolbar.txtRadicalRoot_n":"Radical con índice","SSE.Controllers.Toolbar.txtRadicalSqrt":"Raíz cuadrada","SSE.Controllers.Toolbar.txtScriptCustom_1":"x subíndice y al cuadrado","SSE.Controllers.Toolbar.txtScriptCustom_2":"e elevado a menos i omega t","SSE.Controllers.Toolbar.txtScriptCustom_3":"x al cuadrado","SSE.Controllers.Toolbar.txtScriptCustom_4":"Y superíndice izquierdo n subíndice izquierdo uno","SSE.Controllers.Toolbar.txtScriptSub":"Subíndice","SSE.Controllers.Toolbar.txtScriptSubSup":"Subíndice-Superíndice","SSE.Controllers.Toolbar.txtScriptSubSupLeft":"Subíndice-superíndice izquierdo","SSE.Controllers.Toolbar.txtScriptSup":"Sobreíndice","SSE.Controllers.Toolbar.txtSorting":"Ordenación","SSE.Controllers.Toolbar.txtSortSelected":"Ordenar los objetos seleccionados","SSE.Controllers.Toolbar.txtSymbol_about":"Aproximadamente","SSE.Controllers.Toolbar.txtSymbol_additional":"Complemento","SSE.Controllers.Toolbar.txtSymbol_aleph":"Alef","SSE.Controllers.Toolbar.txtSymbol_alpha":"Alfa","SSE.Controllers.Toolbar.txtSymbol_approx":"Casi igual a","SSE.Controllers.Toolbar.txtSymbol_ast":"Operador asterisco","SSE.Controllers.Toolbar.txtSymbol_beta":"Beta","SSE.Controllers.Toolbar.txtSymbol_beth":"Bet","SSE.Controllers.Toolbar.txtSymbol_bullet":"Operador de viñeta","SSE.Controllers.Toolbar.txtSymbol_cap":"Intersección","SSE.Controllers.Toolbar.txtSymbol_cbrt":"Raíz cúbica","SSE.Controllers.Toolbar.txtSymbol_cdots":"Elipsis horizontal de línea media","SSE.Controllers.Toolbar.txtSymbol_celsius":"Grados Celsius","SSE.Controllers.Toolbar.txtSymbol_chi":"Chi","SSE.Controllers.Toolbar.txtSymbol_cong":"Aproximadamente igual a","SSE.Controllers.Toolbar.txtSymbol_cup":"Unión","SSE.Controllers.Toolbar.txtSymbol_ddots":"Elipsis en diagonal de derecha a izquierda","SSE.Controllers.Toolbar.txtSymbol_degree":"Grados","SSE.Controllers.Toolbar.txtSymbol_delta":"Delta","SSE.Controllers.Toolbar.txtSymbol_div":"Signe de division","SSE.Controllers.Toolbar.txtSymbol_downarrow":"Flecha hacia abajo","SSE.Controllers.Toolbar.txtSymbol_emptyset":"Conjunto vacío","SSE.Controllers.Toolbar.txtSymbol_epsilon":"Épsilon","SSE.Controllers.Toolbar.txtSymbol_equals":"Igual","SSE.Controllers.Toolbar.txtSymbol_equiv":"Idéntico a","SSE.Controllers.Toolbar.txtSymbol_eta":"Eta","SSE.Controllers.Toolbar.txtSymbol_exists":"Existe","SSE.Controllers.Toolbar.txtSymbol_factorial":"Factorial","SSE.Controllers.Toolbar.txtSymbol_fahrenheit":"Grados Fahrenheit","SSE.Controllers.Toolbar.txtSymbol_forall":"Para todos","SSE.Controllers.Toolbar.txtSymbol_gamma":"Gamma","SSE.Controllers.Toolbar.txtSymbol_geq":"Mayor o igual a","SSE.Controllers.Toolbar.txtSymbol_gg":"Mucho mayor que","SSE.Controllers.Toolbar.txtSymbol_greater":"Mayor que","SSE.Controllers.Toolbar.txtSymbol_in":"Elemento de","SSE.Controllers.Toolbar.txtSymbol_inc":"Incremento","SSE.Controllers.Toolbar.txtSymbol_infinity":"Infinito","SSE.Controllers.Toolbar.txtSymbol_iota":"Iota","SSE.Controllers.Toolbar.txtSymbol_kappa":"Kappa","SSE.Controllers.Toolbar.txtSymbol_lambda":"Lambda","SSE.Controllers.Toolbar.txtSymbol_leftarrow":"Flecha izquierda","SSE.Controllers.Toolbar.txtSymbol_leftrightarrow":"Flecha izquierda-derecha","SSE.Controllers.Toolbar.txtSymbol_leq":"Menor o igual a","SSE.Controllers.Toolbar.txtSymbol_less":"Menor que","SSE.Controllers.Toolbar.txtSymbol_ll":"Mucho menor que","SSE.Controllers.Toolbar.txtSymbol_minus":"Menos","SSE.Controllers.Toolbar.txtSymbol_mp":"Menos más","SSE.Controllers.Toolbar.txtSymbol_mu":"Mi","SSE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","SSE.Controllers.Toolbar.txtSymbol_neq":"No igual a","SSE.Controllers.Toolbar.txtSymbol_ni":"Contiene como miembro","SSE.Controllers.Toolbar.txtSymbol_not":"Signo de negación","SSE.Controllers.Toolbar.txtSymbol_notexists":"No existe","SSE.Controllers.Toolbar.txtSymbol_nu":"Ni","SSE.Controllers.Toolbar.txtSymbol_o":"Ómicron","SSE.Controllers.Toolbar.txtSymbol_omega":"Omega","SSE.Controllers.Toolbar.txtSymbol_partial":"Derivada parcial","SSE.Controllers.Toolbar.txtSymbol_percent":"Porcentaje","SSE.Controllers.Toolbar.txtSymbol_phi":"Fi","SSE.Controllers.Toolbar.txtSymbol_pi":"Pi","SSE.Controllers.Toolbar.txtSymbol_plus":"Más","SSE.Controllers.Toolbar.txtSymbol_pm":"Más menos","SSE.Controllers.Toolbar.txtSymbol_propto":"Proporcional a","SSE.Controllers.Toolbar.txtSymbol_psi":"Psi","SSE.Controllers.Toolbar.txtSymbol_qdrt":"Raíz cuarta","SSE.Controllers.Toolbar.txtSymbol_qed":"Fin de la demostración","SSE.Controllers.Toolbar.txtSymbol_rddots":"Elipsis en diagonal de izquierda a derecha","SSE.Controllers.Toolbar.txtSymbol_rho":"Ro","SSE.Controllers.Toolbar.txtSymbol_rightarrow":"Flecha derecha","SSE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","SSE.Controllers.Toolbar.txtSymbol_sqrt":"Signo de radical","SSE.Controllers.Toolbar.txtSymbol_tau":"Tau","SSE.Controllers.Toolbar.txtSymbol_therefore":"Por lo tanto ","SSE.Controllers.Toolbar.txtSymbol_theta":"Zeta","SSE.Controllers.Toolbar.txtSymbol_times":"Signo de multiplicación","SSE.Controllers.Toolbar.txtSymbol_uparrow":"Flecha hacia arriba","SSE.Controllers.Toolbar.txtSymbol_upsilon":"Ípsilon","SSE.Controllers.Toolbar.txtSymbol_varepsilon":"Épsilon (variante)","SSE.Controllers.Toolbar.txtSymbol_varphi":"Variante fi","SSE.Controllers.Toolbar.txtSymbol_varpi":"Variante pi","SSE.Controllers.Toolbar.txtSymbol_varrho":"Variante ro","SSE.Controllers.Toolbar.txtSymbol_varsigma":"Variante sigma","SSE.Controllers.Toolbar.txtSymbol_vartheta":"Variante zeta","SSE.Controllers.Toolbar.txtSymbol_vdots":"Elipsis vertical","SSE.Controllers.Toolbar.txtSymbol_xsi":"Csi","SSE.Controllers.Toolbar.txtSymbol_zeta":"Dseda","SSE.Controllers.Toolbar.txtTable_TableStyleDark":"Estilo de tabla oscuro","SSE.Controllers.Toolbar.txtTable_TableStyleLight":"Estilo de tabla claro","SSE.Controllers.Toolbar.txtTable_TableStyleMedium":"Estilo de tabla medio","SSE.Controllers.Toolbar.warnLongOperation":"La operación que está a punto de realizar podría tomar mucho tiempo para completar.
¿Está seguro que desea continuar?","SSE.Controllers.Toolbar.warnMergeLostData":"En la celda unida permanecerán solo los datos de la celda de la esquina superior izquierda.
Está seguro de que quiere continuar?","SSE.Controllers.Toolbar.warnNoRecommended":"Para crear un gráfico, seleccione las celdas que contienen los datos que desea utilizar.
Si tiene nombres para las filas y columnas y desea utilizarlos como etiquetas, inclúyalos en su selección.","SSE.Controllers.Viewport.textFreezePanes":"Inmovilizar paneles","SSE.Controllers.Viewport.textFreezePanesShadow":"Mostrar la sombra de paneles congelados","SSE.Controllers.Viewport.textHideFBar":"Ocultar barra de fórmulas","SSE.Controllers.Viewport.textHideGridlines":"Ocultar cuadrícula","SSE.Controllers.Viewport.textHideHeadings":"Ocultar títulos","SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator":"Separador decimal","SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator":"Separador de miles","SSE.Views.AdvancedSeparatorDialog.textLabel":"Ajustes utilizados para reconocer los datos numéricos","SSE.Views.AdvancedSeparatorDialog.textQualifier":"Calificador de texto","SSE.Views.AdvancedSeparatorDialog.textTitle":"Ajustes avanzados","SSE.Views.AdvancedSeparatorDialog.txtNone":"(ninguno)","SSE.Views.AutoFilterDialog.btnCustomFilter":"Filtro personalizado","SSE.Views.AutoFilterDialog.textAddSelection":"Añadir la selección actual al filtro","SSE.Views.AutoFilterDialog.textEmptyItem":"{Blanks}","SSE.Views.AutoFilterDialog.textSelectAll":"Seleccionar todo","SSE.Views.AutoFilterDialog.textSelectAllResults":"Seleccionar todos los resultados de la búsqueda","SSE.Views.AutoFilterDialog.textWarning":"Aviso","SSE.Views.AutoFilterDialog.txtAboveAve":"Sobre la media","SSE.Views.AutoFilterDialog.txtAfter":"Después...","SSE.Views.AutoFilterDialog.txtAllDatesInThePeriod":"Todas las fechas del período","SSE.Views.AutoFilterDialog.txtApril":"abril","SSE.Views.AutoFilterDialog.txtAugust":"agosto","SSE.Views.AutoFilterDialog.txtBefore":"Antes...","SSE.Views.AutoFilterDialog.txtBegins":"Empieza con...","SSE.Views.AutoFilterDialog.txtBelowAve":"Por debajo de la media","SSE.Views.AutoFilterDialog.txtBetween":"Entre...","SSE.Views.AutoFilterDialog.txtClear":"Eliminar","SSE.Views.AutoFilterDialog.txtContains":"Contiene...","SSE.Views.AutoFilterDialog.txtDateFilter":"Filtro de fechas","SSE.Views.AutoFilterDialog.txtDecember":"diciembre","SSE.Views.AutoFilterDialog.txtEmpty":"Introducir filtro para celda","SSE.Views.AutoFilterDialog.txtEnds":"Termina en...","SSE.Views.AutoFilterDialog.txtEquals":"Igual...","SSE.Views.AutoFilterDialog.txtFebruary":"febrero","SSE.Views.AutoFilterDialog.txtFilterCellColor":"Filtrar por color de celdas","SSE.Views.AutoFilterDialog.txtFilterFontColor":"Filtrar por color de la letra","SSE.Views.AutoFilterDialog.txtGreater":"Mayor qué...","SSE.Views.AutoFilterDialog.txtGreaterEquals":"Mayor qué o igual a...","SSE.Views.AutoFilterDialog.txtJanuary":"enero","SSE.Views.AutoFilterDialog.txtJuly":"julio","SSE.Views.AutoFilterDialog.txtJune":"junio","SSE.Views.AutoFilterDialog.txtLabelFilter":"Filtrar de etiqueta","SSE.Views.AutoFilterDialog.txtLastMonth":"Mes pasado","SSE.Views.AutoFilterDialog.txtLastQuarter":"Trimestre pasado","SSE.Views.AutoFilterDialog.txtLastWeek":"Semana pasada","SSE.Views.AutoFilterDialog.txtLastYear":"Año pasado","SSE.Views.AutoFilterDialog.txtLess":"Menos que...","SSE.Views.AutoFilterDialog.txtLessEquals":"Menos que o igual a...","SSE.Views.AutoFilterDialog.txtMarch":"marzo","SSE.Views.AutoFilterDialog.txtMay":"mayo","SSE.Views.AutoFilterDialog.txtNextMonth":"Mes siguiente","SSE.Views.AutoFilterDialog.txtNextQuarter":"Trimestre siguiente","SSE.Views.AutoFilterDialog.txtNextWeek":"Semana siguiente","SSE.Views.AutoFilterDialog.txtNextYear":"Año siguiente","SSE.Views.AutoFilterDialog.txtNotBegins":"No empieza con...","SSE.Views.AutoFilterDialog.txtNotBetween":"No está entre...","SSE.Views.AutoFilterDialog.txtNotContains":"No contiene...","SSE.Views.AutoFilterDialog.txtNotEnds":"No termina en...","SSE.Views.AutoFilterDialog.txtNotEquals":"No es igual...","SSE.Views.AutoFilterDialog.txtNovember":"noviembre","SSE.Views.AutoFilterDialog.txtNumFilter":"Número de filtro","SSE.Views.AutoFilterDialog.txtOctober":"octubre","SSE.Views.AutoFilterDialog.txtQuarter1":"Trimestre 1","SSE.Views.AutoFilterDialog.txtQuarter2":"Trimestre 2","SSE.Views.AutoFilterDialog.txtQuarter3":"Trimestre 3","SSE.Views.AutoFilterDialog.txtQuarter4":"Trimestre 4","SSE.Views.AutoFilterDialog.txtReapply":"Reaplicar","SSE.Views.AutoFilterDialog.txtSeptember":"septiembre","SSE.Views.AutoFilterDialog.txtSortCellColor":"Ordenar por el color de celdas","SSE.Views.AutoFilterDialog.txtSortFontColor":"Ordenar por color de la letra","SSE.Views.AutoFilterDialog.txtSortHigh2Low":"Ordenar de mayor a menor","SSE.Views.AutoFilterDialog.txtSortLow2High":"Ordenar de menor a mayor","SSE.Views.AutoFilterDialog.txtSortOption":"Más opciones de ordenación...","SSE.Views.AutoFilterDialog.txtTextFilter":"Filtro de Texto","SSE.Views.AutoFilterDialog.txtThisMonth":"Este mes","SSE.Views.AutoFilterDialog.txtThisQuarter":"Este trimestre","SSE.Views.AutoFilterDialog.txtThisWeek":"Esta semana","SSE.Views.AutoFilterDialog.txtThisYear":"Este año","SSE.Views.AutoFilterDialog.txtTitle":"Filtro","SSE.Views.AutoFilterDialog.txtToday":"Hoy","SSE.Views.AutoFilterDialog.txtTomorrow":"Mañana","SSE.Views.AutoFilterDialog.txtTop10":"10 principales","SSE.Views.AutoFilterDialog.txtValueFilter":"Filtro de valor","SSE.Views.AutoFilterDialog.txtYearToDate":"En lo que va del año","SSE.Views.AutoFilterDialog.txtYesterday":"Ayer","SSE.Views.AutoFilterDialog.warnFilterError":"Necesita la menos un campo de en el área «Valores» para aplicar el filtro de valor.","SSE.Views.AutoFilterDialog.warnNoSelected":"Usted debe elegir al menos un valor","SSE.Views.CellEditor.textManager":"Administrador de nombres","SSE.Views.CellEditor.tipFormula":"Insertar función","SSE.Views.CellRangeDialog.errorMaxRows":"¡ERROR! El número máximo de series de datos por gráfico es 225","SSE.Views.CellRangeDialog.errorStockChart":"Orden de las filas incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja de la forma siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Views.CellRangeDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.CellRangeDialog.txtInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.CellRangeDialog.txtTitle":"Seleccionar rango de datos","SSE.Views.CellSettings.strShrink":"Reducir para ajustar","SSE.Views.CellSettings.strWrap":"Ajustar texto","SSE.Views.CellSettings.textAngle":"Ángulo","SSE.Views.CellSettings.textBackColor":"Color del fondo","SSE.Views.CellSettings.textBackground":"Color del fondo","SSE.Views.CellSettings.textBorderColor":"Color","SSE.Views.CellSettings.textBorders":"Estilo de bordes","SSE.Views.CellSettings.textClearRule":"Eliminar reglas","SSE.Views.CellSettings.textColor":"Relleno de color","SSE.Views.CellSettings.textColorScales":"Escalas de color","SSE.Views.CellSettings.textCondFormat":"Formato condicional","SSE.Views.CellSettings.textControl":"Control de texto","SSE.Views.CellSettings.textDataBars":"Barras de datos","SSE.Views.CellSettings.textDirection":"Dirección","SSE.Views.CellSettings.textFill":"Relleno","SSE.Views.CellSettings.textForeground":"Color del primer plano","SSE.Views.CellSettings.textGradient":"Puntos de gradiente","SSE.Views.CellSettings.textGradientColor":"Color","SSE.Views.CellSettings.textGradientFill":"Relleno degradado","SSE.Views.CellSettings.textIndent":"Sangría","SSE.Views.CellSettings.textItems":"Elementos","SSE.Views.CellSettings.textLinear":"Lineal","SSE.Views.CellSettings.textManageRule":"Gestionar reglas","SSE.Views.CellSettings.textNewRule":"Nueva regla","SSE.Views.CellSettings.textNoFill":"Sin relleno","SSE.Views.CellSettings.textOrientation":"Orientación del texto","SSE.Views.CellSettings.textPattern":"Patrón","SSE.Views.CellSettings.textPatternFill":"Patrón","SSE.Views.CellSettings.textPosition":"Posición","SSE.Views.CellSettings.textRadial":"Radial","SSE.Views.CellSettings.textSelectBorders":"Seleccione los bordes que desea cambiar aplicando el estilo seleccionado arriba","SSE.Views.CellSettings.textSelection":"Desde la selección actual","SSE.Views.CellSettings.textThisPivot":"Desde esta tabla pivote","SSE.Views.CellSettings.textThisSheet":"Desde esta hoja","SSE.Views.CellSettings.textThisTable":"Desde esta tabla","SSE.Views.CellSettings.tipAddGradientPoint":"Añadir punto de degradado","SSE.Views.CellSettings.tipAll":"Establecer borde exterior y todas las líneas interiores ","SSE.Views.CellSettings.tipBottom":"Establecer solo borde exterior inferior","SSE.Views.CellSettings.tipDiagD":"Establecer borde diagonal abajo","SSE.Views.CellSettings.tipDiagU":"Establecer borde diagonal hacia arriba","SSE.Views.CellSettings.tipInner":"Establecer solo líneas interiores","SSE.Views.CellSettings.tipInnerHor":"Establecer solo líneas horizontales interiores","SSE.Views.CellSettings.tipInnerVert":"Establecer solo líneas verticales interiores","SSE.Views.CellSettings.tipLeft":"Establecer solo borde exterior izquierdo","SSE.Views.CellSettings.tipNone":"No establecer bordes","SSE.Views.CellSettings.tipOuter":"Establecer solo borde exterior","SSE.Views.CellSettings.tipRemoveGradientPoint":"Eliminar gradiente de punto","SSE.Views.CellSettings.tipRight":"Establecer solo borde exterior derecho","SSE.Views.CellSettings.tipTop":"Establecer solo borde exterior superior","SSE.Views.ChartDataDialog.errorInFormula":"Hay un error en la fórmula introducida.","SSE.Views.ChartDataDialog.errorInvalidReference":"La referencia no es válida. Debe hacer referencia a una hoja abierta.","SSE.Views.ChartDataDialog.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Views.ChartDataDialog.errorMaxRows":"El número máximo de serie de datos por tabla es 255.","SSE.Views.ChartDataDialog.errorNoSingleRowCol":"La referencia no es válida. Las referencias a títulos, valores, tamaños, o etiquetas de datos deben ser una sola celda, fila o columna.","SSE.Views.ChartDataDialog.errorNoValues":"Para crear un gráfico, las series deben contener al menos un valor.","SSE.Views.ChartDataDialog.errorStockChart":"El orden de las filas es incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja en el siguiente orden: precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Views.ChartDataDialog.textAdd":"Añadir","SSE.Views.ChartDataDialog.textCategory":"Etiquetas del eje horizontal (categoría)","SSE.Views.ChartDataDialog.textData":"Rango de datos del gráfico","SSE.Views.ChartDataDialog.textDelete":"Eliminar","SSE.Views.ChartDataDialog.textDown":"Abajo","SSE.Views.ChartDataDialog.textEdit":"Editar","SSE.Views.ChartDataDialog.textInvalidRange":"Rango de celdas no válido","SSE.Views.ChartDataDialog.textSelectData":"Seleccionar datos","SSE.Views.ChartDataDialog.textSeries":"Entradas de leyenda (series)","SSE.Views.ChartDataDialog.textSwitch":"Cambiar fila/columna","SSE.Views.ChartDataDialog.textTitle":"Datos del gráfico","SSE.Views.ChartDataDialog.textUp":"Arriba","SSE.Views.ChartDataRangeDialog.errorInFormula":"Hay un error en la fórmula introducida.","SSE.Views.ChartDataRangeDialog.errorInvalidReference":"La referencia no es válida. Debe hacer referencia a una hoja abierta.","SSE.Views.ChartDataRangeDialog.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Views.ChartDataRangeDialog.errorMaxRows":"El número máximo de serie de datos por tabla es 255.","SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol":"La referencia no es válida. Las referencias a títulos, valores, tamaños, o etiquetas de datos deben ser una sola celda, fila o columna.","SSE.Views.ChartDataRangeDialog.errorNoValues":"Para crear un gráfico, las series deben contener al menos un valor.","SSE.Views.ChartDataRangeDialog.errorStockChart":"El orden de las filas es incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja en el orden siguiente: precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Views.ChartDataRangeDialog.textInvalidRange":"Rango de celdas inválido","SSE.Views.ChartDataRangeDialog.textSelectData":"Seleccionar datos","SSE.Views.ChartDataRangeDialog.txtAxisLabel":"Rango de etiqueta de eje","SSE.Views.ChartDataRangeDialog.txtChoose":"Elegir rango","SSE.Views.ChartDataRangeDialog.txtSeriesName":"Nombre de serie","SSE.Views.ChartDataRangeDialog.txtTitleCategory":"Etiquetas de eje","SSE.Views.ChartDataRangeDialog.txtTitleSeries":"Editar series","SSE.Views.ChartDataRangeDialog.txtValues":"Valores","SSE.Views.ChartDataRangeDialog.txtXValues":"Valores X","SSE.Views.ChartDataRangeDialog.txtYValues":"Valores Y","SSE.Views.ChartSettings.errorMaxRows":"El número máximo de series de datos por gráfico es de 255.","SSE.Views.ChartSettings.strLineWeight":"Grosor de línea","SSE.Views.ChartSettings.strSparkColor":"Color","SSE.Views.ChartSettings.strTemplate":"Plantilla","SSE.Views.ChartSettings.text3dDepth":"Profundidad (% de la base)","SSE.Views.ChartSettings.text3dHeight":"Altura (% de la base)","SSE.Views.ChartSettings.text3dRotation":"Rotación 3D","SSE.Views.ChartSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.ChartSettings.textAutoscale":"Escalado automático","SSE.Views.ChartSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","SSE.Views.ChartSettings.textChangeType":"Cambiar tipo","SSE.Views.ChartSettings.textChartType":"Cambiar tipo de gráfico","SSE.Views.ChartSettings.textDefault":"Rotación por defecto","SSE.Views.ChartSettings.textDown":"Abajo","SSE.Views.ChartSettings.textEditData":"Editar datos y ubicación","SSE.Views.ChartSettings.textFirstPoint":"Primer punto","SSE.Views.ChartSettings.textHeight":"Altura","SSE.Views.ChartSettings.textHighPoint":"Punto alto","SSE.Views.ChartSettings.textKeepRatio":"Proporciones constantes","SSE.Views.ChartSettings.textLastPoint":"Último punto","SSE.Views.ChartSettings.textLeft":"Izquierda","SSE.Views.ChartSettings.textLowPoint":"Punto bajo","SSE.Views.ChartSettings.textMarkers":"Marcadores","SSE.Views.ChartSettings.textNarrow":"Campo de visión estrecho","SSE.Views.ChartSettings.textNegativePoint":"Punto negativo","SSE.Views.ChartSettings.textPerspective":"Perspectiva","SSE.Views.ChartSettings.textRanges":"Rango de datos","SSE.Views.ChartSettings.textRight":"Derecha","SSE.Views.ChartSettings.textRightAngle":"Ejes en ángulo recto","SSE.Views.ChartSettings.textSelectData":"Seleccionar datos","SSE.Views.ChartSettings.textShow":"Mostrar","SSE.Views.ChartSettings.textSize":"Tamaño","SSE.Views.ChartSettings.textStyle":"Estilo","SSE.Views.ChartSettings.textSwitch":"Cambiar Fila/Columna","SSE.Views.ChartSettings.textType":"Tipo","SSE.Views.ChartSettings.textUp":"Arriba","SSE.Views.ChartSettings.textWiden":"Campo de visión ancho","SSE.Views.ChartSettings.textWidth":"Ancho","SSE.Views.ChartSettings.textX":"Rotación X","SSE.Views.ChartSettings.textY":"Rotación Y","SSE.Views.ChartSettingsDlg.errorMaxPoints":"¡ERROR! El número máximo de puntos en serie por gráfico es de 4096","SSE.Views.ChartSettingsDlg.errorMaxRows":"¡ERROR! El número máximo de series de datos por gráfico es 225","SSE.Views.ChartSettingsDlg.errorStockChart":"Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Views.ChartSettingsDlg.textAbsolute":"No mover ni cambiar tamaño con celdas","SSE.Views.ChartSettingsDlg.textAlt":"Texto alternativo","SSE.Views.ChartSettingsDlg.textAltDescription":"Descripción","SSE.Views.ChartSettingsDlg.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.ChartSettingsDlg.textAltTitle":"Título","SSE.Views.ChartSettingsDlg.textAuto":"Auto","SSE.Views.ChartSettingsDlg.textAutoEach":"Automático para cada","SSE.Views.ChartSettingsDlg.textAxisCrosses":"Intersección con el eje","SSE.Views.ChartSettingsDlg.textAxisOptions":"Parámetros de eje","SSE.Views.ChartSettingsDlg.textAxisPos":"Posición de eje","SSE.Views.ChartSettingsDlg.textAxisSettings":"Ajustes de eje","SSE.Views.ChartSettingsDlg.textAxisTitle":"Título","SSE.Views.ChartSettingsDlg.textBase":"Base","SSE.Views.ChartSettingsDlg.textBetweenTickMarks":"Entre marcas de graduación","SSE.Views.ChartSettingsDlg.textBillions":"Millardos","SSE.Views.ChartSettingsDlg.textBottom":"Abajo ","SSE.Views.ChartSettingsDlg.textCategoryName":"Nombre de categoría","SSE.Views.ChartSettingsDlg.textCenter":"Al centro","SSE.Views.ChartSettingsDlg.textChartElementsLegend":"Elementos de gráfico y
leyenda de gráfico","SSE.Views.ChartSettingsDlg.textChartTitle":"Título del gráfico","SSE.Views.ChartSettingsDlg.textCross":"Intersección","SSE.Views.ChartSettingsDlg.textCustom":"Personalizado","SSE.Views.ChartSettingsDlg.textDataColumns":"en columnas","SSE.Views.ChartSettingsDlg.textDataLabels":"Etiquetas de datos","SSE.Views.ChartSettingsDlg.textDataRange":"Rango de datos","SSE.Views.ChartSettingsDlg.textDataRows":"en filas","SSE.Views.ChartSettingsDlg.textDataSeries":"Serie de datos","SSE.Views.ChartSettingsDlg.textDisplayLegend":"Mostrar leyenda","SSE.Views.ChartSettingsDlg.textEmptyCells":"Celdas ocultas y vacías","SSE.Views.ChartSettingsDlg.textEmptyLine":"Conectar puntos de datos con líneas","SSE.Views.ChartSettingsDlg.textFit":"Ajustar al ancho","SSE.Views.ChartSettingsDlg.textFixed":"Corregido","SSE.Views.ChartSettingsDlg.textFormat":"Formato de etiqueta","SSE.Views.ChartSettingsDlg.textGaps":"Espacios","SSE.Views.ChartSettingsDlg.textGridLines":"Líneas de cuadrícula","SSE.Views.ChartSettingsDlg.textGroup":"Agrupar minigráficos","SSE.Views.ChartSettingsDlg.textHide":"Ocultar","SSE.Views.ChartSettingsDlg.textHideAxis":"Ocultar eje","SSE.Views.ChartSettingsDlg.textHigh":"Alto","SSE.Views.ChartSettingsDlg.textHorAxis":"Eje horizontal","SSE.Views.ChartSettingsDlg.textHorAxisSec":"Eje horizontal secundario","SSE.Views.ChartSettingsDlg.textHorGrid":"Líneas de cuadrícula horizontales","SSE.Views.ChartSettingsDlg.textHorizontal":"Horizontal","SSE.Views.ChartSettingsDlg.textHorTitle":"Título de eje horizontal","SSE.Views.ChartSettingsDlg.textHundredMil":"100 000 000","SSE.Views.ChartSettingsDlg.textHundreds":"Cientos","SSE.Views.ChartSettingsDlg.textHundredThousands":"100 000","SSE.Views.ChartSettingsDlg.textIn":"En","SSE.Views.ChartSettingsDlg.textInnerBottom":"Abajo en el interior","SSE.Views.ChartSettingsDlg.textInnerTop":"Arriba en el interior","SSE.Views.ChartSettingsDlg.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.ChartSettingsDlg.textLabelDist":"Distancia entre eje y etiqueta","SSE.Views.ChartSettingsDlg.textLabelInterval":"Intervalo entre etiquetas","SSE.Views.ChartSettingsDlg.textLabelOptions":"Parámetros de etiqueta","SSE.Views.ChartSettingsDlg.textLabelPos":"Posición de etiqueta","SSE.Views.ChartSettingsDlg.textLayout":"Diseño","SSE.Views.ChartSettingsDlg.textLeft":"A la izquierda","SSE.Views.ChartSettingsDlg.textLeftOverlay":"Superposición a la izquierda","SSE.Views.ChartSettingsDlg.textLegendBottom":"Inferior","SSE.Views.ChartSettingsDlg.textLegendLeft":"Izquierdo","SSE.Views.ChartSettingsDlg.textLegendPos":"Leyenda","SSE.Views.ChartSettingsDlg.textLegendRight":"Derecho","SSE.Views.ChartSettingsDlg.textLegendTop":"Superior","SSE.Views.ChartSettingsDlg.textLines":"Líneas","SSE.Views.ChartSettingsDlg.textLocationRange":"Rango de ubicación","SSE.Views.ChartSettingsDlg.textLogScale":"Escala logarítmica","SSE.Views.ChartSettingsDlg.textLow":"Bajo","SSE.Views.ChartSettingsDlg.textMajor":"Principal","SSE.Views.ChartSettingsDlg.textMajorMinor":"Principal y menor","SSE.Views.ChartSettingsDlg.textMajorType":"Tipo principal","SSE.Views.ChartSettingsDlg.textManual":"Manualmente","SSE.Views.ChartSettingsDlg.textMarkers":"Marcas","SSE.Views.ChartSettingsDlg.textMarksInterval":"Intervalo entre marcas","SSE.Views.ChartSettingsDlg.textMaxValue":"Valor máximo","SSE.Views.ChartSettingsDlg.textMillions":"Millones","SSE.Views.ChartSettingsDlg.textMinor":"Menor","SSE.Views.ChartSettingsDlg.textMinorType":"Tipo menor","SSE.Views.ChartSettingsDlg.textMinValue":"Valor mínimo","SSE.Views.ChartSettingsDlg.textNextToAxis":"Al lado de eje","SSE.Views.ChartSettingsDlg.textNone":"Ninguno","SSE.Views.ChartSettingsDlg.textNoOverlay":"Sin superposición","SSE.Views.ChartSettingsDlg.textOneCell":"Mover sin cambiar tamaño con celdas","SSE.Views.ChartSettingsDlg.textOnTickMarks":"Marcas de graduación","SSE.Views.ChartSettingsDlg.textOut":"Fuera","SSE.Views.ChartSettingsDlg.textOuterTop":"Arriba en el exterior","SSE.Views.ChartSettingsDlg.textOverlay":"Superposición","SSE.Views.ChartSettingsDlg.textReverse":"Valores en orden inverso","SSE.Views.ChartSettingsDlg.textReverseOrder":"Orden inverso","SSE.Views.ChartSettingsDlg.textRight":"Derecho","SSE.Views.ChartSettingsDlg.textRightOverlay":"Superposición a la derecha","SSE.Views.ChartSettingsDlg.textRotated":"Girado","SSE.Views.ChartSettingsDlg.textSameAll":"Lo mismo para todo","SSE.Views.ChartSettingsDlg.textSelectData":"Seleccionar datos","SSE.Views.ChartSettingsDlg.textSeparator":"Separador de etiquetas de datos","SSE.Views.ChartSettingsDlg.textSeriesName":"Nombre de serie","SSE.Views.ChartSettingsDlg.textShow":"Mostrar","SSE.Views.ChartSettingsDlg.textShowAxis":"Mostrar eje","SSE.Views.ChartSettingsDlg.textShowBorders":"Mostrar bordes","SSE.Views.ChartSettingsDlg.textShowData":"Mostrar datos en filas y columnas ocultas","SSE.Views.ChartSettingsDlg.textShowEmptyCells":"Mostrar celdas vacías como","SSE.Views.ChartSettingsDlg.textShowEquation":"Mostrar ecuación en gráfico","SSE.Views.ChartSettingsDlg.textShowGrid":"Cuadrícula","SSE.Views.ChartSettingsDlg.textShowSparkAxis":"Mostrar eje","SSE.Views.ChartSettingsDlg.textShowValues":"Mostrar los valores del gráfico","SSE.Views.ChartSettingsDlg.textSingle":"Minigráfico único","SSE.Views.ChartSettingsDlg.textSmooth":"Suave","SSE.Views.ChartSettingsDlg.textSnap":"Ajustar a la celda","SSE.Views.ChartSettingsDlg.textSparkRanges":"Rangos del minigráfico","SSE.Views.ChartSettingsDlg.textStraight":"Recto","SSE.Views.ChartSettingsDlg.textStyle":"Estilo","SSE.Views.ChartSettingsDlg.textTenMillions":"10 000 000","SSE.Views.ChartSettingsDlg.textTenThousands":"10 000","SSE.Views.ChartSettingsDlg.textThousands":"Miles","SSE.Views.ChartSettingsDlg.textTickOptions":"Opciones de marcadores","SSE.Views.ChartSettingsDlg.textTitle":"Gráfico - Ajustes avanzados","SSE.Views.ChartSettingsDlg.textTitleSparkline":"Minigráfico - Ajustes avanzados","SSE.Views.ChartSettingsDlg.textTop":"Superior","SSE.Views.ChartSettingsDlg.textTrendlineOptions":"Opciones de línea de tendencia","SSE.Views.ChartSettingsDlg.textTrillions":"Billones","SSE.Views.ChartSettingsDlg.textTwoCell":"Mover y cambiar tamaño con celdas","SSE.Views.ChartSettingsDlg.textType":"Tipo","SSE.Views.ChartSettingsDlg.textTypeData":"Tipo y datos","SSE.Views.ChartSettingsDlg.textTypeStyle":"Tipo de gráfico, estilo y
rango de datos","SSE.Views.ChartSettingsDlg.textUnits":"Unidades de visualización","SSE.Views.ChartSettingsDlg.textValue":"Valor","SSE.Views.ChartSettingsDlg.textVertAxis":"Eje vertical","SSE.Views.ChartSettingsDlg.textVertAxisSec":"Eje vertical secundario","SSE.Views.ChartSettingsDlg.textVertGrid":"Líneas de cuadrícula verticales","SSE.Views.ChartSettingsDlg.textVertTitle":"Título de eje vertical","SSE.Views.ChartSettingsDlg.textXAxisTitle":"Título del eje X","SSE.Views.ChartSettingsDlg.textYAxisTitle":"Título del eje Y","SSE.Views.ChartSettingsDlg.textZero":"Cero","SSE.Views.ChartSettingsDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.ChartTypeDialog.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","SSE.Views.ChartTypeDialog.errorSecondaryAxis":"El tipo de gráfico seleccionado requiere el eje secundario que está utilizando un gráfico existente. Seleccione otro tipo de gráfico.","SSE.Views.ChartTypeDialog.textSecondary":"Eje secundario","SSE.Views.ChartTypeDialog.textSeries":"Serie","SSE.Views.ChartTypeDialog.textStyle":"Estilo","SSE.Views.ChartTypeDialog.textTitle":"Tipo del gráfico","SSE.Views.ChartTypeDialog.textType":"Tipo","SSE.Views.ChartWizardDialog.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","SSE.Views.ChartWizardDialog.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Views.ChartWizardDialog.errorMaxRows":"El número máximo de series de datos por gráfico es de 255.","SSE.Views.ChartWizardDialog.errorSecondaryAxis":"El tipo de gráfico seleccionado requiere el eje secundario que está utilizando un gráfico existente. Seleccione otro tipo de gráfico.","SSE.Views.ChartWizardDialog.errorStockChart":"Orden de fila incorrecta. Para construir un gráfico de bolsa ponga los datos de la hoja en el siguiente orden: precio de apertura , precio máximo, precio mínimo, precio de cierre","SSE.Views.ChartWizardDialog.textRecommended":"Recomendado","SSE.Views.ChartWizardDialog.textSecondary":"Eje secundario","SSE.Views.ChartWizardDialog.textSeries":"Serie","SSE.Views.ChartWizardDialog.textTitle":"Insertar gráfico","SSE.Views.ChartWizardDialog.textTitleChange":"Cambiar tipo de gráfico","SSE.Views.ChartWizardDialog.textType":"Tipo","SSE.Views.ChartWizardDialog.txtSeriesDesc":"Elija el tipo de gráfico y el eje para su serie de datos","SSE.Views.ConstraintDialog.textDataConstraint":"La restricción debe ser un número, una referencia simple o una fórmula con un valor numérico.","SSE.Views.ConstraintDialog.textTooManyCells":"Demasiadas celdas","SSE.Views.ConstraintDialog.textUnequalCellsNumber":"Número desigual de celdas en la referencia de celda y la restricción","SSE.Views.ConstraintDialog.txtAdd":"Añadir","SSE.Views.ConstraintDialog.txtBin":"binario","SSE.Views.ConstraintDialog.txtCellRef":"Referencia de celda","SSE.Views.ConstraintDialog.txtConstraint":"Restricción","SSE.Views.ConstraintDialog.txtDiff":"AllDifferent","SSE.Views.ConstraintDialog.txtInt":"Entero","SSE.Views.ConstraintDialog.txtNotValidRef":"La referencia de celda está vacía o el contenido no es válido.","SSE.Views.ConstraintDialog.txtTitle":"Añadir restricción","SSE.Views.ConstraintDialog.txtTitleChange":"Cambiar restricción","SSE.Views.CreatePivotDialog.textDataRange":"Rango de datos de origen","SSE.Views.CreatePivotDialog.textDestination":"Elegir dónde colocar la tabla","SSE.Views.CreatePivotDialog.textExist":"Hoja existente","SSE.Views.CreatePivotDialog.textInvalidRange":"Rango de celdas inválido","SSE.Views.CreatePivotDialog.textNew":"Hoja nueva","SSE.Views.CreatePivotDialog.textSelectData":"Seleccionar datos","SSE.Views.CreatePivotDialog.textTitle":"Crear tabla dinámica","SSE.Views.CreatePivotDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.CreateSparklineDialog.textDataRange":"Rango de datos de origen","SSE.Views.CreateSparklineDialog.textDestination":"Elija dónde colocar los minigráficos","SSE.Views.CreateSparklineDialog.textInvalidRange":"Rango de celdas inválido","SSE.Views.CreateSparklineDialog.textSelectData":"Seleccionar datos","SSE.Views.CreateSparklineDialog.textTitle":"Crear minigráficos","SSE.Views.CreateSparklineDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.DataTab.capBtnGroup":"Agrupar","SSE.Views.DataTab.capBtnTextCustomSort":"Orden personalizado","SSE.Views.DataTab.capBtnTextDataValidation":"Validación de datos","SSE.Views.DataTab.capBtnTextRemDuplicates":"Eliminar duplicados","SSE.Views.DataTab.capBtnTextToCol":"Texto en columnas","SSE.Views.DataTab.capBtnUngroup":"Desagrupar","SSE.Views.DataTab.capDataExternalLinks":"Enlaces externos","SSE.Views.DataTab.capDataFromText":"Obtener datos","SSE.Views.DataTab.capGoalSeek":"Buscar Objetivo","SSE.Views.DataTab.capSolver":"Solver","SSE.Views.DataTab.mniFromFile":"Desde un archivo TXT/CSV local","SSE.Views.DataTab.mniFromUrl":"Desde una dirección web con un archivo TXT/CSV","SSE.Views.DataTab.mniFromXMLFile":"Desde un XML local","SSE.Views.DataTab.textBelow":"Filas resumen debajo del detalle","SSE.Views.DataTab.textClear":"Eliminar esquema","SSE.Views.DataTab.textColumns":"Desagrupar columnas","SSE.Views.DataTab.textGroupColumns":"Agrupar columnas","SSE.Views.DataTab.textGroupRows":"Agrupar filas","SSE.Views.DataTab.textRightOf":"Columnas resumen a la derecha del detalle","SSE.Views.DataTab.textRows":"Desagrupar filas","SSE.Views.DataTab.tipCustomSort":"Orden personalizado","SSE.Views.DataTab.tipDataFromText":"Obtener datos de archivo","SSE.Views.DataTab.tipDataValidation":"Validación de datos","SSE.Views.DataTab.tipExternalLinks":"Ver otros archivos a los que está vinculada esta hoja de cálculo","SSE.Views.DataTab.tipGoalSeek":"Encuentre la entrada correcta para el valor que desea","SSE.Views.DataTab.tipGroup":"Agrupar rango de celdas","SSE.Views.DataTab.tipRemDuplicates":"Eliminar filas duplicadas de la hoja","SSE.Views.DataTab.tipSolver":"Encontrar el valor óptimo de una celda objetivo.","SSE.Views.DataTab.tipToColumns":"Dividir texto de celda en columnas","SSE.Views.DataTab.tipUngroup":"Desagrupar rango de celdas","SSE.Views.DataValidationDialog.errorFormula":"El valor actual es un error. ¿Desea continuar?","SSE.Views.DataValidationDialog.errorInvalid":"El valor introducido en el campo \"{0}\" no es válido.","SSE.Views.DataValidationDialog.errorInvalidDate":"La fecha introducida en el campo \"{0}\" no es válida.","SSE.Views.DataValidationDialog.errorInvalidList":"El origen de la lista debe ser una lista delimitada o una referencia a una sola fila o columna.","SSE.Views.DataValidationDialog.errorInvalidTime":"La hora introducida en el campo \"{0}\" no es válida.","SSE.Views.DataValidationDialog.errorMinGreaterMax":"El campo \"{1}\" debe ser mayor que o igual al campo \"{0}\".","SSE.Views.DataValidationDialog.errorMustEnterBothValues":"Debe introducir un valor tanto en el campo \"{0}\" como en el campo \"{1}\".","SSE.Views.DataValidationDialog.errorMustEnterValue":"Debe introducir un valor en el campo \"{0}\".","SSE.Views.DataValidationDialog.errorNamedRange":"No se puede encontrar uno de los rangos especificados.","SSE.Views.DataValidationDialog.errorNegativeTextLength":"Los valores negativos no pueden utilizarse en las condiciones \"{0}\".","SSE.Views.DataValidationDialog.errorNotNumeric":"El campo \"{0}\" debe ser un valor numérico, una expresión numérica o referirse a una celda que contenga un valor numérico.","SSE.Views.DataValidationDialog.strError":"Alerta de error","SSE.Views.DataValidationDialog.strInput":"Mensaje de entrada","SSE.Views.DataValidationDialog.strSettings":"Ajustes","SSE.Views.DataValidationDialog.textAlert":"Alerta","SSE.Views.DataValidationDialog.textAllow":"Permitir","SSE.Views.DataValidationDialog.textApply":"Aplicar estos cambios a todas las demás celdas con los mismos ajustes","SSE.Views.DataValidationDialog.textCellSelected":"Cuando la celda está seleccionada, mostrar este mensaje de entrada","SSE.Views.DataValidationDialog.textCompare":"Comparar con","SSE.Views.DataValidationDialog.textData":"Datos","SSE.Views.DataValidationDialog.textEndDate":"Fecha final","SSE.Views.DataValidationDialog.textEndTime":"Hora final","SSE.Views.DataValidationDialog.textError":"Mensaje de error","SSE.Views.DataValidationDialog.textFormula":"Fórmula","SSE.Views.DataValidationDialog.textIgnore":"Omitir blancos","SSE.Views.DataValidationDialog.textInput":"Mensaje de entrada","SSE.Views.DataValidationDialog.textMax":"Máximo","SSE.Views.DataValidationDialog.textMessage":"Mensaje","SSE.Views.DataValidationDialog.textMin":"Mínimo","SSE.Views.DataValidationDialog.textSelectData":"Seleccionar datos","SSE.Views.DataValidationDialog.textShowDropDown":"Mostrar la lista desplegable en la celda","SSE.Views.DataValidationDialog.textShowError":"Mostrar la alerta de error después de la introducción de datos no válidos","SSE.Views.DataValidationDialog.textShowInput":"Mostrar el mensaje de entrada cuando la celda está seleccionada","SSE.Views.DataValidationDialog.textSource":"Fuente","SSE.Views.DataValidationDialog.textStartDate":"Fecha de inicio","SSE.Views.DataValidationDialog.textStartTime":"Hora de inicio","SSE.Views.DataValidationDialog.textStop":"Detener","SSE.Views.DataValidationDialog.textStyle":"Estilo","SSE.Views.DataValidationDialog.textTitle":"Título","SSE.Views.DataValidationDialog.textUserEnters":"Cuando el usuario introduce datos inválidos, mostrar esta alerta de error","SSE.Views.DataValidationDialog.txtAny":"Cualquier valor","SSE.Views.DataValidationDialog.txtBetween":"entre","SSE.Views.DataValidationDialog.txtDate":"Fecha","SSE.Views.DataValidationDialog.txtDecimal":"Decimal","SSE.Views.DataValidationDialog.txtElTime":"Tiempo transcurrido","SSE.Views.DataValidationDialog.txtEndDate":"Fecha final","SSE.Views.DataValidationDialog.txtEndTime":"Hora final","SSE.Views.DataValidationDialog.txtEqual":"es igual a","SSE.Views.DataValidationDialog.txtGreaterThan":"mayor que","SSE.Views.DataValidationDialog.txtGreaterThanOrEqual":"mayor que o igual a","SSE.Views.DataValidationDialog.txtLength":"Longitud","SSE.Views.DataValidationDialog.txtLessThan":"menor que","SSE.Views.DataValidationDialog.txtLessThanOrEqual":"menor que o igual a","SSE.Views.DataValidationDialog.txtList":"Lista","SSE.Views.DataValidationDialog.txtNotBetween":"no está entre","SSE.Views.DataValidationDialog.txtNotEqual":"no es igual a","SSE.Views.DataValidationDialog.txtOther":"Otro","SSE.Views.DataValidationDialog.txtStartDate":"Fecha de inicio","SSE.Views.DataValidationDialog.txtStartTime":"Hora de inicio","SSE.Views.DataValidationDialog.txtTextLength":"Longitud del texto","SSE.Views.DataValidationDialog.txtTime":"Hora","SSE.Views.DataValidationDialog.txtWhole":"Número entero","SSE.Views.DigitalFilterDialog.capAnd":"Y","SSE.Views.DigitalFilterDialog.capCondition1":"iguales","SSE.Views.DigitalFilterDialog.capCondition10":"no termina con","SSE.Views.DigitalFilterDialog.capCondition11":"contiene","SSE.Views.DigitalFilterDialog.capCondition12":"no contiene","SSE.Views.DigitalFilterDialog.capCondition2":"no es igual","SSE.Views.DigitalFilterDialog.capCondition3":"es más grande que","SSE.Views.DigitalFilterDialog.capCondition30":"es posterior","SSE.Views.DigitalFilterDialog.capCondition4":"es más grande o igual a ","SSE.Views.DigitalFilterDialog.capCondition40":"es posterior o igual a","SSE.Views.DigitalFilterDialog.capCondition5":"es menor que","SSE.Views.DigitalFilterDialog.capCondition50":"es anterior","SSE.Views.DigitalFilterDialog.capCondition6":"es menor o igual a ","SSE.Views.DigitalFilterDialog.capCondition60":"es anterior o igual a","SSE.Views.DigitalFilterDialog.capCondition7":"empieza con","SSE.Views.DigitalFilterDialog.capCondition8":"no empieza con","SSE.Views.DigitalFilterDialog.capCondition9":"termina con","SSE.Views.DigitalFilterDialog.capOr":"O","SSE.Views.DigitalFilterDialog.textNoFilter":"sin filtro","SSE.Views.DigitalFilterDialog.textShowRows":"Mostrar filas donde","SSE.Views.DigitalFilterDialog.textUse1":"Use ? para representar un caracter","SSE.Views.DigitalFilterDialog.textUse2":"Use * para representar una serie de caracteres","SSE.Views.DigitalFilterDialog.txtSelectDate":"Seleccionar fecha","SSE.Views.DigitalFilterDialog.txtTitle":"Filtro personalizado","SSE.Views.DocumentHolder.advancedEquationText":"Ajustes de ecuaciones","SSE.Views.DocumentHolder.advancedImgText":"Ajustes avanzados de imagen","SSE.Views.DocumentHolder.advancedShapeText":"Ajustes avanzados de forma","SSE.Views.DocumentHolder.advancedSlicerText":"Ajustes avanzados de segmentación de datos ","SSE.Views.DocumentHolder.AlignBottom":"Inferior","SSE.Views.DocumentHolder.AlignCenter":"Centro","SSE.Views.DocumentHolder.AlignJust":"Justificar","SSE.Views.DocumentHolder.AlignLeft":"A la izquierda","SSE.Views.DocumentHolder.AlignMiddle":"Medio","SSE.Views.DocumentHolder.AlignRight":"A la derecha","SSE.Views.DocumentHolder.AlignText":"Alineación de texto","SSE.Views.DocumentHolder.AlignTop":"Arriba","SSE.Views.DocumentHolder.allLinearText":"Lineal (todos)","SSE.Views.DocumentHolder.allProfText":"Profesional (todos)","SSE.Views.DocumentHolder.bottomCellText":"Alinear en la parte inferior","SSE.Views.DocumentHolder.btnChart":"Añada, elimine o modifique elementos de gráficos como el título, la leyenda, las líneas de cuadrícula y las etiquetas de datos.","SSE.Views.DocumentHolder.bulletsText":"Viñetas y numeración","SSE.Views.DocumentHolder.centerCellText":"Alinear al medio","SSE.Views.DocumentHolder.chartDataText":"Seleccionar datos del gráfico","SSE.Views.DocumentHolder.chartText":"Ajustes avanzados de gráfico","SSE.Views.DocumentHolder.chartTypeText":"Cambiar tipo de gráfico","SSE.Views.DocumentHolder.currLinearText":"Lineal (actual)","SSE.Views.DocumentHolder.currProfText":"Profesional (actual)","SSE.Views.DocumentHolder.deleteColumnText":"Columna","SSE.Views.DocumentHolder.deleteRowText":"Fila","SSE.Views.DocumentHolder.deleteTableText":"Tabla","SSE.Views.DocumentHolder.DepthAxis":"Eje Z","SSE.Views.DocumentHolder.direct270Text":"Girar texto hacia arriba","SSE.Views.DocumentHolder.direct90Text":"Girar texto hacia abajo","SSE.Views.DocumentHolder.directHText":"Horizontal ","SSE.Views.DocumentHolder.directionText":"Dirección de texto","SSE.Views.DocumentHolder.editChartText":"Editar datos","SSE.Views.DocumentHolder.editHyperlinkText":"Editar enlace","SSE.Views.DocumentHolder.hideEqToolbar":"Ocultar la barra de herramientas de ecuaciones","SSE.Views.DocumentHolder.insertColumnLeftText":"Columna izquierda","SSE.Views.DocumentHolder.insertColumnRightText":"Columna derecha","SSE.Views.DocumentHolder.insertRowAboveText":"Fila arriba","SSE.Views.DocumentHolder.insertRowBelowText":"Fila debajo","SSE.Views.DocumentHolder.latexText":"LaTeX","SSE.Views.DocumentHolder.originalSizeText":"Tamaño actual","SSE.Views.DocumentHolder.removeHyperlinkText":"Eliminar enlace","SSE.Views.DocumentHolder.selectColumnText":"Toda la columna","SSE.Views.DocumentHolder.selectDataText":"Datos de columna","SSE.Views.DocumentHolder.selectRowText":"Fila","SSE.Views.DocumentHolder.selectTableText":"Tabla","SSE.Views.DocumentHolder.showEqToolbar":"Mostrar la barra de herramientas de ecuaciones","SSE.Views.DocumentHolder.strDelete":"Eliminar la firma","SSE.Views.DocumentHolder.strDetails":"Detalles de la firma","SSE.Views.DocumentHolder.strSetup":"Preparación de la firma","SSE.Views.DocumentHolder.strSign":"Firmar","SSE.Views.DocumentHolder.textAlign":"Alinear","SSE.Views.DocumentHolder.textArrange":"Organizar","SSE.Views.DocumentHolder.textArrangeBack":"Enviar al fondo","SSE.Views.DocumentHolder.textArrangeBackward":"Enviar atrás","SSE.Views.DocumentHolder.textArrangeForward":"Traer adelante","SSE.Views.DocumentHolder.textArrangeFront":"Traer al primer plano","SSE.Views.DocumentHolder.textAverage":"Promedio","SSE.Views.DocumentHolder.textAxes":"Ejes","SSE.Views.DocumentHolder.textAxisTitles":"Títulos de eje","SSE.Views.DocumentHolder.textBullets":"Viñetas","SSE.Views.DocumentHolder.textChartTitle":"Título de gráfico","SSE.Views.DocumentHolder.textCopyCells":"Copiar celdas","SSE.Views.DocumentHolder.textCount":"Contar","SSE.Views.DocumentHolder.textCrop":"Recortar","SSE.Views.DocumentHolder.textCropFill":"Relleno","SSE.Views.DocumentHolder.textCropFit":"Adaptar","SSE.Views.DocumentHolder.textDataTable":"Tabla de datos","SSE.Views.DocumentHolder.textEditPoints":"Modificar puntos","SSE.Views.DocumentHolder.textEntriesList":"Seleccionar desde lista desplegable","SSE.Views.DocumentHolder.textErrorBars":"Barras de error","SSE.Views.DocumentHolder.textExponential":"Exponencial","SSE.Views.DocumentHolder.textFillDays":"Rellenar días","SSE.Views.DocumentHolder.textFillFormatOnly":"Rellenar solo formato","SSE.Views.DocumentHolder.textFillMonths":"Rellenar meses","SSE.Views.DocumentHolder.textFillSeries":"Rellenar serie","SSE.Views.DocumentHolder.textFillWeekdays":"Rellenar días laborables","SSE.Views.DocumentHolder.textFillWithoutFormat":"Rellenar sin formato","SSE.Views.DocumentHolder.textFillYears":"Rellenar años","SSE.Views.DocumentHolder.textFlashFill":"Relleno rápido","SSE.Views.DocumentHolder.textFlipH":"Voltear horizontalmente","SSE.Views.DocumentHolder.textFlipV":"Voltear verticalmente","SSE.Views.DocumentHolder.textFreezePanes":"Congelar paneles","SSE.Views.DocumentHolder.textFromFile":"Desde archivo","SSE.Views.DocumentHolder.textFromStorage":"Desde almacenamiento","SSE.Views.DocumentHolder.textFromUrl":"Desde URL","SSE.Views.DocumentHolder.textGrowthTrend":"Tendencia de crecimiento","SSE.Views.DocumentHolder.textHorizontalMajor":"Horizontal principal","SSE.Views.DocumentHolder.textHorizontalMinor":"Horizontal secundario","SSE.Views.DocumentHolder.textLinear":"Lineal","SSE.Views.DocumentHolder.textLinearForecast":"Pronóstico lineal","SSE.Views.DocumentHolder.textLinearTrend":"Tendencia lineal","SSE.Views.DocumentHolder.textLines":"Líneas","SSE.Views.DocumentHolder.textListSettings":"Ajustes de lista","SSE.Views.DocumentHolder.textMacro":"Asignar macro","SSE.Views.DocumentHolder.textMax":"Máx.","SSE.Views.DocumentHolder.textMin":"Mín.","SSE.Views.DocumentHolder.textMore":"Más funciones","SSE.Views.DocumentHolder.textMoreFormats":"Otros formatos","SSE.Views.DocumentHolder.textMovingAverage":"Media móvil (2)","SSE.Views.DocumentHolder.textNone":"Ninguno","SSE.Views.DocumentHolder.textNumbering":"Numeración","SSE.Views.DocumentHolder.textReplace":"Reemplazar imagen","SSE.Views.DocumentHolder.textResetCrop":"Restablecer recorte","SSE.Views.DocumentHolder.textRotate":"Girar","SSE.Views.DocumentHolder.textRotate270":"Girar 90° a la izquierda","SSE.Views.DocumentHolder.textRotate90":"Girar 90° a la derecha","SSE.Views.DocumentHolder.textSaveAsPicture":"Guardar como imagen","SSE.Views.DocumentHolder.textSeries":"Series","SSE.Views.DocumentHolder.textShapeAlignBottom":"Alinear hacia abajo","SSE.Views.DocumentHolder.textShapeAlignCenter":"Alinear al centro","SSE.Views.DocumentHolder.textShapeAlignLeft":"Alinear a la izquierda","SSE.Views.DocumentHolder.textShapeAlignMiddle":"Alinear al centro","SSE.Views.DocumentHolder.textShapeAlignRight":"Alinear a la derecha","SSE.Views.DocumentHolder.textShapeAlignTop":"Alinear hacia arriba","SSE.Views.DocumentHolder.textShapesMerge":"Fusionar formas","SSE.Views.DocumentHolder.textShowDataTable":"Mostrar tabla de datos","SSE.Views.DocumentHolder.textShowLegendKeys":"Mostrar claves de leyenda","SSE.Views.DocumentHolder.textShowUpDown":"Mostrar barras arriba/abajo","SSE.Views.DocumentHolder.textStandardDeviation":"Desviación estándar","SSE.Views.DocumentHolder.textStandardError":"Error estándar","SSE.Views.DocumentHolder.textStdDev":"DesvEst","SSE.Views.DocumentHolder.textSum":"Suma","SSE.Views.DocumentHolder.textTrendline":"Línea de tendencia","SSE.Views.DocumentHolder.textUndo":"Deshacer","SSE.Views.DocumentHolder.textUnFreezePanes":"Descongelar paneles","SSE.Views.DocumentHolder.textUpDownBars":"Barras arriba/abajo","SSE.Views.DocumentHolder.textVar":"Var","SSE.Views.DocumentHolder.textVerticalMajor":"Vertical principal","SSE.Views.DocumentHolder.textVerticalMinor":"Vertical secundario","SSE.Views.DocumentHolder.tipMarkersArrow":"Viñetas de flecha","SSE.Views.DocumentHolder.tipMarkersCheckmark":"Viñetas de marca de verificación","SSE.Views.DocumentHolder.tipMarkersDash":"Viñetas guion","SSE.Views.DocumentHolder.tipMarkersFRhombus":"Rombos rellenos","SSE.Views.DocumentHolder.tipMarkersFRound":"Viñetas redondas rellenas","SSE.Views.DocumentHolder.tipMarkersFSquare":"Viñetas cuadradas rellenas","SSE.Views.DocumentHolder.tipMarkersHRound":"Viñetas redondas huecas","SSE.Views.DocumentHolder.tipMarkersStar":"Viñetas de estrella","SSE.Views.DocumentHolder.topCellText":"Alinear hacia arriba","SSE.Views.DocumentHolder.txtAccounting":"Contabilidad","SSE.Views.DocumentHolder.txtAddComment":"Añadir comentario","SSE.Views.DocumentHolder.txtAddNamedRange":"Definir nombre","SSE.Views.DocumentHolder.txtArrange":"Organizar","SSE.Views.DocumentHolder.txtAscending":"Ascendente","SSE.Views.DocumentHolder.txtAutoColumnWidth":"Autoajustar ancho de columna","SSE.Views.DocumentHolder.txtAutoRowHeight":"Autoajustar alto de fila","SSE.Views.DocumentHolder.txtAverage":"Promedio","SSE.Views.DocumentHolder.txtCellFormat":"Dar formato a celdas","SSE.Views.DocumentHolder.txtClear":"Limpiar","SSE.Views.DocumentHolder.txtClearAll":"Todo","SSE.Views.DocumentHolder.txtClearComments":"Comentarios","SSE.Views.DocumentHolder.txtClearFormat":"Formato","SSE.Views.DocumentHolder.txtClearHyper":"Enlaces","SSE.Views.DocumentHolder.txtClearPivotField":"Borrar filtro de {0}","SSE.Views.DocumentHolder.txtClearSparklineGroups":"Eliminar grupos de minigráficos seleccionados","SSE.Views.DocumentHolder.txtClearSparklines":"Eliminar minigráficos seleccionados","SSE.Views.DocumentHolder.txtClearText":"Texto","SSE.Views.DocumentHolder.txtCollapse":"Contraer","SSE.Views.DocumentHolder.txtCollapseEntire":"Contraer todo el campo","SSE.Views.DocumentHolder.txtColumn":"Toda la columna","SSE.Views.DocumentHolder.txtColumnWidth":"Ajustar ancho de columna","SSE.Views.DocumentHolder.txtCondFormat":"Formato condicional","SSE.Views.DocumentHolder.txtCopy":"Copiar","SSE.Views.DocumentHolder.txtCount":"Contar","SSE.Views.DocumentHolder.txtCurrency":"Moneda","SSE.Views.DocumentHolder.txtCustomColumnWidth":"Ancho de columna personalizado","SSE.Views.DocumentHolder.txtCustomRowHeight":"Altura de fila personalizada","SSE.Views.DocumentHolder.txtCustomSort":"Orden personalizado","SSE.Views.DocumentHolder.txtCut":"Cortar","SSE.Views.DocumentHolder.txtDateLong":"Fecha larga","SSE.Views.DocumentHolder.txtDateShort":"Fecha corta","SSE.Views.DocumentHolder.txtDelete":"Eliminar","SSE.Views.DocumentHolder.txtDelField":"Eliminar","SSE.Views.DocumentHolder.txtDescending":"Descendente","SSE.Views.DocumentHolder.txtDifference":"Diferencia de","SSE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","SSE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","SSE.Views.DocumentHolder.txtEditComment":"Editar comentario","SSE.Views.DocumentHolder.txtEditObject":"Editar objeto","SSE.Views.DocumentHolder.txtExpand":"Expandir","SSE.Views.DocumentHolder.txtExpandCollapse":"Expandir/Contraer","SSE.Views.DocumentHolder.txtExpandEntire":"Expandir todo el campo","SSE.Views.DocumentHolder.txtFieldSettings":"Ajustes de campo","SSE.Views.DocumentHolder.txtFilter":"Filtro","SSE.Views.DocumentHolder.txtFilterCellColor":"Filtrar por color de celda","SSE.Views.DocumentHolder.txtFilterFontColor":"Filtrar por color de la letra","SSE.Views.DocumentHolder.txtFilterValue":"Filtrar por valor de celda seleccionado","SSE.Views.DocumentHolder.txtFormula":"Insertar función","SSE.Views.DocumentHolder.txtFraction":"Fracción","SSE.Views.DocumentHolder.txtGeneral":"General","SSE.Views.DocumentHolder.txtGetLink":"Obtener el enlace a este rango","SSE.Views.DocumentHolder.txtGrandTotal":"Total general","SSE.Views.DocumentHolder.txtGroup":"Agrupar","SSE.Views.DocumentHolder.txtHide":"Ocultar","SSE.Views.DocumentHolder.txtIndex":"Índice","SSE.Views.DocumentHolder.txtInsert":"Insertar","SSE.Views.DocumentHolder.txtInsHyperlink":"Enlace","SSE.Views.DocumentHolder.txtInsImage":"Insertar imagen desde archivo","SSE.Views.DocumentHolder.txtInsImageUrl":"Insertar imagen desde URL","SSE.Views.DocumentHolder.txtLabelFilter":"Filtros de etiqueta","SSE.Views.DocumentHolder.txtMax":"Máx.","SSE.Views.DocumentHolder.txtMin":"Mín.","SSE.Views.DocumentHolder.txtMoreOptions":"Más opciones","SSE.Views.DocumentHolder.txtNormal":"Sin cálculo","SSE.Views.DocumentHolder.txtNumber":"Número","SSE.Views.DocumentHolder.txtNumFormat":"Formato de número","SSE.Views.DocumentHolder.txtPaste":"Pegar","SSE.Views.DocumentHolder.txtPercent":"Porcentaje de","SSE.Views.DocumentHolder.txtPercentage":"Porcentaje","SSE.Views.DocumentHolder.txtPercentDiff":"Diferencia de porcentaje de","SSE.Views.DocumentHolder.txtPercentOfCol":"Porcentaje del total de columnas","SSE.Views.DocumentHolder.txtPercentOfGrand":"Porcentaje de total general","SSE.Views.DocumentHolder.txtPercentOfParent":"Porcentaje del total principal","SSE.Views.DocumentHolder.txtPercentOfParentCol":"Porcentaje del total de columnas principales","SSE.Views.DocumentHolder.txtPercentOfParentRow":"Porcentaje de total de fila principal","SSE.Views.DocumentHolder.txtPercentOfRunTotal":"Porcentaje del total en","SSE.Views.DocumentHolder.txtPercentOfTotal":"Porcentaje del total de filas","SSE.Views.DocumentHolder.txtPivotSettings":"Ajustes de tabla dinámica","SSE.Views.DocumentHolder.txtProduct":"Producto","SSE.Views.DocumentHolder.txtRankAscending":"Clasificar de menor a mayor","SSE.Views.DocumentHolder.txtRankDescending":"Clasificar de mayor a menor","SSE.Views.DocumentHolder.txtReapply":"Reaplicar","SSE.Views.DocumentHolder.txtRefresh":"Actualizar","SSE.Views.DocumentHolder.txtRow":"Toda la fila","SSE.Views.DocumentHolder.txtRowHeight":"Ajustar altura de fila","SSE.Views.DocumentHolder.txtRunTotal":"Total en","SSE.Views.DocumentHolder.txtScientific":"Científico","SSE.Views.DocumentHolder.txtSelect":"Seleccionar","SSE.Views.DocumentHolder.txtShiftDown":"Desplazar celdas hacia abajo","SSE.Views.DocumentHolder.txtShiftLeft":"Desplazar celdas a la izquierda","SSE.Views.DocumentHolder.txtShiftRight":"Desplazar celdas a la derecha","SSE.Views.DocumentHolder.txtShiftUp":"Desplazar celdas hacia arriba","SSE.Views.DocumentHolder.txtShow":"Mostrar","SSE.Views.DocumentHolder.txtShowAs":"Mostrar valores como","SSE.Views.DocumentHolder.txtShowComment":"Mostrar comentario","SSE.Views.DocumentHolder.txtShowDetails":"Mostrar detalles","SSE.Views.DocumentHolder.txtSort":"Ordenar","SSE.Views.DocumentHolder.txtSortCellColor":"Superponer color de celda seleccionado","SSE.Views.DocumentHolder.txtSortFontColor":"Superponer color de fuente seleccionado","SSE.Views.DocumentHolder.txtSortOption":"Más opciones de ordenación","SSE.Views.DocumentHolder.txtSparklines":"Minigráficos","SSE.Views.DocumentHolder.txtSubtotalField":"Subtotal","SSE.Views.DocumentHolder.txtSum":"Suma","SSE.Views.DocumentHolder.txtSummarize":"Resumir valores por","SSE.Views.DocumentHolder.txtText":"Texto","SSE.Views.DocumentHolder.txtTextAdvanced":"Ajustes avanzados de párrafo","SSE.Views.DocumentHolder.txtTime":"Hora","SSE.Views.DocumentHolder.txtTop10":"10 principales","SSE.Views.DocumentHolder.txtUngroup":"Desagrupar","SSE.Views.DocumentHolder.txtValueFieldSettings":"Ajustes del campo de valor","SSE.Views.DocumentHolder.txtValueFilter":"Filtros de valor","SSE.Views.DocumentHolder.txtWidth":"Ancho","SSE.Views.DocumentHolder.unicodeText":"Unicode","SSE.Views.DocumentHolder.vertAlignText":"Alineación vertical","SSE.Views.ExternalLinksDlg.textAutoUpdate":"Actualizar automáticamente los datos de las fuentes vinculadas","SSE.Views.FieldSettingsDialog.strLayout":"Diseño","SSE.Views.FieldSettingsDialog.strSubtotals":"Subtotales","SSE.Views.FieldSettingsDialog.textNumFormat":"Formato de número","SSE.Views.FieldSettingsDialog.textReport":"Formulario de informe","SSE.Views.FieldSettingsDialog.textTitle":"Ajustes de campo","SSE.Views.FieldSettingsDialog.txtAverage":"Promedio","SSE.Views.FieldSettingsDialog.txtBlank":"Insertar filas en blanco después de cada elemento","SSE.Views.FieldSettingsDialog.txtBottom":"Mostrar en la parte inferior del grupo","SSE.Views.FieldSettingsDialog.txtCompact":"Compactar","SSE.Views.FieldSettingsDialog.txtCount":"Contar","SSE.Views.FieldSettingsDialog.txtCountNums":"Contar números","SSE.Views.FieldSettingsDialog.txtCustomName":"Nombre personalizado","SSE.Views.FieldSettingsDialog.txtEmpty":"Mostrar elementos sin datos","SSE.Views.FieldSettingsDialog.txtMax":"Máx.","SSE.Views.FieldSettingsDialog.txtMin":"Mín.","SSE.Views.FieldSettingsDialog.txtOutline":"Esquema","SSE.Views.FieldSettingsDialog.txtProduct":"Producto","SSE.Views.FieldSettingsDialog.txtRepeat":"Repetir etiquetas de elementos en cada fila","SSE.Views.FieldSettingsDialog.txtShowSubtotals":"Mostrar subtotales","SSE.Views.FieldSettingsDialog.txtSourceName":"Nombre de origen:","SSE.Views.FieldSettingsDialog.txtStdDev":"DesvEst","SSE.Views.FieldSettingsDialog.txtStdDevp":"DesvEstP","SSE.Views.FieldSettingsDialog.txtSum":"Suma","SSE.Views.FieldSettingsDialog.txtSummarize":"Funciones para subtotales","SSE.Views.FieldSettingsDialog.txtTabular":"Tabular","SSE.Views.FieldSettingsDialog.txtTop":"Mostrar en la parte superior del grupo","SSE.Views.FieldSettingsDialog.txtVar":"Var","SSE.Views.FieldSettingsDialog.txtVarp":"Varp","SSE.Views.FileMenu.ariaFileMenu":"Menú Archivo","SSE.Views.FileMenu.btnBackCaption":"Abrir ubicación del archivo","SSE.Views.FileMenu.btnCloseEditor":"Cerrar archivo","SSE.Views.FileMenu.btnCloseMenuCaption":"Atrás","SSE.Views.FileMenu.btnCreateNewCaption":"Crear nueva","SSE.Views.FileMenu.btnDownloadCaption":"Descargar como","SSE.Views.FileMenu.btnExitCaption":"Cerrar","SSE.Views.FileMenu.btnExportToPDFCaption":"Exportar como PDF","SSE.Views.FileMenu.btnFileOpenCaption":"Abrir","SSE.Views.FileMenu.btnHelpCaption":"Ayuda","SSE.Views.FileMenu.btnHistoryCaption":"Historial de versiones","SSE.Views.FileMenu.btnInfoCaption":"Info sobre la hoja de cálculo","SSE.Views.FileMenu.btnPrintCaption":"Imprimir","SSE.Views.FileMenu.btnProtectCaption":"Proteger","SSE.Views.FileMenu.btnRecentFilesCaption":"Abrir reciente","SSE.Views.FileMenu.btnRenameCaption":"Cambiar nombre","SSE.Views.FileMenu.btnReturnCaption":"Volver a hoja de cálculo","SSE.Views.FileMenu.btnRightsCaption":"Permisos de acceso","SSE.Views.FileMenu.btnSaveAsCaption":"Guardar como","SSE.Views.FileMenu.btnSaveCaption":"Guardar","SSE.Views.FileMenu.btnSaveCopyAsCaption":"Guardar copia como","SSE.Views.FileMenu.btnSettingsCaption":"Ajustes avanzados","SSE.Views.FileMenu.btnSuggestCaption":"Sugerir una función","SSE.Views.FileMenu.btnSwitchToMobileCaption":"Cambiar a móvil","SSE.Views.FileMenu.btnToEditCaption":"Editar hoja de cálculo","SSE.Views.FileMenuPanels.CreateNew.txtBlank":"Hoja de cálculo en blanco","SSE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Crear nueva","SSE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Añadir autor","SSE.Views.FileMenuPanels.DocumentInfo.txtAddProperty":"Añadir propiedad","SSE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Añadir texto","SSE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicación","SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Cambiar permisos de acceso","SSE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentario","SSE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comunes","SSE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Creada","SSE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"Propiedad del documento","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última modificación por","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificación","SSE.Views.FileMenuPanels.DocumentInfo.txtNo":"No","SSE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Propietario","SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Ubicación","SSE.Views.FileMenuPanels.DocumentInfo.txtProperties":"Propiedades","SSE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"Ya existe una propiedad con este título","SSE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personas que tienen permisos","SSE.Views.FileMenuPanels.DocumentInfo.txtSpreadsheetInfo":"Información de la hoja de cálculo","SSE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Asunto","SSE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","SSE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título","SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Subido","SSE.Views.FileMenuPanels.DocumentInfo.txtYes":"Sí","SSE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Derechos de acceso","SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Cambiar permisos de acceso","SSE.Views.FileMenuPanels.DocumentRights.txtRights":"Personas que tienen permisos","SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText":"Aplicar","SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode":"Modo de coedición","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904":"Utiliza el sistema de fechas de 1904","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator":"Separador decimal","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage":"Idioma del diccionario","SSE.Views.FileMenuPanels.MainSettingsGeneral.strEnableIterative":"Activar cálculo iterativo","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast":"rápido","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender":"Renderizado de las fuentes","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale":"Idioma de fórmulas","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx":"Ejemplo: SUMA; MIN; MAX; CONTAR","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip":"Mostrar información sobre funciones","SSE.Views.FileMenuPanels.MainSettingsGeneral.strHScroll":"Mostrar barra de desplazamiento horizontal","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE":"Omitir palabras en MAYÚSCULAS","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers":"Omitir palabras con números","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings":"Ajustes de macros","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxChange":"Variación máxima","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxIterations":"Iteraciones máximas","SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton":"Mostrar el botón Opciones de pegado cuando se pegue contenido","SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle":"Estilo de referencia R1C1","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings":"Ajustes regionales","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx":"Ejemplo:","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRTLSupport":"Interfaz RTL","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments":"Mostrar comentarios en la hoja","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges":"Mostrar los cambios de otros usuarios","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments":"Mostrar comentarios resueltos","SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll":"Ajustado a la cuadrícula durante el desplazamiento","SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict":"Estricto","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle":"Estilo de pestaña","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme":"Tema de interfaz","SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator":"Separador de miles","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit":"Unidad de medida","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings":"Utilizar separadores basados en los ajustes regionales","SSE.Views.FileMenuPanels.MainSettingsGeneral.strVScroll":"Mostrar barra de desplazamiento vertical","SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom":"Valor de ampliación predeterminado","SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes":"Cada 10 minutos","SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes":"Cada 30 minutos","SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes":"Cada 5 minutos","SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes":"Cada hora","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover":"Guardar información de autorrecuperación","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave":"Guardar automáticamente","SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled":"Desactivado","SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill":"Rellenar","SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave":"Guardar versiones intermedias","SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine":"Línea","SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute":"Cada minuto","SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle":"Estilo de referencias","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAdvancedSettings":"Ajustes avanzados","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance":"Aspecto","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect":"Opciones de autocorrección...","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe":"Bieloruso","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg":"Búlgaro","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa":"Catalán","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode":"Modo de caché predeterminado","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating":"Calculando","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm":"Centímetro","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration":"Colaboración","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs":"Checo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCustomizeQuickAccess":"Personalizar acceso rápido","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa":"Danés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe":"Alemán","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving":"Editar y guardar","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl":"Griego","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn":"Inglés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtErrorNumber":"Su entrada no se puede utilizar. Es posible que se requiera un número entero o decimal.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs":"Español","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip":"Coedición en tiempo real. Todos los cambios se guardan automáticamente","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi":"Finlandés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr":"Francés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu":"Húngaro","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHy":"Armenio","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId":"Indonesio","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch":"Pulgada","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt":"Italiano","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa":"Japonés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo":"Coreano","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLastUsed":"Utilizados recientemente","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo":"Lao","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv":"Letón","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac":"como en OS X","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative":"Nativo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb":"Noruego","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl":"Neerlandés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl":"Polaco","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing":"Revisión","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt":"Punto","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr":"Portugués (Brasil)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang":"Portugués (Portugal)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint":"Mostrar el botón «Impresión rápida» en el encabezado del editor","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip":"El documento se imprimirá en la última impresora seleccionada o predeterminada","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion":"Región","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo":"Rumano","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu":"Ruso","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros":"Habilitar todo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc":"Habilitar todas las macros sin notificación ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtScreenReader":"Activar el soporte para lectores de pantalla","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir":"Dirección predeterminada de la hoja","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc":"Esta configuración solo afectará a las hojas nuevas","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr":"De izquierda a derecha","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl":"De derecha a izquierda","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk":"Eslovaco","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl":"Esloveno","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSr":"Serbio (alfabeto latino)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSrcyrl":"Serbio (cirílico)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros":"Deshabilitar todo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc":"Deshabilitar todas las macros sin notificación","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip":"Utilizar el botón \"Guardar\" para sincronizar los cambios que usted y los demás realicen","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv":"Sueco","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTabBack":"Utilizar el color de la barra de herramientas como fondo de las pestañas","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr":"Turco","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk":"Ucraniano","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey":"Utilizar la tecla «Alt» para navegar por la interfaz de usuario mediante el teclado","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey":"Utilizar la tecla «Opción» para navegar por la interfaz de usuario mediante el teclado","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi":"Vietnamita","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros":"Mostrar notificación","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc":"Deshabilitar todas las macros con notificación","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin":"como en Windows","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace":"Área de trabajo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh":"Chino (simplificado)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZhtw":"Chino (tradicional)","SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"Aviso","SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Con contraseña","SSE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger hoja de cálculo","SSE.Views.FileMenuPanels.ProtectDoc.strSignature":"Con firma","SSE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Se han añadido firmas válidas a la hoja de cálculo.
La hoja de cálculo está protegida contra la edición.","SSE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garantizar la integridad de la hoja de cálculo añadiendo una
firma digital invisible","SSE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar hoja de cálculo","SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"La edición eliminará las firmas de la hoja de cálculo
¿Está seguro de que quiere continuar?","SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Esta hoja de cálculo se ha protegido con una contraseña","SSE.Views.FileMenuPanels.ProtectDoc.txtProtectSpreadsheet":"Cifrar esta hoja de cálculo con una contraseña","SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Esta hoja de cálculo debe firmarse.","SSE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Se han añadido firmas válidas a la hoja de cálculo. La hoja de cálculo está protegida contra la edición.","SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algunas de las firmas digitales en la hoja de cálculo son inválidas o no se pudieron verificar. La hoja de cálculo está protegida y no se puede editar.","SSE.Views.FileMenuPanels.ProtectDoc.txtView":"Ver firmas","SSE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Accesos directos de teclado","SSE.Views.FileMenuPanels.Settings.txtCustomize":"Personalizar","SSE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Descargar como","SSE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Guardar copia como","SSE.Views.FillSeriesDialog.textAuto":"Autocompletar","SSE.Views.FillSeriesDialog.textCols":"Columnas","SSE.Views.FillSeriesDialog.textDate":"Fecha","SSE.Views.FillSeriesDialog.textDateUnit":"Unidad de fecha","SSE.Views.FillSeriesDialog.textDay":"Día","SSE.Views.FillSeriesDialog.textGrowth":"Crecimiento","SSE.Views.FillSeriesDialog.textLinear":"Lineal","SSE.Views.FillSeriesDialog.textMonth":"Mes","SSE.Views.FillSeriesDialog.textRows":"Filas","SSE.Views.FillSeriesDialog.textSeries":"Serie en","SSE.Views.FillSeriesDialog.textStep":"Valor de paso","SSE.Views.FillSeriesDialog.textStop":"Valor límite","SSE.Views.FillSeriesDialog.textTitle":"Serie","SSE.Views.FillSeriesDialog.textTrend":"Tendencia","SSE.Views.FillSeriesDialog.textType":"Tipo","SSE.Views.FillSeriesDialog.textWeek":"Día laboral","SSE.Views.FillSeriesDialog.textYear":"Año","SSE.Views.FillSeriesDialog.txtErrorNumber":"Su entrada no se puede utilizar. Es posible que se requiera un número entero o decimal.","SSE.Views.FormatRulesEditDlg.fillColor":"Color de relleno","SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle":"Advertencia","SSE.Views.FormatRulesEditDlg.text2Scales":"Escala de 2 colores","SSE.Views.FormatRulesEditDlg.text3Scales":"Escala de 3 colores","SSE.Views.FormatRulesEditDlg.textAllBorders":"Todos los bordes","SSE.Views.FormatRulesEditDlg.textAppearance":"Apariencia de la barra","SSE.Views.FormatRulesEditDlg.textApply":"Aplicar al rango","SSE.Views.FormatRulesEditDlg.textAutomatic":"Automático","SSE.Views.FormatRulesEditDlg.textAxis":"Eje","SSE.Views.FormatRulesEditDlg.textBarDirection":"Dirección de barra","SSE.Views.FormatRulesEditDlg.textBold":"Negrita","SSE.Views.FormatRulesEditDlg.textBorder":"Borde","SSE.Views.FormatRulesEditDlg.textBordersColor":"Color de los bordes","SSE.Views.FormatRulesEditDlg.textBordersStyle":"Estilo de borde","SSE.Views.FormatRulesEditDlg.textBottomBorders":"Bordes inferiores","SSE.Views.FormatRulesEditDlg.textCannotAddCF":"No se puede añadir el formato condicional.","SSE.Views.FormatRulesEditDlg.textCellMidpoint":"Punto medio de celda","SSE.Views.FormatRulesEditDlg.textCenterBorders":"Bordes verticales internos","SSE.Views.FormatRulesEditDlg.textClear":"Eliminar","SSE.Views.FormatRulesEditDlg.textColor":"Color del texto","SSE.Views.FormatRulesEditDlg.textContext":"Contexto","SSE.Views.FormatRulesEditDlg.textCustom":"Personalizado","SSE.Views.FormatRulesEditDlg.textDiagDownBorder":"Borde diagonal descendente","SSE.Views.FormatRulesEditDlg.textDiagUpBorder":"Borde diagonal ascendente","SSE.Views.FormatRulesEditDlg.textEmptyFormula":"Escriba una fórmula válida.","SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt":"La formula que ha introducido no evalúa un número, fecha, hora o cadena.","SSE.Views.FormatRulesEditDlg.textEmptyText":"Escriba un valor.","SSE.Views.FormatRulesEditDlg.textEmptyValue":"El valor que ha especificado no es un número, fecha, hora o cadena válidos.","SSE.Views.FormatRulesEditDlg.textErrorGreater":"El valor del {0} debe ser mayor que el valor del {1}.","SSE.Views.FormatRulesEditDlg.textErrorTop10Between":"Escriba un número entre {0} y {1}.","SSE.Views.FormatRulesEditDlg.textFill":"Rellenar","SSE.Views.FormatRulesEditDlg.textFormat":"Formato","SSE.Views.FormatRulesEditDlg.textFormula":"Fórmula","SSE.Views.FormatRulesEditDlg.textGradient":"Gradiente","SSE.Views.FormatRulesEditDlg.textIconLabel":"cuando {0} {1} y","SSE.Views.FormatRulesEditDlg.textIconLabelFirst":"cuando {0} {1}","SSE.Views.FormatRulesEditDlg.textIconLabelLast":"cuando el valor es","SSE.Views.FormatRulesEditDlg.textIconsOverlap":"Uno o varios rangos de datos de icono se superponen.
Ajuste los valores de los rangos para que no se superpongan.","SSE.Views.FormatRulesEditDlg.textIconStyle":"Estilo de icono","SSE.Views.FormatRulesEditDlg.textInsideBorders":"Bordes internos","SSE.Views.FormatRulesEditDlg.textInvalid":"Rango de datos inválido","SSE.Views.FormatRulesEditDlg.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.FormatRulesEditDlg.textItalic":"Cursiva","SSE.Views.FormatRulesEditDlg.textItem":"Elemento","SSE.Views.FormatRulesEditDlg.textLeft2Right":"De izquierda a derecha","SSE.Views.FormatRulesEditDlg.textLeftBorders":"Bordes izquierdos","SSE.Views.FormatRulesEditDlg.textLongBar":"Barra más larga","SSE.Views.FormatRulesEditDlg.textMaximum":"Máximo","SSE.Views.FormatRulesEditDlg.textMaxpoint":"Punto máximo","SSE.Views.FormatRulesEditDlg.textMiddleBorders":"Bordes horizontales internos","SSE.Views.FormatRulesEditDlg.textMidpoint":"Punto medio","SSE.Views.FormatRulesEditDlg.textMinimum":"Mínimo","SSE.Views.FormatRulesEditDlg.textMinpoint":"Punto mínimo","SSE.Views.FormatRulesEditDlg.textNegative":"Negativo","SSE.Views.FormatRulesEditDlg.textNewColor":"Más colores","SSE.Views.FormatRulesEditDlg.textNoBorders":"Sin bordes","SSE.Views.FormatRulesEditDlg.textNone":"Ninguno","SSE.Views.FormatRulesEditDlg.textNotValidPercentage":"Uno o varios valores especificados no son un porcentaje válido.","SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt":"El valor {0} especificado no es un porcentaje válido.","SSE.Views.FormatRulesEditDlg.textNotValidPercentile":"Uno o varios valores especificados no son un percentil válido.","SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt":"El valor {0} especificado no es un percentil válido.","SSE.Views.FormatRulesEditDlg.textOutBorders":"Bordes externos","SSE.Views.FormatRulesEditDlg.textPercent":"Por ciento","SSE.Views.FormatRulesEditDlg.textPercentile":"Percentil","SSE.Views.FormatRulesEditDlg.textPosition":"Posición","SSE.Views.FormatRulesEditDlg.textPositive":"Positivo","SSE.Views.FormatRulesEditDlg.textPresets":"Preestablecidos","SSE.Views.FormatRulesEditDlg.textPreview":"Vista previa","SSE.Views.FormatRulesEditDlg.textRelativeRef":"No se pueden utilizar referencias relativas en los criterios de formato condicional para las escalas de color, las barras de datos y los conjuntos de iconos.","SSE.Views.FormatRulesEditDlg.textReverse":"Invertir el orden de iconos","SSE.Views.FormatRulesEditDlg.textRight2Left":"De derecha a izquierda","SSE.Views.FormatRulesEditDlg.textRightBorders":"Bordes derechos","SSE.Views.FormatRulesEditDlg.textRule":"Regla","SSE.Views.FormatRulesEditDlg.textSameAs":"Igual que positivo","SSE.Views.FormatRulesEditDlg.textSelectData":"Seleccionar datos","SSE.Views.FormatRulesEditDlg.textShortBar":"Barra más corta","SSE.Views.FormatRulesEditDlg.textShowBar":"Mostrar solo la barra","SSE.Views.FormatRulesEditDlg.textShowIcon":"Mostrar icono únicamente","SSE.Views.FormatRulesEditDlg.textSingleRef":"Este tipo de referencia no se puede utilizar en una fórmula de formato condicional.
Cambie la referencia a una sola celda o utilice la referencia con una función de la hoja, como =SUMA(A1:B5).","SSE.Views.FormatRulesEditDlg.textSolid":"Sólido","SSE.Views.FormatRulesEditDlg.textStrikeout":"Tachado","SSE.Views.FormatRulesEditDlg.textSubscript":"Subíndice","SSE.Views.FormatRulesEditDlg.textSuperscript":"Superíndice","SSE.Views.FormatRulesEditDlg.textTopBorders":"Bordes superiores","SSE.Views.FormatRulesEditDlg.textUnderline":"Subrayar","SSE.Views.FormatRulesEditDlg.tipBorders":"Bordes","SSE.Views.FormatRulesEditDlg.tipNumFormat":"Formato de número","SSE.Views.FormatRulesEditDlg.txtAccounting":"Contabilidad","SSE.Views.FormatRulesEditDlg.txtCurrency":"Moneda","SSE.Views.FormatRulesEditDlg.txtDate":"Fecha","SSE.Views.FormatRulesEditDlg.txtDateLong":"Fecha larga","SSE.Views.FormatRulesEditDlg.txtDateShort":"Fecha corta","SSE.Views.FormatRulesEditDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.FormatRulesEditDlg.txtFraction":"Fracción","SSE.Views.FormatRulesEditDlg.txtGeneral":"General","SSE.Views.FormatRulesEditDlg.txtNoCellIcon":"Sin icono","SSE.Views.FormatRulesEditDlg.txtNumber":"Número","SSE.Views.FormatRulesEditDlg.txtPercentage":"Porcentaje","SSE.Views.FormatRulesEditDlg.txtScientific":"Científico","SSE.Views.FormatRulesEditDlg.txtText":"Texto","SSE.Views.FormatRulesEditDlg.txtTime":"Hora","SSE.Views.FormatRulesEditDlg.txtTitleEdit":"Editar regla de formato","SSE.Views.FormatRulesEditDlg.txtTitleNew":"Nueva regla de formato","SSE.Views.FormatRulesManagerDlg.guestText":"Invitado","SSE.Views.FormatRulesManagerDlg.lockText":"Bloqueado","SSE.Views.FormatRulesManagerDlg.text1Above":"1 desv. est. por encima del promedio","SSE.Views.FormatRulesManagerDlg.text1Below":"1 desv. est. por debajo del promedio","SSE.Views.FormatRulesManagerDlg.text2Above":"2 desv. est. por encima del promedio","SSE.Views.FormatRulesManagerDlg.text2Below":"2 desv. est. por debajo del promedio","SSE.Views.FormatRulesManagerDlg.text3Above":"3 desv. est. por encima del promedio","SSE.Views.FormatRulesManagerDlg.text3Below":"3 desv. est. por debajo del promedio","SSE.Views.FormatRulesManagerDlg.textAbove":"Por encima del promedio","SSE.Views.FormatRulesManagerDlg.textApply":"Aplicar a","SSE.Views.FormatRulesManagerDlg.textBeginsWith":"El valor de celda comienza por","SSE.Views.FormatRulesManagerDlg.textBelow":"Por debajo del promedio","SSE.Views.FormatRulesManagerDlg.textBetween":"está comprendido entre {0} y {1}","SSE.Views.FormatRulesManagerDlg.textCellValue":"Valor de celda","SSE.Views.FormatRulesManagerDlg.textColorScale":"Escala de color escalonada","SSE.Views.FormatRulesManagerDlg.textContains":"El valor de celda contiene","SSE.Views.FormatRulesManagerDlg.textContainsBlank":"La celda contiene un valor en blanco","SSE.Views.FormatRulesManagerDlg.textContainsError":"La celda contiene un error","SSE.Views.FormatRulesManagerDlg.textDelete":"Eliminar","SSE.Views.FormatRulesManagerDlg.textDown":"Mover regla hacia abajo","SSE.Views.FormatRulesManagerDlg.textDuplicate":"Duplicar valores","SSE.Views.FormatRulesManagerDlg.textEdit":"Editar","SSE.Views.FormatRulesManagerDlg.textEnds":"El valor de celda termina con","SSE.Views.FormatRulesManagerDlg.textEqAbove":"Mayor o igual que el promedio","SSE.Views.FormatRulesManagerDlg.textEqBelow":"Menor o igual que el promedio","SSE.Views.FormatRulesManagerDlg.textFormat":"Formato","SSE.Views.FormatRulesManagerDlg.textIconSet":"Conjunto de iconos","SSE.Views.FormatRulesManagerDlg.textNew":"Nuevo","SSE.Views.FormatRulesManagerDlg.textNotBetween":"no está comprendido entre {0} y {1}","SSE.Views.FormatRulesManagerDlg.textNotContains":"El valor de celda no contiene","SSE.Views.FormatRulesManagerDlg.textNotContainsBlank":"La celda no contiene un valor en blanco","SSE.Views.FormatRulesManagerDlg.textNotContainsError":"La celda no contiene ningún error","SSE.Views.FormatRulesManagerDlg.textRules":"Reglas","SSE.Views.FormatRulesManagerDlg.textScope":"Mostrar reglas de formato para","SSE.Views.FormatRulesManagerDlg.textSelectData":"Seleccionar datos","SSE.Views.FormatRulesManagerDlg.textSelection":"Selección actual","SSE.Views.FormatRulesManagerDlg.textThisPivot":"Esta tabla pivote","SSE.Views.FormatRulesManagerDlg.textThisSheet":"Esta hoja","SSE.Views.FormatRulesManagerDlg.textThisTable":"Esta tabla","SSE.Views.FormatRulesManagerDlg.textUnique":"Valores únicos","SSE.Views.FormatRulesManagerDlg.textUp":"Mover regla hacia arriba","SSE.Views.FormatRulesManagerDlg.tipIsLocked":"Este elemento se está editando por otro usuario.","SSE.Views.FormatRulesManagerDlg.txtTitle":"Formato condicional","SSE.Views.FormulaDialog.sDescription":"Descripción","SSE.Views.FormulaDialog.textGroupDescription":"Seleccionar grupo de función","SSE.Views.FormulaDialog.textListDescription":"Seleccionar función","SSE.Views.FormulaDialog.txtRecommended":"Recomendado","SSE.Views.FormulaDialog.txtSearch":"Buscar","SSE.Views.FormulaDialog.txtTitle":"Insertar función","SSE.Views.FormulaTab.capBtnRemoveArr":"Quitar flechas","SSE.Views.FormulaTab.capBtnTraceDep":"Rastrear dependientes","SSE.Views.FormulaTab.capBtnTracePrec":"Rastrear precedentes","SSE.Views.FormulaTab.textAutomatic":"Automático","SSE.Views.FormulaTab.textCalculateCurrentSheet":"Calcular la hoja actual","SSE.Views.FormulaTab.textCalculateWorkbook":"Calcular libro de trabajo","SSE.Views.FormulaTab.textManual":"Manualmente","SSE.Views.FormulaTab.tipCalculate":"Calcular","SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook":"Calcular todo el libro de trabajo","SSE.Views.FormulaTab.tipRemoveArr":"Quitar las flechas dibujadas por Rastrear precedentes o Rastrear dependientes","SSE.Views.FormulaTab.tipShowFormulas":"Mostrar fórmula en cada celda en vez del resultado","SSE.Views.FormulaTab.tipTraceDep":"Mostrar flechas indicando qué celdas son afectadas por el valor de la celda seleccionada","SSE.Views.FormulaTab.tipTracePrec":"Mostrar flechas indicando qué celdas afectan el valor de la celda seleccionada","SSE.Views.FormulaTab.tipWatch":"Añadir celdas a la lista de la ventana de inspección","SSE.Views.FormulaTab.txtAdditional":"Adicional","SSE.Views.FormulaTab.txtAutosum":"Autosuma","SSE.Views.FormulaTab.txtAutosumTip":"Suma","SSE.Views.FormulaTab.txtCalculation":"Cálculo","SSE.Views.FormulaTab.txtFormula":"Función","SSE.Views.FormulaTab.txtFormulaTip":"Insertar función","SSE.Views.FormulaTab.txtMore":"Más funciones","SSE.Views.FormulaTab.txtRecent":"Usados recientemente","SSE.Views.FormulaTab.txtRemDep":"Quitar flechas dependientes","SSE.Views.FormulaTab.txtRemPrec":"Quitar flechas precendentes","SSE.Views.FormulaTab.txtShowFormulas":"Mostrar fórmulas","SSE.Views.FormulaTab.txtWatch":"Ventana Inspección","SSE.Views.FormulaWizard.textAny":"cualquier","SSE.Views.FormulaWizard.textArgument":"Argumento","SSE.Views.FormulaWizard.textFunction":"Función","SSE.Views.FormulaWizard.textFunctionRes":"Resultado de la función","SSE.Views.FormulaWizard.textHelp":"Ayuda sobre esta función","SSE.Views.FormulaWizard.textLogical":"lógico","SSE.Views.FormulaWizard.textNoArgs":"Esta función no tiene argumentos","SSE.Views.FormulaWizard.textNoArgsDesc":"este argumento no tiene descripción","SSE.Views.FormulaWizard.textNumber":"número","SSE.Views.FormulaWizard.textReadMore":"Más información","SSE.Views.FormulaWizard.textRef":"referencia","SSE.Views.FormulaWizard.textText":"texto","SSE.Views.FormulaWizard.textTitle":"Argumentos de función","SSE.Views.FormulaWizard.textValue":"Resultado de la fórmula","SSE.Views.GoalSeekDlg.textChangingCell":"Al cambiar la celda","SSE.Views.GoalSeekDlg.textDataRangeError":"A la fórmula le falta un rango","SSE.Views.GoalSeekDlg.textMustContainFormula":"La celda debe contener una fórmula","SSE.Views.GoalSeekDlg.textMustContainValue":"La celda debe contener un valor","SSE.Views.GoalSeekDlg.textMustFormulaResultNumber":"La fórmula de la celda debe dar como resultado un número","SSE.Views.GoalSeekDlg.textMustSingleCell":"La referencia debe ser a una sola celda","SSE.Views.GoalSeekDlg.textSelectData":"Seleccionar datos","SSE.Views.GoalSeekDlg.textSetCell":"Establecer celda","SSE.Views.GoalSeekDlg.textTitle":"Buscar Objetivo","SSE.Views.GoalSeekDlg.textToValue":"Valor","SSE.Views.GoalSeekDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.GoalSeekDlg.txtErrorNumber":"Su entrada no se puede utilizar. Es posible que se requiera un número entero o decimal.","SSE.Views.GoalSeekStatusDlg.textContinue":"Continuar","SSE.Views.GoalSeekStatusDlg.textCurrentValue":"Valor actual:","SSE.Views.GoalSeekStatusDlg.textFoundSolution":"Buscar Objetivo con la celda {0} ha encontrado una solución.","SSE.Views.GoalSeekStatusDlg.textNotFoundSolution":"Buscar Objetivo con la celda {0} quizás no haya encontrado una solución.","SSE.Views.GoalSeekStatusDlg.textPause":"Pausa","SSE.Views.GoalSeekStatusDlg.textSearchIteration":"Buscar Objetivo con la celda {0} en la iteración #{1}.","SSE.Views.GoalSeekStatusDlg.textStep":"Paso","SSE.Views.GoalSeekStatusDlg.textTargetValue":"Valor objetivo:","SSE.Views.GoalSeekStatusDlg.textTitle":"Estado de Buscar Objetivo","SSE.Views.HeaderFooterDialog.textAlign":"Alinear con márgenes de página","SSE.Views.HeaderFooterDialog.textAll":"Todas las páginas","SSE.Views.HeaderFooterDialog.textBold":"Negrita","SSE.Views.HeaderFooterDialog.textCenter":"Al centro","SSE.Views.HeaderFooterDialog.textColor":"Color del texto","SSE.Views.HeaderFooterDialog.textDate":"Fecha","SSE.Views.HeaderFooterDialog.textDiffFirst":"Primera página diferente","SSE.Views.HeaderFooterDialog.textDiffOdd":"Páginas impares y pares diferentes","SSE.Views.HeaderFooterDialog.textEven":"Página par","SSE.Views.HeaderFooterDialog.textFileName":"Nombre de archivo","SSE.Views.HeaderFooterDialog.textFirst":"Primera página","SSE.Views.HeaderFooterDialog.textFooter":"Pie de página","SSE.Views.HeaderFooterDialog.textHeader":"Encabezado","SSE.Views.HeaderFooterDialog.textImage":"Imagen","SSE.Views.HeaderFooterDialog.textInsert":"Insertar","SSE.Views.HeaderFooterDialog.textItalic":"Cursiva","SSE.Views.HeaderFooterDialog.textLeft":"A la izquierda","SSE.Views.HeaderFooterDialog.textMaxError":"El texto es demasiado largo. Reduzca el número de caracteres usados.","SSE.Views.HeaderFooterDialog.textNewColor":"Más colores","SSE.Views.HeaderFooterDialog.textOdd":"Página impar","SSE.Views.HeaderFooterDialog.textPageCount":"Número de páginas","SSE.Views.HeaderFooterDialog.textPageNum":"Número de página","SSE.Views.HeaderFooterDialog.textPresets":"Preestablecidos","SSE.Views.HeaderFooterDialog.textRight":"A la derecha","SSE.Views.HeaderFooterDialog.textScale":"Escalar con documento","SSE.Views.HeaderFooterDialog.textSheet":"Nombre de hoja","SSE.Views.HeaderFooterDialog.textStrikeout":"Tachado","SSE.Views.HeaderFooterDialog.textSubscript":"Subíndice","SSE.Views.HeaderFooterDialog.textSuperscript":"Superíndice","SSE.Views.HeaderFooterDialog.textTime":"Hora","SSE.Views.HeaderFooterDialog.textTitle":"Ajustes de encabezado / pie de página","SSE.Views.HeaderFooterDialog.textUnderline":"Subrayar","SSE.Views.HeaderFooterDialog.tipFontName":"Fuente","SSE.Views.HeaderFooterDialog.tipFontSize":"Tamaño de la fuente","SSE.Views.HyperlinkSettingsDialog.strDisplay":"Mostrar","SSE.Views.HyperlinkSettingsDialog.strLinkTo":"Enlace a","SSE.Views.HyperlinkSettingsDialog.strRange":"Rango","SSE.Views.HyperlinkSettingsDialog.strSheet":"Hoja","SSE.Views.HyperlinkSettingsDialog.textCopy":"Copiar ","SSE.Views.HyperlinkSettingsDialog.textDefault":"Rango seleccionado","SSE.Views.HyperlinkSettingsDialog.textEmptyDesc":"Introduzca título aquí","SSE.Views.HyperlinkSettingsDialog.textEmptyLink":"Introduzca enlace aquí","SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"Introduzca informacíon sobre herramientas aquí","SSE.Views.HyperlinkSettingsDialog.textExternalLink":"Enlace externo","SSE.Views.HyperlinkSettingsDialog.textGetLink":"Obtener enlace","SSE.Views.HyperlinkSettingsDialog.textInternalLink":"Rango de datos interno","SSE.Views.HyperlinkSettingsDialog.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.HyperlinkSettingsDialog.textNames":"Nombres definidos","SSE.Views.HyperlinkSettingsDialog.textSelectData":"Seleccionar datos","SSE.Views.HyperlinkSettingsDialog.textSelectFile":"Seleccionar archivo","SSE.Views.HyperlinkSettingsDialog.textSheets":"Hojas","SSE.Views.HyperlinkSettingsDialog.textTipText":"Información en pantalla","SSE.Views.HyperlinkSettingsDialog.textTitle":"Ajustes de enlace","SSE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.HyperlinkSettingsDialog.txtNotUrl":"Este campo debe ser una URL en el formato \"http://www.example.com\"","SSE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo está limitado a 2083 caracteres","SSE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Introduzca la dirección web o seleccione un archivo","SSE.Views.ImageSettings.strTransparency":"Opacidad ","SSE.Views.ImageSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.ImageSettings.textCrop":"Recortar","SSE.Views.ImageSettings.textCropFill":"Relleno","SSE.Views.ImageSettings.textCropFit":"Adaptar","SSE.Views.ImageSettings.textCropToShape":"Recortar a la forma","SSE.Views.ImageSettings.textEdit":"Editar","SSE.Views.ImageSettings.textEditObject":"Editar objeto","SSE.Views.ImageSettings.textFlip":"Volteo","SSE.Views.ImageSettings.textFromFile":"Desde archivo","SSE.Views.ImageSettings.textFromStorage":"Desde almacenamiento","SSE.Views.ImageSettings.textFromUrl":"Desde URL","SSE.Views.ImageSettings.textHeight":"Altura","SSE.Views.ImageSettings.textHint270":"Girar 90° a la izquierda","SSE.Views.ImageSettings.textHint90":"Girar 90° a la derecha","SSE.Views.ImageSettings.textHintFlipH":"Voltear horizontalmente","SSE.Views.ImageSettings.textHintFlipV":"Voltear verticalmente","SSE.Views.ImageSettings.textInsert":"Reemplazar imagen","SSE.Views.ImageSettings.textKeepRatio":"Proporciones constantes","SSE.Views.ImageSettings.textOriginalSize":"Tamaño actual","SSE.Views.ImageSettings.textRecentlyUsed":"Usados recientemente","SSE.Views.ImageSettings.textResetCrop":"Restablecer recorte","SSE.Views.ImageSettings.textRotate90":"Girar 90°","SSE.Views.ImageSettings.textRotation":"Rotación","SSE.Views.ImageSettings.textSize":"Tamaño","SSE.Views.ImageSettings.textWidth":"Ancho","SSE.Views.ImageSettingsAdvanced.textAbsolute":"No mover, ni cambiar tamaño con celdas","SSE.Views.ImageSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.ImageSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.ImageSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.ImageSettingsAdvanced.textAltTitle":"Título","SSE.Views.ImageSettingsAdvanced.textAngle":"Ángulo","SSE.Views.ImageSettingsAdvanced.textFlipped":"Volteado","SSE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","SSE.Views.ImageSettingsAdvanced.textOneCell":"Mover sin cambiar tamaño con celdas","SSE.Views.ImageSettingsAdvanced.textRotation":"Rotación","SSE.Views.ImageSettingsAdvanced.textSnap":"Ajustar a la celda","SSE.Views.ImageSettingsAdvanced.textTitle":"Imagen - Ajustes avanzados","SSE.Views.ImageSettingsAdvanced.textTwoCell":"Mover y cambiar tamaño con celdas","SSE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","SSE.Views.ImportFromXmlDialog.textDestination":"Elija dónde colocar los datos","SSE.Views.ImportFromXmlDialog.textExist":"Hoja existente","SSE.Views.ImportFromXmlDialog.textInvalidRange":"Rango de celdas no válido","SSE.Views.ImportFromXmlDialog.textNew":"Hoja nueva","SSE.Views.ImportFromXmlDialog.textSelectData":"Seleccionar datos","SSE.Views.ImportFromXmlDialog.textTitle":"Importar datos","SSE.Views.ImportFromXmlDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.LeftMenu.ariaLeftMenu":"Menú de la izquierda","SSE.Views.LeftMenu.tipAbout":"Acerca de","SSE.Views.LeftMenu.tipChat":"Chat","SSE.Views.LeftMenu.tipComments":"Comentarios","SSE.Views.LeftMenu.tipFile":"Archivo","SSE.Views.LeftMenu.tipPlugins":"Extensiones","SSE.Views.LeftMenu.tipSearch":"Buscar","SSE.Views.LeftMenu.tipSpellcheck":"Сorrección ortográfica","SSE.Views.LeftMenu.tipSupport":"Sugerencias y ayuda","SSE.Views.LeftMenu.txtDeveloper":"MODO DE DESARROLLO","SSE.Views.LeftMenu.txtEditor":"Editor de hojas de cálculo","SSE.Views.LeftMenu.txtLimit":"Acceso limitado","SSE.Views.LeftMenu.txtTrial":"MODO DE PRUEBA","SSE.Views.LeftMenu.txtTrialDev":"Modo de programador de prueba","SSE.Views.MacroDialog.textMacro":"Nombre de macro","SSE.Views.MacroDialog.textTitle":"Asignar macro","SSE.Views.MainSettingsPrint.okButtonText":"Guardar","SSE.Views.MainSettingsPrint.strBottom":"Inferior","SSE.Views.MainSettingsPrint.strLandscape":"Horizontal","SSE.Views.MainSettingsPrint.strLeft":"Izquierdo","SSE.Views.MainSettingsPrint.strMargins":"Márgenes","SSE.Views.MainSettingsPrint.strPortrait":"Vertical","SSE.Views.MainSettingsPrint.strPrint":"Imprimir","SSE.Views.MainSettingsPrint.strPrintTitles":"Imprimir títulos","SSE.Views.MainSettingsPrint.strRight":"Derecho","SSE.Views.MainSettingsPrint.strTop":"Superior","SSE.Views.MainSettingsPrint.textActualSize":"Tamaño actual","SSE.Views.MainSettingsPrint.textCustom":"Personalizado","SSE.Views.MainSettingsPrint.textCustomOptions":"Opciones personalizadas","SSE.Views.MainSettingsPrint.textFitCols":"Ajustar todas las columnas en una página","SSE.Views.MainSettingsPrint.textFitPage":"Ajustar la hoja en una página","SSE.Views.MainSettingsPrint.textFitRows":"Ajustar todas las filas en una página","SSE.Views.MainSettingsPrint.textPageOrientation":"Orientación de la página","SSE.Views.MainSettingsPrint.textPageScaling":"Escala","SSE.Views.MainSettingsPrint.textPageSize":"Tamaño de la página","SSE.Views.MainSettingsPrint.textPrintGrid":"Imprimir cuadrículas","SSE.Views.MainSettingsPrint.textPrintHeadings":"Imprimir títulos de filas y columnas","SSE.Views.MainSettingsPrint.textRepeat":"Repetir...","SSE.Views.MainSettingsPrint.textRepeatLeft":"Repetir columnas a la izquierda","SSE.Views.MainSettingsPrint.textRepeatTop":"Repetir filas en la parte superior","SSE.Views.MainSettingsPrint.textSettings":"Ajustes para","SSE.Views.NamedRangeEditDlg.errorCreateDefName":"Los rangos con nombre existentes no pueden ser editados y los nuevos no se pueden crear
en este momento ya que algunos de ellos están editándose.","SSE.Views.NamedRangeEditDlg.namePlaceholder":"Nombre definido","SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle":"Aviso","SSE.Views.NamedRangeEditDlg.strWorkbook":"Libro de trabajo","SSE.Views.NamedRangeEditDlg.textDataRange":"Rango de datos","SSE.Views.NamedRangeEditDlg.textExistName":"¡Error! Ya existe una banda con este nombre","SSE.Views.NamedRangeEditDlg.textInvalidName":"El nombre debe comenzar con una letra o un guion bajo y no debe contener caracteres no válidos.","SSE.Views.NamedRangeEditDlg.textInvalidRange":"¡Error! Alcance de celdas no válido","SSE.Views.NamedRangeEditDlg.textIsLocked":"¡ERROR! Este elemento está siendo editado por otro usuario.","SSE.Views.NamedRangeEditDlg.textName":"Nombre","SSE.Views.NamedRangeEditDlg.textReservedName":"El nombre que está tratando de usar ya se hace referencia en las fórmulas de celda. Por favor seleccione otro nombre.","SSE.Views.NamedRangeEditDlg.textScope":"Alcance","SSE.Views.NamedRangeEditDlg.textSelectData":"Seleccionar datos","SSE.Views.NamedRangeEditDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.NamedRangeEditDlg.txtTitleEdit":"Editar nombre","SSE.Views.NamedRangeEditDlg.txtTitleNew":"Nuevo nombre","SSE.Views.NamedRangePasteDlg.textNames":"Rangos con nombre","SSE.Views.NamedRangePasteDlg.txtTitle":"Pegar nombre","SSE.Views.NameManagerDlg.closeButtonText":"Cerrar","SSE.Views.NameManagerDlg.guestText":"Visitante","SSE.Views.NameManagerDlg.lockText":"Bloqueado","SSE.Views.NameManagerDlg.textDataRange":"Rango de datos","SSE.Views.NameManagerDlg.textDelete":"Eliminar","SSE.Views.NameManagerDlg.textEdit":"Editar","SSE.Views.NameManagerDlg.textEmpty":"No se ha creado ninguna banda nombrada todavía.
Cree por lo menos una banda nombrada y aparecerá en este campo.","SSE.Views.NameManagerDlg.textFilter":"Filtro","SSE.Views.NameManagerDlg.textFilterAll":"Todo","SSE.Views.NameManagerDlg.textFilterDefNames":"Nombres definidos","SSE.Views.NameManagerDlg.textFilterSheet":"Nombres en el ámbito de la hoja","SSE.Views.NameManagerDlg.textFilterTableNames":"nombres de tablas","SSE.Views.NameManagerDlg.textFilterWorkbook":"Nombres en el ámbito del libro","SSE.Views.NameManagerDlg.textNew":"Nuevo","SSE.Views.NameManagerDlg.textnoNames":"No se ha encontrado ninguna banda nombrada que coincida con su filtro.","SSE.Views.NameManagerDlg.textRanges":"Rangos con nombre","SSE.Views.NameManagerDlg.textScope":"Alcance","SSE.Views.NameManagerDlg.textWorkbook":"Libro de trabajo","SSE.Views.NameManagerDlg.tipIsLocked":"Este elemento está siendo editado por otro usuario.","SSE.Views.NameManagerDlg.txtTitle":"Administrador de nombres","SSE.Views.NameManagerDlg.warnDelete":"¿Está seguro de que quiere borrar el nombre {0}?","SSE.Views.PageMarginsDialog.textBottom":"Inferior","SSE.Views.PageMarginsDialog.textCenter":"Centrar en la página","SSE.Views.PageMarginsDialog.textHor":"Horizontalmente","SSE.Views.PageMarginsDialog.textLeft":"Izquierdo","SSE.Views.PageMarginsDialog.textRight":"Derecho","SSE.Views.PageMarginsDialog.textTitle":"Márgenes","SSE.Views.PageMarginsDialog.textTop":"Superior","SSE.Views.PageMarginsDialog.textVert":"Verticalmente","SSE.Views.PageMarginsDialog.textWarning":"Advertencia","SSE.Views.PageMarginsDialog.warnCheckMargings":"Los márgenes son incorrectos","SSE.Views.ParagraphSettings.strLineHeight":"Interlineado","SSE.Views.ParagraphSettings.strParagraphSpacing":"Espaciado de párrafo","SSE.Views.ParagraphSettings.strSpacingAfter":"Después","SSE.Views.ParagraphSettings.strSpacingBefore":"Antes","SSE.Views.ParagraphSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.ParagraphSettings.textAt":"En","SSE.Views.ParagraphSettings.textAtLeast":"Al menos","SSE.Views.ParagraphSettings.textAuto":"Múltiple","SSE.Views.ParagraphSettings.textExact":"Exacto","SSE.Views.ParagraphSettings.txtAutoText":"Auto","SSE.Views.ParagraphSettingsAdvanced.noTabs":"Los tabuladores especificados aparecerán en este campo","SSE.Views.ParagraphSettingsAdvanced.strAllCaps":"Mayúsculas","SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Doble tachado","SSE.Views.ParagraphSettingsAdvanced.strIndent":"Retiradas","SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Izquierdo","SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Espaciado de línea","SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Derecho","SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Después","SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy":"Por","SSE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Letra ","SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Sangría y espaciado","SSE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versalitas","SSE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaciado","SSE.Views.ParagraphSettingsAdvanced.strStrike":"Tachado","SSE.Views.ParagraphSettingsAdvanced.strSubscript":"Subíndice","SSE.Views.ParagraphSettingsAdvanced.strSuperscript":"Sobreíndice","SSE.Views.ParagraphSettingsAdvanced.strTabs":"Tabuladores","SSE.Views.ParagraphSettingsAdvanced.textAlign":"Alineación","SSE.Views.ParagraphSettingsAdvanced.textAuto":"Múltiple","SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaciado entre caracteres","SSE.Views.ParagraphSettingsAdvanced.textDefault":"Tabulador predeterminado","SSE.Views.ParagraphSettingsAdvanced.textEffects":"Efectos","SSE.Views.ParagraphSettingsAdvanced.textExact":"Exactamente","SSE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primera línea","SSE.Views.ParagraphSettingsAdvanced.textHanging":"Suspendido","SSE.Views.ParagraphSettingsAdvanced.textJustified":"Justificado","SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(ninguno)","SSE.Views.ParagraphSettingsAdvanced.textRemove":"Eliminar","SSE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Eliminar todo","SSE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","SSE.Views.ParagraphSettingsAdvanced.textTabCenter":"Al centro","SSE.Views.ParagraphSettingsAdvanced.textTabLeft":"Izquierdo","SSE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posición del tabulador","SSE.Views.ParagraphSettingsAdvanced.textTabRight":"Derecho","SSE.Views.ParagraphSettingsAdvanced.textTitle":"Párrafo - Ajustes avanzados","SSE.Views.ParagraphSettingsAdvanced.txtAutoText":"Auto","SSE.Views.PivotCalculatedItemsDialog.txtDelete":"Eliminar","SSE.Views.PivotCalculatedItemsDialog.txtDuplicate":"Duplicar","SSE.Views.PivotCalculatedItemsDialog.txtEdit":"Editar","SSE.Views.PivotCalculatedItemsDialog.txtFormula":"Fórmula","SSE.Views.PivotCalculatedItemsDialog.txtItemsName":"Nombre de los elementos","SSE.Views.PivotCalculatedItemsDialog.txtNew":"Nuevo","SSE.Views.PivotCalculatedItemsDialog.txtTitle":"Elementos calculados en","SSE.Views.PivotDigitalFilterDialog.capCondition1":"es igual a","SSE.Views.PivotDigitalFilterDialog.capCondition10":"no termina con","SSE.Views.PivotDigitalFilterDialog.capCondition11":"contiene","SSE.Views.PivotDigitalFilterDialog.capCondition12":"no contiene","SSE.Views.PivotDigitalFilterDialog.capCondition13":"entre","SSE.Views.PivotDigitalFilterDialog.capCondition14":"no está entre","SSE.Views.PivotDigitalFilterDialog.capCondition2":"no es igual a","SSE.Views.PivotDigitalFilterDialog.capCondition3":"es mayor que","SSE.Views.PivotDigitalFilterDialog.capCondition30":"es posterior","SSE.Views.PivotDigitalFilterDialog.capCondition4":"es mayor o igual a","SSE.Views.PivotDigitalFilterDialog.capCondition40":"es posterior o igual a","SSE.Views.PivotDigitalFilterDialog.capCondition5":"es menor que","SSE.Views.PivotDigitalFilterDialog.capCondition50":"es anterior","SSE.Views.PivotDigitalFilterDialog.capCondition6":"es menor o igual a","SSE.Views.PivotDigitalFilterDialog.capCondition60":"es anterior o igual a","SSE.Views.PivotDigitalFilterDialog.capCondition7":"empieza con","SSE.Views.PivotDigitalFilterDialog.capCondition8":"no empieza con","SSE.Views.PivotDigitalFilterDialog.capCondition9":"termina con","SSE.Views.PivotDigitalFilterDialog.textShowDate":"Mostrar elementos para los que la fecha:","SSE.Views.PivotDigitalFilterDialog.textShowLabel":"Mostrar elementos para los que la etiqueta:","SSE.Views.PivotDigitalFilterDialog.textShowValue":"Mostrar elementos para los que:","SSE.Views.PivotDigitalFilterDialog.textUse1":"Use ? para representar un caracter","SSE.Views.PivotDigitalFilterDialog.textUse2":"Use * para representar una serie de caracteres","SSE.Views.PivotDigitalFilterDialog.txtAnd":"y","SSE.Views.PivotDigitalFilterDialog.txtTitleDate":"Filtro de fechas","SSE.Views.PivotDigitalFilterDialog.txtTitleLabel":"Filtrar por etiqueta","SSE.Views.PivotDigitalFilterDialog.txtTitleValue":"Filtro de valor","SSE.Views.PivotGroupDialog.textAuto":"Auto","SSE.Views.PivotGroupDialog.textBy":"Por","SSE.Views.PivotGroupDialog.textDays":"Días","SSE.Views.PivotGroupDialog.textEnd":"Terminar en","SSE.Views.PivotGroupDialog.textError":"Este campo debe ser un valor numérico","SSE.Views.PivotGroupDialog.textGreaterError":"El número final debe ser mayor que el número inicial.","SSE.Views.PivotGroupDialog.textHour":"Horas","SSE.Views.PivotGroupDialog.textMin":"Minutos","SSE.Views.PivotGroupDialog.textMonth":"Meses","SSE.Views.PivotGroupDialog.textNumDays":"Número de días","SSE.Views.PivotGroupDialog.textQuart":"Trimestres","SSE.Views.PivotGroupDialog.textSec":"Segundos","SSE.Views.PivotGroupDialog.textStart":"Comenzar en","SSE.Views.PivotGroupDialog.textYear":"años","SSE.Views.PivotGroupDialog.txtTitle":"Agrupación","SSE.Views.PivotInsertCalculatedItemDialog.txtDescription":"Puede utilizar los elementos calculados para realizar cálculos básicos entre distintos elementos de un mismo campo.","SSE.Views.PivotInsertCalculatedItemDialog.txtFormula":"Fórmula","SSE.Views.PivotInsertCalculatedItemDialog.txtInsertIntoFormula":"Insertar en fórmula","SSE.Views.PivotInsertCalculatedItemDialog.txtItem":"Elemento","SSE.Views.PivotInsertCalculatedItemDialog.txtItemName":"Nombre del elemento","SSE.Views.PivotInsertCalculatedItemDialog.txtItems":"Elementos","SSE.Views.PivotInsertCalculatedItemDialog.txtReadMore":"Más información","SSE.Views.PivotInsertCalculatedItemDialog.txtTitle":"Insertar elemento calculado en","SSE.Views.PivotSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.PivotSettings.textColumns":"Columnas","SSE.Views.PivotSettings.textFields":"Seleccionar campos","SSE.Views.PivotSettings.textFilters":"Filtros","SSE.Views.PivotSettings.textRows":"Filas","SSE.Views.PivotSettings.textValues":"Valores","SSE.Views.PivotSettings.txtAddColumn":"Añadir a columnas","SSE.Views.PivotSettings.txtAddFilter":"Añadir a filtros","SSE.Views.PivotSettings.txtAddRow":"Añadir a filas","SSE.Views.PivotSettings.txtAddValues":"Añadir a valores","SSE.Views.PivotSettings.txtFieldSettings":"Ajustes de campo","SSE.Views.PivotSettings.txtMoveBegin":"Mover al principio","SSE.Views.PivotSettings.txtMoveColumn":"Mover a columnas","SSE.Views.PivotSettings.txtMoveDown":"Mover hacia abajo","SSE.Views.PivotSettings.txtMoveEnd":"Mover al final","SSE.Views.PivotSettings.txtMoveFilter":"Mover a filtros","SSE.Views.PivotSettings.txtMoveRow":"Mover a filas","SSE.Views.PivotSettings.txtMoveUp":"Mover hacia arriba","SSE.Views.PivotSettings.txtMoveValues":"Mover a valores","SSE.Views.PivotSettings.txtRemove":"Eliminar campo","SSE.Views.PivotSettingsAdvanced.strLayout":"Nombre y diseño","SSE.Views.PivotSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.PivotSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.PivotSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.PivotSettingsAdvanced.textAltTitle":"Título","SSE.Views.PivotSettingsAdvanced.textAutofitColWidth":"Ajustar automáticamente el ancho de la columna al actualizar","SSE.Views.PivotSettingsAdvanced.textDataRange":"Rango de datos","SSE.Views.PivotSettingsAdvanced.textDataSource":"Origen de los datos","SSE.Views.PivotSettingsAdvanced.textDisplayFields":"Mostrar campos en área de filtro de informe","SSE.Views.PivotSettingsAdvanced.textDown":"Hacia abajo, luego horizontalmente","SSE.Views.PivotSettingsAdvanced.textGrandTotals":"Totales generales","SSE.Views.PivotSettingsAdvanced.textHeaders":"Encabezados de campo","SSE.Views.PivotSettingsAdvanced.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.PivotSettingsAdvanced.textOver":"Horizontalmente, luego hacia abajo","SSE.Views.PivotSettingsAdvanced.textSelectData":"Seleccionar datos","SSE.Views.PivotSettingsAdvanced.textShowCols":"Mostrar para columnas","SSE.Views.PivotSettingsAdvanced.textShowHeaders":"Mostrar encabezados de campo para filas y columnas","SSE.Views.PivotSettingsAdvanced.textShowRows":"Mostrar para filas","SSE.Views.PivotSettingsAdvanced.textTitle":"Tabla dinámica - Ajustes avanzados","SSE.Views.PivotSettingsAdvanced.textWrapCol":"Campos de filtro de informe por columna","SSE.Views.PivotSettingsAdvanced.textWrapRow":"Campos de filtro de informe por fila","SSE.Views.PivotSettingsAdvanced.txtEmpty":"Este campo es obligatorio","SSE.Views.PivotSettingsAdvanced.txtName":"Nombre","SSE.Views.PivotShowDetailDialog.textDescription":"Seleccione el campo que contiene el detalle que desea mostrar:","SSE.Views.PivotShowDetailDialog.txtTitle":"Mostrar detalles","SSE.Views.PivotTable.capBlankRows":"Filas en blanco","SSE.Views.PivotTable.capGrandTotals":"Totales","SSE.Views.PivotTable.capLayout":"Diseño de informe","SSE.Views.PivotTable.capSubtotals":"Subtotales","SSE.Views.PivotTable.mniBottomSubtotals":"Mostrar todos los subtotales en la parte inferior del grupo","SSE.Views.PivotTable.mniInsertBlankLine":"Insertar línea en blanco después de cada elemento","SSE.Views.PivotTable.mniLayoutCompact":"Mostrar de forma compacta","SSE.Views.PivotTable.mniLayoutNoRepeat":"No repetir todas las etiquetas de elementos","SSE.Views.PivotTable.mniLayoutOutline":"Mostrar en forma de esquema","SSE.Views.PivotTable.mniLayoutRepeat":"Repetir todas las etiquetas de elementos","SSE.Views.PivotTable.mniLayoutTabular":"Mostrar en forma tabular","SSE.Views.PivotTable.mniNoSubtotals":"No mostrar subtotales","SSE.Views.PivotTable.mniOffTotals":"Desactivado para filas y columnas","SSE.Views.PivotTable.mniOnColumnsTotals":"Activado solo para columnas","SSE.Views.PivotTable.mniOnRowsTotals":"Activado solo para filas","SSE.Views.PivotTable.mniOnTotals":"Activado para filas y columnas","SSE.Views.PivotTable.mniRemoveBlankLine":"Quitar línea en blanco después de cada elemento","SSE.Views.PivotTable.mniTopSubtotals":"Mostrar todos los subtotales en la parte superior del grupo","SSE.Views.PivotTable.textColBanded":"Columnas con bandas","SSE.Views.PivotTable.textColHeader":"Títulos de columnas","SSE.Views.PivotTable.textRowBanded":"Filas con bandas","SSE.Views.PivotTable.textRowHeader":"Encabezados de fila","SSE.Views.PivotTable.tipCalculatedItems":"Elementos calculados","SSE.Views.PivotTable.tipCreatePivot":"Insertar tabla dinámica","SSE.Views.PivotTable.tipGrandTotals":"Mostrar u ocultar totales","SSE.Views.PivotTable.tipRefresh":"Actualizar la información del origen de los datos","SSE.Views.PivotTable.tipRefreshCurrent":"Actualizar la información del origen de datos para la tabla actual","SSE.Views.PivotTable.tipSelect":"Seleccionar toda la tabla dinámica","SSE.Views.PivotTable.tipSubtotals":"Mostrar u ocultar subtotales","SSE.Views.PivotTable.txtCalculatedItems":"Elementos calculados","SSE.Views.PivotTable.txtCollapseEntire":"Contraer todo el campo","SSE.Views.PivotTable.txtCreate":"Insertar tabla","SSE.Views.PivotTable.txtExpandEntire":"Expandir todo el campo","SSE.Views.PivotTable.txtGroupPivot_Custom":"Personalizado","SSE.Views.PivotTable.txtGroupPivot_Dark":"Oscuro","SSE.Views.PivotTable.txtGroupPivot_Light":"Claro","SSE.Views.PivotTable.txtGroupPivot_Medium":"Medio","SSE.Views.PivotTable.txtPivotTable":"Tabla dinámica","SSE.Views.PivotTable.txtRefresh":"Actualizar","SSE.Views.PivotTable.txtRefreshAll":"Actualizar todo","SSE.Views.PivotTable.txtSelect":"Seleccionar","SSE.Views.PivotTable.txtTable_PivotStyleDark":"Estilo de tabla dinámica: oscuro","SSE.Views.PivotTable.txtTable_PivotStyleLight":"Estilo de tabla dinámica: claro","SSE.Views.PivotTable.txtTable_PivotStyleMedium":"Estilo de tabla dinámica: medio","SSE.Views.PrintSettings.btnDownload":"Guardar y descargar","SSE.Views.PrintSettings.btnExport":"Guardar y exportar","SSE.Views.PrintSettings.btnPrint":"Guardar e imprimir","SSE.Views.PrintSettings.strBottom":"Inferior","SSE.Views.PrintSettings.strLandscape":"Horizontal","SSE.Views.PrintSettings.strLeft":"Izquierdo","SSE.Views.PrintSettings.strMargins":"Márgenes","SSE.Views.PrintSettings.strPortrait":"Vertical","SSE.Views.PrintSettings.strPrint":"Imprimir","SSE.Views.PrintSettings.strPrintTitles":"Imprimir títulos","SSE.Views.PrintSettings.strRight":"Derecho","SSE.Views.PrintSettings.strShow":"Mostrar","SSE.Views.PrintSettings.strTop":"Superior","SSE.Views.PrintSettings.textActiveSheets":"Hojas activas","SSE.Views.PrintSettings.textActualSize":"Tamaño actual","SSE.Views.PrintSettings.textAllSheets":"Todas las hojas","SSE.Views.PrintSettings.textCurrentSheet":"Hoja actual","SSE.Views.PrintSettings.textCustom":"Personalizado","SSE.Views.PrintSettings.textCustomOptions":"Opciones personalizadas","SSE.Views.PrintSettings.textFitCols":"Ajustar todas las columnas en una página","SSE.Views.PrintSettings.textFitPage":"Ajustar la hoja en una página","SSE.Views.PrintSettings.textFitRows":"Ajustar todas las filas en una página","SSE.Views.PrintSettings.textHideDetails":"Ocultar detalles","SSE.Views.PrintSettings.textIgnore":"Omitir el área de impresión","SSE.Views.PrintSettings.textLayout":"Diseño","SSE.Views.PrintSettings.textMarginsNarrow":"Estrecho","SSE.Views.PrintSettings.textMarginsNormal":"Normal","SSE.Views.PrintSettings.textMarginsWide":"Amplio","SSE.Views.PrintSettings.textPageOrientation":"Orientación de página","SSE.Views.PrintSettings.textPages":"Páginas:","SSE.Views.PrintSettings.textPageScaling":"Escala","SSE.Views.PrintSettings.textPageSize":"Tamaño de página","SSE.Views.PrintSettings.textPrintGrid":"Imprimir cuadrículas","SSE.Views.PrintSettings.textPrintHeadings":"Imprimir títulos de filas y columnas","SSE.Views.PrintSettings.textPrintRange":"Área de impresión","SSE.Views.PrintSettings.textRange":"Rango","SSE.Views.PrintSettings.textRepeat":"Repetir...","SSE.Views.PrintSettings.textRepeatLeft":"Repetir columnas a la izquierda","SSE.Views.PrintSettings.textRepeatTop":"Repetir filas en la parte superior","SSE.Views.PrintSettings.textSelection":"Selección ","SSE.Views.PrintSettings.textSettings":"Ajustes de hoja","SSE.Views.PrintSettings.textShowDetails":"Mostrar detalles","SSE.Views.PrintSettings.textShowGrid":"Mostrar líneas de cuadrícula","SSE.Views.PrintSettings.textShowHeadings":"Mostrar títulos de filas y columnas","SSE.Views.PrintSettings.textTitle":"Opciones de impresión","SSE.Views.PrintSettings.textTitlePDF":"Ajustes de PDF","SSE.Views.PrintSettings.textTo":"hasta","SSE.Views.PrintSettings.txtMarginsLast":"Último personalizado","SSE.Views.PrintTitlesDialog.textFirstCol":"Primera columna","SSE.Views.PrintTitlesDialog.textFirstRow":"Primera fila","SSE.Views.PrintTitlesDialog.textFrozenCols":"Columnas congeladas","SSE.Views.PrintTitlesDialog.textFrozenRows":"Filas congeladas","SSE.Views.PrintTitlesDialog.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.PrintTitlesDialog.textLeft":"Repetir columnas a la izquierda","SSE.Views.PrintTitlesDialog.textNoRepeat":"No repetir","SSE.Views.PrintTitlesDialog.textRepeat":"Repetir...","SSE.Views.PrintTitlesDialog.textSelectRange":"Seleccionar rango","SSE.Views.PrintTitlesDialog.textTitle":"Imprimir títulos","SSE.Views.PrintTitlesDialog.textTop":"Repetir filas en la parte superior","SSE.Views.PrintWithPreview.txtActiveSheets":"Hojas activas","SSE.Views.PrintWithPreview.txtActualSize":"Tamaño actual","SSE.Views.PrintWithPreview.txtAllSheets":"Todas las hojas","SSE.Views.PrintWithPreview.txtApplyToAllSheets":"Aplicar a todas las hojas","SSE.Views.PrintWithPreview.txtAuto":"Automático","SSE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impresión en blanco y negro","SSE.Views.PrintWithPreview.txtBothSides":"Imprimir en ambas caras","SSE.Views.PrintWithPreview.txtBothSidesLongDesc":"Girar páginas por borde largo","SSE.Views.PrintWithPreview.txtBothSidesShortDesc":"Girar páginas por borde corto","SSE.Views.PrintWithPreview.txtBottom":"Abajo ","SSE.Views.PrintWithPreview.txtColorPrinting":"Impresión en color","SSE.Views.PrintWithPreview.txtCopies":"Copias","SSE.Views.PrintWithPreview.txtCurrentSheet":"Hoja actual","SSE.Views.PrintWithPreview.txtCustom":"Personalizado","SSE.Views.PrintWithPreview.txtCustomOptions":"Opciones personalizadas","SSE.Views.PrintWithPreview.txtEmptyTable":"No hay nada para imprimir porque la tabla está vacía","SSE.Views.PrintWithPreview.txtFirstPageNumber":"Número de la primera página:","SSE.Views.PrintWithPreview.txtFitCols":"Ajustar todas las columnas en una página","SSE.Views.PrintWithPreview.txtFitPage":"Ajustar la hoja en una página","SSE.Views.PrintWithPreview.txtFitRows":"Ajustar todas las filas en una página","SSE.Views.PrintWithPreview.txtGridlinesAndHeadings":"Cuadrículas y encabezados","SSE.Views.PrintWithPreview.txtHeaderFooterSettings":"Ajustes de encabezado / pie de página","SSE.Views.PrintWithPreview.txtIgnore":"Omitir el área de impresión","SSE.Views.PrintWithPreview.txtLandscape":"Horizontal","SSE.Views.PrintWithPreview.txtLeft":"A la izquierda","SSE.Views.PrintWithPreview.txtMargins":"Márgenes","SSE.Views.PrintWithPreview.txtMarginsLast":"Último personalizado","SSE.Views.PrintWithPreview.txtMarginsNarrow":"Estrecho","SSE.Views.PrintWithPreview.txtMarginsNormal":"Normal","SSE.Views.PrintWithPreview.txtMarginsWide":"Amplio","SSE.Views.PrintWithPreview.txtOf":"de {0}","SSE.Views.PrintWithPreview.txtOneSide":"Imprimir a una cara","SSE.Views.PrintWithPreview.txtOneSideDesc":"Imprimir solo en una cara de la página","SSE.Views.PrintWithPreview.txtPage":"Página","SSE.Views.PrintWithPreview.txtPageNumInvalid":"Número de página no válido","SSE.Views.PrintWithPreview.txtPageOrientation":"Orientación de la página","SSE.Views.PrintWithPreview.txtPages":"Páginas:","SSE.Views.PrintWithPreview.txtPageSize":"Tamaño de la página","SSE.Views.PrintWithPreview.txtPortrait":"Vertical","SSE.Views.PrintWithPreview.txtPrint":"Imprimir","SSE.Views.PrintWithPreview.txtPrinter":"Impresora","SSE.Views.PrintWithPreview.txtPrinterNotSelected":"Impresora no seleccionada","SSE.Views.PrintWithPreview.txtPrintersNotFound":"Impresoras no encontradas","SSE.Views.PrintWithPreview.txtPrintGrid":"Imprimir líneas de cuadrícula","SSE.Views.PrintWithPreview.txtPrintHeadings":"Imprimir títulos de filas y columnas","SSE.Views.PrintWithPreview.txtPrintRange":"Área de impresión","SSE.Views.PrintWithPreview.txtPrintSides":"Caras de impresión","SSE.Views.PrintWithPreview.txtPrintTitles":"Imprimir títulos","SSE.Views.PrintWithPreview.txtPrintToPDF":"Imprimir en PDF","SSE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir utilizando el diálogo del sistema","SSE.Views.PrintWithPreview.txtRepeat":"Repetir...","SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft":"Repetir columnas a la izquierda","SSE.Views.PrintWithPreview.txtRepeatRowsAtTop":"Repetir filas en la parte superior","SSE.Views.PrintWithPreview.txtRight":"A la derecha","SSE.Views.PrintWithPreview.txtSave":"Guardar","SSE.Views.PrintWithPreview.txtScaling":"Escala","SSE.Views.PrintWithPreview.txtSelection":"Selección ","SSE.Views.PrintWithPreview.txtSettingsOfSheet":"Ajustes de la hoja","SSE.Views.PrintWithPreview.txtSheet":"Hoja: {0}","SSE.Views.PrintWithPreview.txtTo":"hasta","SSE.Views.PrintWithPreview.txtTop":"Arriba","SSE.Views.PrintWithPreview.txtWaitingForPrinters":"Esperando impresoras","SSE.Views.ProtectDialog.textExistName":"¡ERROR! Ya existe un rango con ese título","SSE.Views.ProtectDialog.textInvalidName":"El título del rango debe comenzar con una letra y solo puede contener letras, números y espacios.","SSE.Views.ProtectDialog.textInvalidRange":"¡ERROR! Rango de celdas no válido","SSE.Views.ProtectDialog.textSelectData":"Seleccionar datos","SSE.Views.ProtectDialog.txtAllow":"Permitir a todos los usuarios de esta hoja","SSE.Views.ProtectDialog.txtAllowDescription":"Puede desbloquear rangos específicos para su edición.","SSE.Views.ProtectDialog.txtAllowRanges":"Permitir editar rangos","SSE.Views.ProtectDialog.txtAutofilter":"Usar Autofiltro","SSE.Views.ProtectDialog.txtDelCols":"Eliminar columnas","SSE.Views.ProtectDialog.txtDelRows":"Eliminar filas","SSE.Views.ProtectDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.ProtectDialog.txtFormatCells":"Aplicar formato a celdas","SSE.Views.ProtectDialog.txtFormatCols":"Aplicar formato a columnas","SSE.Views.ProtectDialog.txtFormatRows":"Aplicar formato a filas","SSE.Views.ProtectDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","SSE.Views.ProtectDialog.txtInsCols":"Insertar columnas","SSE.Views.ProtectDialog.txtInsHyper":"Insertar enlace","SSE.Views.ProtectDialog.txtInsRows":"Insertar filas","SSE.Views.ProtectDialog.txtObjs":"Editar objetos","SSE.Views.ProtectDialog.txtOptional":"opcional","SSE.Views.ProtectDialog.txtPassword":"Contraseña","SSE.Views.ProtectDialog.txtPivot":"Utilizar tabla y gráfico dinámicos","SSE.Views.ProtectDialog.txtProtect":"Proteger","SSE.Views.ProtectDialog.txtRange":"Rango","SSE.Views.ProtectDialog.txtRangeName":"Título","SSE.Views.ProtectDialog.txtRepeat":"Repita la contraseña","SSE.Views.ProtectDialog.txtScen":"Editar escenarios","SSE.Views.ProtectDialog.txtSelLocked":"Seleccionar celdas bloqueadas","SSE.Views.ProtectDialog.txtSelUnLocked":"Seleccionar celdas desbloqueadas","SSE.Views.ProtectDialog.txtSheetDescription":"Evite los cambios no deseados de otros limitando su capacidad de edición.","SSE.Views.ProtectDialog.txtSheetTitle":"Proteger hoja","SSE.Views.ProtectDialog.txtSort":"Ordenar","SSE.Views.ProtectDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdelo en un lugar seguro.","SSE.Views.ProtectDialog.txtWBDescription":"Para evitar que otros usuarios vean las hojas ocultas, añadan, muevan, eliminen u oculten hojas y cambien el nombre de las mismas, puede proteger la estructura de su libro con una contraseña.","SSE.Views.ProtectDialog.txtWBTitle":"Proteger la estructura del libro","SSE.Views.ProtectedRangesEditDlg.textAnonymous":"Anónimo","SSE.Views.ProtectedRangesEditDlg.textAnyone":"Cualquiera","SSE.Views.ProtectedRangesEditDlg.textCanEdit":"Editar","SSE.Views.ProtectedRangesEditDlg.textCantView":"Denegado","SSE.Views.ProtectedRangesEditDlg.textCanView":"Vista","SSE.Views.ProtectedRangesEditDlg.textInvalidName":"El título del rango debe comenzar con una letra y solo puede contener letras, números y espacios.","SSE.Views.ProtectedRangesEditDlg.textInvalidRange":"¡ERROR! Rango de celdas no válido","SSE.Views.ProtectedRangesEditDlg.textRemove":"Eliminar","SSE.Views.ProtectedRangesEditDlg.textSelectData":"Seleccionar datos","SSE.Views.ProtectedRangesEditDlg.textYou":"usted","SSE.Views.ProtectedRangesEditDlg.txtAccess":"Acceso al rango","SSE.Views.ProtectedRangesEditDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.ProtectedRangesEditDlg.txtProtect":"Proteger","SSE.Views.ProtectedRangesEditDlg.txtRange":"Rango","SSE.Views.ProtectedRangesEditDlg.txtRangeName":"Título","SSE.Views.ProtectedRangesEditDlg.txtYouCanEdit":"Solo usted puede editar este rango","SSE.Views.ProtectedRangesEditDlg.userPlaceholder":"Empiece a escribir nombre o correo electrónico","SSE.Views.ProtectedRangesManagerDlg.guestText":"Invitado","SSE.Views.ProtectedRangesManagerDlg.lockText":"Bloqueado","SSE.Views.ProtectedRangesManagerDlg.textDelete":"Eliminar","SSE.Views.ProtectedRangesManagerDlg.textEdit":"Editar","SSE.Views.ProtectedRangesManagerDlg.textEmpty":"Todavía no se han creado rangos protegidos.
Cree al menos un rango protegido y aparecerá en este campo.","SSE.Views.ProtectedRangesManagerDlg.textFilter":"Filtro","SSE.Views.ProtectedRangesManagerDlg.textFilterAll":"Todos","SSE.Views.ProtectedRangesManagerDlg.textNew":"Nuevo","SSE.Views.ProtectedRangesManagerDlg.textProtect":"Proteger hoja","SSE.Views.ProtectedRangesManagerDlg.textRange":"Rango","SSE.Views.ProtectedRangesManagerDlg.textRangesDesc":"Puede restringir la edición o visualización de rangos a las personas seleccionadas.","SSE.Views.ProtectedRangesManagerDlg.textTitle":"Título","SSE.Views.ProtectedRangesManagerDlg.tipIsLocked":"Este elemento lo está editando otro usuario.","SSE.Views.ProtectedRangesManagerDlg.txtAccess":"Acceso","SSE.Views.ProtectedRangesManagerDlg.txtDenied":"Denegado","SSE.Views.ProtectedRangesManagerDlg.txtEdit":"Editar","SSE.Views.ProtectedRangesManagerDlg.txtEditRange":"Editar rango","SSE.Views.ProtectedRangesManagerDlg.txtNewRange":"Nuevo rango","SSE.Views.ProtectedRangesManagerDlg.txtTitle":"Rangos protegidos","SSE.Views.ProtectedRangesManagerDlg.txtView":"Ver","SSE.Views.ProtectedRangesManagerDlg.warnDelete":"¿Está seguro de que desea eliminar el rango protegido {0}?
Cualquiera que tenga acceso de edición a la hoja de cálculo podrá editar el contenido del rango.","SSE.Views.ProtectedRangesManagerDlg.warnDeleteRanges":"¿Está seguro de que desea eliminar los rangos protegidos?
Cualquiera que tenga acceso de edición a la hoja de cálculo podrá editar el contenido de esos rangos.","SSE.Views.ProtectRangesDlg.guestText":"Invitado","SSE.Views.ProtectRangesDlg.lockText":"Bloqueado","SSE.Views.ProtectRangesDlg.textDelete":"Eliminar","SSE.Views.ProtectRangesDlg.textEdit":"Editar","SSE.Views.ProtectRangesDlg.textEmpty":"No hay rangos permitidos para la edición.","SSE.Views.ProtectRangesDlg.textNew":"Nuevo","SSE.Views.ProtectRangesDlg.textProtect":"Proteger hoja","SSE.Views.ProtectRangesDlg.textPwd":"Contraseña","SSE.Views.ProtectRangesDlg.textRange":"Rango","SSE.Views.ProtectRangesDlg.textRangesDesc":"Rangos desbloqueados por una contraseña cuando la hoja está protegida (esto funciona solo para las celdas bloqueadas)","SSE.Views.ProtectRangesDlg.textTitle":"Título","SSE.Views.ProtectRangesDlg.tipIsLocked":"Este elemento se está editando por otro usuario.","SSE.Views.ProtectRangesDlg.txtEditRange":"Editar rango","SSE.Views.ProtectRangesDlg.txtNewRange":"Nuevo rango","SSE.Views.ProtectRangesDlg.txtNo":"No","SSE.Views.ProtectRangesDlg.txtTitle":"Permitir a los usuarios editar rangos","SSE.Views.ProtectRangesDlg.txtYes":"Sí","SSE.Views.ProtectRangesDlg.warnDelete":"¿Esta seguro de que quiere borrar el nombre {0}?","SSE.Views.RemoveDuplicatesDialog.textColumns":"Columnas","SSE.Views.RemoveDuplicatesDialog.textDescription":"Para eliminar los valores duplicados, seleccione una o más columnas que contengan duplicados.","SSE.Views.RemoveDuplicatesDialog.textHeaders":"Mis datos tienen encabezados","SSE.Views.RemoveDuplicatesDialog.textSelectAll":"Seleccionar todo","SSE.Views.RemoveDuplicatesDialog.txtTitle":"Eliminar duplicados","SSE.Views.RightMenu.ariaRightMenu":"Menú de la derecha","SSE.Views.RightMenu.txtCellSettings":"Ajustes de celda","SSE.Views.RightMenu.txtChartSettings":"Ajustes de gráfico","SSE.Views.RightMenu.txtImageSettings":"Ajustes de imagen","SSE.Views.RightMenu.txtParagraphSettings":"Ajustes de párrafo","SSE.Views.RightMenu.txtPivotSettings":"Ajustes de tabla dinámica","SSE.Views.RightMenu.txtSettings":"Ajustes comunes","SSE.Views.RightMenu.txtShapeSettings":"Ajustes de forma","SSE.Views.RightMenu.txtSignatureSettings":"Configuración de firma","SSE.Views.RightMenu.txtSlicerSettings":"Ajustes de segmentación de datos","SSE.Views.RightMenu.txtSparklineSettings":"Ajustes de Sparkline","SSE.Views.RightMenu.txtTextArtSettings":"Ajustes de galería de texto","SSE.Views.ScaleDialog.textAuto":"Auto","SSE.Views.ScaleDialog.textError":"El valor introducido es incorrecto.","SSE.Views.ScaleDialog.textFewPages":"páginas","SSE.Views.ScaleDialog.textFitTo":"Ajustar a","SSE.Views.ScaleDialog.textHeight":"Altura","SSE.Views.ScaleDialog.textManyPages":"páginas","SSE.Views.ScaleDialog.textOnePage":"página","SSE.Views.ScaleDialog.textScaleTo":"Ajustar a","SSE.Views.ScaleDialog.textTitle":"Ajustes de escala","SSE.Views.ScaleDialog.textWidth":"Ancho","SSE.Views.SetValueDialog.txtMaxText":"El valor máximo para este campo es {0}","SSE.Views.SetValueDialog.txtMinText":"El valor mínimo para este campo es {0}","SSE.Views.ShapeSettings.strBackground":"Color de fondo","SSE.Views.ShapeSettings.strChange":"Cambiar forma","SSE.Views.ShapeSettings.strColor":"Color","SSE.Views.ShapeSettings.strFill":"Relleno","SSE.Views.ShapeSettings.strForeground":"Color de primer plano","SSE.Views.ShapeSettings.strPattern":"Patrón","SSE.Views.ShapeSettings.strShadow":"Mostrar sombra","SSE.Views.ShapeSettings.strSize":"Tamaño","SSE.Views.ShapeSettings.strStroke":"Línea","SSE.Views.ShapeSettings.strTransparency":"Opacidad ","SSE.Views.ShapeSettings.strType":"Type","SSE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","SSE.Views.ShapeSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.ShapeSettings.textAngle":"Ángulo","SSE.Views.ShapeSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","SSE.Views.ShapeSettings.textColor":"Relleno de color","SSE.Views.ShapeSettings.textDirection":"Dirección ","SSE.Views.ShapeSettings.textEditPoints":"Modificar puntos","SSE.Views.ShapeSettings.textEditShape":"Editar forma","SSE.Views.ShapeSettings.textEmptyPattern":"Sin patrón","SSE.Views.ShapeSettings.textEyedropper":"Cuentagotas","SSE.Views.ShapeSettings.textFlip":"Volteo","SSE.Views.ShapeSettings.textFromFile":"Desde archivo","SSE.Views.ShapeSettings.textFromStorage":"Desde almacenamiento","SSE.Views.ShapeSettings.textFromUrl":"Desde URL","SSE.Views.ShapeSettings.textGradient":"Puntos de gradiente","SSE.Views.ShapeSettings.textGradientFill":"Relleno degradado","SSE.Views.ShapeSettings.textHint270":"Girar 90° a la izquierda","SSE.Views.ShapeSettings.textHint90":"Girar 90° a la derecha","SSE.Views.ShapeSettings.textHintFlipH":"Voltear horizontalmente","SSE.Views.ShapeSettings.textHintFlipV":"Voltear verticalmente","SSE.Views.ShapeSettings.textImageTexture":"Imagen o textura","SSE.Views.ShapeSettings.textLinear":"Lineal","SSE.Views.ShapeSettings.textMoreColors":"Más colores","SSE.Views.ShapeSettings.textNoFill":"Sin relleno","SSE.Views.ShapeSettings.textNoShadow":"Sin sombra","SSE.Views.ShapeSettings.textOriginalSize":"Tamaño original","SSE.Views.ShapeSettings.textPatternFill":"Patrón","SSE.Views.ShapeSettings.textPosition":"Posición","SSE.Views.ShapeSettings.textRadial":"Radial","SSE.Views.ShapeSettings.textRecentlyUsed":"Usados recientemente","SSE.Views.ShapeSettings.textRotate90":"Girar 90°","SSE.Views.ShapeSettings.textRotation":"Rotación","SSE.Views.ShapeSettings.textSelectImage":"Seleccionar imagen","SSE.Views.ShapeSettings.textSelectTexture":"Seleccionar","SSE.Views.ShapeSettings.textShadow":"Sombra","SSE.Views.ShapeSettings.textStretch":"Estirar","SSE.Views.ShapeSettings.textStyle":"Estilo","SSE.Views.ShapeSettings.textTexture":"Desde textura","SSE.Views.ShapeSettings.textTile":"Mosaico","SSE.Views.ShapeSettings.tipAddGradientPoint":"Añadir punto de degradado","SSE.Views.ShapeSettings.tipRemoveGradientPoint":"Eliminar gradiente de punto","SSE.Views.ShapeSettings.txtBrownPaper":"Papel marrón","SSE.Views.ShapeSettings.txtCanvas":"Lienzo","SSE.Views.ShapeSettings.txtCarton":"Cartón","SSE.Views.ShapeSettings.txtDarkFabric":"Tela oscura","SSE.Views.ShapeSettings.txtGrain":"Grano","SSE.Views.ShapeSettings.txtGranite":"Granito","SSE.Views.ShapeSettings.txtGreyPaper":"Papel gris","SSE.Views.ShapeSettings.txtKnit":"Tejido","SSE.Views.ShapeSettings.txtLeather":"Piel","SSE.Views.ShapeSettings.txtNoBorders":"Sin línea","SSE.Views.ShapeSettings.txtOffsetBottom":"Desplazamiento: Abajo","SSE.Views.ShapeSettings.txtOffsetBottomLeft":"Desplazamiento: Abajo a la izquierda","SSE.Views.ShapeSettings.txtOffsetBottomRight":"Desplazamiento: Abajo a la derecha","SSE.Views.ShapeSettings.txtOffsetCenter":"Desplazamiento: Al centro","SSE.Views.ShapeSettings.txtOffsetLeft":"Desplazamiento: A la izquierda","SSE.Views.ShapeSettings.txtOffsetRight":"Desplazamiento: A la derecha","SSE.Views.ShapeSettings.txtOffsetTop":"Desplazamiento: Arriba","SSE.Views.ShapeSettings.txtOffsetTopLeft":"Desplazamiento: Arriba a la izquierda","SSE.Views.ShapeSettings.txtOffsetTopRight":"Desplazamiento: Arriba a la derecha","SSE.Views.ShapeSettings.txtPapyrus":"Papiro","SSE.Views.ShapeSettings.txtWood":"Madera","SSE.Views.ShapeSettingsAdvanced.strColumns":"Columnas","SSE.Views.ShapeSettingsAdvanced.strMargins":"Espaciado del texto","SSE.Views.ShapeSettingsAdvanced.textAbsolute":"No mover, ni cambiar tamaño con celdas","SSE.Views.ShapeSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.ShapeSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.ShapeSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.ShapeSettingsAdvanced.textAltTitle":"Título","SSE.Views.ShapeSettingsAdvanced.textAngle":"Ángulo","SSE.Views.ShapeSettingsAdvanced.textArrows":"Flechas","SSE.Views.ShapeSettingsAdvanced.textAutofit":"Autoajustar","SSE.Views.ShapeSettingsAdvanced.textBeginSize":"Tamaño inicial","SSE.Views.ShapeSettingsAdvanced.textBeginStyle":"Estilo inicial","SSE.Views.ShapeSettingsAdvanced.textBevel":"Biselado","SSE.Views.ShapeSettingsAdvanced.textBottom":"Inferior","SSE.Views.ShapeSettingsAdvanced.textCapType":"Tipo de remate","SSE.Views.ShapeSettingsAdvanced.textColNumber":"Número de columnas","SSE.Views.ShapeSettingsAdvanced.textEndSize":"Tamaño final","SSE.Views.ShapeSettingsAdvanced.textEndStyle":"Estilo final","SSE.Views.ShapeSettingsAdvanced.textFlat":"Plano","SSE.Views.ShapeSettingsAdvanced.textFlipped":"Volteado","SSE.Views.ShapeSettingsAdvanced.textHeight":"Altura","SSE.Views.ShapeSettingsAdvanced.textHorizontally":"Horizontalmente","SSE.Views.ShapeSettingsAdvanced.textJoinType":"Tipo de combinación","SSE.Views.ShapeSettingsAdvanced.textKeepRatio":"Proporciones constantes","SSE.Views.ShapeSettingsAdvanced.textLeft":"Izquierdo","SSE.Views.ShapeSettingsAdvanced.textLineStyle":"Estilo de línea","SSE.Views.ShapeSettingsAdvanced.textMiter":"Ángulo","SSE.Views.ShapeSettingsAdvanced.textOneCell":"Mover sin cambiar tamaño con celdas","SSE.Views.ShapeSettingsAdvanced.textOverflow":"Permitir que el texto desborde la forma","SSE.Views.ShapeSettingsAdvanced.textResizeFit":"Ajustar tamaño de la forma al texto","SSE.Views.ShapeSettingsAdvanced.textRight":"Derecho","SSE.Views.ShapeSettingsAdvanced.textRotation":"Rotación","SSE.Views.ShapeSettingsAdvanced.textRound":"Redondeado","SSE.Views.ShapeSettingsAdvanced.textSize":"Tamaño","SSE.Views.ShapeSettingsAdvanced.textSnap":"Ajustar a la celda","SSE.Views.ShapeSettingsAdvanced.textSpacing":"Espacio entre columnas","SSE.Views.ShapeSettingsAdvanced.textSquare":"Cuadrado","SSE.Views.ShapeSettingsAdvanced.textTextBox":"Cuadro de texto","SSE.Views.ShapeSettingsAdvanced.textTitle":"Forma - Ajustes avanzados","SSE.Views.ShapeSettingsAdvanced.textTop":"Superior","SSE.Views.ShapeSettingsAdvanced.textTwoCell":"Mover y cambiar tamaño con celdas","SSE.Views.ShapeSettingsAdvanced.textVertically":"Verticalmente","SSE.Views.ShapeSettingsAdvanced.textWeightArrows":"Grosores y flechas","SSE.Views.ShapeSettingsAdvanced.textWidth":"Ancho","SSE.Views.SignatureSettings.notcriticalErrorTitle":"Aviso","SSE.Views.SignatureSettings.strDelete":"Eliminar la firma","SSE.Views.SignatureSettings.strDetails":"Detalles de la firma","SSE.Views.SignatureSettings.strInvalid":"Firmas inválidas","SSE.Views.SignatureSettings.strRequested":"Firmas requeridas","SSE.Views.SignatureSettings.strSetup":"Configuración de la firma","SSE.Views.SignatureSettings.strSign":"Firmar","SSE.Views.SignatureSettings.strSignature":"Firma","SSE.Views.SignatureSettings.strSigner":"Firmante","SSE.Views.SignatureSettings.strValid":"Firmas válidas","SSE.Views.SignatureSettings.txtContinueEditing":"Editar de todas maneras","SSE.Views.SignatureSettings.txtEditWarning":"La edición eliminará las firmas de la hoja de cálculo
¿Está seguro de que quiere continuar?","SSE.Views.SignatureSettings.txtRemoveWarning":"¿Desea eliminar esta firma?
No se puede deshacer.","SSE.Views.SignatureSettings.txtRequestedSignatures":"Esta hoja de cálculo debe firmarse.","SSE.Views.SignatureSettings.txtSigned":"Se han añadido firmas válidas a la hoja de cálculo. La hoja de cálculo está protegida contra la edición.","SSE.Views.SignatureSettings.txtSignedInvalid":"Algunas de las firmas digitales en la hoja de cálculo son inválidas o no se pudieron verificar. La hoja de cálculo está protegida y no se puede editar.","SSE.Views.SlicerAddDialog.textColumns":"Columnas","SSE.Views.SlicerAddDialog.txtTitle":"Insertar segmentaciones de datos","SSE.Views.SlicerSettings.strHideNoData":"Ocultar elementos sin datos","SSE.Views.SlicerSettings.strIndNoData":"Indicar visualmente los elementos sin datos","SSE.Views.SlicerSettings.strShowDel":"Mostrar elementos eliminados del origen de datos","SSE.Views.SlicerSettings.strShowNoData":"Mostrar elementos sin datos al final","SSE.Views.SlicerSettings.strSorting":"Ordenar y filtrar","SSE.Views.SlicerSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.SlicerSettings.textAsc":"Ascendente","SSE.Views.SlicerSettings.textAZ":"De A a Z","SSE.Views.SlicerSettings.textButtons":"Botones","SSE.Views.SlicerSettings.textColumns":"Columnas","SSE.Views.SlicerSettings.textDesc":"Descendente","SSE.Views.SlicerSettings.textHeight":"Altura","SSE.Views.SlicerSettings.textHor":"Horizontal ","SSE.Views.SlicerSettings.textKeepRatio":"Proporciones constantes","SSE.Views.SlicerSettings.textLargeSmall":"de mayor a menor","SSE.Views.SlicerSettings.textLock":"Deshabilitar cambiar tamaño or mover","SSE.Views.SlicerSettings.textNewOld":"de más recientes a más antiguos","SSE.Views.SlicerSettings.textOldNew":"de más antiguos a más recientes","SSE.Views.SlicerSettings.textPosition":"Posición","SSE.Views.SlicerSettings.textSize":"Tamaño","SSE.Views.SlicerSettings.textSmallLarge":"de menor a mayor","SSE.Views.SlicerSettings.textStyle":"Estilo","SSE.Views.SlicerSettings.textVert":"Vertical","SSE.Views.SlicerSettings.textWidth":"Ancho","SSE.Views.SlicerSettings.textZA":"De Z a A","SSE.Views.SlicerSettingsAdvanced.strButtons":"Botones","SSE.Views.SlicerSettingsAdvanced.strColumns":"Columnas","SSE.Views.SlicerSettingsAdvanced.strHeight":"Altura","SSE.Views.SlicerSettingsAdvanced.strHideNoData":"Ocultar elementos sin datos","SSE.Views.SlicerSettingsAdvanced.strIndNoData":"Indicar visualmente los elementos sin datos","SSE.Views.SlicerSettingsAdvanced.strReferences":"Referencias","SSE.Views.SlicerSettingsAdvanced.strShowDel":"Mostrar elementos eliminados del origen de datos","SSE.Views.SlicerSettingsAdvanced.strShowHeader":"Mostrar encabezado","SSE.Views.SlicerSettingsAdvanced.strShowNoData":"Mostrar elementos sin datos al final","SSE.Views.SlicerSettingsAdvanced.strSize":"Tamaño","SSE.Views.SlicerSettingsAdvanced.strSorting":"Ordenar y filtrar","SSE.Views.SlicerSettingsAdvanced.strStyle":"Estilo","SSE.Views.SlicerSettingsAdvanced.strStyleSize":"Estilo y tamaño","SSE.Views.SlicerSettingsAdvanced.strWidth":"Ancho","SSE.Views.SlicerSettingsAdvanced.textAbsolute":"No mover, ni cambiar tamaño con celdas","SSE.Views.SlicerSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.SlicerSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.SlicerSettingsAdvanced.textAltTip":"RRepresentación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.SlicerSettingsAdvanced.textAltTitle":"Título","SSE.Views.SlicerSettingsAdvanced.textAsc":"Ascendente","SSE.Views.SlicerSettingsAdvanced.textAZ":"De A a Z","SSE.Views.SlicerSettingsAdvanced.textDesc":"Descendente","SSE.Views.SlicerSettingsAdvanced.textFormulaName":"Nombre para utilizar en fórmulas","SSE.Views.SlicerSettingsAdvanced.textHeader":"Encabezado","SSE.Views.SlicerSettingsAdvanced.textKeepRatio":"Proporciones constantes","SSE.Views.SlicerSettingsAdvanced.textLargeSmall":"de mayor a menor","SSE.Views.SlicerSettingsAdvanced.textName":"Nombre","SSE.Views.SlicerSettingsAdvanced.textNewOld":"de más recientes a más antiguos","SSE.Views.SlicerSettingsAdvanced.textOldNew":"de más antiguos a más recientes","SSE.Views.SlicerSettingsAdvanced.textOneCell":"Mover sin cambiar tamaño con celdas","SSE.Views.SlicerSettingsAdvanced.textSmallLarge":"de menor a mayor","SSE.Views.SlicerSettingsAdvanced.textSnap":"Ajustar a la celda","SSE.Views.SlicerSettingsAdvanced.textSort":"Ordenar","SSE.Views.SlicerSettingsAdvanced.textSourceName":"Nombre de origen","SSE.Views.SlicerSettingsAdvanced.textTitle":"Segmentación de datos - Ajustes avanzados","SSE.Views.SlicerSettingsAdvanced.textTwoCell":"Mover y cambiar tamaño con celdas","SSE.Views.SlicerSettingsAdvanced.textZA":"De Z a A","SSE.Views.SlicerSettingsAdvanced.txtEmpty":"Este campo es obligatorio","SSE.Views.SolverDlg.textAdd":"Añadir","SSE.Views.SolverDlg.textBin":"bin","SSE.Views.SolverDlg.textConfirmChangeMethod":"No podrá volver al método %1 si ejecuta Solver.","SSE.Views.SolverDlg.textConfirmReset":"¿Restablecer todas las opciones del solucionador y las selecciones de celdas?","SSE.Views.SolverDlg.textConstraints":"Sujeto a las restricciones","SSE.Views.SolverDlg.textDataRange":"Problema por resolver no especificado.","SSE.Views.SolverDlg.textDelete":"Eliminar","SSE.Views.SolverDlg.textDif":"dif","SSE.Views.SolverDlg.textEdit":"Cambiar","SSE.Views.SolverDlg.textEmptyList":"Aún no se han creado restricciones.
Cree al menos una y aparecerá en esta lista.","SSE.Views.SolverDlg.textEvolutionary":"Evolutivo","SSE.Views.SolverDlg.textInt":"int","SSE.Views.SolverDlg.textManyVarCells":"Demasiadas celdas variables.","SSE.Views.SolverDlg.textMax":"Máx.","SSE.Views.SolverDlg.textMethod":"Método de solución","SSE.Views.SolverDlg.textMethodDesc":"El motor LP Simplex se utiliza para resolver problemas lineales.","SSE.Views.SolverDlg.textMin":"Mín.","SSE.Views.SolverDlg.textMustContainFormula":"El contenido objetivo de las celdas debe ser una fórmula.","SSE.Views.SolverDlg.textMustSingleCell":"La celda objetivo debe ser una celda única en la hoja activa.","SSE.Views.SolverDlg.textNonlinear":"Método no lineal GRG","SSE.Views.SolverDlg.textNonNegative":"Hacer que las variables sin restricciones sean no negativas","SSE.Views.SolverDlg.textNotSupported":"Los métodos no lineales o evolutivos aún no son compatibles. Si los necesita, %1","SSE.Views.SolverDlg.textObjective":"Establecer objetivo","SSE.Views.SolverDlg.textOptions":"Opciones","SSE.Views.SolverDlg.textReadMore":"Más información","SSE.Views.SolverDlg.textReset":"Restablecer","SSE.Views.SolverDlg.textResetAll":"Restablecer todo","SSE.Views.SolverDlg.textSelectData":"Seleccionar datos","SSE.Views.SolverDlg.textSimplex":"Simplex LP","SSE.Views.SolverDlg.textSolve":"Solucionar","SSE.Views.SolverDlg.textTellUs":"cuéntenoslo","SSE.Views.SolverDlg.textTitle":"Parámetros de Solver","SSE.Views.SolverDlg.textTo":"Para","SSE.Views.SolverDlg.textUnsupportedConstraints":"Algunas de las restricciones contienen relaciones int, bin o dif no compatibles.
Por favor, elimine estas relaciones o cámbielas por relaciones compatibles <=, =, >=.","SSE.Views.SolverDlg.textValueOf":"Valor de","SSE.Views.SolverDlg.textVars":"Al cambiar la celda variable","SSE.Views.SolverDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.SolverDlg.txtErrorNumber":"No se puede utilizar su entrada. Es posible que se requiera un número entero o decimal.","SSE.Views.SolverMethodDialog.txtAutoScale":"Usar escalado automático","SSE.Views.SolverMethodDialog.txtIgnore":"Ignorar restricciones de enteros","SSE.Views.SolverMethodDialog.txtIterations":"Iteraciones","SSE.Views.SolverMethodDialog.txtIterationsInvalid":"Las iteraciones deben ser un número positivo.","SSE.Views.SolverMethodDialog.txtMaxTime":"Tiempo máximo (segundos)","SSE.Views.SolverMethodDialog.txtMaxTimeInvalid":"El tiempo máximo debe ser un número positivo.","SSE.Views.SolverMethodDialog.txtOptimality":"Optimalidad de enteros (%)","SSE.Views.SolverMethodDialog.txtOptimalityInvalid":"La tolerancia de los enteros debe ser un número positivo pequeño.","SSE.Views.SolverMethodDialog.txtPrecision":"Precisión de restricción","SSE.Views.SolverMethodDialog.txtPrecisionInvalid":"La precisión debe ser un número positivo pequeño.","SSE.Views.SolverMethodDialog.txtSolverInt":"Solución con restricciones enteras","SSE.Views.SolverMethodDialog.txtSolverLimits":"Limitaciones de solución","SSE.Views.SolverMethodDialog.txtTitle":"Opciones del método","SSE.Views.SolverResultsDlg.txtCantImprove":"Solver no puede mejorar la solución actual. Se cumplen todas las restricciones.","SSE.Views.SolverResultsDlg.txtCantImproveDesc":"Cuando se utiliza el motor evolutivo, esto significa que Solver se ha detenido porque no puede encontrar una solución mejor en el tiempo dado.","SSE.Views.SolverResultsDlg.txtConverged":"Solver ha convergido en la solución actual. Se cumplen todas las restricciones.","SSE.Views.SolverResultsDlg.txtConvergedDesc":"Solver ha realizado 5 iteraciones en las que el objetivo no ha variado significativamente. Pruebe con una configuración de convergencia más pequeña o con un punto de partida diferente.","SSE.Views.SolverResultsDlg.txtErrorModel":"Error en el modelo. Compruebe que todas las celdas y restricciones sean válidas.","SSE.Views.SolverResultsDlg.txtErrorModelDesc":"Quizás algunas celdas que no son celdas variables estén marcadas como enteras, binarias o todas diferentes.","SSE.Views.SolverResultsDlg.txtErrorVal":"Solver ha encontrado un valor erróneo en la celda Objetivo o en una celda de restricción.","SSE.Views.SolverResultsDlg.txtErrorValDesc":"Una de las celdas de la hoja de cálculo se ha convertido en un valor de error cuando Solver ha probado determinados valores para las celdas variables.","SSE.Views.SolverResultsDlg.txtIntSolution":"Solver ha encontrado una solución entera dentro de la tolerancia. Se cumplen todas las restricciones.","SSE.Views.SolverResultsDlg.txtIntSolutionDesc":"Es posible que existan soluciones enteras mejores. Para asegurarse de que Solver encuentre la mejor solución, establezca la tolerancia de los enteros en el cuadro de diálogo de opciones en 0 %.","SSE.Views.SolverResultsDlg.txtKeep":"Mantener la solución obtenida","SSE.Views.SolverResultsDlg.txtLineConditions":"Las condiciones de linealidad requeridas por este LP Solver no se cumplen.","SSE.Views.SolverResultsDlg.txtLineConditionsDesc":"Cree un informe de linealidad para ver dónde está el problema, o cambie al motor GRG.","SSE.Views.SolverResultsDlg.txtNoFeasible":"Solver no ha podido encontrar una solución viable.","SSE.Views.SolverResultsDlg.txtNoFeasibleDesc":"Solver no puede encontrar un punto que satisfaga todas las restricciones.","SSE.Views.SolverResultsDlg.txtNotConverge":"Los valores de la celda Objetivo no convergen.","SSE.Views.SolverResultsDlg.txtNotConvergeDesc":"Solver puede hacer que la celda Objetivo sea tan grande (o pequeña, cuando se minimiza) como desee.","SSE.Views.SolverResultsDlg.txtNotEnoughMemory":"No hay suficiente memoria disponible para resolver el problema.","SSE.Views.SolverResultsDlg.txtOpenParams":"Volver al cuadro de diálogo de parámetros del solucionador","SSE.Views.SolverResultsDlg.txtOptimalSolution":"Solver ha encontrado una solución. Se cumplen todas las restricciones y condiciones de optimización.","SSE.Views.SolverResultsDlg.txtOptimalSolutionDesc":"Cuando se utiliza Simplex LP, significa que Solver ha encontrado una solución óptima global.","SSE.Views.SolverResultsDlg.txtRestore":"Restaurar valores originales","SSE.Views.SolverResultsDlg.txtStopped":"Solver se ha detenido a petición del usuario.","SSE.Views.SolverResultsDlg.txtStoppedDesc":"Solver se ha detenido antes de encontrar una solución óptima global. Se proporcionará la mejor solución encontrada, si la hay.","SSE.Views.SolverResultsDlg.txtTitle":"Resultados de Solver","SSE.Views.SortDialog.errorEmpty":"Todos los criterios de clasificación deben tener una columna o fila especificada.","SSE.Views.SortDialog.errorMoreOneCol":"Se ha seleccionado más de una columna.","SSE.Views.SortDialog.errorMoreOneRow":"Se ha seleccionado más de una fila.","SSE.Views.SortDialog.errorNotOriginalCol":"La columna que ha seleccionado no está en el rango seleccionado originalmente.","SSE.Views.SortDialog.errorNotOriginalRow":"La fila que ha seleccionado no está en el rango seleccionado originalmente. ","SSE.Views.SortDialog.errorSameColumnColor":"%1 está siendo clasificado por el mismo color más de una vez. Elimine los criterios de clasificación duplicados y vuelva a intentarlo.","SSE.Views.SortDialog.errorSameColumnValue":"%1 está siendo ordenado por valores más de una vez.
Elimine los criterios de clasificación duplicados y vuelva a intentarlo.","SSE.Views.SortDialog.textAsc":"Ascendente","SSE.Views.SortDialog.textAuto":"Automático","SSE.Views.SortDialog.textAZ":"De A a Z","SSE.Views.SortDialog.textBelow":"Debajo","SSE.Views.SortDialog.textBtnCopy":"Copiar ","SSE.Views.SortDialog.textBtnDelete":"Eliminar","SSE.Views.SortDialog.textBtnNew":"Nuevo","SSE.Views.SortDialog.textCellColor":"Color de la celda","SSE.Views.SortDialog.textColumn":"Columna","SSE.Views.SortDialog.textDesc":"Descendente","SSE.Views.SortDialog.textDown":"Mover el nivel hacia abajo","SSE.Views.SortDialog.textFontColor":"Color de la fuente","SSE.Views.SortDialog.textLeft":"Izquierdo","SSE.Views.SortDialog.textLevels":"Niveles","SSE.Views.SortDialog.textMoreCols":"(Añadir columnas...)","SSE.Views.SortDialog.textMoreRows":"(Añadir filas...)","SSE.Views.SortDialog.textNone":"Ninguno","SSE.Views.SortDialog.textOptions":"Opciones","SSE.Views.SortDialog.textOrder":"Ordenar","SSE.Views.SortDialog.textRight":"Derecho","SSE.Views.SortDialog.textRow":"Fila","SSE.Views.SortDialog.textSort":"Ordenar según","SSE.Views.SortDialog.textSortBy":"Ordenar por","SSE.Views.SortDialog.textThenBy":"Luego por","SSE.Views.SortDialog.textTop":"Superior","SSE.Views.SortDialog.textUp":"Mover el nivel hacia arriba","SSE.Views.SortDialog.textValues":"Valores","SSE.Views.SortDialog.textZA":"De Z a A","SSE.Views.SortDialog.txtInvalidRange":"Rango de celdas inválido.","SSE.Views.SortDialog.txtTitle":"Ordenar","SSE.Views.SortFilterDialog.textAsc":"Ascendente (de A a Z) por","SSE.Views.SortFilterDialog.textDesc":"Descendente (de Z a A) por","SSE.Views.SortFilterDialog.textNoSort":"Sin clasificación","SSE.Views.SortFilterDialog.txtTitle":"Ordenar","SSE.Views.SortFilterDialog.txtTitleValue":"Ordenar por valor","SSE.Views.SortOptionsDialog.textCase":"Distinguir mayúsculas y minúsculas","SSE.Views.SortOptionsDialog.textHeaders":"Mis datos tienen encabezados","SSE.Views.SortOptionsDialog.textLeftRight":"Ordenar de izquierda a derecha","SSE.Views.SortOptionsDialog.textOrientation":"Orientación ","SSE.Views.SortOptionsDialog.textTitle":"Opciones de ordenación","SSE.Views.SortOptionsDialog.textTopBottom":"Ordenar de arriba hacia abajo","SSE.Views.SpecialPasteDialog.textAdd":"Añadir","SSE.Views.SpecialPasteDialog.textAll":"Todo","SSE.Views.SpecialPasteDialog.textBlanks":"Saltar blancos","SSE.Views.SpecialPasteDialog.textColWidth":"Anchos de columna","SSE.Views.SpecialPasteDialog.textComments":"Comentarios","SSE.Views.SpecialPasteDialog.textDiv":"Dividir","SSE.Views.SpecialPasteDialog.textFFormat":"Fórmulas y formato","SSE.Views.SpecialPasteDialog.textFNFormat":"Fórmulas y formatos de número","SSE.Views.SpecialPasteDialog.textFormats":"Formatos","SSE.Views.SpecialPasteDialog.textFormulas":"Fórmulas ","SSE.Views.SpecialPasteDialog.textFWidth":"Fórmulas y anchos de columna","SSE.Views.SpecialPasteDialog.textMult":"Multiplicar","SSE.Views.SpecialPasteDialog.textNone":"Ninguno","SSE.Views.SpecialPasteDialog.textOperation":"Operación","SSE.Views.SpecialPasteDialog.textPaste":"Pegar","SSE.Views.SpecialPasteDialog.textSub":"Restar","SSE.Views.SpecialPasteDialog.textTitle":"Pegado especial","SSE.Views.SpecialPasteDialog.textTranspose":"Transponer","SSE.Views.SpecialPasteDialog.textValues":"Valores","SSE.Views.SpecialPasteDialog.textVFormat":"Valores y formato","SSE.Views.SpecialPasteDialog.textVNFormat":"Valores y formatos de número","SSE.Views.SpecialPasteDialog.textWBorders":"Todo excepto los bordes","SSE.Views.Spellcheck.noSuggestions":"No hay sugerencias","SSE.Views.Spellcheck.textChange":"Cambiar","SSE.Views.Spellcheck.textChangeAll":"Cambiar todo","SSE.Views.Spellcheck.textIgnore":"Ignorar","SSE.Views.Spellcheck.textIgnoreAll":"Ignorar todo","SSE.Views.Spellcheck.txtAddToDictionary":"Añadir al diccionario","SSE.Views.Spellcheck.txtClosePanel":"Cerrar corrección ortográfica","SSE.Views.Spellcheck.txtComplete":"La corrección ortográfica se ha completado","SSE.Views.Spellcheck.txtDictionaryLanguage":"Idioma del diccionario","SSE.Views.Spellcheck.txtNextTip":"Ir a la siguiente palabra","SSE.Views.Spellcheck.txtSpelling":"Ortografía","SSE.Views.Statusbar.CopyDialog.itemMoveToEnd":"(Mover al final)","SSE.Views.Statusbar.CopyDialog.textCreateCopy":"Crear una copia","SSE.Views.Statusbar.CopyDialog.textCreateNewSpreadsheet":"(Crear nueva hoja de cálculo)","SSE.Views.Statusbar.CopyDialog.textMoveBefore":"Desplazar delante de hoja","SSE.Views.Statusbar.CopyDialog.textSpreadsheet":"Hoja de cálculo","SSE.Views.Statusbar.filteredRecordsText":"Registros filtrados: {0} de {1}","SSE.Views.Statusbar.filteredText":"Modo de filtro","SSE.Views.Statusbar.itemAverage":"Promedio","SSE.Views.Statusbar.itemCount":"Contar","SSE.Views.Statusbar.itemDelete":"Eliminar","SSE.Views.Statusbar.itemHidden":"Oculto","SSE.Views.Statusbar.itemHide":"Ocultar","SSE.Views.Statusbar.itemInsert":"Insertar","SSE.Views.Statusbar.itemMaximum":"Máximo","SSE.Views.Statusbar.itemMinimum":"Mínimo","SSE.Views.Statusbar.itemMoveOrCopy":"Mover o copiar","SSE.Views.Statusbar.itemProtect":"Proteger","SSE.Views.Statusbar.itemRename":"Cambiar nombre","SSE.Views.Statusbar.itemStatus":"Guardando estado","SSE.Views.Statusbar.itemSum":"Suma","SSE.Views.Statusbar.itemTabColor":"Color de la pestaña","SSE.Views.Statusbar.itemUnProtect":"Quitar la protección","SSE.Views.Statusbar.RenameDialog.errNameExists":"Hoja con tal nombre ya existe","SSE.Views.Statusbar.RenameDialog.errNameWrongChar":"El nombre de una hoja no puede contener los siguientes caracteres \\/*?[]: o el carácter ' como primer o último carácter","SSE.Views.Statusbar.RenameDialog.labelSheetName":"Nombre de la hoja","SSE.Views.Statusbar.selectAllSheets":"Seleccionar todas las hojas","SSE.Views.Statusbar.sheetIndexText":"Hoja {0} de {1}","SSE.Views.Statusbar.textAverage":"Promedio","SSE.Views.Statusbar.textCount":"Contar","SSE.Views.Statusbar.textMax":"Máx.","SSE.Views.Statusbar.textMin":"Mín.","SSE.Views.Statusbar.textNewColor":"Más colores","SSE.Views.Statusbar.textNoColor":"Sin color","SSE.Views.Statusbar.textSum":"Suma","SSE.Views.Statusbar.tipAddTab":"Añadir hoja","SSE.Views.Statusbar.tipFirst":"Desplazar hasta la primera hoja","SSE.Views.Statusbar.tipLast":"Desplazar hasta la última hoja","SSE.Views.Statusbar.tipListOfSheets":"Lista de hojas","SSE.Views.Statusbar.tipNext":"Desplazar la lista de hoja a la derecha","SSE.Views.Statusbar.tipPrev":"Desplazar la lista de hoja a la izquierda","SSE.Views.Statusbar.tipZoomFactor":"Ampliación","SSE.Views.Statusbar.tipZoomIn":"Acercar","SSE.Views.Statusbar.tipZoomOut":"Alejar","SSE.Views.Statusbar.ungroupSheets":"Desagrupar hojas","SSE.Views.Statusbar.zoomText":"Ampliación {0}%","SSE.Views.TableDesignTab.deleteColumnText":"Eliminar columna","SSE.Views.TableDesignTab.deleteRowText":"Eliminar fila","SSE.Views.TableDesignTab.deleteTableText":"Eliminar tabla","SSE.Views.TableDesignTab.insertColumnLeftText":"Insertar columna a la izquierda","SSE.Views.TableDesignTab.insertColumnRightText":"Insertar columna a la derecha","SSE.Views.TableDesignTab.insertRowAboveText":"Insertar fila arriba","SSE.Views.TableDesignTab.insertRowBelowText":"Insertar fila abajo","SSE.Views.TableDesignTab.selectColumnData":"Seleccionar datos de columna","SSE.Views.TableDesignTab.selectColumnText":"Seleccionar toda la columna","SSE.Views.TableDesignTab.selectRowText":"Seleccionar fila","SSE.Views.TableDesignTab.selectTableText":"Seleccionar tabla","SSE.Views.TableDesignTab.tipAltText":"Establecer título y descripción alternativos para una tabla.","SSE.Views.TableDesignTab.tipConvertRange":"Convertir esta tabla en un rango regular de celdas.","SSE.Views.TableDesignTab.tipHeaderRow":"Mostrar u ocultar la fila de encabezado en una tabla.","SSE.Views.TableDesignTab.tipInsertPivot":"Insertar tabla dinámica","SSE.Views.TableDesignTab.tipInsertSlicer":"Insertar segmentación de datos","SSE.Views.TableDesignTab.tipRemDuplicates":"Eliminación de líneas duplicadas de una hoja.","SSE.Views.TableDesignTab.tipResize":"Cambiar el tamaño de esta tabla añadiendo o quitando filas y columnas.","SSE.Views.TableDesignTab.tipRowsCols":"Filas y columnas","SSE.Views.TableDesignTab.txtAltText":"Texto alternativo","SSE.Views.TableDesignTab.txtBandedColumns":"Columnas con bandas","SSE.Views.TableDesignTab.txtBandedRows":"Filas con bandas","SSE.Views.TableDesignTab.txtConvertToRange":"Convertir al intervalo ","SSE.Views.TableDesignTab.txtFilterButton":"Botón de filtro","SSE.Views.TableDesignTab.txtFirstColumn":"Primera columna","SSE.Views.TableDesignTab.txtGroupTable_Custom":"Personalizado","SSE.Views.TableDesignTab.txtGroupTable_Dark":"Oscuro","SSE.Views.TableDesignTab.txtGroupTable_Light":"Claro","SSE.Views.TableDesignTab.txtGroupTable_Medium":"Medio","SSE.Views.TableDesignTab.txtHeaderRow":"Fila de encabezado","SSE.Views.TableDesignTab.txtLastColumn":"Última columna","SSE.Views.TableDesignTab.txtPivot":"Tabla dinámica","SSE.Views.TableDesignTab.txtRemDuplicates":"Eliminar duplicados","SSE.Views.TableDesignTab.txtResize":"Tamaño de la tabla","SSE.Views.TableDesignTab.txtRowsCols":"Filas y columnas","SSE.Views.TableDesignTab.txtSlicer":"Segmentación de datos","SSE.Views.TableDesignTab.txtTotalRow":"Fila de totales","SSE.Views.TableOptionsDialog.errorAutoFilterDataRange":"No se puede realizar la operación para el rango de celdas seleccionado.
Seleccione un rango de datos uniforme diferente del existente y vuelva a intentarlo.","SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError":"La operación no se ha podido completar para el rango de celdas seleccionado.
Seleccione un rango de modo que la primera fila de la tabla esté en la misma fila
y la tabla resultante se superponga a la actual.","SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables":"La operación no se ha podido completar para el rango de celdas seleccionado.
Seleccione un rango que no incluye otras tablas.","SSE.Views.TableOptionsDialog.errorMultiCellFormula":"Fórmulas de matriz con celdas múltiples no están permitidas en tablas.","SSE.Views.TableOptionsDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.TableOptionsDialog.txtFormat":"Crear tabla","SSE.Views.TableOptionsDialog.txtInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.TableOptionsDialog.txtNote":"Los encabezados deben permanecer en la misma fila y el rango de la tabla resultante debe superponerse sobre el rango de la tabla original.","SSE.Views.TableOptionsDialog.txtTitle":"Mi tabla tiene encabezados","SSE.Views.TableSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.TableSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.TableSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.TableSettingsAdvanced.textAltTitle":"Título","SSE.Views.TableSettingsAdvanced.textTitle":"Tabla - Ajustes avanzados","SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom":"Personalizado","SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark":"Oscuro","SSE.Views.TableSettingsAdvanced.txtGroupTable_Light":"Claro","SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium":"Medio","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark":"Estilo de tabla oscuro","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight":"Estilo de tabla claro","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium":"Estilo de tabla medio","SSE.Views.TextArtSettings.strBackground":"Color del fondo","SSE.Views.TextArtSettings.strColor":"Color","SSE.Views.TextArtSettings.strFill":"Relleno","SSE.Views.TextArtSettings.strForeground":"Color del primer plano","SSE.Views.TextArtSettings.strPattern":"Patrón","SSE.Views.TextArtSettings.strSize":"Tamaño","SSE.Views.TextArtSettings.strStroke":"Línea","SSE.Views.TextArtSettings.strTransparency":"Opacidad ","SSE.Views.TextArtSettings.strType":"Tipo","SSE.Views.TextArtSettings.textAngle":"Ángulo","SSE.Views.TextArtSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","SSE.Views.TextArtSettings.textColor":"Relleno de color","SSE.Views.TextArtSettings.textDirection":"Dirección ","SSE.Views.TextArtSettings.textEmptyPattern":"Sin patrón","SSE.Views.TextArtSettings.textFromFile":"Desde archivo","SSE.Views.TextArtSettings.textFromUrl":"Desde URL","SSE.Views.TextArtSettings.textGradient":"Puntos de gradiente","SSE.Views.TextArtSettings.textGradientFill":"Relleno degradado","SSE.Views.TextArtSettings.textImageTexture":"Imagen o textura","SSE.Views.TextArtSettings.textLinear":"Lineal","SSE.Views.TextArtSettings.textNoFill":"Sin relleno","SSE.Views.TextArtSettings.textPatternFill":"Patrón","SSE.Views.TextArtSettings.textPosition":"Posición","SSE.Views.TextArtSettings.textRadial":"Radial","SSE.Views.TextArtSettings.textSelectTexture":"Seleccionar","SSE.Views.TextArtSettings.textStretch":"Estirar","SSE.Views.TextArtSettings.textStyle":"Estilo","SSE.Views.TextArtSettings.textTemplate":"Plantilla","SSE.Views.TextArtSettings.textTexture":"Desde textura","SSE.Views.TextArtSettings.textTile":"Mosaico","SSE.Views.TextArtSettings.textTransform":"Transformar","SSE.Views.TextArtSettings.tipAddGradientPoint":"Añadir punto de degradado","SSE.Views.TextArtSettings.tipRemoveGradientPoint":"Eliminar gradiente de punto","SSE.Views.TextArtSettings.txtBrownPaper":"Papel marrón","SSE.Views.TextArtSettings.txtCanvas":"Lienzo","SSE.Views.TextArtSettings.txtCarton":"Cartón","SSE.Views.TextArtSettings.txtDarkFabric":"Tela oscura","SSE.Views.TextArtSettings.txtGrain":"Grano","SSE.Views.TextArtSettings.txtGranite":"Granito","SSE.Views.TextArtSettings.txtGreyPaper":"Papel gris","SSE.Views.TextArtSettings.txtKnit":"Tejido","SSE.Views.TextArtSettings.txtLeather":"Piel","SSE.Views.TextArtSettings.txtNoBorders":"Sin línea","SSE.Views.TextArtSettings.txtPapyrus":"Papiro","SSE.Views.TextArtSettings.txtWood":"Madera","SSE.Views.Toolbar.capBtnAddComment":"Añadir comentario","SSE.Views.Toolbar.capBtnColorSchemas":"Colores","SSE.Views.Toolbar.capBtnComment":"Comentario","SSE.Views.Toolbar.capBtnInsHeader":"Encabezado/Pie de página","SSE.Views.Toolbar.capBtnInsSlicer":"Segmentación de datos","SSE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","SSE.Views.Toolbar.capBtnInsSymbol":"Símbolo","SSE.Views.Toolbar.capBtnMargins":"Márgenes","SSE.Views.Toolbar.capBtnPageBreak":"Saltos","SSE.Views.Toolbar.capBtnPageOrient":"Orientación","SSE.Views.Toolbar.capBtnPageSize":"Tamaño","SSE.Views.Toolbar.capBtnPrintArea":"Área de impresión","SSE.Views.Toolbar.capBtnPrintTitles":"Imprimir títulos","SSE.Views.Toolbar.capBtnScale":"Ajustar área de impresión","SSE.Views.Toolbar.capImgAlign":"Alineación","SSE.Views.Toolbar.capImgBackward":"Enviar hacia atrás","SSE.Views.Toolbar.capImgForward":"Traer adelante","SSE.Views.Toolbar.capImgGroup":"Grupo","SSE.Views.Toolbar.capInsertChart":"Diagrama","SSE.Views.Toolbar.capInsertChartRecommend":"Gráfico recomendado","SSE.Views.Toolbar.capInsertEquation":"Ecuación","SSE.Views.Toolbar.capInsertHyperlink":"Enlace","SSE.Views.Toolbar.capInsertImage":"Imagen","SSE.Views.Toolbar.capInsertShape":"Forma","SSE.Views.Toolbar.capInsertSpark":"Minigráfico","SSE.Views.Toolbar.capInsertTable":"Tabla","SSE.Views.Toolbar.capInsertText":"Cuadro de texto","SSE.Views.Toolbar.capInsertTextart":"Galería de texto","SSE.Views.Toolbar.capShapesMerge":"Fusionar formas","SSE.Views.Toolbar.mniCapitalizeWords":"Poner en mayúsculas cada palabra","SSE.Views.Toolbar.mniImageFromFile":"Imagen desde archivo","SSE.Views.Toolbar.mniImageFromStorage":"Imagen desde almacenamiento","SSE.Views.Toolbar.mniImageFromUrl":"Imagen desde url","SSE.Views.Toolbar.mniLowerCase":"minúsculas","SSE.Views.Toolbar.mniSentenceCase":"Tipo oración.","SSE.Views.Toolbar.mniToggleCase":"tIPO iNVERSO","SSE.Views.Toolbar.mniUpperCase":"MAYÚSCULAS","SSE.Views.Toolbar.textAddPrintArea":"Añadir al área de impresión","SSE.Views.Toolbar.textAlignBottom":"Alinear abajo","SSE.Views.Toolbar.textAlignCenter":"Alinear al centro","SSE.Views.Toolbar.textAlignJust":"Alineado","SSE.Views.Toolbar.textAlignLeft":"Alinear a la izquierda","SSE.Views.Toolbar.textAlignMiddle":"Alinear al medio","SSE.Views.Toolbar.textAlignRight":"Alinear a la derecha","SSE.Views.Toolbar.textAlignTop":"Alinear arriba","SSE.Views.Toolbar.textAllBorders":"Todos los bordes","SSE.Views.Toolbar.textAlpha":"Letra griega Alfa minúscula","SSE.Views.Toolbar.textAuto":"Auto","SSE.Views.Toolbar.textAutoColor":"Automático","SSE.Views.Toolbar.textAutoColumnWidth":"Ajuste automático de ancho de columna","SSE.Views.Toolbar.textAutoRowHeight":"Ajuste automático de altura de fila ","SSE.Views.Toolbar.textBetta":"Letra griega Beta minúscula","SSE.Views.Toolbar.textBlackHeart":"Corazón negro","SSE.Views.Toolbar.textBold":"Negrita","SSE.Views.Toolbar.textBordersColor":"Color del borde","SSE.Views.Toolbar.textBordersStyle":"Estilo de borde","SSE.Views.Toolbar.textBottom":"Inferior: ","SSE.Views.Toolbar.textBottomBorders":"Bordes inferiores","SSE.Views.Toolbar.textBullet":"Viñeta","SSE.Views.Toolbar.textCellAlign":"Dar formato a la alineación de celdas","SSE.Views.Toolbar.textCellFormat":"Formato","SSE.Views.Toolbar.textCenterBorders":"Bordes verticales internos","SSE.Views.Toolbar.textClearPrintArea":"Eliminar área de impresión","SSE.Views.Toolbar.textClearRule":"Eliminar reglas","SSE.Views.Toolbar.textClockwise":"Ángulo descendente","SSE.Views.Toolbar.textColorScales":"Escalas de color","SSE.Views.Toolbar.textColumns":"Columnas","SSE.Views.Toolbar.textColumnWidth":"Ancho de columna","SSE.Views.Toolbar.textCopyright":"Signo de «copyright»","SSE.Views.Toolbar.textCounterCw":"Ángulo ascendente","SSE.Views.Toolbar.textCustom":"Personalizado","SSE.Views.Toolbar.textCustomColumnWidth":"Ancho de columna personalizado","SSE.Views.Toolbar.textCustomRowHeight":"Altura de fila personalizada","SSE.Views.Toolbar.textDataBars":"Barras de datos","SSE.Views.Toolbar.textDegree":"Símbolo de grado","SSE.Views.Toolbar.textDelLeft":"Desplazar celdas a la izquierda","SSE.Views.Toolbar.textDelPageBreak":"Quitar salto de página","SSE.Views.Toolbar.textDelta":"Letra griega Delta minúscula","SSE.Views.Toolbar.textDelUp":"Desplazar celdas hacia arriba","SSE.Views.Toolbar.textDiagDownBorder":"Borde diagonal descendente","SSE.Views.Toolbar.textDiagUpBorder":"Borde diagonal ascendente","SSE.Views.Toolbar.textDirContext":"Contexto","SSE.Views.Toolbar.textDirLtr":"De izquierda a derecha","SSE.Views.Toolbar.textDirRtl":"De derecha a izquierda","SSE.Views.Toolbar.textDivision":"Signo de división","SSE.Views.Toolbar.textDollar":"Signo de dólar","SSE.Views.Toolbar.textDone":"Hecho","SSE.Views.Toolbar.textDown":"Abajo","SSE.Views.Toolbar.textEditVA":"Editar área visible","SSE.Views.Toolbar.textEntireCol":"Toda la columna","SSE.Views.Toolbar.textEntireRow":"Toda la fila","SSE.Views.Toolbar.textEuro":"Signo de euro","SSE.Views.Toolbar.textFewPages":"páginas","SSE.Views.Toolbar.textFillLeft":"A la izquierda","SSE.Views.Toolbar.textFillRight":"A la derecha","SSE.Views.Toolbar.textFormatCellFill":"Dar formato al relleno de celdas","SSE.Views.Toolbar.textFormatCells":"Dar formato a celdas","SSE.Views.Toolbar.textGreaterEqual":"Mayor o igual a","SSE.Views.Toolbar.textHeight":"Altura","SSE.Views.Toolbar.textHide":"Ocultar","SSE.Views.Toolbar.textHideVA":"Ocultar área visible","SSE.Views.Toolbar.textHorizontal":"Texto horizontal","SSE.Views.Toolbar.textInfinity":"Infinito","SSE.Views.Toolbar.textInsDown":"Desplazar celdas hacia abajo","SSE.Views.Toolbar.textInsideBorders":"Bordes internos","SSE.Views.Toolbar.textInsPageBreak":"Insertar salto de página","SSE.Views.Toolbar.textInsRight":"Desplazar celdas a la derecha","SSE.Views.Toolbar.textItalic":"Cursiva","SSE.Views.Toolbar.textItems":"Elementos","SSE.Views.Toolbar.textLandscape":"Horizontal","SSE.Views.Toolbar.textLeft":"Izquierdo: ","SSE.Views.Toolbar.textLeftBorders":"Bordes izquierdos","SSE.Views.Toolbar.textLessEqual":"Menor o igual a","SSE.Views.Toolbar.textLetterPi":"Letra griega Pi minúscula","SSE.Views.Toolbar.textLockedCell":"Celda bloqueada","SSE.Views.Toolbar.textManageRule":"Administrar reglas","SSE.Views.Toolbar.textManyPages":"páginas","SSE.Views.Toolbar.textMarginsLast":"Último personalizado","SSE.Views.Toolbar.textMarginsNarrow":"Estrecho","SSE.Views.Toolbar.textMarginsNormal":"Normal","SSE.Views.Toolbar.textMarginsWide":"Amplio","SSE.Views.Toolbar.textMiddleBorders":"Bordes horizontales internos","SSE.Views.Toolbar.textMoreBorders":"Más bordes","SSE.Views.Toolbar.textMoreFormats":"Otros formatos","SSE.Views.Toolbar.textMorePages":"Más páginas","SSE.Views.Toolbar.textMoreSymbols":"Más símbolos","SSE.Views.Toolbar.textMoveCopySheet":"Mover o copiar hoja","SSE.Views.Toolbar.textNewColor":"Más colores","SSE.Views.Toolbar.textNewRule":"Nueva regla","SSE.Views.Toolbar.textNoBorders":"Sin bordes","SSE.Views.Toolbar.textNotEqualTo":"No igual a","SSE.Views.Toolbar.textOneHalf":"Fracción vulgar a la mitad","SSE.Views.Toolbar.textOnePage":"página","SSE.Views.Toolbar.textOneQuarter":"Fracción vulgar de un cuarto","SSE.Views.Toolbar.textOutBorders":"Bordes externos","SSE.Views.Toolbar.textPageMarginsCustom":"Márgenes personalizados","SSE.Views.Toolbar.textPlusMinus":"Signo de más-menos","SSE.Views.Toolbar.textPortrait":"Vertical","SSE.Views.Toolbar.textPrint":"Imprimir","SSE.Views.Toolbar.textPrintGridlines":"Imprimir cuadrículas","SSE.Views.Toolbar.textPrintHeadings":"Imprimir encabezados","SSE.Views.Toolbar.textPrintOptions":"Opciones de impresión","SSE.Views.Toolbar.textProtectSheet":"Proteger hoja","SSE.Views.Toolbar.textRegistered":"Signo de marca registrada","SSE.Views.Toolbar.textRenameSheet":"Renombrar hoja","SSE.Views.Toolbar.textResetPageBreak":"Reiniciar todos los saltos de página","SSE.Views.Toolbar.textRight":"Derecho: ","SSE.Views.Toolbar.textRightBorders":"Bordes derechos","SSE.Views.Toolbar.textRotateDown":"Girar texto hacia abajo","SSE.Views.Toolbar.textRotateUp":"Girar texto hacia arriba","SSE.Views.Toolbar.textRowHeight":"Altura de fila","SSE.Views.Toolbar.textRows":"Filas","SSE.Views.Toolbar.textRtlSheet":"Hoja de derecha a izquierda","SSE.Views.Toolbar.textScale":"Escala","SSE.Views.Toolbar.textScaleCustom":"Personalizado","SSE.Views.Toolbar.textSection":"Signo de sección","SSE.Views.Toolbar.textSelection":"Desde la selección actual","SSE.Views.Toolbar.textSeries":"Series","SSE.Views.Toolbar.textSetPrintArea":"Establecer área de impresión","SSE.Views.Toolbar.textShapesCombine":"Combinar","SSE.Views.Toolbar.textShapesFragment":"Fragmento","SSE.Views.Toolbar.textShapesIntersect":"Formar intersección","SSE.Views.Toolbar.textShapesSubstract":"Restar","SSE.Views.Toolbar.textShapesUnion":"Unión","SSE.Views.Toolbar.textSheet":"Hoja","SSE.Views.Toolbar.textSheets":"Hojas ocultas","SSE.Views.Toolbar.textShow":"Mostrar","SSE.Views.Toolbar.textShowVA":"Muestra el área visible","SSE.Views.Toolbar.textSmile":"Cara blanca sonriente","SSE.Views.Toolbar.textSquareRoot":"Raíz cuadrada","SSE.Views.Toolbar.textStrikeout":"Tachado","SSE.Views.Toolbar.textSubscript":"Subíndice","SSE.Views.Toolbar.textSubSuperscript":"Subíndice/superíndice","SSE.Views.Toolbar.textSuperscript":"Sobreíndice","SSE.Views.Toolbar.textTabCollaboration":"Colaboración","SSE.Views.Toolbar.textTabColor":"Color de la pestaña","SSE.Views.Toolbar.textTabData":"Datos","SSE.Views.Toolbar.textTabDraw":"Dibujar","SSE.Views.Toolbar.textTabFile":"Archivo","SSE.Views.Toolbar.textTabFormula":"Fórmula","SSE.Views.Toolbar.textTabHome":"Inicio","SSE.Views.Toolbar.textTabInsert":"Insertar","SSE.Views.Toolbar.textTabLayout":"Diseño","SSE.Views.Toolbar.textTabProtect":"Protección","SSE.Views.Toolbar.textTabTableDesign":"Diseño de tabla","SSE.Views.Toolbar.textTabView":"Vista","SSE.Views.Toolbar.textThisPivot":"Desde esta tabla pivote","SSE.Views.Toolbar.textThisSheet":"Desde esta hoja","SSE.Views.Toolbar.textThisTable":"Desde esta tabla","SSE.Views.Toolbar.textTilde":"Virgulilla","SSE.Views.Toolbar.textTop":"Superior: ","SSE.Views.Toolbar.textTopBorders":"Bordes superiores","SSE.Views.Toolbar.textTradeMark":"Signo de marca registrada","SSE.Views.Toolbar.textUnderline":"Subrayar","SSE.Views.Toolbar.textUnProtectSheet":"Desproteger hoja","SSE.Views.Toolbar.textUp":"Arriba","SSE.Views.Toolbar.textVertical":"Texto vertical","SSE.Views.Toolbar.textWidth":"Ancho","SSE.Views.Toolbar.textYen":"Signo de yen","SSE.Views.Toolbar.textZoom":"Ampliación","SSE.Views.Toolbar.tipAlignBottom":"Alinear en la parte inferior","SSE.Views.Toolbar.tipAlignCenter":"Alinear al centro","SSE.Views.Toolbar.tipAlignJust":"Alineado","SSE.Views.Toolbar.tipAlignLeft":"Alinear a la izquierda","SSE.Views.Toolbar.tipAlignMiddle":"Alinear al medio","SSE.Views.Toolbar.tipAlignRight":"Alinear a la derecha","SSE.Views.Toolbar.tipAlignTop":"Alinear en la parte superior","SSE.Views.Toolbar.tipAutofilter":"Ordenar y filtrar","SSE.Views.Toolbar.tipBack":"Atrás","SSE.Views.Toolbar.tipBorders":"Bordes","SSE.Views.Toolbar.tipCellStyle":"Estilo de celda","SSE.Views.Toolbar.tipChangeCase":"Cambiar mayúsculas y minúsculas","SSE.Views.Toolbar.tipChangeChart":"Cambiar tipo de gráfico","SSE.Views.Toolbar.tipClearStyle":"Limpiar","SSE.Views.Toolbar.tipColorSchemas":"Cambiar combinación de colores","SSE.Views.Toolbar.tipCondFormat":"Formato condicional","SSE.Views.Toolbar.tipCopy":"Copiar","SSE.Views.Toolbar.tipCopyStyle":"Copiar estilo","SSE.Views.Toolbar.tipCut":"Cortar","SSE.Views.Toolbar.tipDecDecimal":"Disminuir decimales","SSE.Views.Toolbar.tipDecFont":"Reducir tamaño de letra","SSE.Views.Toolbar.tipDeleteOpt":"Eliminar celdas","SSE.Views.Toolbar.tipDigStyleAccounting":"Estilo de contabilidad","SSE.Views.Toolbar.tipDigStyleComma":"Estilo de coma","SSE.Views.Toolbar.tipDigStyleCurrency":"Estilo de moneda","SSE.Views.Toolbar.tipDigStylePercent":"Estilo de porcentajes","SSE.Views.Toolbar.tipEditChart":"Editar gráfico","SSE.Views.Toolbar.tipEditChartData":"Seleccionar datos","SSE.Views.Toolbar.tipEditChartType":"Cambiar tipo de gráfico","SSE.Views.Toolbar.tipEditHeader":"Editar encabezado o pie de página","SSE.Views.Toolbar.tipFontColor":"Color de la fuente","SSE.Views.Toolbar.tipFontName":"Fuente","SSE.Views.Toolbar.tipFontSize":"Tamaño de la fuente","SSE.Views.Toolbar.tipFormatCell":"Cambie la altura de las filas o el ancho de las columnas, organice las hojas o proteja u oculte celdas","SSE.Views.Toolbar.tipHAlighOle":"Alineación horizontal","SSE.Views.Toolbar.tipImgAlign":"Alinear objetos","SSE.Views.Toolbar.tipImgGroup":"Agrupar objetos","SSE.Views.Toolbar.tipIncDecimal":"Aumentar decimales","SSE.Views.Toolbar.tipIncFont":"Aumentar tamaño de letra","SSE.Views.Toolbar.tipInsertChart":"Insertar gráfico","SSE.Views.Toolbar.tipInsertChartRecommend":"Insertar gráfico recomendado","SSE.Views.Toolbar.tipInsertChartSpark":"Insertar gráfico","SSE.Views.Toolbar.tipInsertEquation":"Insertar ecuación","SSE.Views.Toolbar.tipInsertHorizontalText":"Insertar cuadro de texto horizontal","SSE.Views.Toolbar.tipInsertHyperlink":"Añadir enlace ","SSE.Views.Toolbar.tipInsertImage":"Insertar imagen","SSE.Views.Toolbar.tipInsertOpt":"Insertar celdas","SSE.Views.Toolbar.tipInsertShape":"Insertar forma","SSE.Views.Toolbar.tipInsertSlicer":"Insertar segmentación de datos","SSE.Views.Toolbar.tipInsertSmartArt":"Insertar SmartArt","SSE.Views.Toolbar.tipInsertSpark":"Insertar minigráfico","SSE.Views.Toolbar.tipInsertSymbol":"Insertar symboló","SSE.Views.Toolbar.tipInsertTable":"Insertar tabla","SSE.Views.Toolbar.tipInsertText":"Insertar cuadro de texto","SSE.Views.Toolbar.tipInsertTextart":"Insertar Galería de Texto","SSE.Views.Toolbar.tipInsertVerticalText":"Insertar cuadro de texto vertical","SSE.Views.Toolbar.tipMerge":"Combinar y centrar","SSE.Views.Toolbar.tipNone":"Ninguno","SSE.Views.Toolbar.tipNumFormat":"Formato de número","SSE.Views.Toolbar.tipPageBreak":"Agregue un salto de línea donde quiera que empiece la próxima página en la versión impresa","SSE.Views.Toolbar.tipPageMargins":"Márgenes de página","SSE.Views.Toolbar.tipPageOrient":"Orientación de página","SSE.Views.Toolbar.tipPageSize":"Tamaño de la página","SSE.Views.Toolbar.tipPaste":"Pegar","SSE.Views.Toolbar.tipPrColor":"Color de relleno","SSE.Views.Toolbar.tipPrint":"Imprimir","SSE.Views.Toolbar.tipPrintArea":"Área de impresión","SSE.Views.Toolbar.tipPrintQuick":"Impresión rápida","SSE.Views.Toolbar.tipPrintTitles":"Imprimir títulos","SSE.Views.Toolbar.tipRedo":"Rehacer","SSE.Views.Toolbar.tipReplace":"Reemplazar","SSE.Views.Toolbar.tipRtlSheet":"Cambiar la dirección de la hoja para que la primera columna esté a la derecha","SSE.Views.Toolbar.tipSave":"Guardar","SSE.Views.Toolbar.tipSaveCoauth":"Guarde los cambios para que otros usuarios los puedan ver.","SSE.Views.Toolbar.tipScale":"Ajustar área de impresión","SSE.Views.Toolbar.tipSelectAll":"Seleccionar todo","SSE.Views.Toolbar.tipSendBackward":"Enviar hacia atrás","SSE.Views.Toolbar.tipSendForward":"Traer adelante","SSE.Views.Toolbar.tipShapesMerge":"Fusionar formas","SSE.Views.Toolbar.tipSynchronize":"El documento ha sido cambiado por otro usuario. Por favor haga clic para guardar sus cambios y recargue las actualizaciones.","SSE.Views.Toolbar.tipTextDir":"Dirección ","SSE.Views.Toolbar.tipTextDirection":"Dirección de texto","SSE.Views.Toolbar.tipTextFormatting":"Más herramientas de formato de texto","SSE.Views.Toolbar.tipTextOrientation":"Orientación","SSE.Views.Toolbar.tipUndo":"Deshacer","SSE.Views.Toolbar.tipVAlighOle":"Alineación vertical","SSE.Views.Toolbar.tipVisibleArea":"Área visible","SSE.Views.Toolbar.tipWrap":"Ajustar texto","SSE.Views.Toolbar.txtAccounting":"Contabilidad","SSE.Views.Toolbar.txtAdditional":"Adicional","SSE.Views.Toolbar.txtAscending":"Ascendente","SSE.Views.Toolbar.txtAutosumTip":"Sumatoria","SSE.Views.Toolbar.txtCellStyle":"Estilo de celda","SSE.Views.Toolbar.txtClearAll":"Todo","SSE.Views.Toolbar.txtClearComments":"Comentarios","SSE.Views.Toolbar.txtClearFilter":"Borrar filtro","SSE.Views.Toolbar.txtClearFormat":"Formato","SSE.Views.Toolbar.txtClearFormula":"Función","SSE.Views.Toolbar.txtClearHyper":"Enlaces","SSE.Views.Toolbar.txtClearText":"Texto","SSE.Views.Toolbar.txtCurrency":"Moneda","SSE.Views.Toolbar.txtCustom":"Personalizado","SSE.Views.Toolbar.txtDate":"Fecha","SSE.Views.Toolbar.txtDateLong":"Fecha larga","SSE.Views.Toolbar.txtDateShort":"Fecha corta","SSE.Views.Toolbar.txtDateTime":"Fecha y hora","SSE.Views.Toolbar.txtDescending":"Descendente","SSE.Views.Toolbar.txtDollar":"$ Dólar","SSE.Views.Toolbar.txtEuro":"€ Euro","SSE.Views.Toolbar.txtExp":"Exponencial","SSE.Views.Toolbar.txtFillNum":"Rellenar","SSE.Views.Toolbar.txtFilter":"Filtro","SSE.Views.Toolbar.txtFormula":"Insertar función","SSE.Views.Toolbar.txtFraction":"Fracción","SSE.Views.Toolbar.txtFranc":"CHF Franco Suizo","SSE.Views.Toolbar.txtGeneral":"General","SSE.Views.Toolbar.txtInteger":"Entero","SSE.Views.Toolbar.txtManageRange":"Administrador de nombre","SSE.Views.Toolbar.txtMergeAcross":"Combinar horizontalmente","SSE.Views.Toolbar.txtMergeCells":"Combinar celdas","SSE.Views.Toolbar.txtMergeCenter":"Unir y centrar","SSE.Views.Toolbar.txtNamedRange":"Bandas nombradas","SSE.Views.Toolbar.txtNewRange":"Definir nombre","SSE.Views.Toolbar.txtNoBorders":"Sin bordes","SSE.Views.Toolbar.txtNumber":"Número","SSE.Views.Toolbar.txtPasteRange":"Pegar nombre","SSE.Views.Toolbar.txtPercentage":"Porcentaje","SSE.Views.Toolbar.txtPound":"£ Libra","SSE.Views.Toolbar.txtRouble":"₽ Rublo","SSE.Views.Toolbar.txtScientific":"Científico","SSE.Views.Toolbar.txtSearch":"Buscar","SSE.Views.Toolbar.txtSort":"Ordenar","SSE.Views.Toolbar.txtSortAZ":"Clasificar en orden ascendente","SSE.Views.Toolbar.txtSortZA":"Clasificar en orden descendente","SSE.Views.Toolbar.txtSpecial":"Especial","SSE.Views.Toolbar.txtTableTemplate":"Formatear como plantilla de tabla","SSE.Views.Toolbar.txtText":"Texto","SSE.Views.Toolbar.txtTime":"Hora","SSE.Views.Toolbar.txtUnmerge":"Separar celdas","SSE.Views.Toolbar.txtYen":"¥ Yen","SSE.Views.Top10FilterDialog.textType":"Mostrar","SSE.Views.Top10FilterDialog.txtBottom":"Inferior","SSE.Views.Top10FilterDialog.txtBy":"por","SSE.Views.Top10FilterDialog.txtItems":"Artículo","SSE.Views.Top10FilterDialog.txtPercent":"Por ciento","SSE.Views.Top10FilterDialog.txtSum":"Suma","SSE.Views.Top10FilterDialog.txtTitle":"10 principales del autofiltro","SSE.Views.Top10FilterDialog.txtTop":"Superior","SSE.Views.Top10FilterDialog.txtValueTitle":"Filtro de los 10 principales","SSE.Views.ValueFieldSettingsDialog.textNext":"(siguiente)","SSE.Views.ValueFieldSettingsDialog.textNumFormat":"Formato de número","SSE.Views.ValueFieldSettingsDialog.textPrev":"(anterior)","SSE.Views.ValueFieldSettingsDialog.textTitle":"Ajustes del campo de valor","SSE.Views.ValueFieldSettingsDialog.txtAverage":"Promedio","SSE.Views.ValueFieldSettingsDialog.txtBaseField":"Campo base","SSE.Views.ValueFieldSettingsDialog.txtBaseItem":"Elemento base","SSE.Views.ValueFieldSettingsDialog.txtByField":"%1 de %2","SSE.Views.ValueFieldSettingsDialog.txtCount":"Contar","SSE.Views.ValueFieldSettingsDialog.txtCountNums":"Contar números","SSE.Views.ValueFieldSettingsDialog.txtCustomName":"Nombre personalizado","SSE.Views.ValueFieldSettingsDialog.txtDifference":"Diferencia de","SSE.Views.ValueFieldSettingsDialog.txtIndex":"Índice","SSE.Views.ValueFieldSettingsDialog.txtMax":"Máx.","SSE.Views.ValueFieldSettingsDialog.txtMin":"Mín.","SSE.Views.ValueFieldSettingsDialog.txtNormal":"Sin cálculo","SSE.Views.ValueFieldSettingsDialog.txtPercent":"Porcentaje de","SSE.Views.ValueFieldSettingsDialog.txtPercentDiff":"Diferencia de porcentaje de","SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol":"Porcentaje de columnas","SSE.Views.ValueFieldSettingsDialog.txtPercentOfGrand":"% del total general","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParent":"% del total principal","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentCol":"% del total de columnas principales","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentRow":"% del total de filas principales","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow":"Porcentaje del total","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRunTotal":"% del total en","SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal":"Porcentaje de filas","SSE.Views.ValueFieldSettingsDialog.txtProduct":"Producto","SSE.Views.ValueFieldSettingsDialog.txtRankAscending":"Clasificar de menor a mayor","SSE.Views.ValueFieldSettingsDialog.txtRankDescending":"Clasificar de mayor a menor","SSE.Views.ValueFieldSettingsDialog.txtRunTotal":"Total en","SSE.Views.ValueFieldSettingsDialog.txtShowAs":"Mostrar valores como","SSE.Views.ValueFieldSettingsDialog.txtSourceName":"Nombre de origen:","SSE.Views.ValueFieldSettingsDialog.txtStdDev":"DesvEst","SSE.Views.ValueFieldSettingsDialog.txtStdDevp":"DesvEstP","SSE.Views.ValueFieldSettingsDialog.txtSum":"Suma","SSE.Views.ValueFieldSettingsDialog.txtSummarize":"Resumir campo de valor por","SSE.Views.ValueFieldSettingsDialog.txtVar":"Var","SSE.Views.ValueFieldSettingsDialog.txtVarp":"Varp","SSE.Views.ViewManagerDlg.closeButtonText":"Cerrar","SSE.Views.ViewManagerDlg.guestText":"Invitado","SSE.Views.ViewManagerDlg.lockText":"Bloqueado","SSE.Views.ViewManagerDlg.textDelete":"Eliminar","SSE.Views.ViewManagerDlg.textDuplicate":"Duplicar","SSE.Views.ViewManagerDlg.textEmpty":"Aún no se han creado vistas.","SSE.Views.ViewManagerDlg.textGoTo":"Ir a vista","SSE.Views.ViewManagerDlg.textLongName":"Escriba un nombre que tenga menos de 128 caracteres.","SSE.Views.ViewManagerDlg.textNew":"Nuevo","SSE.Views.ViewManagerDlg.textRename":"Cambiar nombre","SSE.Views.ViewManagerDlg.textRenameError":"El nombre de la vista no debe estar vacío.","SSE.Views.ViewManagerDlg.textRenameLabel":"Cambiar el nombre de la vista","SSE.Views.ViewManagerDlg.textViews":"Vistas de hoja","SSE.Views.ViewManagerDlg.tipIsLocked":"Este elemento está siendo editado por otro usuario.","SSE.Views.ViewManagerDlg.txtTitle":"Administrador de vista de hoja","SSE.Views.ViewManagerDlg.warnDeleteAnotherView":"¿Está seguro de que desea eliminar esta vista de hoja?","SSE.Views.ViewManagerDlg.warnDeleteView":"Está tratando de eliminar la vista actualmente habilitada '%1'. ¿Cerrar esta vista y eliminarla?","SSE.Views.ViewTab.capBtnFreeze":"Congelar paneles","SSE.Views.ViewTab.capBtnSheetView":"Vista de hoja","SSE.Views.ViewTab.textAlwaysShowToolbar":"Mostrar siempre la barra de herramientas","SSE.Views.ViewTab.textClose":"Cerrar","SSE.Views.ViewTab.textCombineSheetAndStatusBars":"Combinar las barras de hoja y de estado","SSE.Views.ViewTab.textCreate":"Nuevo","SSE.Views.ViewTab.textDefault":"Predeterminado","SSE.Views.ViewTab.textFill":"Rellenar","SSE.Views.ViewTab.textFormula":"Barra de fórmulas","SSE.Views.ViewTab.textFreezeCol":"Bloquear primera columna","SSE.Views.ViewTab.textFreezeRow":"Bloquear fila superior","SSE.Views.ViewTab.textGridlines":"Líneas de cuadrícula","SSE.Views.ViewTab.textHeadings":"Encabezados","SSE.Views.ViewTab.textInterfaceTheme":"Tema de la interfaz","SSE.Views.ViewTab.textLeftMenu":"Panel izquierdo","SSE.Views.ViewTab.textLine":"Línea","SSE.Views.ViewTab.textMacros":"Macros","SSE.Views.ViewTab.textManager":"Administrador de vista","SSE.Views.ViewTab.textPauseMacro":"Pausar la grabación","SSE.Views.ViewTab.textRecMacro":"Grabar macro","SSE.Views.ViewTab.textResumeMacro":"Continuar la grabación","SSE.Views.ViewTab.textRightMenu":"Panel derecho","SSE.Views.ViewTab.textShowFrozenPanesShadow":"Mostrar la sombra de paneles congelados","SSE.Views.ViewTab.textStopMacro":"Detener la grabación","SSE.Views.ViewTab.textTabStyle":"Estilo de pestaña","SSE.Views.ViewTab.textUnFreeze":"Descongelar paneles","SSE.Views.ViewTab.textZeros":"Mostrar ceros","SSE.Views.ViewTab.textZoom":"Ampliación","SSE.Views.ViewTab.tipClose":"Cerrar vista de hoja","SSE.Views.ViewTab.tipCreate":"Crear vista de hoja","SSE.Views.ViewTab.tipFreeze":"Congelar paneles","SSE.Views.ViewTab.tipInterfaceTheme":"Tema de la interfaz","SSE.Views.ViewTab.tipMacros":"Macros","SSE.Views.ViewTab.tipPauseMacro":"Pausar la grabación","SSE.Views.ViewTab.tipRecMacro":"Grabar macro","SSE.Views.ViewTab.tipResumeMacro":"Continuar la grabación","SSE.Views.ViewTab.tipSheetView":"Vista de hoja","SSE.Views.ViewTab.tipStopMacro":"Detener la grabación","SSE.Views.ViewTab.tipViewNormal":"Ver el documento en vista Normal","SSE.Views.ViewTab.tipViewPageBreak":"Ver dónde aparecerán los saltos de página al imprimir el documento","SSE.Views.ViewTab.txtViewNormal":"Normal","SSE.Views.ViewTab.txtViewPageBreak":"Vista previa de salto de página","SSE.Views.WatchDialog.closeButtonText":"Cerrar","SSE.Views.WatchDialog.textAdd":"Añadir inspección","SSE.Views.WatchDialog.textBook":"Libro","SSE.Views.WatchDialog.textCell":"Celda","SSE.Views.WatchDialog.textDelete":"Eliminar inspección","SSE.Views.WatchDialog.textDeleteAll":"Eliminar todo","SSE.Views.WatchDialog.textFormula":"Fórmula","SSE.Views.WatchDialog.textName":"Nombre","SSE.Views.WatchDialog.textSheet":"Hoja","SSE.Views.WatchDialog.textValue":"Valor","SSE.Views.WatchDialog.txtTitle":"Ventana de inspección","SSE.Views.WBProtection.hintAllowRanges":"Permitir editar rangos","SSE.Views.WBProtection.hintProtectRange":"Proteger rango","SSE.Views.WBProtection.hintProtectSheet":"Proteger hoja","SSE.Views.WBProtection.hintProtectWB":"Proteger libro","SSE.Views.WBProtection.txtAllowRanges":"Permitir editar rangos","SSE.Views.WBProtection.txtHiddenFormula":"Fórmulas ocultas","SSE.Views.WBProtection.txtLockedCell":"Celda bloqueada","SSE.Views.WBProtection.txtLockedShape":"Forma bloqueada","SSE.Views.WBProtection.txtLockedText":"Bloquear texto","SSE.Views.WBProtection.txtProtectRange":"Proteger rango","SSE.Views.WBProtection.txtProtectSheet":"Proteger hoja","SSE.Views.WBProtection.txtProtectWB":"Proteger libro","SSE.Views.WBProtection.txtSheetUnlockDescription":"Introduzca una contraseña para quitarle la protección a la hoja","SSE.Views.WBProtection.txtSheetUnlockTitle":"Desproteger hoja","SSE.Views.WBProtection.txtWBUnlockDescription":"Introduzca una contraseña para quitarle la protección al libro","SSE.Views.WBProtection.txtWBUnlockTitle":"Desproteger libro"} \ No newline at end of file +{"cancelButtonText":"Cancelar","Common.Controllers.Chat.notcriticalErrorTitle":"Aviso","Common.Controllers.Desktop.hintBtnHome":"Mostrar ventana principal","Common.Controllers.Desktop.itemCreateFromTemplate":"Crear a partir de plantilla","Common.Controllers.ExternalLinks.textAddExternalData":"Se ha añadido el enlace a un origen externo. Puede actualizar tales enlaces en la pestaña «Datos».","Common.Controllers.ExternalLinks.textContinue":"Continuar","Common.Controllers.ExternalLinks.textDontUpdate":"No actualizar","Common.Controllers.ExternalLinks.textTurnOff":"Desactivar actualización automática","Common.Controllers.ExternalLinks.textUpdate":"Actualizar","Common.Controllers.ExternalLinks.txtErrorExternalLink":"Se ha producido un error al actualizar","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdate":"Este libro de trabajo contiene enlaces a fuentes externas que se actualizan automáticamente. Esto podría resultar inseguro.

Si confía en ellos, haga clic en Continuar.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdateDE":"Este documento contiene enlaces a fuentes externas que se actualizan automáticamente. Esto podría ser inseguro.

Si confía en ellos, pulse Continuar.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdatePE":"Esta presentación contiene enlaces a fuentes externas que se actualizan automáticamente. Esto podría ser inseguro.

Si confía en ellos, pulse Continuar.","Common.Controllers.ExternalLinks.warnUpdateExternalData":"Este libro de trabajo contiene enlaces a una o más fuentes externas que podrían ser inseguras.
Si confía en estos enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"Este documento contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"Esta presentación contiene enlaces a una o varias fuentes externas que podrían ser inseguras.
Si confía en los enlaces, actualícelos para obtener los datos más recientes.","Common.Controllers.History.notcriticalErrorTitle":"Advertencia","Common.Controllers.History.txtErrorLoadHistory":"Error al cargar el historial","Common.Controllers.Plugins.helpMoveMacros":"Para empezar a trabajar con macros, cambie a la pestaña Vista.","Common.Controllers.Plugins.helpMoveMacrosHeader":"El botón Macros desplazado","Common.Controllers.Plugins.helpUseMacros":"Encuentre el botón Macros aquí","Common.Controllers.Plugins.helpUseMacrosHeader":"Acceso actualizado a las macros","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"Los plugins se han instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0} se ha instalado correctamente. Puede acceder a todos los plugins de fondo aquí.","Common.Controllers.Plugins.textRunInstalledPlugins":"Ejecutar plugins instalados","Common.Controllers.Plugins.textRunPlugin":"Ejecutar plugin","Common.Controllers.Shortcuts.txtDescriptionAddLineBreak":"Añadir un salto de línea sin comenzar un nuevo párrafo al introducir texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionAutoFill":"Utilizar este acceso directo en una celda vacía situada encima o debajo de los valores existentes en la columna. Aparecerá una lista desplegable con los valores existentes. Seleccione uno de los valores de texto disponibles para rellenar una celda vacía.","Common.Controllers.Shortcuts.txtDescriptionBold":"Hacer que la fuente del fragmento de texto seleccionado sea más oscura y gruesa de lo normal, o eliminar el formato en negrita.","Common.Controllers.Shortcuts.txtDescriptionCellAddSeparator":"Insertar un separador dentro de una celda activa.","Common.Controllers.Shortcuts.txtDescriptionCellCurrencyFormat":"Aplicar el formato Moneda con dos decimales.","Common.Controllers.Shortcuts.txtDescriptionCellDateFormat":"Aplicar el formato Fecha con el día, el mes y el año.","Common.Controllers.Shortcuts.txtDescriptionCellEditorSwitchReference":"Cambiar el tipo de referencia a una celda en la barra de fórmulas (absoluta, relativa).","Common.Controllers.Shortcuts.txtDescriptionCellEntryCancel":"Cancelar una entrada en la celda seleccionada o en la barra de fórmulas.","Common.Controllers.Shortcuts.txtDescriptionCellExponentialFormat":"Aplicar el formato numérico exponencial con dos decimales.","Common.Controllers.Shortcuts.txtDescriptionCellGeneralFormat":"Aplicar el formato numérico general.","Common.Controllers.Shortcuts.txtDescriptionCellInsertDate":"Insertar la fecha de hoy en una celda activa.","Common.Controllers.Shortcuts.txtDescriptionCellInsertSumFunction":"Insertar la función SUM en la celda seleccionada.","Common.Controllers.Shortcuts.txtDescriptionCellInsertTime":"Insertar la hora actual en una celda activa.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellDown":"Desplazarse a la celda inferior.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellLeft":"Pasar a la celda de la izquierda.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellRight":"Pasar a la celda de la derecha.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellUp":"Desplazarse a la celda superior.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomEdge":"Resaltar una celda en el borde inferior de la región de datos visible.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomNonBlank":"Resaltar la siguiente celda con los datos que aparecen a continuación en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCellMoveDown":"Resaltar una celda debajo de la celda seleccionada actualmente.","Common.Controllers.Shortcuts.txtDescriptionCellMoveEndSpreadsheet":"Resaltar la celda inferior derecha utilizada en la hoja de cálculo situada en la fila inferior con datos de la columna más a la derecha con datos. Si el cursor se encuentra en la barra de fórmulas, se colocará al final del texto.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstCell":"Resaltar la celda A1.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstColumn":"Resaltar una celda en la columna A de la fila actual.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeft":"Resaltar una celda a la izquierda de la celda seleccionada actualmente.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeftNonBlank":"Resaltar la siguiente celda con datos a la izquierda en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRight":"Resaltar una celda a la derecha de la celda seleccionada actualmente.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRightNonBlank":"Resaltar la siguiente celda con datos a la derecha en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopEdge":"Resaltar una celda en el borde superior de la región de datos visible.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopNonBlank":"Resaltar la siguiente celda con los datos anteriores en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCellMoveUp":"Resaltar una celda por encima de la seleccionada actualmente.","Common.Controllers.Shortcuts.txtDescriptionCellNumberFormat":"Aplicar el formato numérico con dos decimales, separador de miles y signo menos (-) para los valores negativos.","Common.Controllers.Shortcuts.txtDescriptionCellPercentFormat":"Aplicar el formato Porcentaje sin decimales.","Common.Controllers.Shortcuts.txtDescriptionCellStartNewLine":"Iniciar una nueva línea en la misma celda.","Common.Controllers.Shortcuts.txtDescriptionCellTimeFormat":"Aplicar el formato Hora con la hora y los minutos, y AM o PM.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Cambiar un párrafo entre centrado y alineado a la izquierda. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionClearActiveCellContent":"Eliminar el contenido (datos y fórmulas) de la celda activa sin afectar al formato de la celda ni a los comentarios.","Common.Controllers.Shortcuts.txtDescriptionClearSelectedCellsContent":"Eliminar el contenido (datos y fórmulas) de todas las celdas seleccionadas sin afectar al formato de las celdas ni a los comentarios.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Cerrar la ventana actual de la hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Cerrar un menú o una ventana modal. Suspender la copia de formatos. Restablecer el modo de añadir formas. Borrar el portapapeles al cortar/copiar celdas. Ocultar el botón Pegado especial.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveDown":"Completar una entrada de celda en la celda seleccionada o en la barra de fórmulas y pasar a la celda inferior.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveLeft":"Completar una entrada de celda en la celda seleccionada o en la barra de fórmulas y pasar a la celda de la izquierda.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveRight":"Completar una entrada de celda en la celda seleccionada o en la barra de fórmulas y pasar a la celda de la derecha.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveUp":"Completar una entrada en la celda seleccionada y pasar a la celda superior.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryStay":"Completar una entrada de celda en la celda seleccionada o en la barra de fórmulas y permanecer en ella.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Enviar los datos/gráficos seleccionados al portapapeles del ordenador. Los datos copiados se pueden insertar posteriormente en otro lugar de la misma hoja de cálculo, en otra hoja de cálculo o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionCut":"Cortar los datos/gráficos seleccionados y enviarlos al portapapeles del ordenador. Los datos cortados se pueden insertar posteriormente en otro lugar de la misma hoja de cálculo, en otra hoja de cálculo o en algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Disminuir el tamaño de la fuente del fragmento de texto seleccionado en 1 punto. Funciona solo con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Eliminar un carácter a la izquierda en la barra de fórmulas o en la celda seleccionada cuando el modo de edición de celdas está activado. Eliminar la selección. También elimina el contenido de la celda activa. También es aplicable al texto de los objetos gráficos.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Eliminar una palabra, selección a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Eliminar un carácter a la derecha en la barra de fórmulas o en la celda seleccionada cuando el modo de edición de celdas está activado. Eliminar la selección. También elimina el contenido de las celdas seleccionadas (datos y fórmulas) sin afectar a los formatos de celda ni a los comentarios. También se aplica al texto de los objetos gráficos.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Eliminar una palabra, selección a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionDownloadAs":"Abrir el panel Descargar como... para guardar la hoja de cálculo actualmente editada en el disco duro del ordenador en uno de los formatos compatibles.","Common.Controllers.Shortcuts.txtDescriptionDrawingAddTab":"Añadir el carácter de tabulación al contenido del objeto.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"Cuando se seleccione el título del gráfico, seleccionar el texto.","Common.Controllers.Shortcuts.txtDescriptionEditOpenCellEditor":"Editar la celda activa y colocar el punto de inserción al final del contenido de la celda. Si la edición en una celda está desactivada, el punto de inserción se moverá a la barra de fórmulas.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repetir la última acción deshecha.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Seleccionar todo el contenido de la forma (cuando el cursor se encuentra dentro del contenido de la forma). Seleccionar todo el contenido de la celda (cuando el cursor se encuentra dentro de la celda).","Common.Controllers.Shortcuts.txtDescriptionEditShape":"Cuando se seleccione la forma, si no contiene contenido, crear contenido y mover el cursor al principio de la línea. Si el contenido está vacío, mover el cursor hacia él; de lo contrario, seleccionar todo el contenido.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Revertir la última acción realizada.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insertar un guión corto a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"Terminar el párrafo actual y comenzar uno nuevo al introducir texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Añadir un nuevo marcador de posición al argumento de la ecuación.","Common.Controllers.Shortcuts.txtDescriptionExitAddingShapesMode":"Salir del modo de añadir formas. Eliminar la selección paso a paso (por ejemplo, si se selecciona el contenido de una forma dentro de un grupo, el cursor se eliminará primero del contenido, luego de la forma y, por último, del grupo).","Common.Controllers.Shortcuts.txtDescriptionFillSelectedCellRange":"Rellenar el rango de celdas seleccionado con la entrada actual. Seleccione un rango de celdas, escriba los datos en la celda activa y pulse las teclas especificadas para rellenar todas las celdas seleccionadas con los datos introducidos.","Common.Controllers.Shortcuts.txtDescriptionFormatAsTableTemplate":"Aplicar una plantilla de tabla a un rango de celdas seleccionado.","Common.Controllers.Shortcuts.txtDescriptionFormatTableAddSummaryRow":"Añadir la fila de resumen para una tabla formateada.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Aumentar el tamaño de la fuente del fragmento de texto seleccionado en 1 punto. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insertar un enlace que se puede utilizar para acceder a una dirección web.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Hacer que la fuente del fragmento de texto seleccionado aparezca en cursiva y ligeramente inclinada, o eliminar el formato en cursiva.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Cambiar un párrafo entre justificado y alineado a la izquierda. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Alinear un párrafo a la izquierda. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningLine":"Colocar el cursor al principio de la línea que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningText":"Colocar el cursor al principio del texto en una celda o forma.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterLeft":"Mover el cursor un carácter a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterRight":"Mover el cursor un carácter a la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineDown":"Mover el cursor una línea hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineUp":"Mover el cursor una línea hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionMoveEndLine":"Colocar el cursor al final de la línea que se está editando.","Common.Controllers.Shortcuts.txtDescriptionMoveEndText":"Colocar el cursor al final del texto en una celda o forma.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusNextObject":"Mover el foco al siguiente objeto después del seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusPreviousObject":"Mover el foco al objeto anterior al seleccionado actualmente.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepBottom":"Utilizar las flechas del teclado para desplazar el objeto seleccionado un paso grande hacia abajo.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepLeft":"Utilizar las flechas del teclado para mover el objeto seleccionado un paso grande hacia la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepRight":"Utilizar las flechas del teclado para mover el objeto seleccionado un paso grande hacia la derecha.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepUp":"Utilizar las flechas del teclado para mover el objeto seleccionado un paso grande hacia arriba.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepBottom":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia abajo un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepLeft":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la izquierda un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepRight":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia la derecha un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepUp":"Mantenga pulsada la tecla especificada y utilice la flecha del teclado para mover el objeto seleccionado hacia arriba un píxel cada vez.","Common.Controllers.Shortcuts.txtDescriptionMoveWordLeft":"Mover el cursor una palabra a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionMoveWordRight":"Mover el cursor una palabra a la derecha.","Common.Controllers.Shortcuts.txtDescriptionNavigateNextControl":"Navegar entre los controles para dar el foco al siguiente control en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionNavigatePreviousControl":"Navegar entre los controles para dar el foco al control anterior en los diálogos modales.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Cambiar a la siguiente pestaña de archivo en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionNextWorksheet":"Pasar a la siguiente hoja de la hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Abrir el panel Chat en los editores en línea y enviar un mensaje.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Abrir un campo de entrada de datos donde se puede añadir el texto del comentario.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Abrir el panel Comentarios para añadir su propio comentario o responder a los comentarios de otros usuarios.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Abrir el menú contextual del elemento seleccionado.","Common.Controllers.Shortcuts.txtDescriptionOpenDeleteCellsWindow":"Abrir el cuadro de diálogo para eliminar celdas dentro de la hoja de cálculo actual con un parámetro añadido de desplazamiento hacia la izquierda, desplazamiento hacia arriba, eliminación de una fila completa o una columna completa.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Abrir el cuadro de diálogo estándar que permite seleccionar un archivo existente. Si selecciona el archivo en este cuadro de diálogo y hace clic en Abrir, el archivo se abrirá en una nueva pestaña o ventana de los editores de escritorio.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Abrir el panel Archivo para guardar, descargar, imprimir la hoja de cálculo actual, ver su información, crear una nueva hoja de cálculo o abrir una existente, acceder al menú de ayuda del editor de hojas de cálculo o a su configuración avanzada.","Common.Controllers.Shortcuts.txtDescriptionOpenFilterWindow":"En el encabezado de una columna con filtro, abrir la ventana del filtro.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Abrir el menú (panel) Buscar y reemplazar con el campo de reemplazo para reemplazar una o más apariciones de los caracteres encontrados.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Abrir la ventana del cuadro de diálogo Buscar para comenzar a buscar una celda que contenga los caracteres requeridos.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Abrir el menú Ayuda del editor de hojas de cálculo.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertCellsWindow":"Abrir el cuadro de diálogo para insertar nuevas celdas dentro de la hoja de cálculo actual con un parámetro añadido de desplazamiento hacia la derecha, desplazamiento hacia abajo, inserción de una fila completa o una columna completa.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertFunctionDialog":"Abrir el cuadro de diálogo para insertar una nueva función seleccionándola de la lista proporcionada.","Common.Controllers.Shortcuts.txtDescriptionOpenNumberFormatDialog":"Abrir el cuadro de diálogo Formato numérico.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insertar los datos o gráficos previamente copiados o cortados del portapapeles del ordenador en la posición actual del cursor. Los datos pueden haberse copiado previamente de la misma hoja de cálculo, de otra hoja de cálculo o de algún otro programa.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaAllFormatting":"Pegar fórmulas con todo el formato de datos.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaColumnWidth":"Pegar fórmulas con todo el formato de datos y establecer el ancho de la columna de origen para el rango de celdas.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNoBorders":"Pegar fórmulas con todo el formato de datos excepto los bordes de las celdas.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNumberFormat":"Pegar fórmulas con el formato aplicado a los números.","Common.Controllers.Shortcuts.txtDescriptionPasteLink":"Pegar el enlace externo en una celda o rango de celdas de otra hoja de cálculo dentro del portal actual (en el editor en línea) o en un archivo local (en el editor de escritorio).","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormatting":"Pegar solo el formato de la celda sin pegar el contenido de la celda.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormula":"Pegar fórmulas sin pegar el formato de los datos.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyValue":"Pegar los resultados de la fórmula sin pegar el formato de los datos.","Common.Controllers.Shortcuts.txtDescriptionPasteValueAllFormatting":"Pegar los resultados de la fórmula con todo el formato de los datos.","Common.Controllers.Shortcuts.txtDescriptionPasteValueNumberFormat":"Pegar los resultados de la fórmula con el formato aplicado a los números.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Cambiar a la pestaña del archivo anterior en los editores de escritorio o a la pestaña del navegador en los editores en línea.","Common.Controllers.Shortcuts.txtDescriptionPreviousWorksheet":"Pasar a la hoja anterior de la hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Imprimir la hoja de cálculo con una de las impresoras disponibles o guardarla en un archivo.","Common.Controllers.Shortcuts.txtDescriptionRecalculateActiveSheet":"Recalcular la hoja de cálculo actual.","Common.Controllers.Shortcuts.txtDescriptionRecalculateAll":"Recalcular todo el libro.","Common.Controllers.Shortcuts.txtDescriptionRefreshAllPivots":"Actualizar todas las tablas dinámicas.","Common.Controllers.Shortcuts.txtDescriptionRefreshSelectedPivots":"Actualizar la tabla dinámica seleccionada anteriormente.","Common.Controllers.Shortcuts.txtDescriptionRemoveGraphicalObject":"Eliminar el objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Cambiar la alineación de un párrafo de derecha a izquierda. Solo funciona con texto dentro de un objeto gráfico.","Common.Controllers.Shortcuts.txtDescriptionSave":"Guardar todos los cambios realizados en la hoja de cálculo editada actualmente con el editor de hojas de cálculo. El archivo activo se guardará con su nombre, ubicación y formato de archivo actuales.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningLine":"Seleccionar un fragmento de texto desde el cursor hasta el principio de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningText":"Seleccionar un fragmento de texto desde el cursor hasta el principio del texto en una celda o forma.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningWorksheet":"Seleccionar un fragmento desde las celdas seleccionadas actualmente hasta el principio de la hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterLeft":"Seleccionar un carácter a la izquierda de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterRight":"Seleccionar un carácter a la derecha de la posición del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectColumn":"Seleccionar una columna completa en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorBeginningRow":"Seleccionar un fragmento desde el cursor hasta el principio de la fila actual.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorEndRow":"Seleccionar un fragmento desde el cursor hasta el final de la fila actual.","Common.Controllers.Shortcuts.txtDescriptionSelectDownOneScreen":"Ampliar la selección para incluir todas las celdas que se encuentran una pantalla más abajo de la celda activa. Se seleccionarán todas las celdas de las columnas del rango seleccionado anteriormente.","Common.Controllers.Shortcuts.txtDescriptionSelectEndLine":"Seleccionar un fragmento de texto desde el cursor hasta el final de la línea actual.","Common.Controllers.Shortcuts.txtDescriptionSelectEndText":"Seleccionar un fragmento de texto desde el cursor hasta el final del texto en una celda o forma.","Common.Controllers.Shortcuts.txtDescriptionSelectFirstColumn":"Ampliar la selección a la primera columna (A).","Common.Controllers.Shortcuts.txtDescriptionSelectLastUsedCell":"Seleccionar un fragmento desde las celdas seleccionadas actualmente hasta la última celda utilizada en la hoja de cálculo (en la fila inferior con datos de la columna más a la derecha con datos). Si el cursor se encuentra en la barra de fórmulas, se seleccionará todo el texto de la barra de fórmulas desde la posición del cursor hasta el final, sin afectar a la altura de la barra de fórmulas.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Mover el cursor una línea hacia abajo, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Mover el cursor una línea hacia arriba, seleccionando todos los símbolos entre la posición anterior y la actual del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankDown":"Ampliar la selección a la celda no vacía más cercana en la misma columna, debajo de la celda activa. Si la celda siguiente está vacía, la selección se ampliará a la siguiente celda no vacía.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankRight":"Ampliar la selección a la celda no vacía más cercana en la misma fila a la derecha de la celda activa. Si la celda siguiente está vacía, la selección se ampliará a la siguiente celda no vacía.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankUp":"Ampliar la selección a la celda no vacía más cercana en la misma columna, arriba de la celda activa. Si la celda siguiente está en blanco, la selección se ampliará a la siguiente celda no vacía.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankDown":"Seleccionar celdas hasta la siguiente celda no vacía debajo de la celda activa o hasta el borde del área visible.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankLeft":"Seleccionar celdas hasta la siguiente celda no vacía a la izquierda de la celda activa o hasta el borde del área visible.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankRight":"Seleccionar celdas hasta la siguiente celda no vacía a la derecha de la celda activa o hasta el borde del área visible.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankUp":"Seleccionar celdas hasta la siguiente celda no vacía por encima de la celda activa o hasta el borde del área visible.","Common.Controllers.Shortcuts.txtDescriptionSelectNonblankLeft":"Ampliar la selección a la celda no en blanco situada a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellDown":"Seleccionar una celda más abajo.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellLeft":"Seleccionar una celda a la izquierda.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellRight":"Seleccionar una celda a la derecha.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellUp":"Seleccionar una celda más arriba.","Common.Controllers.Shortcuts.txtDescriptionSelectRow":"Seleccionar una fila completa en una hoja de cálculo.","Common.Controllers.Shortcuts.txtDescriptionSelectUpOneScreen":"Ampliar la selección para incluir todas las celdas de una pantalla por encima de la celda activa. Se seleccionarán todas las celdas de las columnas del rango seleccionado anteriormente.","Common.Controllers.Shortcuts.txtDescriptionSelectWordLeft":"Seleccionar una palabra a la izquierda del cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectWordRight":"Seleccionar una palabra a la derecha del cursor.","Common.Controllers.Shortcuts.txtDescriptionShowFormulas":"Mostrar funciones (no sus valores) en una hoja para imprimirlas.","Common.Controllers.Shortcuts.txtDescriptionSlicerClearSelectedValues":"Borrar los valores seleccionados para un segmentador.","Common.Controllers.Shortcuts.txtDescriptionSlicerSwitchMultiSelect":"Habilitar/deshabilitar la selección múltiple para un segmentador.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Activar/desactivar la transmisión de acciones realizadas en la aplicación para lectores de pantalla.","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Hacer que el fragmento de texto seleccionado aparezca tachado con una línea que atraviesa las letras, o eliminar el formato de tachado.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte inferior de la línea de texto, por ejemplo, como en las fórmulas químicas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Hacer que el fragmento de texto seleccionado sea más pequeño y colocarlo en la parte superior de la línea de texto, por ejemplo, como en las fracciones.","Common.Controllers.Shortcuts.txtDescriptionToggleAutoFilter":"Habilitar un filtro para un rango de celdas seleccionado o eliminar el filtro.","Common.Controllers.Shortcuts.txtDescriptionTranspose":"Pegar datos cambiándolos de columnas a filas, o viceversa. Esta opción está disponible para rangos de datos normales, pero no para tablas formateadas.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Hacer que el fragmento de texto seleccionado aparezca subrayado con una línea debajo de las letras, o eliminar el subrayado.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visitar un hiperenlace (con el cursor sobre el hiperenlace).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Restablecer el parámetro «Ampliación» de la hoja de cálculo actual al valor predeterminado del 100 %.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Ampliar la hoja de cálculo que se está editando actualmente.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Alejar la hoja de cálculo que se está editando actualmente.","Common.Controllers.Shortcuts.txtLabelAddLineBreak":"AddLineBreak","Common.Controllers.Shortcuts.txtLabelAutoFill":"AutoFill","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCellAddSeparator":"CellAddSeparator","Common.Controllers.Shortcuts.txtLabelCellCurrencyFormat":"CellCurrencyFormat","Common.Controllers.Shortcuts.txtLabelCellDateFormat":"CellDateFormat","Common.Controllers.Shortcuts.txtLabelCellEditorSwitchReference":"CellEditorSwitchReference","Common.Controllers.Shortcuts.txtLabelCellEntryCancel":"CellEntryCancel","Common.Controllers.Shortcuts.txtLabelCellExponentialFormat":"CellExponentialFormat","Common.Controllers.Shortcuts.txtLabelCellGeneralFormat":"CellGeneralFormat","Common.Controllers.Shortcuts.txtLabelCellInsertDate":"CellInsertDate","Common.Controllers.Shortcuts.txtLabelCellInsertSumFunction":"CellInsertSumFunction","Common.Controllers.Shortcuts.txtLabelCellInsertTime":"CellInsertTime","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellDown":"CellMoveActiveCellDown","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellLeft":"CellMoveActiveCellLeft","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellRight":"CellMoveActiveCellRight","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellUp":"CellMoveActiveCellUp","Common.Controllers.Shortcuts.txtLabelCellMoveBottomEdge":"CellMoveBottomEdge","Common.Controllers.Shortcuts.txtLabelCellMoveBottomNonBlank":"CellMoveBottomNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveDown":"CellMoveDown","Common.Controllers.Shortcuts.txtLabelCellMoveEndSpreadsheet":"CellMoveEndSpreadsheet","Common.Controllers.Shortcuts.txtLabelCellMoveFirstCell":"CellMoveFirstCell","Common.Controllers.Shortcuts.txtLabelCellMoveFirstColumn":"CellMoveFirstColumn","Common.Controllers.Shortcuts.txtLabelCellMoveLeft":"CellMoveLeft","Common.Controllers.Shortcuts.txtLabelCellMoveLeftNonBlank":"CellMoveLeftNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveRight":"CellMoveRight","Common.Controllers.Shortcuts.txtLabelCellMoveRightNonBlank":"CellMoveRightNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveTopEdge":"CellMoveTopEdge","Common.Controllers.Shortcuts.txtLabelCellMoveTopNonBlank":"CellMoveTopNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveUp":"CellMoveUp","Common.Controllers.Shortcuts.txtLabelCellNumberFormat":"CellNumberFormat","Common.Controllers.Shortcuts.txtLabelCellPercentFormat":"CellPercentFormat","Common.Controllers.Shortcuts.txtLabelCellStartNewLine":"CellStartNewLine","Common.Controllers.Shortcuts.txtLabelCellTimeFormat":"CellTimeFormat","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelClearActiveCellContent":"ClearActiveCellContent","Common.Controllers.Shortcuts.txtLabelClearSelectedCellsContent":"ClearSelectedCellsContent","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveDown":"CompleteCellEntryMoveDown","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveLeft":"CompleteCellEntryMoveLeft","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveRight":"CompleteCellEntryMoveRight","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveUp":"CompleteCellEntryMoveUp","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryStay":"CompleteCellEntryStay","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelDownloadAs":"DownloadAs","Common.Controllers.Shortcuts.txtLabelDrawingAddTab":"DrawingAddTab","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditOpenCellEditor":"EditOpenCellEditor","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelExitAddingShapesMode":"ExitAddingShapesMode","Common.Controllers.Shortcuts.txtLabelFillSelectedCellRange":"FillSelectedCellRange","Common.Controllers.Shortcuts.txtLabelFormatAsTableTemplate":"FormatAsTableTemplate","Common.Controllers.Shortcuts.txtLabelFormatTableAddSummaryRow":"FormatTableAddSummaryRow","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelMoveBeginningLine":"MoveBeginningLine","Common.Controllers.Shortcuts.txtLabelMoveBeginningText":"MoveBeginningText","Common.Controllers.Shortcuts.txtLabelMoveCharacterLeft":"MoveCharacterLeft","Common.Controllers.Shortcuts.txtLabelMoveCharacterRight":"MoveCharacterRight","Common.Controllers.Shortcuts.txtLabelMoveCursorLineDown":"MoveCursorLineDown","Common.Controllers.Shortcuts.txtLabelMoveCursorLineUp":"MoveCursorLineUp","Common.Controllers.Shortcuts.txtLabelMoveEndLine":"MoveEndLine","Common.Controllers.Shortcuts.txtLabelMoveEndText":"MoveEndText","Common.Controllers.Shortcuts.txtLabelMoveFocusNextObject":"MoveFocusNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusPreviousObject":"MoveFocusPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepBottom":"MoveShapeBigStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepLeft":"MoveShapeBigStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepRight":"MoveShapeBigStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepUp":"MoveShapeBigStepUp","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepBottom":"MoveShapeLittleStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepLeft":"MoveShapeLittleStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepRight":"MoveShapeLittleStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepUp":"MoveShapeLittleStepUp","Common.Controllers.Shortcuts.txtLabelMoveWordLeft":"MoveWordLeft","Common.Controllers.Shortcuts.txtLabelMoveWordRight":"MoveWordRight","Common.Controllers.Shortcuts.txtLabelNavigateNextControl":"NavigateNextControl","Common.Controllers.Shortcuts.txtLabelNavigatePreviousControl":"NavigatePreviousControl","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextWorksheet":"NextWorksheet","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenDeleteCellsWindow":"OpenDeleteCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFilterWindow":"OpenFilterWindow","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelOpenInsertCellsWindow":"OpenInsertCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenInsertFunctionDialog":"OpenInsertFunctionDialog","Common.Controllers.Shortcuts.txtLabelOpenNumberFormatDialog":"OpenNumberFormatDialog","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormulaAllFormatting":"PasteFormulaAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteFormulaColumnWidth":"PasteFormulaColumnWidth","Common.Controllers.Shortcuts.txtLabelPasteFormulaNoBorders":"PasteFormulaNoBorders","Common.Controllers.Shortcuts.txtLabelPasteFormulaNumberFormat":"PasteFormulaNumberFormat","Common.Controllers.Shortcuts.txtLabelPasteLink":"PasteLink","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormatting":"PasteOnlyFormatting","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormula":"PasteOnlyFormula","Common.Controllers.Shortcuts.txtLabelPasteOnlyValue":"PasteOnlyValue","Common.Controllers.Shortcuts.txtLabelPasteValueAllFormatting":"PasteValueAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteValueNumberFormat":"PasteValueNumberFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousWorksheet":"PreviousWorksheet","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRecalculateActiveSheet":"RecalculateActiveSheet","Common.Controllers.Shortcuts.txtLabelRecalculateAll":"RecalculateAll","Common.Controllers.Shortcuts.txtLabelRefreshAllPivots":"RefreshAllPivots","Common.Controllers.Shortcuts.txtLabelRefreshSelectedPivots":"RefreshSelectedPivots","Common.Controllers.Shortcuts.txtLabelRemoveGraphicalObject":"RemoveGraphicalObject","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSelectBeginningLine":"SelectBeginningLine","Common.Controllers.Shortcuts.txtLabelSelectBeginningText":"SelectBeginningText","Common.Controllers.Shortcuts.txtLabelSelectBeginningWorksheet":"SelectBeginningWorksheet","Common.Controllers.Shortcuts.txtLabelSelectCharacterLeft":"SelectCharacterLeft","Common.Controllers.Shortcuts.txtLabelSelectCharacterRight":"SelectCharacterRight","Common.Controllers.Shortcuts.txtLabelSelectColumn":"SelectColumn","Common.Controllers.Shortcuts.txtLabelSelectCursorBeginningRow":"SelectCursorBeginningRow","Common.Controllers.Shortcuts.txtLabelSelectCursorEndRow":"SelectCursorEndRow","Common.Controllers.Shortcuts.txtLabelSelectDownOneScreen":"SelectDownOneScreen","Common.Controllers.Shortcuts.txtLabelSelectEndLine":"SelectEndLine","Common.Controllers.Shortcuts.txtLabelSelectEndText":"SelectEndText","Common.Controllers.Shortcuts.txtLabelSelectFirstColumn":"SelectFirstColumn","Common.Controllers.Shortcuts.txtLabelSelectLastUsedCell":"SelectLastUsedCell","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankDown":"SelectNearestNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankRight":"SelectNearestNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankUp":"SelectNearestNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankDown":"SelectNextNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankLeft":"SelectNextNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankRight":"SelectNextNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankUp":"SelectNextNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNonblankLeft":"SelectNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellDown":"SelectOneCellDown","Common.Controllers.Shortcuts.txtLabelSelectOneCellLeft":"SelectOneCellLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellRight":"SelectOneCellRight","Common.Controllers.Shortcuts.txtLabelSelectOneCellUp":"SelectOneCellUp","Common.Controllers.Shortcuts.txtLabelSelectRow":"SelectRow","Common.Controllers.Shortcuts.txtLabelSelectUpOneScreen":"SelectUpOneScreen","Common.Controllers.Shortcuts.txtLabelSelectWordLeft":"SelectWordLeft","Common.Controllers.Shortcuts.txtLabelSelectWordRight":"SelectWordRight","Common.Controllers.Shortcuts.txtLabelShowFormulas":"ShowFormulas","Common.Controllers.Shortcuts.txtLabelSlicerClearSelectedValues":"SlicerClearSelectedValues","Common.Controllers.Shortcuts.txtLabelSlicerSwitchMultiSelect":"SlicerSwitchMultiSelect","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelToggleAutoFilter":"ToggleAutoFilter","Common.Controllers.Shortcuts.txtLabelTranspose":"Transpose","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","Common.define.chartData.textArea":"Área","Common.define.chartData.textAreaStacked":"Área apilada","Common.define.chartData.textAreaStackedPer":"Área apilada 100% ","Common.define.chartData.textBar":"Barra","Common.define.chartData.textBarNormal":"Columna agrupada","Common.define.chartData.textBarNormal3d":"Columna 3D agrupada","Common.define.chartData.textBarNormal3dPerspective":"Columna 3D","Common.define.chartData.textBarStacked":"Columna apilada","Common.define.chartData.textBarStacked3d":"Columna 3D apilada","Common.define.chartData.textBarStackedPer":"Columna apilada 100%","Common.define.chartData.textBarStackedPer3d":"Columna 3D apilada 100%","Common.define.chartData.textCharts":"Gráficos","Common.define.chartData.textColumn":"Gráfico de columnas","Common.define.chartData.textColumnSpark":"Histograma","Common.define.chartData.textCombo":"Combinado","Common.define.chartData.textComboAreaBar":"Área apilada - Columna agrupada","Common.define.chartData.textComboBarLine":"Columna agrupada - Línea","Common.define.chartData.textComboBarLineSecondary":"Columna agrupada - Línea en eje secundario","Common.define.chartData.textComboCustom":"Combinación personalizada","Common.define.chartData.textDoughnut":"Anillo","Common.define.chartData.textHBarNormal":"Barra agrupada","Common.define.chartData.textHBarNormal3d":"Barra 3D agrupada","Common.define.chartData.textHBarStacked":"Barra apilada","Common.define.chartData.textHBarStacked3d":"Barra 3D apilada","Common.define.chartData.textHBarStackedPer":"Barra apilada 100%","Common.define.chartData.textHBarStackedPer3d":"Barra 3D apilada 100%","Common.define.chartData.textLine":"Línea","Common.define.chartData.textLine3d":"Línea 3D","Common.define.chartData.textLineMarker":"Línea con marcadores","Common.define.chartData.textLineSpark":"Línea","Common.define.chartData.textLineStacked":"Línea apilada","Common.define.chartData.textLineStackedMarker":"Línea apilada con marcadores","Common.define.chartData.textLineStackedPer":"Línea apilada 100%","Common.define.chartData.textLineStackedPerMarker":"Línea apilada con marcadores 100%","Common.define.chartData.textPie":"Gráfico circular","Common.define.chartData.textPie3d":"Circular 3D","Common.define.chartData.textPoint":"XY (Dispersión)","Common.define.chartData.textRadar":"Radial","Common.define.chartData.textRadarFilled":"Radial relleno","Common.define.chartData.textRadarMarker":"Radial con marcadores","Common.define.chartData.textScatter":"Dispersión","Common.define.chartData.textScatterLine":"Dispersión con líneas rectas","Common.define.chartData.textScatterLineMarker":"Dispersión con líneas rectas y marcadores","Common.define.chartData.textScatterSmooth":"Dispersión con líneas suavizadas","Common.define.chartData.textScatterSmoothMarker":"Dispersión con líneas suavizadas y marcadores","Common.define.chartData.textSparks":"Minigráficos","Common.define.chartData.textStock":"De cotizaciones","Common.define.chartData.textSurface":"Superficie","Common.define.chartData.textWinLossSpark":"Ganancia/pérdida","Common.define.conditionalData.exampleText":"AaBbCcYyZz","Common.define.conditionalData.noFormatText":"Sin formato establecido","Common.define.conditionalData.text1Above":"1 por encima de des. est.","Common.define.conditionalData.text1Below":"1 por debajo de des. est.","Common.define.conditionalData.text2Above":"2 por encima de des. est.","Common.define.conditionalData.text2Below":"2 por debajo de des. est.","Common.define.conditionalData.text3Above":"3 por encima de des. est.","Common.define.conditionalData.text3Below":"3 por debajo de des. est.","Common.define.conditionalData.textAbove":"Encima","Common.define.conditionalData.textAverage":"Promedio","Common.define.conditionalData.textBegins":"Empieza con","Common.define.conditionalData.textBelow":"Debajo","Common.define.conditionalData.textBetween":"Entre","Common.define.conditionalData.textBlank":"En blanco","Common.define.conditionalData.textBlanks":"Contiene celdas en blanco","Common.define.conditionalData.textBottom":"Inferior","Common.define.conditionalData.textContains":"Contiene","Common.define.conditionalData.textDataBar":"Barra de datos","Common.define.conditionalData.textDate":"Fecha","Common.define.conditionalData.textDuplicate":"Duplicar","Common.define.conditionalData.textEnds":"Termina con","Common.define.conditionalData.textEqAbove":"Igual o superior a","Common.define.conditionalData.textEqBelow":"Igual o menor que","Common.define.conditionalData.textEqual":"Igual que","Common.define.conditionalData.textError":"Error","Common.define.conditionalData.textErrors":"Contiene errores","Common.define.conditionalData.textFormula":"Fórmula","Common.define.conditionalData.textGreater":"Mayor que","Common.define.conditionalData.textGreaterEq":"Mayor o igual a","Common.define.conditionalData.textIconSets":"Conjuntos de iconos","Common.define.conditionalData.textLast7days":"En los últimos 7 días","Common.define.conditionalData.textLastMonth":"Mes pasado","Common.define.conditionalData.textLastWeek":"Semana pasada","Common.define.conditionalData.textLess":"Menor que","Common.define.conditionalData.textLessEq":"Menor o igual a","Common.define.conditionalData.textNextMonth":"Mes siguiente","Common.define.conditionalData.textNextWeek":"Semana siguiente","Common.define.conditionalData.textNotBetween":"No está entre","Common.define.conditionalData.textNotBlanks":"No contiene celdas en blanco","Common.define.conditionalData.textNotContains":"No contiene","Common.define.conditionalData.textNotEqual":"No igual a","Common.define.conditionalData.textNotErrors":"No contiene errores","Common.define.conditionalData.textText":"Texto","Common.define.conditionalData.textThisMonth":"Este mes","Common.define.conditionalData.textThisWeek":"Esta semana","Common.define.conditionalData.textToday":"Hoy","Common.define.conditionalData.textTomorrow":"Mañana","Common.define.conditionalData.textTop":"Superior","Common.define.conditionalData.textUnique":"Único","Common.define.conditionalData.textValue":"El valor es","Common.define.conditionalData.textYesterday":"Ayer","Common.define.smartArt.textAccentedPicture":"Imagen destacada","Common.define.smartArt.textAccentProcess":"Proceso destacado","Common.define.smartArt.textAlternatingFlow":"Flujo alternativo","Common.define.smartArt.textAlternatingHexagons":"Hexágonos alternativos","Common.define.smartArt.textAlternatingPictureBlocks":"Bloques de imágenes alternativos","Common.define.smartArt.textAlternatingPictureCircles":"Círculos con imágenes alternativos","Common.define.smartArt.textArchitectureLayout":"Diseño de arquitectura","Common.define.smartArt.textArrowRibbon":"Cinta de flechas","Common.define.smartArt.textAscendingPictureAccentProcess":"Proceso de imágenes destacadas ascendente","Common.define.smartArt.textBalance":"Saldo","Common.define.smartArt.textBasicBendingProcess":"Proceso curvo básico","Common.define.smartArt.textBasicBlockList":"Lista de bloques básica","Common.define.smartArt.textBasicChevronProcess":"Proceso cheurón básico","Common.define.smartArt.textBasicCycle":"Ciclo básico","Common.define.smartArt.textBasicMatrix":"Matriz básica","Common.define.smartArt.textBasicPie":"Circular básico","Common.define.smartArt.textBasicProcess":"Proceso básico","Common.define.smartArt.textBasicPyramid":"Pirámide básica","Common.define.smartArt.textBasicRadial":"Radial básico","Common.define.smartArt.textBasicTarget":"Objetivo básico","Common.define.smartArt.textBasicTimeline":"Escala de tiempo básica","Common.define.smartArt.textBasicVenn":"Venn básico","Common.define.smartArt.textBendingPictureAccentList":"Lista destacada con círculos abajo","Common.define.smartArt.textBendingPictureBlocks":" Bloques de imágenes con cuadro","Common.define.smartArt.textBendingPictureCaption":"Imagen curvada con títulos","Common.define.smartArt.textBendingPictureCaptionList":"Lista de imágenes curvadas con títulos","Common.define.smartArt.textBendingPictureSemiTranparentText":"Imágenes curvadas con texto semitransparente","Common.define.smartArt.textBlockCycle":"Ciclo de bloques","Common.define.smartArt.textBubblePictureList":"Lista de imágenes con burbujas","Common.define.smartArt.textCaptionedPictures":"Imágenes con títulos","Common.define.smartArt.textChevronAccentProcess":"Proceso cheurón destacado","Common.define.smartArt.textChevronList":"Lista de cheurones","Common.define.smartArt.textCircleAccentTimeline":"Línea de tiempo con círculos","Common.define.smartArt.textCircleArrowProcess":"Proceso de círculos con flecha","Common.define.smartArt.textCirclePictureHierarchy":"Jerarquía con imágenes en círculos","Common.define.smartArt.textCircleProcess":"Proceso de círculos","Common.define.smartArt.textCircleRelationship":"Relación de círculo","Common.define.smartArt.textCircularBendingProcess":"Proceso curvo circular","Common.define.smartArt.textCircularPictureCallout":"Llamada de imagen circular","Common.define.smartArt.textClosedChevronProcess":"Proceso de cheurón cerrado","Common.define.smartArt.textContinuousArrowProcess":"Proceso de flechas continuo","Common.define.smartArt.textContinuousBlockProcess":"Proceso de bloque continuo","Common.define.smartArt.textContinuousCycle":"Ciclo continuo","Common.define.smartArt.textContinuousPictureList":"Lista de imágenes continua","Common.define.smartArt.textConvergingArrows":"Flechas convergentes","Common.define.smartArt.textConvergingRadial":"Radial convergente","Common.define.smartArt.textConvergingText":"Texto convergente","Common.define.smartArt.textCounterbalanceArrows":"Flechas de contrapeso","Common.define.smartArt.textCycle":"Ciclo","Common.define.smartArt.textCycleMatrix":"Matriz de ciclo","Common.define.smartArt.textDescendingBlockList":"Lista de bloques descendente","Common.define.smartArt.textDescendingProcess":"Proceso descendente","Common.define.smartArt.textDetailedProcess":"Proceso detallado","Common.define.smartArt.textDivergingArrows":"Flechas divergentes","Common.define.smartArt.textDivergingRadial":"Radial divergente","Common.define.smartArt.textEquation":"Ecuación","Common.define.smartArt.textFramedTextPicture":"Imagen de texto enmarcado","Common.define.smartArt.textFunnel":"Embudo","Common.define.smartArt.textGear":"Engranaje","Common.define.smartArt.textGridMatrix":"Matriz de cuadrícula","Common.define.smartArt.textGroupedList":"Lista agrupada","Common.define.smartArt.textHalfCircleOrganizationChart":"Organigrama con semicírculos","Common.define.smartArt.textHexagonCluster":"Grupo de hexágonos","Common.define.smartArt.textHexagonRadial":"Radial con hexágonos","Common.define.smartArt.textHierarchy":"Jerarquía","Common.define.smartArt.textHierarchyList":"Lista de jerarquías","Common.define.smartArt.textHorizontalBulletList":"Lista de viñetas horizontal","Common.define.smartArt.textHorizontalHierarchy":"Jerarquía horizontal","Common.define.smartArt.textHorizontalLabeledHierarchy":"Jerarquía etiquetada horizontal","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"Jerarquía horizontal de varios niveles","Common.define.smartArt.textHorizontalOrganizationChart":"Organigrama horizontal","Common.define.smartArt.textHorizontalPictureList":"Lista horizontal de imágenes","Common.define.smartArt.textIncreasingArrowProcess":"Proceso de flechas crecientes","Common.define.smartArt.textIncreasingCircleProcess":"Proceso de círculos crecientes","Common.define.smartArt.textInterconnectedBlockProcess":"Proceso de bloques interconectados","Common.define.smartArt.textInterconnectedRings":"Anillos interconectados","Common.define.smartArt.textInvertedPyramid":"Pirámide invertida","Common.define.smartArt.textLabeledHierarchy":"Jerarquía etiquetada","Common.define.smartArt.textLinearVenn":"Venn lineal","Common.define.smartArt.textLinedList":"Lista alineada","Common.define.smartArt.textList":"Lista","Common.define.smartArt.textMatrix":"Matriz","Common.define.smartArt.textMultidirectionalCycle":"Ciclo multidireccional","Common.define.smartArt.textNameAndTitleOrganizationChart":"Organigrama con nombres y cargos","Common.define.smartArt.textNestedTarget":"Objetivo anidado","Common.define.smartArt.textNondirectionalCycle":"Ciclo sin dirección","Common.define.smartArt.textOpposingArrows":"Flechas opuestas","Common.define.smartArt.textOpposingIdeas":"Ideas opuestas","Common.define.smartArt.textOrganizationChart":"Organigrama","Common.define.smartArt.textOther":"Otro","Common.define.smartArt.textPhasedProcess":"Proceso en fases","Common.define.smartArt.textPicture":"Imagen","Common.define.smartArt.textPictureAccentBlocks":"Imágenes destacadas en bloques","Common.define.smartArt.textPictureAccentList":"Lista de imágenes destacadas","Common.define.smartArt.textPictureAccentProcess":"Proceso de imágenes destacadas","Common.define.smartArt.textPictureCaptionList":"Lista de títulos de imágenes","Common.define.smartArt.textPictureFrame":"Marco de fotos","Common.define.smartArt.textPictureGrid":"Imágenes en cuadrícula","Common.define.smartArt.textPictureLineup":"Imágenes en paralelo","Common.define.smartArt.textPictureOrganizationChart":"Organigrama con imágenes","Common.define.smartArt.textPictureStrips":"Imágenes en columna","Common.define.smartArt.textPieProcess":"Proceso circular","Common.define.smartArt.textPlusAndMinus":"Más y menos","Common.define.smartArt.textProcess":"Proceso","Common.define.smartArt.textProcessArrows":"Flechas de proceso","Common.define.smartArt.textProcessList":"Lista de procesos","Common.define.smartArt.textPyramid":"Pirámide","Common.define.smartArt.textPyramidList":"Lista en pirámide","Common.define.smartArt.textRadialCluster":"Diseño radial","Common.define.smartArt.textRadialCycle":"Ciclo radial","Common.define.smartArt.textRadialList":"Lista radial","Common.define.smartArt.textRadialPictureList":"Lista radial con imágenes","Common.define.smartArt.textRadialVenn":"Venn radial","Common.define.smartArt.textRandomToResultProcess":"Proceso de azar a resultado","Common.define.smartArt.textRelationship":"Relación","Common.define.smartArt.textRepeatingBendingProcess":"Proceso curvo repetitivo","Common.define.smartArt.textReverseList":"Lista inversa","Common.define.smartArt.textSegmentedCycle":"Ciclo segmentado","Common.define.smartArt.textSegmentedProcess":"Proceso segmentado","Common.define.smartArt.textSegmentedPyramid":"Pirámide segmentada","Common.define.smartArt.textSnapshotPictureList":"Lista de imágenes instantáneas","Common.define.smartArt.textSpiralPicture":"Imagen en espiral","Common.define.smartArt.textSquareAccentList":"Lista de imágenes con cuadrados","Common.define.smartArt.textStackedList":"Lista apilada","Common.define.smartArt.textStackedVenn":"Venn apilado","Common.define.smartArt.textStaggeredProcess":"Proceso escalonado","Common.define.smartArt.textStepDownProcess":"Proceso de nivel inferior","Common.define.smartArt.textStepUpProcess":"Proceso de nivel superior","Common.define.smartArt.textSubStepProcess":"Proceso de pasos secundarios","Common.define.smartArt.textTabbedArc":"Arco con pestañas","Common.define.smartArt.textTableHierarchy":"Jerarquía de tabla","Common.define.smartArt.textTableList":"Lista de tablas","Common.define.smartArt.textTabList":"Lista de pestañas","Common.define.smartArt.textTargetList":"Lista de objetivo","Common.define.smartArt.textTextCycle":"Ciclo de texto","Common.define.smartArt.textThemePictureAccent":"Imágenes temáticas destacadas","Common.define.smartArt.textThemePictureAlternatingAccent":"Imágenes temáticas destacadas alternativas","Common.define.smartArt.textThemePictureGrid":"Imágenes temáticas en cuadrícula","Common.define.smartArt.textTitledMatrix":"Matriz con títulos","Common.define.smartArt.textTitledPictureAccentList":"Lista de imágenes destacadas con título","Common.define.smartArt.textTitledPictureBlocks":"Bloques de imágenes con títulos","Common.define.smartArt.textTitlePictureLineup":"Serie de imágenes con título","Common.define.smartArt.textTrapezoidList":"Lista de trapezoides","Common.define.smartArt.textUpwardArrow":"Flecha arriba","Common.define.smartArt.textVaryingWidthList":"Lista de ancho variable","Common.define.smartArt.textVerticalAccentList":"Lista con rectángulos en vertical","Common.define.smartArt.textVerticalArrowList":"Lista vertical de flechas","Common.define.smartArt.textVerticalBendingProcess":"Proceso curvo vertical","Common.define.smartArt.textVerticalBlockList":"Lista de bloques verticales","Common.define.smartArt.textVerticalBoxList":"Lista vertical de cuadros","Common.define.smartArt.textVerticalBracketList":"Lista vertical con corchetes","Common.define.smartArt.textVerticalBulletList":"Lista vertical de viñetas","Common.define.smartArt.textVerticalChevronList":"Lista vertical de cheurones","Common.define.smartArt.textVerticalCircleList":"Lista con círculos en vertical","Common.define.smartArt.textVerticalCurvedList":"Lista curvada vertical","Common.define.smartArt.textVerticalEquation":"Ecuación vertical","Common.define.smartArt.textVerticalPictureAccentList":"Lista con círculos a la izquierda","Common.define.smartArt.textVerticalPictureList":"Lista vertical de imágenes","Common.define.smartArt.textVerticalProcess":"Proceso vertical","Common.Translation.textMoreButton":"Más","Common.Translation.tipFileLocked":"El documento está bloqueado para su edición. Puede hacer cambios y guardarlo como copia local más tarde.","Common.Translation.tipFileReadOnly":"El archivo es de solo lectura. Para no perder los cambios, guarde el archivo con otro nombre o en otra ubicación.","Common.Translation.warnFileLocked":"El archivo está siendo editado en otra aplicación. Puede continuar editándolo y guardarlo como una copia.","Common.Translation.warnFileLockedBtnEdit":"Crear copia","Common.Translation.warnFileLockedBtnView":"Abrir en solo lectura","Common.UI.ButtonColored.textAutoColor":"Automático","Common.UI.ButtonColored.textEyedropper":"Cuentagotas","Common.UI.ButtonColored.textNewColor":"Más colores","Common.UI.Calendar.textApril":"abril","Common.UI.Calendar.textAugust":"agosto","Common.UI.Calendar.textDecember":"diciembre","Common.UI.Calendar.textFebruary":"febrero","Common.UI.Calendar.textJanuary":"enero","Common.UI.Calendar.textJuly":"julio","Common.UI.Calendar.textJune":"junio","Common.UI.Calendar.textMarch":"marzo","Common.UI.Calendar.textMay":"mayo","Common.UI.Calendar.textMonths":"meses","Common.UI.Calendar.textNovember":"noviembre","Common.UI.Calendar.textOctober":"octubre","Common.UI.Calendar.textSeptember":"septiembre","Common.UI.Calendar.textShortApril":"abr.","Common.UI.Calendar.textShortAugust":"ago.","Common.UI.Calendar.textShortDecember":"dic.","Common.UI.Calendar.textShortFebruary":"feb.","Common.UI.Calendar.textShortFriday":"vie.","Common.UI.Calendar.textShortJanuary":"ene.","Common.UI.Calendar.textShortJuly":"jul.","Common.UI.Calendar.textShortJune":"jun.","Common.UI.Calendar.textShortMarch":"mar.","Common.UI.Calendar.textShortMay":"mayo","Common.UI.Calendar.textShortMonday":"lu.","Common.UI.Calendar.textShortNovember":"nov.","Common.UI.Calendar.textShortOctober":"oct.","Common.UI.Calendar.textShortSaturday":"sáb.","Common.UI.Calendar.textShortSeptember":"sep.","Common.UI.Calendar.textShortSunday":"dom.","Common.UI.Calendar.textShortThursday":"jue.","Common.UI.Calendar.textShortTuesday":"mar.","Common.UI.Calendar.textShortWednesday":"mie.","Common.UI.Calendar.textYears":"años","Common.UI.ComboBorderSize.txtNoBorders":"Sin bordes","Common.UI.ComboBorderSizeEditable.txtNoBorders":"Sin bordes","Common.UI.ComboDataView.emptyComboText":"Sin estilo","Common.UI.ExtendedColorDialog.addButtonText":"Añadir","Common.UI.ExtendedColorDialog.textCurrent":"Actual","Common.UI.ExtendedColorDialog.textHexErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor de 000000 a FFFFFF.","Common.UI.ExtendedColorDialog.textNew":"Nuevo","Common.UI.ExtendedColorDialog.textRGBErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico de 0 a 225.","Common.UI.HSBColorPicker.textNoColor":"Sin color","Common.UI.InputField.txtEmpty":"Este campo es obligatorio","Common.UI.InputFieldBtnCalendar.textDate":"Seleccionar fecha","Common.UI.InputFieldBtnPassword.textHintHidePwd":"Ocultar la contraseña","Common.UI.InputFieldBtnPassword.textHintHold":"Manténgalo pulsado para mostrar la contraseña","Common.UI.InputFieldBtnPassword.textHintShowPwd":"Mostrar la contraseña","Common.UI.SearchBar.textFind":"Buscar","Common.UI.SearchBar.tipCloseSearch":"Cerrar búsqueda","Common.UI.SearchBar.tipNextResult":"Resultado siguiente","Common.UI.SearchBar.tipOpenAdvancedSettings":"Abrir los ajustes avanzados","Common.UI.SearchBar.tipPreviousResult":"Resultado anterior","Common.UI.SearchDialog.textHighlight":"Resaltar resultados","Common.UI.SearchDialog.textMatchCase":"Distinguir mayúsculas y minúsculas","Common.UI.SearchDialog.textReplaceDef":"Introduzca el texto de sustitución","Common.UI.SearchDialog.textSearchStart":"Introduzca su texto aquí","Common.UI.SearchDialog.textTitle":"Buscar y reemplazar","Common.UI.SearchDialog.textTitle2":"Buscar","Common.UI.SearchDialog.textWholeWords":"Solo palabras completas","Common.UI.SearchDialog.txtBtnHideReplace":"Ocultar sustitución","Common.UI.SearchDialog.txtBtnReplace":"Reemplazar","Common.UI.SearchDialog.txtBtnReplaceAll":"Reemplazar todo","Common.UI.SynchronizeTip.textDontShow":"No volver a mostrar este mensaje","Common.UI.SynchronizeTip.textGotIt":"Entiendo","Common.UI.SynchronizeTip.textNew":"Nuevo","Common.UI.SynchronizeTip.textSynchronize":"El documento ha sido cambiado por otro usuario.
Por favor haga clic para guardar sus cambios y recargue las actualizaciones.","Common.UI.ThemeColorPalette.textRecentColors":"Colores recientes","Common.UI.ThemeColorPalette.textStandartColors":"Colores estándar","Common.UI.ThemeColorPalette.textThemeColors":"Colores de tema","Common.UI.Themes.txtThemeClassicLight":"Clásico claro","Common.UI.Themes.txtThemeContrastDark":"Contraste oscuro","Common.UI.Themes.txtThemeDark":"Oscuro","Common.UI.Themes.txtThemeGray":"Gris","Common.UI.Themes.txtThemeLight":"Claro","Common.UI.Themes.txtThemeModernDark":"Moderno oscuro","Common.UI.Themes.txtThemeModernLight":"Moderno claro","Common.UI.Themes.txtThemeSystem":"Igual que el sistema","Common.UI.Window.cancelButtonText":"Cancelar","Common.UI.Window.closeButtonText":"Cerrar","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"Aceptar","Common.UI.Window.textConfirmation":"Confirmación","Common.UI.Window.textDontShow":"No volver a mostrar este mensaje","Common.UI.Window.textError":"Error","Common.UI.Window.textInformation":"Información","Common.UI.Window.textWarning":"Aviso","Common.UI.Window.yesButtonText":"Sí","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Control","Common.Utils.String.textShift":"Mayús","Common.Utils.ThemeColor.txtaccent":"Acento","Common.Utils.ThemeColor.txtAqua":"Aguamarina","Common.Utils.ThemeColor.txtbackground":"Fondo","Common.Utils.ThemeColor.txtBlack":"Negro","Common.Utils.ThemeColor.txtBlue":"Azul","Common.Utils.ThemeColor.txtBrightGreen":"Verde vivo","Common.Utils.ThemeColor.txtBrown":"Marrón","Common.Utils.ThemeColor.txtDarkBlue":"Azul oscuro","Common.Utils.ThemeColor.txtDarker":"Más oscuro","Common.Utils.ThemeColor.txtDarkGray":"Gris oscuro","Common.Utils.ThemeColor.txtDarkGreen":"Verde oscuro","Common.Utils.ThemeColor.txtDarkPurple":"Púrpura oscuro","Common.Utils.ThemeColor.txtDarkRed":"Rojo oscuro","Common.Utils.ThemeColor.txtDarkTeal":"Verde azulado oscuro","Common.Utils.ThemeColor.txtDarkYellow":"Amarillo oscuro","Common.Utils.ThemeColor.txtGold":"Oro","Common.Utils.ThemeColor.txtGray":"Gris","Common.Utils.ThemeColor.txtGreen":"Verde","Common.Utils.ThemeColor.txtIndigo":"Añil","Common.Utils.ThemeColor.txtLavender":"Lavanda","Common.Utils.ThemeColor.txtLightBlue":"Azul claro","Common.Utils.ThemeColor.txtLighter":"Más claro","Common.Utils.ThemeColor.txtLightGray":"Gris claro","Common.Utils.ThemeColor.txtLightGreen":"Verde claro","Common.Utils.ThemeColor.txtLightOrange":"Naranja claro","Common.Utils.ThemeColor.txtLightYellow":"Amarillo claro","Common.Utils.ThemeColor.txtOrange":"Naranja","Common.Utils.ThemeColor.txtPink":"Rosa","Common.Utils.ThemeColor.txtPurple":"Púrpura","Common.Utils.ThemeColor.txtRed":"Rojo","Common.Utils.ThemeColor.txtRose":"Rosa claro","Common.Utils.ThemeColor.txtSkyBlue":"Azul cielo","Common.Utils.ThemeColor.txtTeal":"Verde azulado","Common.Utils.ThemeColor.txttext":"Texto","Common.Utils.ThemeColor.txtTurquosie":"Turquesa","Common.Utils.ThemeColor.txtViolet":"Violeta","Common.Utils.ThemeColor.txtWhite":"Blanco","Common.Utils.ThemeColor.txtYellow":"Amarillo","Common.Views.About.txtAddress":"dirección: ","Common.Views.About.txtLicensee":"LICENCIATARIO ","Common.Views.About.txtLicensor":"LICENCIANTE","Common.Views.About.txtMail":"correo: ","Common.Views.About.txtPoweredBy":"Desarrollado por","Common.Views.About.txtTel":"tel.: ","Common.Views.About.txtVersion":"Versión ","Common.Views.AutoCorrectDialog.textAdd":"Añadir","Common.Views.AutoCorrectDialog.textApplyAsWork":"Aplicar mientras escribe","Common.Views.AutoCorrectDialog.textAutoCorrect":"Autocorrección de texto","Common.Views.AutoCorrectDialog.textAutoFormat":"Autoformato mientras escribe","Common.Views.AutoCorrectDialog.textBy":"Por","Common.Views.AutoCorrectDialog.textDelete":"Eliminar","Common.Views.AutoCorrectDialog.textFLSentence":"Poner en mayúscula la primera letra de una oración","Common.Views.AutoCorrectDialog.textHyperlink":"Rutas de red e internet con enlaces","Common.Views.AutoCorrectDialog.textMathCorrect":"Autocorrección matemática","Common.Views.AutoCorrectDialog.textNewRowCol":"Incluir nuevas filas y columnas en la tabla","Common.Views.AutoCorrectDialog.textRecognized":"Funciones reconocidas","Common.Views.AutoCorrectDialog.textRecognizedDesc":"Las siguientes expresiones son expresiones matemáticas reconocidas. No se pondrán en cursiva automáticamente.","Common.Views.AutoCorrectDialog.textReplace":"Reemplazar","Common.Views.AutoCorrectDialog.textReplaceText":"Reemplazar mientras escribe","Common.Views.AutoCorrectDialog.textReplaceType":"Reemplazar texto mientras escribe","Common.Views.AutoCorrectDialog.textReset":"Restablecer","Common.Views.AutoCorrectDialog.textResetAll":"Restablecer ajustes predeterminados","Common.Views.AutoCorrectDialog.textRestore":"Restaurar","Common.Views.AutoCorrectDialog.textTitle":"Autocorrección","Common.Views.AutoCorrectDialog.textWarnAddRec":"Las funciones reconocidas deben contener solo letras de la A a la Z, mayúsculas o minúsculas.","Common.Views.AutoCorrectDialog.textWarnResetRec":"Cualquier expresión que haya añadido se eliminará y las eliminadas se restaurarán. ¿Desea continuar?","Common.Views.AutoCorrectDialog.warnReplace":"La entrada de autocorreción para %1 ya existe. ¿Desea reemplazarla?","Common.Views.AutoCorrectDialog.warnReset":"Las autocorrecciones que haya añadido se eliminarán y las modificadas recuperarán sus valores originales. ¿Desea continuar?","Common.Views.AutoCorrectDialog.warnRestore":"La entrada de autocorrección para %1 será restablecida a su valor original. ¿Desea continuar?","Common.Views.Chat.textChat":"Chat","Common.Views.Chat.textClosePanel":"Cerrar chat","Common.Views.Chat.textEnterMessage":"Introduzca su mensaje aquí","Common.Views.Chat.textSend":"Enviar","Common.Views.Comments.mniAuthorAsc":"Autor de A a Z","Common.Views.Comments.mniAuthorDesc":"Autor de Z a A","Common.Views.Comments.mniDateAsc":"Más antiguo","Common.Views.Comments.mniDateDesc":"Más reciente","Common.Views.Comments.mniFilterComments":"Mostrar comentarios","Common.Views.Comments.mniFilterGroups":"Filtrar por grupo","Common.Views.Comments.mniPositionAsc":"Desde arriba","Common.Views.Comments.mniPositionDesc":"Desde abajo","Common.Views.Comments.textAdd":"Añadir","Common.Views.Comments.textAddComment":"Añadir comentario","Common.Views.Comments.textAddCommentToDoc":"Añadir comentario al documento","Common.Views.Comments.textAddReply":"Añadir respuesta","Common.Views.Comments.textAll":"Todo","Common.Views.Comments.textAnonym":"Visitante","Common.Views.Comments.textCancel":"Cancelar","Common.Views.Comments.textClose":"Cerrar","Common.Views.Comments.textClosePanel":"Cerrar comentarios","Common.Views.Comments.textComment":"Comentario","Common.Views.Comments.textComments":"Comentarios","Common.Views.Comments.textEdit":"Aceptar","Common.Views.Comments.textEnterCommentHint":"Introduzca su comentario aquí","Common.Views.Comments.textHintAddComment":"Añadir comentario","Common.Views.Comments.textOpen":"Abrir","Common.Views.Comments.textOpenAgain":"Abrir de nuevo","Common.Views.Comments.textReply":"Responder","Common.Views.Comments.textResolve":"Resolver","Common.Views.Comments.textResolved":"Resuelto","Common.Views.Comments.textSort":"Ordenar comentarios","Common.Views.Comments.textSortFilter":"Ordenar y filtrar comentarios","Common.Views.Comments.textSortFilterMore":"Ordenar, filtrar y mucho más","Common.Views.Comments.textSortMore":"Ordenar y más","Common.Views.Comments.textViewResolved":"No tiene permiso para volver a abrir el comentario","Common.Views.Comments.txtEmpty":"Sin comentarios en la hoja.","Common.Views.CopyWarningDialog.textDontShow":"No volver a mostrar este mensaje","Common.Views.CopyWarningDialog.textMsg":"Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y del menú contextual solo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, use las siguientes combinaciones de teclas:","Common.Views.CopyWarningDialog.textTitle":"Acciones de Copiar, Cortar y Pegar","Common.Views.CopyWarningDialog.textToCopy":"para copiar","Common.Views.CopyWarningDialog.textToCut":"para cortar","Common.Views.CopyWarningDialog.textToPaste":"para pegar","Common.Views.CustomizeQuickAccessDialog.textDownload":"Descargar","Common.Views.CustomizeQuickAccessDialog.textMsg":"Marque los comandos que se mostrarán en la barra de herramientas Acceso rápido","Common.Views.CustomizeQuickAccessDialog.textPrint":"Imprimir","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"Impresión rápida","Common.Views.CustomizeQuickAccessDialog.textRedo":"Rehacer","Common.Views.CustomizeQuickAccessDialog.textSave":"Guardar","Common.Views.CustomizeQuickAccessDialog.textTitle":"Personalizar acceso rápido","Common.Views.CustomizeQuickAccessDialog.textUndo":"Deshacer","Common.Views.DocumentAccessDialog.textLoading":"Cargando...","Common.Views.DocumentAccessDialog.textTitle":"Ajustes de uso compartido","Common.Views.DocumentPropertyDialog.errorDate":"Puede elegir un valor del calendario para almacenar el valor como Fecha.
Si introduce un valor manualmente, se almacenará como Texto.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"No","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"Sí","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"La propiedad debe tener un título","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"Título","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"Sí\" or \"No\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"Fecha","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"Tipo","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"Número","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"Indique un número válido","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"Texto","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"La propiedad debe tener un valor","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"Valor","Common.Views.DocumentPropertyDialog.txtTitle":"Nueva propiedad del documento","Common.Views.Draw.hintEraser":"Borrador","Common.Views.Draw.hintSelect":"Seleccionar","Common.Views.Draw.txtEraser":"Borrador","Common.Views.Draw.txtHighlighter":"Marcador de resaltado","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"Bolígrafo","Common.Views.Draw.txtSelect":"Seleccionar","Common.Views.Draw.txtSize":"Tamaño","Common.Views.EditNameDialog.textLabel":"Etiqueta:","Common.Views.EditNameDialog.textLabelError":"La etiqueta no debe estar vacía.","Common.Views.ExternalLinksDlg.closeButtonText":"Cerrar","Common.Views.ExternalLinksDlg.textAutoUpdate":"Actualizar automáticamente los datos de las fuentes vinculadas","Common.Views.ExternalLinksDlg.textChange":"Cambiar fuente","Common.Views.ExternalLinksDlg.textDelete":"Quitar enlaces","Common.Views.ExternalLinksDlg.textDeleteAll":"Quitar todos los enlaces","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"Abrir fuente","Common.Views.ExternalLinksDlg.textSource":"Fuente","Common.Views.ExternalLinksDlg.textStatus":"Estado","Common.Views.ExternalLinksDlg.textUnknown":"Desconocido","Common.Views.ExternalLinksDlg.textUpdate":"Actualizar valores","Common.Views.ExternalLinksDlg.textUpdateAll":"Actualizar todo","Common.Views.ExternalLinksDlg.textUpdating":"Actualizando...","Common.Views.ExternalLinksDlg.txtTitle":"Enlaces externos","Common.Views.FormatSettingsDialog.textCategory":"Categoría","Common.Views.FormatSettingsDialog.textDecimal":"Decimal","Common.Views.FormatSettingsDialog.textFormat":"Formato","Common.Views.FormatSettingsDialog.textLinked":"Vinculado al origen","Common.Views.FormatSettingsDialog.textLocale":"Configuración regional","Common.Views.FormatSettingsDialog.textSeparator":"Usar separador de millares","Common.Views.FormatSettingsDialog.textSymbols":"Símbolos","Common.Views.FormatSettingsDialog.textTitle":"Formato de número","Common.Views.FormatSettingsDialog.txtAccounting":"Financiero","Common.Views.FormatSettingsDialog.txtAs10":"Décimas (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"Сentésimas (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"Dieciseisavos (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"Mitades (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"Cuartos (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"Octavos (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"Moneda","Common.Views.FormatSettingsDialog.txtCustom":"Personalizado","Common.Views.FormatSettingsDialog.txtCustomWarning":"Por favor, introduzca el formato de número personalizado con cuidado. El editor de hojas de cálculo no comprueba los formatos personalizados para detectar errores que puedan afectar al archivo xlsx.","Common.Views.FormatSettingsDialog.txtDate":"Fecha","Common.Views.FormatSettingsDialog.txtFraction":"Fracción","Common.Views.FormatSettingsDialog.txtGeneral":"General","Common.Views.FormatSettingsDialog.txtNone":"Ningún","Common.Views.FormatSettingsDialog.txtNumber":"Número","Common.Views.FormatSettingsDialog.txtPercentage":"Porcentaje","Common.Views.FormatSettingsDialog.txtSample":"Ejemplo:","Common.Views.FormatSettingsDialog.txtScientific":"Científico","Common.Views.FormatSettingsDialog.txtText":"Texto","Common.Views.FormatSettingsDialog.txtTime":"Hora","Common.Views.FormatSettingsDialog.txtUpto1":"Hasta un dígito (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"Hasta dos dígitos (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"Hasta tres dígitos (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"Barra de herramientas de acceso rápido","Common.Views.Header.labelCoUsersDescr":"Usuarios que están editando el archivo:","Common.Views.Header.textAddFavorite":"Marcar como favorito","Common.Views.Header.textAdvSettings":"Ajustes avanzados","Common.Views.Header.textBack":"Abrir ubicación del archivo","Common.Views.Header.textClose":"Cerrar archivo","Common.Views.Header.textCompactView":"Ocultar barra de herramientas","Common.Views.Header.textHideLines":"Ocultar reglas","Common.Views.Header.textHideStatusBar":"Combinar las barras de hoja y de estado","Common.Views.Header.textPrint":"Imprimir","Common.Views.Header.textReadOnly":"Solo lectura","Common.Views.Header.textRemoveFavorite":"Eliminar de Favoritos","Common.Views.Header.textSaveBegin":"Guardando...","Common.Views.Header.textSaveChanged":"Modificado","Common.Views.Header.textSaveEnd":"Se han guardado todos los cambios","Common.Views.Header.textSaveExpander":"Se han guardado todos los cambios","Common.Views.Header.textShare":"Compartir","Common.Views.Header.textZoom":"Ampliación","Common.Views.Header.tipAccessRights":"Gestionar permisos de acceso al documento","Common.Views.Header.tipCustomizeQuickAccessToolbar":"Personalizar la barra de herramientas Acceso rápido","Common.Views.Header.tipDownload":"Descargar archivo","Common.Views.Header.tipGoEdit":"Editar el archivo actual","Common.Views.Header.tipPrint":"Imprimir archivo","Common.Views.Header.tipPrintQuick":"Impresión rápida","Common.Views.Header.tipRedo":"Rehacer","Common.Views.Header.tipSave":"Guardar","Common.Views.Header.tipSearch":"Buscar","Common.Views.Header.tipUndo":"Deshacer","Common.Views.Header.tipUndock":"Desacoplar en una ventana independiente","Common.Views.Header.tipUsers":"Ver usuarios","Common.Views.Header.tipViewSettings":"Mostrar ajustes","Common.Views.Header.tipViewUsers":"Ver usuarios y gestionar permisos de acceso a documentos","Common.Views.Header.txtAccessRights":"Cambiar permisos de acceso","Common.Views.Header.txtRename":"Cambiar nombre","Common.Views.History.textCloseHistory":"Cerrar historial","Common.Views.History.textHide":"Contraer","Common.Views.History.textHideAll":"Ocultar cambios detallados","Common.Views.History.textHighlightDeleted":"Resaltar eliminado","Common.Views.History.textMore":"Más","Common.Views.History.textRestore":"Restaurar","Common.Views.History.textShow":"Expandir","Common.Views.History.textShowAll":"Mostrar cambios detallados","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"Historial de versiones","Common.Views.ImageFromUrlDialog.textUrl":"URL de la imagen:","Common.Views.ImageFromUrlDialog.txtEmpty":"Este campo es obligatorio","Common.Views.ImageFromUrlDialog.txtNotUrl":"Este campo debe ser una URL en el formato \"http://www.example.com\"","Common.Views.ListSettingsDialog.textBulleted":"Con viñetas","Common.Views.ListSettingsDialog.textFromFile":"Desde archivo","Common.Views.ListSettingsDialog.textFromStorage":"Desde almacenamiento","Common.Views.ListSettingsDialog.textFromUrl":"Desde URL","Common.Views.ListSettingsDialog.textNumbering":"Numerado","Common.Views.ListSettingsDialog.textSelect":"Seleccionar desde","Common.Views.ListSettingsDialog.tipChange":"Cambiar viñeta","Common.Views.ListSettingsDialog.txtBullet":"Viñeta","Common.Views.ListSettingsDialog.txtColor":"Color","Common.Views.ListSettingsDialog.txtImage":"Imagen","Common.Views.ListSettingsDialog.txtImport":"Importación","Common.Views.ListSettingsDialog.txtNewBullet":"Nueva viñeta","Common.Views.ListSettingsDialog.txtNewImage":"Imagen nueva","Common.Views.ListSettingsDialog.txtNone":"Ninguno","Common.Views.ListSettingsDialog.txtOfText":"% de texto","Common.Views.ListSettingsDialog.txtSize":"Tamaño","Common.Views.ListSettingsDialog.txtStart":"Empezar en","Common.Views.ListSettingsDialog.txtSymbol":"Símbolo","Common.Views.ListSettingsDialog.txtTitle":"Ajustes de lista","Common.Views.ListSettingsDialog.txtType":"Tipo","Common.Views.MacrosAiDialog.textAreaPlaceholder":"Introduzca un prompt para la consulta","Common.Views.MacrosAiDialog.textCreate":"Crear","Common.Views.MacrosDialog.textAutostart":"Inicio automático","Common.Views.MacrosDialog.textConvertFromVBA":"Convertir desde VBA","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"Convertir macros desde VBA","Common.Views.MacrosDialog.textCopy":"Copiar ","Common.Views.MacrosDialog.textCreateFromDesc":"Crear a partir de la descripción","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"Crear macros a partir de la descripción","Common.Views.MacrosDialog.textCustomFunction":"Función personalizada","Common.Views.MacrosDialog.textCustomFunctions":"Funciones personalizadas","Common.Views.MacrosDialog.textDebug":"Depurar","Common.Views.MacrosDialog.textDelete":"Eliminar","Common.Views.MacrosDialog.textFunctions":"Funciones","Common.Views.MacrosDialog.textLoading":"Cargando...","Common.Views.MacrosDialog.textMacro":"Macro","Common.Views.MacrosDialog.textMacros":"Macros","Common.Views.MacrosDialog.textMakeAutostart":"Crear inicio automático","Common.Views.MacrosDialog.textRename":"Renombrar","Common.Views.MacrosDialog.textRun":"Ejecutar","Common.Views.MacrosDialog.textSave":"Guardar","Common.Views.MacrosDialog.textTitle":"Macros","Common.Views.MacrosDialog.textUnMakeAutostart":"Desactivar inicio automático","Common.Views.MacrosDialog.tipAI":"IA","Common.Views.MacrosDialog.tipFunctionAdd":"Añadir función personalizada","Common.Views.MacrosDialog.tipFunctionCopy":"Copiar función personalizada","Common.Views.MacrosDialog.tipFunctionDelete":"Eliminar función personalizada","Common.Views.MacrosDialog.tipFunctionRename":"Renombrar función personalizada","Common.Views.MacrosDialog.tipMacrosAdd":"Añadir macros","Common.Views.MacrosDialog.tipMacrosCopy":"Copiar macros","Common.Views.MacrosDialog.tipMacrosDebug":"Depurar macros","Common.Views.MacrosDialog.tipMacrosRename":"Renombrar macros","Common.Views.MacrosDialog.tipMacrosRun":"Ejecutar macros","Common.Views.MacrosDialog.tipRedo":"Rehacer","Common.Views.MacrosDialog.tipUndo":"Deshacer","Common.Views.OpenDialog.closeButtonText":"Cerrar archivo","Common.Views.OpenDialog.textInvalidRange":"Rango de celdas inválido","Common.Views.OpenDialog.textSelectData":"Seleccionar datos","Common.Views.OpenDialog.txtAdvanced":"Avanzado","Common.Views.OpenDialog.txtColon":"Dos puntos","Common.Views.OpenDialog.txtComma":"Coma","Common.Views.OpenDialog.txtDelimiter":"Delimitador","Common.Views.OpenDialog.txtDestData":"Elija dónde situar los datos","Common.Views.OpenDialog.txtEmpty":"Este campo es obligatorio","Common.Views.OpenDialog.txtEncoding":"Codificación ","Common.Views.OpenDialog.txtIncorrectPwd":"La contraseña es incorrecta","Common.Views.OpenDialog.txtOpenFile":"Escriba la contraseña para abrir el archivo","Common.Views.OpenDialog.txtOther":"Otro","Common.Views.OpenDialog.txtPassword":"Contraseña","Common.Views.OpenDialog.txtPreview":"Vista previa","Common.Views.OpenDialog.txtProtected":"Una vez que se ha introducido la contraseña y abierto el archivo, la contraseña actual al archivo se restablecerá","Common.Views.OpenDialog.txtSemicolon":"Punto y coma","Common.Views.OpenDialog.txtSpace":"Espacio","Common.Views.OpenDialog.txtTab":"Tabulador","Common.Views.OpenDialog.txtTitle":"Elegir opciones de %1","Common.Views.OpenDialog.txtTitleProtected":"Archivo protegido","Common.Views.PasswordDialog.txtDescription":"Establezca una contraseña para proteger este documento","Common.Views.PasswordDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","Common.Views.PasswordDialog.txtPassword":"Contraseña","Common.Views.PasswordDialog.txtRepeat":"Repita la contraseña","Common.Views.PasswordDialog.txtTitle":"Establecer contraseña","Common.Views.PasswordDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdela en un lugar seguro.","Common.Views.PluginDlg.textDock":"Anclar plugin","Common.Views.PluginDlg.textLoading":"Cargando","Common.Views.PluginPanel.textClosePanel":"Cerrar plugin","Common.Views.PluginPanel.textHidePanel":"Contraer plugin","Common.Views.PluginPanel.textLoading":"Cargando","Common.Views.PluginPanel.textUndock":"Desanclar plugin","Common.Views.Plugins.groupCaption":"Extensiones","Common.Views.Plugins.strPlugins":"Extensiones","Common.Views.Plugins.textBackgroundPlugins":"Plugins de fondo","Common.Views.Plugins.textClosePanel":"Cerrar extensión","Common.Views.Plugins.textLoading":"Cargando","Common.Views.Plugins.textSettings":"Ajustes","Common.Views.Plugins.textStart":"Iniciar","Common.Views.Plugins.textStop":"Detener","Common.Views.Plugins.textTheListOfBackgroundPlugins":"La lista de plugins de fondo","Common.Views.Plugins.tipMore":"Más","Common.Views.Protection.hintAddPwd":"Cifrar con contraseña","Common.Views.Protection.hintDelPwd":"Eliminar contraseña","Common.Views.Protection.hintPwd":"Cambie o elimine la contraseña","Common.Views.Protection.hintSignature":"Añadir firma digital o línea de firma","Common.Views.Protection.txtAddPwd":"Añadir contraseña","Common.Views.Protection.txtChangePwd":"Cambiar contraseña","Common.Views.Protection.txtDeletePwd":"Eliminar contraseña","Common.Views.Protection.txtEncrypt":"Cifrar","Common.Views.Protection.txtInvisibleSignature":"Añadir firma digital","Common.Views.Protection.txtSignature":"Firma","Common.Views.Protection.txtSignatureLine":"Añadir línea de firma","Common.Views.RecentFiles.txtOpenRecent":"Abrir reciente","Common.Views.RenameDialog.textName":"Nombre del archivo","Common.Views.RenameDialog.txtInvalidName":"El nombre del archivo no debe contener los símbolos siguientes:","Common.Views.ReviewChanges.hintNext":"Al cambio siguiente","Common.Views.ReviewChanges.hintPrev":"Al cambio anterior","Common.Views.ReviewChanges.strFast":"Rápido","Common.Views.ReviewChanges.strFastDesc":"Coedición en tiempo real. Todos los cambios se guardan de forma automática.","Common.Views.ReviewChanges.strStrict":"Estricto","Common.Views.ReviewChanges.strStrictDesc":"Use el botón \"Guardar\" para sincronizar los cambios que usted y otros realicen.","Common.Views.ReviewChanges.tipAcceptCurrent":"Aceptar cambio actual","Common.Views.ReviewChanges.tipCoAuthMode":"Establecer modo de coedición","Common.Views.ReviewChanges.tipCommentRem":"Eliminar comentarios","Common.Views.ReviewChanges.tipCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.tipCommentResolve":"Resolver comentarios","Common.Views.ReviewChanges.tipCommentResolveCurrent":"Resolver los comentarios actuales","Common.Views.ReviewChanges.tipHistory":"Mostrar historial de versiones","Common.Views.ReviewChanges.tipRejectCurrent":"Rechazar cambio actual","Common.Views.ReviewChanges.tipReview":"Rastrear cambios","Common.Views.ReviewChanges.tipReviewView":"Seleccionar modo en que presentar los cambios","Common.Views.ReviewChanges.tipSetDocLang":"Establecer el idioma de documento","Common.Views.ReviewChanges.tipSetSpelling":"Сorrección ortográfica","Common.Views.ReviewChanges.tipSharing":"Gestionar permisos de acceso al documento","Common.Views.ReviewChanges.txtAccept":"Aceptar","Common.Views.ReviewChanges.txtAcceptAll":"Aceptar todos los cambios","Common.Views.ReviewChanges.txtAcceptChanges":"Aceptar cambios","Common.Views.ReviewChanges.txtAcceptCurrent":"Aceptar cambio actual","Common.Views.ReviewChanges.txtChat":"Chat","Common.Views.ReviewChanges.txtClose":"Cerrar","Common.Views.ReviewChanges.txtCoAuthMode":"Modo de coedición","Common.Views.ReviewChanges.txtCommentRemAll":"Eliminar todos los comentarios","Common.Views.ReviewChanges.txtCommentRemCurrent":"Eliminar comentarios actuales","Common.Views.ReviewChanges.txtCommentRemMy":"Eliminar mis comentarios","Common.Views.ReviewChanges.txtCommentRemMyCurrent":"Eliminar mis comentarios actuales","Common.Views.ReviewChanges.txtCommentRemove":"Eliminar","Common.Views.ReviewChanges.txtCommentResolve":"Resolver","Common.Views.ReviewChanges.txtCommentResolveAll":"Resolver todos los comentarios","Common.Views.ReviewChanges.txtCommentResolveCurrent":"Resolver comentarios actuales","Common.Views.ReviewChanges.txtCommentResolveMy":"Resolver mis comentarios","Common.Views.ReviewChanges.txtCommentResolveMyCurrent":"Resolver mis comentarios actuales","Common.Views.ReviewChanges.txtDocLang":"Idioma","Common.Views.ReviewChanges.txtFinal":"Todos los cambio aceptados (vista previa)","Common.Views.ReviewChanges.txtFinalCap":"Final","Common.Views.ReviewChanges.txtHistory":"Historial de versiones","Common.Views.ReviewChanges.txtMarkup":"Todos los cambios (edición)","Common.Views.ReviewChanges.txtMarkupCap":"Margen","Common.Views.ReviewChanges.txtNext":"Siguiente","Common.Views.ReviewChanges.txtOriginal":"Todos los cambios rechazados (Vista previa)","Common.Views.ReviewChanges.txtOriginalCap":"Original","Common.Views.ReviewChanges.txtPrev":"Anterior","Common.Views.ReviewChanges.txtReject":"Rechazar","Common.Views.ReviewChanges.txtRejectAll":"Rechazar todos los cambios","Common.Views.ReviewChanges.txtRejectChanges":"Rechazar cambios","Common.Views.ReviewChanges.txtRejectCurrent":"Rechazar Cambio Actual","Common.Views.ReviewChanges.txtSharing":"Compartir","Common.Views.ReviewChanges.txtSpelling":"Сorrección ortográfica","Common.Views.ReviewChanges.txtTurnon":"Rastrear cambios","Common.Views.ReviewChanges.txtView":"Modo de visualización","Common.Views.ReviewPopover.textAdd":"Añadir","Common.Views.ReviewPopover.textAddReply":"Añadir respuesta","Common.Views.ReviewPopover.textCancel":"Cancelar","Common.Views.ReviewPopover.textClose":"Cerrar","Common.Views.ReviewPopover.textComment":"Comentario","Common.Views.ReviewPopover.textEdit":"Aceptar","Common.Views.ReviewPopover.textEnterComment":"Introduzca su comentario aquí","Common.Views.ReviewPopover.textMention":"+mención proporcionará acceso al documento y enviará un correo","Common.Views.ReviewPopover.textMentionNotify":"+mención notificará al usuario por correo","Common.Views.ReviewPopover.textOpenAgain":"Abrir de nuevo","Common.Views.ReviewPopover.textReply":"Responder","Common.Views.ReviewPopover.textResolve":"Resolver","Common.Views.ReviewPopover.textViewResolved":"No tiene permiso para volver a abrir el comentario","Common.Views.ReviewPopover.txtDeleteTip":"Eliminar","Common.Views.ReviewPopover.txtEditTip":"Editar","Common.Views.SaveAsDlg.textLoading":"Cargando","Common.Views.SaveAsDlg.textTitle":"Carpeta en donde guardar","Common.Views.SearchPanel.textByColumns":"Por columnas","Common.Views.SearchPanel.textByRows":"Por filas","Common.Views.SearchPanel.textCaseSensitive":"Distinguir mayúsculas y minúsculas","Common.Views.SearchPanel.textCell":"Celda","Common.Views.SearchPanel.textCloseSearch":"Cerrar búsqueda","Common.Views.SearchPanel.textContentChanged":"Se ha modificado el documento","Common.Views.SearchPanel.textFind":"Buscar","Common.Views.SearchPanel.textFindAndReplace":"Buscar y reemplazar","Common.Views.SearchPanel.textFormula":"Fórmula","Common.Views.SearchPanel.textFormulas":"Fórmulas","Common.Views.SearchPanel.textItemEntireCell":"Todo el contenido de celda","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} elementos reemplazados correctamente.","Common.Views.SearchPanel.textLookIn":"Buscar en","Common.Views.SearchPanel.textMatchUsingRegExp":"Coincidir utilizando expresiones regulares","Common.Views.SearchPanel.textName":"Nombre","Common.Views.SearchPanel.textNoMatches":"No hay coincidencias","Common.Views.SearchPanel.textNoSearchResults":"No hay resultados de búsqueda","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} elementos reemplazados. Los {2} elementos restantes están bloqueados por otros usuarios.","Common.Views.SearchPanel.textReplace":"Reemplazar","Common.Views.SearchPanel.textReplaceAll":"Reemplazar todo","Common.Views.SearchPanel.textReplaceWith":"Reemplazar por","Common.Views.SearchPanel.textSearch":"Búsqueda","Common.Views.SearchPanel.textSearchAgain":"{0}Realiza nueva búsqueda{1} para obtener resultados precisos.","Common.Views.SearchPanel.textSearchHasStopped":"La búsqueda se ha detenido","Common.Views.SearchPanel.textSearchOptions":"Opciones de búsqueda","Common.Views.SearchPanel.textSearchResults":"Resultados de búsqueda: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"Resultados de búsqueda","Common.Views.SearchPanel.textSelectDataRange":"Seleccionar rango de datos","Common.Views.SearchPanel.textSheet":"Hoja","Common.Views.SearchPanel.textSpecificRange":"Intervalo específico","Common.Views.SearchPanel.textTooManyResults":"Hay demasiados resultados para mostrar aquí","Common.Views.SearchPanel.textValue":"Valor","Common.Views.SearchPanel.textValues":"Valores","Common.Views.SearchPanel.textWholeWords":"Solo palabras completas","Common.Views.SearchPanel.textWithin":"Dentro de","Common.Views.SearchPanel.textWorkbook":"Libro de trabajo","Common.Views.SearchPanel.tipNextResult":"Resultado siguiente","Common.Views.SearchPanel.tipPreviousResult":"Resultado anterior","Common.Views.SelectFileDlg.textLoading":"Cargando","Common.Views.SelectFileDlg.textTitle":"Seleccionar origen de datos","Common.Views.ShapeShadowDialog.txtAngle":"Ángulo","Common.Views.ShapeShadowDialog.txtDistance":"Distancia","Common.Views.ShapeShadowDialog.txtSize":"Tamaño","Common.Views.ShapeShadowDialog.txtTitle":"Ajustar sombra","Common.Views.ShapeShadowDialog.txtTransparency":"Transparencia","Common.Views.ShortcutsDialog.txtDescription":"Descripción","Common.Views.ShortcutsDialog.txtEmpty":"No se han encontrado coincidencias. Ajuste su búsqueda.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restablecer todos los valores predeterminados","Common.Views.ShortcutsDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsDialog.txtRestoreDescription":"Todos los ajustes de los accesos directos se restablecerán a los valores predeterminados.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsDialog.txtSearch":"Búsqueda","Common.Views.ShortcutsDialog.txtTitle":"Accesos directos de teclado","Common.Views.ShortcutsEditDialog.txtAction":"Acción","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Escriba el acceso directo deseado","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"El acceso directo utilizado por las acciones %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"El acceso directo utilizado por las acciones %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"El acceso directo utilizado por la acción %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"El acceso directo utilizado por la acción %1 y no se puede cambiar","Common.Views.ShortcutsEditDialog.txtNewShortcut":"Nuevo acceso directo","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"¿Desea continuar?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"Todos los accesos directos para la acción «%1» se restablecerán a los valores predeterminados.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restablecer como predeterminado","Common.Views.ShortcutsEditDialog.txtTitle":"Editar acceso directo","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Escriba el acceso directo deseado","Common.Views.SignDialog.textBold":"Negrita","Common.Views.SignDialog.textCertificate":"Certificado","Common.Views.SignDialog.textChange":"Cambiar","Common.Views.SignDialog.textInputName":"Introduzca el nombre del firmante","Common.Views.SignDialog.textItalic":"Cursiva","Common.Views.SignDialog.textNameError":"El nombre del firmante no debe estar vacío.","Common.Views.SignDialog.textPurpose":"Propósito al firmar este documento","Common.Views.SignDialog.textSelect":"Seleccionar","Common.Views.SignDialog.textSelectImage":"Seleccionar imagen","Common.Views.SignDialog.textSignature":"La firma se ve como","Common.Views.SignDialog.textTitle":"Firmar documento","Common.Views.SignDialog.textUseImage":"o pulse en 'Seleccionar imagen' para usar una imagen como firma","Common.Views.SignDialog.textValid":"Válido desde %1 hasta %2","Common.Views.SignDialog.tipFontName":"Nombre de la fuente","Common.Views.SignDialog.tipFontSize":"Tamaño de la fuente","Common.Views.SignSettingsDialog.textAllowComment":"Permitir al firmante añadir comentarios en el diálogo de la firma","Common.Views.SignSettingsDialog.textDefInstruction":"Antes de firmar este documento, verifique que el contenido que está firmando es correcto.","Common.Views.SignSettingsDialog.textInfoEmail":"Correo electrónico del firmante sugerido","Common.Views.SignSettingsDialog.textInfoName":"Firmante sugerido","Common.Views.SignSettingsDialog.textInfoTitle":"Título del firmante sugerido","Common.Views.SignSettingsDialog.textInstructions":"Instrucciones para el firmante","Common.Views.SignSettingsDialog.textShowDate":"Mostrar fecha de la firma","Common.Views.SignSettingsDialog.textTitle":"Configuración de firma","Common.Views.SignSettingsDialog.txtEmpty":"Este campo es obligatorio","Common.Views.SymbolTableDialog.textCharacter":"Carácter","Common.Views.SymbolTableDialog.textCode":"Valor hexadecimal de Unicode","Common.Views.SymbolTableDialog.textCopyright":"Signo de «copyright»","Common.Views.SymbolTableDialog.textDCQuote":"Comillas dobles de cierre","Common.Views.SymbolTableDialog.textDOQuote":"Comillas dobles de apertura","Common.Views.SymbolTableDialog.textEllipsis":"Puntos suspensivos","Common.Views.SymbolTableDialog.textEmDash":"Raya","Common.Views.SymbolTableDialog.textEmSpace":"Espacio largo","Common.Views.SymbolTableDialog.textEnDash":"Guion corto","Common.Views.SymbolTableDialog.textEnSpace":"Espacio corto","Common.Views.SymbolTableDialog.textFont":"Fuente","Common.Views.SymbolTableDialog.textNBHyphen":"Guion de no separación","Common.Views.SymbolTableDialog.textNBSpace":"Espacio de no separación","Common.Views.SymbolTableDialog.textPilcrow":"Signo de antígrafo","Common.Views.SymbolTableDialog.textQEmSpace":"1/4 de espacio largo","Common.Views.SymbolTableDialog.textRange":"Rango","Common.Views.SymbolTableDialog.textRecent":"Símbolos utilizados recientemente","Common.Views.SymbolTableDialog.textRegistered":"Signo de marca registrada","Common.Views.SymbolTableDialog.textSCQuote":"Comillas simples de cierre","Common.Views.SymbolTableDialog.textSection":"Signo de párrafo","Common.Views.SymbolTableDialog.textShortcut":"Tecla de método abreviado","Common.Views.SymbolTableDialog.textSHyphen":"Guion opcional","Common.Views.SymbolTableDialog.textSOQuote":"Comillas simples de apertura","Common.Views.SymbolTableDialog.textSpecial":"Caracteres especiales","Common.Views.SymbolTableDialog.textSymbols":"Símbolos","Common.Views.SymbolTableDialog.textTitle":"Símbolo","Common.Views.SymbolTableDialog.textTradeMark":"Símbolo de marca registrada","Common.Views.UserNameDialog.textDontShow":"No volver a preguntarme","Common.Views.UserNameDialog.textLabel":"Etiqueta:","Common.Views.UserNameDialog.textLabelError":"La etiqueta no debe estar vacía.","SSE.Controllers.DataTab.strSheet":"Hoja","SSE.Controllers.DataTab.textColumns":"Columnas","SSE.Controllers.DataTab.textContinue":"Continuar","SSE.Controllers.DataTab.textEmptyUrl":"Debe especificar la URL.","SSE.Controllers.DataTab.textRows":"Filas","SSE.Controllers.DataTab.textTurnOff":"Desactivar actualización automática","SSE.Controllers.DataTab.textWizard":"Texto en columnas","SSE.Controllers.DataTab.txtContinue":"Continuar","SSE.Controllers.DataTab.txtDataValidation":"Validación de datos","SSE.Controllers.DataTab.txtExpand":"Expandir","SSE.Controllers.DataTab.txtExpandRemDuplicates":"Los datos junto a la selección no serán eliminados. ¿Quiere ampliar la selección para incluir los datos adyacentes o continuar solo con las celdas actualmente seleccionadas?","SSE.Controllers.DataTab.txtExtendDataValidation":"La selección contiene algunas celdas sin ajustes de Validación de Datos.
¿Desea extender la Validación de Datos a estas celdas?","SSE.Controllers.DataTab.txtImportWizard":"Importación de texto","SSE.Controllers.DataTab.txtMaxFeasible":"Se ha alcanzado el número máximo de soluciones viables. ¿Continuar de todos modos?","SSE.Controllers.DataTab.txtMaxIterations":"Se ha alcanzado el límite máximo de iteraciones. ¿Continuar de todos modos?","SSE.Controllers.DataTab.txtMaxSubproblem":"Se ha alcanzado el número máximo de subproblemas. ¿Continuar de todos modos?","SSE.Controllers.DataTab.txtMaxTime":"Se ha alcanzado el límite de tiempo máximo. ¿Continuar de todos modos?","SSE.Controllers.DataTab.txtRemDuplicates":"Eliminar duplicados","SSE.Controllers.DataTab.txtRemoveDataValidation":"La selección contiene más de un tipo de validación.
¿Eliminar los ajustes actuales y continuar?","SSE.Controllers.DataTab.txtRemSelected":"Eliminar en los seleccionados","SSE.Controllers.DataTab.txtStop":"Detener","SSE.Controllers.DataTab.txtTrialSolution":"Mostrar solución de prueba","SSE.Controllers.DataTab.txtUrlTitle":"Introduzca una URL con los datos","SSE.Controllers.DocumentHolder.alignmentText":"Alineación","SSE.Controllers.DocumentHolder.centerText":"Al centro","SSE.Controllers.DocumentHolder.deleteColumnText":"Eliminar columna","SSE.Controllers.DocumentHolder.deleteRowText":"Eliminar fila","SSE.Controllers.DocumentHolder.deleteText":"Eliminar","SSE.Controllers.DocumentHolder.errorInvalidLink":"El enlace no existe. Por favor, corrija o elimine el enlace.","SSE.Controllers.DocumentHolder.guestText":"Visitante","SSE.Controllers.DocumentHolder.insertColumnLeftText":"Columna izquierda","SSE.Controllers.DocumentHolder.insertColumnRightText":"Columna derecha","SSE.Controllers.DocumentHolder.insertRowAboveText":"Fila de arriba","SSE.Controllers.DocumentHolder.insertRowBelowText":"Fila debajo","SSE.Controllers.DocumentHolder.insertText":"Insertar","SSE.Controllers.DocumentHolder.leftText":"A la izquierda","SSE.Controllers.DocumentHolder.notcriticalErrorTitle":"Aviso","SSE.Controllers.DocumentHolder.rightText":"A la derecha","SSE.Controllers.DocumentHolder.textArgument":"Argumento","SSE.Controllers.DocumentHolder.textAutoCorrectSettings":"Opciones de Autocorrección","SSE.Controllers.DocumentHolder.textChangeColumnWidth":"Ancho de columna {0} símbolos ({1} píxeles)","SSE.Controllers.DocumentHolder.textChangeRowHeight":"Altura de fila {0} puntos ({1} píxeles)","SSE.Controllers.DocumentHolder.textCtrlClick":"Haga clic en el enlace para abrirlo o haga clic y mantenga pulsado el botón del ratón para seleccionar la celda.","SSE.Controllers.DocumentHolder.textInsertLeft":"Insertar columna a la izquierda","SSE.Controllers.DocumentHolder.textInsertTop":"Insertar fila arriba","SSE.Controllers.DocumentHolder.textPasteSpecial":"Pegado especial","SSE.Controllers.DocumentHolder.textStopExpand":"Interrumpir la expansión automática de las tablas","SSE.Controllers.DocumentHolder.textSym":"sím","SSE.Controllers.DocumentHolder.tipIsLocked":"Este elemento está siendo editado por otro usuario.","SSE.Controllers.DocumentHolder.txtAboveAve":"Superior a la media","SSE.Controllers.DocumentHolder.txtAddBottom":"Añadir borde inferior","SSE.Controllers.DocumentHolder.txtAddFractionBar":"Añadir barra de fracción","SSE.Controllers.DocumentHolder.txtAddHor":"Añadir línea horizontal","SSE.Controllers.DocumentHolder.txtAddLB":"Añadir línea inferior izquierda","SSE.Controllers.DocumentHolder.txtAddLeft":"Añadir borde izquierdo","SSE.Controllers.DocumentHolder.txtAddLT":"Añadir línea superior izquierda","SSE.Controllers.DocumentHolder.txtAddRight":"Añadir borde derecho","SSE.Controllers.DocumentHolder.txtAddTop":"Añadir borde superior","SSE.Controllers.DocumentHolder.txtAddVer":"Añadir línea vertical","SSE.Controllers.DocumentHolder.txtAlignToChar":"Alinear a carácter","SSE.Controllers.DocumentHolder.txtAll":"(Todos)","SSE.Controllers.DocumentHolder.txtAllTableHint":"Devuelve todo el contenido de la tabla o de las columnas de la tabla especificadas, incluyendo las cabeceras de las columnas, los datos y las filas totales","SSE.Controllers.DocumentHolder.txtAnd":"y","SSE.Controllers.DocumentHolder.txtBegins":"Empieza con","SSE.Controllers.DocumentHolder.txtBelowAve":"Debajo de la media","SSE.Controllers.DocumentHolder.txtBlanks":"(Vacíos)","SSE.Controllers.DocumentHolder.txtBorderProps":"Propiedades de borde","SSE.Controllers.DocumentHolder.txtBottom":"Abajo ","SSE.Controllers.DocumentHolder.txtByField":"%1 de %2","SSE.Controllers.DocumentHolder.txtColumn":"Columna","SSE.Controllers.DocumentHolder.txtColumnAlign":"Alineación de columna","SSE.Controllers.DocumentHolder.txtContains":"Contiene","SSE.Controllers.DocumentHolder.txtCopySuccess":"Enlace copiado al portapapeles","SSE.Controllers.DocumentHolder.txtDataTableHint":"Devuelve las celdas de datos de la tabla o de las columnas de la tabla especificadas","SSE.Controllers.DocumentHolder.txtDecreaseArg":"Disminuir tamaño de argumento","SSE.Controllers.DocumentHolder.txtDeleteArg":"Eliminar argumento","SSE.Controllers.DocumentHolder.txtDeleteBreak":"Eliminar abertura manual","SSE.Controllers.DocumentHolder.txtDeleteChars":"Eliminar carácteres encerrados","SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators":"Eliminar caracteres encerrados y separadores","SSE.Controllers.DocumentHolder.txtDeleteEq":"Eliminar ecuación","SSE.Controllers.DocumentHolder.txtDeleteGroupChar":"Eliminar carácter","SSE.Controllers.DocumentHolder.txtDeleteRadical":"Eliminar radical","SSE.Controllers.DocumentHolder.txtEnds":"Termina con","SSE.Controllers.DocumentHolder.txtEquals":"Iguales","SSE.Controllers.DocumentHolder.txtEqualsToCellColor":"Igual al color de celda","SSE.Controllers.DocumentHolder.txtEqualsToFontColor":"Igual al color de fuente","SSE.Controllers.DocumentHolder.txtExpand":"Expandir y ordenar","SSE.Controllers.DocumentHolder.txtExpandSort":"Los datos al lado del rango seleccionado no serán ordenados. ¿Quiere Usted expandir el rango seleccionado para incluir datos de las celdas adyacentes o continuar ordenación del rango seleccionado?","SSE.Controllers.DocumentHolder.txtFilterBottom":"Más bajo","SSE.Controllers.DocumentHolder.txtFilterTop":"Superior","SSE.Controllers.DocumentHolder.txtFormula":"Fórmula","SSE.Controllers.DocumentHolder.txtFractionLinear":"Cambiar a la fracción lineal","SSE.Controllers.DocumentHolder.txtFractionSkewed":"Cambiar a la fracción sesgada","SSE.Controllers.DocumentHolder.txtFractionStacked":"Cambiar a la fracción apilada","SSE.Controllers.DocumentHolder.txtGreater":"Mayor que","SSE.Controllers.DocumentHolder.txtGreaterEquals":"Mayor que o igual a","SSE.Controllers.DocumentHolder.txtGroupCharOver":"Carácter por encima del texto","SSE.Controllers.DocumentHolder.txtGroupCharUnder":"Carácter por debajo del texto","SSE.Controllers.DocumentHolder.txtHeadersTableHint":"Devuelve las cabeceras de las columnas de la tabla o de las columnas de la tabla especificadas","SSE.Controllers.DocumentHolder.txtHeight":"Altura","SSE.Controllers.DocumentHolder.txtHideBottom":"Ocultar borde inferior","SSE.Controllers.DocumentHolder.txtHideBottomLimit":"Ocultar límite inferior","SSE.Controllers.DocumentHolder.txtHideCloseBracket":"Ocultar corchete de cierre","SSE.Controllers.DocumentHolder.txtHideDegree":"Ocultar grado","SSE.Controllers.DocumentHolder.txtHideHor":"Ocultar línea horizontal","SSE.Controllers.DocumentHolder.txtHideLB":"Ocultar línea inferior izquierda ","SSE.Controllers.DocumentHolder.txtHideLeft":"Ocultar borde izquierdo","SSE.Controllers.DocumentHolder.txtHideLT":"Ocultar línea superior izquierda","SSE.Controllers.DocumentHolder.txtHideOpenBracket":"Ocultar corchete de apertura","SSE.Controllers.DocumentHolder.txtHidePlaceholder":"Ocultar marcador de posición","SSE.Controllers.DocumentHolder.txtHideRight":"Ocultar borde derecho","SSE.Controllers.DocumentHolder.txtHideTop":"Ocultar borde superior","SSE.Controllers.DocumentHolder.txtHideTopLimit":"Ocultar límite superior","SSE.Controllers.DocumentHolder.txtHideVer":"Ocultar línea vertical","SSE.Controllers.DocumentHolder.txtImportWizard":"Importación de texto","SSE.Controllers.DocumentHolder.txtIncreaseArg":"Aumentar el tamaño del argumento","SSE.Controllers.DocumentHolder.txtInsertArgAfter":"Insertar argumento después","SSE.Controllers.DocumentHolder.txtInsertArgBefore":"Insertar argumento antes","SSE.Controllers.DocumentHolder.txtInsertBreak":"Insertar salto manual","SSE.Controllers.DocumentHolder.txtInsertEqAfter":"Insertar la ecuación después","SSE.Controllers.DocumentHolder.txtInsertEqBefore":"Insertar la ecuación antes","SSE.Controllers.DocumentHolder.txtItems":"objetos","SSE.Controllers.DocumentHolder.txtKeepTextOnly":"Mantener solo texto","SSE.Controllers.DocumentHolder.txtLess":"Menor que","SSE.Controllers.DocumentHolder.txtLessEquals":"Menor que o igual a","SSE.Controllers.DocumentHolder.txtLimitChange":"Cambiar ubicación de límites","SSE.Controllers.DocumentHolder.txtLimitOver":"Límite sobre el texto","SSE.Controllers.DocumentHolder.txtLimitUnder":"Límite debajo del texto","SSE.Controllers.DocumentHolder.txtLockSort":"Se encuentran datos junto a su selección, pero no tiene permisos suficientes para modificar esas celdas.
¿Desea continuar con la selección actual?","SSE.Controllers.DocumentHolder.txtMatchBrackets":"Coincidir corchetes con el alto de los argumentos","SSE.Controllers.DocumentHolder.txtMatrixAlign":"Alineación de la matriz","SSE.Controllers.DocumentHolder.txtNoChoices":"No hay selecciones para llenar la celda.
Se puede seleccionar solo valores de texto de columna para recambio.","SSE.Controllers.DocumentHolder.txtNotBegins":"No empieza con","SSE.Controllers.DocumentHolder.txtNotContains":"No contiene","SSE.Controllers.DocumentHolder.txtNotEnds":"No termina con","SSE.Controllers.DocumentHolder.txtNotEquals":"No es igual","SSE.Controllers.DocumentHolder.txtOr":"o","SSE.Controllers.DocumentHolder.txtOther":"Otro","SSE.Controllers.DocumentHolder.txtOverbar":"Barra sobre texto","SSE.Controllers.DocumentHolder.txtPaste":"Pegar","SSE.Controllers.DocumentHolder.txtPasteBorders":"Formula sin bordes","SSE.Controllers.DocumentHolder.txtPasteColWidths":"Formula + ancho de columna","SSE.Controllers.DocumentHolder.txtPasteDestFormat":"Formato de destino","SSE.Controllers.DocumentHolder.txtPasteFormat":"Pegar solo formato ","SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat":"Formula + formato de número","SSE.Controllers.DocumentHolder.txtPasteFormulas":"Pegar solo formula","SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat":"Formula + todo formateo","SSE.Controllers.DocumentHolder.txtPasteLink":"Pegar enlace","SSE.Controllers.DocumentHolder.txtPasteLinkPicture":"Imagen enlazada","SSE.Controllers.DocumentHolder.txtPasteMerge":"Combinar el formato condicional","SSE.Controllers.DocumentHolder.txtPastePicture":"Imagen","SSE.Controllers.DocumentHolder.txtPasteSourceFormat":"Formato de origen","SSE.Controllers.DocumentHolder.txtPasteTranspose":"Transponer","SSE.Controllers.DocumentHolder.txtPasteValFormat":"Valor + todo formato","SSE.Controllers.DocumentHolder.txtPasteValNumFormat":"Valor + formato de número","SSE.Controllers.DocumentHolder.txtPasteValues":"Pegar solo valor","SSE.Controllers.DocumentHolder.txtPercent":"por ciento","SSE.Controllers.DocumentHolder.txtRedoExpansion":"Rehacer expansión automática de la tabla","SSE.Controllers.DocumentHolder.txtRemFractionBar":"Quitar la barra de fracción","SSE.Controllers.DocumentHolder.txtRemLimit":"Eliminar límite","SSE.Controllers.DocumentHolder.txtRemoveAccentChar":"Quitar acento del carácter","SSE.Controllers.DocumentHolder.txtRemoveBar":"Eliminar barra","SSE.Controllers.DocumentHolder.txtRemoveWarning":"¿Desea eliminar esta firma?
No se puede deshacer.","SSE.Controllers.DocumentHolder.txtRemScripts":"Quitar índices","SSE.Controllers.DocumentHolder.txtRemSubscript":"Quitar subíndice","SSE.Controllers.DocumentHolder.txtRemSuperscript":"Quitar superíndice","SSE.Controllers.DocumentHolder.txtRowHeight":"Altura de fila","SSE.Controllers.DocumentHolder.txtScriptsAfter":"Índices después de texto","SSE.Controllers.DocumentHolder.txtScriptsBefore":"Índices antes de texto","SSE.Controllers.DocumentHolder.txtShowBottomLimit":"Mostrar límite inferior","SSE.Controllers.DocumentHolder.txtShowCloseBracket":"Mostrar corchete de cierre","SSE.Controllers.DocumentHolder.txtShowDegree":"Mostrar grado","SSE.Controllers.DocumentHolder.txtShowOpenBracket":"Mostrar corchete de apertura","SSE.Controllers.DocumentHolder.txtShowPlaceholder":"Mostrar marcador de posición","SSE.Controllers.DocumentHolder.txtShowTopLimit":"Mostrar límite superior","SSE.Controllers.DocumentHolder.txtSorting":"Ordenación","SSE.Controllers.DocumentHolder.txtSortSelected":"Ordenar los objetos seleccionados","SSE.Controllers.DocumentHolder.txtStretchBrackets":"Estirar corchetes","SSE.Controllers.DocumentHolder.txtThisRowHint":"Elija solo esta fila de la columna especificada","SSE.Controllers.DocumentHolder.txtTop":"Superior","SSE.Controllers.DocumentHolder.txtTotalsTableHint":"Devuelve el total de filas de la tabla o de las columnas de la tabla especificadas","SSE.Controllers.DocumentHolder.txtUnderbar":"Barra debajo de texto","SSE.Controllers.DocumentHolder.txtUndoExpansion":"Deshacer la expansión automática de la tabla","SSE.Controllers.DocumentHolder.txtUseTextImport":"Utilizar la importación de texto","SSE.Controllers.DocumentHolder.txtValue":"Valor","SSE.Controllers.DocumentHolder.txtWarnUrl":"Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. Para proteger su ordenador, haga clic solo en los hiperenlaces de fuentes fiables. Esta ubicación puede ser insegura:

{0}

¿Está seguro de que desea continuar?","SSE.Controllers.DocumentHolder.txtWidth":"Ancho","SSE.Controllers.DocumentHolder.warnFilterError":"Necesita la menos un campo de en el área «Valores» para aplicar el filtro de valor.","SSE.Controllers.FormulaDialog.sCategoryAll":"Todo","SSE.Controllers.FormulaDialog.sCategoryCube":"Cubo","SSE.Controllers.FormulaDialog.sCategoryCustom":"Personalizado","SSE.Controllers.FormulaDialog.sCategoryDatabase":"Base de datos","SSE.Controllers.FormulaDialog.sCategoryDateAndTime":"Fecha y hora","SSE.Controllers.FormulaDialog.sCategoryEngineering":"Ingeniería","SSE.Controllers.FormulaDialog.sCategoryFinancial":"Financiero","SSE.Controllers.FormulaDialog.sCategoryInformation":"Información","SSE.Controllers.FormulaDialog.sCategoryLast10":"10 usados por última vez","SSE.Controllers.FormulaDialog.sCategoryLogical":"Lógico","SSE.Controllers.FormulaDialog.sCategoryLookupAndReference":"Búsqueda y referencia","SSE.Controllers.FormulaDialog.sCategoryMathematic":"Matemáticas y trigonometría","SSE.Controllers.FormulaDialog.sCategoryStatistical":"Estadístico","SSE.Controllers.FormulaDialog.sCategoryTextAndData":"Texto y datos","SSE.Controllers.LeftMenu.newDocumentTitle":"Hoja de cálculo sin nombre","SSE.Controllers.LeftMenu.textByColumns":"Columnas","SSE.Controllers.LeftMenu.textByRows":"Filas","SSE.Controllers.LeftMenu.textFormulas":"Fórmulas ","SSE.Controllers.LeftMenu.textItemEntireCell":"Todo el contenido de celda","SSE.Controllers.LeftMenu.textLoadHistory":"Cargando historial de versiones...","SSE.Controllers.LeftMenu.textLookin":"Buscar en","SSE.Controllers.LeftMenu.textNoTextFound":"No se pueden encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","SSE.Controllers.LeftMenu.textReplaceSkipped":"Se ha realizado el reemplazo. Se han omitido {0} coincidencias.","SSE.Controllers.LeftMenu.textReplaceSuccess":"Se ha realizado la búsqueda. Se han sustituido {0} coincidencias.","SSE.Controllers.LeftMenu.textSave":"Guardar","SSE.Controllers.LeftMenu.textSearch":"Buscar","SSE.Controllers.LeftMenu.textSelectPath":"Introduzca un nuevo nombre para guardar la copia del archivo","SSE.Controllers.LeftMenu.textSheet":"Hoja","SSE.Controllers.LeftMenu.textValues":"Valores","SSE.Controllers.LeftMenu.textWarning":"Aviso","SSE.Controllers.LeftMenu.textWithin":"Dentro de","SSE.Controllers.LeftMenu.textWorkbook":"Libro de trabajo","SSE.Controllers.LeftMenu.txtUntitled":"Sin título","SSE.Controllers.LeftMenu.warnDownloadAs":"Si sigue guardando en este formato todas las características a excepción del texto se perderán.
¿Está seguro de que quiere continuar?","SSE.Controllers.LeftMenu.warnDownloadCsv":"El formato CSV no permite guardar un archivo de varias hojas y todos los elementos, excepto el texto.
Para guardar solo la hoja seleccionada en CSV, pulse OK.
Para guardar toda la hoja de cálculo y todas las características, pulse Cancelar y seleccione otro formato.","SSE.Controllers.LeftMenu.warnDownloadCsvSheets":"El formato CSV no admite guardar un archivo de varias hojas.
Para mantener el formato seleccionado y guardar solo la hoja actual, pulse Guardar.
Para guardar la hoja de cálculo actual, pulse Cancelar y guárdela en un formato diferente.","SSE.Controllers.LeftMenu.warnDownloadOds":"Al guardar este archivo, es posible que se pierdan algunas fórmulas, el formato de las celdas u objetos incrustados debido a la compatibilidad limitada con determinados formatos.
¿Está seguro de que desea continuar?","SSE.Controllers.Main.confirmAddCellWatches":"Esta acción añadirá {0} inspecciones de celda.
¿Desea continuar?","SSE.Controllers.Main.confirmAddCellWatchesMax":"Esta acción añadirá solo {0} inspecciones de celda por motivo de ahorrar memoria.
¿Desea continuar?","SSE.Controllers.Main.confirmMaxChangesSize":"El tamaño de las acciones excede la limitación establecida para su servidor.
Pulse \"Deshacer\" para cancelar su última acción o pulse \"Continuar\" para mantener la acción localmente (debe descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada).","SSE.Controllers.Main.confirmMoveCellRange":"El rango de celdas final puede contener los datos. ¿Quiere continuar?","SSE.Controllers.Main.confirmPutMergeRange":"Los datos de origen contienen celdas combinadas.
Habían estado sin combinar antes de que se pegaran en la tabla.","SSE.Controllers.Main.confirmReplaceFormulaInTable":"Las fórmulas de la fila de encabezado se eliminarán y se convertirán en texto estático.
¿Desea continuar?","SSE.Controllers.Main.confirmReplaceHFPicture":"Solo una imagen puede ser insertada en cada sección del encabezado.
Presione \"Reemplazar\" para reemplazar la imagen existente.
Presione \"conservar\" para conservar la imagen existente","SSE.Controllers.Main.convertationTimeoutText":"Se superó el tiempo de espera para la conversión.","SSE.Controllers.Main.criticalErrorExtText":"Pulse \"Aceptar\" para regresar a la lista de documentos.","SSE.Controllers.Main.criticalErrorExtTextClose":"Pulse \"OK\" para cerrar el editor.","SSE.Controllers.Main.criticalErrorTitle":"Error","SSE.Controllers.Main.downloadErrorText":"Error de descarga.","SSE.Controllers.Main.downloadTextText":"Cargando hoja de cálculo...","SSE.Controllers.Main.downloadTitleText":"Cargando hoja de cálculo","SSE.Controllers.Main.errNoDuplicates":"No se han encontrado valores duplicados.","SSE.Controllers.Main.errorAccessDeny":"Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con el administrador del servidor de documentos.","SSE.Controllers.Main.errorArgsRange":"Hay un error en la fórmula introducida.
Se está usando un intervalo de argumentos incorrecto.","SSE.Controllers.Main.errorAutoFilterChange":"La operación no está permitida, ya que está intentando cambiar celdas en una tabla de su hoja.","SSE.Controllers.Main.errorAutoFilterChangeFormatTable":"No se puede realizar la operación para las celdas seleccionadas porque usted no puede mover una parte de la tabla.
Seleccione otro rango de celdas para que toda la tabla sea seleccionada e intente de nuevo.","SSE.Controllers.Main.errorAutoFilterDataRange":"No se puede realizar la operación para el rango de celdas seleccionado.
Seleccione un rango de datos uniforme diferente del existente y vuelva a intentarlo.","SSE.Controllers.Main.errorAutoFilterHiddenRange":"No se puede realizar la operación porque el área contiene celdas filtradas.
Por favor muestre los elementos filtrados y vuelva a intentarlo.","SSE.Controllers.Main.errorBadImageUrl":"La URL de la imagen es incorrecta","SSE.Controllers.Main.errorCalculatedItemInPageField":"El elemento no se puede añadir ni modificar. El informe de la tabla dinámica tiene este campo en Filtros.","SSE.Controllers.Main.errorCannotPasteImg":"No se puede pegar esta imagen desde el portapapeles, pero puede guardarla en su dispositivo e \ninsertarla desde allí, o puede copiar la imagen sin texto y pegarla en la hoja de cálculo.","SSE.Controllers.Main.errorCannotUngroup":"No se puede desagrupar. Para crear un esquema del documento, seleccione filas o columnas y agrúpelas.","SSE.Controllers.Main.errorCannotUseCommandProtectedSheet":"No puede utilizar esta orden en una hoja protegida. Para usar esta orden, desproteja la hoja.
Es posible que se le solicite una contraseña.","SSE.Controllers.Main.errorChangeArray":"No se puede cambiar parte de una matriz.","SSE.Controllers.Main.errorChangeFilteredRange":"Esto cambiará un rango filtrado de la hoja.
Para completar esta tarea, quite los autofiltros.","SSE.Controllers.Main.errorChangeOnProtectedSheet":"La celda o el gráfico que está intentando cambiar se encuentra en una hoja protegida.
Para hacer un cambio, quítele la protección a la hoja. Es posible que se le solicite que introduzca una contraseña.","SSE.Controllers.Main.errorCircularReference":"Hay una o más referencias circulares en las que una fórmula hace referencia a su propia celda directa o indirectamente.
Intente eliminar o cambiar estas referencias, o mover las fórmulas a celdas diferentes.","SSE.Controllers.Main.errorCoAuthoringDisconnect":"Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.","SSE.Controllers.Main.errorConnectToServer":"No se ha podido guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.
Al hacer clic en el botón 'Aceptar' se le solicitará que descargue el documento.","SSE.Controllers.Main.errorConvertXml":"El archivo tiene un formato no compatible.
Solo se puede utilizar el formato XML Spreadsheet 2003.","SSE.Controllers.Main.errorCopyDisabled":"Por motivos de seguridad, el contenido de este documento no se puede copiar.","SSE.Controllers.Main.errorCopyMultiselectArea":"No se puede usar esta orden con varias selecciones.
Seleccione un solo rango e intente de nuevo.","SSE.Controllers.Main.errorCountArg":"Hay un error en la fórmula introducida.
Se está usando un número de argumentos incorrecto.","SSE.Controllers.Main.errorCountArgExceed":"Hay un error en la fórmula introducida.
Se ha excedido el número de argumentos.","SSE.Controllers.Main.errorCreateDefName":"No se pueden editar los rangos con nombres existentes y los nuevos no se pueden crear
en este momento ya que algunos de ellos están editándose.","SSE.Controllers.Main.errorCreateRange":"Los rangos existentes no se pueden editar y los nuevos no se pueden crear
por el momento ya que algunos de ellos se están editando.","SSE.Controllers.Main.errorDatabaseConnection":"Error externo.
Error de conexión a la base de datos. Por favor, póngase en contacto con atención al cliente si el error persiste.","SSE.Controllers.Main.errorDataEncrypted":"Se han recibido cambios cifrados que no pueden descifrarse.","SSE.Controllers.Main.errorDataRange":"Rango de datos incorrecto.","SSE.Controllers.Main.errorDataValidate":"El valor que ha introducido no es válido.
Un usuario ha restringido los valores que pueden ser introducidos en esta celda.","SSE.Controllers.Main.errorDefaultMessage":"Código de error: %1","SSE.Controllers.Main.errorDeleteColumnContainsLockedCell":"Está intentando eliminar una columna que contiene una celda bloqueada. Las celdas bloqueadas no pueden borrarse mientras la hoja esté protegida.
Para borrar una celda bloqueada, desproteja la hoja. Es posible que se le solicite que introduzca una contraseña.","SSE.Controllers.Main.errorDeleteRowContainsLockedCell":"Está intentando eliminar una fila que contiene una celda bloqueada. Las celdas bloqueadas no se pueden eliminar mientras la hoja esté protegida.
Para eliminar una celda bloqueada, desproteja la hoja. Es posible que se le solicite que introduzca una contraseña.","SSE.Controllers.Main.errorDependentsNoFormulas":"El comando de rastreo de dependencias de celdas no encontró formulas que hagan referencia a la celda activa.","SSE.Controllers.Main.errorDirectUrl":"Por favor, compruebe el vínculo al documento.
Este vínculo debe ser un vínculo directo al archivo para descargar.","SSE.Controllers.Main.errorEditingDownloadas":"Se ha producido 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.","SSE.Controllers.Main.errorEditingSaveas":"Se ha producido un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro.","SSE.Controllers.Main.errorEditView":"La vista de hoja existente no puede ser editada y las nuevas no se pueden crear en este momento, ya que algunas de ellas se están editando.","SSE.Controllers.Main.errorEmailClient":"No se ha podido encontrar ningún cliente de correo","SSE.Controllers.Main.errorFilePassProtect":"El archivo está protegido por una contraseña y no puede ser abierto.","SSE.Controllers.Main.errorFileRequest":"Error externo.
Error de solicitud de archivo. Por favor póngase en contacto con soporte si el error persiste.","SSE.Controllers.Main.errorFileSizeExceed":"El tamaño del archivo excede la limitación establecida para su servidor. Por favor, póngase en contacto con el administrador del servidor de documentos para obtener más detalles.","SSE.Controllers.Main.errorFileVKey":"Error externo.
Clave de seguridad incorrecto. Por favor póngase en contacto con soporte si el error persiste.","SSE.Controllers.Main.errorFillRange":"Es imposible rellenar el rango de celdas seleccionado.
Todas las celdas seleccionadas deben tener el mismo tamaño.","SSE.Controllers.Main.errorForceSave":"Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.","SSE.Controllers.Main.errorFormulaInPivotFieldName":"No se puede introducir una fórmula para un elemento o nombre de campo en un informe de tabla dinámica.","SSE.Controllers.Main.errorFormulaName":"Un error en la fórmula introducida.
Nombre de fórmula incorrecto.","SSE.Controllers.Main.errorFormulaParsing":"Error interno mientras analizando la fórmula.","SSE.Controllers.Main.errorFrmlMaxLength":"La longitud de su fórmula excede el límite de 8192 carácteres.
Por favor, edítela e intente de nuevo.","SSE.Controllers.Main.errorFrmlMaxReference":"No puede introducir esta fórmula porque tiene demasiados valores,
referencias de celda, y/o nombres.","SSE.Controllers.Main.errorFrmlMaxTextLength":"Valores de texto en fórmulas son limitados al número de caracteres - 255.
Use la función CONCATENAR u operador de concatenación (&).","SSE.Controllers.Main.errorFrmlWrongReferences":"La función se refiere a una hoja que no existe.
Por favor, compruebe los datos e inténtelo de nuevo.","SSE.Controllers.Main.errorFTChangeTableRangeError":"La operación no se ha podido completar para el rango de celdas seleccionado.
Seleccione un rango de modo que la primera fila de la tabla esté en la misma fila
y la tabla resultante se superponga a la actual.","SSE.Controllers.Main.errorFTRangeIncludedOtherTables":"La operación no se ha podido completar para el rango de celdas seleccionado.
Seleccione un rango que no incluye otras tablas.","SSE.Controllers.Main.errorInconsistentExt":"Se ha producido un error al abrir el archivo.
El contenido del archivo no coincide con la extensión del mismo.","SSE.Controllers.Main.errorInconsistentExtDocx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con documentos de texto (por ejemplo, docx), pero el archivo tiene una extensión inconsistente: %1.","SSE.Controllers.Main.errorInconsistentExtPdf":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con uno de los siguientes formatos: pdf/djvu/xps/oxps, pero el archivo tiene una extensión inconsistente: %1.","SSE.Controllers.Main.errorInconsistentExtPptx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con presentaciones (por ejemplo, pptx), pero el archivo tiene una extensión inconsistente: %1.","SSE.Controllers.Main.errorInconsistentExtXlsx":"Se ha producido un error al abrir el archivo.
El contenido del archivo corresponde con hojas de cálculo (por ejemplo, xlsx), pero el archivo tiene una extensión inconsistente: %1.","SSE.Controllers.Main.errorInvalidRef":"Introduzca un nombre correcto para la selección o una referencia válida a la que ir.","SSE.Controllers.Main.errorKeyEncrypt":"Descriptor de clave desconocido","SSE.Controllers.Main.errorKeyExpire":"El descriptor de la clave ha expirado","SSE.Controllers.Main.errorLabledColumnsPivot":"Para crear una tabla dinámica, utilice datos que estén organizados como una lista con columnas etiquetadas.","SSE.Controllers.Main.errorLoadingFont":"Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.","SSE.Controllers.Main.errorLocationOrDataRangeError":"La referencia a la ubicación o al rango de datos no es válida.","SSE.Controllers.Main.errorLockedAll":"No se ha podido realizar la operación porque la hoja ha sido bloqueada por otro usuario.","SSE.Controllers.Main.errorLockedCellGoalSeek":"Una de las celdas implicadas en el proceso de búsqueda de objetivos ha sido modificada por otro usuario.","SSE.Controllers.Main.errorLockedCellPivot":"No puede modificar datos dentro de una tabla dinámica.","SSE.Controllers.Main.errorLockedCellSolver":"Una de las celdas involucradas en el proceso de Solver ha sido modificada por otro usuario.","SSE.Controllers.Main.errorLockedWorksheetRename":"No se puede cambiar el nombre de la hoja en este momento porque otro usuario la está renombrando","SSE.Controllers.Main.errorMacroUnavailableWarning":"No se puede ejecutar la macro %1. Es posible que la macro no esté disponible en este libro o que todas las macros estén desactivadas.","SSE.Controllers.Main.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Controllers.Main.errorMoveRange":"Es imposible cambiar una parte de la celda unida","SSE.Controllers.Main.errorMoveSlicerError":"Las segmentaciones de la tabla no pueden ser copiadas de un libro a otro.
Inténtelo de nuevo al seleccionar toda la tabla y las segmentaciones.","SSE.Controllers.Main.errorMultiCellFormula":"Las fórmulas de matriz con celdas múltiples no están permitidas en las tablas.","SSE.Controllers.Main.errorNoDataToParse":"No se han seleccionado datos para analizar.","SSE.Controllers.Main.errorNotUniqueFieldWithCalculated":"Si una o más tablas dinámicas tienen elementos calculados, no se pueden utilizar campos en el área de datos dos o más veces, o en el área de datos y en otra área al mismo tiempo.","SSE.Controllers.Main.errorOpenWarning":"Una de las fórmulas del archivo excede el límite de 8192 caracteres.
Esta fórmula se ha eliminado.","SSE.Controllers.Main.errorOperandExpected":"La función de sintaxis introducida no es correcta. Le recomendamos verificar si no le hace falta algún paréntesis - '(' o ')'","SSE.Controllers.Main.errorPasswordIsNotCorrect":"La contraseña que ha proporcionado no es correcta.
Verifique que la tecla Bloq Mayús está desactivada y asegúrese de utilizar las mayúsculas correctas.","SSE.Controllers.Main.errorPasteInPivot":"No podemos hacer este cambio para las celdas seleccionadas porque afectaría a una tabla dinámica.
Utilice la lista de campos para cambiar el informe.","SSE.Controllers.Main.errorPasteMaxRange":"El área de copiar no coincide con el área de pegar.
Para pegar las celdas copiadas, por favor, seleccione una zona con el mismo tamaño o haga clic en la primera celda de una fila.","SSE.Controllers.Main.errorPasteMultiSelect":"Esta acción no se puede realizar en un rango de selecciones múltiples.
Seleccione un solo rango y vuelva a intentarlo.","SSE.Controllers.Main.errorPasteSlicerError":"Las segmentaciones de la tabla no se pueden copiar de un libro a otro.","SSE.Controllers.Main.errorPivotFieldNameExists":"El nombre del campo de la tabla dinámica ya existe.","SSE.Controllers.Main.errorPivotGroup":"No se puede agrupar esta selección.","SSE.Controllers.Main.errorPivotOverlap":"El informe de la tabla dinámica no puede superponerse a la tabla.","SSE.Controllers.Main.errorPivotWithoutUnderlying":"El informe de la tabla dinámica se ha guardado sin los datos subyacentes.
Utilice el botón 'Actualizar' para actualizar el informe.","SSE.Controllers.Main.errorPrecedentsNoValidRef":"El comando de rastreo de dependencias de celdas requiere que la celda activa contenga una fórmula con una referencia válida.","SSE.Controllers.Main.errorPrintMaxPagesCount":"Lamentablemente, no es posible imprimir más de 1500 páginas a la vez en la versión actual del programa.
Esta restricción se eliminará en los próximos lanzamientos.","SSE.Controllers.Main.errorProtectedRange":"Este rango no se puede editar.","SSE.Controllers.Main.errorSaveWatermark":"Este archivo contiene una imagen de marca de agua vinculada a otro dominio.
Para que sea visible en PDF, actualice la imagen de marca de agua para que se vincule desde el mismo dominio que su documento, o cárguela desde su ordenador.","SSE.Controllers.Main.errorServerVersion":"La versión del editor se ha actualizado. La página se recargará para aplicar los cambios.","SSE.Controllers.Main.errorSessionAbsolute":"La sesión para editar el documento ha expirado. Por favor, recargue la página.","SSE.Controllers.Main.errorSessionIdle":"El documento no se ha editado durante bastante tiempo. Por favor, recargue la página.","SSE.Controllers.Main.errorSessionToken":"La conexión al servidor se ha interrumpido. Por favor, recargue la página.","SSE.Controllers.Main.errorSetPassword":"No se ha podido establecer la contraseña.","SSE.Controllers.Main.errorSingleColumnOrRowError":"La referencia de la ubicación no es válida porque las celdas no están todas en la misma columna o fila.
Seleccione las celdas que estén todas en una sola columna o fila.","SSE.Controllers.Main.errorStockChart":"Orden de las filas incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja de tal modo:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Controllers.Main.errorToken":"El 'token' de seguridad de documento tiene un formato incorrecto.
Por favor, contacte con el administrador del servidor de documentos.","SSE.Controllers.Main.errorTokenExpire":"El 'token' de seguridad de documento ha expirado.
Por favor, contacte con el administrador del servidor de documentos.","SSE.Controllers.Main.errorUnexpectedGuid":"Error externo.
GUID inesperada. Por favor, póngase en contacto con el servicio de atención al cliente si el error persiste.","SSE.Controllers.Main.errorUpdateVersion":"Se ha cambiado la versión del archivo. La página será actualizada.","SSE.Controllers.Main.errorUpdateVersionOnDisconnect":"Se ha restablecido la conexión a internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.","SSE.Controllers.Main.errorUserDrop":"No se puede acceder al archivo ahora.","SSE.Controllers.Main.errorUsersExceed":"Se superó la cantidad de usuarios permitidos por el plan de precios","SSE.Controllers.Main.errorViewerDisconnect":"Se ha perdido la conexión. Usted todavía puede visualizar el documento,
pero no puede descargarlo o imprimirlo hasta que la conexión sea restaurada y la página sea recargada.","SSE.Controllers.Main.errorWrongBracketsCount":"Hay un error en la fórmula introducida.
Está usando un número incorrecto de corchetes.","SSE.Controllers.Main.errorWrongOperator":"ay un error en la fórmula introducida. Se está usando un operador inválido.
Por favor, corrija el error.","SSE.Controllers.Main.errorWrongPassword":"La contraseña que ha proporcionado no es correcta.","SSE.Controllers.Main.errRemDuplicates":"Valores duplicados encontrados y eliminados: {0}, valores únicos restantes: {1}.","SSE.Controllers.Main.leavePageText":"Usted tiene cambios no guardados en esta hoja de cálculo. Haga clic en 'Permanecer en esta página', después 'Guardar' para guardarlos. Haga clic en 'Abandonar esta página' para descartar todos los cambios no guardados.","SSE.Controllers.Main.leavePageTextOnClose":"Todos los cambios no guardados en esta hoja de cálculo se perderán.
Haga clic en \"Cancelar\" y luego en \"Guardar\" para guardarlos. Haga clic en \"Aceptar\" para deshacerse de todos los cambios no guardados.","SSE.Controllers.Main.loadFontsTextText":"Cargando datos...","SSE.Controllers.Main.loadFontsTitleText":"Cargando datos","SSE.Controllers.Main.loadFontTextText":"Cargando datos...","SSE.Controllers.Main.loadFontTitleText":"Cargando datos","SSE.Controllers.Main.loadImagesTextText":"Cargando imágenes...","SSE.Controllers.Main.loadImagesTitleText":"Cargando imágenes","SSE.Controllers.Main.loadImageTextText":"Cargando imagen...","SSE.Controllers.Main.loadImageTitleText":"Cargando imagen","SSE.Controllers.Main.loadingDocumentTitleText":"Cargando hoja de cálculo","SSE.Controllers.Main.notcriticalErrorTitle":"Aviso","SSE.Controllers.Main.openErrorText":"Se ha producido un error al abrir el archivo ","SSE.Controllers.Main.openTextText":"Abriendo hoja de cálculo...","SSE.Controllers.Main.openTitleText":"Abriendo hoja de cálculo","SSE.Controllers.Main.pastInMergeAreaError":"No se puede cambiar parte de una celda combinada","SSE.Controllers.Main.printTextText":"Imprimiendo hoja de cálculo...","SSE.Controllers.Main.printTitleText":"Imprimiendo hoja de cálculo","SSE.Controllers.Main.reloadButtonText":"Recargar página","SSE.Controllers.Main.requestEditFailedMessageText":"Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.","SSE.Controllers.Main.requestEditFailedTitleText":"Acceso denegado","SSE.Controllers.Main.saveErrorText":"Se ha producido un error al guardar el archivo ","SSE.Controllers.Main.saveErrorTextDesktop":"Este archivo no se puede guardar o crear.
Las razones posibles son:
1. El archivo es de solo lectura.
2. El archivo está siendo editado por otros usuarios.
3. El disco está lleno o corrupto.","SSE.Controllers.Main.saveTextText":"Guardando hoja de cálculo...","SSE.Controllers.Main.saveTitleText":"Guardando hoja de cálculo","SSE.Controllers.Main.scriptLoadError":"La conexión a internet es demasiado lenta, no se han podido cargar algunos componentes. Por favor, recargue la página.","SSE.Controllers.Main.textAnonymous":"Anónimo","SSE.Controllers.Main.textApplyAll":"Aplicar a todas las ecuaciones","SSE.Controllers.Main.textBuyNow":"Visitar sitio web","SSE.Controllers.Main.textChangesSaved":"Todos los cambios se han guardado","SSE.Controllers.Main.textClose":"Cerrar","SSE.Controllers.Main.textCloseTip":"Pulse para cerrar el consejo","SSE.Controllers.Main.textConfirm":"Confirmación","SSE.Controllers.Main.textConnectionLost":"Intentando conectar. Por favor, compruebe los ajustes de conexión.","SSE.Controllers.Main.textContactUs":"Contactar con el equipo de ventas","SSE.Controllers.Main.textContinue":"Continuar","SSE.Controllers.Main.textContinuesOpening":"El archivo sigue abriéndose...","SSE.Controllers.Main.textConvertEquation":"Esta ecuación fue creada con una versión antigua del editor de ecuaciones, el cual ya no es compatible. Para editarla, convierta la ecuación al formato ML de Office Math.
¿Convertir ahora?","SSE.Controllers.Main.textCustomLoader":"Tenga en cuenta que, según los términos de la licencia, usted no tiene permiso para cambiar el cargador.
Por favor, póngase en contacto con nuestro departamento de ventas para obtener más información.","SSE.Controllers.Main.textDisconnect":"Se ha perdido la conexión","SSE.Controllers.Main.textFillOtherRows":"Rellenar otras filas","SSE.Controllers.Main.textFormulaFilledAllRows":"La fórmula ha rellenado {0} filas que tienen datos. Rellenar otras filas vacías puede requerir unos minutos.","SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty":"La fórmula ha rellenado las primeras {0} filas. Rellenar otras filas vacías puede requerir unos minutos.","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData":"La fórmula ha rellenado solo las primeras {0} filas que tienen datos por razones de ahorro de memoria. Hay otras {1} filas con datos en esta hoja. Puede rellenarlas manualmente.","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty":"La fórmula ha rellenado solo las primeras {0} filas por razones de ahorro de memoria. Las demás filas de esta hoja no contienen datos.","SSE.Controllers.Main.textGuest":"Invitado","SSE.Controllers.Main.textHasMacros":"El archivo contiene macros automáticas.
¿Quiere ejecutar macros?","SSE.Controllers.Main.textKeep":"Conservar","SSE.Controllers.Main.textLearnMore":"Más información","SSE.Controllers.Main.textLoadingDocument":"Cargando hoja de cálculo","SSE.Controllers.Main.textLongName":"Escriba un nombre que tenga menos de 128 caracteres.","SSE.Controllers.Main.textNeedSynchronize":"Hay actualizaciones disponibles","SSE.Controllers.Main.textNo":"No","SSE.Controllers.Main.textNoLicenseTitle":"Se ha alcanzado el límite de licencias","SSE.Controllers.Main.textPaidFeature":"Función de pago","SSE.Controllers.Main.textPleaseWait":"La operación puede tomar más tiempo de lo esperado. Espere por favor...","SSE.Controllers.Main.textReconnect":"Se ha restablecido la conexión","SSE.Controllers.Main.textRemember":"Recordar mi elección para todos los archivos","SSE.Controllers.Main.textRememberMacros":"Recordar mi elección para todas las macros","SSE.Controllers.Main.textRenameError":"El nombre de usuario no debe estar vacío.","SSE.Controllers.Main.textRenameLabel":"Escriba un nombre que se utilizará para la colaboración","SSE.Controllers.Main.textReplace":"Reemplazar","SSE.Controllers.Main.textRequestMacros":"Una macro realiza una solicitud a la URL. ¿Quiere permitir la solicitud al %1?","SSE.Controllers.Main.textShape":"Forma","SSE.Controllers.Main.textStrict":"Modo estricto","SSE.Controllers.Main.textText":"Texto","SSE.Controllers.Main.textTryQuickPrint":"Ha seleccionado «impresión rápida»: todo el documento se imprimirá en la última impresora seleccionada o predeterminada.
¿Desea continuar?","SSE.Controllers.Main.textTryUndoRedo":"Las funciones «Deshacer/Rehacer» se desactivan para el modo «coedición rápido».
Haga Clic en el botón \"modo estricto\" para cambiar al modo de «coedición estricta» para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios solo después de guardarlos. Se puede cambiar entre los modos de coedición usando los ajustes avanzados de edición.","SSE.Controllers.Main.textTryUndoRedoWarn":"Las funciones «Deshacer/Rehacer» se desactivan en el modo «coedición rápido».","SSE.Controllers.Main.textUndo":"Deshacer","SSE.Controllers.Main.textUpdateVersion":"El documento no se puede editar en este momento.
Tratando de actualizar el archivo, por favor espere...","SSE.Controllers.Main.textUpdating":"Actualizando","SSE.Controllers.Main.textYes":"Sí","SSE.Controllers.Main.tipLicenseExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de conexiones simultáneas permitidas por la licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","SSE.Controllers.Main.tipLicenseUsersExceeded":"El documento está abierto en modo de sólo lectura, ya que se ha alcanzado el número máximo de usuarios autorizados a editar documentos por licencia.

Por favor, inténtelo de nuevo más tarde o póngase en contacto con el propietario del documento si necesita acceso a la edición.","SSE.Controllers.Main.titleLicenseExp":"La licencia ha expirado","SSE.Controllers.Main.titleLicenseNotActive":"Licencia no activa","SSE.Controllers.Main.titleReadOnly":"Modo de sólo lectura","SSE.Controllers.Main.titleServerVersion":"El editor se ha actualizado","SSE.Controllers.Main.titleUpdateVersion":"La versión ha cambiado","SSE.Controllers.Main.txtAccent":"Acento","SSE.Controllers.Main.txtAll":"(Todos)","SSE.Controllers.Main.txtArt":"Su texto aquí","SSE.Controllers.Main.txtBasicShapes":"Formas básicas","SSE.Controllers.Main.txtBlank":"(en blanco)","SSE.Controllers.Main.txtButtons":"Botones","SSE.Controllers.Main.txtByField":"%1 de %2","SSE.Controllers.Main.txtCallouts":"Llamadas","SSE.Controllers.Main.txtCharts":"Gráficos","SSE.Controllers.Main.txtClearFilter":"Borrar filtro","SSE.Controllers.Main.txtColLbls":"Etiquetas de columna","SSE.Controllers.Main.txtColumn":"Columna","SSE.Controllers.Main.txtConfidential":"Confidencial","SSE.Controllers.Main.txtDate":"Fecha","SSE.Controllers.Main.txtDays":"Días","SSE.Controllers.Main.txtDiagramTitle":"Título del gráfico","SSE.Controllers.Main.txtEditingMode":"Establecer el modo de edición...","SSE.Controllers.Main.txtErrorLoadHistory":"Error al cargar el historial","SSE.Controllers.Main.txtFiguredArrows":"Flechas figuradas","SSE.Controllers.Main.txtFile":"Archivo","SSE.Controllers.Main.txtGrandTotal":"Total general","SSE.Controllers.Main.txtGroup":"Agrupar","SSE.Controllers.Main.txtHours":"Horas","SSE.Controllers.Main.txtInfo":"Información","SSE.Controllers.Main.txtLines":"Líneas","SSE.Controllers.Main.txtMath":"Matemáticas","SSE.Controllers.Main.txtMinutes":"Minutos","SSE.Controllers.Main.txtMonths":"Meses","SSE.Controllers.Main.txtMultiSelect":"Selección múltiple","SSE.Controllers.Main.txtNone":"Ninguno","SSE.Controllers.Main.txtOpen":"Abrir","SSE.Controllers.Main.txtOr":"%1 o %2","SSE.Controllers.Main.txtPage":"Página","SSE.Controllers.Main.txtPageOf":"Página %1 de %2","SSE.Controllers.Main.txtPages":"Páginas","SSE.Controllers.Main.txtPicture":"Imagen","SSE.Controllers.Main.txtPivotTable":"Tabla dinámica","SSE.Controllers.Main.txtPreparedBy":"Preparado por","SSE.Controllers.Main.txtPrintArea":"Área_de_impresión","SSE.Controllers.Main.txtQuarter":"Trim.","SSE.Controllers.Main.txtQuarters":"Trimestres","SSE.Controllers.Main.txtRectangles":"Rectángulos","SSE.Controllers.Main.txtRow":"Fila","SSE.Controllers.Main.txtRowLbls":"Etiquetas de fila","SSE.Controllers.Main.txtSaveCopyAsComplete":"La copia del archivo se ha guardado correctamente","SSE.Controllers.Main.txtScheme_Aspect":"Aspecto","SSE.Controllers.Main.txtScheme_Blue":"Azul","SSE.Controllers.Main.txtScheme_Blue_Green":"Verde azulado","SSE.Controllers.Main.txtScheme_Blue_II":"Azul II","SSE.Controllers.Main.txtScheme_Blue_Warm":"Azul cálido","SSE.Controllers.Main.txtScheme_Grayscale":"Escala de grises","SSE.Controllers.Main.txtScheme_Green":"Verde","SSE.Controllers.Main.txtScheme_Green_Yellow":"Verde amarillo","SSE.Controllers.Main.txtScheme_Marquee":"Marquesina","SSE.Controllers.Main.txtScheme_Median":"Medio","SSE.Controllers.Main.txtScheme_Office":"Office","SSE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","SSE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","SSE.Controllers.Main.txtScheme_Orange":"Naranja","SSE.Controllers.Main.txtScheme_Orange_Red":"Rojo naranja","SSE.Controllers.Main.txtScheme_Paper":"Papel","SSE.Controllers.Main.txtScheme_Red":"Rojo","SSE.Controllers.Main.txtScheme_Red_Orange":"Naranja rojo","SSE.Controllers.Main.txtScheme_Red_Violet":"Violeta rojo","SSE.Controllers.Main.txtScheme_Slipstream":"Flujo de aire","SSE.Controllers.Main.txtScheme_Violet":"Violeta","SSE.Controllers.Main.txtScheme_Violet_II":"Violeta II","SSE.Controllers.Main.txtScheme_Yellow":"Amarillo","SSE.Controllers.Main.txtScheme_Yellow_Orange":"Amarillo naranja","SSE.Controllers.Main.txtSeconds":"Segundos","SSE.Controllers.Main.txtSeries":"Serie","SSE.Controllers.Main.txtShape_accentBorderCallout1":"Llamada con línea 1 (borde y barra de énfasis)","SSE.Controllers.Main.txtShape_accentBorderCallout2":"Llamada con línea 2 (borde y barra de énfasis)","SSE.Controllers.Main.txtShape_accentBorderCallout3":"Llamada con línea 3 (borde y barra de énfasis)","SSE.Controllers.Main.txtShape_accentCallout1":"Llamada con línea 1 (barra de énfasis)","SSE.Controllers.Main.txtShape_accentCallout2":"Llamada con línea 2 (barra de énfasis)","SSE.Controllers.Main.txtShape_accentCallout3":"Llamada con línea 3 (barra de énfasis)","SSE.Controllers.Main.txtShape_actionButtonBackPrevious":"Botón de atrás o anterior","SSE.Controllers.Main.txtShape_actionButtonBeginning":"Botón de inicio","SSE.Controllers.Main.txtShape_actionButtonBlank":"Botón en blanco","SSE.Controllers.Main.txtShape_actionButtonDocument":"Botón de documento","SSE.Controllers.Main.txtShape_actionButtonEnd":"Botón de final","SSE.Controllers.Main.txtShape_actionButtonForwardNext":"Botón de adelante o siguiente","SSE.Controllers.Main.txtShape_actionButtonHelp":"Botón de ayuda","SSE.Controllers.Main.txtShape_actionButtonHome":"Botón de inicio","SSE.Controllers.Main.txtShape_actionButtonInformation":"Botón de información","SSE.Controllers.Main.txtShape_actionButtonMovie":"Botón de vídeo","SSE.Controllers.Main.txtShape_actionButtonReturn":"Botón de regreso","SSE.Controllers.Main.txtShape_actionButtonSound":"Botón de sonido","SSE.Controllers.Main.txtShape_arc":"Arco","SSE.Controllers.Main.txtShape_bentArrow":"Flecha doblada","SSE.Controllers.Main.txtShape_bentConnector5":"Conector angular","SSE.Controllers.Main.txtShape_bentConnector5WithArrow":"Conector angular de flecha","SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"Conector angular de flecha doble","SSE.Controllers.Main.txtShape_bentUpArrow":"Flecha doblada hacia arriba","SSE.Controllers.Main.txtShape_bevel":"Bisel","SSE.Controllers.Main.txtShape_blockArc":"Arco de bloque","SSE.Controllers.Main.txtShape_borderCallout1":"Llamada con línea 1","SSE.Controllers.Main.txtShape_borderCallout2":"Llamada con línea 2","SSE.Controllers.Main.txtShape_borderCallout3":"Llamada con línea 3","SSE.Controllers.Main.txtShape_bracePair":"Llaves","SSE.Controllers.Main.txtShape_callout1":"Llamada con línea 1 (sin borde)","SSE.Controllers.Main.txtShape_callout2":"Llamada con línea 2 (sin borde)","SSE.Controllers.Main.txtShape_callout3":"Llamada con línea 3 (sin borde)","SSE.Controllers.Main.txtShape_can":"Сilindro","SSE.Controllers.Main.txtShape_chevron":"Cheurón","SSE.Controllers.Main.txtShape_chord":"Acorde","SSE.Controllers.Main.txtShape_circularArrow":"Flecha circular","SSE.Controllers.Main.txtShape_cloud":"Nube","SSE.Controllers.Main.txtShape_cloudCallout":"Llamada de nube","SSE.Controllers.Main.txtShape_corner":"Esquina","SSE.Controllers.Main.txtShape_cube":"Cubo","SSE.Controllers.Main.txtShape_curvedConnector3":"Conector curvado","SSE.Controllers.Main.txtShape_curvedConnector3WithArrow":"Conector curvado de flecha","SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"Conector curvado de flecha doble","SSE.Controllers.Main.txtShape_curvedDownArrow":"Flecha curvada hacia abajo","SSE.Controllers.Main.txtShape_curvedLeftArrow":"Flecha curvada hacia la izquierda","SSE.Controllers.Main.txtShape_curvedRightArrow":"Flecha curvada hacia la derecha","SSE.Controllers.Main.txtShape_curvedUpArrow":"Flecha curvada hacia arriba","SSE.Controllers.Main.txtShape_decagon":"Decágono","SSE.Controllers.Main.txtShape_diagStripe":"Franja diagonal","SSE.Controllers.Main.txtShape_diamond":"Rombo","SSE.Controllers.Main.txtShape_dodecagon":"Dodecágono","SSE.Controllers.Main.txtShape_donut":"Anillo","SSE.Controllers.Main.txtShape_doubleWave":"Doble onda","SSE.Controllers.Main.txtShape_downArrow":"Flecha abajo","SSE.Controllers.Main.txtShape_downArrowCallout":"Llamada de flecha hacia abajo","SSE.Controllers.Main.txtShape_ellipse":"Elipse","SSE.Controllers.Main.txtShape_ellipseRibbon":"Cinta curvada hacia abajo","SSE.Controllers.Main.txtShape_ellipseRibbon2":"Cinta curvada hacia arriba","SSE.Controllers.Main.txtShape_flowChartAlternateProcess":"Diagrama de flujo: Proceso alternativo","SSE.Controllers.Main.txtShape_flowChartCollate":"Intercalar","SSE.Controllers.Main.txtShape_flowChartConnector":"Conector","SSE.Controllers.Main.txtShape_flowChartDecision":"Decisión","SSE.Controllers.Main.txtShape_flowChartDelay":"Retraso","SSE.Controllers.Main.txtShape_flowChartDisplay":"Pantalla","SSE.Controllers.Main.txtShape_flowChartDocument":"Documento","SSE.Controllers.Main.txtShape_flowChartExtract":"Extracto","SSE.Controllers.Main.txtShape_flowChartInputOutput":"Datos","SSE.Controllers.Main.txtShape_flowChartInternalStorage":"Diagrama de flujo: Almacenamiento interno","SSE.Controllers.Main.txtShape_flowChartMagneticDisk":"Diagrama de flujo: Disco magnético","SSE.Controllers.Main.txtShape_flowChartMagneticDrum":"Diagrama de flujo: Almacenamiento de acceso directo","SSE.Controllers.Main.txtShape_flowChartMagneticTape":"Diagrama de flujo: Almacenamiento de acceso secuencial","SSE.Controllers.Main.txtShape_flowChartManualInput":"Diagrama de flujo: Entrada manual","SSE.Controllers.Main.txtShape_flowChartManualOperation":"Diagrama de flujo: Operación manual","SSE.Controllers.Main.txtShape_flowChartMerge":"Combinar","SSE.Controllers.Main.txtShape_flowChartMultidocument":"Multidocumento","SSE.Controllers.Main.txtShape_flowChartOffpageConnector":"Conector fuera de página","SSE.Controllers.Main.txtShape_flowChartOnlineStorage":"Diagrama de flujo: Datos almacenados","SSE.Controllers.Main.txtShape_flowChartOr":"Diagrama de flujo: O","SSE.Controllers.Main.txtShape_flowChartPredefinedProcess":"Proceso predefinido","SSE.Controllers.Main.txtShape_flowChartPreparation":"Preparación","SSE.Controllers.Main.txtShape_flowChartProcess":"Proceso","SSE.Controllers.Main.txtShape_flowChartPunchedCard":"Tarjeta","SSE.Controllers.Main.txtShape_flowChartPunchedTape":"Diagrama de flujo: Cinta perforada","SSE.Controllers.Main.txtShape_flowChartSort":"Ordenar","SSE.Controllers.Main.txtShape_flowChartSummingJunction":"Diagrama de flujo: Conexión sumadora","SSE.Controllers.Main.txtShape_flowChartTerminator":"Terminador","SSE.Controllers.Main.txtShape_foldedCorner":"Esquina doblada","SSE.Controllers.Main.txtShape_frame":"Marco","SSE.Controllers.Main.txtShape_halfFrame":"Medio marco","SSE.Controllers.Main.txtShape_heart":"Corazón","SSE.Controllers.Main.txtShape_heptagon":"Heptágono","SSE.Controllers.Main.txtShape_hexagon":"Hexágono","SSE.Controllers.Main.txtShape_homePlate":"Pentágono","SSE.Controllers.Main.txtShape_horizontalScroll":"Pergamino horizontal","SSE.Controllers.Main.txtShape_irregularSeal1":"Explosión 1","SSE.Controllers.Main.txtShape_irregularSeal2":"Explosión 2","SSE.Controllers.Main.txtShape_leftArrow":"Flecha izquierda","SSE.Controllers.Main.txtShape_leftArrowCallout":"Llamada de flecha a la izquierda","SSE.Controllers.Main.txtShape_leftBrace":"Abrir llave","SSE.Controllers.Main.txtShape_leftBracket":"Abrir corchete","SSE.Controllers.Main.txtShape_leftRightArrow":"Flecha izquierda y derecha","SSE.Controllers.Main.txtShape_leftRightArrowCallout":"Llamada de flecha izquierda y derecha","SSE.Controllers.Main.txtShape_leftRightUpArrow":"Flecha izquierda, derecha y arriba","SSE.Controllers.Main.txtShape_leftUpArrow":"Flecha izquierda y arriba","SSE.Controllers.Main.txtShape_lightningBolt":"Rayo","SSE.Controllers.Main.txtShape_line":"Línea","SSE.Controllers.Main.txtShape_lineWithArrow":"Flecha","SSE.Controllers.Main.txtShape_lineWithTwoArrows":"Flecha doble","SSE.Controllers.Main.txtShape_mathDivide":"División","SSE.Controllers.Main.txtShape_mathEqual":"Igual","SSE.Controllers.Main.txtShape_mathMinus":"Menos","SSE.Controllers.Main.txtShape_mathMultiply":"Multiplicar","SSE.Controllers.Main.txtShape_mathNotEqual":"No igual","SSE.Controllers.Main.txtShape_mathPlus":"Más","SSE.Controllers.Main.txtShape_moon":"Luna","SSE.Controllers.Main.txtShape_noSmoking":"Señal de prohibición","SSE.Controllers.Main.txtShape_notchedRightArrow":"Flecha a la derecha con muesca","SSE.Controllers.Main.txtShape_octagon":"Octágono","SSE.Controllers.Main.txtShape_parallelogram":"Paralelogramo","SSE.Controllers.Main.txtShape_pentagon":"Pentágono","SSE.Controllers.Main.txtShape_pie":"Sector del círculo","SSE.Controllers.Main.txtShape_plaque":"Signo","SSE.Controllers.Main.txtShape_plus":"Más","SSE.Controllers.Main.txtShape_polyline1":"A mano alzada","SSE.Controllers.Main.txtShape_polyline2":"Forma libre","SSE.Controllers.Main.txtShape_quadArrow":"Flecha cuádruple","SSE.Controllers.Main.txtShape_quadArrowCallout":"Llamada de flecha cuádruple","SSE.Controllers.Main.txtShape_rect":"Rectángulo","SSE.Controllers.Main.txtShape_ribbon":"Cinta hacia abajo","SSE.Controllers.Main.txtShape_ribbon2":"Cinta hacia arriba","SSE.Controllers.Main.txtShape_rightArrow":"Flecha derecha","SSE.Controllers.Main.txtShape_rightArrowCallout":"Llamada de flecha a la derecha","SSE.Controllers.Main.txtShape_rightBrace":"Cerrar llave","SSE.Controllers.Main.txtShape_rightBracket":"Cerrar corchete","SSE.Controllers.Main.txtShape_round1Rect":"Rectángulo sencillo de esquina redondeada","SSE.Controllers.Main.txtShape_round2DiagRect":"Rectángulo de esquina redondeada en diagonal","SSE.Controllers.Main.txtShape_round2SameRect":"Rectángulo de esquina redondeada del mismo lado","SSE.Controllers.Main.txtShape_roundRect":"Rectángulo con esquinas redondeadas","SSE.Controllers.Main.txtShape_rtTriangle":"Triángulo rectángulo","SSE.Controllers.Main.txtShape_smileyFace":"Cara sonriente","SSE.Controllers.Main.txtShape_snip1Rect":"Rectángulo de esquina sencilla recortada","SSE.Controllers.Main.txtShape_snip2DiagRect":"Rectángulo de esquina diagonal recortada","SSE.Controllers.Main.txtShape_snip2SameRect":"Rectángulo de esquina recortada del mismo lado","SSE.Controllers.Main.txtShape_snipRoundRect":"Rectángulo de esquina sencilla redondeada y recortada","SSE.Controllers.Main.txtShape_spline":"Curva","SSE.Controllers.Main.txtShape_star10":"Estrella de 10 puntas","SSE.Controllers.Main.txtShape_star12":"Estrella de 12 puntas","SSE.Controllers.Main.txtShape_star16":"Estrella de 16 puntas","SSE.Controllers.Main.txtShape_star24":"Estrella de 24 puntas","SSE.Controllers.Main.txtShape_star32":"Estrella de 32 puntas","SSE.Controllers.Main.txtShape_star4":"Estrella de 4 puntas","SSE.Controllers.Main.txtShape_star5":"Estrella de 5 puntas","SSE.Controllers.Main.txtShape_star6":"Estrella de 6 puntas","SSE.Controllers.Main.txtShape_star7":"Estrella de 7 puntas","SSE.Controllers.Main.txtShape_star8":"Estrella de 8 puntas","SSE.Controllers.Main.txtShape_stripedRightArrow":"Flecha a la derecha con bandas","SSE.Controllers.Main.txtShape_sun":"Sol","SSE.Controllers.Main.txtShape_teardrop":"Lágrima","SSE.Controllers.Main.txtShape_textRect":"Cuadro de texto","SSE.Controllers.Main.txtShape_trapezoid":"Trapecio","SSE.Controllers.Main.txtShape_triangle":"Triángulo","SSE.Controllers.Main.txtShape_upArrow":"Flecha hacia arriba","SSE.Controllers.Main.txtShape_upArrowCallout":"Llamada de flecha hacia arriba","SSE.Controllers.Main.txtShape_upDownArrow":"Flecha hacia arriba y abajo","SSE.Controllers.Main.txtShape_uturnArrow":"Flecha en U","SSE.Controllers.Main.txtShape_verticalScroll":"Pergamino vertical","SSE.Controllers.Main.txtShape_wave":"Onda","SSE.Controllers.Main.txtShape_wedgeEllipseCallout":"Llamada ovalada","SSE.Controllers.Main.txtShape_wedgeRectCallout":"Llamada rectangular","SSE.Controllers.Main.txtShape_wedgeRoundRectCallout":"Llamada rectangular redondeada","SSE.Controllers.Main.txtSheet":"Hoja","SSE.Controllers.Main.txtSlicer":"Segmentación de datos","SSE.Controllers.Main.txtSolverLookingSolution":"Solver está buscando una solución.","SSE.Controllers.Main.txtStarsRibbons":"Cintas y estrellas","SSE.Controllers.Main.txtStyle_Bad":"Malo","SSE.Controllers.Main.txtStyle_Calculation":"Cálculo","SSE.Controllers.Main.txtStyle_Check_Cell":"Celda de control","SSE.Controllers.Main.txtStyle_Comma":"Financiero","SSE.Controllers.Main.txtStyle_Currency":"Moneda","SSE.Controllers.Main.txtStyle_Explanatory_Text":"Texto explicativo","SSE.Controllers.Main.txtStyle_Good":"Bueno","SSE.Controllers.Main.txtStyle_Heading_1":"Título 1","SSE.Controllers.Main.txtStyle_Heading_2":"Título 2","SSE.Controllers.Main.txtStyle_Heading_3":"Título 3","SSE.Controllers.Main.txtStyle_Heading_4":"Título 4","SSE.Controllers.Main.txtStyle_Input":"Entrada","SSE.Controllers.Main.txtStyle_Linked_Cell":"Celda enlazada","SSE.Controllers.Main.txtStyle_Neutral":"Neutral","SSE.Controllers.Main.txtStyle_Normal":"Normal","SSE.Controllers.Main.txtStyle_Note":"Nota","SSE.Controllers.Main.txtStyle_Output":"Salida","SSE.Controllers.Main.txtStyle_Percent":"Por ciento","SSE.Controllers.Main.txtStyle_Title":"Título","SSE.Controllers.Main.txtStyle_Total":"Total","SSE.Controllers.Main.txtStyle_Warning_Text":"Texto de advertencia","SSE.Controllers.Main.txtTab":"Tabulador","SSE.Controllers.Main.txtTable":"Tabla","SSE.Controllers.Main.txtTime":"Hora","SSE.Controllers.Main.txtUnlock":"Desbloquear","SSE.Controllers.Main.txtUnlockRange":"Desbloquear rango","SSE.Controllers.Main.txtUnlockRangeDescription":"Introduzca la contraseña para cambiar este rango:","SSE.Controllers.Main.txtUnlockRangeWarning":"Un rango que está tratando de cambiar está protegido por contraseña.","SSE.Controllers.Main.txtValues":"Valores","SSE.Controllers.Main.txtView":"Vista","SSE.Controllers.Main.txtXAxis":"Eje X","SSE.Controllers.Main.txtYAxis":"Eje Y","SSE.Controllers.Main.txtYears":"Años","SSE.Controllers.Main.unknownErrorText":"Error desconocido.","SSE.Controllers.Main.unsupportedBrowserErrorText":"Su navegador no es compatible.","SSE.Controllers.Main.uploadDocExtMessage":"Formato de documento desconocido","SSE.Controllers.Main.uploadDocFileCountMessage":"No hay documentos subidos","SSE.Controllers.Main.uploadDocSizeMessage":"Límite de tamaño máximo del documento excedido.","SSE.Controllers.Main.uploadImageExtMessage":"Formato de imagen desconocido.","SSE.Controllers.Main.uploadImageFileCountMessage":"No hay imágenes subidas.","SSE.Controllers.Main.uploadImageSizeMessage":"La imagen es demasiado grande. El tamaño máximo es de 25 MB.","SSE.Controllers.Main.uploadImageTextText":"Subiendo imagen...","SSE.Controllers.Main.uploadImageTitleText":"Subir imagen","SSE.Controllers.Main.waitText":"Por favor, espere...","SSE.Controllers.Main.warnBrowserIE9":"Esta aplicación tiene bajas capacidades en IE9. Utilice IE10 o superior","SSE.Controllers.Main.warnBrowserZoom":"La configuración actual de 'zoom' de su navegador no es compatible por completo. Por favor, restablezca el 'zoom' predeterminado pulsando Ctrl+0.","SSE.Controllers.Main.warnExternalChartProtected":"Este gráfico se basa en los datos de un archivo externo. En esta ventana, sólo puede seleccionar los datos que se mostrarán en el gráfico. Para editar la hoja de cálculo, ábrala en el editor de hojas de cálculo.","SSE.Controllers.Main.warnLicenseAnonymous":"Acceso denegado a usuarios anónimos.
Este documento se abrirá solo para su visualización.","SSE.Controllers.Main.warnLicenseBefore":"Licencia no activa.
Por favor, póngase en contacto con su administrador.","SSE.Controllers.Main.warnLicenseExp":"Su licencia ha expirado.
Por favor, actualice su licencia y recargue la página.","SSE.Controllers.Main.warnLicenseLimitedNoAccess":"Licencia expirada.
No tiene acceso a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador.","SSE.Controllers.Main.warnLicenseLimitedRenewed":"Se requiere que renueve su licencia.
Tiene un acceso limitado a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador para obtener un acceso completo","SSE.Controllers.Main.warnModifyFilter":"Está en un modo en el que los filtros son visibles solo para usted y no se guardan. No puede añadir ni eliminar filtros.
Para guardar la vista actual, utilice Vista de hoja en la pestaña Vista.","SSE.Controllers.Main.warnNoLicense":"Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá en modo de solo lectura.
Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.","SSE.Controllers.Main.warnNoLicenseUsers":"Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.","SSE.Controllers.Main.warnOpenCsv":"El formato CSV no permite guardar un archivo de varias hojas, ni ningún elemento excepto el texto.
Solo se guardará la hoja activa.","SSE.Controllers.Main.warnProcessRightsChange":"Se le ha denegado el permiso para editar este archivo.","SSE.Controllers.PivotTable.strSheet":"Hoja","SSE.Controllers.PivotTable.txtCalculatedItemInPageField":"El elemento no se puede añadir ni modificar. El informe de la tabla dinámica tiene este campo en Filtros.","SSE.Controllers.PivotTable.txtCalculatedItemWarningDefault":"No se permiten acciones con elementos calculados para esta celda activa.","SSE.Controllers.PivotTable.txtNotUniqueFieldWithCalculated":"Si una o más tablas dinámicas tienen elementos calculados, no se pueden utilizar campos en el área de datos dos o más veces, o en el área de datos y en otra área al mismo tiempo.","SSE.Controllers.PivotTable.txtPivotFieldCustomSubtotalsWithCalculatedItems":"Los elementos calculados no funcionan con subtotales personalizados.","SSE.Controllers.PivotTable.txtPivotItemNameNotFound":"No se puede encontrar el nombre de un elemento. Compruebe que ha escrito el nombre correctamente y que el elemento está presente en el informe de la tabla dinámica.","SSE.Controllers.PivotTable.txtWrongDataFieldSubtotalForCalculatedItems":"Los promedios, las desviaciones estándar y las desviaciones no son compatibles cuando un informe de la tabla dinámica tiene elementos calculados.","SSE.Controllers.Print.strAllSheets":"Todas las hojas","SSE.Controllers.Print.textFirstCol":"Primera columna","SSE.Controllers.Print.textFirstRow":"Primera fila","SSE.Controllers.Print.textFrozenCols":"Columnas congeladas","SSE.Controllers.Print.textFrozenRows":"Filas congeladas","SSE.Controllers.Print.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Controllers.Print.textNoRepeat":"No repetir","SSE.Controllers.Print.textRepeat":"Repetir...","SSE.Controllers.Print.textSelectRange":"Seleccionar rango","SSE.Controllers.Print.txtCustom":"Personalizado","SSE.Controllers.Print.txtZoomToPage":"Ampliar a la página","SSE.Controllers.Search.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Controllers.Search.textNoTextFound":"No se pueden encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.","SSE.Controllers.Search.textReplaceSkipped":"Se ha realizado el reemplazo. Se han omitido {0} coincidencias.","SSE.Controllers.Search.textReplaceSuccess":"Se ha realizado la búsqueda. Se han sustituido {0} coincidencias.","SSE.Controllers.Statusbar.errNameExists":"Hoja con tal nombre ya existe","SSE.Controllers.Statusbar.errorLastSheet":"Un libro debe contener al menos una hoja visible.","SSE.Controllers.Statusbar.errorRemoveSheet":"Imposible borrar la hoja.","SSE.Controllers.Statusbar.errSheetNameRules":"Ha escrito un nombre de hoja no válido:
- Un nombre de hoja no puede estar vacío.
- Un nombre de hoja no puede contener los siguientes caracteres: \\ / * ? [ ] : o el carácter ' como primer o último carácter.","SSE.Controllers.Statusbar.strSheet":"Hoja","SSE.Controllers.Statusbar.textContinue":"Continuar","SSE.Controllers.Statusbar.textDisconnect":"Se ha perdido la conexión
Intentando conectar. Compruebe la configuración de la conexión.","SSE.Controllers.Statusbar.textSheetViewTip":"Está en el modo Vista de Hoja. Los filtros y la ordenación son visibles solo para usted y aquellos que aún están en esta vista.","SSE.Controllers.Statusbar.textSheetViewTipFilters":"Está en el modo de vista de hoja. Los filtros solo los puede ver usted y los que aún están en esta vista.","SSE.Controllers.Statusbar.warnAddSheetCsv":"El formato CSV no permite guardar un archivo de varias hojas. Solo se guardará la hoja activa. Para mantener todas las hojas, guarde el archivo en un formato diferente.","SSE.Controllers.Statusbar.warnDeleteSheet":"Las hojas seleccionadas pueden contener datos. ¿Está seguro de que quiere proceder?","SSE.Controllers.Statusbar.zoomText":"Ampliación {0}%","SSE.Controllers.TableDesignTab.notcriticalErrorTitle":"Advertencia","SSE.Controllers.TableDesignTab.textExistName":"¡ERROR! Ya existe un rango con tal nombre","SSE.Controllers.TableDesignTab.textInvalidName":"¡ERROR! El nombre de la tabla es inválido","SSE.Controllers.TableDesignTab.textIsLocked":"Este elemento lo está editando otro usuario.","SSE.Controllers.TableDesignTab.textLongOperation":"Operación larga","SSE.Controllers.TableDesignTab.textReservedName":"El nombre que está tratando de usar ya se hace referencia en las fórmulas de la celda. Por favor seleccione otro nombre.","SSE.Controllers.TableDesignTab.textResize":"Tamaño de la tabla","SSE.Controllers.TableDesignTab.warnLongOperation":"La operación que está a punto de realizar podría tomar mucho tiempo para completar.
¿Está seguro que desea continuar?","SSE.Controllers.Toolbar.confirmAddFontName":"El tipo de letra que usted va a guardar no está disponible en este dispositivo.
El estilo de letra se mostrará usando uno de los tipos de letra del sistema, el tipo de letra guardado va a usarse cuando esté disponible.
¿Desea continuar?","SSE.Controllers.Toolbar.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","SSE.Controllers.Toolbar.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Controllers.Toolbar.errorMaxRows":"¡ERROR! El número máximo de series de datos por gráfico es 225","SSE.Controllers.Toolbar.errorStockChart":"Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Controllers.Toolbar.helpChartElements":"Cambie fácilmente la visibilidad de los elementos del gráfico con unos pocos clics.","SSE.Controllers.Toolbar.helpChartElementsHeader":"Visualización de elementos del gráfico","SSE.Controllers.Toolbar.helpCommentFilter":"Gestione su vista alternando entre comentarios abiertos y resueltos en el panel izquierdo.","SSE.Controllers.Toolbar.helpCommentFilterHeader":"Filtros de comentarios","SSE.Controllers.Toolbar.helpRtlDir":"Ajuste la dirección del texto de las celdas para alinearlo con sus necesidades de contenido.","SSE.Controllers.Toolbar.helpRtlDirHeader":"Dirección del texto de la celda","SSE.Controllers.Toolbar.helpTableTab":"Acceda cómodamente a todos los ajustes de formato de tabla en la pestaña dedicada Diseño de tabla.","SSE.Controllers.Toolbar.helpTableTabHeader":"Pestaña Diseño de tabla","SSE.Controllers.Toolbar.textAccent":"Acentos","SSE.Controllers.Toolbar.textBracket":"Corchetes","SSE.Controllers.Toolbar.textDirectional":"Direccional","SSE.Controllers.Toolbar.textFontSizeErr":"El valor introducido es incorrecto.
Por favor, introduzca un valor numérico entre 1 y 409","SSE.Controllers.Toolbar.textFraction":"Fracciones","SSE.Controllers.Toolbar.textFunction":"Funciones","SSE.Controllers.Toolbar.textIndicator":"Hitos","SSE.Controllers.Toolbar.textInsert":"Insertar","SSE.Controllers.Toolbar.textIntegral":"Integrales","SSE.Controllers.Toolbar.textLargeOperator":"Operadores grandes","SSE.Controllers.Toolbar.textLimitAndLog":"Límites y logaritmos","SSE.Controllers.Toolbar.textLongOperation":"Operación larga","SSE.Controllers.Toolbar.textMatrix":"Matrices","SSE.Controllers.Toolbar.textOperator":"Operadores","SSE.Controllers.Toolbar.textPasteSpecial":"Paste special","SSE.Controllers.Toolbar.textPivot":"Tabla dinámica","SSE.Controllers.Toolbar.textRadical":"Radicales","SSE.Controllers.Toolbar.textRating":"Clasificaciones","SSE.Controllers.Toolbar.textRecentlyUsed":"Usados recientemente","SSE.Controllers.Toolbar.textScript":"Índices","SSE.Controllers.Toolbar.textShapes":"Formas","SSE.Controllers.Toolbar.textSymbols":"Símbolos","SSE.Controllers.Toolbar.textWarning":"Aviso","SSE.Controllers.Toolbar.txtAccent_Accent":"Agudo","SSE.Controllers.Toolbar.txtAccent_ArrowD":"Flecha derecha-izquierda superior","SSE.Controllers.Toolbar.txtAccent_ArrowL":"Flecha superior izquierda","SSE.Controllers.Toolbar.txtAccent_ArrowR":"Flecha superior derecha","SSE.Controllers.Toolbar.txtAccent_Bar":"Barra","SSE.Controllers.Toolbar.txtAccent_BarBot":"Barra subyacente","SSE.Controllers.Toolbar.txtAccent_BarTop":"Barra superpuesta","SSE.Controllers.Toolbar.txtAccent_BorderBox":"Fórmula encuadrada (con marcador de posición)","SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"Fórmula encuadrada (ejemplo)","SSE.Controllers.Toolbar.txtAccent_Check":"Comprobar","SSE.Controllers.Toolbar.txtAccent_CurveBracketBot":"Llave subyacente","SSE.Controllers.Toolbar.txtAccent_CurveBracketTop":"Llave superpuesta","SSE.Controllers.Toolbar.txtAccent_Custom_1":"Vector A","SSE.Controllers.Toolbar.txtAccent_Custom_2":"ABC con barra superpuesta","SSE.Controllers.Toolbar.txtAccent_Custom_3":"x XOR y con barra superpuesta","SSE.Controllers.Toolbar.txtAccent_DDDot":"Tres puntos","SSE.Controllers.Toolbar.txtAccent_DDot":"Dos puntos","SSE.Controllers.Toolbar.txtAccent_Dot":"Punto","SSE.Controllers.Toolbar.txtAccent_DoubleBar":"Barra doble superpuesta","SSE.Controllers.Toolbar.txtAccent_Grave":"Acento grave","SSE.Controllers.Toolbar.txtAccent_GroupBot":"Carácter de agrupación inferior","SSE.Controllers.Toolbar.txtAccent_GroupTop":"Carácter de agrupación superior","SSE.Controllers.Toolbar.txtAccent_HarpoonL":"Arpón superior hacia la izquierda","SSE.Controllers.Toolbar.txtAccent_HarpoonR":"Arpón superior hacia la derecha","SSE.Controllers.Toolbar.txtAccent_Hat":"Circunflejo","SSE.Controllers.Toolbar.txtAccent_Smile":"Acento breve","SSE.Controllers.Toolbar.txtAccent_Tilde":"Virgulilla","SSE.Controllers.Toolbar.txtBracket_Angle":"Corchetes angulares","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"Corchetes angulares con separador","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"Corchetes angulares con dos separadores","SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"Corchete angular de cierre","SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"Corchete angular de apertura","SSE.Controllers.Toolbar.txtBracket_Curve":"Llaves","SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"Llaves con separador","SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"Llave de cierre","SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"Llave de apertura","SSE.Controllers.Toolbar.txtBracket_Custom_1":"Casos (dos condiciones)","SSE.Controllers.Toolbar.txtBracket_Custom_2":"Casos (tres condiciones)","SSE.Controllers.Toolbar.txtBracket_Custom_3":"Objeto de pila","SSE.Controllers.Toolbar.txtBracket_Custom_4":"Objeto acotado entre paréntesis","SSE.Controllers.Toolbar.txtBracket_Custom_5":"Ejemplo de casos","SSE.Controllers.Toolbar.txtBracket_Custom_6":"Coeficiente de binomio","SSE.Controllers.Toolbar.txtBracket_Custom_7":"Coeficiente binomial en corchetes angulares","SSE.Controllers.Toolbar.txtBracket_Line":"Plecas","SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"Pleca de cierre","SSE.Controllers.Toolbar.txtBracket_Line_OpenNone":"Pleca de apertura","SSE.Controllers.Toolbar.txtBracket_LineDouble":"Plecas dobles","SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"Pleca doble de cierre","SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"Pleca doble de apertura","SSE.Controllers.Toolbar.txtBracket_LowLim":"Corchete inferior","SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"Corchete inferior de cierre","SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"Corchete inferior de apertura","SSE.Controllers.Toolbar.txtBracket_Round":"Paréntesis","SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"Paréntesis con separador","SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"Paréntesis de cierre","SSE.Controllers.Toolbar.txtBracket_Round_OpenNone":"Paréntesis de apertura","SSE.Controllers.Toolbar.txtBracket_Square":"Corchetes","SSE.Controllers.Toolbar.txtBracket_Square_CloseClose":"Marcador de posición entre dos corchetes de cierre","SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"Corchetes invertidos","SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"Corchete de cierre","SSE.Controllers.Toolbar.txtBracket_Square_OpenNone":"Corchete de apertura","SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"Marcador de posición entre dos corchetes de apertura","SSE.Controllers.Toolbar.txtBracket_SquareDouble":"Corchetes dobles","SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"Corchete doble de cierre","SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"Corchete doble de apertura","SSE.Controllers.Toolbar.txtBracket_UppLim":"Corchete de techo","SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen":"Corchete de techo de cierre","SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone":"Corchete de techo de apertura","SSE.Controllers.Toolbar.txtDeleteCells":"Eliminar celdas","SSE.Controllers.Toolbar.txtExpand":"Expandir y ordenar","SSE.Controllers.Toolbar.txtExpandSort":"Los datos al lado del rango seleccionado no serán ordenados. ¿Quiere Usted expandir el rango seleccionado para incluir datos de las celdas adyacentes o continuar ordenación del rango seleccionado?","SSE.Controllers.Toolbar.txtFormula":"Formula","SSE.Controllers.Toolbar.txtFractionDiagonal":"Fracción sesgada","SSE.Controllers.Toolbar.txtFractionDifferential_1":"dx sobre dy","SSE.Controllers.Toolbar.txtFractionDifferential_2":"Delta mayúscula y sobre delta mayúscula x","SSE.Controllers.Toolbar.txtFractionDifferential_3":"y parcial sobre x parcial","SSE.Controllers.Toolbar.txtFractionDifferential_4":"Delta y sobre delta x","SSE.Controllers.Toolbar.txtFractionHorizontal":"Fracción lineal","SSE.Controllers.Toolbar.txtFractionPi_2":"Pi dividir a 2","SSE.Controllers.Toolbar.txtFractionSmall":"Fracción pequeña","SSE.Controllers.Toolbar.txtFractionVertical":"Fracción apilada","SSE.Controllers.Toolbar.txtFunction_1_Cos":"Función de coseno inversa","SSE.Controllers.Toolbar.txtFunction_1_Cosh":"Función de coseno inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Cot":"Función de cotangente inversa","SSE.Controllers.Toolbar.txtFunction_1_Coth":"Función de cotangente inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Csc":"Función de cosecante inversa","SSE.Controllers.Toolbar.txtFunction_1_Csch":"Función de cosecante inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Sec":"Función de secante inversa","SSE.Controllers.Toolbar.txtFunction_1_Sech":"Función de secante inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Sin":"Función de seno inversa","SSE.Controllers.Toolbar.txtFunction_1_Sinh":"Función de seno inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_1_Tan":"Función de tangente inversa","SSE.Controllers.Toolbar.txtFunction_1_Tanh":"Función de tangente inversa hiperbólica","SSE.Controllers.Toolbar.txtFunction_Cos":"Función de coseno","SSE.Controllers.Toolbar.txtFunction_Cosh":"Función de coseno hiperbólica","SSE.Controllers.Toolbar.txtFunction_Cot":"Función de cotangente","SSE.Controllers.Toolbar.txtFunction_Coth":"Función de cotangente hiperbólica","SSE.Controllers.Toolbar.txtFunction_Csc":"Función de cosecante","SSE.Controllers.Toolbar.txtFunction_Csch":"Función de cosecante hiperbólica","SSE.Controllers.Toolbar.txtFunction_Custom_1":"Seno zeta","SSE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","SSE.Controllers.Toolbar.txtFunction_Custom_3":"Fórmula de tangente","SSE.Controllers.Toolbar.txtFunction_Sec":"Función de secante","SSE.Controllers.Toolbar.txtFunction_Sech":"Función de secante hiperbólica","SSE.Controllers.Toolbar.txtFunction_Sin":"Función de seno","SSE.Controllers.Toolbar.txtFunction_Sinh":"Función de seno hiperbólica","SSE.Controllers.Toolbar.txtFunction_Tan":"Función de tangente","SSE.Controllers.Toolbar.txtFunction_Tanh":"Función de tangente hiperbólica","SSE.Controllers.Toolbar.txtGroupCell_Custom":"Personalizado","SSE.Controllers.Toolbar.txtGroupCell_DataAndModel":"Datos y modelo","SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral":"Correcto, incorrecto y neutro","SSE.Controllers.Toolbar.txtGroupCell_NoName":"Sin nombre","SSE.Controllers.Toolbar.txtGroupCell_NumberFormat":"Formato de número","SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles":"Estilos de celda temáticos","SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings":"Títulos y encabezados","SSE.Controllers.Toolbar.txtGroupTable_Custom":"Personalizado","SSE.Controllers.Toolbar.txtGroupTable_Dark":"Oscuro","SSE.Controllers.Toolbar.txtGroupTable_Light":"Claro","SSE.Controllers.Toolbar.txtGroupTable_Medium":"Medio","SSE.Controllers.Toolbar.txtImportWizard":"Text Import","SSE.Controllers.Toolbar.txtInsertCells":"Insertar celdas","SSE.Controllers.Toolbar.txtIntegral":"Integral","SSE.Controllers.Toolbar.txtIntegral_dtheta":"Diferencial zeta","SSE.Controllers.Toolbar.txtIntegral_dx":"Diferencial x","SSE.Controllers.Toolbar.txtIntegral_dy":"Diferencial y","SSE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral con límites acotados","SSE.Controllers.Toolbar.txtIntegralDouble":"Integral doble","SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Integral doble con límites acotados","SSE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Integral doble con límites","SSE.Controllers.Toolbar.txtIntegralOriented":"Integral de contorno","SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"Integral de contorno con límites acotados","SSE.Controllers.Toolbar.txtIntegralOrientedDouble":"Integral de superficie","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Integral de superficie con límites acotados","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"Integral de superficie con límites","SSE.Controllers.Toolbar.txtIntegralOrientedSubSup":"Integral de contorno con límites","SSE.Controllers.Toolbar.txtIntegralOrientedTriple":"Integral de volumen","SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"Integral de volumen con límites acotados","SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"Integral de volumen con límites","SSE.Controllers.Toolbar.txtIntegralSubSup":"Integral con límites","SSE.Controllers.Toolbar.txtIntegralTriple":"Integral triple","SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Integral triple con límites acotados","SSE.Controllers.Toolbar.txtIntegralTripleSubSup":"Integral triple con límites","SSE.Controllers.Toolbar.txtInvalidRange":"¡Error! El rango de las celdas no es válido","SSE.Controllers.Toolbar.txtKeepTextOnly":"Keep text only","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction":"Y lógico","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"Y lógico con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"Y lógico con límites","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"Y lógico con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"Y lógico con límites de subíndice/supraíndice","SSE.Controllers.Toolbar.txtLargeOperator_CoProd":"Co-producto","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Coproducto con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Coproducto con límites","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Coproducto con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Coproducto con límites de subíndice/supraíndice","SSE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Sumatoria sobre k de n sobre k","SSE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Sumatoria de i igual a cero a n","SSE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Ejemplo de suma con dos índices","SSE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Ejemplo del producto","SSE.Controllers.Toolbar.txtLargeOperator_Custom_5":"Ejemplo de unión","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction":"O lógico","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"O lógico con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"O lógico con límites","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"O lógico con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"O lógico con límites de subíndice/supraíndice","SSE.Controllers.Toolbar.txtLargeOperator_Intersection":"Intersección","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"Intersección con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"Intersección con límites","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"Intersección con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"Intersección con límites de subíndice/superíndice","SSE.Controllers.Toolbar.txtLargeOperator_Prod":"Producto","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Producto con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Producto con límites","SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Producto con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Producto con límites de subíndice/superíndice","SSE.Controllers.Toolbar.txtLargeOperator_Sum":"Suma","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Sumatoria con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Sumatoria con límites","SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Sumatoria con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Sumatoria con límites de subíndice/supraíndice","SSE.Controllers.Toolbar.txtLargeOperator_Union":"Unión","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"Unión con límite inferior","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"Unión con límites","SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"Unión con límite inferior en subíndice","SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"Unión con límites de subíndice/superíndice","SSE.Controllers.Toolbar.txtLimitLog_Custom_1":"Ejemplo de límite","SSE.Controllers.Toolbar.txtLimitLog_Custom_2":"Ejemplo de máximo","SSE.Controllers.Toolbar.txtLimitLog_Lim":"Límite","SSE.Controllers.Toolbar.txtLimitLog_Ln":"Logaritmo natural","SSE.Controllers.Toolbar.txtLimitLog_Log":"Logaritmo","SSE.Controllers.Toolbar.txtLimitLog_LogBase":"Logaritmo","SSE.Controllers.Toolbar.txtLimitLog_Max":"Máximo","SSE.Controllers.Toolbar.txtLimitLog_Min":"Mínimo","SSE.Controllers.Toolbar.txtLockSort":"Se encuentran datos junto a su selección, pero no tiene permisos suficientes para modificar esas celdas.
¿Desea continuar con la selección actual?","SSE.Controllers.Toolbar.txtMatrix_1_2":"Matriz vacía de 1x2","SSE.Controllers.Toolbar.txtMatrix_1_3":"Matriz vacía de 1x3","SSE.Controllers.Toolbar.txtMatrix_2_1":"Matriz vacía de 2x1","SSE.Controllers.Toolbar.txtMatrix_2_2":"Matriz vacía de 2x2","SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"Matriz de 2 por 2 vacía entre plecas dobles","SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"Determinante de 2 por 2 vacío","SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"Matriz de 2 por 2 vacía entre paréntesis","SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"Matriz de 2 por 2 vacía entre paréntesis","SSE.Controllers.Toolbar.txtMatrix_2_3":"Matriz vacía de 2x3","SSE.Controllers.Toolbar.txtMatrix_3_1":"Matriz vacía de 3x1","SSE.Controllers.Toolbar.txtMatrix_3_2":"Matriz vacía de 3x2","SSE.Controllers.Toolbar.txtMatrix_3_3":"Matriz vacía de 3x3","SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"Puntos en línea base","SSE.Controllers.Toolbar.txtMatrix_Dots_Center":"Puntos en línea media","SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"Puntos diagonales","SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"Puntos verticales","SSE.Controllers.Toolbar.txtMatrix_Flat_Round":"Matriz dispersa entre paréntesis","SSE.Controllers.Toolbar.txtMatrix_Flat_Square":"Matriz dispersa entre corchetes","SSE.Controllers.Toolbar.txtMatrix_Identity_2":"Matriz de identidad de 2x2 con ceros","SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"Matriz de identidad de 2x2 con celdas en blanco que no están en la diagonal","SSE.Controllers.Toolbar.txtMatrix_Identity_3":"Matriz de identidad de 3x3 con ceros","SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"Matriz de identidad de 3x3 con celdas en blanco que no están en la diagonal","SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"Flecha derecha-izquierda inferior","SSE.Controllers.Toolbar.txtOperator_ArrowD_Top":"Flecha derecha-izquierda superior","SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"Flecha inferior izquierda","SSE.Controllers.Toolbar.txtOperator_ArrowL_Top":"Flecha superior izquierda","SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"Flecha inferior derecha","SSE.Controllers.Toolbar.txtOperator_ArrowR_Top":"Flecha superior derecha","SSE.Controllers.Toolbar.txtOperator_ColonEquals":"Dos puntos igual","SSE.Controllers.Toolbar.txtOperator_Custom_1":"Produce","SSE.Controllers.Toolbar.txtOperator_Custom_2":"Produce con delta","SSE.Controllers.Toolbar.txtOperator_Definition":"Igual por definición","SSE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta igual a","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"Flecha doble inferior derecha e izquierda","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"Flecha doble superior derecha e izquierda","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"Flecha inferior izquierda","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"Flecha superior izquierda","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"Flecha inferior derecha","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"Flecha superior derecha","SSE.Controllers.Toolbar.txtOperator_EqualsEquals":"Igual igual","SSE.Controllers.Toolbar.txtOperator_MinusEquals":"Menos igual","SSE.Controllers.Toolbar.txtOperator_PlusEquals":"Más igual","SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"Unidad de medida","SSE.Controllers.Toolbar.txtOther":"Other","SSE.Controllers.Toolbar.txtPaste":"Paste","SSE.Controllers.Toolbar.txtPasteBorders":"Formula without borders","SSE.Controllers.Toolbar.txtPasteColWidths":"Formula + column width","SSE.Controllers.Toolbar.txtPasteDestFormat":"Destination formatting","SSE.Controllers.Toolbar.txtPasteFormat":"Paste only formatting","SSE.Controllers.Toolbar.txtPasteFormulaNumFormat":"Formula + number format","SSE.Controllers.Toolbar.txtPasteFormulas":"Paste only formula","SSE.Controllers.Toolbar.txtPasteKeepSourceFormat":"Formula + all formatting","SSE.Controllers.Toolbar.txtPasteLink":"Paste link","SSE.Controllers.Toolbar.txtPasteLinkPicture":"Linked picture","SSE.Controllers.Toolbar.txtPasteMerge":"Merge conditional formatting","SSE.Controllers.Toolbar.txtPasteNoOptions":"Paste (P)","SSE.Controllers.Toolbar.txtPastePicture":"Picture","SSE.Controllers.Toolbar.txtPasteSourceFormat":"Source formatting","SSE.Controllers.Toolbar.txtPasteTranspose":"Transpose","SSE.Controllers.Toolbar.txtPasteValFormat":"Value + all formatting","SSE.Controllers.Toolbar.txtPasteValNumFormat":"Value + number format","SSE.Controllers.Toolbar.txtPasteValues":"Paste only value","SSE.Controllers.Toolbar.txtRadicalCustom_1":"Lado derecho de la fórmula cuadrática","SSE.Controllers.Toolbar.txtRadicalCustom_2":"Raíz cuadrada de un cuadrado más b al cuadrado","SSE.Controllers.Toolbar.txtRadicalRoot_2":"Raíz cuadrada con índice","SSE.Controllers.Toolbar.txtRadicalRoot_3":"Raíz cúbica","SSE.Controllers.Toolbar.txtRadicalRoot_n":"Radical con índice","SSE.Controllers.Toolbar.txtRadicalSqrt":"Raíz cuadrada","SSE.Controllers.Toolbar.txtScriptCustom_1":"x subíndice y al cuadrado","SSE.Controllers.Toolbar.txtScriptCustom_2":"e elevado a menos i omega t","SSE.Controllers.Toolbar.txtScriptCustom_3":"x al cuadrado","SSE.Controllers.Toolbar.txtScriptCustom_4":"Y superíndice izquierdo n subíndice izquierdo uno","SSE.Controllers.Toolbar.txtScriptSub":"Subíndice","SSE.Controllers.Toolbar.txtScriptSubSup":"Subíndice-Superíndice","SSE.Controllers.Toolbar.txtScriptSubSupLeft":"Subíndice-superíndice izquierdo","SSE.Controllers.Toolbar.txtScriptSup":"Sobreíndice","SSE.Controllers.Toolbar.txtSorting":"Ordenación","SSE.Controllers.Toolbar.txtSortSelected":"Ordenar los objetos seleccionados","SSE.Controllers.Toolbar.txtSymbol_about":"Aproximadamente","SSE.Controllers.Toolbar.txtSymbol_additional":"Complemento","SSE.Controllers.Toolbar.txtSymbol_aleph":"Alef","SSE.Controllers.Toolbar.txtSymbol_alpha":"Alfa","SSE.Controllers.Toolbar.txtSymbol_approx":"Casi igual a","SSE.Controllers.Toolbar.txtSymbol_ast":"Operador asterisco","SSE.Controllers.Toolbar.txtSymbol_beta":"Beta","SSE.Controllers.Toolbar.txtSymbol_beth":"Bet","SSE.Controllers.Toolbar.txtSymbol_bullet":"Operador de viñeta","SSE.Controllers.Toolbar.txtSymbol_cap":"Intersección","SSE.Controllers.Toolbar.txtSymbol_cbrt":"Raíz cúbica","SSE.Controllers.Toolbar.txtSymbol_cdots":"Elipsis horizontal de línea media","SSE.Controllers.Toolbar.txtSymbol_celsius":"Grados Celsius","SSE.Controllers.Toolbar.txtSymbol_chi":"Chi","SSE.Controllers.Toolbar.txtSymbol_cong":"Aproximadamente igual a","SSE.Controllers.Toolbar.txtSymbol_cup":"Unión","SSE.Controllers.Toolbar.txtSymbol_ddots":"Elipsis en diagonal de derecha a izquierda","SSE.Controllers.Toolbar.txtSymbol_degree":"Grados","SSE.Controllers.Toolbar.txtSymbol_delta":"Delta","SSE.Controllers.Toolbar.txtSymbol_div":"Signe de division","SSE.Controllers.Toolbar.txtSymbol_downarrow":"Flecha hacia abajo","SSE.Controllers.Toolbar.txtSymbol_emptyset":"Conjunto vacío","SSE.Controllers.Toolbar.txtSymbol_epsilon":"Épsilon","SSE.Controllers.Toolbar.txtSymbol_equals":"Igual","SSE.Controllers.Toolbar.txtSymbol_equiv":"Idéntico a","SSE.Controllers.Toolbar.txtSymbol_eta":"Eta","SSE.Controllers.Toolbar.txtSymbol_exists":"Existe","SSE.Controllers.Toolbar.txtSymbol_factorial":"Factorial","SSE.Controllers.Toolbar.txtSymbol_fahrenheit":"Grados Fahrenheit","SSE.Controllers.Toolbar.txtSymbol_forall":"Para todos","SSE.Controllers.Toolbar.txtSymbol_gamma":"Gamma","SSE.Controllers.Toolbar.txtSymbol_geq":"Mayor o igual a","SSE.Controllers.Toolbar.txtSymbol_gg":"Mucho mayor que","SSE.Controllers.Toolbar.txtSymbol_greater":"Mayor que","SSE.Controllers.Toolbar.txtSymbol_in":"Elemento de","SSE.Controllers.Toolbar.txtSymbol_inc":"Incremento","SSE.Controllers.Toolbar.txtSymbol_infinity":"Infinito","SSE.Controllers.Toolbar.txtSymbol_iota":"Iota","SSE.Controllers.Toolbar.txtSymbol_kappa":"Kappa","SSE.Controllers.Toolbar.txtSymbol_lambda":"Lambda","SSE.Controllers.Toolbar.txtSymbol_leftarrow":"Flecha izquierda","SSE.Controllers.Toolbar.txtSymbol_leftrightarrow":"Flecha izquierda-derecha","SSE.Controllers.Toolbar.txtSymbol_leq":"Menor o igual a","SSE.Controllers.Toolbar.txtSymbol_less":"Menor que","SSE.Controllers.Toolbar.txtSymbol_ll":"Mucho menor que","SSE.Controllers.Toolbar.txtSymbol_minus":"Menos","SSE.Controllers.Toolbar.txtSymbol_mp":"Menos más","SSE.Controllers.Toolbar.txtSymbol_mu":"Mi","SSE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","SSE.Controllers.Toolbar.txtSymbol_neq":"No igual a","SSE.Controllers.Toolbar.txtSymbol_ni":"Contiene como miembro","SSE.Controllers.Toolbar.txtSymbol_not":"Signo de negación","SSE.Controllers.Toolbar.txtSymbol_notexists":"No existe","SSE.Controllers.Toolbar.txtSymbol_nu":"Ni","SSE.Controllers.Toolbar.txtSymbol_o":"Ómicron","SSE.Controllers.Toolbar.txtSymbol_omega":"Omega","SSE.Controllers.Toolbar.txtSymbol_partial":"Derivada parcial","SSE.Controllers.Toolbar.txtSymbol_percent":"Porcentaje","SSE.Controllers.Toolbar.txtSymbol_phi":"Fi","SSE.Controllers.Toolbar.txtSymbol_pi":"Pi","SSE.Controllers.Toolbar.txtSymbol_plus":"Más","SSE.Controllers.Toolbar.txtSymbol_pm":"Más menos","SSE.Controllers.Toolbar.txtSymbol_propto":"Proporcional a","SSE.Controllers.Toolbar.txtSymbol_psi":"Psi","SSE.Controllers.Toolbar.txtSymbol_qdrt":"Raíz cuarta","SSE.Controllers.Toolbar.txtSymbol_qed":"Fin de la demostración","SSE.Controllers.Toolbar.txtSymbol_rddots":"Elipsis en diagonal de izquierda a derecha","SSE.Controllers.Toolbar.txtSymbol_rho":"Ro","SSE.Controllers.Toolbar.txtSymbol_rightarrow":"Flecha derecha","SSE.Controllers.Toolbar.txtSymbol_sigma":"Sigma","SSE.Controllers.Toolbar.txtSymbol_sqrt":"Signo de radical","SSE.Controllers.Toolbar.txtSymbol_tau":"Tau","SSE.Controllers.Toolbar.txtSymbol_therefore":"Por lo tanto ","SSE.Controllers.Toolbar.txtSymbol_theta":"Zeta","SSE.Controllers.Toolbar.txtSymbol_times":"Signo de multiplicación","SSE.Controllers.Toolbar.txtSymbol_uparrow":"Flecha hacia arriba","SSE.Controllers.Toolbar.txtSymbol_upsilon":"Ípsilon","SSE.Controllers.Toolbar.txtSymbol_varepsilon":"Épsilon (variante)","SSE.Controllers.Toolbar.txtSymbol_varphi":"Variante fi","SSE.Controllers.Toolbar.txtSymbol_varpi":"Variante pi","SSE.Controllers.Toolbar.txtSymbol_varrho":"Variante ro","SSE.Controllers.Toolbar.txtSymbol_varsigma":"Variante sigma","SSE.Controllers.Toolbar.txtSymbol_vartheta":"Variante zeta","SSE.Controllers.Toolbar.txtSymbol_vdots":"Elipsis vertical","SSE.Controllers.Toolbar.txtSymbol_xsi":"Csi","SSE.Controllers.Toolbar.txtSymbol_zeta":"Dseda","SSE.Controllers.Toolbar.txtTable_TableStyleDark":"Estilo de tabla oscuro","SSE.Controllers.Toolbar.txtTable_TableStyleLight":"Estilo de tabla claro","SSE.Controllers.Toolbar.txtTable_TableStyleMedium":"Estilo de tabla medio","SSE.Controllers.Toolbar.txtUseTextImport":"Use text import","SSE.Controllers.Toolbar.txtValue":"Value","SSE.Controllers.Toolbar.warnLongOperation":"La operación que está a punto de realizar podría tomar mucho tiempo para completar.
¿Está seguro que desea continuar?","SSE.Controllers.Toolbar.warnMergeLostData":"En la celda unida permanecerán solo los datos de la celda de la esquina superior izquierda.
Está seguro de que quiere continuar?","SSE.Controllers.Toolbar.warnNoRecommended":"Para crear un gráfico, seleccione las celdas que contienen los datos que desea utilizar.
Si tiene nombres para las filas y columnas y desea utilizarlos como etiquetas, inclúyalos en su selección.","SSE.Controllers.Viewport.textFreezePanes":"Inmovilizar paneles","SSE.Controllers.Viewport.textFreezePanesShadow":"Mostrar la sombra de paneles congelados","SSE.Controllers.Viewport.textHideFBar":"Ocultar barra de fórmulas","SSE.Controllers.Viewport.textHideGridlines":"Ocultar cuadrícula","SSE.Controllers.Viewport.textHideHeadings":"Ocultar títulos","SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator":"Separador decimal","SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator":"Separador de miles","SSE.Views.AdvancedSeparatorDialog.textLabel":"Ajustes utilizados para reconocer los datos numéricos","SSE.Views.AdvancedSeparatorDialog.textQualifier":"Calificador de texto","SSE.Views.AdvancedSeparatorDialog.textTitle":"Ajustes avanzados","SSE.Views.AdvancedSeparatorDialog.txtNone":"(ninguno)","SSE.Views.AutoFilterDialog.btnCustomFilter":"Filtro personalizado","SSE.Views.AutoFilterDialog.textAddSelection":"Añadir la selección actual al filtro","SSE.Views.AutoFilterDialog.textEmptyItem":"{Blanks}","SSE.Views.AutoFilterDialog.textSelectAll":"Seleccionar todo","SSE.Views.AutoFilterDialog.textSelectAllResults":"Seleccionar todos los resultados de la búsqueda","SSE.Views.AutoFilterDialog.textWarning":"Aviso","SSE.Views.AutoFilterDialog.txtAboveAve":"Sobre la media","SSE.Views.AutoFilterDialog.txtAfter":"Después...","SSE.Views.AutoFilterDialog.txtAllDatesInThePeriod":"Todas las fechas del período","SSE.Views.AutoFilterDialog.txtApril":"abril","SSE.Views.AutoFilterDialog.txtAugust":"agosto","SSE.Views.AutoFilterDialog.txtBefore":"Antes...","SSE.Views.AutoFilterDialog.txtBegins":"Empieza con...","SSE.Views.AutoFilterDialog.txtBelowAve":"Por debajo de la media","SSE.Views.AutoFilterDialog.txtBetween":"Entre...","SSE.Views.AutoFilterDialog.txtClear":"Eliminar","SSE.Views.AutoFilterDialog.txtContains":"Contiene...","SSE.Views.AutoFilterDialog.txtDateFilter":"Filtro de fechas","SSE.Views.AutoFilterDialog.txtDecember":"diciembre","SSE.Views.AutoFilterDialog.txtEmpty":"Introducir filtro para celda","SSE.Views.AutoFilterDialog.txtEnds":"Termina en...","SSE.Views.AutoFilterDialog.txtEquals":"Igual...","SSE.Views.AutoFilterDialog.txtFebruary":"febrero","SSE.Views.AutoFilterDialog.txtFilterCellColor":"Filtrar por color de celdas","SSE.Views.AutoFilterDialog.txtFilterFontColor":"Filtrar por color de la letra","SSE.Views.AutoFilterDialog.txtGreater":"Mayor qué...","SSE.Views.AutoFilterDialog.txtGreaterEquals":"Mayor qué o igual a...","SSE.Views.AutoFilterDialog.txtJanuary":"enero","SSE.Views.AutoFilterDialog.txtJuly":"julio","SSE.Views.AutoFilterDialog.txtJune":"junio","SSE.Views.AutoFilterDialog.txtLabelFilter":"Filtrar de etiqueta","SSE.Views.AutoFilterDialog.txtLastMonth":"Mes pasado","SSE.Views.AutoFilterDialog.txtLastQuarter":"Trimestre pasado","SSE.Views.AutoFilterDialog.txtLastWeek":"Semana pasada","SSE.Views.AutoFilterDialog.txtLastYear":"Año pasado","SSE.Views.AutoFilterDialog.txtLess":"Menos que...","SSE.Views.AutoFilterDialog.txtLessEquals":"Menos que o igual a...","SSE.Views.AutoFilterDialog.txtMarch":"marzo","SSE.Views.AutoFilterDialog.txtMay":"mayo","SSE.Views.AutoFilterDialog.txtNextMonth":"Mes siguiente","SSE.Views.AutoFilterDialog.txtNextQuarter":"Trimestre siguiente","SSE.Views.AutoFilterDialog.txtNextWeek":"Semana siguiente","SSE.Views.AutoFilterDialog.txtNextYear":"Año siguiente","SSE.Views.AutoFilterDialog.txtNotBegins":"No empieza con...","SSE.Views.AutoFilterDialog.txtNotBetween":"No está entre...","SSE.Views.AutoFilterDialog.txtNotContains":"No contiene...","SSE.Views.AutoFilterDialog.txtNotEnds":"No termina en...","SSE.Views.AutoFilterDialog.txtNotEquals":"No es igual...","SSE.Views.AutoFilterDialog.txtNovember":"noviembre","SSE.Views.AutoFilterDialog.txtNumFilter":"Número de filtro","SSE.Views.AutoFilterDialog.txtOctober":"octubre","SSE.Views.AutoFilterDialog.txtQuarter1":"Trimestre 1","SSE.Views.AutoFilterDialog.txtQuarter2":"Trimestre 2","SSE.Views.AutoFilterDialog.txtQuarter3":"Trimestre 3","SSE.Views.AutoFilterDialog.txtQuarter4":"Trimestre 4","SSE.Views.AutoFilterDialog.txtReapply":"Reaplicar","SSE.Views.AutoFilterDialog.txtSeptember":"septiembre","SSE.Views.AutoFilterDialog.txtSortCellColor":"Ordenar por el color de celdas","SSE.Views.AutoFilterDialog.txtSortFontColor":"Ordenar por color de la letra","SSE.Views.AutoFilterDialog.txtSortHigh2Low":"Ordenar de mayor a menor","SSE.Views.AutoFilterDialog.txtSortLow2High":"Ordenar de menor a mayor","SSE.Views.AutoFilterDialog.txtSortOption":"Más opciones de ordenación...","SSE.Views.AutoFilterDialog.txtTextFilter":"Filtro de Texto","SSE.Views.AutoFilterDialog.txtThisMonth":"Este mes","SSE.Views.AutoFilterDialog.txtThisQuarter":"Este trimestre","SSE.Views.AutoFilterDialog.txtThisWeek":"Esta semana","SSE.Views.AutoFilterDialog.txtThisYear":"Este año","SSE.Views.AutoFilterDialog.txtTitle":"Filtro","SSE.Views.AutoFilterDialog.txtToday":"Hoy","SSE.Views.AutoFilterDialog.txtTomorrow":"Mañana","SSE.Views.AutoFilterDialog.txtTop10":"10 principales","SSE.Views.AutoFilterDialog.txtValueFilter":"Filtro de valor","SSE.Views.AutoFilterDialog.txtYearToDate":"En lo que va del año","SSE.Views.AutoFilterDialog.txtYesterday":"Ayer","SSE.Views.AutoFilterDialog.warnFilterError":"Necesita la menos un campo de en el área «Valores» para aplicar el filtro de valor.","SSE.Views.AutoFilterDialog.warnNoSelected":"Usted debe elegir al menos un valor","SSE.Views.CellEditor.textManager":"Administrador de nombres","SSE.Views.CellEditor.tipFormula":"Insertar función","SSE.Views.CellRangeDialog.errorMaxRows":"¡ERROR! El número máximo de series de datos por gráfico es 225","SSE.Views.CellRangeDialog.errorStockChart":"Orden de las filas incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja de la forma siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Views.CellRangeDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.CellRangeDialog.txtInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.CellRangeDialog.txtTitle":"Seleccionar rango de datos","SSE.Views.CellSettings.strShrink":"Reducir para ajustar","SSE.Views.CellSettings.strWrap":"Ajustar texto","SSE.Views.CellSettings.textAngle":"Ángulo","SSE.Views.CellSettings.textBackColor":"Color del fondo","SSE.Views.CellSettings.textBackground":"Color del fondo","SSE.Views.CellSettings.textBorderColor":"Color","SSE.Views.CellSettings.textBorders":"Estilo de bordes","SSE.Views.CellSettings.textClearRule":"Eliminar reglas","SSE.Views.CellSettings.textColor":"Relleno de color","SSE.Views.CellSettings.textColorScales":"Escalas de color","SSE.Views.CellSettings.textCondFormat":"Formato condicional","SSE.Views.CellSettings.textControl":"Control de texto","SSE.Views.CellSettings.textDataBars":"Barras de datos","SSE.Views.CellSettings.textDirection":"Dirección","SSE.Views.CellSettings.textFill":"Relleno","SSE.Views.CellSettings.textForeground":"Color del primer plano","SSE.Views.CellSettings.textGradient":"Puntos de gradiente","SSE.Views.CellSettings.textGradientColor":"Color","SSE.Views.CellSettings.textGradientFill":"Relleno degradado","SSE.Views.CellSettings.textIndent":"Sangría","SSE.Views.CellSettings.textItems":"Elementos","SSE.Views.CellSettings.textLinear":"Lineal","SSE.Views.CellSettings.textManageRule":"Gestionar reglas","SSE.Views.CellSettings.textNewRule":"Nueva regla","SSE.Views.CellSettings.textNoFill":"Sin relleno","SSE.Views.CellSettings.textOrientation":"Orientación del texto","SSE.Views.CellSettings.textPattern":"Patrón","SSE.Views.CellSettings.textPatternFill":"Patrón","SSE.Views.CellSettings.textPosition":"Posición","SSE.Views.CellSettings.textRadial":"Radial","SSE.Views.CellSettings.textSelectBorders":"Seleccione los bordes que desea cambiar aplicando el estilo seleccionado arriba","SSE.Views.CellSettings.textSelection":"Desde la selección actual","SSE.Views.CellSettings.textThisPivot":"Desde esta tabla pivote","SSE.Views.CellSettings.textThisSheet":"Desde esta hoja","SSE.Views.CellSettings.textThisTable":"Desde esta tabla","SSE.Views.CellSettings.tipAddGradientPoint":"Añadir punto de degradado","SSE.Views.CellSettings.tipAll":"Establecer borde exterior y todas las líneas interiores ","SSE.Views.CellSettings.tipBottom":"Establecer solo borde exterior inferior","SSE.Views.CellSettings.tipDiagD":"Establecer borde diagonal abajo","SSE.Views.CellSettings.tipDiagU":"Establecer borde diagonal hacia arriba","SSE.Views.CellSettings.tipInner":"Establecer solo líneas interiores","SSE.Views.CellSettings.tipInnerHor":"Establecer solo líneas horizontales interiores","SSE.Views.CellSettings.tipInnerVert":"Establecer solo líneas verticales interiores","SSE.Views.CellSettings.tipLeft":"Establecer solo borde exterior izquierdo","SSE.Views.CellSettings.tipNone":"No establecer bordes","SSE.Views.CellSettings.tipOuter":"Establecer solo borde exterior","SSE.Views.CellSettings.tipRemoveGradientPoint":"Eliminar gradiente de punto","SSE.Views.CellSettings.tipRight":"Establecer solo borde exterior derecho","SSE.Views.CellSettings.tipTop":"Establecer solo borde exterior superior","SSE.Views.ChartDataDialog.errorInFormula":"Hay un error en la fórmula introducida.","SSE.Views.ChartDataDialog.errorInvalidReference":"La referencia no es válida. Debe hacer referencia a una hoja abierta.","SSE.Views.ChartDataDialog.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Views.ChartDataDialog.errorMaxRows":"El número máximo de serie de datos por tabla es 255.","SSE.Views.ChartDataDialog.errorNoSingleRowCol":"La referencia no es válida. Las referencias a títulos, valores, tamaños, o etiquetas de datos deben ser una sola celda, fila o columna.","SSE.Views.ChartDataDialog.errorNoValues":"Para crear un gráfico, las series deben contener al menos un valor.","SSE.Views.ChartDataDialog.errorStockChart":"El orden de las filas es incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja en el siguiente orden: precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Views.ChartDataDialog.textAdd":"Añadir","SSE.Views.ChartDataDialog.textCategory":"Etiquetas del eje horizontal (categoría)","SSE.Views.ChartDataDialog.textData":"Rango de datos del gráfico","SSE.Views.ChartDataDialog.textDelete":"Eliminar","SSE.Views.ChartDataDialog.textDown":"Abajo","SSE.Views.ChartDataDialog.textEdit":"Editar","SSE.Views.ChartDataDialog.textInvalidRange":"Rango de celdas no válido","SSE.Views.ChartDataDialog.textSelectData":"Seleccionar datos","SSE.Views.ChartDataDialog.textSeries":"Entradas de leyenda (series)","SSE.Views.ChartDataDialog.textSwitch":"Cambiar fila/columna","SSE.Views.ChartDataDialog.textTitle":"Datos del gráfico","SSE.Views.ChartDataDialog.textUp":"Arriba","SSE.Views.ChartDataRangeDialog.errorInFormula":"Hay un error en la fórmula introducida.","SSE.Views.ChartDataRangeDialog.errorInvalidReference":"La referencia no es válida. Debe hacer referencia a una hoja abierta.","SSE.Views.ChartDataRangeDialog.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Views.ChartDataRangeDialog.errorMaxRows":"El número máximo de serie de datos por tabla es 255.","SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol":"La referencia no es válida. Las referencias a títulos, valores, tamaños, o etiquetas de datos deben ser una sola celda, fila o columna.","SSE.Views.ChartDataRangeDialog.errorNoValues":"Para crear un gráfico, las series deben contener al menos un valor.","SSE.Views.ChartDataRangeDialog.errorStockChart":"El orden de las filas es incorrecto. Para crear un gráfico de cotizaciones, introduzca los datos en la hoja en el orden siguiente: precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Views.ChartDataRangeDialog.textInvalidRange":"Rango de celdas inválido","SSE.Views.ChartDataRangeDialog.textSelectData":"Seleccionar datos","SSE.Views.ChartDataRangeDialog.txtAxisLabel":"Rango de etiqueta de eje","SSE.Views.ChartDataRangeDialog.txtChoose":"Elegir rango","SSE.Views.ChartDataRangeDialog.txtSeriesName":"Nombre de serie","SSE.Views.ChartDataRangeDialog.txtTitleCategory":"Etiquetas de eje","SSE.Views.ChartDataRangeDialog.txtTitleSeries":"Editar series","SSE.Views.ChartDataRangeDialog.txtValues":"Valores","SSE.Views.ChartDataRangeDialog.txtXValues":"Valores X","SSE.Views.ChartDataRangeDialog.txtYValues":"Valores Y","SSE.Views.ChartSettings.errorMaxRows":"El número máximo de series de datos por gráfico es de 255.","SSE.Views.ChartSettings.strLineWeight":"Grosor de línea","SSE.Views.ChartSettings.strSparkColor":"Color","SSE.Views.ChartSettings.strTemplate":"Plantilla","SSE.Views.ChartSettings.text3dDepth":"Profundidad (% de la base)","SSE.Views.ChartSettings.text3dHeight":"Altura (% de la base)","SSE.Views.ChartSettings.text3dRotation":"Rotación 3D","SSE.Views.ChartSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.ChartSettings.textAutoscale":"Escalado automático","SSE.Views.ChartSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","SSE.Views.ChartSettings.textChangeType":"Cambiar tipo","SSE.Views.ChartSettings.textChartType":"Cambiar tipo de gráfico","SSE.Views.ChartSettings.textDefault":"Rotación por defecto","SSE.Views.ChartSettings.textDown":"Abajo","SSE.Views.ChartSettings.textEditData":"Editar datos y ubicación","SSE.Views.ChartSettings.textFirstPoint":"Primer punto","SSE.Views.ChartSettings.textHeight":"Altura","SSE.Views.ChartSettings.textHighPoint":"Punto alto","SSE.Views.ChartSettings.textKeepRatio":"Proporciones constantes","SSE.Views.ChartSettings.textLastPoint":"Último punto","SSE.Views.ChartSettings.textLeft":"Izquierda","SSE.Views.ChartSettings.textLowPoint":"Punto bajo","SSE.Views.ChartSettings.textMarkers":"Marcadores","SSE.Views.ChartSettings.textNarrow":"Campo de visión estrecho","SSE.Views.ChartSettings.textNegativePoint":"Punto negativo","SSE.Views.ChartSettings.textPerspective":"Perspectiva","SSE.Views.ChartSettings.textRanges":"Rango de datos","SSE.Views.ChartSettings.textRight":"Derecha","SSE.Views.ChartSettings.textRightAngle":"Ejes en ángulo recto","SSE.Views.ChartSettings.textSelectData":"Seleccionar datos","SSE.Views.ChartSettings.textShow":"Mostrar","SSE.Views.ChartSettings.textSize":"Tamaño","SSE.Views.ChartSettings.textStyle":"Estilo","SSE.Views.ChartSettings.textSwitch":"Cambiar Fila/Columna","SSE.Views.ChartSettings.textType":"Tipo","SSE.Views.ChartSettings.textUp":"Arriba","SSE.Views.ChartSettings.textWiden":"Campo de visión ancho","SSE.Views.ChartSettings.textWidth":"Ancho","SSE.Views.ChartSettings.textX":"Rotación X","SSE.Views.ChartSettings.textY":"Rotación Y","SSE.Views.ChartSettingsDlg.errorMaxPoints":"¡ERROR! El número máximo de puntos en serie por gráfico es de 4096","SSE.Views.ChartSettingsDlg.errorMaxRows":"¡ERROR! El número máximo de series de datos por gráfico es 225","SSE.Views.ChartSettingsDlg.errorStockChart":"Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:
precio de apertura, precio máximo, precio mínimo, precio de cierre.","SSE.Views.ChartSettingsDlg.textAbsolute":"No mover ni cambiar tamaño con celdas","SSE.Views.ChartSettingsDlg.textAlt":"Texto alternativo","SSE.Views.ChartSettingsDlg.textAltDescription":"Descripción","SSE.Views.ChartSettingsDlg.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.ChartSettingsDlg.textAltTitle":"Título","SSE.Views.ChartSettingsDlg.textAuto":"Auto","SSE.Views.ChartSettingsDlg.textAutoEach":"Automático para cada","SSE.Views.ChartSettingsDlg.textAxisCrosses":"Intersección con el eje","SSE.Views.ChartSettingsDlg.textAxisOptions":"Parámetros de eje","SSE.Views.ChartSettingsDlg.textAxisPos":"Posición de eje","SSE.Views.ChartSettingsDlg.textAxisSettings":"Ajustes de eje","SSE.Views.ChartSettingsDlg.textAxisTitle":"Título","SSE.Views.ChartSettingsDlg.textBase":"Base","SSE.Views.ChartSettingsDlg.textBetweenTickMarks":"Entre marcas de graduación","SSE.Views.ChartSettingsDlg.textBillions":"Millardos","SSE.Views.ChartSettingsDlg.textBottom":"Abajo ","SSE.Views.ChartSettingsDlg.textCategoryName":"Nombre de categoría","SSE.Views.ChartSettingsDlg.textCenter":"Al centro","SSE.Views.ChartSettingsDlg.textChartElementsLegend":"Elementos de gráfico y
leyenda de gráfico","SSE.Views.ChartSettingsDlg.textChartTitle":"Título del gráfico","SSE.Views.ChartSettingsDlg.textCross":"Intersección","SSE.Views.ChartSettingsDlg.textCustom":"Personalizado","SSE.Views.ChartSettingsDlg.textDataColumns":"en columnas","SSE.Views.ChartSettingsDlg.textDataLabels":"Etiquetas de datos","SSE.Views.ChartSettingsDlg.textDataRange":"Rango de datos","SSE.Views.ChartSettingsDlg.textDataRows":"en filas","SSE.Views.ChartSettingsDlg.textDataSeries":"Serie de datos","SSE.Views.ChartSettingsDlg.textDisplayLegend":"Mostrar leyenda","SSE.Views.ChartSettingsDlg.textEmptyCells":"Celdas ocultas y vacías","SSE.Views.ChartSettingsDlg.textEmptyLine":"Conectar puntos de datos con líneas","SSE.Views.ChartSettingsDlg.textFit":"Ajustar al ancho","SSE.Views.ChartSettingsDlg.textFixed":"Corregido","SSE.Views.ChartSettingsDlg.textFormat":"Formato de etiqueta","SSE.Views.ChartSettingsDlg.textGaps":"Espacios","SSE.Views.ChartSettingsDlg.textGridLines":"Líneas de cuadrícula","SSE.Views.ChartSettingsDlg.textGroup":"Agrupar minigráficos","SSE.Views.ChartSettingsDlg.textHide":"Ocultar","SSE.Views.ChartSettingsDlg.textHideAxis":"Ocultar eje","SSE.Views.ChartSettingsDlg.textHigh":"Alto","SSE.Views.ChartSettingsDlg.textHorAxis":"Eje horizontal","SSE.Views.ChartSettingsDlg.textHorAxisSec":"Eje horizontal secundario","SSE.Views.ChartSettingsDlg.textHorGrid":"Líneas de cuadrícula horizontales","SSE.Views.ChartSettingsDlg.textHorizontal":"Horizontal","SSE.Views.ChartSettingsDlg.textHorTitle":"Título de eje horizontal","SSE.Views.ChartSettingsDlg.textHundredMil":"100 000 000","SSE.Views.ChartSettingsDlg.textHundreds":"Cientos","SSE.Views.ChartSettingsDlg.textHundredThousands":"100 000","SSE.Views.ChartSettingsDlg.textIn":"En","SSE.Views.ChartSettingsDlg.textInnerBottom":"Abajo en el interior","SSE.Views.ChartSettingsDlg.textInnerTop":"Arriba en el interior","SSE.Views.ChartSettingsDlg.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.ChartSettingsDlg.textLabelDist":"Distancia entre eje y etiqueta","SSE.Views.ChartSettingsDlg.textLabelInterval":"Intervalo entre etiquetas","SSE.Views.ChartSettingsDlg.textLabelOptions":"Parámetros de etiqueta","SSE.Views.ChartSettingsDlg.textLabelPos":"Posición de etiqueta","SSE.Views.ChartSettingsDlg.textLayout":"Diseño","SSE.Views.ChartSettingsDlg.textLeft":"A la izquierda","SSE.Views.ChartSettingsDlg.textLeftOverlay":"Superposición a la izquierda","SSE.Views.ChartSettingsDlg.textLegendBottom":"Inferior","SSE.Views.ChartSettingsDlg.textLegendLeft":"Izquierdo","SSE.Views.ChartSettingsDlg.textLegendPos":"Leyenda","SSE.Views.ChartSettingsDlg.textLegendRight":"Derecho","SSE.Views.ChartSettingsDlg.textLegendTop":"Superior","SSE.Views.ChartSettingsDlg.textLines":"Líneas","SSE.Views.ChartSettingsDlg.textLocationRange":"Rango de ubicación","SSE.Views.ChartSettingsDlg.textLogScale":"Escala logarítmica","SSE.Views.ChartSettingsDlg.textLow":"Bajo","SSE.Views.ChartSettingsDlg.textMajor":"Principal","SSE.Views.ChartSettingsDlg.textMajorMinor":"Principal y menor","SSE.Views.ChartSettingsDlg.textMajorType":"Tipo principal","SSE.Views.ChartSettingsDlg.textManual":"Manualmente","SSE.Views.ChartSettingsDlg.textMarkers":"Marcas","SSE.Views.ChartSettingsDlg.textMarksInterval":"Intervalo entre marcas","SSE.Views.ChartSettingsDlg.textMaxValue":"Valor máximo","SSE.Views.ChartSettingsDlg.textMillions":"Millones","SSE.Views.ChartSettingsDlg.textMinor":"Menor","SSE.Views.ChartSettingsDlg.textMinorType":"Tipo menor","SSE.Views.ChartSettingsDlg.textMinValue":"Valor mínimo","SSE.Views.ChartSettingsDlg.textNextToAxis":"Al lado de eje","SSE.Views.ChartSettingsDlg.textNone":"Ninguno","SSE.Views.ChartSettingsDlg.textNoOverlay":"Sin superposición","SSE.Views.ChartSettingsDlg.textOneCell":"Mover sin cambiar tamaño con celdas","SSE.Views.ChartSettingsDlg.textOnTickMarks":"Marcas de graduación","SSE.Views.ChartSettingsDlg.textOut":"Fuera","SSE.Views.ChartSettingsDlg.textOuterTop":"Arriba en el exterior","SSE.Views.ChartSettingsDlg.textOverlay":"Superposición","SSE.Views.ChartSettingsDlg.textReverse":"Valores en orden inverso","SSE.Views.ChartSettingsDlg.textReverseOrder":"Orden inverso","SSE.Views.ChartSettingsDlg.textRight":"Derecho","SSE.Views.ChartSettingsDlg.textRightOverlay":"Superposición a la derecha","SSE.Views.ChartSettingsDlg.textRotated":"Girado","SSE.Views.ChartSettingsDlg.textSameAll":"Lo mismo para todo","SSE.Views.ChartSettingsDlg.textSelectData":"Seleccionar datos","SSE.Views.ChartSettingsDlg.textSeparator":"Separador de etiquetas de datos","SSE.Views.ChartSettingsDlg.textSeriesName":"Nombre de serie","SSE.Views.ChartSettingsDlg.textShow":"Mostrar","SSE.Views.ChartSettingsDlg.textShowAxis":"Mostrar eje","SSE.Views.ChartSettingsDlg.textShowBorders":"Mostrar bordes","SSE.Views.ChartSettingsDlg.textShowData":"Mostrar datos en filas y columnas ocultas","SSE.Views.ChartSettingsDlg.textShowEmptyCells":"Mostrar celdas vacías como","SSE.Views.ChartSettingsDlg.textShowEquation":"Mostrar ecuación en gráfico","SSE.Views.ChartSettingsDlg.textShowGrid":"Cuadrícula","SSE.Views.ChartSettingsDlg.textShowSparkAxis":"Mostrar eje","SSE.Views.ChartSettingsDlg.textShowValues":"Mostrar los valores del gráfico","SSE.Views.ChartSettingsDlg.textSingle":"Minigráfico único","SSE.Views.ChartSettingsDlg.textSmooth":"Suave","SSE.Views.ChartSettingsDlg.textSnap":"Ajustar a la celda","SSE.Views.ChartSettingsDlg.textSparkRanges":"Rangos del minigráfico","SSE.Views.ChartSettingsDlg.textStraight":"Recto","SSE.Views.ChartSettingsDlg.textStyle":"Estilo","SSE.Views.ChartSettingsDlg.textTenMillions":"10 000 000","SSE.Views.ChartSettingsDlg.textTenThousands":"10 000","SSE.Views.ChartSettingsDlg.textThousands":"Miles","SSE.Views.ChartSettingsDlg.textTickOptions":"Opciones de marcadores","SSE.Views.ChartSettingsDlg.textTitle":"Gráfico - Ajustes avanzados","SSE.Views.ChartSettingsDlg.textTitleSparkline":"Minigráfico - Ajustes avanzados","SSE.Views.ChartSettingsDlg.textTop":"Superior","SSE.Views.ChartSettingsDlg.textTrendlineOptions":"Opciones de línea de tendencia","SSE.Views.ChartSettingsDlg.textTrillions":"Billones","SSE.Views.ChartSettingsDlg.textTwoCell":"Mover y cambiar tamaño con celdas","SSE.Views.ChartSettingsDlg.textType":"Tipo","SSE.Views.ChartSettingsDlg.textTypeData":"Tipo y datos","SSE.Views.ChartSettingsDlg.textTypeStyle":"Tipo de gráfico, estilo y
rango de datos","SSE.Views.ChartSettingsDlg.textUnits":"Unidades de visualización","SSE.Views.ChartSettingsDlg.textValue":"Valor","SSE.Views.ChartSettingsDlg.textVertAxis":"Eje vertical","SSE.Views.ChartSettingsDlg.textVertAxisSec":"Eje vertical secundario","SSE.Views.ChartSettingsDlg.textVertGrid":"Líneas de cuadrícula verticales","SSE.Views.ChartSettingsDlg.textVertTitle":"Título de eje vertical","SSE.Views.ChartSettingsDlg.textXAxisTitle":"Título del eje X","SSE.Views.ChartSettingsDlg.textYAxisTitle":"Título del eje Y","SSE.Views.ChartSettingsDlg.textZero":"Cero","SSE.Views.ChartSettingsDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.ChartTypeDialog.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","SSE.Views.ChartTypeDialog.errorSecondaryAxis":"El tipo de gráfico seleccionado requiere el eje secundario que está utilizando un gráfico existente. Seleccione otro tipo de gráfico.","SSE.Views.ChartTypeDialog.textSecondary":"Eje secundario","SSE.Views.ChartTypeDialog.textSeries":"Serie","SSE.Views.ChartTypeDialog.textStyle":"Estilo","SSE.Views.ChartTypeDialog.textTitle":"Tipo del gráfico","SSE.Views.ChartTypeDialog.textType":"Tipo","SSE.Views.ChartWizardDialog.errorComboSeries":"Para crear un gráfico combinado, seleccione al menos dos series de datos.","SSE.Views.ChartWizardDialog.errorMaxPoints":"El número máximo de puntos en serie por gráfico es 4096.","SSE.Views.ChartWizardDialog.errorMaxRows":"El número máximo de series de datos por gráfico es de 255.","SSE.Views.ChartWizardDialog.errorSecondaryAxis":"El tipo de gráfico seleccionado requiere el eje secundario que está utilizando un gráfico existente. Seleccione otro tipo de gráfico.","SSE.Views.ChartWizardDialog.errorStockChart":"Orden de fila incorrecta. Para construir un gráfico de bolsa ponga los datos de la hoja en el siguiente orden: precio de apertura , precio máximo, precio mínimo, precio de cierre","SSE.Views.ChartWizardDialog.textRecommended":"Recomendado","SSE.Views.ChartWizardDialog.textSecondary":"Eje secundario","SSE.Views.ChartWizardDialog.textSeries":"Serie","SSE.Views.ChartWizardDialog.textTitle":"Insertar gráfico","SSE.Views.ChartWizardDialog.textTitleChange":"Cambiar tipo de gráfico","SSE.Views.ChartWizardDialog.textType":"Tipo","SSE.Views.ChartWizardDialog.txtSeriesDesc":"Elija el tipo de gráfico y el eje para su serie de datos","SSE.Views.ConstraintDialog.textDataConstraint":"La restricción debe ser un número, una referencia simple o una fórmula con un valor numérico.","SSE.Views.ConstraintDialog.textTooManyCells":"Demasiadas celdas","SSE.Views.ConstraintDialog.textUnequalCellsNumber":"Número desigual de celdas en la referencia de celda y la restricción","SSE.Views.ConstraintDialog.txtAdd":"Añadir","SSE.Views.ConstraintDialog.txtBin":"binario","SSE.Views.ConstraintDialog.txtCellRef":"Referencia de celda","SSE.Views.ConstraintDialog.txtConstraint":"Restricción","SSE.Views.ConstraintDialog.txtDiff":"AllDifferent","SSE.Views.ConstraintDialog.txtInt":"Entero","SSE.Views.ConstraintDialog.txtNotValidRef":"La referencia de celda está vacía o el contenido no es válido.","SSE.Views.ConstraintDialog.txtTitle":"Añadir restricción","SSE.Views.ConstraintDialog.txtTitleChange":"Cambiar restricción","SSE.Views.CreatePivotDialog.textDataRange":"Rango de datos de origen","SSE.Views.CreatePivotDialog.textDestination":"Elegir dónde colocar la tabla","SSE.Views.CreatePivotDialog.textExist":"Hoja existente","SSE.Views.CreatePivotDialog.textInvalidRange":"Rango de celdas inválido","SSE.Views.CreatePivotDialog.textNew":"Hoja nueva","SSE.Views.CreatePivotDialog.textSelectData":"Seleccionar datos","SSE.Views.CreatePivotDialog.textTitle":"Crear tabla dinámica","SSE.Views.CreatePivotDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.CreateSparklineDialog.textDataRange":"Rango de datos de origen","SSE.Views.CreateSparklineDialog.textDestination":"Elija dónde colocar los minigráficos","SSE.Views.CreateSparklineDialog.textInvalidRange":"Rango de celdas inválido","SSE.Views.CreateSparklineDialog.textSelectData":"Seleccionar datos","SSE.Views.CreateSparklineDialog.textTitle":"Crear minigráficos","SSE.Views.CreateSparklineDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.DataTab.capBtnGroup":"Agrupar","SSE.Views.DataTab.capBtnTextCustomSort":"Orden personalizado","SSE.Views.DataTab.capBtnTextDataValidation":"Validación de datos","SSE.Views.DataTab.capBtnTextRemDuplicates":"Eliminar duplicados","SSE.Views.DataTab.capBtnTextToCol":"Texto en columnas","SSE.Views.DataTab.capBtnUngroup":"Desagrupar","SSE.Views.DataTab.capDataExternalLinks":"Enlaces externos","SSE.Views.DataTab.capDataFromText":"Obtener datos","SSE.Views.DataTab.capGoalSeek":"Buscar Objetivo","SSE.Views.DataTab.capSolver":"Solver","SSE.Views.DataTab.mniFromFile":"Desde un archivo TXT/CSV local","SSE.Views.DataTab.mniFromUrl":"Desde una dirección web con un archivo TXT/CSV","SSE.Views.DataTab.mniFromXMLFile":"Desde un XML local","SSE.Views.DataTab.textBelow":"Filas resumen debajo del detalle","SSE.Views.DataTab.textClear":"Eliminar esquema","SSE.Views.DataTab.textColumns":"Desagrupar columnas","SSE.Views.DataTab.textGroupColumns":"Agrupar columnas","SSE.Views.DataTab.textGroupRows":"Agrupar filas","SSE.Views.DataTab.textRightOf":"Columnas resumen a la derecha del detalle","SSE.Views.DataTab.textRows":"Desagrupar filas","SSE.Views.DataTab.tipCustomSort":"Orden personalizado","SSE.Views.DataTab.tipDataFromText":"Obtener datos de archivo","SSE.Views.DataTab.tipDataValidation":"Validación de datos","SSE.Views.DataTab.tipExternalLinks":"Ver otros archivos a los que está vinculada esta hoja de cálculo","SSE.Views.DataTab.tipGoalSeek":"Encuentre la entrada correcta para el valor que desea","SSE.Views.DataTab.tipGroup":"Agrupar rango de celdas","SSE.Views.DataTab.tipRemDuplicates":"Eliminar filas duplicadas de la hoja","SSE.Views.DataTab.tipSolver":"Encontrar el valor óptimo de una celda objetivo.","SSE.Views.DataTab.tipToColumns":"Dividir texto de celda en columnas","SSE.Views.DataTab.tipUngroup":"Desagrupar rango de celdas","SSE.Views.DataValidationDialog.errorFormula":"El valor actual es un error. ¿Desea continuar?","SSE.Views.DataValidationDialog.errorInvalid":"El valor introducido en el campo \"{0}\" no es válido.","SSE.Views.DataValidationDialog.errorInvalidDate":"La fecha introducida en el campo \"{0}\" no es válida.","SSE.Views.DataValidationDialog.errorInvalidList":"El origen de la lista debe ser una lista delimitada o una referencia a una sola fila o columna.","SSE.Views.DataValidationDialog.errorInvalidTime":"La hora introducida en el campo \"{0}\" no es válida.","SSE.Views.DataValidationDialog.errorMinGreaterMax":"El campo \"{1}\" debe ser mayor que o igual al campo \"{0}\".","SSE.Views.DataValidationDialog.errorMustEnterBothValues":"Debe introducir un valor tanto en el campo \"{0}\" como en el campo \"{1}\".","SSE.Views.DataValidationDialog.errorMustEnterValue":"Debe introducir un valor en el campo \"{0}\".","SSE.Views.DataValidationDialog.errorNamedRange":"No se puede encontrar uno de los rangos especificados.","SSE.Views.DataValidationDialog.errorNegativeTextLength":"Los valores negativos no pueden utilizarse en las condiciones \"{0}\".","SSE.Views.DataValidationDialog.errorNotNumeric":"El campo \"{0}\" debe ser un valor numérico, una expresión numérica o referirse a una celda que contenga un valor numérico.","SSE.Views.DataValidationDialog.strError":"Alerta de error","SSE.Views.DataValidationDialog.strInput":"Mensaje de entrada","SSE.Views.DataValidationDialog.strSettings":"Ajustes","SSE.Views.DataValidationDialog.textAlert":"Alerta","SSE.Views.DataValidationDialog.textAllow":"Permitir","SSE.Views.DataValidationDialog.textApply":"Aplicar estos cambios a todas las demás celdas con los mismos ajustes","SSE.Views.DataValidationDialog.textCellSelected":"Cuando la celda está seleccionada, mostrar este mensaje de entrada","SSE.Views.DataValidationDialog.textCompare":"Comparar con","SSE.Views.DataValidationDialog.textData":"Datos","SSE.Views.DataValidationDialog.textEndDate":"Fecha final","SSE.Views.DataValidationDialog.textEndTime":"Hora final","SSE.Views.DataValidationDialog.textError":"Mensaje de error","SSE.Views.DataValidationDialog.textFormula":"Fórmula","SSE.Views.DataValidationDialog.textIgnore":"Omitir blancos","SSE.Views.DataValidationDialog.textInput":"Mensaje de entrada","SSE.Views.DataValidationDialog.textMax":"Máximo","SSE.Views.DataValidationDialog.textMessage":"Mensaje","SSE.Views.DataValidationDialog.textMin":"Mínimo","SSE.Views.DataValidationDialog.textSelectData":"Seleccionar datos","SSE.Views.DataValidationDialog.textShowDropDown":"Mostrar la lista desplegable en la celda","SSE.Views.DataValidationDialog.textShowError":"Mostrar la alerta de error después de la introducción de datos no válidos","SSE.Views.DataValidationDialog.textShowInput":"Mostrar el mensaje de entrada cuando la celda está seleccionada","SSE.Views.DataValidationDialog.textSource":"Fuente","SSE.Views.DataValidationDialog.textStartDate":"Fecha de inicio","SSE.Views.DataValidationDialog.textStartTime":"Hora de inicio","SSE.Views.DataValidationDialog.textStop":"Detener","SSE.Views.DataValidationDialog.textStyle":"Estilo","SSE.Views.DataValidationDialog.textTitle":"Título","SSE.Views.DataValidationDialog.textUserEnters":"Cuando el usuario introduce datos inválidos, mostrar esta alerta de error","SSE.Views.DataValidationDialog.txtAny":"Cualquier valor","SSE.Views.DataValidationDialog.txtBetween":"entre","SSE.Views.DataValidationDialog.txtDate":"Fecha","SSE.Views.DataValidationDialog.txtDecimal":"Decimal","SSE.Views.DataValidationDialog.txtElTime":"Tiempo transcurrido","SSE.Views.DataValidationDialog.txtEndDate":"Fecha final","SSE.Views.DataValidationDialog.txtEndTime":"Hora final","SSE.Views.DataValidationDialog.txtEqual":"es igual a","SSE.Views.DataValidationDialog.txtGreaterThan":"mayor que","SSE.Views.DataValidationDialog.txtGreaterThanOrEqual":"mayor que o igual a","SSE.Views.DataValidationDialog.txtLength":"Longitud","SSE.Views.DataValidationDialog.txtLessThan":"menor que","SSE.Views.DataValidationDialog.txtLessThanOrEqual":"menor que o igual a","SSE.Views.DataValidationDialog.txtList":"Lista","SSE.Views.DataValidationDialog.txtNotBetween":"no está entre","SSE.Views.DataValidationDialog.txtNotEqual":"no es igual a","SSE.Views.DataValidationDialog.txtOther":"Otro","SSE.Views.DataValidationDialog.txtStartDate":"Fecha de inicio","SSE.Views.DataValidationDialog.txtStartTime":"Hora de inicio","SSE.Views.DataValidationDialog.txtTextLength":"Longitud del texto","SSE.Views.DataValidationDialog.txtTime":"Hora","SSE.Views.DataValidationDialog.txtWhole":"Número entero","SSE.Views.DigitalFilterDialog.capAnd":"Y","SSE.Views.DigitalFilterDialog.capCondition1":"iguales","SSE.Views.DigitalFilterDialog.capCondition10":"no termina con","SSE.Views.DigitalFilterDialog.capCondition11":"contiene","SSE.Views.DigitalFilterDialog.capCondition12":"no contiene","SSE.Views.DigitalFilterDialog.capCondition2":"no es igual","SSE.Views.DigitalFilterDialog.capCondition3":"es más grande que","SSE.Views.DigitalFilterDialog.capCondition30":"es posterior","SSE.Views.DigitalFilterDialog.capCondition4":"es más grande o igual a ","SSE.Views.DigitalFilterDialog.capCondition40":"es posterior o igual a","SSE.Views.DigitalFilterDialog.capCondition5":"es menor que","SSE.Views.DigitalFilterDialog.capCondition50":"es anterior","SSE.Views.DigitalFilterDialog.capCondition6":"es menor o igual a ","SSE.Views.DigitalFilterDialog.capCondition60":"es anterior o igual a","SSE.Views.DigitalFilterDialog.capCondition7":"empieza con","SSE.Views.DigitalFilterDialog.capCondition8":"no empieza con","SSE.Views.DigitalFilterDialog.capCondition9":"termina con","SSE.Views.DigitalFilterDialog.capOr":"O","SSE.Views.DigitalFilterDialog.textNoFilter":"sin filtro","SSE.Views.DigitalFilterDialog.textShowRows":"Mostrar filas donde","SSE.Views.DigitalFilterDialog.textUse1":"Use ? para representar un caracter","SSE.Views.DigitalFilterDialog.textUse2":"Use * para representar una serie de caracteres","SSE.Views.DigitalFilterDialog.txtSelectDate":"Seleccionar fecha","SSE.Views.DigitalFilterDialog.txtTitle":"Filtro personalizado","SSE.Views.DocumentHolder.advancedEquationText":"Ajustes de ecuaciones","SSE.Views.DocumentHolder.advancedImgText":"Ajustes avanzados de imagen","SSE.Views.DocumentHolder.advancedShapeText":"Ajustes avanzados de forma","SSE.Views.DocumentHolder.advancedSlicerText":"Ajustes avanzados de segmentación de datos ","SSE.Views.DocumentHolder.AlignBottom":"Inferior","SSE.Views.DocumentHolder.AlignCenter":"Centro","SSE.Views.DocumentHolder.AlignJust":"Justificar","SSE.Views.DocumentHolder.AlignLeft":"A la izquierda","SSE.Views.DocumentHolder.AlignMiddle":"Medio","SSE.Views.DocumentHolder.AlignRight":"A la derecha","SSE.Views.DocumentHolder.AlignText":"Alineación de texto","SSE.Views.DocumentHolder.AlignTop":"Arriba","SSE.Views.DocumentHolder.allLinearText":"Lineal (todos)","SSE.Views.DocumentHolder.allProfText":"Profesional (todos)","SSE.Views.DocumentHolder.bottomCellText":"Alinear en la parte inferior","SSE.Views.DocumentHolder.btnChart":"Añada, elimine o modifique elementos de gráficos como el título, la leyenda, las líneas de cuadrícula y las etiquetas de datos.","SSE.Views.DocumentHolder.bulletsText":"Viñetas y numeración","SSE.Views.DocumentHolder.centerCellText":"Alinear al medio","SSE.Views.DocumentHolder.chartDataText":"Seleccionar datos del gráfico","SSE.Views.DocumentHolder.chartText":"Ajustes avanzados de gráfico","SSE.Views.DocumentHolder.chartTypeText":"Cambiar tipo de gráfico","SSE.Views.DocumentHolder.currLinearText":"Lineal (actual)","SSE.Views.DocumentHolder.currProfText":"Profesional (actual)","SSE.Views.DocumentHolder.deleteColumnText":"Columna","SSE.Views.DocumentHolder.deleteRowText":"Fila","SSE.Views.DocumentHolder.deleteTableText":"Tabla","SSE.Views.DocumentHolder.DepthAxis":"Eje Z","SSE.Views.DocumentHolder.direct270Text":"Girar texto hacia arriba","SSE.Views.DocumentHolder.direct90Text":"Girar texto hacia abajo","SSE.Views.DocumentHolder.directHText":"Horizontal ","SSE.Views.DocumentHolder.directionText":"Dirección de texto","SSE.Views.DocumentHolder.editChartText":"Editar datos","SSE.Views.DocumentHolder.editHyperlinkText":"Editar enlace","SSE.Views.DocumentHolder.hideEqToolbar":"Ocultar la barra de herramientas de ecuaciones","SSE.Views.DocumentHolder.insertColumnLeftText":"Columna izquierda","SSE.Views.DocumentHolder.insertColumnRightText":"Columna derecha","SSE.Views.DocumentHolder.insertRowAboveText":"Fila arriba","SSE.Views.DocumentHolder.insertRowBelowText":"Fila debajo","SSE.Views.DocumentHolder.latexText":"LaTeX","SSE.Views.DocumentHolder.originalSizeText":"Tamaño actual","SSE.Views.DocumentHolder.removeHyperlinkText":"Eliminar enlace","SSE.Views.DocumentHolder.selectColumnText":"Toda la columna","SSE.Views.DocumentHolder.selectDataText":"Datos de columna","SSE.Views.DocumentHolder.selectRowText":"Fila","SSE.Views.DocumentHolder.selectTableText":"Tabla","SSE.Views.DocumentHolder.showEqToolbar":"Mostrar la barra de herramientas de ecuaciones","SSE.Views.DocumentHolder.strDelete":"Eliminar la firma","SSE.Views.DocumentHolder.strDetails":"Detalles de la firma","SSE.Views.DocumentHolder.strSetup":"Preparación de la firma","SSE.Views.DocumentHolder.strSign":"Firmar","SSE.Views.DocumentHolder.textAlign":"Alinear","SSE.Views.DocumentHolder.textArrange":"Organizar","SSE.Views.DocumentHolder.textArrangeBack":"Enviar al fondo","SSE.Views.DocumentHolder.textArrangeBackward":"Enviar atrás","SSE.Views.DocumentHolder.textArrangeForward":"Traer adelante","SSE.Views.DocumentHolder.textArrangeFront":"Traer al primer plano","SSE.Views.DocumentHolder.textAverage":"Promedio","SSE.Views.DocumentHolder.textAxes":"Ejes","SSE.Views.DocumentHolder.textAxisTitles":"Títulos de eje","SSE.Views.DocumentHolder.textBullets":"Viñetas","SSE.Views.DocumentHolder.textChartTitle":"Título de gráfico","SSE.Views.DocumentHolder.textCopyCells":"Copiar celdas","SSE.Views.DocumentHolder.textCount":"Contar","SSE.Views.DocumentHolder.textCrop":"Recortar","SSE.Views.DocumentHolder.textCropFill":"Relleno","SSE.Views.DocumentHolder.textCropFit":"Adaptar","SSE.Views.DocumentHolder.textDataTable":"Tabla de datos","SSE.Views.DocumentHolder.textEditPoints":"Modificar puntos","SSE.Views.DocumentHolder.textEntriesList":"Seleccionar desde lista desplegable","SSE.Views.DocumentHolder.textErrorBars":"Barras de error","SSE.Views.DocumentHolder.textExponential":"Exponencial","SSE.Views.DocumentHolder.textFillDays":"Rellenar días","SSE.Views.DocumentHolder.textFillFormatOnly":"Rellenar solo formato","SSE.Views.DocumentHolder.textFillMonths":"Rellenar meses","SSE.Views.DocumentHolder.textFillSeries":"Rellenar serie","SSE.Views.DocumentHolder.textFillWeekdays":"Rellenar días laborables","SSE.Views.DocumentHolder.textFillWithoutFormat":"Rellenar sin formato","SSE.Views.DocumentHolder.textFillYears":"Rellenar años","SSE.Views.DocumentHolder.textFlashFill":"Relleno rápido","SSE.Views.DocumentHolder.textFlipH":"Voltear horizontalmente","SSE.Views.DocumentHolder.textFlipV":"Voltear verticalmente","SSE.Views.DocumentHolder.textFreezePanes":"Congelar paneles","SSE.Views.DocumentHolder.textFromFile":"Desde archivo","SSE.Views.DocumentHolder.textFromStorage":"Desde almacenamiento","SSE.Views.DocumentHolder.textFromUrl":"Desde URL","SSE.Views.DocumentHolder.textGrowthTrend":"Tendencia de crecimiento","SSE.Views.DocumentHolder.textHorizontalMajor":"Horizontal principal","SSE.Views.DocumentHolder.textHorizontalMinor":"Horizontal secundario","SSE.Views.DocumentHolder.textLinear":"Lineal","SSE.Views.DocumentHolder.textLinearForecast":"Pronóstico lineal","SSE.Views.DocumentHolder.textLinearTrend":"Tendencia lineal","SSE.Views.DocumentHolder.textLines":"Líneas","SSE.Views.DocumentHolder.textListSettings":"Ajustes de lista","SSE.Views.DocumentHolder.textMacro":"Asignar macro","SSE.Views.DocumentHolder.textMax":"Máx.","SSE.Views.DocumentHolder.textMin":"Mín.","SSE.Views.DocumentHolder.textMore":"Más funciones","SSE.Views.DocumentHolder.textMoreFormats":"Otros formatos","SSE.Views.DocumentHolder.textMovingAverage":"Media móvil (2)","SSE.Views.DocumentHolder.textNone":"Ninguno","SSE.Views.DocumentHolder.textNumbering":"Numeración","SSE.Views.DocumentHolder.textReplace":"Reemplazar imagen","SSE.Views.DocumentHolder.textResetCrop":"Restablecer recorte","SSE.Views.DocumentHolder.textRotate":"Girar","SSE.Views.DocumentHolder.textRotate270":"Girar 90° a la izquierda","SSE.Views.DocumentHolder.textRotate90":"Girar 90° a la derecha","SSE.Views.DocumentHolder.textSaveAsPicture":"Guardar como imagen","SSE.Views.DocumentHolder.textSeries":"Series","SSE.Views.DocumentHolder.textShapeAlignBottom":"Alinear hacia abajo","SSE.Views.DocumentHolder.textShapeAlignCenter":"Alinear al centro","SSE.Views.DocumentHolder.textShapeAlignLeft":"Alinear a la izquierda","SSE.Views.DocumentHolder.textShapeAlignMiddle":"Alinear al centro","SSE.Views.DocumentHolder.textShapeAlignRight":"Alinear a la derecha","SSE.Views.DocumentHolder.textShapeAlignTop":"Alinear hacia arriba","SSE.Views.DocumentHolder.textShapesMerge":"Fusionar formas","SSE.Views.DocumentHolder.textShowDataTable":"Mostrar tabla de datos","SSE.Views.DocumentHolder.textShowLegendKeys":"Mostrar claves de leyenda","SSE.Views.DocumentHolder.textShowUpDown":"Mostrar barras arriba/abajo","SSE.Views.DocumentHolder.textStandardDeviation":"Desviación estándar","SSE.Views.DocumentHolder.textStandardError":"Error estándar","SSE.Views.DocumentHolder.textStdDev":"DesvEst","SSE.Views.DocumentHolder.textSum":"Suma","SSE.Views.DocumentHolder.textTrendline":"Línea de tendencia","SSE.Views.DocumentHolder.textUndo":"Deshacer","SSE.Views.DocumentHolder.textUnFreezePanes":"Descongelar paneles","SSE.Views.DocumentHolder.textUpDownBars":"Barras arriba/abajo","SSE.Views.DocumentHolder.textVar":"Var","SSE.Views.DocumentHolder.textVerticalMajor":"Vertical principal","SSE.Views.DocumentHolder.textVerticalMinor":"Vertical secundario","SSE.Views.DocumentHolder.tipMarkersArrow":"Viñetas de flecha","SSE.Views.DocumentHolder.tipMarkersCheckmark":"Viñetas de marca de verificación","SSE.Views.DocumentHolder.tipMarkersDash":"Viñetas guion","SSE.Views.DocumentHolder.tipMarkersFRhombus":"Rombos rellenos","SSE.Views.DocumentHolder.tipMarkersFRound":"Viñetas redondas rellenas","SSE.Views.DocumentHolder.tipMarkersFSquare":"Viñetas cuadradas rellenas","SSE.Views.DocumentHolder.tipMarkersHRound":"Viñetas redondas huecas","SSE.Views.DocumentHolder.tipMarkersStar":"Viñetas de estrella","SSE.Views.DocumentHolder.topCellText":"Alinear hacia arriba","SSE.Views.DocumentHolder.txtAccounting":"Contabilidad","SSE.Views.DocumentHolder.txtAddComment":"Añadir comentario","SSE.Views.DocumentHolder.txtAddNamedRange":"Definir nombre","SSE.Views.DocumentHolder.txtArrange":"Organizar","SSE.Views.DocumentHolder.txtAscending":"Ascendente","SSE.Views.DocumentHolder.txtAutoColumnWidth":"Autoajustar ancho de columna","SSE.Views.DocumentHolder.txtAutoRowHeight":"Autoajustar alto de fila","SSE.Views.DocumentHolder.txtAverage":"Promedio","SSE.Views.DocumentHolder.txtCellFormat":"Dar formato a celdas","SSE.Views.DocumentHolder.txtClear":"Limpiar","SSE.Views.DocumentHolder.txtClearAll":"Todo","SSE.Views.DocumentHolder.txtClearComments":"Comentarios","SSE.Views.DocumentHolder.txtClearFormat":"Formato","SSE.Views.DocumentHolder.txtClearHyper":"Enlaces","SSE.Views.DocumentHolder.txtClearPivotField":"Borrar filtro de {0}","SSE.Views.DocumentHolder.txtClearSparklineGroups":"Eliminar grupos de minigráficos seleccionados","SSE.Views.DocumentHolder.txtClearSparklines":"Eliminar minigráficos seleccionados","SSE.Views.DocumentHolder.txtClearText":"Texto","SSE.Views.DocumentHolder.txtCollapse":"Contraer","SSE.Views.DocumentHolder.txtCollapseEntire":"Contraer todo el campo","SSE.Views.DocumentHolder.txtColumn":"Toda la columna","SSE.Views.DocumentHolder.txtColumnWidth":"Ajustar ancho de columna","SSE.Views.DocumentHolder.txtCondFormat":"Formato condicional","SSE.Views.DocumentHolder.txtCopy":"Copiar","SSE.Views.DocumentHolder.txtCount":"Contar","SSE.Views.DocumentHolder.txtCurrency":"Moneda","SSE.Views.DocumentHolder.txtCustomColumnWidth":"Ancho de columna personalizado","SSE.Views.DocumentHolder.txtCustomRowHeight":"Altura de fila personalizada","SSE.Views.DocumentHolder.txtCustomSort":"Orden personalizado","SSE.Views.DocumentHolder.txtCut":"Cortar","SSE.Views.DocumentHolder.txtDateLong":"Fecha larga","SSE.Views.DocumentHolder.txtDateShort":"Fecha corta","SSE.Views.DocumentHolder.txtDelete":"Eliminar","SSE.Views.DocumentHolder.txtDelField":"Eliminar","SSE.Views.DocumentHolder.txtDescending":"Descendente","SSE.Views.DocumentHolder.txtDifference":"Diferencia de","SSE.Views.DocumentHolder.txtDistribHor":"Distribuir horizontalmente","SSE.Views.DocumentHolder.txtDistribVert":"Distribuir verticalmente","SSE.Views.DocumentHolder.txtEditComment":"Editar comentario","SSE.Views.DocumentHolder.txtEditObject":"Editar objeto","SSE.Views.DocumentHolder.txtExpand":"Expandir","SSE.Views.DocumentHolder.txtExpandCollapse":"Expandir/Contraer","SSE.Views.DocumentHolder.txtExpandEntire":"Expandir todo el campo","SSE.Views.DocumentHolder.txtFieldSettings":"Ajustes de campo","SSE.Views.DocumentHolder.txtFilter":"Filtro","SSE.Views.DocumentHolder.txtFilterCellColor":"Filtrar por color de celda","SSE.Views.DocumentHolder.txtFilterFontColor":"Filtrar por color de la letra","SSE.Views.DocumentHolder.txtFilterValue":"Filtrar por valor de celda seleccionado","SSE.Views.DocumentHolder.txtFormula":"Insertar función","SSE.Views.DocumentHolder.txtFraction":"Fracción","SSE.Views.DocumentHolder.txtGeneral":"General","SSE.Views.DocumentHolder.txtGetLink":"Obtener el enlace a este rango","SSE.Views.DocumentHolder.txtGrandTotal":"Total general","SSE.Views.DocumentHolder.txtGroup":"Agrupar","SSE.Views.DocumentHolder.txtHide":"Ocultar","SSE.Views.DocumentHolder.txtIndex":"Índice","SSE.Views.DocumentHolder.txtInsert":"Insertar","SSE.Views.DocumentHolder.txtInsHyperlink":"Enlace","SSE.Views.DocumentHolder.txtInsImage":"Insertar imagen desde archivo","SSE.Views.DocumentHolder.txtInsImageUrl":"Insertar imagen desde URL","SSE.Views.DocumentHolder.txtLabelFilter":"Filtros de etiqueta","SSE.Views.DocumentHolder.txtMax":"Máx.","SSE.Views.DocumentHolder.txtMin":"Mín.","SSE.Views.DocumentHolder.txtMoreOptions":"Más opciones","SSE.Views.DocumentHolder.txtNormal":"Sin cálculo","SSE.Views.DocumentHolder.txtNumber":"Número","SSE.Views.DocumentHolder.txtNumFormat":"Formato de número","SSE.Views.DocumentHolder.txtPaste":"Pegar","SSE.Views.DocumentHolder.txtPercent":"Porcentaje de","SSE.Views.DocumentHolder.txtPercentage":"Porcentaje","SSE.Views.DocumentHolder.txtPercentDiff":"Diferencia de porcentaje de","SSE.Views.DocumentHolder.txtPercentOfCol":"Porcentaje del total de columnas","SSE.Views.DocumentHolder.txtPercentOfGrand":"Porcentaje de total general","SSE.Views.DocumentHolder.txtPercentOfParent":"Porcentaje del total principal","SSE.Views.DocumentHolder.txtPercentOfParentCol":"Porcentaje del total de columnas principales","SSE.Views.DocumentHolder.txtPercentOfParentRow":"Porcentaje de total de fila principal","SSE.Views.DocumentHolder.txtPercentOfRunTotal":"Porcentaje del total en","SSE.Views.DocumentHolder.txtPercentOfTotal":"Porcentaje del total de filas","SSE.Views.DocumentHolder.txtPivotSettings":"Ajustes de tabla dinámica","SSE.Views.DocumentHolder.txtProduct":"Producto","SSE.Views.DocumentHolder.txtRankAscending":"Clasificar de menor a mayor","SSE.Views.DocumentHolder.txtRankDescending":"Clasificar de mayor a menor","SSE.Views.DocumentHolder.txtReapply":"Reaplicar","SSE.Views.DocumentHolder.txtRefresh":"Actualizar","SSE.Views.DocumentHolder.txtRow":"Toda la fila","SSE.Views.DocumentHolder.txtRowHeight":"Ajustar altura de fila","SSE.Views.DocumentHolder.txtRunTotal":"Total en","SSE.Views.DocumentHolder.txtScientific":"Científico","SSE.Views.DocumentHolder.txtSelect":"Seleccionar","SSE.Views.DocumentHolder.txtShiftDown":"Desplazar celdas hacia abajo","SSE.Views.DocumentHolder.txtShiftLeft":"Desplazar celdas a la izquierda","SSE.Views.DocumentHolder.txtShiftRight":"Desplazar celdas a la derecha","SSE.Views.DocumentHolder.txtShiftUp":"Desplazar celdas hacia arriba","SSE.Views.DocumentHolder.txtShow":"Mostrar","SSE.Views.DocumentHolder.txtShowAs":"Mostrar valores como","SSE.Views.DocumentHolder.txtShowComment":"Mostrar comentario","SSE.Views.DocumentHolder.txtShowDetails":"Mostrar detalles","SSE.Views.DocumentHolder.txtSort":"Ordenar","SSE.Views.DocumentHolder.txtSortCellColor":"Superponer color de celda seleccionado","SSE.Views.DocumentHolder.txtSortFontColor":"Superponer color de fuente seleccionado","SSE.Views.DocumentHolder.txtSortOption":"Más opciones de ordenación","SSE.Views.DocumentHolder.txtSparklines":"Minigráficos","SSE.Views.DocumentHolder.txtSubtotalField":"Subtotal","SSE.Views.DocumentHolder.txtSum":"Suma","SSE.Views.DocumentHolder.txtSummarize":"Resumir valores por","SSE.Views.DocumentHolder.txtText":"Texto","SSE.Views.DocumentHolder.txtTextAdvanced":"Ajustes avanzados de párrafo","SSE.Views.DocumentHolder.txtTime":"Hora","SSE.Views.DocumentHolder.txtTop10":"10 principales","SSE.Views.DocumentHolder.txtUngroup":"Desagrupar","SSE.Views.DocumentHolder.txtValueFieldSettings":"Ajustes del campo de valor","SSE.Views.DocumentHolder.txtValueFilter":"Filtros de valor","SSE.Views.DocumentHolder.txtWidth":"Ancho","SSE.Views.DocumentHolder.unicodeText":"Unicode","SSE.Views.DocumentHolder.vertAlignText":"Alineación vertical","SSE.Views.ExternalLinksDlg.textAutoUpdate":"Actualizar automáticamente los datos de las fuentes vinculadas","SSE.Views.FieldSettingsDialog.strLayout":"Diseño","SSE.Views.FieldSettingsDialog.strSubtotals":"Subtotales","SSE.Views.FieldSettingsDialog.textNumFormat":"Formato de número","SSE.Views.FieldSettingsDialog.textReport":"Formulario de informe","SSE.Views.FieldSettingsDialog.textTitle":"Ajustes de campo","SSE.Views.FieldSettingsDialog.txtAverage":"Promedio","SSE.Views.FieldSettingsDialog.txtBlank":"Insertar filas en blanco después de cada elemento","SSE.Views.FieldSettingsDialog.txtBottom":"Mostrar en la parte inferior del grupo","SSE.Views.FieldSettingsDialog.txtCompact":"Compactar","SSE.Views.FieldSettingsDialog.txtCount":"Contar","SSE.Views.FieldSettingsDialog.txtCountNums":"Contar números","SSE.Views.FieldSettingsDialog.txtCustomName":"Nombre personalizado","SSE.Views.FieldSettingsDialog.txtEmpty":"Mostrar elementos sin datos","SSE.Views.FieldSettingsDialog.txtMax":"Máx.","SSE.Views.FieldSettingsDialog.txtMin":"Mín.","SSE.Views.FieldSettingsDialog.txtOutline":"Esquema","SSE.Views.FieldSettingsDialog.txtProduct":"Producto","SSE.Views.FieldSettingsDialog.txtRepeat":"Repetir etiquetas de elementos en cada fila","SSE.Views.FieldSettingsDialog.txtShowSubtotals":"Mostrar subtotales","SSE.Views.FieldSettingsDialog.txtSourceName":"Nombre de origen:","SSE.Views.FieldSettingsDialog.txtStdDev":"DesvEst","SSE.Views.FieldSettingsDialog.txtStdDevp":"DesvEstP","SSE.Views.FieldSettingsDialog.txtSum":"Suma","SSE.Views.FieldSettingsDialog.txtSummarize":"Funciones para subtotales","SSE.Views.FieldSettingsDialog.txtTabular":"Tabular","SSE.Views.FieldSettingsDialog.txtTop":"Mostrar en la parte superior del grupo","SSE.Views.FieldSettingsDialog.txtVar":"Var","SSE.Views.FieldSettingsDialog.txtVarp":"Varp","SSE.Views.FileMenu.ariaFileMenu":"Menú Archivo","SSE.Views.FileMenu.btnBackCaption":"Abrir ubicación del archivo","SSE.Views.FileMenu.btnCloseEditor":"Cerrar archivo","SSE.Views.FileMenu.btnCloseMenuCaption":"Atrás","SSE.Views.FileMenu.btnCreateNewCaption":"Crear nueva","SSE.Views.FileMenu.btnDownloadCaption":"Descargar como","SSE.Views.FileMenu.btnExitCaption":"Cerrar","SSE.Views.FileMenu.btnExportToPDFCaption":"Exportar como PDF","SSE.Views.FileMenu.btnFileOpenCaption":"Abrir","SSE.Views.FileMenu.btnHelpCaption":"Ayuda","SSE.Views.FileMenu.btnHistoryCaption":"Historial de versiones","SSE.Views.FileMenu.btnInfoCaption":"Info sobre la hoja de cálculo","SSE.Views.FileMenu.btnPrintCaption":"Imprimir","SSE.Views.FileMenu.btnProtectCaption":"Proteger","SSE.Views.FileMenu.btnRecentFilesCaption":"Abrir reciente","SSE.Views.FileMenu.btnRenameCaption":"Cambiar nombre","SSE.Views.FileMenu.btnReturnCaption":"Volver a hoja de cálculo","SSE.Views.FileMenu.btnRightsCaption":"Permisos de acceso","SSE.Views.FileMenu.btnSaveAsCaption":"Guardar como","SSE.Views.FileMenu.btnSaveCaption":"Guardar","SSE.Views.FileMenu.btnSaveCopyAsCaption":"Guardar copia como","SSE.Views.FileMenu.btnSettingsCaption":"Ajustes avanzados","SSE.Views.FileMenu.btnSuggestCaption":"Sugerir una función","SSE.Views.FileMenu.btnSwitchToMobileCaption":"Cambiar a móvil","SSE.Views.FileMenu.btnToEditCaption":"Editar hoja de cálculo","SSE.Views.FileMenuPanels.CreateNew.txtBlank":"Hoja de cálculo en blanco","SSE.Views.FileMenuPanels.CreateNew.txtCreateNew":"Crear nueva","SSE.Views.FileMenuPanels.DocumentInfo.okButtonText":"Aplicar","SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"Añadir autor","SSE.Views.FileMenuPanels.DocumentInfo.txtAddProperty":"Añadir propiedad","SSE.Views.FileMenuPanels.DocumentInfo.txtAddText":"Añadir texto","SSE.Views.FileMenuPanels.DocumentInfo.txtAppName":"Aplicación","SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"Autor","SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"Cambiar permisos de acceso","SSE.Views.FileMenuPanels.DocumentInfo.txtComment":"Comentario","SSE.Views.FileMenuPanels.DocumentInfo.txtCommon":"Comunes","SSE.Views.FileMenuPanels.DocumentInfo.txtCreated":"Creada","SSE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"Propiedad del documento","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"Última modificación por","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"Última modificación","SSE.Views.FileMenuPanels.DocumentInfo.txtNo":"No","SSE.Views.FileMenuPanels.DocumentInfo.txtOwner":"Propietario","SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"Ubicación","SSE.Views.FileMenuPanels.DocumentInfo.txtProperties":"Propiedades","SSE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"Ya existe una propiedad con este título","SSE.Views.FileMenuPanels.DocumentInfo.txtRights":"Personas que tienen permisos","SSE.Views.FileMenuPanels.DocumentInfo.txtSpreadsheetInfo":"Información de la hoja de cálculo","SSE.Views.FileMenuPanels.DocumentInfo.txtSubject":"Asunto","SSE.Views.FileMenuPanels.DocumentInfo.txtTags":"Etiquetas","SSE.Views.FileMenuPanels.DocumentInfo.txtTitle":"Título","SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"Subido","SSE.Views.FileMenuPanels.DocumentInfo.txtYes":"Sí","SSE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"Derechos de acceso","SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"Cambiar permisos de acceso","SSE.Views.FileMenuPanels.DocumentRights.txtRights":"Personas que tienen permisos","SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText":"Aplicar","SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode":"Modo de coedición","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904":"Utiliza el sistema de fechas de 1904","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator":"Separador decimal","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage":"Idioma del diccionario","SSE.Views.FileMenuPanels.MainSettingsGeneral.strEnableIterative":"Activar cálculo iterativo","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast":"rápido","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender":"Renderizado de las fuentes","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale":"Idioma de fórmulas","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx":"Ejemplo: SUMA; MIN; MAX; CONTAR","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip":"Mostrar información sobre funciones","SSE.Views.FileMenuPanels.MainSettingsGeneral.strHScroll":"Mostrar barra de desplazamiento horizontal","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE":"Omitir palabras en MAYÚSCULAS","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers":"Omitir palabras con números","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings":"Ajustes de macros","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxChange":"Variación máxima","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxIterations":"Iteraciones máximas","SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton":"Mostrar el botón Opciones de pegado cuando se pegue contenido","SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle":"Estilo de referencia R1C1","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings":"Ajustes regionales","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx":"Ejemplo:","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRTLSupport":"Interfaz RTL","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments":"Mostrar comentarios en la hoja","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges":"Mostrar los cambios de otros usuarios","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments":"Mostrar comentarios resueltos","SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll":"Ajustado a la cuadrícula durante el desplazamiento","SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict":"Estricto","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle":"Estilo de pestaña","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme":"Tema de interfaz","SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator":"Separador de miles","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit":"Unidad de medida","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings":"Utilizar separadores basados en los ajustes regionales","SSE.Views.FileMenuPanels.MainSettingsGeneral.strVScroll":"Mostrar barra de desplazamiento vertical","SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom":"Valor de ampliación predeterminado","SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes":"Cada 10 minutos","SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes":"Cada 30 minutos","SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes":"Cada 5 minutos","SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes":"Cada hora","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover":"Guardar información de autorrecuperación","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave":"Guardar automáticamente","SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled":"Desactivado","SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill":"Rellenar","SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave":"Guardar versiones intermedias","SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine":"Línea","SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute":"Cada minuto","SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle":"Estilo de referencias","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAdvancedSettings":"Ajustes avanzados","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance":"Aspecto","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect":"Opciones de autocorrección...","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe":"Bieloruso","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg":"Búlgaro","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa":"Catalán","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode":"Modo de caché predeterminado","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating":"Calculando","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm":"Centímetro","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration":"Colaboración","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs":"Checo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCustomizeQuickAccess":"Personalizar acceso rápido","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa":"Danés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe":"Alemán","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving":"Editar y guardar","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl":"Griego","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn":"Inglés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtErrorNumber":"Su entrada no se puede utilizar. Es posible que se requiera un número entero o decimal.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs":"Español","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip":"Coedición en tiempo real. Todos los cambios se guardan automáticamente","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi":"Finlandés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr":"Francés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu":"Húngaro","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHy":"Armenio","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId":"Indonesio","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch":"Pulgada","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt":"Italiano","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa":"Japonés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo":"Coreano","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLastUsed":"Utilizados recientemente","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo":"Lao","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv":"Letón","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac":"como en OS X","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative":"Nativo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb":"Noruego","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl":"Neerlandés","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl":"Polaco","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing":"Revisión","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt":"Punto","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr":"Portugués (Brasil)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang":"Portugués (Portugal)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint":"Mostrar el botón «Impresión rápida» en el encabezado del editor","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip":"El documento se imprimirá en la última impresora seleccionada o predeterminada","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion":"Región","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo":"Rumano","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu":"Ruso","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros":"Habilitar todo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc":"Habilitar todas las macros sin notificación ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtScreenReader":"Activar el soporte para lectores de pantalla","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir":"Dirección predeterminada de la hoja","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc":"Esta configuración solo afectará a las hojas nuevas","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr":"De izquierda a derecha","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl":"De derecha a izquierda","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk":"Eslovaco","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl":"Esloveno","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSr":"Serbio (alfabeto latino)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSrcyrl":"Serbio (cirílico)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros":"Deshabilitar todo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc":"Deshabilitar todas las macros sin notificación","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip":"Utilizar el botón \"Guardar\" para sincronizar los cambios que usted y los demás realicen","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv":"Sueco","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTabBack":"Utilizar el color de la barra de herramientas como fondo de las pestañas","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr":"Turco","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk":"Ucraniano","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey":"Utilizar la tecla «Alt» para navegar por la interfaz de usuario mediante el teclado","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey":"Utilizar la tecla «Opción» para navegar por la interfaz de usuario mediante el teclado","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi":"Vietnamita","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros":"Mostrar notificación","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc":"Deshabilitar todas las macros con notificación","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin":"como en Windows","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace":"Área de trabajo","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh":"Chino (simplificado)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZhtw":"Chino (tradicional)","SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"Aviso","SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"Con contraseña","SSE.Views.FileMenuPanels.ProtectDoc.strProtect":"Proteger hoja de cálculo","SSE.Views.FileMenuPanels.ProtectDoc.strSignature":"Con firma","SSE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"Se han añadido firmas válidas a la hoja de cálculo.
La hoja de cálculo está protegida contra la edición.","SSE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"Garantizar la integridad de la hoja de cálculo añadiendo una
firma digital invisible","SSE.Views.FileMenuPanels.ProtectDoc.txtEdit":"Editar hoja de cálculo","SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"La edición eliminará las firmas de la hoja de cálculo
¿Está seguro de que quiere continuar?","SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"Esta hoja de cálculo se ha protegido con una contraseña","SSE.Views.FileMenuPanels.ProtectDoc.txtProtectSpreadsheet":"Cifrar esta hoja de cálculo con una contraseña","SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"Esta hoja de cálculo debe firmarse.","SSE.Views.FileMenuPanels.ProtectDoc.txtSigned":"Se han añadido firmas válidas a la hoja de cálculo. La hoja de cálculo está protegida contra la edición.","SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"Algunas de las firmas digitales en la hoja de cálculo son inválidas o no se pudieron verificar. La hoja de cálculo está protegida y no se puede editar.","SSE.Views.FileMenuPanels.ProtectDoc.txtView":"Ver firmas","SSE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Accesos directos de teclado","SSE.Views.FileMenuPanels.Settings.txtCustomize":"Personalizar","SSE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"Descargar como","SSE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"Guardar copia como","SSE.Views.FillSeriesDialog.textAuto":"Autocompletar","SSE.Views.FillSeriesDialog.textCols":"Columnas","SSE.Views.FillSeriesDialog.textDate":"Fecha","SSE.Views.FillSeriesDialog.textDateUnit":"Unidad de fecha","SSE.Views.FillSeriesDialog.textDay":"Día","SSE.Views.FillSeriesDialog.textGrowth":"Crecimiento","SSE.Views.FillSeriesDialog.textLinear":"Lineal","SSE.Views.FillSeriesDialog.textMonth":"Mes","SSE.Views.FillSeriesDialog.textRows":"Filas","SSE.Views.FillSeriesDialog.textSeries":"Serie en","SSE.Views.FillSeriesDialog.textStep":"Valor de paso","SSE.Views.FillSeriesDialog.textStop":"Valor límite","SSE.Views.FillSeriesDialog.textTitle":"Serie","SSE.Views.FillSeriesDialog.textTrend":"Tendencia","SSE.Views.FillSeriesDialog.textType":"Tipo","SSE.Views.FillSeriesDialog.textWeek":"Día laboral","SSE.Views.FillSeriesDialog.textYear":"Año","SSE.Views.FillSeriesDialog.txtErrorNumber":"Su entrada no se puede utilizar. Es posible que se requiera un número entero o decimal.","SSE.Views.FormatRulesEditDlg.fillColor":"Color de relleno","SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle":"Advertencia","SSE.Views.FormatRulesEditDlg.text2Scales":"Escala de 2 colores","SSE.Views.FormatRulesEditDlg.text3Scales":"Escala de 3 colores","SSE.Views.FormatRulesEditDlg.textAllBorders":"Todos los bordes","SSE.Views.FormatRulesEditDlg.textAppearance":"Apariencia de la barra","SSE.Views.FormatRulesEditDlg.textApply":"Aplicar al rango","SSE.Views.FormatRulesEditDlg.textAutomatic":"Automático","SSE.Views.FormatRulesEditDlg.textAxis":"Eje","SSE.Views.FormatRulesEditDlg.textBarDirection":"Dirección de barra","SSE.Views.FormatRulesEditDlg.textBold":"Negrita","SSE.Views.FormatRulesEditDlg.textBorder":"Borde","SSE.Views.FormatRulesEditDlg.textBordersColor":"Color de los bordes","SSE.Views.FormatRulesEditDlg.textBordersStyle":"Estilo de borde","SSE.Views.FormatRulesEditDlg.textBottomBorders":"Bordes inferiores","SSE.Views.FormatRulesEditDlg.textCannotAddCF":"No se puede añadir el formato condicional.","SSE.Views.FormatRulesEditDlg.textCellMidpoint":"Punto medio de celda","SSE.Views.FormatRulesEditDlg.textCenterBorders":"Bordes verticales internos","SSE.Views.FormatRulesEditDlg.textClear":"Eliminar","SSE.Views.FormatRulesEditDlg.textColor":"Color del texto","SSE.Views.FormatRulesEditDlg.textContext":"Contexto","SSE.Views.FormatRulesEditDlg.textCustom":"Personalizado","SSE.Views.FormatRulesEditDlg.textDiagDownBorder":"Borde diagonal descendente","SSE.Views.FormatRulesEditDlg.textDiagUpBorder":"Borde diagonal ascendente","SSE.Views.FormatRulesEditDlg.textEmptyFormula":"Escriba una fórmula válida.","SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt":"La formula que ha introducido no evalúa un número, fecha, hora o cadena.","SSE.Views.FormatRulesEditDlg.textEmptyText":"Escriba un valor.","SSE.Views.FormatRulesEditDlg.textEmptyValue":"El valor que ha especificado no es un número, fecha, hora o cadena válidos.","SSE.Views.FormatRulesEditDlg.textErrorGreater":"El valor del {0} debe ser mayor que el valor del {1}.","SSE.Views.FormatRulesEditDlg.textErrorTop10Between":"Escriba un número entre {0} y {1}.","SSE.Views.FormatRulesEditDlg.textFill":"Rellenar","SSE.Views.FormatRulesEditDlg.textFormat":"Formato","SSE.Views.FormatRulesEditDlg.textFormula":"Fórmula","SSE.Views.FormatRulesEditDlg.textGradient":"Gradiente","SSE.Views.FormatRulesEditDlg.textIconLabel":"cuando {0} {1} y","SSE.Views.FormatRulesEditDlg.textIconLabelFirst":"cuando {0} {1}","SSE.Views.FormatRulesEditDlg.textIconLabelLast":"cuando el valor es","SSE.Views.FormatRulesEditDlg.textIconsOverlap":"Uno o varios rangos de datos de icono se superponen.
Ajuste los valores de los rangos para que no se superpongan.","SSE.Views.FormatRulesEditDlg.textIconStyle":"Estilo de icono","SSE.Views.FormatRulesEditDlg.textInsideBorders":"Bordes internos","SSE.Views.FormatRulesEditDlg.textInvalid":"Rango de datos inválido","SSE.Views.FormatRulesEditDlg.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.FormatRulesEditDlg.textItalic":"Cursiva","SSE.Views.FormatRulesEditDlg.textItem":"Elemento","SSE.Views.FormatRulesEditDlg.textLeft2Right":"De izquierda a derecha","SSE.Views.FormatRulesEditDlg.textLeftBorders":"Bordes izquierdos","SSE.Views.FormatRulesEditDlg.textLongBar":"Barra más larga","SSE.Views.FormatRulesEditDlg.textMaximum":"Máximo","SSE.Views.FormatRulesEditDlg.textMaxpoint":"Punto máximo","SSE.Views.FormatRulesEditDlg.textMiddleBorders":"Bordes horizontales internos","SSE.Views.FormatRulesEditDlg.textMidpoint":"Punto medio","SSE.Views.FormatRulesEditDlg.textMinimum":"Mínimo","SSE.Views.FormatRulesEditDlg.textMinpoint":"Punto mínimo","SSE.Views.FormatRulesEditDlg.textNegative":"Negativo","SSE.Views.FormatRulesEditDlg.textNewColor":"Más colores","SSE.Views.FormatRulesEditDlg.textNoBorders":"Sin bordes","SSE.Views.FormatRulesEditDlg.textNone":"Ninguno","SSE.Views.FormatRulesEditDlg.textNotValidPercentage":"Uno o varios valores especificados no son un porcentaje válido.","SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt":"El valor {0} especificado no es un porcentaje válido.","SSE.Views.FormatRulesEditDlg.textNotValidPercentile":"Uno o varios valores especificados no son un percentil válido.","SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt":"El valor {0} especificado no es un percentil válido.","SSE.Views.FormatRulesEditDlg.textOutBorders":"Bordes externos","SSE.Views.FormatRulesEditDlg.textPercent":"Por ciento","SSE.Views.FormatRulesEditDlg.textPercentile":"Percentil","SSE.Views.FormatRulesEditDlg.textPosition":"Posición","SSE.Views.FormatRulesEditDlg.textPositive":"Positivo","SSE.Views.FormatRulesEditDlg.textPresets":"Preestablecidos","SSE.Views.FormatRulesEditDlg.textPreview":"Vista previa","SSE.Views.FormatRulesEditDlg.textRelativeRef":"No se pueden utilizar referencias relativas en los criterios de formato condicional para las escalas de color, las barras de datos y los conjuntos de iconos.","SSE.Views.FormatRulesEditDlg.textReverse":"Invertir el orden de iconos","SSE.Views.FormatRulesEditDlg.textRight2Left":"De derecha a izquierda","SSE.Views.FormatRulesEditDlg.textRightBorders":"Bordes derechos","SSE.Views.FormatRulesEditDlg.textRule":"Regla","SSE.Views.FormatRulesEditDlg.textSameAs":"Igual que positivo","SSE.Views.FormatRulesEditDlg.textSelectData":"Seleccionar datos","SSE.Views.FormatRulesEditDlg.textShortBar":"Barra más corta","SSE.Views.FormatRulesEditDlg.textShowBar":"Mostrar solo la barra","SSE.Views.FormatRulesEditDlg.textShowIcon":"Mostrar icono únicamente","SSE.Views.FormatRulesEditDlg.textSingleRef":"Este tipo de referencia no se puede utilizar en una fórmula de formato condicional.
Cambie la referencia a una sola celda o utilice la referencia con una función de la hoja, como =SUMA(A1:B5).","SSE.Views.FormatRulesEditDlg.textSolid":"Sólido","SSE.Views.FormatRulesEditDlg.textStrikeout":"Tachado","SSE.Views.FormatRulesEditDlg.textSubscript":"Subíndice","SSE.Views.FormatRulesEditDlg.textSuperscript":"Superíndice","SSE.Views.FormatRulesEditDlg.textTopBorders":"Bordes superiores","SSE.Views.FormatRulesEditDlg.textUnderline":"Subrayar","SSE.Views.FormatRulesEditDlg.tipBorders":"Bordes","SSE.Views.FormatRulesEditDlg.tipNumFormat":"Formato de número","SSE.Views.FormatRulesEditDlg.txtAccounting":"Contabilidad","SSE.Views.FormatRulesEditDlg.txtCurrency":"Moneda","SSE.Views.FormatRulesEditDlg.txtDate":"Fecha","SSE.Views.FormatRulesEditDlg.txtDateLong":"Fecha larga","SSE.Views.FormatRulesEditDlg.txtDateShort":"Fecha corta","SSE.Views.FormatRulesEditDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.FormatRulesEditDlg.txtFraction":"Fracción","SSE.Views.FormatRulesEditDlg.txtGeneral":"General","SSE.Views.FormatRulesEditDlg.txtNoCellIcon":"Sin icono","SSE.Views.FormatRulesEditDlg.txtNumber":"Número","SSE.Views.FormatRulesEditDlg.txtPercentage":"Porcentaje","SSE.Views.FormatRulesEditDlg.txtScientific":"Científico","SSE.Views.FormatRulesEditDlg.txtText":"Texto","SSE.Views.FormatRulesEditDlg.txtTime":"Hora","SSE.Views.FormatRulesEditDlg.txtTitleEdit":"Editar regla de formato","SSE.Views.FormatRulesEditDlg.txtTitleNew":"Nueva regla de formato","SSE.Views.FormatRulesManagerDlg.guestText":"Invitado","SSE.Views.FormatRulesManagerDlg.lockText":"Bloqueado","SSE.Views.FormatRulesManagerDlg.text1Above":"1 desv. est. por encima del promedio","SSE.Views.FormatRulesManagerDlg.text1Below":"1 desv. est. por debajo del promedio","SSE.Views.FormatRulesManagerDlg.text2Above":"2 desv. est. por encima del promedio","SSE.Views.FormatRulesManagerDlg.text2Below":"2 desv. est. por debajo del promedio","SSE.Views.FormatRulesManagerDlg.text3Above":"3 desv. est. por encima del promedio","SSE.Views.FormatRulesManagerDlg.text3Below":"3 desv. est. por debajo del promedio","SSE.Views.FormatRulesManagerDlg.textAbove":"Por encima del promedio","SSE.Views.FormatRulesManagerDlg.textApply":"Aplicar a","SSE.Views.FormatRulesManagerDlg.textBeginsWith":"El valor de celda comienza por","SSE.Views.FormatRulesManagerDlg.textBelow":"Por debajo del promedio","SSE.Views.FormatRulesManagerDlg.textBetween":"está comprendido entre {0} y {1}","SSE.Views.FormatRulesManagerDlg.textCellValue":"Valor de celda","SSE.Views.FormatRulesManagerDlg.textColorScale":"Escala de color escalonada","SSE.Views.FormatRulesManagerDlg.textContains":"El valor de celda contiene","SSE.Views.FormatRulesManagerDlg.textContainsBlank":"La celda contiene un valor en blanco","SSE.Views.FormatRulesManagerDlg.textContainsError":"La celda contiene un error","SSE.Views.FormatRulesManagerDlg.textDelete":"Eliminar","SSE.Views.FormatRulesManagerDlg.textDown":"Mover regla hacia abajo","SSE.Views.FormatRulesManagerDlg.textDuplicate":"Duplicar valores","SSE.Views.FormatRulesManagerDlg.textEdit":"Editar","SSE.Views.FormatRulesManagerDlg.textEnds":"El valor de celda termina con","SSE.Views.FormatRulesManagerDlg.textEqAbove":"Mayor o igual que el promedio","SSE.Views.FormatRulesManagerDlg.textEqBelow":"Menor o igual que el promedio","SSE.Views.FormatRulesManagerDlg.textFormat":"Formato","SSE.Views.FormatRulesManagerDlg.textIconSet":"Conjunto de iconos","SSE.Views.FormatRulesManagerDlg.textNew":"Nuevo","SSE.Views.FormatRulesManagerDlg.textNotBetween":"no está comprendido entre {0} y {1}","SSE.Views.FormatRulesManagerDlg.textNotContains":"El valor de celda no contiene","SSE.Views.FormatRulesManagerDlg.textNotContainsBlank":"La celda no contiene un valor en blanco","SSE.Views.FormatRulesManagerDlg.textNotContainsError":"La celda no contiene ningún error","SSE.Views.FormatRulesManagerDlg.textRules":"Reglas","SSE.Views.FormatRulesManagerDlg.textScope":"Mostrar reglas de formato para","SSE.Views.FormatRulesManagerDlg.textSelectData":"Seleccionar datos","SSE.Views.FormatRulesManagerDlg.textSelection":"Selección actual","SSE.Views.FormatRulesManagerDlg.textThisPivot":"Esta tabla pivote","SSE.Views.FormatRulesManagerDlg.textThisSheet":"Esta hoja","SSE.Views.FormatRulesManagerDlg.textThisTable":"Esta tabla","SSE.Views.FormatRulesManagerDlg.textUnique":"Valores únicos","SSE.Views.FormatRulesManagerDlg.textUp":"Mover regla hacia arriba","SSE.Views.FormatRulesManagerDlg.tipIsLocked":"Este elemento se está editando por otro usuario.","SSE.Views.FormatRulesManagerDlg.txtTitle":"Formato condicional","SSE.Views.FormulaDialog.sDescription":"Descripción","SSE.Views.FormulaDialog.textGroupDescription":"Seleccionar grupo de función","SSE.Views.FormulaDialog.textListDescription":"Seleccionar función","SSE.Views.FormulaDialog.txtRecommended":"Recomendado","SSE.Views.FormulaDialog.txtSearch":"Buscar","SSE.Views.FormulaDialog.txtTitle":"Insertar función","SSE.Views.FormulaTab.capBtnRemoveArr":"Quitar flechas","SSE.Views.FormulaTab.capBtnTraceDep":"Rastrear dependientes","SSE.Views.FormulaTab.capBtnTracePrec":"Rastrear precedentes","SSE.Views.FormulaTab.textAutomatic":"Automático","SSE.Views.FormulaTab.textCalculateCurrentSheet":"Calcular la hoja actual","SSE.Views.FormulaTab.textCalculateWorkbook":"Calcular libro de trabajo","SSE.Views.FormulaTab.textManual":"Manualmente","SSE.Views.FormulaTab.tipCalculate":"Calcular","SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook":"Calcular todo el libro de trabajo","SSE.Views.FormulaTab.tipRemoveArr":"Quitar las flechas dibujadas por Rastrear precedentes o Rastrear dependientes","SSE.Views.FormulaTab.tipShowFormulas":"Mostrar fórmula en cada celda en vez del resultado","SSE.Views.FormulaTab.tipTraceDep":"Mostrar flechas indicando qué celdas son afectadas por el valor de la celda seleccionada","SSE.Views.FormulaTab.tipTracePrec":"Mostrar flechas indicando qué celdas afectan el valor de la celda seleccionada","SSE.Views.FormulaTab.tipWatch":"Añadir celdas a la lista de la ventana de inspección","SSE.Views.FormulaTab.txtAdditional":"Adicional","SSE.Views.FormulaTab.txtAutosum":"Autosuma","SSE.Views.FormulaTab.txtAutosumTip":"Suma","SSE.Views.FormulaTab.txtCalculation":"Cálculo","SSE.Views.FormulaTab.txtFormula":"Función","SSE.Views.FormulaTab.txtFormulaTip":"Insertar función","SSE.Views.FormulaTab.txtMore":"Más funciones","SSE.Views.FormulaTab.txtRecent":"Usados recientemente","SSE.Views.FormulaTab.txtRemDep":"Quitar flechas dependientes","SSE.Views.FormulaTab.txtRemPrec":"Quitar flechas precendentes","SSE.Views.FormulaTab.txtShowFormulas":"Mostrar fórmulas","SSE.Views.FormulaTab.txtWatch":"Ventana Inspección","SSE.Views.FormulaWizard.textAny":"cualquier","SSE.Views.FormulaWizard.textArgument":"Argumento","SSE.Views.FormulaWizard.textFunction":"Función","SSE.Views.FormulaWizard.textFunctionRes":"Resultado de la función","SSE.Views.FormulaWizard.textHelp":"Ayuda sobre esta función","SSE.Views.FormulaWizard.textLogical":"lógico","SSE.Views.FormulaWizard.textNoArgs":"Esta función no tiene argumentos","SSE.Views.FormulaWizard.textNoArgsDesc":"este argumento no tiene descripción","SSE.Views.FormulaWizard.textNumber":"número","SSE.Views.FormulaWizard.textReadMore":"Más información","SSE.Views.FormulaWizard.textRef":"referencia","SSE.Views.FormulaWizard.textText":"texto","SSE.Views.FormulaWizard.textTitle":"Argumentos de función","SSE.Views.FormulaWizard.textValue":"Resultado de la fórmula","SSE.Views.GoalSeekDlg.textChangingCell":"Al cambiar la celda","SSE.Views.GoalSeekDlg.textDataRangeError":"A la fórmula le falta un rango","SSE.Views.GoalSeekDlg.textMustContainFormula":"La celda debe contener una fórmula","SSE.Views.GoalSeekDlg.textMustContainValue":"La celda debe contener un valor","SSE.Views.GoalSeekDlg.textMustFormulaResultNumber":"La fórmula de la celda debe dar como resultado un número","SSE.Views.GoalSeekDlg.textMustSingleCell":"La referencia debe ser a una sola celda","SSE.Views.GoalSeekDlg.textSelectData":"Seleccionar datos","SSE.Views.GoalSeekDlg.textSetCell":"Establecer celda","SSE.Views.GoalSeekDlg.textTitle":"Buscar Objetivo","SSE.Views.GoalSeekDlg.textToValue":"Valor","SSE.Views.GoalSeekDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.GoalSeekDlg.txtErrorNumber":"Su entrada no se puede utilizar. Es posible que se requiera un número entero o decimal.","SSE.Views.GoalSeekStatusDlg.textContinue":"Continuar","SSE.Views.GoalSeekStatusDlg.textCurrentValue":"Valor actual:","SSE.Views.GoalSeekStatusDlg.textFoundSolution":"Buscar Objetivo con la celda {0} ha encontrado una solución.","SSE.Views.GoalSeekStatusDlg.textNotFoundSolution":"Buscar Objetivo con la celda {0} quizás no haya encontrado una solución.","SSE.Views.GoalSeekStatusDlg.textPause":"Pausa","SSE.Views.GoalSeekStatusDlg.textSearchIteration":"Buscar Objetivo con la celda {0} en la iteración #{1}.","SSE.Views.GoalSeekStatusDlg.textStep":"Paso","SSE.Views.GoalSeekStatusDlg.textTargetValue":"Valor objetivo:","SSE.Views.GoalSeekStatusDlg.textTitle":"Estado de Buscar Objetivo","SSE.Views.HeaderFooterDialog.textAlign":"Alinear con márgenes de página","SSE.Views.HeaderFooterDialog.textAll":"Todas las páginas","SSE.Views.HeaderFooterDialog.textBold":"Negrita","SSE.Views.HeaderFooterDialog.textCenter":"Al centro","SSE.Views.HeaderFooterDialog.textColor":"Color del texto","SSE.Views.HeaderFooterDialog.textDate":"Fecha","SSE.Views.HeaderFooterDialog.textDiffFirst":"Primera página diferente","SSE.Views.HeaderFooterDialog.textDiffOdd":"Páginas impares y pares diferentes","SSE.Views.HeaderFooterDialog.textEven":"Página par","SSE.Views.HeaderFooterDialog.textFileName":"Nombre de archivo","SSE.Views.HeaderFooterDialog.textFirst":"Primera página","SSE.Views.HeaderFooterDialog.textFooter":"Pie de página","SSE.Views.HeaderFooterDialog.textHeader":"Encabezado","SSE.Views.HeaderFooterDialog.textImage":"Imagen","SSE.Views.HeaderFooterDialog.textInsert":"Insertar","SSE.Views.HeaderFooterDialog.textItalic":"Cursiva","SSE.Views.HeaderFooterDialog.textLeft":"A la izquierda","SSE.Views.HeaderFooterDialog.textMaxError":"El texto es demasiado largo. Reduzca el número de caracteres usados.","SSE.Views.HeaderFooterDialog.textNewColor":"Más colores","SSE.Views.HeaderFooterDialog.textOdd":"Página impar","SSE.Views.HeaderFooterDialog.textPageCount":"Número de páginas","SSE.Views.HeaderFooterDialog.textPageNum":"Número de página","SSE.Views.HeaderFooterDialog.textPresets":"Preestablecidos","SSE.Views.HeaderFooterDialog.textRight":"A la derecha","SSE.Views.HeaderFooterDialog.textScale":"Escalar con documento","SSE.Views.HeaderFooterDialog.textSheet":"Nombre de hoja","SSE.Views.HeaderFooterDialog.textStrikeout":"Tachado","SSE.Views.HeaderFooterDialog.textSubscript":"Subíndice","SSE.Views.HeaderFooterDialog.textSuperscript":"Superíndice","SSE.Views.HeaderFooterDialog.textTime":"Hora","SSE.Views.HeaderFooterDialog.textTitle":"Ajustes de encabezado / pie de página","SSE.Views.HeaderFooterDialog.textUnderline":"Subrayar","SSE.Views.HeaderFooterDialog.tipFontName":"Fuente","SSE.Views.HeaderFooterDialog.tipFontSize":"Tamaño de la fuente","SSE.Views.HyperlinkSettingsDialog.strDisplay":"Mostrar","SSE.Views.HyperlinkSettingsDialog.strLinkTo":"Enlace a","SSE.Views.HyperlinkSettingsDialog.strRange":"Rango","SSE.Views.HyperlinkSettingsDialog.strSheet":"Hoja","SSE.Views.HyperlinkSettingsDialog.textCopy":"Copiar ","SSE.Views.HyperlinkSettingsDialog.textDefault":"Rango seleccionado","SSE.Views.HyperlinkSettingsDialog.textEmptyDesc":"Introduzca título aquí","SSE.Views.HyperlinkSettingsDialog.textEmptyLink":"Introduzca enlace aquí","SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip":"Introduzca informacíon sobre herramientas aquí","SSE.Views.HyperlinkSettingsDialog.textExternalLink":"Enlace externo","SSE.Views.HyperlinkSettingsDialog.textGetLink":"Obtener enlace","SSE.Views.HyperlinkSettingsDialog.textInternalLink":"Rango de datos interno","SSE.Views.HyperlinkSettingsDialog.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.HyperlinkSettingsDialog.textNames":"Nombres definidos","SSE.Views.HyperlinkSettingsDialog.textSelectData":"Seleccionar datos","SSE.Views.HyperlinkSettingsDialog.textSelectFile":"Seleccionar archivo","SSE.Views.HyperlinkSettingsDialog.textSheets":"Hojas","SSE.Views.HyperlinkSettingsDialog.textTipText":"Información en pantalla","SSE.Views.HyperlinkSettingsDialog.textTitle":"Ajustes de enlace","SSE.Views.HyperlinkSettingsDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.HyperlinkSettingsDialog.txtNotUrl":"Este campo debe ser una URL en el formato \"http://www.example.com\"","SSE.Views.HyperlinkSettingsDialog.txtSizeLimit":"Este campo está limitado a 2083 caracteres","SSE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"Introduzca la dirección web o seleccione un archivo","SSE.Views.ImageSettings.strTransparency":"Opacidad ","SSE.Views.ImageSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.ImageSettings.textCrop":"Recortar","SSE.Views.ImageSettings.textCropFill":"Relleno","SSE.Views.ImageSettings.textCropFit":"Adaptar","SSE.Views.ImageSettings.textCropToShape":"Recortar a la forma","SSE.Views.ImageSettings.textEdit":"Editar","SSE.Views.ImageSettings.textEditObject":"Editar objeto","SSE.Views.ImageSettings.textFlip":"Volteo","SSE.Views.ImageSettings.textFromFile":"Desde archivo","SSE.Views.ImageSettings.textFromStorage":"Desde almacenamiento","SSE.Views.ImageSettings.textFromUrl":"Desde URL","SSE.Views.ImageSettings.textHeight":"Altura","SSE.Views.ImageSettings.textHint270":"Girar 90° a la izquierda","SSE.Views.ImageSettings.textHint90":"Girar 90° a la derecha","SSE.Views.ImageSettings.textHintFlipH":"Voltear horizontalmente","SSE.Views.ImageSettings.textHintFlipV":"Voltear verticalmente","SSE.Views.ImageSettings.textInsert":"Reemplazar imagen","SSE.Views.ImageSettings.textKeepRatio":"Proporciones constantes","SSE.Views.ImageSettings.textOriginalSize":"Tamaño actual","SSE.Views.ImageSettings.textRecentlyUsed":"Usados recientemente","SSE.Views.ImageSettings.textResetCrop":"Restablecer recorte","SSE.Views.ImageSettings.textRotate90":"Girar 90°","SSE.Views.ImageSettings.textRotation":"Rotación","SSE.Views.ImageSettings.textSize":"Tamaño","SSE.Views.ImageSettings.textWidth":"Ancho","SSE.Views.ImageSettingsAdvanced.textAbsolute":"No mover, ni cambiar tamaño con celdas","SSE.Views.ImageSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.ImageSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.ImageSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.ImageSettingsAdvanced.textAltTitle":"Título","SSE.Views.ImageSettingsAdvanced.textAngle":"Ángulo","SSE.Views.ImageSettingsAdvanced.textFlipped":"Volteado","SSE.Views.ImageSettingsAdvanced.textHorizontally":"Horizontalmente","SSE.Views.ImageSettingsAdvanced.textOneCell":"Mover sin cambiar tamaño con celdas","SSE.Views.ImageSettingsAdvanced.textRotation":"Rotación","SSE.Views.ImageSettingsAdvanced.textSnap":"Ajustar a la celda","SSE.Views.ImageSettingsAdvanced.textTitle":"Imagen - Ajustes avanzados","SSE.Views.ImageSettingsAdvanced.textTwoCell":"Mover y cambiar tamaño con celdas","SSE.Views.ImageSettingsAdvanced.textVertically":"Verticalmente","SSE.Views.ImportFromXmlDialog.textDestination":"Elija dónde colocar los datos","SSE.Views.ImportFromXmlDialog.textExist":"Hoja existente","SSE.Views.ImportFromXmlDialog.textInvalidRange":"Rango de celdas no válido","SSE.Views.ImportFromXmlDialog.textNew":"Hoja nueva","SSE.Views.ImportFromXmlDialog.textSelectData":"Seleccionar datos","SSE.Views.ImportFromXmlDialog.textTitle":"Importar datos","SSE.Views.ImportFromXmlDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.LeftMenu.ariaLeftMenu":"Menú de la izquierda","SSE.Views.LeftMenu.tipAbout":"Acerca de","SSE.Views.LeftMenu.tipChat":"Chat","SSE.Views.LeftMenu.tipComments":"Comentarios","SSE.Views.LeftMenu.tipFile":"Archivo","SSE.Views.LeftMenu.tipPlugins":"Extensiones","SSE.Views.LeftMenu.tipSearch":"Buscar","SSE.Views.LeftMenu.tipSpellcheck":"Сorrección ortográfica","SSE.Views.LeftMenu.tipSupport":"Sugerencias y ayuda","SSE.Views.LeftMenu.txtDeveloper":"MODO DE DESARROLLO","SSE.Views.LeftMenu.txtEditor":"Editor de hojas de cálculo","SSE.Views.LeftMenu.txtLimit":"Acceso limitado","SSE.Views.LeftMenu.txtTrial":"MODO DE PRUEBA","SSE.Views.LeftMenu.txtTrialDev":"Modo de programador de prueba","SSE.Views.MacroDialog.textMacro":"Nombre de macro","SSE.Views.MacroDialog.textTitle":"Asignar macro","SSE.Views.MainSettingsPrint.okButtonText":"Guardar","SSE.Views.MainSettingsPrint.strBottom":"Inferior","SSE.Views.MainSettingsPrint.strLandscape":"Horizontal","SSE.Views.MainSettingsPrint.strLeft":"Izquierdo","SSE.Views.MainSettingsPrint.strMargins":"Márgenes","SSE.Views.MainSettingsPrint.strPortrait":"Vertical","SSE.Views.MainSettingsPrint.strPrint":"Imprimir","SSE.Views.MainSettingsPrint.strPrintTitles":"Imprimir títulos","SSE.Views.MainSettingsPrint.strRight":"Derecho","SSE.Views.MainSettingsPrint.strTop":"Superior","SSE.Views.MainSettingsPrint.textActualSize":"Tamaño actual","SSE.Views.MainSettingsPrint.textCustom":"Personalizado","SSE.Views.MainSettingsPrint.textCustomOptions":"Opciones personalizadas","SSE.Views.MainSettingsPrint.textFitCols":"Ajustar todas las columnas en una página","SSE.Views.MainSettingsPrint.textFitPage":"Ajustar la hoja en una página","SSE.Views.MainSettingsPrint.textFitRows":"Ajustar todas las filas en una página","SSE.Views.MainSettingsPrint.textPageOrientation":"Orientación de la página","SSE.Views.MainSettingsPrint.textPageScaling":"Escala","SSE.Views.MainSettingsPrint.textPageSize":"Tamaño de la página","SSE.Views.MainSettingsPrint.textPrintGrid":"Imprimir cuadrículas","SSE.Views.MainSettingsPrint.textPrintHeadings":"Imprimir títulos de filas y columnas","SSE.Views.MainSettingsPrint.textRepeat":"Repetir...","SSE.Views.MainSettingsPrint.textRepeatLeft":"Repetir columnas a la izquierda","SSE.Views.MainSettingsPrint.textRepeatTop":"Repetir filas en la parte superior","SSE.Views.MainSettingsPrint.textSettings":"Ajustes para","SSE.Views.NamedRangeEditDlg.errorCreateDefName":"Los rangos con nombre existentes no pueden ser editados y los nuevos no se pueden crear
en este momento ya que algunos de ellos están editándose.","SSE.Views.NamedRangeEditDlg.namePlaceholder":"Nombre definido","SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle":"Aviso","SSE.Views.NamedRangeEditDlg.strWorkbook":"Libro de trabajo","SSE.Views.NamedRangeEditDlg.textDataRange":"Rango de datos","SSE.Views.NamedRangeEditDlg.textExistName":"¡Error! Ya existe una banda con este nombre","SSE.Views.NamedRangeEditDlg.textInvalidName":"El nombre debe comenzar con una letra o un guion bajo y no debe contener caracteres no válidos.","SSE.Views.NamedRangeEditDlg.textInvalidRange":"¡Error! Alcance de celdas no válido","SSE.Views.NamedRangeEditDlg.textIsLocked":"¡ERROR! Este elemento está siendo editado por otro usuario.","SSE.Views.NamedRangeEditDlg.textName":"Nombre","SSE.Views.NamedRangeEditDlg.textReservedName":"El nombre que está tratando de usar ya se hace referencia en las fórmulas de celda. Por favor seleccione otro nombre.","SSE.Views.NamedRangeEditDlg.textScope":"Alcance","SSE.Views.NamedRangeEditDlg.textSelectData":"Seleccionar datos","SSE.Views.NamedRangeEditDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.NamedRangeEditDlg.txtTitleEdit":"Editar nombre","SSE.Views.NamedRangeEditDlg.txtTitleNew":"Nuevo nombre","SSE.Views.NamedRangePasteDlg.textNames":"Rangos con nombre","SSE.Views.NamedRangePasteDlg.txtTitle":"Pegar nombre","SSE.Views.NameManagerDlg.closeButtonText":"Cerrar","SSE.Views.NameManagerDlg.guestText":"Visitante","SSE.Views.NameManagerDlg.lockText":"Bloqueado","SSE.Views.NameManagerDlg.textDataRange":"Rango de datos","SSE.Views.NameManagerDlg.textDelete":"Eliminar","SSE.Views.NameManagerDlg.textEdit":"Editar","SSE.Views.NameManagerDlg.textEmpty":"No se ha creado ninguna banda nombrada todavía.
Cree por lo menos una banda nombrada y aparecerá en este campo.","SSE.Views.NameManagerDlg.textFilter":"Filtro","SSE.Views.NameManagerDlg.textFilterAll":"Todo","SSE.Views.NameManagerDlg.textFilterDefNames":"Nombres definidos","SSE.Views.NameManagerDlg.textFilterSheet":"Nombres en el ámbito de la hoja","SSE.Views.NameManagerDlg.textFilterTableNames":"nombres de tablas","SSE.Views.NameManagerDlg.textFilterWorkbook":"Nombres en el ámbito del libro","SSE.Views.NameManagerDlg.textNew":"Nuevo","SSE.Views.NameManagerDlg.textnoNames":"No se ha encontrado ninguna banda nombrada que coincida con su filtro.","SSE.Views.NameManagerDlg.textRanges":"Rangos con nombre","SSE.Views.NameManagerDlg.textScope":"Alcance","SSE.Views.NameManagerDlg.textWorkbook":"Libro de trabajo","SSE.Views.NameManagerDlg.tipIsLocked":"Este elemento está siendo editado por otro usuario.","SSE.Views.NameManagerDlg.txtTitle":"Administrador de nombres","SSE.Views.NameManagerDlg.warnDelete":"¿Está seguro de que quiere borrar el nombre {0}?","SSE.Views.PageMarginsDialog.textBottom":"Inferior","SSE.Views.PageMarginsDialog.textCenter":"Centrar en la página","SSE.Views.PageMarginsDialog.textHor":"Horizontalmente","SSE.Views.PageMarginsDialog.textLeft":"Izquierdo","SSE.Views.PageMarginsDialog.textRight":"Derecho","SSE.Views.PageMarginsDialog.textTitle":"Márgenes","SSE.Views.PageMarginsDialog.textTop":"Superior","SSE.Views.PageMarginsDialog.textVert":"Verticalmente","SSE.Views.PageMarginsDialog.textWarning":"Advertencia","SSE.Views.PageMarginsDialog.warnCheckMargings":"Los márgenes son incorrectos","SSE.Views.ParagraphSettings.strLineHeight":"Interlineado","SSE.Views.ParagraphSettings.strParagraphSpacing":"Espaciado de párrafo","SSE.Views.ParagraphSettings.strSpacingAfter":"Después","SSE.Views.ParagraphSettings.strSpacingBefore":"Antes","SSE.Views.ParagraphSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.ParagraphSettings.textAt":"En","SSE.Views.ParagraphSettings.textAtLeast":"Al menos","SSE.Views.ParagraphSettings.textAuto":"Múltiple","SSE.Views.ParagraphSettings.textExact":"Exacto","SSE.Views.ParagraphSettings.txtAutoText":"Auto","SSE.Views.ParagraphSettingsAdvanced.noTabs":"Los tabuladores especificados aparecerán en este campo","SSE.Views.ParagraphSettingsAdvanced.strAllCaps":"Mayúsculas","SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"Doble tachado","SSE.Views.ParagraphSettingsAdvanced.strIndent":"Retiradas","SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"Izquierdo","SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"Espaciado de línea","SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"Derecho","SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter":"Después","SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore":"Antes","SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial":"Especial","SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy":"Por","SSE.Views.ParagraphSettingsAdvanced.strParagraphFont":"Letra ","SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents":"Sangría y espaciado","SSE.Views.ParagraphSettingsAdvanced.strSmallCaps":"Versalitas","SSE.Views.ParagraphSettingsAdvanced.strSpacing":"Espaciado","SSE.Views.ParagraphSettingsAdvanced.strStrike":"Tachado","SSE.Views.ParagraphSettingsAdvanced.strSubscript":"Subíndice","SSE.Views.ParagraphSettingsAdvanced.strSuperscript":"Sobreíndice","SSE.Views.ParagraphSettingsAdvanced.strTabs":"Tabuladores","SSE.Views.ParagraphSettingsAdvanced.textAlign":"Alineación","SSE.Views.ParagraphSettingsAdvanced.textAuto":"Múltiple","SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing":"Espaciado entre caracteres","SSE.Views.ParagraphSettingsAdvanced.textDefault":"Tabulador predeterminado","SSE.Views.ParagraphSettingsAdvanced.textEffects":"Efectos","SSE.Views.ParagraphSettingsAdvanced.textExact":"Exactamente","SSE.Views.ParagraphSettingsAdvanced.textFirstLine":"Primera línea","SSE.Views.ParagraphSettingsAdvanced.textHanging":"Suspendido","SSE.Views.ParagraphSettingsAdvanced.textJustified":"Justificado","SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial":"(ninguno)","SSE.Views.ParagraphSettingsAdvanced.textRemove":"Eliminar","SSE.Views.ParagraphSettingsAdvanced.textRemoveAll":"Eliminar todo","SSE.Views.ParagraphSettingsAdvanced.textSet":"Especificar","SSE.Views.ParagraphSettingsAdvanced.textTabCenter":"Al centro","SSE.Views.ParagraphSettingsAdvanced.textTabLeft":"Izquierdo","SSE.Views.ParagraphSettingsAdvanced.textTabPosition":"Posición del tabulador","SSE.Views.ParagraphSettingsAdvanced.textTabRight":"Derecho","SSE.Views.ParagraphSettingsAdvanced.textTitle":"Párrafo - Ajustes avanzados","SSE.Views.ParagraphSettingsAdvanced.txtAutoText":"Auto","SSE.Views.PivotCalculatedItemsDialog.txtDelete":"Eliminar","SSE.Views.PivotCalculatedItemsDialog.txtDuplicate":"Duplicar","SSE.Views.PivotCalculatedItemsDialog.txtEdit":"Editar","SSE.Views.PivotCalculatedItemsDialog.txtFormula":"Fórmula","SSE.Views.PivotCalculatedItemsDialog.txtItemsName":"Nombre de los elementos","SSE.Views.PivotCalculatedItemsDialog.txtNew":"Nuevo","SSE.Views.PivotCalculatedItemsDialog.txtTitle":"Elementos calculados en","SSE.Views.PivotDigitalFilterDialog.capCondition1":"es igual a","SSE.Views.PivotDigitalFilterDialog.capCondition10":"no termina con","SSE.Views.PivotDigitalFilterDialog.capCondition11":"contiene","SSE.Views.PivotDigitalFilterDialog.capCondition12":"no contiene","SSE.Views.PivotDigitalFilterDialog.capCondition13":"entre","SSE.Views.PivotDigitalFilterDialog.capCondition14":"no está entre","SSE.Views.PivotDigitalFilterDialog.capCondition2":"no es igual a","SSE.Views.PivotDigitalFilterDialog.capCondition3":"es mayor que","SSE.Views.PivotDigitalFilterDialog.capCondition30":"es posterior","SSE.Views.PivotDigitalFilterDialog.capCondition4":"es mayor o igual a","SSE.Views.PivotDigitalFilterDialog.capCondition40":"es posterior o igual a","SSE.Views.PivotDigitalFilterDialog.capCondition5":"es menor que","SSE.Views.PivotDigitalFilterDialog.capCondition50":"es anterior","SSE.Views.PivotDigitalFilterDialog.capCondition6":"es menor o igual a","SSE.Views.PivotDigitalFilterDialog.capCondition60":"es anterior o igual a","SSE.Views.PivotDigitalFilterDialog.capCondition7":"empieza con","SSE.Views.PivotDigitalFilterDialog.capCondition8":"no empieza con","SSE.Views.PivotDigitalFilterDialog.capCondition9":"termina con","SSE.Views.PivotDigitalFilterDialog.textShowDate":"Mostrar elementos para los que la fecha:","SSE.Views.PivotDigitalFilterDialog.textShowLabel":"Mostrar elementos para los que la etiqueta:","SSE.Views.PivotDigitalFilterDialog.textShowValue":"Mostrar elementos para los que:","SSE.Views.PivotDigitalFilterDialog.textUse1":"Use ? para representar un caracter","SSE.Views.PivotDigitalFilterDialog.textUse2":"Use * para representar una serie de caracteres","SSE.Views.PivotDigitalFilterDialog.txtAnd":"y","SSE.Views.PivotDigitalFilterDialog.txtTitleDate":"Filtro de fechas","SSE.Views.PivotDigitalFilterDialog.txtTitleLabel":"Filtrar por etiqueta","SSE.Views.PivotDigitalFilterDialog.txtTitleValue":"Filtro de valor","SSE.Views.PivotGroupDialog.textAuto":"Auto","SSE.Views.PivotGroupDialog.textBy":"Por","SSE.Views.PivotGroupDialog.textDays":"Días","SSE.Views.PivotGroupDialog.textEnd":"Terminar en","SSE.Views.PivotGroupDialog.textError":"Este campo debe ser un valor numérico","SSE.Views.PivotGroupDialog.textGreaterError":"El número final debe ser mayor que el número inicial.","SSE.Views.PivotGroupDialog.textHour":"Horas","SSE.Views.PivotGroupDialog.textMin":"Minutos","SSE.Views.PivotGroupDialog.textMonth":"Meses","SSE.Views.PivotGroupDialog.textNumDays":"Número de días","SSE.Views.PivotGroupDialog.textQuart":"Trimestres","SSE.Views.PivotGroupDialog.textSec":"Segundos","SSE.Views.PivotGroupDialog.textStart":"Comenzar en","SSE.Views.PivotGroupDialog.textYear":"años","SSE.Views.PivotGroupDialog.txtTitle":"Agrupación","SSE.Views.PivotInsertCalculatedItemDialog.txtDescription":"Puede utilizar los elementos calculados para realizar cálculos básicos entre distintos elementos de un mismo campo.","SSE.Views.PivotInsertCalculatedItemDialog.txtFormula":"Fórmula","SSE.Views.PivotInsertCalculatedItemDialog.txtInsertIntoFormula":"Insertar en fórmula","SSE.Views.PivotInsertCalculatedItemDialog.txtItem":"Elemento","SSE.Views.PivotInsertCalculatedItemDialog.txtItemName":"Nombre del elemento","SSE.Views.PivotInsertCalculatedItemDialog.txtItems":"Elementos","SSE.Views.PivotInsertCalculatedItemDialog.txtReadMore":"Más información","SSE.Views.PivotInsertCalculatedItemDialog.txtTitle":"Insertar elemento calculado en","SSE.Views.PivotSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.PivotSettings.textColumns":"Columnas","SSE.Views.PivotSettings.textFields":"Seleccionar campos","SSE.Views.PivotSettings.textFilters":"Filtros","SSE.Views.PivotSettings.textRows":"Filas","SSE.Views.PivotSettings.textValues":"Valores","SSE.Views.PivotSettings.txtAddColumn":"Añadir a columnas","SSE.Views.PivotSettings.txtAddFilter":"Añadir a filtros","SSE.Views.PivotSettings.txtAddRow":"Añadir a filas","SSE.Views.PivotSettings.txtAddValues":"Añadir a valores","SSE.Views.PivotSettings.txtFieldSettings":"Ajustes de campo","SSE.Views.PivotSettings.txtMoveBegin":"Mover al principio","SSE.Views.PivotSettings.txtMoveColumn":"Mover a columnas","SSE.Views.PivotSettings.txtMoveDown":"Mover hacia abajo","SSE.Views.PivotSettings.txtMoveEnd":"Mover al final","SSE.Views.PivotSettings.txtMoveFilter":"Mover a filtros","SSE.Views.PivotSettings.txtMoveRow":"Mover a filas","SSE.Views.PivotSettings.txtMoveUp":"Mover hacia arriba","SSE.Views.PivotSettings.txtMoveValues":"Mover a valores","SSE.Views.PivotSettings.txtRemove":"Eliminar campo","SSE.Views.PivotSettingsAdvanced.strLayout":"Nombre y diseño","SSE.Views.PivotSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.PivotSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.PivotSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.PivotSettingsAdvanced.textAltTitle":"Título","SSE.Views.PivotSettingsAdvanced.textAutofitColWidth":"Ajustar automáticamente el ancho de la columna al actualizar","SSE.Views.PivotSettingsAdvanced.textDataRange":"Rango de datos","SSE.Views.PivotSettingsAdvanced.textDataSource":"Origen de los datos","SSE.Views.PivotSettingsAdvanced.textDisplayFields":"Mostrar campos en área de filtro de informe","SSE.Views.PivotSettingsAdvanced.textDown":"Hacia abajo, luego horizontalmente","SSE.Views.PivotSettingsAdvanced.textGrandTotals":"Totales generales","SSE.Views.PivotSettingsAdvanced.textHeaders":"Encabezados de campo","SSE.Views.PivotSettingsAdvanced.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.PivotSettingsAdvanced.textOver":"Horizontalmente, luego hacia abajo","SSE.Views.PivotSettingsAdvanced.textSelectData":"Seleccionar datos","SSE.Views.PivotSettingsAdvanced.textShowCols":"Mostrar para columnas","SSE.Views.PivotSettingsAdvanced.textShowHeaders":"Mostrar encabezados de campo para filas y columnas","SSE.Views.PivotSettingsAdvanced.textShowRows":"Mostrar para filas","SSE.Views.PivotSettingsAdvanced.textTitle":"Tabla dinámica - Ajustes avanzados","SSE.Views.PivotSettingsAdvanced.textWrapCol":"Campos de filtro de informe por columna","SSE.Views.PivotSettingsAdvanced.textWrapRow":"Campos de filtro de informe por fila","SSE.Views.PivotSettingsAdvanced.txtEmpty":"Este campo es obligatorio","SSE.Views.PivotSettingsAdvanced.txtName":"Nombre","SSE.Views.PivotShowDetailDialog.textDescription":"Seleccione el campo que contiene el detalle que desea mostrar:","SSE.Views.PivotShowDetailDialog.txtTitle":"Mostrar detalles","SSE.Views.PivotTable.capBlankRows":"Filas en blanco","SSE.Views.PivotTable.capGrandTotals":"Totales","SSE.Views.PivotTable.capLayout":"Diseño de informe","SSE.Views.PivotTable.capSubtotals":"Subtotales","SSE.Views.PivotTable.mniBottomSubtotals":"Mostrar todos los subtotales en la parte inferior del grupo","SSE.Views.PivotTable.mniInsertBlankLine":"Insertar línea en blanco después de cada elemento","SSE.Views.PivotTable.mniLayoutCompact":"Mostrar de forma compacta","SSE.Views.PivotTable.mniLayoutNoRepeat":"No repetir todas las etiquetas de elementos","SSE.Views.PivotTable.mniLayoutOutline":"Mostrar en forma de esquema","SSE.Views.PivotTable.mniLayoutRepeat":"Repetir todas las etiquetas de elementos","SSE.Views.PivotTable.mniLayoutTabular":"Mostrar en forma tabular","SSE.Views.PivotTable.mniNoSubtotals":"No mostrar subtotales","SSE.Views.PivotTable.mniOffTotals":"Desactivado para filas y columnas","SSE.Views.PivotTable.mniOnColumnsTotals":"Activado solo para columnas","SSE.Views.PivotTable.mniOnRowsTotals":"Activado solo para filas","SSE.Views.PivotTable.mniOnTotals":"Activado para filas y columnas","SSE.Views.PivotTable.mniRemoveBlankLine":"Quitar línea en blanco después de cada elemento","SSE.Views.PivotTable.mniTopSubtotals":"Mostrar todos los subtotales en la parte superior del grupo","SSE.Views.PivotTable.textColBanded":"Columnas con bandas","SSE.Views.PivotTable.textColHeader":"Títulos de columnas","SSE.Views.PivotTable.textRowBanded":"Filas con bandas","SSE.Views.PivotTable.textRowHeader":"Encabezados de fila","SSE.Views.PivotTable.tipCalculatedItems":"Elementos calculados","SSE.Views.PivotTable.tipCreatePivot":"Insertar tabla dinámica","SSE.Views.PivotTable.tipGrandTotals":"Mostrar u ocultar totales","SSE.Views.PivotTable.tipRefresh":"Actualizar la información del origen de los datos","SSE.Views.PivotTable.tipRefreshCurrent":"Actualizar la información del origen de datos para la tabla actual","SSE.Views.PivotTable.tipSelect":"Seleccionar toda la tabla dinámica","SSE.Views.PivotTable.tipSubtotals":"Mostrar u ocultar subtotales","SSE.Views.PivotTable.txtCalculatedItems":"Elementos calculados","SSE.Views.PivotTable.txtCollapseEntire":"Contraer todo el campo","SSE.Views.PivotTable.txtCreate":"Insertar tabla","SSE.Views.PivotTable.txtExpandEntire":"Expandir todo el campo","SSE.Views.PivotTable.txtGroupPivot_Custom":"Personalizado","SSE.Views.PivotTable.txtGroupPivot_Dark":"Oscuro","SSE.Views.PivotTable.txtGroupPivot_Light":"Claro","SSE.Views.PivotTable.txtGroupPivot_Medium":"Medio","SSE.Views.PivotTable.txtPivotTable":"Tabla dinámica","SSE.Views.PivotTable.txtRefresh":"Actualizar","SSE.Views.PivotTable.txtRefreshAll":"Actualizar todo","SSE.Views.PivotTable.txtSelect":"Seleccionar","SSE.Views.PivotTable.txtTable_PivotStyleDark":"Estilo de tabla dinámica: oscuro","SSE.Views.PivotTable.txtTable_PivotStyleLight":"Estilo de tabla dinámica: claro","SSE.Views.PivotTable.txtTable_PivotStyleMedium":"Estilo de tabla dinámica: medio","SSE.Views.PrintSettings.btnDownload":"Guardar y descargar","SSE.Views.PrintSettings.btnExport":"Guardar y exportar","SSE.Views.PrintSettings.btnPrint":"Guardar e imprimir","SSE.Views.PrintSettings.strBottom":"Inferior","SSE.Views.PrintSettings.strLandscape":"Horizontal","SSE.Views.PrintSettings.strLeft":"Izquierdo","SSE.Views.PrintSettings.strMargins":"Márgenes","SSE.Views.PrintSettings.strPortrait":"Vertical","SSE.Views.PrintSettings.strPrint":"Imprimir","SSE.Views.PrintSettings.strPrintTitles":"Imprimir títulos","SSE.Views.PrintSettings.strRight":"Derecho","SSE.Views.PrintSettings.strShow":"Mostrar","SSE.Views.PrintSettings.strTop":"Superior","SSE.Views.PrintSettings.textActiveSheets":"Hojas activas","SSE.Views.PrintSettings.textActualSize":"Tamaño actual","SSE.Views.PrintSettings.textAllSheets":"Todas las hojas","SSE.Views.PrintSettings.textCurrentSheet":"Hoja actual","SSE.Views.PrintSettings.textCustom":"Personalizado","SSE.Views.PrintSettings.textCustomOptions":"Opciones personalizadas","SSE.Views.PrintSettings.textFitCols":"Ajustar todas las columnas en una página","SSE.Views.PrintSettings.textFitPage":"Ajustar la hoja en una página","SSE.Views.PrintSettings.textFitRows":"Ajustar todas las filas en una página","SSE.Views.PrintSettings.textHideDetails":"Ocultar detalles","SSE.Views.PrintSettings.textIgnore":"Omitir el área de impresión","SSE.Views.PrintSettings.textLayout":"Diseño","SSE.Views.PrintSettings.textMarginsNarrow":"Estrecho","SSE.Views.PrintSettings.textMarginsNormal":"Normal","SSE.Views.PrintSettings.textMarginsWide":"Amplio","SSE.Views.PrintSettings.textPageOrientation":"Orientación de página","SSE.Views.PrintSettings.textPages":"Páginas:","SSE.Views.PrintSettings.textPageScaling":"Escala","SSE.Views.PrintSettings.textPageSize":"Tamaño de página","SSE.Views.PrintSettings.textPrintGrid":"Imprimir cuadrículas","SSE.Views.PrintSettings.textPrintHeadings":"Imprimir títulos de filas y columnas","SSE.Views.PrintSettings.textPrintRange":"Área de impresión","SSE.Views.PrintSettings.textRange":"Rango","SSE.Views.PrintSettings.textRepeat":"Repetir...","SSE.Views.PrintSettings.textRepeatLeft":"Repetir columnas a la izquierda","SSE.Views.PrintSettings.textRepeatTop":"Repetir filas en la parte superior","SSE.Views.PrintSettings.textSelection":"Selección ","SSE.Views.PrintSettings.textSettings":"Ajustes de hoja","SSE.Views.PrintSettings.textShowDetails":"Mostrar detalles","SSE.Views.PrintSettings.textShowGrid":"Mostrar líneas de cuadrícula","SSE.Views.PrintSettings.textShowHeadings":"Mostrar títulos de filas y columnas","SSE.Views.PrintSettings.textTitle":"Opciones de impresión","SSE.Views.PrintSettings.textTitlePDF":"Ajustes de PDF","SSE.Views.PrintSettings.textTo":"hasta","SSE.Views.PrintSettings.txtMarginsLast":"Último personalizado","SSE.Views.PrintTitlesDialog.textFirstCol":"Primera columna","SSE.Views.PrintTitlesDialog.textFirstRow":"Primera fila","SSE.Views.PrintTitlesDialog.textFrozenCols":"Columnas congeladas","SSE.Views.PrintTitlesDialog.textFrozenRows":"Filas congeladas","SSE.Views.PrintTitlesDialog.textInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.PrintTitlesDialog.textLeft":"Repetir columnas a la izquierda","SSE.Views.PrintTitlesDialog.textNoRepeat":"No repetir","SSE.Views.PrintTitlesDialog.textRepeat":"Repetir...","SSE.Views.PrintTitlesDialog.textSelectRange":"Seleccionar rango","SSE.Views.PrintTitlesDialog.textTitle":"Imprimir títulos","SSE.Views.PrintTitlesDialog.textTop":"Repetir filas en la parte superior","SSE.Views.PrintWithPreview.txtActiveSheets":"Hojas activas","SSE.Views.PrintWithPreview.txtActualSize":"Tamaño actual","SSE.Views.PrintWithPreview.txtAllSheets":"Todas las hojas","SSE.Views.PrintWithPreview.txtApplyToAllSheets":"Aplicar a todas las hojas","SSE.Views.PrintWithPreview.txtAuto":"Automático","SSE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Impresión en blanco y negro","SSE.Views.PrintWithPreview.txtBothSides":"Imprimir en ambas caras","SSE.Views.PrintWithPreview.txtBothSidesLongDesc":"Girar páginas por borde largo","SSE.Views.PrintWithPreview.txtBothSidesShortDesc":"Girar páginas por borde corto","SSE.Views.PrintWithPreview.txtBottom":"Abajo ","SSE.Views.PrintWithPreview.txtColorPrinting":"Impresión en color","SSE.Views.PrintWithPreview.txtCopies":"Copias","SSE.Views.PrintWithPreview.txtCurrentSheet":"Hoja actual","SSE.Views.PrintWithPreview.txtCustom":"Personalizado","SSE.Views.PrintWithPreview.txtCustomOptions":"Opciones personalizadas","SSE.Views.PrintWithPreview.txtEmptyTable":"No hay nada para imprimir porque la tabla está vacía","SSE.Views.PrintWithPreview.txtFirstPageNumber":"Número de la primera página:","SSE.Views.PrintWithPreview.txtFitCols":"Ajustar todas las columnas en una página","SSE.Views.PrintWithPreview.txtFitPage":"Ajustar la hoja en una página","SSE.Views.PrintWithPreview.txtFitRows":"Ajustar todas las filas en una página","SSE.Views.PrintWithPreview.txtGridlinesAndHeadings":"Cuadrículas y encabezados","SSE.Views.PrintWithPreview.txtHeaderFooterSettings":"Ajustes de encabezado / pie de página","SSE.Views.PrintWithPreview.txtIgnore":"Omitir el área de impresión","SSE.Views.PrintWithPreview.txtLandscape":"Horizontal","SSE.Views.PrintWithPreview.txtLeft":"A la izquierda","SSE.Views.PrintWithPreview.txtMargins":"Márgenes","SSE.Views.PrintWithPreview.txtMarginsLast":"Último personalizado","SSE.Views.PrintWithPreview.txtMarginsNarrow":"Estrecho","SSE.Views.PrintWithPreview.txtMarginsNormal":"Normal","SSE.Views.PrintWithPreview.txtMarginsWide":"Amplio","SSE.Views.PrintWithPreview.txtOf":"de {0}","SSE.Views.PrintWithPreview.txtOneSide":"Imprimir a una cara","SSE.Views.PrintWithPreview.txtOneSideDesc":"Imprimir solo en una cara de la página","SSE.Views.PrintWithPreview.txtPage":"Página","SSE.Views.PrintWithPreview.txtPageNumInvalid":"Número de página no válido","SSE.Views.PrintWithPreview.txtPageOrientation":"Orientación de la página","SSE.Views.PrintWithPreview.txtPages":"Páginas:","SSE.Views.PrintWithPreview.txtPageSize":"Tamaño de la página","SSE.Views.PrintWithPreview.txtPortrait":"Vertical","SSE.Views.PrintWithPreview.txtPrint":"Imprimir","SSE.Views.PrintWithPreview.txtPrinter":"Impresora","SSE.Views.PrintWithPreview.txtPrinterNotSelected":"Impresora no seleccionada","SSE.Views.PrintWithPreview.txtPrintersNotFound":"Impresoras no encontradas","SSE.Views.PrintWithPreview.txtPrintGrid":"Imprimir líneas de cuadrícula","SSE.Views.PrintWithPreview.txtPrintHeadings":"Imprimir títulos de filas y columnas","SSE.Views.PrintWithPreview.txtPrintRange":"Área de impresión","SSE.Views.PrintWithPreview.txtPrintSides":"Caras de impresión","SSE.Views.PrintWithPreview.txtPrintTitles":"Imprimir títulos","SSE.Views.PrintWithPreview.txtPrintToPDF":"Imprimir en PDF","SSE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Imprimir utilizando el diálogo del sistema","SSE.Views.PrintWithPreview.txtRepeat":"Repetir...","SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft":"Repetir columnas a la izquierda","SSE.Views.PrintWithPreview.txtRepeatRowsAtTop":"Repetir filas en la parte superior","SSE.Views.PrintWithPreview.txtRight":"A la derecha","SSE.Views.PrintWithPreview.txtSave":"Guardar","SSE.Views.PrintWithPreview.txtScaling":"Escala","SSE.Views.PrintWithPreview.txtSelection":"Selección ","SSE.Views.PrintWithPreview.txtSettingsOfSheet":"Ajustes de la hoja","SSE.Views.PrintWithPreview.txtSheet":"Hoja: {0}","SSE.Views.PrintWithPreview.txtTo":"hasta","SSE.Views.PrintWithPreview.txtTop":"Arriba","SSE.Views.PrintWithPreview.txtWaitingForPrinters":"Esperando impresoras","SSE.Views.ProtectDialog.textExistName":"¡ERROR! Ya existe un rango con ese título","SSE.Views.ProtectDialog.textInvalidName":"El título del rango debe comenzar con una letra y solo puede contener letras, números y espacios.","SSE.Views.ProtectDialog.textInvalidRange":"¡ERROR! Rango de celdas no válido","SSE.Views.ProtectDialog.textSelectData":"Seleccionar datos","SSE.Views.ProtectDialog.txtAllow":"Permitir a todos los usuarios de esta hoja","SSE.Views.ProtectDialog.txtAllowDescription":"Puede desbloquear rangos específicos para su edición.","SSE.Views.ProtectDialog.txtAllowRanges":"Permitir editar rangos","SSE.Views.ProtectDialog.txtAutofilter":"Usar Autofiltro","SSE.Views.ProtectDialog.txtDelCols":"Eliminar columnas","SSE.Views.ProtectDialog.txtDelRows":"Eliminar filas","SSE.Views.ProtectDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.ProtectDialog.txtFormatCells":"Aplicar formato a celdas","SSE.Views.ProtectDialog.txtFormatCols":"Aplicar formato a columnas","SSE.Views.ProtectDialog.txtFormatRows":"Aplicar formato a filas","SSE.Views.ProtectDialog.txtIncorrectPwd":"La contraseña de confirmación no es idéntica","SSE.Views.ProtectDialog.txtInsCols":"Insertar columnas","SSE.Views.ProtectDialog.txtInsHyper":"Insertar enlace","SSE.Views.ProtectDialog.txtInsRows":"Insertar filas","SSE.Views.ProtectDialog.txtObjs":"Editar objetos","SSE.Views.ProtectDialog.txtOptional":"opcional","SSE.Views.ProtectDialog.txtPassword":"Contraseña","SSE.Views.ProtectDialog.txtPivot":"Utilizar tabla y gráfico dinámicos","SSE.Views.ProtectDialog.txtProtect":"Proteger","SSE.Views.ProtectDialog.txtRange":"Rango","SSE.Views.ProtectDialog.txtRangeName":"Título","SSE.Views.ProtectDialog.txtRepeat":"Repita la contraseña","SSE.Views.ProtectDialog.txtScen":"Editar escenarios","SSE.Views.ProtectDialog.txtSelLocked":"Seleccionar celdas bloqueadas","SSE.Views.ProtectDialog.txtSelUnLocked":"Seleccionar celdas desbloqueadas","SSE.Views.ProtectDialog.txtSheetDescription":"Evite los cambios no deseados de otros limitando su capacidad de edición.","SSE.Views.ProtectDialog.txtSheetTitle":"Proteger hoja","SSE.Views.ProtectDialog.txtSort":"Ordenar","SSE.Views.ProtectDialog.txtWarning":"Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdelo en un lugar seguro.","SSE.Views.ProtectDialog.txtWBDescription":"Para evitar que otros usuarios vean las hojas ocultas, añadan, muevan, eliminen u oculten hojas y cambien el nombre de las mismas, puede proteger la estructura de su libro con una contraseña.","SSE.Views.ProtectDialog.txtWBTitle":"Proteger la estructura del libro","SSE.Views.ProtectedRangesEditDlg.textAnonymous":"Anónimo","SSE.Views.ProtectedRangesEditDlg.textAnyone":"Cualquiera","SSE.Views.ProtectedRangesEditDlg.textCanEdit":"Editar","SSE.Views.ProtectedRangesEditDlg.textCantView":"Denegado","SSE.Views.ProtectedRangesEditDlg.textCanView":"Vista","SSE.Views.ProtectedRangesEditDlg.textInvalidName":"El título del rango debe comenzar con una letra y solo puede contener letras, números y espacios.","SSE.Views.ProtectedRangesEditDlg.textInvalidRange":"¡ERROR! Rango de celdas no válido","SSE.Views.ProtectedRangesEditDlg.textRemove":"Eliminar","SSE.Views.ProtectedRangesEditDlg.textSelectData":"Seleccionar datos","SSE.Views.ProtectedRangesEditDlg.textYou":"usted","SSE.Views.ProtectedRangesEditDlg.txtAccess":"Acceso al rango","SSE.Views.ProtectedRangesEditDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.ProtectedRangesEditDlg.txtProtect":"Proteger","SSE.Views.ProtectedRangesEditDlg.txtRange":"Rango","SSE.Views.ProtectedRangesEditDlg.txtRangeName":"Título","SSE.Views.ProtectedRangesEditDlg.txtYouCanEdit":"Solo usted puede editar este rango","SSE.Views.ProtectedRangesEditDlg.userPlaceholder":"Empiece a escribir nombre o correo electrónico","SSE.Views.ProtectedRangesManagerDlg.guestText":"Invitado","SSE.Views.ProtectedRangesManagerDlg.lockText":"Bloqueado","SSE.Views.ProtectedRangesManagerDlg.textDelete":"Eliminar","SSE.Views.ProtectedRangesManagerDlg.textEdit":"Editar","SSE.Views.ProtectedRangesManagerDlg.textEmpty":"Todavía no se han creado rangos protegidos.
Cree al menos un rango protegido y aparecerá en este campo.","SSE.Views.ProtectedRangesManagerDlg.textFilter":"Filtro","SSE.Views.ProtectedRangesManagerDlg.textFilterAll":"Todos","SSE.Views.ProtectedRangesManagerDlg.textNew":"Nuevo","SSE.Views.ProtectedRangesManagerDlg.textProtect":"Proteger hoja","SSE.Views.ProtectedRangesManagerDlg.textRange":"Rango","SSE.Views.ProtectedRangesManagerDlg.textRangesDesc":"Puede restringir la edición o visualización de rangos a las personas seleccionadas.","SSE.Views.ProtectedRangesManagerDlg.textTitle":"Título","SSE.Views.ProtectedRangesManagerDlg.tipIsLocked":"Este elemento lo está editando otro usuario.","SSE.Views.ProtectedRangesManagerDlg.txtAccess":"Acceso","SSE.Views.ProtectedRangesManagerDlg.txtDenied":"Denegado","SSE.Views.ProtectedRangesManagerDlg.txtEdit":"Editar","SSE.Views.ProtectedRangesManagerDlg.txtEditRange":"Editar rango","SSE.Views.ProtectedRangesManagerDlg.txtNewRange":"Nuevo rango","SSE.Views.ProtectedRangesManagerDlg.txtTitle":"Rangos protegidos","SSE.Views.ProtectedRangesManagerDlg.txtView":"Ver","SSE.Views.ProtectedRangesManagerDlg.warnDelete":"¿Está seguro de que desea eliminar el rango protegido {0}?
Cualquiera que tenga acceso de edición a la hoja de cálculo podrá editar el contenido del rango.","SSE.Views.ProtectedRangesManagerDlg.warnDeleteRanges":"¿Está seguro de que desea eliminar los rangos protegidos?
Cualquiera que tenga acceso de edición a la hoja de cálculo podrá editar el contenido de esos rangos.","SSE.Views.ProtectRangesDlg.guestText":"Invitado","SSE.Views.ProtectRangesDlg.lockText":"Bloqueado","SSE.Views.ProtectRangesDlg.textDelete":"Eliminar","SSE.Views.ProtectRangesDlg.textEdit":"Editar","SSE.Views.ProtectRangesDlg.textEmpty":"No hay rangos permitidos para la edición.","SSE.Views.ProtectRangesDlg.textNew":"Nuevo","SSE.Views.ProtectRangesDlg.textProtect":"Proteger hoja","SSE.Views.ProtectRangesDlg.textPwd":"Contraseña","SSE.Views.ProtectRangesDlg.textRange":"Rango","SSE.Views.ProtectRangesDlg.textRangesDesc":"Rangos desbloqueados por una contraseña cuando la hoja está protegida (esto funciona solo para las celdas bloqueadas)","SSE.Views.ProtectRangesDlg.textTitle":"Título","SSE.Views.ProtectRangesDlg.tipIsLocked":"Este elemento se está editando por otro usuario.","SSE.Views.ProtectRangesDlg.txtEditRange":"Editar rango","SSE.Views.ProtectRangesDlg.txtNewRange":"Nuevo rango","SSE.Views.ProtectRangesDlg.txtNo":"No","SSE.Views.ProtectRangesDlg.txtTitle":"Permitir a los usuarios editar rangos","SSE.Views.ProtectRangesDlg.txtYes":"Sí","SSE.Views.ProtectRangesDlg.warnDelete":"¿Esta seguro de que quiere borrar el nombre {0}?","SSE.Views.RemoveDuplicatesDialog.textColumns":"Columnas","SSE.Views.RemoveDuplicatesDialog.textDescription":"Para eliminar los valores duplicados, seleccione una o más columnas que contengan duplicados.","SSE.Views.RemoveDuplicatesDialog.textHeaders":"Mis datos tienen encabezados","SSE.Views.RemoveDuplicatesDialog.textSelectAll":"Seleccionar todo","SSE.Views.RemoveDuplicatesDialog.txtTitle":"Eliminar duplicados","SSE.Views.RightMenu.ariaRightMenu":"Menú de la derecha","SSE.Views.RightMenu.txtCellSettings":"Ajustes de celda","SSE.Views.RightMenu.txtChartSettings":"Ajustes de gráfico","SSE.Views.RightMenu.txtImageSettings":"Ajustes de imagen","SSE.Views.RightMenu.txtParagraphSettings":"Ajustes de párrafo","SSE.Views.RightMenu.txtPivotSettings":"Ajustes de tabla dinámica","SSE.Views.RightMenu.txtSettings":"Ajustes comunes","SSE.Views.RightMenu.txtShapeSettings":"Ajustes de forma","SSE.Views.RightMenu.txtSignatureSettings":"Configuración de firma","SSE.Views.RightMenu.txtSlicerSettings":"Ajustes de segmentación de datos","SSE.Views.RightMenu.txtSparklineSettings":"Ajustes de Sparkline","SSE.Views.RightMenu.txtTextArtSettings":"Ajustes de galería de texto","SSE.Views.ScaleDialog.textAuto":"Auto","SSE.Views.ScaleDialog.textError":"El valor introducido es incorrecto.","SSE.Views.ScaleDialog.textFewPages":"páginas","SSE.Views.ScaleDialog.textFitTo":"Ajustar a","SSE.Views.ScaleDialog.textHeight":"Altura","SSE.Views.ScaleDialog.textManyPages":"páginas","SSE.Views.ScaleDialog.textOnePage":"página","SSE.Views.ScaleDialog.textScaleTo":"Ajustar a","SSE.Views.ScaleDialog.textTitle":"Ajustes de escala","SSE.Views.ScaleDialog.textWidth":"Ancho","SSE.Views.SetValueDialog.txtMaxText":"El valor máximo para este campo es {0}","SSE.Views.SetValueDialog.txtMinText":"El valor mínimo para este campo es {0}","SSE.Views.ShapeSettings.strBackground":"Color de fondo","SSE.Views.ShapeSettings.strChange":"Cambiar forma","SSE.Views.ShapeSettings.strColor":"Color","SSE.Views.ShapeSettings.strFill":"Relleno","SSE.Views.ShapeSettings.strForeground":"Color de primer plano","SSE.Views.ShapeSettings.strPattern":"Patrón","SSE.Views.ShapeSettings.strShadow":"Mostrar sombra","SSE.Views.ShapeSettings.strSize":"Tamaño","SSE.Views.ShapeSettings.strStroke":"Línea","SSE.Views.ShapeSettings.strTransparency":"Opacidad ","SSE.Views.ShapeSettings.strType":"Type","SSE.Views.ShapeSettings.textAdjustShadow":"Ajustar sombra","SSE.Views.ShapeSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.ShapeSettings.textAngle":"Ángulo","SSE.Views.ShapeSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","SSE.Views.ShapeSettings.textColor":"Relleno de color","SSE.Views.ShapeSettings.textDirection":"Dirección ","SSE.Views.ShapeSettings.textEditPoints":"Modificar puntos","SSE.Views.ShapeSettings.textEditShape":"Editar forma","SSE.Views.ShapeSettings.textEmptyPattern":"Sin patrón","SSE.Views.ShapeSettings.textEyedropper":"Cuentagotas","SSE.Views.ShapeSettings.textFlip":"Volteo","SSE.Views.ShapeSettings.textFromFile":"Desde archivo","SSE.Views.ShapeSettings.textFromStorage":"Desde almacenamiento","SSE.Views.ShapeSettings.textFromUrl":"Desde URL","SSE.Views.ShapeSettings.textGradient":"Puntos de gradiente","SSE.Views.ShapeSettings.textGradientFill":"Relleno degradado","SSE.Views.ShapeSettings.textHint270":"Girar 90° a la izquierda","SSE.Views.ShapeSettings.textHint90":"Girar 90° a la derecha","SSE.Views.ShapeSettings.textHintFlipH":"Voltear horizontalmente","SSE.Views.ShapeSettings.textHintFlipV":"Voltear verticalmente","SSE.Views.ShapeSettings.textImageTexture":"Imagen o textura","SSE.Views.ShapeSettings.textLinear":"Lineal","SSE.Views.ShapeSettings.textMoreColors":"Más colores","SSE.Views.ShapeSettings.textNoFill":"Sin relleno","SSE.Views.ShapeSettings.textNoShadow":"Sin sombra","SSE.Views.ShapeSettings.textOriginalSize":"Tamaño original","SSE.Views.ShapeSettings.textPatternFill":"Patrón","SSE.Views.ShapeSettings.textPosition":"Posición","SSE.Views.ShapeSettings.textRadial":"Radial","SSE.Views.ShapeSettings.textRecentlyUsed":"Usados recientemente","SSE.Views.ShapeSettings.textRotate90":"Girar 90°","SSE.Views.ShapeSettings.textRotation":"Rotación","SSE.Views.ShapeSettings.textSelectImage":"Seleccionar imagen","SSE.Views.ShapeSettings.textSelectTexture":"Seleccionar","SSE.Views.ShapeSettings.textShadow":"Sombra","SSE.Views.ShapeSettings.textStretch":"Estirar","SSE.Views.ShapeSettings.textStyle":"Estilo","SSE.Views.ShapeSettings.textTexture":"Desde textura","SSE.Views.ShapeSettings.textTile":"Mosaico","SSE.Views.ShapeSettings.tipAddGradientPoint":"Añadir punto de degradado","SSE.Views.ShapeSettings.tipRemoveGradientPoint":"Eliminar gradiente de punto","SSE.Views.ShapeSettings.txtBrownPaper":"Papel marrón","SSE.Views.ShapeSettings.txtCanvas":"Lienzo","SSE.Views.ShapeSettings.txtCarton":"Cartón","SSE.Views.ShapeSettings.txtDarkFabric":"Tela oscura","SSE.Views.ShapeSettings.txtGrain":"Grano","SSE.Views.ShapeSettings.txtGranite":"Granito","SSE.Views.ShapeSettings.txtGreyPaper":"Papel gris","SSE.Views.ShapeSettings.txtKnit":"Tejido","SSE.Views.ShapeSettings.txtLeather":"Piel","SSE.Views.ShapeSettings.txtNoBorders":"Sin línea","SSE.Views.ShapeSettings.txtOffsetBottom":"Desplazamiento: Abajo","SSE.Views.ShapeSettings.txtOffsetBottomLeft":"Desplazamiento: Abajo a la izquierda","SSE.Views.ShapeSettings.txtOffsetBottomRight":"Desplazamiento: Abajo a la derecha","SSE.Views.ShapeSettings.txtOffsetCenter":"Desplazamiento: Al centro","SSE.Views.ShapeSettings.txtOffsetLeft":"Desplazamiento: A la izquierda","SSE.Views.ShapeSettings.txtOffsetRight":"Desplazamiento: A la derecha","SSE.Views.ShapeSettings.txtOffsetTop":"Desplazamiento: Arriba","SSE.Views.ShapeSettings.txtOffsetTopLeft":"Desplazamiento: Arriba a la izquierda","SSE.Views.ShapeSettings.txtOffsetTopRight":"Desplazamiento: Arriba a la derecha","SSE.Views.ShapeSettings.txtPapyrus":"Papiro","SSE.Views.ShapeSettings.txtWood":"Madera","SSE.Views.ShapeSettingsAdvanced.strColumns":"Columnas","SSE.Views.ShapeSettingsAdvanced.strMargins":"Espaciado del texto","SSE.Views.ShapeSettingsAdvanced.textAbsolute":"No mover, ni cambiar tamaño con celdas","SSE.Views.ShapeSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.ShapeSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.ShapeSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.ShapeSettingsAdvanced.textAltTitle":"Título","SSE.Views.ShapeSettingsAdvanced.textAngle":"Ángulo","SSE.Views.ShapeSettingsAdvanced.textArrows":"Flechas","SSE.Views.ShapeSettingsAdvanced.textAutofit":"Autoajustar","SSE.Views.ShapeSettingsAdvanced.textBeginSize":"Tamaño inicial","SSE.Views.ShapeSettingsAdvanced.textBeginStyle":"Estilo inicial","SSE.Views.ShapeSettingsAdvanced.textBevel":"Biselado","SSE.Views.ShapeSettingsAdvanced.textBottom":"Inferior","SSE.Views.ShapeSettingsAdvanced.textCapType":"Tipo de remate","SSE.Views.ShapeSettingsAdvanced.textColNumber":"Número de columnas","SSE.Views.ShapeSettingsAdvanced.textEndSize":"Tamaño final","SSE.Views.ShapeSettingsAdvanced.textEndStyle":"Estilo final","SSE.Views.ShapeSettingsAdvanced.textFlat":"Plano","SSE.Views.ShapeSettingsAdvanced.textFlipped":"Volteado","SSE.Views.ShapeSettingsAdvanced.textHeight":"Altura","SSE.Views.ShapeSettingsAdvanced.textHorizontally":"Horizontalmente","SSE.Views.ShapeSettingsAdvanced.textJoinType":"Tipo de combinación","SSE.Views.ShapeSettingsAdvanced.textKeepRatio":"Proporciones constantes","SSE.Views.ShapeSettingsAdvanced.textLeft":"Izquierdo","SSE.Views.ShapeSettingsAdvanced.textLineStyle":"Estilo de línea","SSE.Views.ShapeSettingsAdvanced.textMiter":"Ángulo","SSE.Views.ShapeSettingsAdvanced.textOneCell":"Mover sin cambiar tamaño con celdas","SSE.Views.ShapeSettingsAdvanced.textOverflow":"Permitir que el texto desborde la forma","SSE.Views.ShapeSettingsAdvanced.textResizeFit":"Ajustar tamaño de la forma al texto","SSE.Views.ShapeSettingsAdvanced.textRight":"Derecho","SSE.Views.ShapeSettingsAdvanced.textRotation":"Rotación","SSE.Views.ShapeSettingsAdvanced.textRound":"Redondeado","SSE.Views.ShapeSettingsAdvanced.textSize":"Tamaño","SSE.Views.ShapeSettingsAdvanced.textSnap":"Ajustar a la celda","SSE.Views.ShapeSettingsAdvanced.textSpacing":"Espacio entre columnas","SSE.Views.ShapeSettingsAdvanced.textSquare":"Cuadrado","SSE.Views.ShapeSettingsAdvanced.textTextBox":"Cuadro de texto","SSE.Views.ShapeSettingsAdvanced.textTitle":"Forma - Ajustes avanzados","SSE.Views.ShapeSettingsAdvanced.textTop":"Superior","SSE.Views.ShapeSettingsAdvanced.textTwoCell":"Mover y cambiar tamaño con celdas","SSE.Views.ShapeSettingsAdvanced.textVertically":"Verticalmente","SSE.Views.ShapeSettingsAdvanced.textWeightArrows":"Grosores y flechas","SSE.Views.ShapeSettingsAdvanced.textWidth":"Ancho","SSE.Views.SignatureSettings.notcriticalErrorTitle":"Aviso","SSE.Views.SignatureSettings.strDelete":"Eliminar la firma","SSE.Views.SignatureSettings.strDetails":"Detalles de la firma","SSE.Views.SignatureSettings.strInvalid":"Firmas inválidas","SSE.Views.SignatureSettings.strRequested":"Firmas requeridas","SSE.Views.SignatureSettings.strSetup":"Configuración de la firma","SSE.Views.SignatureSettings.strSign":"Firmar","SSE.Views.SignatureSettings.strSignature":"Firma","SSE.Views.SignatureSettings.strSigner":"Firmante","SSE.Views.SignatureSettings.strValid":"Firmas válidas","SSE.Views.SignatureSettings.txtContinueEditing":"Editar de todas maneras","SSE.Views.SignatureSettings.txtEditWarning":"La edición eliminará las firmas de la hoja de cálculo
¿Está seguro de que quiere continuar?","SSE.Views.SignatureSettings.txtRemoveWarning":"¿Desea eliminar esta firma?
No se puede deshacer.","SSE.Views.SignatureSettings.txtRequestedSignatures":"Esta hoja de cálculo debe firmarse.","SSE.Views.SignatureSettings.txtSigned":"Se han añadido firmas válidas a la hoja de cálculo. La hoja de cálculo está protegida contra la edición.","SSE.Views.SignatureSettings.txtSignedInvalid":"Algunas de las firmas digitales en la hoja de cálculo son inválidas o no se pudieron verificar. La hoja de cálculo está protegida y no se puede editar.","SSE.Views.SlicerAddDialog.textColumns":"Columnas","SSE.Views.SlicerAddDialog.txtTitle":"Insertar segmentaciones de datos","SSE.Views.SlicerSettings.strHideNoData":"Ocultar elementos sin datos","SSE.Views.SlicerSettings.strIndNoData":"Indicar visualmente los elementos sin datos","SSE.Views.SlicerSettings.strShowDel":"Mostrar elementos eliminados del origen de datos","SSE.Views.SlicerSettings.strShowNoData":"Mostrar elementos sin datos al final","SSE.Views.SlicerSettings.strSorting":"Ordenar y filtrar","SSE.Views.SlicerSettings.textAdvanced":"Mostrar ajustes avanzados","SSE.Views.SlicerSettings.textAsc":"Ascendente","SSE.Views.SlicerSettings.textAZ":"De A a Z","SSE.Views.SlicerSettings.textButtons":"Botones","SSE.Views.SlicerSettings.textColumns":"Columnas","SSE.Views.SlicerSettings.textDesc":"Descendente","SSE.Views.SlicerSettings.textHeight":"Altura","SSE.Views.SlicerSettings.textHor":"Horizontal ","SSE.Views.SlicerSettings.textKeepRatio":"Proporciones constantes","SSE.Views.SlicerSettings.textLargeSmall":"de mayor a menor","SSE.Views.SlicerSettings.textLock":"Deshabilitar cambiar tamaño or mover","SSE.Views.SlicerSettings.textNewOld":"de más recientes a más antiguos","SSE.Views.SlicerSettings.textOldNew":"de más antiguos a más recientes","SSE.Views.SlicerSettings.textPosition":"Posición","SSE.Views.SlicerSettings.textSize":"Tamaño","SSE.Views.SlicerSettings.textSmallLarge":"de menor a mayor","SSE.Views.SlicerSettings.textStyle":"Estilo","SSE.Views.SlicerSettings.textVert":"Vertical","SSE.Views.SlicerSettings.textWidth":"Ancho","SSE.Views.SlicerSettings.textZA":"De Z a A","SSE.Views.SlicerSettingsAdvanced.strButtons":"Botones","SSE.Views.SlicerSettingsAdvanced.strColumns":"Columnas","SSE.Views.SlicerSettingsAdvanced.strHeight":"Altura","SSE.Views.SlicerSettingsAdvanced.strHideNoData":"Ocultar elementos sin datos","SSE.Views.SlicerSettingsAdvanced.strIndNoData":"Indicar visualmente los elementos sin datos","SSE.Views.SlicerSettingsAdvanced.strReferences":"Referencias","SSE.Views.SlicerSettingsAdvanced.strShowDel":"Mostrar elementos eliminados del origen de datos","SSE.Views.SlicerSettingsAdvanced.strShowHeader":"Mostrar encabezado","SSE.Views.SlicerSettingsAdvanced.strShowNoData":"Mostrar elementos sin datos al final","SSE.Views.SlicerSettingsAdvanced.strSize":"Tamaño","SSE.Views.SlicerSettingsAdvanced.strSorting":"Ordenar y filtrar","SSE.Views.SlicerSettingsAdvanced.strStyle":"Estilo","SSE.Views.SlicerSettingsAdvanced.strStyleSize":"Estilo y tamaño","SSE.Views.SlicerSettingsAdvanced.strWidth":"Ancho","SSE.Views.SlicerSettingsAdvanced.textAbsolute":"No mover, ni cambiar tamaño con celdas","SSE.Views.SlicerSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.SlicerSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.SlicerSettingsAdvanced.textAltTip":"RRepresentación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.SlicerSettingsAdvanced.textAltTitle":"Título","SSE.Views.SlicerSettingsAdvanced.textAsc":"Ascendente","SSE.Views.SlicerSettingsAdvanced.textAZ":"De A a Z","SSE.Views.SlicerSettingsAdvanced.textDesc":"Descendente","SSE.Views.SlicerSettingsAdvanced.textFormulaName":"Nombre para utilizar en fórmulas","SSE.Views.SlicerSettingsAdvanced.textHeader":"Encabezado","SSE.Views.SlicerSettingsAdvanced.textKeepRatio":"Proporciones constantes","SSE.Views.SlicerSettingsAdvanced.textLargeSmall":"de mayor a menor","SSE.Views.SlicerSettingsAdvanced.textName":"Nombre","SSE.Views.SlicerSettingsAdvanced.textNewOld":"de más recientes a más antiguos","SSE.Views.SlicerSettingsAdvanced.textOldNew":"de más antiguos a más recientes","SSE.Views.SlicerSettingsAdvanced.textOneCell":"Mover sin cambiar tamaño con celdas","SSE.Views.SlicerSettingsAdvanced.textSmallLarge":"de menor a mayor","SSE.Views.SlicerSettingsAdvanced.textSnap":"Ajustar a la celda","SSE.Views.SlicerSettingsAdvanced.textSort":"Ordenar","SSE.Views.SlicerSettingsAdvanced.textSourceName":"Nombre de origen","SSE.Views.SlicerSettingsAdvanced.textTitle":"Segmentación de datos - Ajustes avanzados","SSE.Views.SlicerSettingsAdvanced.textTwoCell":"Mover y cambiar tamaño con celdas","SSE.Views.SlicerSettingsAdvanced.textZA":"De Z a A","SSE.Views.SlicerSettingsAdvanced.txtEmpty":"Este campo es obligatorio","SSE.Views.SolverDlg.textAdd":"Añadir","SSE.Views.SolverDlg.textBin":"bin","SSE.Views.SolverDlg.textConfirmChangeMethod":"No podrá volver al método %1 si ejecuta Solver.","SSE.Views.SolverDlg.textConfirmReset":"¿Restablecer todas las opciones del solucionador y las selecciones de celdas?","SSE.Views.SolverDlg.textConstraints":"Sujeto a las restricciones","SSE.Views.SolverDlg.textDataRange":"Problema por resolver no especificado.","SSE.Views.SolverDlg.textDelete":"Eliminar","SSE.Views.SolverDlg.textDif":"dif","SSE.Views.SolverDlg.textEdit":"Cambiar","SSE.Views.SolverDlg.textEmptyList":"Aún no se han creado restricciones.
Cree al menos una y aparecerá en esta lista.","SSE.Views.SolverDlg.textEvolutionary":"Evolutivo","SSE.Views.SolverDlg.textInt":"int","SSE.Views.SolverDlg.textManyVarCells":"Demasiadas celdas variables.","SSE.Views.SolverDlg.textMax":"Máx.","SSE.Views.SolverDlg.textMethod":"Método de solución","SSE.Views.SolverDlg.textMethodDesc":"El motor LP Simplex se utiliza para resolver problemas lineales.","SSE.Views.SolverDlg.textMin":"Mín.","SSE.Views.SolverDlg.textMustContainFormula":"El contenido objetivo de las celdas debe ser una fórmula.","SSE.Views.SolverDlg.textMustSingleCell":"La celda objetivo debe ser una celda única en la hoja activa.","SSE.Views.SolverDlg.textNonlinear":"Método no lineal GRG","SSE.Views.SolverDlg.textNonNegative":"Hacer que las variables sin restricciones sean no negativas","SSE.Views.SolverDlg.textNotSupported":"Los métodos no lineales o evolutivos aún no son compatibles. Si los necesita, %1","SSE.Views.SolverDlg.textObjective":"Establecer objetivo","SSE.Views.SolverDlg.textOptions":"Opciones","SSE.Views.SolverDlg.textReadMore":"Más información","SSE.Views.SolverDlg.textReset":"Restablecer","SSE.Views.SolverDlg.textResetAll":"Restablecer todo","SSE.Views.SolverDlg.textSelectData":"Seleccionar datos","SSE.Views.SolverDlg.textSimplex":"Simplex LP","SSE.Views.SolverDlg.textSolve":"Solucionar","SSE.Views.SolverDlg.textTellUs":"cuéntenoslo","SSE.Views.SolverDlg.textTitle":"Parámetros de Solver","SSE.Views.SolverDlg.textTo":"Para","SSE.Views.SolverDlg.textUnsupportedConstraints":"Algunas de las restricciones contienen relaciones int, bin o dif no compatibles.
Por favor, elimine estas relaciones o cámbielas por relaciones compatibles <=, =, >=.","SSE.Views.SolverDlg.textValueOf":"Valor de","SSE.Views.SolverDlg.textVars":"Al cambiar la celda variable","SSE.Views.SolverDlg.txtEmpty":"Este campo es obligatorio","SSE.Views.SolverDlg.txtErrorNumber":"No se puede utilizar su entrada. Es posible que se requiera un número entero o decimal.","SSE.Views.SolverMethodDialog.txtAutoScale":"Usar escalado automático","SSE.Views.SolverMethodDialog.txtIgnore":"Ignorar restricciones de enteros","SSE.Views.SolverMethodDialog.txtIterations":"Iteraciones","SSE.Views.SolverMethodDialog.txtIterationsInvalid":"Las iteraciones deben ser un número positivo.","SSE.Views.SolverMethodDialog.txtMaxTime":"Tiempo máximo (segundos)","SSE.Views.SolverMethodDialog.txtMaxTimeInvalid":"El tiempo máximo debe ser un número positivo.","SSE.Views.SolverMethodDialog.txtOptimality":"Optimalidad de enteros (%)","SSE.Views.SolverMethodDialog.txtOptimalityInvalid":"La tolerancia de los enteros debe ser un número positivo pequeño.","SSE.Views.SolverMethodDialog.txtPrecision":"Precisión de restricción","SSE.Views.SolverMethodDialog.txtPrecisionInvalid":"La precisión debe ser un número positivo pequeño.","SSE.Views.SolverMethodDialog.txtSolverInt":"Solución con restricciones enteras","SSE.Views.SolverMethodDialog.txtSolverLimits":"Limitaciones de solución","SSE.Views.SolverMethodDialog.txtTitle":"Opciones del método","SSE.Views.SolverResultsDlg.txtCantImprove":"Solver no puede mejorar la solución actual. Se cumplen todas las restricciones.","SSE.Views.SolverResultsDlg.txtCantImproveDesc":"Cuando se utiliza el motor evolutivo, esto significa que Solver se ha detenido porque no puede encontrar una solución mejor en el tiempo dado.","SSE.Views.SolverResultsDlg.txtConverged":"Solver ha convergido en la solución actual. Se cumplen todas las restricciones.","SSE.Views.SolverResultsDlg.txtConvergedDesc":"Solver ha realizado 5 iteraciones en las que el objetivo no ha variado significativamente. Pruebe con una configuración de convergencia más pequeña o con un punto de partida diferente.","SSE.Views.SolverResultsDlg.txtErrorModel":"Error en el modelo. Compruebe que todas las celdas y restricciones sean válidas.","SSE.Views.SolverResultsDlg.txtErrorModelDesc":"Quizás algunas celdas que no son celdas variables estén marcadas como enteras, binarias o todas diferentes.","SSE.Views.SolverResultsDlg.txtErrorVal":"Solver ha encontrado un valor erróneo en la celda Objetivo o en una celda de restricción.","SSE.Views.SolverResultsDlg.txtErrorValDesc":"Una de las celdas de la hoja de cálculo se ha convertido en un valor de error cuando Solver ha probado determinados valores para las celdas variables.","SSE.Views.SolverResultsDlg.txtIntSolution":"Solver ha encontrado una solución entera dentro de la tolerancia. Se cumplen todas las restricciones.","SSE.Views.SolverResultsDlg.txtIntSolutionDesc":"Es posible que existan soluciones enteras mejores. Para asegurarse de que Solver encuentre la mejor solución, establezca la tolerancia de los enteros en el cuadro de diálogo de opciones en 0 %.","SSE.Views.SolverResultsDlg.txtKeep":"Mantener la solución obtenida","SSE.Views.SolverResultsDlg.txtLineConditions":"Las condiciones de linealidad requeridas por este LP Solver no se cumplen.","SSE.Views.SolverResultsDlg.txtLineConditionsDesc":"Cree un informe de linealidad para ver dónde está el problema, o cambie al motor GRG.","SSE.Views.SolverResultsDlg.txtNoFeasible":"Solver no ha podido encontrar una solución viable.","SSE.Views.SolverResultsDlg.txtNoFeasibleDesc":"Solver no puede encontrar un punto que satisfaga todas las restricciones.","SSE.Views.SolverResultsDlg.txtNotConverge":"Los valores de la celda Objetivo no convergen.","SSE.Views.SolverResultsDlg.txtNotConvergeDesc":"Solver puede hacer que la celda Objetivo sea tan grande (o pequeña, cuando se minimiza) como desee.","SSE.Views.SolverResultsDlg.txtNotEnoughMemory":"No hay suficiente memoria disponible para resolver el problema.","SSE.Views.SolverResultsDlg.txtOpenParams":"Volver al cuadro de diálogo de parámetros del solucionador","SSE.Views.SolverResultsDlg.txtOptimalSolution":"Solver ha encontrado una solución. Se cumplen todas las restricciones y condiciones de optimización.","SSE.Views.SolverResultsDlg.txtOptimalSolutionDesc":"Cuando se utiliza Simplex LP, significa que Solver ha encontrado una solución óptima global.","SSE.Views.SolverResultsDlg.txtRestore":"Restaurar valores originales","SSE.Views.SolverResultsDlg.txtStopped":"Solver se ha detenido a petición del usuario.","SSE.Views.SolverResultsDlg.txtStoppedDesc":"Solver se ha detenido antes de encontrar una solución óptima global. Se proporcionará la mejor solución encontrada, si la hay.","SSE.Views.SolverResultsDlg.txtTitle":"Resultados de Solver","SSE.Views.SortDialog.errorEmpty":"Todos los criterios de clasificación deben tener una columna o fila especificada.","SSE.Views.SortDialog.errorMoreOneCol":"Se ha seleccionado más de una columna.","SSE.Views.SortDialog.errorMoreOneRow":"Se ha seleccionado más de una fila.","SSE.Views.SortDialog.errorNotOriginalCol":"La columna que ha seleccionado no está en el rango seleccionado originalmente.","SSE.Views.SortDialog.errorNotOriginalRow":"La fila que ha seleccionado no está en el rango seleccionado originalmente. ","SSE.Views.SortDialog.errorSameColumnColor":"%1 está siendo clasificado por el mismo color más de una vez. Elimine los criterios de clasificación duplicados y vuelva a intentarlo.","SSE.Views.SortDialog.errorSameColumnValue":"%1 está siendo ordenado por valores más de una vez.
Elimine los criterios de clasificación duplicados y vuelva a intentarlo.","SSE.Views.SortDialog.textAsc":"Ascendente","SSE.Views.SortDialog.textAuto":"Automático","SSE.Views.SortDialog.textAZ":"De A a Z","SSE.Views.SortDialog.textBelow":"Debajo","SSE.Views.SortDialog.textBtnCopy":"Copiar ","SSE.Views.SortDialog.textBtnDelete":"Eliminar","SSE.Views.SortDialog.textBtnNew":"Nuevo","SSE.Views.SortDialog.textCellColor":"Color de la celda","SSE.Views.SortDialog.textColumn":"Columna","SSE.Views.SortDialog.textDesc":"Descendente","SSE.Views.SortDialog.textDown":"Mover el nivel hacia abajo","SSE.Views.SortDialog.textFontColor":"Color de la fuente","SSE.Views.SortDialog.textLeft":"Izquierdo","SSE.Views.SortDialog.textLevels":"Niveles","SSE.Views.SortDialog.textMoreCols":"(Añadir columnas...)","SSE.Views.SortDialog.textMoreRows":"(Añadir filas...)","SSE.Views.SortDialog.textNone":"Ninguno","SSE.Views.SortDialog.textOptions":"Opciones","SSE.Views.SortDialog.textOrder":"Ordenar","SSE.Views.SortDialog.textRight":"Derecho","SSE.Views.SortDialog.textRow":"Fila","SSE.Views.SortDialog.textSort":"Ordenar según","SSE.Views.SortDialog.textSortBy":"Ordenar por","SSE.Views.SortDialog.textThenBy":"Luego por","SSE.Views.SortDialog.textTop":"Superior","SSE.Views.SortDialog.textUp":"Mover el nivel hacia arriba","SSE.Views.SortDialog.textValues":"Valores","SSE.Views.SortDialog.textZA":"De Z a A","SSE.Views.SortDialog.txtInvalidRange":"Rango de celdas inválido.","SSE.Views.SortDialog.txtTitle":"Ordenar","SSE.Views.SortFilterDialog.textAsc":"Ascendente (de A a Z) por","SSE.Views.SortFilterDialog.textDesc":"Descendente (de Z a A) por","SSE.Views.SortFilterDialog.textNoSort":"Sin clasificación","SSE.Views.SortFilterDialog.txtTitle":"Ordenar","SSE.Views.SortFilterDialog.txtTitleValue":"Ordenar por valor","SSE.Views.SortOptionsDialog.textCase":"Distinguir mayúsculas y minúsculas","SSE.Views.SortOptionsDialog.textHeaders":"Mis datos tienen encabezados","SSE.Views.SortOptionsDialog.textLeftRight":"Ordenar de izquierda a derecha","SSE.Views.SortOptionsDialog.textOrientation":"Orientación ","SSE.Views.SortOptionsDialog.textTitle":"Opciones de ordenación","SSE.Views.SortOptionsDialog.textTopBottom":"Ordenar de arriba hacia abajo","SSE.Views.SpecialPasteDialog.textAdd":"Añadir","SSE.Views.SpecialPasteDialog.textAll":"Todo","SSE.Views.SpecialPasteDialog.textBlanks":"Saltar blancos","SSE.Views.SpecialPasteDialog.textColWidth":"Anchos de columna","SSE.Views.SpecialPasteDialog.textComments":"Comentarios","SSE.Views.SpecialPasteDialog.textDiv":"Dividir","SSE.Views.SpecialPasteDialog.textFFormat":"Fórmulas y formato","SSE.Views.SpecialPasteDialog.textFNFormat":"Fórmulas y formatos de número","SSE.Views.SpecialPasteDialog.textFormats":"Formatos","SSE.Views.SpecialPasteDialog.textFormulas":"Fórmulas ","SSE.Views.SpecialPasteDialog.textFWidth":"Fórmulas y anchos de columna","SSE.Views.SpecialPasteDialog.textMult":"Multiplicar","SSE.Views.SpecialPasteDialog.textNone":"Ninguno","SSE.Views.SpecialPasteDialog.textOperation":"Operación","SSE.Views.SpecialPasteDialog.textPaste":"Pegar","SSE.Views.SpecialPasteDialog.textSub":"Restar","SSE.Views.SpecialPasteDialog.textTitle":"Pegado especial","SSE.Views.SpecialPasteDialog.textTranspose":"Transponer","SSE.Views.SpecialPasteDialog.textValues":"Valores","SSE.Views.SpecialPasteDialog.textVFormat":"Valores y formato","SSE.Views.SpecialPasteDialog.textVNFormat":"Valores y formatos de número","SSE.Views.SpecialPasteDialog.textWBorders":"Todo excepto los bordes","SSE.Views.Spellcheck.noSuggestions":"No hay sugerencias","SSE.Views.Spellcheck.textChange":"Cambiar","SSE.Views.Spellcheck.textChangeAll":"Cambiar todo","SSE.Views.Spellcheck.textIgnore":"Ignorar","SSE.Views.Spellcheck.textIgnoreAll":"Ignorar todo","SSE.Views.Spellcheck.txtAddToDictionary":"Añadir al diccionario","SSE.Views.Spellcheck.txtClosePanel":"Cerrar corrección ortográfica","SSE.Views.Spellcheck.txtComplete":"La corrección ortográfica se ha completado","SSE.Views.Spellcheck.txtDictionaryLanguage":"Idioma del diccionario","SSE.Views.Spellcheck.txtNextTip":"Ir a la siguiente palabra","SSE.Views.Spellcheck.txtSpelling":"Ortografía","SSE.Views.Statusbar.CopyDialog.itemMoveToEnd":"(Mover al final)","SSE.Views.Statusbar.CopyDialog.textCreateCopy":"Crear una copia","SSE.Views.Statusbar.CopyDialog.textCreateNewSpreadsheet":"(Crear nueva hoja de cálculo)","SSE.Views.Statusbar.CopyDialog.textMoveBefore":"Desplazar delante de hoja","SSE.Views.Statusbar.CopyDialog.textSpreadsheet":"Hoja de cálculo","SSE.Views.Statusbar.filteredRecordsText":"Registros filtrados: {0} de {1}","SSE.Views.Statusbar.filteredText":"Modo de filtro","SSE.Views.Statusbar.itemAverage":"Promedio","SSE.Views.Statusbar.itemCount":"Contar","SSE.Views.Statusbar.itemDelete":"Eliminar","SSE.Views.Statusbar.itemHidden":"Oculto","SSE.Views.Statusbar.itemHide":"Ocultar","SSE.Views.Statusbar.itemInsert":"Insertar","SSE.Views.Statusbar.itemMaximum":"Máximo","SSE.Views.Statusbar.itemMinimum":"Mínimo","SSE.Views.Statusbar.itemMoveOrCopy":"Mover o copiar","SSE.Views.Statusbar.itemProtect":"Proteger","SSE.Views.Statusbar.itemRename":"Cambiar nombre","SSE.Views.Statusbar.itemStatus":"Guardando estado","SSE.Views.Statusbar.itemSum":"Suma","SSE.Views.Statusbar.itemTabColor":"Color de la pestaña","SSE.Views.Statusbar.itemUnProtect":"Quitar la protección","SSE.Views.Statusbar.RenameDialog.errNameExists":"Hoja con tal nombre ya existe","SSE.Views.Statusbar.RenameDialog.errNameWrongChar":"El nombre de una hoja no puede contener los siguientes caracteres \\/*?[]: o el carácter ' como primer o último carácter","SSE.Views.Statusbar.RenameDialog.labelSheetName":"Nombre de la hoja","SSE.Views.Statusbar.selectAllSheets":"Seleccionar todas las hojas","SSE.Views.Statusbar.sheetIndexText":"Hoja {0} de {1}","SSE.Views.Statusbar.textAverage":"Promedio","SSE.Views.Statusbar.textCount":"Contar","SSE.Views.Statusbar.textMax":"Máx.","SSE.Views.Statusbar.textMin":"Mín.","SSE.Views.Statusbar.textNewColor":"Más colores","SSE.Views.Statusbar.textNoColor":"Sin color","SSE.Views.Statusbar.textSum":"Suma","SSE.Views.Statusbar.tipAddTab":"Añadir hoja","SSE.Views.Statusbar.tipFirst":"Desplazar hasta la primera hoja","SSE.Views.Statusbar.tipLast":"Desplazar hasta la última hoja","SSE.Views.Statusbar.tipListOfSheets":"Lista de hojas","SSE.Views.Statusbar.tipNext":"Desplazar la lista de hoja a la derecha","SSE.Views.Statusbar.tipPrev":"Desplazar la lista de hoja a la izquierda","SSE.Views.Statusbar.tipZoomFactor":"Ampliación","SSE.Views.Statusbar.tipZoomIn":"Acercar","SSE.Views.Statusbar.tipZoomOut":"Alejar","SSE.Views.Statusbar.ungroupSheets":"Desagrupar hojas","SSE.Views.Statusbar.zoomText":"Ampliación {0}%","SSE.Views.TableDesignTab.deleteColumnText":"Eliminar columna","SSE.Views.TableDesignTab.deleteRowText":"Eliminar fila","SSE.Views.TableDesignTab.deleteTableText":"Eliminar tabla","SSE.Views.TableDesignTab.insertColumnLeftText":"Insertar columna a la izquierda","SSE.Views.TableDesignTab.insertColumnRightText":"Insertar columna a la derecha","SSE.Views.TableDesignTab.insertRowAboveText":"Insertar fila arriba","SSE.Views.TableDesignTab.insertRowBelowText":"Insertar fila abajo","SSE.Views.TableDesignTab.selectColumnData":"Seleccionar datos de columna","SSE.Views.TableDesignTab.selectColumnText":"Seleccionar toda la columna","SSE.Views.TableDesignTab.selectRowText":"Seleccionar fila","SSE.Views.TableDesignTab.selectTableText":"Seleccionar tabla","SSE.Views.TableDesignTab.tipAltText":"Establecer título y descripción alternativos para una tabla.","SSE.Views.TableDesignTab.tipConvertRange":"Convertir esta tabla en un rango regular de celdas.","SSE.Views.TableDesignTab.tipHeaderRow":"Mostrar u ocultar la fila de encabezado en una tabla.","SSE.Views.TableDesignTab.tipInsertPivot":"Insertar tabla dinámica","SSE.Views.TableDesignTab.tipInsertSlicer":"Insertar segmentación de datos","SSE.Views.TableDesignTab.tipRemDuplicates":"Eliminación de líneas duplicadas de una hoja.","SSE.Views.TableDesignTab.tipResize":"Cambiar el tamaño de esta tabla añadiendo o quitando filas y columnas.","SSE.Views.TableDesignTab.tipRowsCols":"Filas y columnas","SSE.Views.TableDesignTab.txtAltText":"Texto alternativo","SSE.Views.TableDesignTab.txtBandedColumns":"Columnas con bandas","SSE.Views.TableDesignTab.txtBandedRows":"Filas con bandas","SSE.Views.TableDesignTab.txtConvertToRange":"Convertir al intervalo ","SSE.Views.TableDesignTab.txtFilterButton":"Botón de filtro","SSE.Views.TableDesignTab.txtFirstColumn":"Primera columna","SSE.Views.TableDesignTab.txtGroupTable_Custom":"Personalizado","SSE.Views.TableDesignTab.txtGroupTable_Dark":"Oscuro","SSE.Views.TableDesignTab.txtGroupTable_Light":"Claro","SSE.Views.TableDesignTab.txtGroupTable_Medium":"Medio","SSE.Views.TableDesignTab.txtHeaderRow":"Fila de encabezado","SSE.Views.TableDesignTab.txtLastColumn":"Última columna","SSE.Views.TableDesignTab.txtPivot":"Tabla dinámica","SSE.Views.TableDesignTab.txtRemDuplicates":"Eliminar duplicados","SSE.Views.TableDesignTab.txtResize":"Tamaño de la tabla","SSE.Views.TableDesignTab.txtRowsCols":"Filas y columnas","SSE.Views.TableDesignTab.txtSlicer":"Segmentación de datos","SSE.Views.TableDesignTab.txtTotalRow":"Fila de totales","SSE.Views.TableOptionsDialog.errorAutoFilterDataRange":"No se puede realizar la operación para el rango de celdas seleccionado.
Seleccione un rango de datos uniforme diferente del existente y vuelva a intentarlo.","SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError":"La operación no se ha podido completar para el rango de celdas seleccionado.
Seleccione un rango de modo que la primera fila de la tabla esté en la misma fila
y la tabla resultante se superponga a la actual.","SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables":"La operación no se ha podido completar para el rango de celdas seleccionado.
Seleccione un rango que no incluye otras tablas.","SSE.Views.TableOptionsDialog.errorMultiCellFormula":"Fórmulas de matriz con celdas múltiples no están permitidas en tablas.","SSE.Views.TableOptionsDialog.txtEmpty":"Este campo es obligatorio","SSE.Views.TableOptionsDialog.txtFormat":"Crear tabla","SSE.Views.TableOptionsDialog.txtInvalidRange":"¡ERROR! Rango de celdas inválido","SSE.Views.TableOptionsDialog.txtNote":"Los encabezados deben permanecer en la misma fila y el rango de la tabla resultante debe superponerse sobre el rango de la tabla original.","SSE.Views.TableOptionsDialog.txtTitle":"Mi tabla tiene encabezados","SSE.Views.TableSettingsAdvanced.textAlt":"Texto alternativo","SSE.Views.TableSettingsAdvanced.textAltDescription":"Descripción","SSE.Views.TableSettingsAdvanced.textAltTip":"Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.","SSE.Views.TableSettingsAdvanced.textAltTitle":"Título","SSE.Views.TableSettingsAdvanced.textTitle":"Tabla - Ajustes avanzados","SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom":"Personalizado","SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark":"Oscuro","SSE.Views.TableSettingsAdvanced.txtGroupTable_Light":"Claro","SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium":"Medio","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark":"Estilo de tabla oscuro","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight":"Estilo de tabla claro","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium":"Estilo de tabla medio","SSE.Views.TextArtSettings.strBackground":"Color del fondo","SSE.Views.TextArtSettings.strColor":"Color","SSE.Views.TextArtSettings.strFill":"Relleno","SSE.Views.TextArtSettings.strForeground":"Color del primer plano","SSE.Views.TextArtSettings.strPattern":"Patrón","SSE.Views.TextArtSettings.strSize":"Tamaño","SSE.Views.TextArtSettings.strStroke":"Línea","SSE.Views.TextArtSettings.strTransparency":"Opacidad ","SSE.Views.TextArtSettings.strType":"Tipo","SSE.Views.TextArtSettings.textAngle":"Ángulo","SSE.Views.TextArtSettings.textBorderSizeErr":"El valor numérico es incorrecto.
Por favor, introduzca un valor de 0 a 1584 puntos.","SSE.Views.TextArtSettings.textColor":"Relleno de color","SSE.Views.TextArtSettings.textDirection":"Dirección ","SSE.Views.TextArtSettings.textEmptyPattern":"Sin patrón","SSE.Views.TextArtSettings.textFromFile":"Desde archivo","SSE.Views.TextArtSettings.textFromUrl":"Desde URL","SSE.Views.TextArtSettings.textGradient":"Puntos de gradiente","SSE.Views.TextArtSettings.textGradientFill":"Relleno degradado","SSE.Views.TextArtSettings.textImageTexture":"Imagen o textura","SSE.Views.TextArtSettings.textLinear":"Lineal","SSE.Views.TextArtSettings.textNoFill":"Sin relleno","SSE.Views.TextArtSettings.textPatternFill":"Patrón","SSE.Views.TextArtSettings.textPosition":"Posición","SSE.Views.TextArtSettings.textRadial":"Radial","SSE.Views.TextArtSettings.textSelectTexture":"Seleccionar","SSE.Views.TextArtSettings.textStretch":"Estirar","SSE.Views.TextArtSettings.textStyle":"Estilo","SSE.Views.TextArtSettings.textTemplate":"Plantilla","SSE.Views.TextArtSettings.textTexture":"Desde textura","SSE.Views.TextArtSettings.textTile":"Mosaico","SSE.Views.TextArtSettings.textTransform":"Transformar","SSE.Views.TextArtSettings.tipAddGradientPoint":"Añadir punto de degradado","SSE.Views.TextArtSettings.tipRemoveGradientPoint":"Eliminar gradiente de punto","SSE.Views.TextArtSettings.txtBrownPaper":"Papel marrón","SSE.Views.TextArtSettings.txtCanvas":"Lienzo","SSE.Views.TextArtSettings.txtCarton":"Cartón","SSE.Views.TextArtSettings.txtDarkFabric":"Tela oscura","SSE.Views.TextArtSettings.txtGrain":"Grano","SSE.Views.TextArtSettings.txtGranite":"Granito","SSE.Views.TextArtSettings.txtGreyPaper":"Papel gris","SSE.Views.TextArtSettings.txtKnit":"Tejido","SSE.Views.TextArtSettings.txtLeather":"Piel","SSE.Views.TextArtSettings.txtNoBorders":"Sin línea","SSE.Views.TextArtSettings.txtPapyrus":"Papiro","SSE.Views.TextArtSettings.txtWood":"Madera","SSE.Views.Toolbar.capBtnAddComment":"Añadir comentario","SSE.Views.Toolbar.capBtnColorSchemas":"Colores","SSE.Views.Toolbar.capBtnComment":"Comentario","SSE.Views.Toolbar.capBtnInsHeader":"Encabezado/Pie de página","SSE.Views.Toolbar.capBtnInsSlicer":"Segmentación de datos","SSE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","SSE.Views.Toolbar.capBtnInsSymbol":"Símbolo","SSE.Views.Toolbar.capBtnMargins":"Márgenes","SSE.Views.Toolbar.capBtnPageBreak":"Saltos","SSE.Views.Toolbar.capBtnPageOrient":"Orientación","SSE.Views.Toolbar.capBtnPageSize":"Tamaño","SSE.Views.Toolbar.capBtnPrintArea":"Área de impresión","SSE.Views.Toolbar.capBtnPrintTitles":"Imprimir títulos","SSE.Views.Toolbar.capBtnScale":"Ajustar área de impresión","SSE.Views.Toolbar.capImgAlign":"Alineación","SSE.Views.Toolbar.capImgBackward":"Enviar hacia atrás","SSE.Views.Toolbar.capImgForward":"Traer adelante","SSE.Views.Toolbar.capImgGroup":"Grupo","SSE.Views.Toolbar.capInsertChart":"Diagrama","SSE.Views.Toolbar.capInsertChartRecommend":"Gráfico recomendado","SSE.Views.Toolbar.capInsertEquation":"Ecuación","SSE.Views.Toolbar.capInsertHyperlink":"Enlace","SSE.Views.Toolbar.capInsertImage":"Imagen","SSE.Views.Toolbar.capInsertShape":"Forma","SSE.Views.Toolbar.capInsertSpark":"Minigráfico","SSE.Views.Toolbar.capInsertTable":"Tabla","SSE.Views.Toolbar.capInsertText":"Cuadro de texto","SSE.Views.Toolbar.capInsertTextart":"Galería de texto","SSE.Views.Toolbar.capShapesMerge":"Fusionar formas","SSE.Views.Toolbar.mniCapitalizeWords":"Poner en mayúsculas cada palabra","SSE.Views.Toolbar.mniImageFromFile":"Imagen desde archivo","SSE.Views.Toolbar.mniImageFromStorage":"Imagen desde almacenamiento","SSE.Views.Toolbar.mniImageFromUrl":"Imagen desde url","SSE.Views.Toolbar.mniLowerCase":"minúsculas","SSE.Views.Toolbar.mniSentenceCase":"Tipo oración.","SSE.Views.Toolbar.mniToggleCase":"tIPO iNVERSO","SSE.Views.Toolbar.mniUpperCase":"MAYÚSCULAS","SSE.Views.Toolbar.textAddPrintArea":"Añadir al área de impresión","SSE.Views.Toolbar.textAlignBottom":"Alinear abajo","SSE.Views.Toolbar.textAlignCenter":"Alinear al centro","SSE.Views.Toolbar.textAlignJust":"Alineado","SSE.Views.Toolbar.textAlignLeft":"Alinear a la izquierda","SSE.Views.Toolbar.textAlignMiddle":"Alinear al medio","SSE.Views.Toolbar.textAlignRight":"Alinear a la derecha","SSE.Views.Toolbar.textAlignTop":"Alinear arriba","SSE.Views.Toolbar.textAllBorders":"Todos los bordes","SSE.Views.Toolbar.textAlpha":"Letra griega Alfa minúscula","SSE.Views.Toolbar.textAuto":"Auto","SSE.Views.Toolbar.textAutoColor":"Automático","SSE.Views.Toolbar.textAutoColumnWidth":"Ajuste automático de ancho de columna","SSE.Views.Toolbar.textAutoRowHeight":"Ajuste automático de altura de fila ","SSE.Views.Toolbar.textBetta":"Letra griega Beta minúscula","SSE.Views.Toolbar.textBlackHeart":"Corazón negro","SSE.Views.Toolbar.textBold":"Negrita","SSE.Views.Toolbar.textBordersColor":"Color del borde","SSE.Views.Toolbar.textBordersStyle":"Estilo de borde","SSE.Views.Toolbar.textBottom":"Inferior: ","SSE.Views.Toolbar.textBottomBorders":"Bordes inferiores","SSE.Views.Toolbar.textBullet":"Viñeta","SSE.Views.Toolbar.textCellAlign":"Dar formato a la alineación de celdas","SSE.Views.Toolbar.textCellFormat":"Formato","SSE.Views.Toolbar.textCenterBorders":"Bordes verticales internos","SSE.Views.Toolbar.textClearPrintArea":"Eliminar área de impresión","SSE.Views.Toolbar.textClearRule":"Eliminar reglas","SSE.Views.Toolbar.textClockwise":"Ángulo descendente","SSE.Views.Toolbar.textColorScales":"Escalas de color","SSE.Views.Toolbar.textColumns":"Columnas","SSE.Views.Toolbar.textColumnWidth":"Ancho de columna","SSE.Views.Toolbar.textCopyright":"Signo de «copyright»","SSE.Views.Toolbar.textCounterCw":"Ángulo ascendente","SSE.Views.Toolbar.textCustom":"Personalizado","SSE.Views.Toolbar.textCustomColumnWidth":"Ancho de columna personalizado","SSE.Views.Toolbar.textCustomRowHeight":"Altura de fila personalizada","SSE.Views.Toolbar.textDataBars":"Barras de datos","SSE.Views.Toolbar.textDegree":"Símbolo de grado","SSE.Views.Toolbar.textDelLeft":"Desplazar celdas a la izquierda","SSE.Views.Toolbar.textDelPageBreak":"Quitar salto de página","SSE.Views.Toolbar.textDelta":"Letra griega Delta minúscula","SSE.Views.Toolbar.textDelUp":"Desplazar celdas hacia arriba","SSE.Views.Toolbar.textDiagDownBorder":"Borde diagonal descendente","SSE.Views.Toolbar.textDiagUpBorder":"Borde diagonal ascendente","SSE.Views.Toolbar.textDirContext":"Contexto","SSE.Views.Toolbar.textDirLtr":"De izquierda a derecha","SSE.Views.Toolbar.textDirRtl":"De derecha a izquierda","SSE.Views.Toolbar.textDivision":"Signo de división","SSE.Views.Toolbar.textDollar":"Signo de dólar","SSE.Views.Toolbar.textDone":"Hecho","SSE.Views.Toolbar.textDown":"Abajo","SSE.Views.Toolbar.textEditVA":"Editar área visible","SSE.Views.Toolbar.textEntireCol":"Toda la columna","SSE.Views.Toolbar.textEntireRow":"Toda la fila","SSE.Views.Toolbar.textEuro":"Signo de euro","SSE.Views.Toolbar.textFewPages":"páginas","SSE.Views.Toolbar.textFillLeft":"A la izquierda","SSE.Views.Toolbar.textFillRight":"A la derecha","SSE.Views.Toolbar.textFormatCellFill":"Dar formato al relleno de celdas","SSE.Views.Toolbar.textFormatCells":"Dar formato a celdas","SSE.Views.Toolbar.textGreaterEqual":"Mayor o igual a","SSE.Views.Toolbar.textHeight":"Altura","SSE.Views.Toolbar.textHide":"Ocultar","SSE.Views.Toolbar.textHideVA":"Ocultar área visible","SSE.Views.Toolbar.textHorizontal":"Texto horizontal","SSE.Views.Toolbar.textInfinity":"Infinito","SSE.Views.Toolbar.textInsDown":"Desplazar celdas hacia abajo","SSE.Views.Toolbar.textInsideBorders":"Bordes internos","SSE.Views.Toolbar.textInsPageBreak":"Insertar salto de página","SSE.Views.Toolbar.textInsRight":"Desplazar celdas a la derecha","SSE.Views.Toolbar.textItalic":"Cursiva","SSE.Views.Toolbar.textItems":"Elementos","SSE.Views.Toolbar.textLandscape":"Horizontal","SSE.Views.Toolbar.textLeft":"Izquierdo: ","SSE.Views.Toolbar.textLeftBorders":"Bordes izquierdos","SSE.Views.Toolbar.textLessEqual":"Menor o igual a","SSE.Views.Toolbar.textLetterPi":"Letra griega Pi minúscula","SSE.Views.Toolbar.textLockedCell":"Celda bloqueada","SSE.Views.Toolbar.textManageRule":"Administrar reglas","SSE.Views.Toolbar.textManyPages":"páginas","SSE.Views.Toolbar.textMarginsLast":"Último personalizado","SSE.Views.Toolbar.textMarginsNarrow":"Estrecho","SSE.Views.Toolbar.textMarginsNormal":"Normal","SSE.Views.Toolbar.textMarginsWide":"Amplio","SSE.Views.Toolbar.textMiddleBorders":"Bordes horizontales internos","SSE.Views.Toolbar.textMoreBorders":"Más bordes","SSE.Views.Toolbar.textMoreFormats":"Otros formatos","SSE.Views.Toolbar.textMorePages":"Más páginas","SSE.Views.Toolbar.textMoreSymbols":"Más símbolos","SSE.Views.Toolbar.textMoveCopySheet":"Mover o copiar hoja","SSE.Views.Toolbar.textNewColor":"Más colores","SSE.Views.Toolbar.textNewRule":"Nueva regla","SSE.Views.Toolbar.textNoBorders":"Sin bordes","SSE.Views.Toolbar.textNotEqualTo":"No igual a","SSE.Views.Toolbar.textOneHalf":"Fracción vulgar a la mitad","SSE.Views.Toolbar.textOnePage":"página","SSE.Views.Toolbar.textOneQuarter":"Fracción vulgar de un cuarto","SSE.Views.Toolbar.textOutBorders":"Bordes externos","SSE.Views.Toolbar.textPageMarginsCustom":"Márgenes personalizados","SSE.Views.Toolbar.textPlusMinus":"Signo de más-menos","SSE.Views.Toolbar.textPortrait":"Vertical","SSE.Views.Toolbar.textPrint":"Imprimir","SSE.Views.Toolbar.textPrintGridlines":"Imprimir cuadrículas","SSE.Views.Toolbar.textPrintHeadings":"Imprimir encabezados","SSE.Views.Toolbar.textPrintOptions":"Opciones de impresión","SSE.Views.Toolbar.textProtectSheet":"Proteger hoja","SSE.Views.Toolbar.textRegistered":"Signo de marca registrada","SSE.Views.Toolbar.textRenameSheet":"Renombrar hoja","SSE.Views.Toolbar.textResetPageBreak":"Reiniciar todos los saltos de página","SSE.Views.Toolbar.textRight":"Derecho: ","SSE.Views.Toolbar.textRightBorders":"Bordes derechos","SSE.Views.Toolbar.textRotateDown":"Girar texto hacia abajo","SSE.Views.Toolbar.textRotateUp":"Girar texto hacia arriba","SSE.Views.Toolbar.textRowHeight":"Altura de fila","SSE.Views.Toolbar.textRows":"Filas","SSE.Views.Toolbar.textRtlSheet":"Hoja de derecha a izquierda","SSE.Views.Toolbar.textScale":"Escala","SSE.Views.Toolbar.textScaleCustom":"Personalizado","SSE.Views.Toolbar.textSection":"Signo de sección","SSE.Views.Toolbar.textSelection":"Desde la selección actual","SSE.Views.Toolbar.textSeries":"Series","SSE.Views.Toolbar.textSetPrintArea":"Establecer área de impresión","SSE.Views.Toolbar.textShapesCombine":"Combinar","SSE.Views.Toolbar.textShapesFragment":"Fragmento","SSE.Views.Toolbar.textShapesIntersect":"Formar intersección","SSE.Views.Toolbar.textShapesSubstract":"Restar","SSE.Views.Toolbar.textShapesUnion":"Unión","SSE.Views.Toolbar.textSheet":"Hoja","SSE.Views.Toolbar.textSheets":"Hojas ocultas","SSE.Views.Toolbar.textShow":"Mostrar","SSE.Views.Toolbar.textShowVA":"Muestra el área visible","SSE.Views.Toolbar.textSmile":"Cara blanca sonriente","SSE.Views.Toolbar.textSquareRoot":"Raíz cuadrada","SSE.Views.Toolbar.textStrikeout":"Tachado","SSE.Views.Toolbar.textSubscript":"Subíndice","SSE.Views.Toolbar.textSubSuperscript":"Subíndice/superíndice","SSE.Views.Toolbar.textSuperscript":"Sobreíndice","SSE.Views.Toolbar.textTabCollaboration":"Colaboración","SSE.Views.Toolbar.textTabColor":"Color de la pestaña","SSE.Views.Toolbar.textTabData":"Datos","SSE.Views.Toolbar.textTabDraw":"Dibujar","SSE.Views.Toolbar.textTabFile":"Archivo","SSE.Views.Toolbar.textTabFormula":"Fórmula","SSE.Views.Toolbar.textTabHome":"Inicio","SSE.Views.Toolbar.textTabInsert":"Insertar","SSE.Views.Toolbar.textTabLayout":"Diseño","SSE.Views.Toolbar.textTabProtect":"Protección","SSE.Views.Toolbar.textTabTableDesign":"Diseño de tabla","SSE.Views.Toolbar.textTabView":"Vista","SSE.Views.Toolbar.textThisPivot":"Desde esta tabla pivote","SSE.Views.Toolbar.textThisSheet":"Desde esta hoja","SSE.Views.Toolbar.textThisTable":"Desde esta tabla","SSE.Views.Toolbar.textTilde":"Virgulilla","SSE.Views.Toolbar.textTop":"Superior: ","SSE.Views.Toolbar.textTopBorders":"Bordes superiores","SSE.Views.Toolbar.textTradeMark":"Signo de marca registrada","SSE.Views.Toolbar.textUnderline":"Subrayar","SSE.Views.Toolbar.textUnProtectSheet":"Desproteger hoja","SSE.Views.Toolbar.textUp":"Arriba","SSE.Views.Toolbar.textVertical":"Texto vertical","SSE.Views.Toolbar.textWidth":"Ancho","SSE.Views.Toolbar.textYen":"Signo de yen","SSE.Views.Toolbar.textZoom":"Ampliación","SSE.Views.Toolbar.tipAlignBottom":"Alinear en la parte inferior","SSE.Views.Toolbar.tipAlignCenter":"Alinear al centro","SSE.Views.Toolbar.tipAlignJust":"Alineado","SSE.Views.Toolbar.tipAlignLeft":"Alinear a la izquierda","SSE.Views.Toolbar.tipAlignMiddle":"Alinear al medio","SSE.Views.Toolbar.tipAlignRight":"Alinear a la derecha","SSE.Views.Toolbar.tipAlignTop":"Alinear en la parte superior","SSE.Views.Toolbar.tipAutofilter":"Ordenar y filtrar","SSE.Views.Toolbar.tipBack":"Atrás","SSE.Views.Toolbar.tipBorders":"Bordes","SSE.Views.Toolbar.tipCellStyle":"Estilo de celda","SSE.Views.Toolbar.tipChangeCase":"Cambiar mayúsculas y minúsculas","SSE.Views.Toolbar.tipChangeChart":"Cambiar tipo de gráfico","SSE.Views.Toolbar.tipClearStyle":"Limpiar","SSE.Views.Toolbar.tipColorSchemas":"Cambiar combinación de colores","SSE.Views.Toolbar.tipCondFormat":"Formato condicional","SSE.Views.Toolbar.tipCopy":"Copiar","SSE.Views.Toolbar.tipCopyStyle":"Copiar estilo","SSE.Views.Toolbar.tipCut":"Cortar","SSE.Views.Toolbar.tipDecDecimal":"Disminuir decimales","SSE.Views.Toolbar.tipDecFont":"Reducir tamaño de letra","SSE.Views.Toolbar.tipDeleteOpt":"Eliminar celdas","SSE.Views.Toolbar.tipDigStyleAccounting":"Estilo de contabilidad","SSE.Views.Toolbar.tipDigStyleComma":"Estilo de coma","SSE.Views.Toolbar.tipDigStyleCurrency":"Estilo de moneda","SSE.Views.Toolbar.tipDigStylePercent":"Estilo de porcentajes","SSE.Views.Toolbar.tipEditChart":"Editar gráfico","SSE.Views.Toolbar.tipEditChartData":"Seleccionar datos","SSE.Views.Toolbar.tipEditChartType":"Cambiar tipo de gráfico","SSE.Views.Toolbar.tipEditHeader":"Editar encabezado o pie de página","SSE.Views.Toolbar.tipFontColor":"Color de la fuente","SSE.Views.Toolbar.tipFontName":"Fuente","SSE.Views.Toolbar.tipFontSize":"Tamaño de la fuente","SSE.Views.Toolbar.tipFormatCell":"Cambie la altura de las filas o el ancho de las columnas, organice las hojas o proteja u oculte celdas","SSE.Views.Toolbar.tipHAlighOle":"Alineación horizontal","SSE.Views.Toolbar.tipImgAlign":"Alinear objetos","SSE.Views.Toolbar.tipImgGroup":"Agrupar objetos","SSE.Views.Toolbar.tipIncDecimal":"Aumentar decimales","SSE.Views.Toolbar.tipIncFont":"Aumentar tamaño de letra","SSE.Views.Toolbar.tipInsertChart":"Insertar gráfico","SSE.Views.Toolbar.tipInsertChartRecommend":"Insertar gráfico recomendado","SSE.Views.Toolbar.tipInsertChartSpark":"Insertar gráfico","SSE.Views.Toolbar.tipInsertEquation":"Insertar ecuación","SSE.Views.Toolbar.tipInsertHorizontalText":"Insertar cuadro de texto horizontal","SSE.Views.Toolbar.tipInsertHyperlink":"Añadir enlace ","SSE.Views.Toolbar.tipInsertImage":"Insertar imagen","SSE.Views.Toolbar.tipInsertOpt":"Insertar celdas","SSE.Views.Toolbar.tipInsertShape":"Insertar forma","SSE.Views.Toolbar.tipInsertSlicer":"Insertar segmentación de datos","SSE.Views.Toolbar.tipInsertSmartArt":"Insertar SmartArt","SSE.Views.Toolbar.tipInsertSpark":"Insertar minigráfico","SSE.Views.Toolbar.tipInsertSymbol":"Insertar symboló","SSE.Views.Toolbar.tipInsertTable":"Insertar tabla","SSE.Views.Toolbar.tipInsertText":"Insertar cuadro de texto","SSE.Views.Toolbar.tipInsertTextart":"Insertar Galería de Texto","SSE.Views.Toolbar.tipInsertVerticalText":"Insertar cuadro de texto vertical","SSE.Views.Toolbar.tipMerge":"Combinar y centrar","SSE.Views.Toolbar.tipNone":"Ninguno","SSE.Views.Toolbar.tipNumFormat":"Formato de número","SSE.Views.Toolbar.tipPageBreak":"Agregue un salto de línea donde quiera que empiece la próxima página en la versión impresa","SSE.Views.Toolbar.tipPageMargins":"Márgenes de página","SSE.Views.Toolbar.tipPageOrient":"Orientación de página","SSE.Views.Toolbar.tipPageSize":"Tamaño de la página","SSE.Views.Toolbar.tipPaste":"Pegar","SSE.Views.Toolbar.tipPrColor":"Color de relleno","SSE.Views.Toolbar.tipPrint":"Imprimir","SSE.Views.Toolbar.tipPrintArea":"Área de impresión","SSE.Views.Toolbar.tipPrintQuick":"Impresión rápida","SSE.Views.Toolbar.tipPrintTitles":"Imprimir títulos","SSE.Views.Toolbar.tipRedo":"Rehacer","SSE.Views.Toolbar.tipReplace":"Reemplazar","SSE.Views.Toolbar.tipRtlSheet":"Cambiar la dirección de la hoja para que la primera columna esté a la derecha","SSE.Views.Toolbar.tipSave":"Guardar","SSE.Views.Toolbar.tipSaveCoauth":"Guarde los cambios para que otros usuarios los puedan ver.","SSE.Views.Toolbar.tipScale":"Ajustar área de impresión","SSE.Views.Toolbar.tipSelectAll":"Seleccionar todo","SSE.Views.Toolbar.tipSendBackward":"Enviar hacia atrás","SSE.Views.Toolbar.tipSendForward":"Traer adelante","SSE.Views.Toolbar.tipShapesMerge":"Fusionar formas","SSE.Views.Toolbar.tipSynchronize":"El documento ha sido cambiado por otro usuario. Por favor haga clic para guardar sus cambios y recargue las actualizaciones.","SSE.Views.Toolbar.tipTextDir":"Dirección ","SSE.Views.Toolbar.tipTextDirection":"Dirección de texto","SSE.Views.Toolbar.tipTextFormatting":"Más herramientas de formato de texto","SSE.Views.Toolbar.tipTextOrientation":"Orientación","SSE.Views.Toolbar.tipUndo":"Deshacer","SSE.Views.Toolbar.tipVAlighOle":"Alineación vertical","SSE.Views.Toolbar.tipVisibleArea":"Área visible","SSE.Views.Toolbar.tipWrap":"Ajustar texto","SSE.Views.Toolbar.txtAccounting":"Contabilidad","SSE.Views.Toolbar.txtAdditional":"Adicional","SSE.Views.Toolbar.txtAscending":"Ascendente","SSE.Views.Toolbar.txtAutosumTip":"Sumatoria","SSE.Views.Toolbar.txtCellStyle":"Estilo de celda","SSE.Views.Toolbar.txtClearAll":"Todo","SSE.Views.Toolbar.txtClearComments":"Comentarios","SSE.Views.Toolbar.txtClearFilter":"Borrar filtro","SSE.Views.Toolbar.txtClearFormat":"Formato","SSE.Views.Toolbar.txtClearFormula":"Función","SSE.Views.Toolbar.txtClearHyper":"Enlaces","SSE.Views.Toolbar.txtClearText":"Texto","SSE.Views.Toolbar.txtCurrency":"Moneda","SSE.Views.Toolbar.txtCustom":"Personalizado","SSE.Views.Toolbar.txtDate":"Fecha","SSE.Views.Toolbar.txtDateLong":"Fecha larga","SSE.Views.Toolbar.txtDateShort":"Fecha corta","SSE.Views.Toolbar.txtDateTime":"Fecha y hora","SSE.Views.Toolbar.txtDescending":"Descendente","SSE.Views.Toolbar.txtDollar":"$ Dólar","SSE.Views.Toolbar.txtEuro":"€ Euro","SSE.Views.Toolbar.txtExp":"Exponencial","SSE.Views.Toolbar.txtFillNum":"Rellenar","SSE.Views.Toolbar.txtFilter":"Filtro","SSE.Views.Toolbar.txtFormula":"Insertar función","SSE.Views.Toolbar.txtFraction":"Fracción","SSE.Views.Toolbar.txtFranc":"CHF Franco Suizo","SSE.Views.Toolbar.txtGeneral":"General","SSE.Views.Toolbar.txtInteger":"Entero","SSE.Views.Toolbar.txtManageRange":"Administrador de nombre","SSE.Views.Toolbar.txtMergeAcross":"Combinar horizontalmente","SSE.Views.Toolbar.txtMergeCells":"Combinar celdas","SSE.Views.Toolbar.txtMergeCenter":"Unir y centrar","SSE.Views.Toolbar.txtNamedRange":"Bandas nombradas","SSE.Views.Toolbar.txtNewRange":"Definir nombre","SSE.Views.Toolbar.txtNoBorders":"Sin bordes","SSE.Views.Toolbar.txtNumber":"Número","SSE.Views.Toolbar.txtPasteRange":"Pegar nombre","SSE.Views.Toolbar.txtPercentage":"Porcentaje","SSE.Views.Toolbar.txtPound":"£ Libra","SSE.Views.Toolbar.txtRouble":"₽ Rublo","SSE.Views.Toolbar.txtScientific":"Científico","SSE.Views.Toolbar.txtSearch":"Buscar","SSE.Views.Toolbar.txtSort":"Ordenar","SSE.Views.Toolbar.txtSortAZ":"Clasificar en orden ascendente","SSE.Views.Toolbar.txtSortZA":"Clasificar en orden descendente","SSE.Views.Toolbar.txtSpecial":"Especial","SSE.Views.Toolbar.txtTableTemplate":"Formatear como plantilla de tabla","SSE.Views.Toolbar.txtText":"Texto","SSE.Views.Toolbar.txtTime":"Hora","SSE.Views.Toolbar.txtUnmerge":"Separar celdas","SSE.Views.Toolbar.txtYen":"¥ Yen","SSE.Views.Top10FilterDialog.textType":"Mostrar","SSE.Views.Top10FilterDialog.txtBottom":"Inferior","SSE.Views.Top10FilterDialog.txtBy":"por","SSE.Views.Top10FilterDialog.txtItems":"Artículo","SSE.Views.Top10FilterDialog.txtPercent":"Por ciento","SSE.Views.Top10FilterDialog.txtSum":"Suma","SSE.Views.Top10FilterDialog.txtTitle":"10 principales del autofiltro","SSE.Views.Top10FilterDialog.txtTop":"Superior","SSE.Views.Top10FilterDialog.txtValueTitle":"Filtro de los 10 principales","SSE.Views.ValueFieldSettingsDialog.textNext":"(siguiente)","SSE.Views.ValueFieldSettingsDialog.textNumFormat":"Formato de número","SSE.Views.ValueFieldSettingsDialog.textPrev":"(anterior)","SSE.Views.ValueFieldSettingsDialog.textTitle":"Ajustes del campo de valor","SSE.Views.ValueFieldSettingsDialog.txtAverage":"Promedio","SSE.Views.ValueFieldSettingsDialog.txtBaseField":"Campo base","SSE.Views.ValueFieldSettingsDialog.txtBaseItem":"Elemento base","SSE.Views.ValueFieldSettingsDialog.txtByField":"%1 de %2","SSE.Views.ValueFieldSettingsDialog.txtCount":"Contar","SSE.Views.ValueFieldSettingsDialog.txtCountNums":"Contar números","SSE.Views.ValueFieldSettingsDialog.txtCustomName":"Nombre personalizado","SSE.Views.ValueFieldSettingsDialog.txtDifference":"Diferencia de","SSE.Views.ValueFieldSettingsDialog.txtIndex":"Índice","SSE.Views.ValueFieldSettingsDialog.txtMax":"Máx.","SSE.Views.ValueFieldSettingsDialog.txtMin":"Mín.","SSE.Views.ValueFieldSettingsDialog.txtNormal":"Sin cálculo","SSE.Views.ValueFieldSettingsDialog.txtPercent":"Porcentaje de","SSE.Views.ValueFieldSettingsDialog.txtPercentDiff":"Diferencia de porcentaje de","SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol":"Porcentaje de columnas","SSE.Views.ValueFieldSettingsDialog.txtPercentOfGrand":"% del total general","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParent":"% del total principal","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentCol":"% del total de columnas principales","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentRow":"% del total de filas principales","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow":"Porcentaje del total","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRunTotal":"% del total en","SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal":"Porcentaje de filas","SSE.Views.ValueFieldSettingsDialog.txtProduct":"Producto","SSE.Views.ValueFieldSettingsDialog.txtRankAscending":"Clasificar de menor a mayor","SSE.Views.ValueFieldSettingsDialog.txtRankDescending":"Clasificar de mayor a menor","SSE.Views.ValueFieldSettingsDialog.txtRunTotal":"Total en","SSE.Views.ValueFieldSettingsDialog.txtShowAs":"Mostrar valores como","SSE.Views.ValueFieldSettingsDialog.txtSourceName":"Nombre de origen:","SSE.Views.ValueFieldSettingsDialog.txtStdDev":"DesvEst","SSE.Views.ValueFieldSettingsDialog.txtStdDevp":"DesvEstP","SSE.Views.ValueFieldSettingsDialog.txtSum":"Suma","SSE.Views.ValueFieldSettingsDialog.txtSummarize":"Resumir campo de valor por","SSE.Views.ValueFieldSettingsDialog.txtVar":"Var","SSE.Views.ValueFieldSettingsDialog.txtVarp":"Varp","SSE.Views.ViewManagerDlg.closeButtonText":"Cerrar","SSE.Views.ViewManagerDlg.guestText":"Invitado","SSE.Views.ViewManagerDlg.lockText":"Bloqueado","SSE.Views.ViewManagerDlg.textDelete":"Eliminar","SSE.Views.ViewManagerDlg.textDuplicate":"Duplicar","SSE.Views.ViewManagerDlg.textEmpty":"Aún no se han creado vistas.","SSE.Views.ViewManagerDlg.textGoTo":"Ir a vista","SSE.Views.ViewManagerDlg.textLongName":"Escriba un nombre que tenga menos de 128 caracteres.","SSE.Views.ViewManagerDlg.textNew":"Nuevo","SSE.Views.ViewManagerDlg.textRename":"Cambiar nombre","SSE.Views.ViewManagerDlg.textRenameError":"El nombre de la vista no debe estar vacío.","SSE.Views.ViewManagerDlg.textRenameLabel":"Cambiar el nombre de la vista","SSE.Views.ViewManagerDlg.textViews":"Vistas de hoja","SSE.Views.ViewManagerDlg.tipIsLocked":"Este elemento está siendo editado por otro usuario.","SSE.Views.ViewManagerDlg.txtTitle":"Administrador de vista de hoja","SSE.Views.ViewManagerDlg.warnDeleteAnotherView":"¿Está seguro de que desea eliminar esta vista de hoja?","SSE.Views.ViewManagerDlg.warnDeleteView":"Está tratando de eliminar la vista actualmente habilitada '%1'. ¿Cerrar esta vista y eliminarla?","SSE.Views.ViewTab.capBtnFreeze":"Congelar paneles","SSE.Views.ViewTab.capBtnSheetView":"Vista de hoja","SSE.Views.ViewTab.textAlwaysShowToolbar":"Mostrar siempre la barra de herramientas","SSE.Views.ViewTab.textClose":"Cerrar","SSE.Views.ViewTab.textCombineSheetAndStatusBars":"Combinar las barras de hoja y de estado","SSE.Views.ViewTab.textCreate":"Nuevo","SSE.Views.ViewTab.textDefault":"Predeterminado","SSE.Views.ViewTab.textFill":"Rellenar","SSE.Views.ViewTab.textFormula":"Barra de fórmulas","SSE.Views.ViewTab.textFreezeCol":"Bloquear primera columna","SSE.Views.ViewTab.textFreezeRow":"Bloquear fila superior","SSE.Views.ViewTab.textGridlines":"Líneas de cuadrícula","SSE.Views.ViewTab.textHeadings":"Encabezados","SSE.Views.ViewTab.textInterfaceTheme":"Tema de la interfaz","SSE.Views.ViewTab.textLeftMenu":"Panel izquierdo","SSE.Views.ViewTab.textLine":"Línea","SSE.Views.ViewTab.textMacros":"Macros","SSE.Views.ViewTab.textManager":"Administrador de vista","SSE.Views.ViewTab.textPauseMacro":"Pausar la grabación","SSE.Views.ViewTab.textRecMacro":"Grabar macro","SSE.Views.ViewTab.textResumeMacro":"Continuar la grabación","SSE.Views.ViewTab.textRightMenu":"Panel derecho","SSE.Views.ViewTab.textShowFrozenPanesShadow":"Mostrar la sombra de paneles congelados","SSE.Views.ViewTab.textStopMacro":"Detener la grabación","SSE.Views.ViewTab.textTabStyle":"Estilo de pestaña","SSE.Views.ViewTab.textUnFreeze":"Descongelar paneles","SSE.Views.ViewTab.textZeros":"Mostrar ceros","SSE.Views.ViewTab.textZoom":"Ampliación","SSE.Views.ViewTab.tipClose":"Cerrar vista de hoja","SSE.Views.ViewTab.tipCreate":"Crear vista de hoja","SSE.Views.ViewTab.tipFreeze":"Congelar paneles","SSE.Views.ViewTab.tipInterfaceTheme":"Tema de la interfaz","SSE.Views.ViewTab.tipMacros":"Macros","SSE.Views.ViewTab.tipPauseMacro":"Pausar la grabación","SSE.Views.ViewTab.tipRecMacro":"Grabar macro","SSE.Views.ViewTab.tipResumeMacro":"Continuar la grabación","SSE.Views.ViewTab.tipSheetView":"Vista de hoja","SSE.Views.ViewTab.tipStopMacro":"Detener la grabación","SSE.Views.ViewTab.tipViewNormal":"Ver el documento en vista Normal","SSE.Views.ViewTab.tipViewPageBreak":"Ver dónde aparecerán los saltos de página al imprimir el documento","SSE.Views.ViewTab.txtViewNormal":"Normal","SSE.Views.ViewTab.txtViewPageBreak":"Vista previa de salto de página","SSE.Views.WatchDialog.closeButtonText":"Cerrar","SSE.Views.WatchDialog.textAdd":"Añadir inspección","SSE.Views.WatchDialog.textBook":"Libro","SSE.Views.WatchDialog.textCell":"Celda","SSE.Views.WatchDialog.textDelete":"Eliminar inspección","SSE.Views.WatchDialog.textDeleteAll":"Eliminar todo","SSE.Views.WatchDialog.textFormula":"Fórmula","SSE.Views.WatchDialog.textName":"Nombre","SSE.Views.WatchDialog.textSheet":"Hoja","SSE.Views.WatchDialog.textValue":"Valor","SSE.Views.WatchDialog.txtTitle":"Ventana de inspección","SSE.Views.WBProtection.hintAllowRanges":"Permitir editar rangos","SSE.Views.WBProtection.hintProtectRange":"Proteger rango","SSE.Views.WBProtection.hintProtectSheet":"Proteger hoja","SSE.Views.WBProtection.hintProtectWB":"Proteger libro","SSE.Views.WBProtection.txtAllowRanges":"Permitir editar rangos","SSE.Views.WBProtection.txtHiddenFormula":"Fórmulas ocultas","SSE.Views.WBProtection.txtLockedCell":"Celda bloqueada","SSE.Views.WBProtection.txtLockedShape":"Forma bloqueada","SSE.Views.WBProtection.txtLockedText":"Bloquear texto","SSE.Views.WBProtection.txtProtectRange":"Proteger rango","SSE.Views.WBProtection.txtProtectSheet":"Proteger hoja","SSE.Views.WBProtection.txtProtectWB":"Proteger libro","SSE.Views.WBProtection.txtSheetUnlockDescription":"Introduzca una contraseña para quitarle la protección a la hoja","SSE.Views.WBProtection.txtSheetUnlockTitle":"Desproteger hoja","SSE.Views.WBProtection.txtWBUnlockDescription":"Introduzca una contraseña para quitarle la protección al libro","SSE.Views.WBProtection.txtWBUnlockTitle":"Desproteger libro"} \ No newline at end of file diff --git a/public/web-apps/apps/spreadsheeteditor/main/locale/ja.json b/public/web-apps/apps/spreadsheeteditor/main/locale/ja.json index 78ec5881e..37c6f2de2 100644 --- a/public/web-apps/apps/spreadsheeteditor/main/locale/ja.json +++ b/public/web-apps/apps/spreadsheeteditor/main/locale/ja.json @@ -1 +1 @@ -{"cancelButtonText":"キャンセル","Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.ExternalLinks.textAddExternalData":"外部ソースへのリンクが追加されました。このようなリンクは、「データ」タブで更新することができます。","Common.Controllers.ExternalLinks.textContinue":"続ける","Common.Controllers.ExternalLinks.textDontUpdate":"アップデートしない","Common.Controllers.ExternalLinks.textTurnOff":"自動アップデートをオフにする","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"エラー:アップデートに失敗しました","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdate":"このワークブックには、自動的に更新される外部ソースへのリンクが含まれています。これは安全ではない可能性があります。

リンク先を信頼する場合は、「続行」をクリックしてください。","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdateDE":"このドキュメントには自動的に更新される外部ソースへのリンクが含まれています。これは安全ではない可能性があります。

それらを信頼する場合は、「続行」を押してください。","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdatePE":"このプレゼンテーションは自動的に更新される外部ソースへのリンクが含まれています。これは安全ではない可能性があります。

信頼できる場合は、「続行」を押してください。","Common.Controllers.ExternalLinks.warnUpdateExternalData":"このワークブックには、安全でない可能性のある1つまたは複数の外部ソースへのリンクが含まれています。
リンクを信頼する場合は、最新のデータを取得するためにそれらを更新してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"このドキュメントには、安全でない可能性のある外部ソースへのリンクが1つ以上含まれています。
リンクを信頼できる場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"このプレゼンテーションには、安全でない可能性のある外部ソースへのリンクが含まれています。
リンクを信頼する場合は、更新して最新のデータを取得してください。","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"履歴の読み込みに失敗しました","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","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.textColumnSpark":"縦棒グラフ","Common.define.chartData.textCombo":"複合","Common.define.chartData.textComboAreaBar":"積み上げ面 - 集合縦棒","Common.define.chartData.textComboBarLine":"集合縦棒 - 線","Common.define.chartData.textComboBarLineSecondary":"集合縦棒 - 第2軸の折れ線","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.textLineSpark":"グラフ","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.textRadar":"レーダーチャート","Common.define.chartData.textRadarFilled":"塗りつぶしレーダー","Common.define.chartData.textRadarMarker":"マーカー付きレーダー","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.chartData.textSurface":"表面","Common.define.chartData.textWinLossSpark":"勝ち/負け","Common.define.conditionalData.exampleText":"AaBbCcYyZz","Common.define.conditionalData.noFormatText":"書式設定しない","Common.define.conditionalData.text1Above":"より 1 標準偏差上","Common.define.conditionalData.text1Below":"より 1 標準偏差下","Common.define.conditionalData.text2Above":"より 2 標準偏差上","Common.define.conditionalData.text2Below":"より 2 標準偏差下","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.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.textText":"テキスト","Common.define.conditionalData.textThisMonth":"今月","Common.define.conditionalData.textThisWeek":"今週","Common.define.conditionalData.textToday":"今日","Common.define.conditionalData.textTomorrow":"明日","Common.define.conditionalData.textTop":"トップ","Common.define.conditionalData.textUnique":"一意","Common.define.conditionalData.textValue":"値が","Common.define.conditionalData.textYesterday":"昨日","Common.define.smartArt.textAccentedPicture":"アクセント付きの図","Common.define.smartArt.textAccentProcess":"アクセントプロセス","Common.define.smartArt.textAlternatingFlow":"波型ステップ","Common.define.smartArt.textAlternatingHexagons":"左右交替積み上げ六角形","Common.define.smartArt.textAlternatingPictureBlocks":"左右交替積み上げ画像ブロック","Common.define.smartArt.textAlternatingPictureCircles":"円形付き画像ジグザグ表示","Common.define.smartArt.textArchitectureLayout":"アーキテクチャ レイアウト","Common.define.smartArt.textArrowRibbon":"リボン状の矢印","Common.define.smartArt.textAscendingPictureAccentProcess":"アクセント画像付き上昇ステップ","Common.define.smartArt.textBalance":"バランス","Common.define.smartArt.textBasicBendingProcess":"基本蛇行ステップ","Common.define.smartArt.textBasicBlockList":"カード型リスト","Common.define.smartArt.textBasicChevronProcess":"プロセス","Common.define.smartArt.textBasicCycle":"基本の循環","Common.define.smartArt.textBasicMatrix":"基本マトリックス","Common.define.smartArt.textBasicPie":"円グラフ","Common.define.smartArt.textBasicProcess":"基本ステップ","Common.define.smartArt.textBasicPyramid":"基本ピラミッド","Common.define.smartArt.textBasicRadial":"基本放射","Common.define.smartArt.textBasicTarget":"ターゲット","Common.define.smartArt.textBasicTimeline":"タイムライン","Common.define.smartArt.textBasicVenn":"基本ベン図","Common.define.smartArt.textBendingPictureAccentList":"画像付きカード型リスト","Common.define.smartArt.textBendingPictureBlocks":"自動配置の画像ブロック","Common.define.smartArt.textBendingPictureCaption":"自動配置の表題付き画像","Common.define.smartArt.textBendingPictureCaptionList":"自動配置の表題付き画像レイアウト","Common.define.smartArt.textBendingPictureSemiTranparentText":"自動配置の半透明テキスト付き画像","Common.define.smartArt.textBlockCycle":"ボックス循環","Common.define.smartArt.textBubblePictureList":"バブル状画像リスト","Common.define.smartArt.textCaptionedPictures":"表題付き画像","Common.define.smartArt.textChevronAccentProcess":"アクセントステップ","Common.define.smartArt.textChevronList":"プロセス リスト","Common.define.smartArt.textCircleAccentTimeline":"円形組み合わせタイムライン","Common.define.smartArt.textCircleArrowProcess":"円形矢印プロセス","Common.define.smartArt.textCirclePictureHierarchy":"円形画像を使用した階層","Common.define.smartArt.textCircleProcess":"円形プロセス","Common.define.smartArt.textCircleRelationship":"円の関連付け","Common.define.smartArt.textCircularBendingProcess":"円形蛇行ステップ","Common.define.smartArt.textCircularPictureCallout":"円形画像を使った吹き出し","Common.define.smartArt.textClosedChevronProcess":"開始点強調型プロセス","Common.define.smartArt.textContinuousArrowProcess":"大きな矢印のプロセス","Common.define.smartArt.textContinuousBlockProcess":"矢印と長方形のプロセス","Common.define.smartArt.textContinuousCycle":"連続性強調循環","Common.define.smartArt.textContinuousPictureList":"矢印付き画像リスト","Common.define.smartArt.textConvergingArrows":"内向き矢印","Common.define.smartArt.textConvergingRadial":"収束ラジアル","Common.define.smartArt.textConvergingText":"内向きテキスト","Common.define.smartArt.textCounterbalanceArrows":"対立とバランスの矢印","Common.define.smartArt.textCycle":"循環","Common.define.smartArt.textCycleMatrix":"循環マトリックス","Common.define.smartArt.textDescendingBlockList":"ブロックの降順リスト","Common.define.smartArt.textDescendingProcess":"降順プロセス","Common.define.smartArt.textDetailedProcess":"詳述プロセス","Common.define.smartArt.textDivergingArrows":"左右逆方向矢印","Common.define.smartArt.textDivergingRadial":"矢印付き放射","Common.define.smartArt.textEquation":"数式","Common.define.smartArt.textFramedTextPicture":"フレームに表示されるテキスト画像","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"歯車","Common.define.smartArt.textGridMatrix":"グリッド マトリックス","Common.define.smartArt.textGroupedList":"グループ リスト","Common.define.smartArt.textHalfCircleOrganizationChart":"アーチ型線で飾られた組織図","Common.define.smartArt.textHexagonCluster":"蜂の巣状の六角形","Common.define.smartArt.textHexagonRadial":"六角形放射","Common.define.smartArt.textHierarchy":"階層","Common.define.smartArt.textHierarchyList":"階層リスト","Common.define.smartArt.textHorizontalBulletList":"横方向箇条書きリスト","Common.define.smartArt.textHorizontalHierarchy":"横方向階層","Common.define.smartArt.textHorizontalLabeledHierarchy":"ラベル付き横方向階層","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"複数レベル対応の横方向階層","Common.define.smartArt.textHorizontalOrganizationChart":"水平方向の組織図","Common.define.smartArt.textHorizontalPictureList":"横方向画像リスト","Common.define.smartArt.textIncreasingArrowProcess":"上昇矢印のプロセス","Common.define.smartArt.textIncreasingCircleProcess":"上昇円プロセス","Common.define.smartArt.textInterconnectedBlockProcess":"相互接続された長方形のプロセス","Common.define.smartArt.textInterconnectedRings":"互いにつながったリング","Common.define.smartArt.textInvertedPyramid":"反転ピラミッド","Common.define.smartArt.textLabeledHierarchy":"ラベル付き階層","Common.define.smartArt.textLinearVenn":"横方向ベン図","Common.define.smartArt.textLinedList":"線区切りリスト","Common.define.smartArt.textList":"リスト","Common.define.smartArt.textMatrix":"マトリックス","Common.define.smartArt.textMultidirectionalCycle":"双方向循環","Common.define.smartArt.textNameAndTitleOrganizationChart":"氏名/役職名付き組織図","Common.define.smartArt.textNestedTarget":"包含","Common.define.smartArt.textNondirectionalCycle":"矢印無し循環","Common.define.smartArt.textOpposingArrows":"上下逆方向矢印","Common.define.smartArt.textOpposingIdeas":"対立する案","Common.define.smartArt.textOrganizationChart":"組織図","Common.define.smartArt.textOther":"その他","Common.define.smartArt.textPhasedProcess":"フェーズ プロセス","Common.define.smartArt.textPicture":"画像","Common.define.smartArt.textPictureAccentBlocks":"画像アクセントのブロック","Common.define.smartArt.textPictureAccentList":"画像アクセントのリスト","Common.define.smartArt.textPictureAccentProcess":"画像アクセントのプロセス","Common.define.smartArt.textPictureCaptionList":"画像キャプションのリスト","Common.define.smartArt.textPictureFrame":"フォトフレーム","Common.define.smartArt.textPictureGrid":"画像グリッド","Common.define.smartArt.textPictureLineup":"画像ラインアップ","Common.define.smartArt.textPictureOrganizationChart":"画像付き組織図","Common.define.smartArt.textPictureStrips":"画像付きラベル","Common.define.smartArt.textPieProcess":"円グラフのプロセス","Common.define.smartArt.textPlusAndMinus":"プラスとマイナス","Common.define.smartArt.textProcess":"プロセス","Common.define.smartArt.textProcessArrows":"矢印型ステップ","Common.define.smartArt.textProcessList":"プロセスのリスト","Common.define.smartArt.textPyramid":"ピラミッド","Common.define.smartArt.textPyramidList":"ピラミッドのリスト","Common.define.smartArt.textRadialCluster":"放射ブロック","Common.define.smartArt.textRadialCycle":"中心付き循環","Common.define.smartArt.textRadialList":"放射リスト","Common.define.smartArt.textRadialPictureList":"放射画像リスト","Common.define.smartArt.textRadialVenn":"放射型ベン図","Common.define.smartArt.textRandomToResultProcess":"複数案をまとめるステップ","Common.define.smartArt.textRelationship":"関係","Common.define.smartArt.textRepeatingBendingProcess":"改行型蛇行ステップ","Common.define.smartArt.textReverseList":"逆順リスト","Common.define.smartArt.textSegmentedCycle":"円型循環","Common.define.smartArt.textSegmentedProcess":"分割ステップ","Common.define.smartArt.textSegmentedPyramid":"分割ピラミッド","Common.define.smartArt.textSnapshotPictureList":"スナップショット画像リスト","Common.define.smartArt.textSpiralPicture":"渦巻き画像","Common.define.smartArt.textSquareAccentList":"箇条書き記号アクセントのリスト","Common.define.smartArt.textStackedList":"積み上げリスト","Common.define.smartArt.textStackedVenn":"包含型ベン図","Common.define.smartArt.textStaggeredProcess":"段違いステップ","Common.define.smartArt.textStepDownProcess":"ステップ ダウンのプロセス","Common.define.smartArt.textStepUpProcess":"ステップアップのプロセス","Common.define.smartArt.textSubStepProcess":"サブステップのプロセス","Common.define.smartArt.textTabbedArc":"円弧状タブ","Common.define.smartArt.textTableHierarchy":"積み木型の階層","Common.define.smartArt.textTableList":"表型リスト","Common.define.smartArt.textTabList":"タブ付きリスト","Common.define.smartArt.textTargetList":"ターゲットのリスト","Common.define.smartArt.textTextCycle":"テキスト循環","Common.define.smartArt.textThemePictureAccent":"テーマ画像アクセント","Common.define.smartArt.textThemePictureAlternatingAccent":"テーマ画像交互のアクセント","Common.define.smartArt.textThemePictureGrid":"テーマ画像グリッド","Common.define.smartArt.textTitledMatrix":"タイトル付きマトリックス","Common.define.smartArt.textTitledPictureAccentList":"画像付き横方向リスト","Common.define.smartArt.textTitledPictureBlocks":"タイトル付き画像ブロック","Common.define.smartArt.textTitlePictureLineup":"タイトル付き画像ラインアップ","Common.define.smartArt.textTrapezoidList":"台形リスト","Common.define.smartArt.textUpwardArrow":"上向き矢印","Common.define.smartArt.textVaryingWidthList":"可変幅リスト","Common.define.smartArt.textVerticalAccentList":"縦方向アクセントのリスト","Common.define.smartArt.textVerticalArrowList":"縦方向矢印リスト","Common.define.smartArt.textVerticalBendingProcess":"縦型蛇行ステップ","Common.define.smartArt.textVerticalBlockList":"縦方向ボックス リスト","Common.define.smartArt.textVerticalBoxList":"縦方向リスト","Common.define.smartArt.textVerticalBracketList":"縦方向ブラケット リスト","Common.define.smartArt.textVerticalBulletList":"縦方向箇条書きリスト","Common.define.smartArt.textVerticalChevronList":"縦方向プロセス","Common.define.smartArt.textVerticalCircleList":"縦方向円リスト","Common.define.smartArt.textVerticalCurvedList":"縦方向カーブのリスト","Common.define.smartArt.textVerticalEquation":"縦型の数式","Common.define.smartArt.textVerticalPictureAccentList":"縦方向円形画像リスト","Common.define.smartArt.textVerticalPictureList":"縦方向画像リスト","Common.define.smartArt.textVerticalProcess":"縦方向ステップ","Common.Translation.textMoreButton":"もっと","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"見に開く","Common.UI.ButtonColored.textAutoColor":"自動","Common.UI.ButtonColored.textEyedropper":"スポイト","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":"金","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":"木","Common.UI.Calendar.textShortTuesday":"火","Common.UI.Calendar.textShortWednesday":"水","Common.UI.Calendar.textYears":"年","Common.UI.ComboBorderSize.txtNoBorders":"枠線なし","Common.UI.ComboBorderSizeEditable.txtNoBorders":"枠線なし","Common.UI.ComboDataView.emptyComboText":"スタイルなし","Common.UI.ExtendedColorDialog.addButtonText":"追加","Common.UI.ExtendedColorDialog.textCurrent":"現在","Common.UI.ExtendedColorDialog.textHexErr":"入力された値が正しくありません。
000000〜FFFFFFの数値を入力してください。","Common.UI.ExtendedColorDialog.textNew":"新しい","Common.UI.ExtendedColorDialog.textRGBErr":"入力された値が正しくありません。
0〜255の数値を入力してください。","Common.UI.HSBColorPicker.textNoColor":"色なし","Common.UI.InputField.txtEmpty":"このフィールドは必須です","Common.UI.InputFieldBtnCalendar.textDate":"日付の選択","Common.UI.InputFieldBtnPassword.textHintHidePwd":"パスワードを表示しない","Common.UI.InputFieldBtnPassword.textHintHold":"長押しでパスワード表示","Common.UI.InputFieldBtnPassword.textHintShowPwd":"パスワードを表示する","Common.UI.SearchBar.textFind":"検索する","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果を強調表示","Common.UI.SearchDialog.textMatchCase":"大文字と小文字の区別","Common.UI.SearchDialog.textReplaceDef":"代替テキストを入力してください","Common.UI.SearchDialog.textSearchStart":"ここでテキストを挿入してください。","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索","Common.UI.SearchDialog.textWholeWords":"単語全体","Common.UI.SearchDialog.txtBtnHideReplace":"変更を表示しない","Common.UI.SearchDialog.txtBtnReplace":"置き換え","Common.UI.SearchDialog.txtBtnReplaceAll":"全ての置き換え","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"ドキュメントは他のユーザーによって変更されました。
変更を保存するためにここでクリックし、アップデートを再ロードしてください。","Common.UI.ThemeColorPalette.textRecentColors":"最近使った色","Common.UI.ThemeColorPalette.textStandartColors":"標準色","Common.UI.ThemeColorPalette.textThemeColors":"テーマの色","Common.UI.Themes.txtThemeClassicLight":"明るい(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"暗い","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"明るい","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":" 警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"アクセント","Common.Utils.ThemeColor.txtAqua":"水色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黒色","Common.Utils.ThemeColor.txtBlue":"青色","Common.Utils.ThemeColor.txtBrightGreen":"明るい緑","Common.Utils.ThemeColor.txtBrown":"茶色","Common.Utils.ThemeColor.txtDarkBlue":"濃い青色","Common.Utils.ThemeColor.txtDarker":"より濃い","Common.Utils.ThemeColor.txtDarkGray":"濃い灰色","Common.Utils.ThemeColor.txtDarkGreen":"濃い緑色","Common.Utils.ThemeColor.txtDarkPurple":"濃い紫色","Common.Utils.ThemeColor.txtDarkRed":"濃い赤色","Common.Utils.ThemeColor.txtDarkTeal":"濃い青緑色","Common.Utils.ThemeColor.txtDarkYellow":"濃い黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"緑色","Common.Utils.ThemeColor.txtIndigo":"インディゴ","Common.Utils.ThemeColor.txtLavender":"ラベンダー","Common.Utils.ThemeColor.txtLightBlue":"明るい青色","Common.Utils.ThemeColor.txtLighter":"より明るい","Common.Utils.ThemeColor.txtLightGray":"明るい灰色","Common.Utils.ThemeColor.txtLightGreen":"明るい緑色","Common.Utils.ThemeColor.txtLightOrange":"明るいオレンジ色","Common.Utils.ThemeColor.txtLightYellow":"明るい黄色","Common.Utils.ThemeColor.txtOrange":"オレンジ色","Common.Utils.ThemeColor.txtPink":"ピンク色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"赤色","Common.Utils.ThemeColor.txtRose":"ローズ色","Common.Utils.ThemeColor.txtSkyBlue":"スカイブルー色","Common.Utils.ThemeColor.txtTeal":"青緑色","Common.Utils.ThemeColor.txttext":"テキスト","Common.Utils.ThemeColor.txtTurquosie":"ターコイズ色","Common.Utils.ThemeColor.txtViolet":"バイオレット色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"アドレス:","Common.Views.About.txtLicensee":"ライセンス所有者","Common.Views.About.txtLicensor":"ライセンサー","Common.Views.About.txtMail":"メール:","Common.Views.About.txtPoweredBy":"によって提供されています","Common.Views.About.txtTel":"電話番号:","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":"削除する","Common.Views.AutoCorrectDialog.textFLSentence":"文章の最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textHyperlink":"インターネットとネットワークのアドレスをハイパーリンクに変更する","Common.Views.AutoCorrectDialog.textMathCorrect":"数式オートコレクト","Common.Views.AutoCorrectDialog.textNewRowCol":"テーブルに新しい行と列を含める","Common.Views.AutoCorrectDialog.textRecognized":"認識された関数","Common.Views.AutoCorrectDialog.textRecognizedDesc":"以下の式は、認識される数式です。 自動的にイタリック体になることはありません。","Common.Views.AutoCorrectDialog.textReplace":"置き換える","Common.Views.AutoCorrectDialog.textReplaceText":"入力時に置き換える\n\t","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.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"ここでメッセージを挿入してください","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.mniFilterComments":"コメントの表示","Common.Views.Comments.mniFilterGroups":"グループでフィルター","Common.Views.Comments.mniPositionAsc":"上から","Common.Views.Comments.mniPositionDesc":"下から","Common.Views.Comments.textAdd":"追加","Common.Views.Comments.textAddComment":"コメントを追加","Common.Views.Comments.textAddCommentToDoc":"ドキュメントにコメントを追加","Common.Views.Comments.textAddReply":"返信を追加","Common.Views.Comments.textAll":"すべて","Common.Views.Comments.textAnonym":"ゲスト","Common.Views.Comments.textCancel":"キャンセル","Common.Views.Comments.textClose":"閉じる","Common.Views.Comments.textClosePanel":"コメントを閉じる","Common.Views.Comments.textComment":"コメント","Common.Views.Comments.textComments":"コメント","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"ここでコメントを挿入してください。","Common.Views.Comments.textHintAddComment":"コメントを追加","Common.Views.Comments.textOpen":"開く","Common.Views.Comments.textOpenAgain":"もう一度開く","Common.Views.Comments.textReply":"返信する","Common.Views.Comments.textResolve":"解決","Common.Views.Comments.textResolved":"解決済み","Common.Views.Comments.textSort":"コメントを並べ替える","Common.Views.Comments.textSortFilter":"コメントの並べ替えとフィルター","Common.Views.Comments.textSortFilterMore":"並び替え、フィルター、その他","Common.Views.Comments.textSortMore":"並び替えなど","Common.Views.Comments.textViewResolved":"コメントを再開する権限がありません","Common.Views.Comments.txtEmpty":"シートにはコメントがありません","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"エディターツールバーのボタンやコンテキストメニューの操作によるコピー、カット、ペーストの動作は、このエディタータブ内でのみ実行されます。

エディタータブ以外のアプリケーションとの間でコピーまたは貼り付けを行うには、次のキーボードの組み合わせを使用して下さい:","Common.Views.CopyWarningDialog.textTitle":"コピー、カット、ペーストのアクション","Common.Views.CopyWarningDialog.textToCopy":"コピーのため","Common.Views.CopyWarningDialog.textToCut":"切り取りのため","Common.Views.CopyWarningDialog.textToPaste":"貼り付けのため","Common.Views.CustomizeQuickAccessDialog.textDownload":"ダウンロード","Common.Views.CustomizeQuickAccessDialog.textMsg":"クイックアクセスツールバーに表示されるコマンドをチェックしてください","Common.Views.CustomizeQuickAccessDialog.textPrint":"印刷","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"クイックプリント","Common.Views.CustomizeQuickAccessDialog.textRedo":"やり直す","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"クイックアクセスのカスタマイズ","Common.Views.CustomizeQuickAccessDialog.textUndo":"元に戻す","Common.Views.DocumentAccessDialog.textLoading":"読み込み中...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.DocumentPropertyDialog.errorDate":"カレンダーから値を選択して日付として保存できます。
値を手動で入力した場合は、テキストとして保存されます。","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"いいえ","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"はい","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"プロパティはタイトルが必要です","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"タイトル","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"「はい」または「いいえ」","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"日付","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"タイプ","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"数","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"有効な数値を入力してください","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"テキスト","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"プロパティには値が必要です","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"値","Common.Views.DocumentPropertyDialog.txtTitle":"新しいドキュメントのプロパティ","Common.Views.Draw.hintEraser":"消しゴム","Common.Views.Draw.hintSelect":"選択","Common.Views.Draw.txtEraser":"消しゴム","Common.Views.Draw.txtHighlighter":"蛍光ペン","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"ペン","Common.Views.Draw.txtSelect":"選択","Common.Views.Draw.txtSize":"サイズ","Common.Views.EditNameDialog.textLabel":"ラベル:","Common.Views.EditNameDialog.textLabelError":"ラベルは空白にできません。","Common.Views.ExternalLinksDlg.closeButtonText":"閉じる","Common.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","Common.Views.ExternalLinksDlg.textChange":"変更元","Common.Views.ExternalLinksDlg.textDelete":"リンクの解除","Common.Views.ExternalLinksDlg.textDeleteAll":"すべてのリンクを解除","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"オープンソース","Common.Views.ExternalLinksDlg.textSource":"ソース","Common.Views.ExternalLinksDlg.textStatus":"ステータス","Common.Views.ExternalLinksDlg.textUnknown":"不明","Common.Views.ExternalLinksDlg.textUpdate":"値を更新","Common.Views.ExternalLinksDlg.textUpdateAll":"すべて更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部リンク","Common.Views.FormatSettingsDialog.textCategory":"カテゴリー","Common.Views.FormatSettingsDialog.textDecimal":"小数点","Common.Views.FormatSettingsDialog.textFormat":"フォーマット","Common.Views.FormatSettingsDialog.textLinked":"ソースにリンクした","Common.Views.FormatSettingsDialog.textLocale":"ロケール設定","Common.Views.FormatSettingsDialog.textSeparator":"1000の区切り文字を使用する","Common.Views.FormatSettingsDialog.textSymbols":"記号","Common.Views.FormatSettingsDialog.textTitle":"数値の書式","Common.Views.FormatSettingsDialog.txtAccounting":"会計","Common.Views.FormatSettingsDialog.txtAs10":"10分の5(5/10)として","Common.Views.FormatSettingsDialog.txtAs100":"100分の50(50/100)として","Common.Views.FormatSettingsDialog.txtAs16":"16分の8(8/16)として","Common.Views.FormatSettingsDialog.txtAs2":"2分の1(1/2)として","Common.Views.FormatSettingsDialog.txtAs4":"8分の2(2/4)として","Common.Views.FormatSettingsDialog.txtAs8":"8分の4(4/8)として","Common.Views.FormatSettingsDialog.txtCurrency":"通貨","Common.Views.FormatSettingsDialog.txtCustom":"カスタム","Common.Views.FormatSettingsDialog.txtCustomWarning":"カスタム番号の形式を慎重に入力してください。 Spreadsheet Editorは、xlsxファイルに影響を与える可能性のあるエラーについてカスタム形式をチェックしません。","Common.Views.FormatSettingsDialog.txtDate":"日付","Common.Views.FormatSettingsDialog.txtFraction":"分数","Common.Views.FormatSettingsDialog.txtGeneral":"標準","Common.Views.FormatSettingsDialog.txtNone":"なし","Common.Views.FormatSettingsDialog.txtNumber":"数字","Common.Views.FormatSettingsDialog.txtPercentage":"パーセンテージ","Common.Views.FormatSettingsDialog.txtSample":"例:","Common.Views.FormatSettingsDialog.txtScientific":"学術的","Common.Views.FormatSettingsDialog.txtText":"テキスト","Common.Views.FormatSettingsDialog.txtTime":"時間","Common.Views.FormatSettingsDialog.txtUpto1":"最大1桁(1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"最大2桁(12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"最大3桁(131/135)","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りとしてマーク","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textBack":"ファイルの場所を開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideStatusBar":"ステータスバーとシートを結合する","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textSaveBegin":"保存中...","Common.Views.Header.textSaveChanged":"更新された","Common.Views.Header.textSaveEnd":"すべての変更が保存されました","Common.Views.Header.textSaveExpander":"すべての変更が保存されました","Common.Views.Header.textShare":"共有","Common.Views.Header.textZoom":"ズーム","Common.Views.Header.tipAccessRights":"文書のアクセス許可の管理","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDownload":"ファイルをダウンロード","Common.Views.Header.tipGoEdit":"このファイルを編集する","Common.Views.Header.tipPrint":"印刷","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直し","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUndock":"別のウィンドウにドッキングを解除する","Common.Views.Header.tipUsers":"ユーザーを表示する","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.textHighlightDeleted":"削除されたところをハイライトする","Common.Views.History.textMore":"もっと見る","Common.Views.History.textRestore":"復元する","Common.Views.History.textShow":"拡張する","Common.Views.History.textShowAll":"詳細な変更を表示する","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"バージョン履歴","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.textFromFile":"ファイルから","Common.Views.ListSettingsDialog.textFromStorage":"ストレージから","Common.Views.ListSettingsDialog.textFromUrl":"URLから","Common.Views.ListSettingsDialog.textNumbering":"番号付き","Common.Views.ListSettingsDialog.textSelect":"選択する","Common.Views.ListSettingsDialog.tipChange":"箇条書きを変更","Common.Views.ListSettingsDialog.txtBullet":"箇条書き","Common.Views.ListSettingsDialog.txtColor":"色","Common.Views.ListSettingsDialog.txtImage":"画像","Common.Views.ListSettingsDialog.txtImport":"挿入","Common.Views.ListSettingsDialog.txtNewBullet":"新しい箇条書き","Common.Views.ListSettingsDialog.txtNewImage":"新しい画像","Common.Views.ListSettingsDialog.txtNone":"なし","Common.Views.ListSettingsDialog.txtOfText":"テキストの%","Common.Views.ListSettingsDialog.txtSize":"サイズ","Common.Views.ListSettingsDialog.txtStart":"から始まる","Common.Views.ListSettingsDialog.txtSymbol":"記号","Common.Views.ListSettingsDialog.txtTitle":"リストの設定","Common.Views.ListSettingsDialog.txtType":"タイプ","Common.Views.MacrosAiDialog.textAreaPlaceholder":"クエリのプロンプトを入力してください","Common.Views.MacrosAiDialog.textCreate":"作成","Common.Views.MacrosDialog.textAutostart":"自動起動","Common.Views.MacrosDialog.textConvertFromVBA":"VBAから変換する","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"マクロをVBAから変換する","Common.Views.MacrosDialog.textCopy":"コピー","Common.Views.MacrosDialog.textCreateFromDesc":"説明から作成する","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"マクロを説明から作成する","Common.Views.MacrosDialog.textCustomFunction":"カスタム関数","Common.Views.MacrosDialog.textCustomFunctions":"カスタム関数","Common.Views.MacrosDialog.textDebug":"デバッグ","Common.Views.MacrosDialog.textDelete":"削除","Common.Views.MacrosDialog.textFunctions":"関数","Common.Views.MacrosDialog.textLoading":"読み込み中...","Common.Views.MacrosDialog.textMacro":"マクロ","Common.Views.MacrosDialog.textMacros":"マクロ","Common.Views.MacrosDialog.textMakeAutostart":"自動起動に設定","Common.Views.MacrosDialog.textRename":"名前を変更","Common.Views.MacrosDialog.textRun":"実行","Common.Views.MacrosDialog.textSave":"保存","Common.Views.MacrosDialog.textTitle":"マクロ","Common.Views.MacrosDialog.textUnMakeAutostart":"自動起動を解除","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"カスタム関数を追加","Common.Views.MacrosDialog.tipFunctionCopy":"カスタム関数のコピー","Common.Views.MacrosDialog.tipFunctionDelete":"カスタム関数の削除","Common.Views.MacrosDialog.tipFunctionRename":"カスタム関数名の変更","Common.Views.MacrosDialog.tipMacrosAdd":"マクロを追加","Common.Views.MacrosDialog.tipMacrosCopy":"マクロのコピー","Common.Views.MacrosDialog.tipMacrosDebug":"マクロのデバッグ","Common.Views.MacrosDialog.tipMacrosRename":"マクロ名の変更","Common.Views.MacrosDialog.tipMacrosRun":"マクロの実行","Common.Views.MacrosDialog.tipRedo":"やり直す","Common.Views.MacrosDialog.tipUndo":"元に戻す","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":"タブ","Common.Views.OpenDialog.txtTitle":"%1オプションを選択","Common.Views.OpenDialog.txtTitleProtected":"保護されたファイル","Common.Views.PasswordDialog.txtDescription":"この文書を保護するためのパスワードを設定してください。","Common.Views.PasswordDialog.txtIncorrectPwd":"先に入力したパスワードと一致しません。","Common.Views.PasswordDialog.txtPassword":"パスワード","Common.Views.PasswordDialog.txtRepeat":"パスワードを再入力","Common.Views.PasswordDialog.txtTitle":"パスワードの設定","Common.Views.PasswordDialog.txtWarning":"警告: パスワードを忘れると元に戻せません。安全な場所に記録してください。","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"スタート","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.Plugins.tipMore":"もっと","Common.Views.Protection.hintAddPwd":"パスワードを使用して、暗号化する","Common.Views.Protection.hintDelPwd":"パスワードの削除","Common.Views.Protection.hintPwd":"パスワードを変更するか削除する","Common.Views.Protection.hintSignature":"デジタル署名かデジタル署名行を追加","Common.Views.Protection.txtAddPwd":"パスワードを追加","Common.Views.Protection.txtChangePwd":"パスワードを変更","Common.Views.Protection.txtDeletePwd":"パスワードを削除する","Common.Views.Protection.txtEncrypt":"暗号化する","Common.Views.Protection.txtInvisibleSignature":"デジタル署名を追加","Common.Views.Protection.txtSignature":"署名","Common.Views.Protection.txtSignatureLine":"署名欄を追加","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","Common.Views.RenameDialog.textName":"ファイル名","Common.Views.RenameDialog.txtInvalidName":"ファイル名に次の文字を使うことはできません。","Common.Views.ReviewChanges.hintNext":"次の変更箇所へ","Common.Views.ReviewChanges.hintPrev":"前の​​変更箇所へ","Common.Views.ReviewChanges.strFast":"即時反映モード","Common.Views.ReviewChanges.strFastDesc":"リアルタイムの共同編集です。すべての変更は自動的に保存されます。","Common.Views.ReviewChanges.strStrict":"厳密モード","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":"変更履歴","Common.Views.ReviewChanges.tipReviewView":"変更を表示するモードをご選択ください","Common.Views.ReviewChanges.tipSetDocLang":"文書の言語を設定する","Common.Views.ReviewChanges.tipSetSpelling":"スペルチェック","Common.Views.ReviewChanges.tipSharing":"文書のアクセス許可の管理","Common.Views.ReviewChanges.txtAccept":"承諾","Common.Views.ReviewChanges.txtAcceptAll":"すべての変更を承諾する","Common.Views.ReviewChanges.txtAcceptChanges":"変更を承諾する","Common.Views.ReviewChanges.txtAcceptCurrent":"現在の変更を承諾する","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":"最終版","Common.Views.ReviewChanges.txtHistory":"バージョン履歴","Common.Views.ReviewChanges.txtMarkup":"全ての変更(編集)","Common.Views.ReviewChanges.txtMarkupCap":"マークアップ","Common.Views.ReviewChanges.txtNext":"次へ","Common.Views.ReviewChanges.txtOriginal":"すべての変更が拒否されました(プレビュー)","Common.Views.ReviewChanges.txtOriginalCap":"初版","Common.Views.ReviewChanges.txtPrev":"前のへ","Common.Views.ReviewChanges.txtReject":"拒否する","Common.Views.ReviewChanges.txtRejectAll":"すべての変更を元に戻す","Common.Views.ReviewChanges.txtRejectChanges":"変更を拒否する","Common.Views.ReviewChanges.txtRejectCurrent":"現在の変更を元に戻す","Common.Views.ReviewChanges.txtSharing":"共有","Common.Views.ReviewChanges.txtSpelling":"スペルチェック","Common.Views.ReviewChanges.txtTurnon":"変更履歴","Common.Views.ReviewChanges.txtView":"表示モード","Common.Views.ReviewPopover.textAdd":"追加","Common.Views.ReviewPopover.textAddReply":"返信を追加","Common.Views.ReviewPopover.textCancel":"キャンセル","Common.Views.ReviewPopover.textClose":"閉じる","Common.Views.ReviewPopover.textComment":"コメント","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"ここにコメントを入力してください。","Common.Views.ReviewPopover.textMention":"+言及されるユーザーに文書にアクセスを提供して、メールで通知する","Common.Views.ReviewPopover.textMentionNotify":"+言及されるユーザーはメールで通知される","Common.Views.ReviewPopover.textOpenAgain":"もう一度開く","Common.Views.ReviewPopover.textReply":"返信する","Common.Views.ReviewPopover.textResolve":"解決する","Common.Views.ReviewPopover.textViewResolved":"コメントを再開する権限がありません","Common.Views.ReviewPopover.txtDeleteTip":"削除する","Common.Views.ReviewPopover.txtEditTip":"編集","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textByColumns":"列で","Common.Views.SearchPanel.textByRows":"行で","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字を区別する","Common.Views.SearchPanel.textCell":"セル","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索する","Common.Views.SearchPanel.textFindAndReplace":"検索して置換する","Common.Views.SearchPanel.textFormula":"数式","Common.Views.SearchPanel.textFormulas":"数式","Common.Views.SearchPanel.textItemEntireCell":"セル全体の内容","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textLookIn":"検索の範囲","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textName":"名前","Common.Views.SearchPanel.textNoMatches":"一致する結果がありません","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"置換する","Common.Views.SearchPanel.textReplaceAll":"全てを置換する","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearch":"検索","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchOptions":"検索オプション","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textSelectDataRange":"データ範囲を選択する","Common.Views.SearchPanel.textSheet":"シート","Common.Views.SearchPanel.textSpecificRange":"特定の範囲","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textValue":"値","Common.Views.SearchPanel.textValues":"値","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.textWithin":"範囲","Common.Views.SearchPanel.textWorkbook":"ワークブック","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.ShapeShadowDialog.txtAngle":"角","Common.Views.ShapeShadowDialog.txtDistance":"距離","Common.Views.ShapeShadowDialog.txtSize":"サイズ","Common.Views.ShapeShadowDialog.txtTitle":"影の調整","Common.Views.ShapeShadowDialog.txtTransparency":"透過性","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":"画像を選択","Common.Views.SignDialog.textSignature":"署名は次のようになります:","Common.Views.SignDialog.textTitle":"文書のサイン","Common.Views.SignDialog.textUseImage":"または画像を署名として使用するため、「画像の選択」をクリックしてください","Common.Views.SignDialog.textValid":"%1から%2までは有効","Common.Views.SignDialog.tipFontName":"フォント名","Common.Views.SignDialog.tipFontSize":"フォントのサイズ","Common.Views.SignSettingsDialog.textAllowComment":"署名者が署名ダイアログボックスにコメントを追加できるようにする","Common.Views.SignSettingsDialog.textDefInstruction":"このドキュメントに署名する前に、署名するコンテンツが正しいことを確認してください。","Common.Views.SignSettingsDialog.textInfoEmail":"署名候補者のメールアドレス","Common.Views.SignSettingsDialog.textInfoName":"署名候補者","Common.Views.SignSettingsDialog.textInfoTitle":"署名候補者の役職","Common.Views.SignSettingsDialog.textInstructions":"署名者への説明書","Common.Views.SignSettingsDialog.textShowDate":"署名欄に署名日を表示する","Common.Views.SignSettingsDialog.textTitle":"サインの設定","Common.Views.SignSettingsDialog.txtEmpty":"この項目は必須です","Common.Views.SymbolTableDialog.textCharacter":"文字","Common.Views.SymbolTableDialog.textCode":"UnicodeHEX値","Common.Views.SymbolTableDialog.textCopyright":"著作権マーク","Common.Views.SymbolTableDialog.textDCQuote":"二重引用符(右)","Common.Views.SymbolTableDialog.textDOQuote":"二重の引用符(左)","Common.Views.SymbolTableDialog.textEllipsis":"水平の省略記号","Common.Views.SymbolTableDialog.textEmDash":"全角ダッシュ","Common.Views.SymbolTableDialog.textEmSpace":"全角スペース","Common.Views.SymbolTableDialog.textEnDash":"半角ダッシュ","Common.Views.SymbolTableDialog.textEnSpace":"半角スペース","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":"ラベルは空白にできません。","SSE.Controllers.DataTab.strSheet":"シート","SSE.Controllers.DataTab.textColumns":"列","SSE.Controllers.DataTab.textContinue":"続ける","SSE.Controllers.DataTab.textEmptyUrl":"URLを指定してください。","SSE.Controllers.DataTab.textRows":"行","SSE.Controllers.DataTab.textTurnOff":"自動アップデートをオフにする","SSE.Controllers.DataTab.textWizard":"テキスト区切り","SSE.Controllers.DataTab.txtDataValidation":"データの入力規則","SSE.Controllers.DataTab.txtExpand":"拡張する","SSE.Controllers.DataTab.txtExpandRemDuplicates":"選択範囲の横のデータは削除されません。選択範囲を拡大して隣接するデータを含めるか、現在選択されているセルのみを続行しますか?","SSE.Controllers.DataTab.txtExtendDataValidation":"選択範囲には、データバリデーション設定のないセルがいくつか含まれています。
データバリデーションをこれらのセルに拡張しますか?","SSE.Controllers.DataTab.txtImportWizard":"テキスト取り込みウィザード","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":"中央揃え","SSE.Controllers.DocumentHolder.deleteColumnText":"列を削除","SSE.Controllers.DocumentHolder.deleteRowText":"行を削除","SSE.Controllers.DocumentHolder.deleteText":"削除","SSE.Controllers.DocumentHolder.errorInvalidLink":"リンク参照が存在しません。 リンクを修正するか、ご削除ください。","SSE.Controllers.DocumentHolder.guestText":"ゲスト","SSE.Controllers.DocumentHolder.insertColumnLeftText":"左に列の挿入","SSE.Controllers.DocumentHolder.insertColumnRightText":"右に列の挿入","SSE.Controllers.DocumentHolder.insertRowAboveText":"行 (上)","SSE.Controllers.DocumentHolder.insertRowBelowText":"行(下)","SSE.Controllers.DocumentHolder.insertText":"挿入","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":"リンク先に移動するには、クリックします。このセルを選択するには、マウスのボタンを押し続け、ポインターの形が変わったらマウスのボタンを離します。","SSE.Controllers.DocumentHolder.textInsertLeft":"左に挿入","SSE.Controllers.DocumentHolder.textInsertTop":"上に挿入","SSE.Controllers.DocumentHolder.textPasteSpecial":"特殊貼付け","SSE.Controllers.DocumentHolder.textStopExpand":"テーブルの自動拡を停止する","SSE.Controllers.DocumentHolder.textSym":"記号","SSE.Controllers.DocumentHolder.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Controllers.DocumentHolder.txtAboveAve":"平均より上","SSE.Controllers.DocumentHolder.txtAddBottom":"下罫線を追加","SSE.Controllers.DocumentHolder.txtAddFractionBar":"分数線を追加","SSE.Controllers.DocumentHolder.txtAddHor":"水平線を追加","SSE.Controllers.DocumentHolder.txtAddLB":"左下罫線を追加","SSE.Controllers.DocumentHolder.txtAddLeft":"左罫線を追加","SSE.Controllers.DocumentHolder.txtAddLT":"左上罫線を追加","SSE.Controllers.DocumentHolder.txtAddRight":"右罫線を追加","SSE.Controllers.DocumentHolder.txtAddTop":"上罫線を追加","SSE.Controllers.DocumentHolder.txtAddVer":"縦線を追加","SSE.Controllers.DocumentHolder.txtAlignToChar":"文字に合わせる","SSE.Controllers.DocumentHolder.txtAll":"(すべて)","SSE.Controllers.DocumentHolder.txtAllTableHint":"テーブルのすべての値、または、指定したテーブル列と列番号、データおよび集計行を返す","SSE.Controllers.DocumentHolder.txtAnd":"と","SSE.Controllers.DocumentHolder.txtBegins":"で始まる","SSE.Controllers.DocumentHolder.txtBelowAve":"平均より下​​","SSE.Controllers.DocumentHolder.txtBlanks":"(空白)","SSE.Controllers.DocumentHolder.txtBorderProps":"罫線の​​プロパティ","SSE.Controllers.DocumentHolder.txtBottom":"下","SSE.Controllers.DocumentHolder.txtByField":"%2分の%1","SSE.Controllers.DocumentHolder.txtColumn":"列","SSE.Controllers.DocumentHolder.txtColumnAlign":"列の配置","SSE.Controllers.DocumentHolder.txtContains":"含んでいる\t","SSE.Controllers.DocumentHolder.txtCopySuccess":"リンクがクリップボードにコピーされました","SSE.Controllers.DocumentHolder.txtDataTableHint":"テーブルまたは指定したテーブル列のデータセルを返す","SSE.Controllers.DocumentHolder.txtDecreaseArg":"引数のサイズの縮小","SSE.Controllers.DocumentHolder.txtDeleteArg":"引数を削除","SSE.Controllers.DocumentHolder.txtDeleteBreak":"手動ブレークを削除する","SSE.Controllers.DocumentHolder.txtDeleteChars":"囲まれた文字を削除","SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators":"開始文字、終了文字と区切り文字を削除","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.txtFilterTop":"上","SSE.Controllers.DocumentHolder.txtFormula":"数式","SSE.Controllers.DocumentHolder.txtFractionLinear":"分数(横)に変更","SSE.Controllers.DocumentHolder.txtFractionSkewed":"斜めの分数罫に変更","SSE.Controllers.DocumentHolder.txtFractionStacked":"分数(縦)に変更\t","SSE.Controllers.DocumentHolder.txtGreater":"次の値より大きい","SSE.Controllers.DocumentHolder.txtGreaterEquals":"次の値より大きいか等しい","SSE.Controllers.DocumentHolder.txtGroupCharOver":"テキストの上の文字","SSE.Controllers.DocumentHolder.txtGroupCharUnder":"テキストの下の文字","SSE.Controllers.DocumentHolder.txtHeadersTableHint":"テーブルまたは指定されたテーブルカラムのカラムヘッダを返す","SSE.Controllers.DocumentHolder.txtHeight":"高さ","SSE.Controllers.DocumentHolder.txtHideBottom":"下罫線を表示しない","SSE.Controllers.DocumentHolder.txtHideBottomLimit":"下限を表示しない","SSE.Controllers.DocumentHolder.txtHideCloseBracket":"右かっこを表示しない","SSE.Controllers.DocumentHolder.txtHideDegree":"次数を表示しない","SSE.Controllers.DocumentHolder.txtHideHor":"水平線を表示しない","SSE.Controllers.DocumentHolder.txtHideLB":"左(下)の線を表示しない","SSE.Controllers.DocumentHolder.txtHideLeft":"左罫線を表示しない","SSE.Controllers.DocumentHolder.txtHideLT":"左(上)の線を表示しない","SSE.Controllers.DocumentHolder.txtHideOpenBracket":"左かっこを表示しない","SSE.Controllers.DocumentHolder.txtHidePlaceholder":"プレースホルダを表示しない","SSE.Controllers.DocumentHolder.txtHideRight":"右罫線を表示しない","SSE.Controllers.DocumentHolder.txtHideTop":"上罫線を表示しない","SSE.Controllers.DocumentHolder.txtHideTopLimit":"上限を表示しない","SSE.Controllers.DocumentHolder.txtHideVer":"縦線を表示しない","SSE.Controllers.DocumentHolder.txtImportWizard":"テキストインポートウィザード","SSE.Controllers.DocumentHolder.txtIncreaseArg":"引数のサイズの拡大","SSE.Controllers.DocumentHolder.txtInsertArgAfter":"後に引数を挿入","SSE.Controllers.DocumentHolder.txtInsertArgBefore":"前に引数を挿入","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.txtOther":"その他","SSE.Controllers.DocumentHolder.txtOverbar":"テキストの上にバー","SSE.Controllers.DocumentHolder.txtPaste":"貼り付け","SSE.Controllers.DocumentHolder.txtPasteBorders":"罫線のない数式","SSE.Controllers.DocumentHolder.txtPasteColWidths":"数式と列幅","SSE.Controllers.DocumentHolder.txtPasteDestFormat":"貼り付け先の書式に合わせる","SSE.Controllers.DocumentHolder.txtPasteFormat":"書式のみ貼り付け","SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat":"数式と数値の書式","SSE.Controllers.DocumentHolder.txtPasteFormulas":"数式だけを貼り付ける","SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat":"数式と全ての書式","SSE.Controllers.DocumentHolder.txtPasteLink":"リンクを貼り付け","SSE.Controllers.DocumentHolder.txtPasteLinkPicture":"リンクされた画像","SSE.Controllers.DocumentHolder.txtPasteMerge":"条件付き書式を結合する","SSE.Controllers.DocumentHolder.txtPastePicture":"画像","SSE.Controllers.DocumentHolder.txtPasteSourceFormat":"ソースのフォーマット","SSE.Controllers.DocumentHolder.txtPasteTranspose":"入れ替える","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":"上付きの削除","SSE.Controllers.DocumentHolder.txtRowHeight":"行の高さ","SSE.Controllers.DocumentHolder.txtScriptsAfter":"テキストの後のスクリプト","SSE.Controllers.DocumentHolder.txtScriptsBefore":"テキストの前のスクリプト","SSE.Controllers.DocumentHolder.txtShowBottomLimit":"下限を表示する","SSE.Controllers.DocumentHolder.txtShowCloseBracket":"右かっこの表示","SSE.Controllers.DocumentHolder.txtShowDegree":"次数を表示する","SSE.Controllers.DocumentHolder.txtShowOpenBracket":"左かっこの表示","SSE.Controllers.DocumentHolder.txtShowPlaceholder":"プレースホルダーの表示","SSE.Controllers.DocumentHolder.txtShowTopLimit":"上限を表示する","SSE.Controllers.DocumentHolder.txtSorting":"並べ替え","SSE.Controllers.DocumentHolder.txtSortSelected":"選択した内容を並べ替える","SSE.Controllers.DocumentHolder.txtStretchBrackets":"かっこの拡大","SSE.Controllers.DocumentHolder.txtThisRowHint":"指定した列のこの行のみを選択","SSE.Controllers.DocumentHolder.txtTop":"上","SSE.Controllers.DocumentHolder.txtTotalsTableHint":"テーブルまたは指定したテーブル列の集計行を返す","SSE.Controllers.DocumentHolder.txtUnderbar":"テキストの下にバー","SSE.Controllers.DocumentHolder.txtUndoExpansion":"テーブルの自動拡をキャンセルする","SSE.Controllers.DocumentHolder.txtUseTextImport":"テキスト取り込みウィザードを使う","SSE.Controllers.DocumentHolder.txtValue":"値","SSE.Controllers.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、デバイスに害を及ぼす可能性があります。このまま続けますか?","SSE.Controllers.DocumentHolder.txtWidth":"幅","SSE.Controllers.DocumentHolder.warnFilterError":"値フィルターを適用するには、「値」範囲に少なくとも1つのフィールドが必要です。","SSE.Controllers.FormulaDialog.sCategoryAll":"すべて","SSE.Controllers.FormulaDialog.sCategoryCube":"立方体","SSE.Controllers.FormulaDialog.sCategoryCustom":"カスタム","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.sCategoryStatistical":"統計","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":"検索の範囲","SSE.Controllers.LeftMenu.textNoTextFound":"検索データが見つかりませんでした。他の検索設定を選択してください。","SSE.Controllers.LeftMenu.textReplaceSkipped":"置換が完了しました。{0}つスキップされました。","SSE.Controllers.LeftMenu.textReplaceSuccess":"検索完了しました。更新件数は、{0} です。","SSE.Controllers.LeftMenu.textSave":"保存","SSE.Controllers.LeftMenu.textSearch":"検索","SSE.Controllers.LeftMenu.textSelectPath":"ファイルのコピーを保存するパスを入力してください","SSE.Controllers.LeftMenu.textSheet":"シート","SSE.Controllers.LeftMenu.textValues":"値","SSE.Controllers.LeftMenu.textWarning":"警告","SSE.Controllers.LeftMenu.textWithin":"範囲","SSE.Controllers.LeftMenu.textWorkbook":"ブック","SSE.Controllers.LeftMenu.txtUntitled":"タイトルなし","SSE.Controllers.LeftMenu.warnDownloadAs":"この形式で保存し続ける場合は、テキスト以外のすべての機能が失われます。
続行してもよろしいですか?","SSE.Controllers.LeftMenu.warnDownloadCsv":"CSV形式は複数シートファイルおよびテキスト以外のすべての要素の保存をサポートしていません。
選択したシートのみをCSVに保存するには、OKを押してください。
スプレッドシート全体とすべての機能を保存するには、キャンセルをクリックして別の形式を選","SSE.Controllers.LeftMenu.warnDownloadCsvSheets":"CSV形式は複数シートファイルの保存をサポートしていません。
選択した形式を維持し、現在のシートだけを保存するには、Saveを押します。
現在のスプレッドシートを保存するには、Cancelをクリックして、別の形式で保存してください。","SSE.Controllers.Main.confirmAddCellWatches":"このアクションは {0} セル時計を追加します。
このまま続けますか?","SSE.Controllers.Main.confirmAddCellWatchesMax":"このアクションは、メモリ保存の理由によって {0} セルウォッチのみを追加します。
このまま続けますか?","SSE.Controllers.Main.confirmMaxChangesSize":"アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。","SSE.Controllers.Main.confirmMoveCellRange":"展開先のセルにはデータがあります。続けますか?","SSE.Controllers.Main.confirmPutMergeRange":"ソースデータは結合されたセルを含まれています。
テーブルに貼り付る前にマージを削除しました。","SSE.Controllers.Main.confirmReplaceFormulaInTable":"ヘーダ行の数式が削除されて、固定テキストに変換されます。続けてもよろしいですか?","SSE.Controllers.Main.confirmReplaceHFPicture":"ヘッダーの各セクションに挿入できる写真は1枚のみです。
「置き換える」を押すと、既存の画像を置き換えます。
「キープ」を押すと、既存の画像を保持します。","SSE.Controllers.Main.convertationTimeoutText":"変換のタイムアウトを超過しました。","SSE.Controllers.Main.criticalErrorExtText":"OKボタンを押すと文書リストに戻ります","SSE.Controllers.Main.criticalErrorExtTextClose":"[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":"権限のない操作を実行しようとしています。
ドキュメントサーバーの管理者にご連絡ください。","SSE.Controllers.Main.errorArgsRange":"入力した数式は正しくありません。
引数の範囲が正しくありません。","SSE.Controllers.Main.errorAutoFilterChange":"ワークシートの表内のセルをシフトしようとしているので、この操作は許可されません。","SSE.Controllers.Main.errorAutoFilterChangeFormatTable":"テーブルの一部を移動することはできないので、操作を実行することができません。
テーブル全体がシフトしたように、ほかのデータの範囲を選択し、もう一度お試しください。","SSE.Controllers.Main.errorAutoFilterDataRange":"選んだ範囲にこの操作を適用できません。
範囲内の1つのセルを選んでから、もう一度お試しください。","SSE.Controllers.Main.errorAutoFilterHiddenRange":"エリアをフィルタされたセルが含まれているので、操作を実行できません。
フィルタリングの要素を表示して、もう一度お試しください","SSE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません。","SSE.Controllers.Main.errorCalculatedItemInPageField":"項目を追加または変更できません。ピボットテーブルレポートのフィルタにこのフィールドがあります。","SSE.Controllers.Main.errorCannotPasteImg":"この画像はクリップボードから貼り付けることはできませんが、端末に保存してそこから挿入するか、\nテキストを含まない画像をコピーしてスプレッドシートに貼り付けることが可能です。","SSE.Controllers.Main.errorCannotUngroup":"グループ化を解除できません。 アウトラインを開始するには、詳細の行または列を選択してグループ化ください。","SSE.Controllers.Main.errorCannotUseCommandProtectedSheet":"このコマンドは、保護されたシートでは使用できません。このコマンドを使用するには、シートの保護を解除してください。
パスワードの入力を求められる場合があります。","SSE.Controllers.Main.errorChangeArray":"配列の一部を変更することはできません。","SSE.Controllers.Main.errorChangeFilteredRange":"これにより、ワークシートのフィルター範囲が変更されます。
このタスクを完了するには、オートフィルターをご削除ください。","SSE.Controllers.Main.errorChangeOnProtectedSheet":"変更しようとしているチャートには、保護されたシートにあります。変更するには保護を解除が必要です。パスワードの入力を要求されることもあります。","SSE.Controllers.Main.errorCircularReference":"数式が自分のセルを直接または間接的に参照する循環参照が1つ以上あります。
これらの参照を削除または変更するか、数式を別のセルに移動してみてください。","SSE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。今、文書を編集することができません。","SSE.Controllers.Main.errorConnectToServer":"文書を保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
OKボタンをクリックするとドキュメントをダウンロードするように求められます。","SSE.Controllers.Main.errorConvertXml":"
サポートされていない形式のファイルです。
XML Spreadsheet 2003形式のみ使用可能です。","SSE.Controllers.Main.errorCopyMultiselectArea":"このコマンドを複数選択において使用することはできません。
単一の範囲を選択して、再ご試行ください。","SSE.Controllers.Main.errorCountArg":"入力した数式は正しくありません。
引数の数が一致していません。","SSE.Controllers.Main.errorCountArgExceed":"入力した数式は正しくありません。
引数の数を超過しました。","SSE.Controllers.Main.errorCreateDefName":"存在する名前付き範囲を編集することはできません。
今、範囲が編集されているので、新しい名前付き範囲を作成することはできません。","SSE.Controllers.Main.errorCreateRange":"既存のレンジは編集できず、新しいレンジは編集中のものがあるため、
現時点では作成することができません。","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.errorDependentsNoFormulas":"「参照先のトレース」コマンドで、アクティブセルを参照する数式が見つかりませんでした。","SSE.Controllers.Main.errorDirectUrl":"ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。","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":"ファイルサイズがサーバーで設定された制限を超過しています。
Documentサーバー管理者に詳細をお問い合わせください。","SSE.Controllers.Main.errorFileVKey":"外部エラーです。
セキュリティキーが正しくありません。この問題は解決しない場合は、サポートにお問い合わせください。","SSE.Controllers.Main.errorFillRange":"選択した範囲を塗りつぶせません。
\n結合されたセルは同じサイズである必要があります。","SSE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。コンピューターにファイルを保存するために、「名前を付けてダウンロード」を使用し、または後で再お試しください。","SSE.Controllers.Main.errorFormulaInPivotFieldName":"ピボットテーブルレポートの項目またはフィールド名に数式を入力できません。","SSE.Controllers.Main.errorFormulaName":"入力した数式は正しくありません。
数式の名前が正しくありません。","SSE.Controllers.Main.errorFormulaParsing":"数式を解析中に内部エラーが発生","SSE.Controllers.Main.errorFrmlMaxLength":"数式の長さが8192文字の制限を超えています。
編集して再びお試しください。","SSE.Controllers.Main.errorFrmlMaxReference":"値、
セル参照、名前が多すぎるため、この数式を入力できません。","SSE.Controllers.Main.errorFrmlMaxTextLength":"数式のテキスト値は255文字に制限されています。
コンカチネート関数または連結演算子(&)をご使用ください。","SSE.Controllers.Main.errorFrmlWrongReferences":"関数が存在しないシートを参照します。
データを確認して、もう一度お試しください。","SSE.Controllers.Main.errorFTChangeTableRangeError":"選択したセル範囲で操作を完了できませんでした。
最初のテーブルの行は同じ行にあったように、範囲をご選択ください。
新しいテーブル範囲が元のテーブル範囲に重なるようにしてください。","SSE.Controllers.Main.errorFTRangeIncludedOtherTables":"選択したセル範囲で操作を完了できませんでした。
他のテーブルが含まれていない範囲をご選択ください。","SSE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","SSE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","SSE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","SSE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","SSE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","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.errorLockedCellGoalSeek":"パラメータ選択プロセスに関与するセルの1つが、他のユーザーによって変更された。","SSE.Controllers.Main.errorLockedCellPivot":"ピボットテーブル内のデータを変更することはできません。","SSE.Controllers.Main.errorLockedWorksheetRename":"他のユーザーによって名前が変更されているのでシートの名前を変更することはできません。","SSE.Controllers.Main.errorMaxPoints":"グラフごとの直列のポイントの最大数は4096です。","SSE.Controllers.Main.errorMoveRange":"結合されたセルの一部を変更することはできません。","SSE.Controllers.Main.errorMoveSlicerError":"テーブルスライサーをあるワークブックから別のワークブックにコピーすることはできません。
テーブル全体とスライサーを選択して、再ご試行ください。","SSE.Controllers.Main.errorMultiCellFormula":"複数セルの配列数式はテーブルでは使用できません。","SSE.Controllers.Main.errorNoDataToParse":"解析するデータが選択されていません。","SSE.Controllers.Main.errorNotUniqueFieldWithCalculated":"ピボットテーブルに計算された項目がある場合、フィールドをデータエリアで2回以上使用したり、データエリアと別のエリアで同時に使用したりすることはできません。","SSE.Controllers.Main.errorOpenWarning":"ファイル式の1つが8192文字の制限を超えています。
この式が削除されました。","SSE.Controllers.Main.errorOperandExpected":"入力した関数の構文が正しくありません。かっこ「(」または「)」のいずれかが欠落していないかどうかをご確認ください。","SSE.Controllers.Main.errorPasswordIsNotCorrect":"入力したパスワードは間違っています。
CapsLock キーがオフになっていることを確認し、大文字と小文字が正しく使われていることを確認してください。 ","SSE.Controllers.Main.errorPasteInPivot":"選択したセルに対してこの変更を行うことはできません。ピボットテーブルに影響を与えるためです。
フィールドリストを使用してレポートを変更してください。","SSE.Controllers.Main.errorPasteMaxRange":"コピーと貼り付けエリアが一致していません。
同じサイズの領域を選択するか、またはコピーしたセルを貼り付けるために行の最初のセルをクリックしてください。","SSE.Controllers.Main.errorPasteMultiSelect":"この操作は、複数の範囲を選択した場合には実行できません。
単一の範囲を選択して、再試行してください。","SSE.Controllers.Main.errorPasteSlicerError":"テーブルスライサーは、あるブックから別のブックにコピーすることはできません。","SSE.Controllers.Main.errorPivotFieldNameExists":"ピボットテーブルのフィールド名がすでに存在します。","SSE.Controllers.Main.errorPivotGroup":"その選択をグループ化できません。","SSE.Controllers.Main.errorPivotOverlap":"ピボットテーブルレポートにはテーブルを重ねることができません。","SSE.Controllers.Main.errorPivotWithoutUnderlying":"ピボットテーブルのレポートが、基礎となるデータなしで保存されました。
[更新]ボタンを使用して、レポートを更新します。","SSE.Controllers.Main.errorPrecedentsNoValidRef":"「参照元のトレース」コマンドは、アクティブなセルに有効な参照を含む数式が含まれている必要があります。","SSE.Controllers.Main.errorPrintMaxPagesCount":"残念ながら、現在のプログラムバージョンでは一度に1500ページを超える印刷はできません。
この制限は今後のリリースで削除される予定です。","SSE.Controllers.Main.errorProtectedRange":"この範囲は編集不可です。","SSE.Controllers.Main.errorSaveWatermark":"このファイルには、別のドメインにリンクされた透かし画像が含まれています。
PDFで見えるようにするには、文書と同じドメインからリンクされるように透かし画像を更新するか、コンピュータからアップロードしてください。","SSE.Controllers.Main.errorServerVersion":"エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。","SSE.Controllers.Main.errorSessionAbsolute":"ドキュメント編集セッションが終了しました。 ページを再度お読み込みください。","SSE.Controllers.Main.errorSessionIdle":"このドキュメントは長い間編集されていませんでした。このページを再度読み込んでください。","SSE.Controllers.Main.errorSessionToken":"サーバーとの接続が中断されました。このページを再度読み込んでください。","SSE.Controllers.Main.errorSetPassword":"パスワードを設定できませんでした。","SSE.Controllers.Main.errorSingleColumnOrRowError":"場所の参照が有効ではありません。すべてのセルが同じ行または列に含まれていません。
 すべてのセルが 1 つの行または列に含まれるように選択してください","SSE.Controllers.Main.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","SSE.Controllers.Main.errorToken":"ドキュメントセキュリティトークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。","SSE.Controllers.Main.errorTokenExpire":"ドキュメントセキュリティトークンの有効期限が切れています。
ドキュメントサーバーの管理者に連絡してください。","SSE.Controllers.Main.errorUnexpectedGuid":"外部エラーです。
予期しないGuidです。この問題は解決しない場合は、サポートにお問い合わせください。","SSE.Controllers.Main.errorUpdateVersion":"ファイルのバージョンが変更されました。ページが再ロードされます。","SSE.Controllers.Main.errorUpdateVersionOnDisconnect":"インターネット接続が復旧し、ファイルのバージョンが更新されました。
作業を継続する前に、ファイルをダウンロードするか、内容をコピーして、変更が消えてしまわないように確認してから、ページを再びお読み込みください。","SSE.Controllers.Main.errorUserDrop":"今、ファイルにアクセスすることはできません。","SSE.Controllers.Main.errorUsersExceed":"料金プランで許可されているユーザー数を超過しました。","SSE.Controllers.Main.errorViewerDisconnect":"接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。","SSE.Controllers.Main.errorWrongBracketsCount":"入力した数式は正しくありません。
かっこの数が正しくありません。","SSE.Controllers.Main.errorWrongOperator":"入力した数式は正しくありません。誤った演算子が使用されました。
エラーを確認して修正してください。または、数式の編集をキャンセルするためにESCボタンを使用してください。","SSE.Controllers.Main.errorWrongPassword":"パスワードが正しくありません。","SSE.Controllers.Main.errRemDuplicates":"削除した重複した数: {0}、残した一意の数: {1}","SSE.Controllers.Main.leavePageText":"このスプレッドシートの保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。","SSE.Controllers.Main.leavePageTextOnClose":"このスプレッドシートにある保存されていない変更が失われます。保存するように「キャンセル」クリックして「保存」クリックしてください。保存されていない変更を破棄ように「OK」をクリックしてください。","SSE.Controllers.Main.loadFontsTextText":"データを読み込んでいます...","SSE.Controllers.Main.loadFontsTitleText":"データを読み込んでいます","SSE.Controllers.Main.loadFontTextText":"データを読み込んでいます...","SSE.Controllers.Main.loadFontTitleText":"データを読み込んでいます","SSE.Controllers.Main.loadImagesTextText":"イメージを読み込み中...","SSE.Controllers.Main.loadImagesTitleText":"イメージを読み込み中","SSE.Controllers.Main.loadImageTextText":"イメージを読み込み中...","SSE.Controllers.Main.loadImageTitleText":"イメージを読み込み中","SSE.Controllers.Main.loadingDocumentTitleText":"スプレッドシートの読み込み中","SSE.Controllers.Main.notcriticalErrorTitle":" 警告","SSE.Controllers.Main.openErrorText":"ファイルを読み込み中にエラーが発生しました。","SSE.Controllers.Main.openTextText":"スプレッドシートを開いています...","SSE.Controllers.Main.openTitleText":"スプレッドシートを開いています","SSE.Controllers.Main.pastInMergeAreaError":"結合されたセルの一部を変更することはできません。","SSE.Controllers.Main.printTextText":"スプレッドシートの印刷...","SSE.Controllers.Main.printTitleText":"スプレッドシートの印刷","SSE.Controllers.Main.reloadButtonText":"ページの再読み込み","SSE.Controllers.Main.requestEditFailedMessageText":"この文書は他のユーザによって編集しています。後でもう一度試してみてください。","SSE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","SSE.Controllers.Main.saveErrorText":"ファイルを保存中にエラーが発生しました。","SSE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","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.textConnectionLost":"接続中です。接続設定をご確認ください。","SSE.Controllers.Main.textContactUs":"営業部に連絡する","SSE.Controllers.Main.textContinue":"続ける","SSE.Controllers.Main.textConvertEquation":"この数式は、サポートされなくなった古いバージョンの数式エディタで作成されました。 編集するには、方程式をOffice Math ML形式に変換します。
今すぐ変換しますか?","SSE.Controllers.Main.textCustomLoader":"ライセンスの条件によっては、ローダーを変更する権利がないことにご注意ください。
見積もりについては、営業部門にお問い合わせください。","SSE.Controllers.Main.textDisconnect":"接続が切断されました ","SSE.Controllers.Main.textFillOtherRows":"他の列を埋める","SSE.Controllers.Main.textFormulaFilledAllRows":"{0}で埋められた数式列はデータが挿入されてます。他の空の列の挿入は数分かかる場合があります。","SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty":"数式は最初の{0}列で挿入されてます。他の空の列の挿入は数分かかる場合があります。","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData":"メモリ保存により数式で挿入されている最初の{0}列はデータが含めれています。このシート内にその他の{1}列にデータが含まれています。手動でそれらを入力が可能です。","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty":"メモリ保存により最初の{0}列は数式のみで挿入されています。このシートの他の列にはデータが含まれていません。","SSE.Controllers.Main.textGuest":"ゲスト","SSE.Controllers.Main.textHasMacros":"ファイルには自動マクロが含まれています。
マクロを実行しますか?","SSE.Controllers.Main.textKeep":"キープ","SSE.Controllers.Main.textLearnMore":"更に詳しく","SSE.Controllers.Main.textLoadingDocument":"スプレッドシートの読み込み中","SSE.Controllers.Main.textLongName":"128文字未満の名前を入力してください。","SSE.Controllers.Main.textNeedSynchronize":"更新があります。","SSE.Controllers.Main.textNo":"いいえ","SSE.Controllers.Main.textNoLicenseTitle":"ライセンス制限に達しました","SSE.Controllers.Main.textPaidFeature":"有料機能","SSE.Controllers.Main.textPleaseWait":"操作が予想以上に時間がかかります。しばらくお待ちください...","SSE.Controllers.Main.textReconnect":"接続が回復しました","SSE.Controllers.Main.textRemember":"すべてのファイルに選択を保存する","SSE.Controllers.Main.textRememberMacros":"すべてのマクロに、この選択を記憶する","SSE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","SSE.Controllers.Main.textRenameLabel":"コラボレーションに使用する名前を入力してください。","SSE.Controllers.Main.textReplace":"置き換え","SSE.Controllers.Main.textRequestMacros":"マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?","SSE.Controllers.Main.textShape":"図形","SSE.Controllers.Main.textStrict":"厳密なモード","SSE.Controllers.Main.textText":"テキスト","SSE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","SSE.Controllers.Main.textTryUndoRedo":"即時反映共同編集モードでは元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳密モード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。","SSE.Controllers.Main.textTryUndoRedoWarn":"即時反映の共同編集モードでは、元に戻す/やり直し機能が無効になります。","SSE.Controllers.Main.textUndo":"元に戻す","SSE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","SSE.Controllers.Main.textUpdating":"アップデート中","SSE.Controllers.Main.textYes":"はい","SSE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","SSE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","SSE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","SSE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","SSE.Controllers.Main.titleReadOnly":"閲覧専用モード","SSE.Controllers.Main.titleServerVersion":"エディターが更新された","SSE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","SSE.Controllers.Main.txtAccent":"アクセント","SSE.Controllers.Main.txtAll":"(すべて)","SSE.Controllers.Main.txtArt":"ここにテキストを入力してください","SSE.Controllers.Main.txtBasicShapes":"基本図形","SSE.Controllers.Main.txtBlank":"(空白)","SSE.Controllers.Main.txtButtons":"ボタン","SSE.Controllers.Main.txtByField":"%2 の %1","SSE.Controllers.Main.txtCallouts":"吹き出し","SSE.Controllers.Main.txtCharts":"グラフ","SSE.Controllers.Main.txtClearFilter":"フィルタをクリアする","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.txtInfo":"情報","SSE.Controllers.Main.txtLines":"線","SSE.Controllers.Main.txtMath":"数学","SSE.Controllers.Main.txtMinutes":"分","SSE.Controllers.Main.txtMonths":"月","SSE.Controllers.Main.txtMultiSelect":"複数選択","SSE.Controllers.Main.txtNone":"なし","SSE.Controllers.Main.txtOpen":"開く","SSE.Controllers.Main.txtOr":"%1か%2","SSE.Controllers.Main.txtPage":"ページ","SSE.Controllers.Main.txtPageOf":"1%/2%ページ","SSE.Controllers.Main.txtPages":"ページ","SSE.Controllers.Main.txtPicture":"画像","SSE.Controllers.Main.txtPivotTable":"ピボットテーブル","SSE.Controllers.Main.txtPreparedBy":"作成者:","SSE.Controllers.Main.txtPrintArea":"印刷範囲","SSE.Controllers.Main.txtQuarter":"四半期","SSE.Controllers.Main.txtQuarters":"四半期","SSE.Controllers.Main.txtRectangles":"四角形","SSE.Controllers.Main.txtRow":"行","SSE.Controllers.Main.txtRowLbls":"行ラベル","SSE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","SSE.Controllers.Main.txtScheme_Aspect":"アスペクト","SSE.Controllers.Main.txtScheme_Blue":"青色","SSE.Controllers.Main.txtScheme_Blue_Green":"ブルーグリーン","SSE.Controllers.Main.txtScheme_Blue_II":"青色II","SSE.Controllers.Main.txtScheme_Blue_Warm":"ブルーウォーム","SSE.Controllers.Main.txtScheme_Grayscale":"グレースケール","SSE.Controllers.Main.txtScheme_Green":"緑色","SSE.Controllers.Main.txtScheme_Green_Yellow":"黄緑色","SSE.Controllers.Main.txtScheme_Marquee":"マーキー","SSE.Controllers.Main.txtScheme_Median":"中位数","SSE.Controllers.Main.txtScheme_Office":"Office","SSE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","SSE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","SSE.Controllers.Main.txtScheme_Orange":"オレンジ色","SSE.Controllers.Main.txtScheme_Orange_Red":"オレンジ赤色","SSE.Controllers.Main.txtScheme_Paper":"紙","SSE.Controllers.Main.txtScheme_Red":"赤色","SSE.Controllers.Main.txtScheme_Red_Orange":"オレンジ赤色","SSE.Controllers.Main.txtScheme_Red_Violet":"赤紫色","SSE.Controllers.Main.txtScheme_Slipstream":"スリップストリーム","SSE.Controllers.Main.txtScheme_Violet":"バイオレット色","SSE.Controllers.Main.txtScheme_Violet_II":"バイオレット II","SSE.Controllers.Main.txtScheme_Yellow":"黄色","SSE.Controllers.Main.txtScheme_Yellow_Orange":"オレンジ黄色","SSE.Controllers.Main.txtSeconds":"秒","SSE.Controllers.Main.txtSeries":"系列","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_actionButtonSound":"「音」ボタン","SSE.Controllers.Main.txtShape_arc":"円弧","SSE.Controllers.Main.txtShape_bentArrow":"曲線の矢印","SSE.Controllers.Main.txtShape_bentConnector5":"カギ線コネクター","SSE.Controllers.Main.txtShape_bentConnector5WithArrow":"カギ線矢印コネクター","SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"カギ線の二重矢印コネクター","SSE.Controllers.Main.txtShape_bentUpArrow":"曲線の矢印(上)","SSE.Controllers.Main.txtShape_bevel":"額縁","SSE.Controllers.Main.txtShape_blockArc":"アーチ","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":"角","SSE.Controllers.Main.txtShape_cube":"立方体","SSE.Controllers.Main.txtShape_curvedConnector3":"曲線コネクタ","SSE.Controllers.Main.txtShape_curvedConnector3WithArrow":"曲線矢印コネクタ","SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"曲線の二重矢印コネクタ","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":"12角形","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":"半フレーム","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":"爆発 1","SSE.Controllers.Main.txtShape_irregularSeal2":"爆発 2","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":"1つの角を丸めた四角形","SSE.Controllers.Main.txtShape_round2DiagRect":"対角する 2 つの角を丸めた四角形","SSE.Controllers.Main.txtShape_round2SameRect":"片側の 2 つの角を丸めた四角形","SSE.Controllers.Main.txtShape_roundRect":"角を丸めた四角形","SSE.Controllers.Main.txtShape_rtTriangle":"直角三角形","SSE.Controllers.Main.txtShape_smileyFace":"スマイル","SSE.Controllers.Main.txtShape_snip1Rect":"1つの角を切り取った四角形","SSE.Controllers.Main.txtShape_snip2DiagRect":"対角する2つの角を切り取った四角形","SSE.Controllers.Main.txtShape_snip2SameRect":"片側の2つの角を切り取った四角形","SSE.Controllers.Main.txtShape_snipRoundRect":"1つの角を切り取り1つの角を丸めた四角形","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.txtShape_stripedRightArrow":"ストライプの右矢印","SSE.Controllers.Main.txtShape_sun":"太陽形","SSE.Controllers.Main.txtShape_teardrop":"滴","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_wave":"波","SSE.Controllers.Main.txtShape_wedgeEllipseCallout":"円形吹き出し","SSE.Controllers.Main.txtShape_wedgeRectCallout":"長方形の吹き出し","SSE.Controllers.Main.txtShape_wedgeRoundRectCallout":"角丸長方形の引き出し","SSE.Controllers.Main.txtSheet":"シート","SSE.Controllers.Main.txtSlicer":"スライサー","SSE.Controllers.Main.txtStarsRibbons":"スター&リボン","SSE.Controllers.Main.txtStyle_Bad":"悪い","SSE.Controllers.Main.txtStyle_Calculation":"計算","SSE.Controllers.Main.txtStyle_Check_Cell":"チェックセル","SSE.Controllers.Main.txtStyle_Comma":"カンマ","SSE.Controllers.Main.txtStyle_Currency":"通貨","SSE.Controllers.Main.txtStyle_Explanatory_Text":"説明文","SSE.Controllers.Main.txtStyle_Good":"良い","SSE.Controllers.Main.txtStyle_Heading_1":"見出し1","SSE.Controllers.Main.txtStyle_Heading_2":"見出し2","SSE.Controllers.Main.txtStyle_Heading_3":"見出し3","SSE.Controllers.Main.txtStyle_Heading_4":"見出し4","SSE.Controllers.Main.txtStyle_Input":"入力","SSE.Controllers.Main.txtStyle_Linked_Cell":"リンクされたセル","SSE.Controllers.Main.txtStyle_Neutral":"ニュートラル","SSE.Controllers.Main.txtStyle_Normal":"標準","SSE.Controllers.Main.txtStyle_Note":"注意","SSE.Controllers.Main.txtStyle_Output":"出力","SSE.Controllers.Main.txtStyle_Percent":"パーセント","SSE.Controllers.Main.txtStyle_Title":"表題","SSE.Controllers.Main.txtStyle_Total":"合計","SSE.Controllers.Main.txtStyle_Warning_Text":"警告テキスト","SSE.Controllers.Main.txtTab":"タブ","SSE.Controllers.Main.txtTable":"表","SSE.Controllers.Main.txtTime":"時刻","SSE.Controllers.Main.txtUnlock":"ロックを解除する","SSE.Controllers.Main.txtUnlockRange":"範囲のロック解除","SSE.Controllers.Main.txtUnlockRangeDescription":"範囲を変更するようにパスワードを入力してください","SSE.Controllers.Main.txtUnlockRangeWarning":"変更しようとしている範囲がパスワードで保護されています。","SSE.Controllers.Main.txtValues":"値","SSE.Controllers.Main.txtView":"表示","SSE.Controllers.Main.txtXAxis":"X 軸","SSE.Controllers.Main.txtYAxis":"Y軸","SSE.Controllers.Main.txtYears":"年","SSE.Controllers.Main.unknownErrorText":"不明なエラー","SSE.Controllers.Main.unsupportedBrowserErrorText":"お使いのブラウザがサポートされていません。","SSE.Controllers.Main.uploadDocExtMessage":"不明な文書形式","SSE.Controllers.Main.uploadDocFileCountMessage":"アップロードされた文書がありません","SSE.Controllers.Main.uploadDocSizeMessage":"文書の最大サイズ制限を超えました","SSE.Controllers.Main.uploadImageExtMessage":"不明な画像形式","SSE.Controllers.Main.uploadImageFileCountMessage":"アップロードした画像なし","SSE.Controllers.Main.uploadImageSizeMessage":"イメージのサイズの上限が超えさせました。サイズの上限が25MB。","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.warnExternalChartProtected":"このチャートは外部ファイルのデータに基づいています。このウィンドウでは、チャートに表示するデータを選択することしかできません。スプレッドシートを編集するには、スプレッドシートエディタで開いてください。","SSE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","SSE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","SSE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページを再読み込みしてください。","SSE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","SSE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください","SSE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","SSE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。","SSE.Controllers.Main.warnOpenCsv":"CSV形式は複数シートファイルやテキスト以外の要素の保存をサポートしていません。
アクティブなシートのみが保存されます。","SSE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","SSE.Controllers.PivotTable.strSheet":"シート","SSE.Controllers.PivotTable.txtCalculatedItemInPageField":"項目を追加または変更できません。ピボットテーブルレポートのフィルタにこのフィールドがあります。","SSE.Controllers.PivotTable.txtCalculatedItemWarningDefault":"このアクティブセルでは、計算項目に対する操作は許可されていません。","SSE.Controllers.PivotTable.txtNotUniqueFieldWithCalculated":"ピボットテーブルに計算された項目がある場合、フィールドをデータエリアで2回以上使用したり、データエリアと別のエリアで同時に使用したりすることはできません。","SSE.Controllers.PivotTable.txtPivotFieldCustomSubtotalsWithCalculatedItems":"計算項目はカスタム小計では動作しません。","SSE.Controllers.PivotTable.txtPivotItemNameNotFound":"項目名が見つかりません。名前が正しく入力されているか確認し、その項目がピボットテーブルレポートに存在しているか確認してください。","SSE.Controllers.PivotTable.txtWrongDataFieldSubtotalForCalculatedItems":"ピボットテーブルレポートで計算された項目がある場合、平均、標準偏差、分散はサポートされません。","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.txtCustom":"ユーザー設定","SSE.Controllers.Print.txtZoomToPage":"ページ全体に合わせる","SSE.Controllers.Search.textInvalidRange":"エラー!セルの範囲が正しくありません","SSE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","SSE.Controllers.Search.textReplaceSkipped":"置換が行われました。スキップされた発生回数は{0}です。","SSE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました","SSE.Controllers.Statusbar.errNameExists":"指定された名前のワークシートが既に存在します。","SSE.Controllers.Statusbar.errorLastSheet":"最低 1 つのワークシートが含まれていなければなりません。","SSE.Controllers.Statusbar.errorRemoveSheet":"ワークシートを削除することができません。","SSE.Controllers.Statusbar.errSheetNameRules":"無効なシート名を入力しました:
- シート名は空にできません。
- シート名には次の文字を含めることができません:\\ / * ? [ ] : または最初や最後の文字として ' を使用することはできません。","SSE.Controllers.Statusbar.strSheet":"シート","SSE.Controllers.Statusbar.textContinue":"続ける","SSE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","SSE.Controllers.Statusbar.textSheetViewTip":"シートビューモードになっています。 フィルタと並べ替えは、あなたとまだこのビューにいる人だけに表示されます。","SSE.Controllers.Statusbar.textSheetViewTipFilters":"シート表示モードになっています。 フィルタは、あなたとまだこの表示にいる人だけに表示されます。","SSE.Controllers.Statusbar.warnAddSheetCsv":"CSV形式では複数シートのファイルの保存をサポートしていません。アクティブなシートのみが保存されます。すべてのシートを保持するには、別の形式でファイルを保存してください。","SSE.Controllers.Statusbar.warnDeleteSheet":"選択したシートにはデータが含まれている可能性があります。続行してもよろしいですか?","SSE.Controllers.Statusbar.zoomText":"ズーム{0}%","SSE.Controllers.TableDesignTab.notcriticalErrorTitle":"警告","SSE.Controllers.TableDesignTab.textExistName":"エラー!すでに同じ名前がある範囲も存在しています。","SSE.Controllers.TableDesignTab.textInvalidName":"エラー!表の名前が正しくありません。","SSE.Controllers.TableDesignTab.textIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Controllers.TableDesignTab.textLongOperation":"長時間の操作","SSE.Controllers.TableDesignTab.textReservedName":"使用しようとしている名前は、既にセルの数式で参照されています。他の名前を使用してください。","SSE.Controllers.TableDesignTab.textResize":"テーブルのサイズ変更","SSE.Controllers.TableDesignTab.warnLongOperation":"実行しようとしている操作は、完了するまでにかなり時間がかかる可能性があります。
続行しますか?","SSE.Controllers.Toolbar.confirmAddFontName":"保存しようとしているフォントを現在のデバイスで使用することができません。
システムフォントを使って、テキストのスタイルが表示されます。利用できます時、保存されたフォントが使用されます。
続行しますか。","SSE.Controllers.Toolbar.errorComboSeries":"組み合わせグラフを作成するには、最低2つのデータを選択します。","SSE.Controllers.Toolbar.errorMaxPoints":"グラフごとの直列のポイントの最大数は4096です。","SSE.Controllers.Toolbar.errorMaxRows":"エラー!使用可能なデータ系列の数は、1グラフあたり最大255個です。","SSE.Controllers.Toolbar.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","SSE.Controllers.Toolbar.textAccent":"ダイアクリティカル・マーク","SSE.Controllers.Toolbar.textBracket":"括弧","SSE.Controllers.Toolbar.textDirectional":"方向","SSE.Controllers.Toolbar.textFontSizeErr":"入力された値が正しくありません。
1〜409の数値を入力してください。","SSE.Controllers.Toolbar.textFraction":"分数","SSE.Controllers.Toolbar.textFunction":"関数","SSE.Controllers.Toolbar.textIndicator":"インジケーター","SSE.Controllers.Toolbar.textInsert":"挿入","SSE.Controllers.Toolbar.textIntegral":"積分","SSE.Controllers.Toolbar.textLargeOperator":"大型演算子","SSE.Controllers.Toolbar.textLimitAndLog":"極限と対数","SSE.Controllers.Toolbar.textLongOperation":"長時間の操作","SSE.Controllers.Toolbar.textMatrix":"行列","SSE.Controllers.Toolbar.textOperator":"演算子","SSE.Controllers.Toolbar.textPivot":"ピボットテーブル","SSE.Controllers.Toolbar.textRadical":"冪根","SSE.Controllers.Toolbar.textRating":"評価","SSE.Controllers.Toolbar.textRecentlyUsed":"最近使った項目","SSE.Controllers.Toolbar.textScript":"スクリプト","SSE.Controllers.Toolbar.textShapes":"図形","SSE.Controllers.Toolbar.textSymbols":"記号と特殊文字","SSE.Controllers.Toolbar.textWarning":"警告","SSE.Controllers.Toolbar.txtAccent_Accent":"アキュート","SSE.Controllers.Toolbar.txtAccent_ArrowD":"左右双方向矢印 (上)","SSE.Controllers.Toolbar.txtAccent_ArrowL":"左に矢印 (上)","SSE.Controllers.Toolbar.txtAccent_ArrowR":"右向き矢印 (上)","SSE.Controllers.Toolbar.txtAccent_Bar":"横棒グラフ","SSE.Controllers.Toolbar.txtAccent_BarBot":"下の棒","SSE.Controllers.Toolbar.txtAccent_BarTop":"上の棒","SSE.Controllers.Toolbar.txtAccent_BorderBox":"四角囲み数式 (プレースホルダ付き)","SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"四角囲み数式 (例)","SSE.Controllers.Toolbar.txtAccent_Check":"チェック","SSE.Controllers.Toolbar.txtAccent_CurveBracketBot":"下かっこ","SSE.Controllers.Toolbar.txtAccent_CurveBracketTop":"上かっこ","SSE.Controllers.Toolbar.txtAccent_Custom_1":"ベクトル A","SSE.Controllers.Toolbar.txtAccent_Custom_2":"上線付きABC","SSE.Controllers.Toolbar.txtAccent_Custom_3":"x XORと上線","SSE.Controllers.Toolbar.txtAccent_DDDot":"3重ドット","SSE.Controllers.Toolbar.txtAccent_DDot":"二重ドット","SSE.Controllers.Toolbar.txtAccent_Dot":"点","SSE.Controllers.Toolbar.txtAccent_DoubleBar":"二重上線","SSE.Controllers.Toolbar.txtAccent_Grave":"グレーブ・アクセント","SSE.Controllers.Toolbar.txtAccent_GroupBot":"グループ化文字(下)","SSE.Controllers.Toolbar.txtAccent_GroupTop":"グループ化文字(上)","SSE.Controllers.Toolbar.txtAccent_HarpoonL":"左半矢印(上)","SSE.Controllers.Toolbar.txtAccent_HarpoonR":"右向き半矢印 (上)","SSE.Controllers.Toolbar.txtAccent_Hat":"ハット","SSE.Controllers.Toolbar.txtAccent_Smile":"ブリーブ","SSE.Controllers.Toolbar.txtAccent_Tilde":"チルダ","SSE.Controllers.Toolbar.txtBracket_Angle":"括弧","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"括弧と区切り記号","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"括弧と区切り記号","SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"終わり山かっこ","SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"単一かっこ","SSE.Controllers.Toolbar.txtBracket_Curve":"括弧","SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"括弧と区切り記号","SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"右中かっこ","SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"単一かっこ","SSE.Controllers.Toolbar.txtBracket_Custom_1":"場合分け(条件2つ)","SSE.Controllers.Toolbar.txtBracket_Custom_2":"場合分け (条件3つ)","SSE.Controllers.Toolbar.txtBracket_Custom_3":"縦並びオブジェクト","SSE.Controllers.Toolbar.txtBracket_Custom_4":"縦並びオブジェクト (かっこ付き)","SSE.Controllers.Toolbar.txtBracket_Custom_5":"場合分けの例","SSE.Controllers.Toolbar.txtBracket_Custom_6":"二項係数","SSE.Controllers.Toolbar.txtBracket_Custom_7":"二項係数","SSE.Controllers.Toolbar.txtBracket_Line":"縦棒","SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"縦棒 (右のみ)","SSE.Controllers.Toolbar.txtBracket_Line_OpenNone":"縦棒 (左のみ)","SSE.Controllers.Toolbar.txtBracket_LineDouble":"括弧","SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"二重縦棒 (右のみ)","SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"二重縦棒 (左のみ)","SSE.Controllers.Toolbar.txtBracket_LowLim":"括弧","SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"床関数 (右記号)","SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"床関数 (左記号)","SSE.Controllers.Toolbar.txtBracket_Round":"括弧","SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"括弧と区切り記号","SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"右かっこ","SSE.Controllers.Toolbar.txtBracket_Round_OpenNone":"左かっこ","SSE.Controllers.Toolbar.txtBracket_Square":"大かっこ","SSE.Controllers.Toolbar.txtBracket_Square_CloseClose":"右の角括弧の間のプレースホルダー","SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"反転した角括弧","SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"右角かっこ","SSE.Controllers.Toolbar.txtBracket_Square_OpenNone":"左角かっこ","SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"左の角括弧の間のプレースホルダー","SSE.Controllers.Toolbar.txtBracket_SquareDouble":"括弧","SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"右ダブル角型かっこ","SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"左ダブル角型かっこ","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":"分数 (斜め)","SSE.Controllers.Toolbar.txtFractionDifferential_1":"微分","SSE.Controllers.Toolbar.txtFractionDifferential_2":"微分","SSE.Controllers.Toolbar.txtFractionDifferential_3":"部分的なxに対する部分的なy","SSE.Controllers.Toolbar.txtFractionDifferential_4":"微分","SSE.Controllers.Toolbar.txtFractionHorizontal":"分数 (横)","SSE.Controllers.Toolbar.txtFractionPi_2":"円周率を2で割る","SSE.Controllers.Toolbar.txtFractionSmall":"分数 (小)","SSE.Controllers.Toolbar.txtFractionVertical":"分数 (縦)","SSE.Controllers.Toolbar.txtFunction_1_Cos":"逆余弦関数","SSE.Controllers.Toolbar.txtFunction_1_Cosh":"逆双曲線余弦","SSE.Controllers.Toolbar.txtFunction_1_Cot":"逆余接関数","SSE.Controllers.Toolbar.txtFunction_1_Coth":"双曲線逆余接","SSE.Controllers.Toolbar.txtFunction_1_Csc":"逆余割関数","SSE.Controllers.Toolbar.txtFunction_1_Csch":"逆双曲線余割関数","SSE.Controllers.Toolbar.txtFunction_1_Sec":"逆正割関数","SSE.Controllers.Toolbar.txtFunction_1_Sech":"逆双曲線正割","SSE.Controllers.Toolbar.txtFunction_1_Sin":"逆正弦関数","SSE.Controllers.Toolbar.txtFunction_1_Sinh":"双曲線逆正弦関数","SSE.Controllers.Toolbar.txtFunction_1_Tan":"逆正接関数","SSE.Controllers.Toolbar.txtFunction_1_Tanh":"双曲線逆正接関数","SSE.Controllers.Toolbar.txtFunction_Cos":"余弦関数","SSE.Controllers.Toolbar.txtFunction_Cosh":"双曲線余弦関数","SSE.Controllers.Toolbar.txtFunction_Cot":"余接関数","SSE.Controllers.Toolbar.txtFunction_Coth":"双曲線余接関数","SSE.Controllers.Toolbar.txtFunction_Csc":"余割関数\t","SSE.Controllers.Toolbar.txtFunction_Csch":"双曲線余割関数","SSE.Controllers.Toolbar.txtFunction_Custom_1":"Sin θ","SSE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","SSE.Controllers.Toolbar.txtFunction_Custom_3":"正接数式","SSE.Controllers.Toolbar.txtFunction_Sec":"正割関数","SSE.Controllers.Toolbar.txtFunction_Sech":"双曲線正割関数","SSE.Controllers.Toolbar.txtFunction_Sin":"正弦関数","SSE.Controllers.Toolbar.txtFunction_Sinh":"双曲線正弦関数","SSE.Controllers.Toolbar.txtFunction_Tan":"逆正接関数","SSE.Controllers.Toolbar.txtFunction_Tanh":"双曲線正接関数","SSE.Controllers.Toolbar.txtGroupCell_Custom":"ユーザー設定","SSE.Controllers.Toolbar.txtGroupCell_DataAndModel":"データとモデル","SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral":"良い、悪い、どちらでもない","SSE.Controllers.Toolbar.txtGroupCell_NoName":"名前なし","SSE.Controllers.Toolbar.txtGroupCell_NumberFormat":"数値の書式","SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles":"テーマのセル スタイル","SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings":"タイトルと見出し","SSE.Controllers.Toolbar.txtGroupTable_Custom":"ユーザー設定","SSE.Controllers.Toolbar.txtGroupTable_Dark":"ダーク","SSE.Controllers.Toolbar.txtGroupTable_Light":"ライト","SSE.Controllers.Toolbar.txtGroupTable_Medium":"中","SSE.Controllers.Toolbar.txtInsertCells":"セルを挿入","SSE.Controllers.Toolbar.txtIntegral":"積分","SSE.Controllers.Toolbar.txtIntegral_dtheta":"微分 dθ","SSE.Controllers.Toolbar.txtIntegral_dx":"微分dx","SSE.Controllers.Toolbar.txtIntegral_dy":"微分 dy","SSE.Controllers.Toolbar.txtIntegralCenterSubSup":"積分","SSE.Controllers.Toolbar.txtIntegralDouble":"二重積分","SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"二重積分","SSE.Controllers.Toolbar.txtIntegralDoubleSubSup":"二重積分","SSE.Controllers.Toolbar.txtIntegralOriented":"周回積分","SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"周回積分","SSE.Controllers.Toolbar.txtIntegralOrientedDouble":"面積分","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"面積分 (上下端値を上下に配置)","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"面積分 (上下端値あり)","SSE.Controllers.Toolbar.txtIntegralOrientedSubSup":"周回積分","SSE.Controllers.Toolbar.txtIntegralOrientedTriple":"体積積分","SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"体積積分 (上下端値を上下に配置)","SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"体積積分 (上下端値あり)","SSE.Controllers.Toolbar.txtIntegralSubSup":"積分","SSE.Controllers.Toolbar.txtIntegralTriple":"三重積分","SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"三重積分 (上下端値を上下に配置)","SSE.Controllers.Toolbar.txtIntegralTripleSubSup":"三重積分 (上下端値あり)","SSE.Controllers.Toolbar.txtInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction":"論理積","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"論理積 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"論理積 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"論理積 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"論理積 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_CoProd":"余積","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"下端付き余積","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"極限付き余積","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"下端下付き双対積","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"上下付き極限付き双対積","SSE.Controllers.Toolbar.txtLargeOperator_Custom_1":"n から k を選ぶ場合の k の総和","SSE.Controllers.Toolbar.txtLargeOperator_Custom_2":"総和 (i = 0 から n まで)","SSE.Controllers.Toolbar.txtLargeOperator_Custom_3":"添え字 2 個を使う総和の例","SSE.Controllers.Toolbar.txtLargeOperator_Custom_4":"積の例","SSE.Controllers.Toolbar.txtLargeOperator_Custom_5":"和集合の例","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction":"論理和","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"論理和 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"論理和 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"論理和 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"論理和 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Intersection":"共通集合","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"積集合 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"積集合 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"積集合 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"積集合 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Prod":"乗積","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"積 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"積 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"積 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"積 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Sum":"合計","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"総和 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"総和 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"総和 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"総和 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Union":"和集合","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"和集合 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"和集合 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"和集合 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"和集合 (下付き/上付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLimitLog_Custom_1":"極限の例","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":"最大","SSE.Controllers.Toolbar.txtLimitLog_Min":"最小","SSE.Controllers.Toolbar.txtLockSort":"選択の範囲の近くにデータが見つけられたけどこのセルを変更するに十分なアクセス許可がありません。
選択の範囲を続行してもよろしいですか?","SSE.Controllers.Toolbar.txtMatrix_1_2":"1x2空行列","SSE.Controllers.Toolbar.txtMatrix_1_3":"1x3空行列","SSE.Controllers.Toolbar.txtMatrix_2_1":"2x1 空行列","SSE.Controllers.Toolbar.txtMatrix_2_2":"2x2 空行列","SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"かっこ付き空行列","SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"かっこ付き空行列","SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"かっこ付き空行列","SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"かっこ付き空行列","SSE.Controllers.Toolbar.txtMatrix_2_3":"2x3 空行列","SSE.Controllers.Toolbar.txtMatrix_3_1":"3x1 空行列","SSE.Controllers.Toolbar.txtMatrix_3_2":"3x2 空行列","SSE.Controllers.Toolbar.txtMatrix_3_3":"3x3 空行列","SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"ベースライン ドット","SSE.Controllers.Toolbar.txtMatrix_Dots_Center":"ミッドライン・ドット","SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"斜めドット","SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"縦向きドット","SSE.Controllers.Toolbar.txtMatrix_Flat_Round":"疎行列 (かっこ付き)","SSE.Controllers.Toolbar.txtMatrix_Flat_Square":"疎行列 (大かっこ付き)","SSE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 単位行列","SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"3x3 単位行列","SSE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 単位行列","SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3 単位行列","SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"左右双方向矢印 (下)","SSE.Controllers.Toolbar.txtOperator_ArrowD_Top":"左右双方向矢印 (上)","SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"左に矢印 (下)","SSE.Controllers.Toolbar.txtOperator_ArrowL_Top":"左に矢印 (上)","SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"右向き矢印 (下)","SSE.Controllers.Toolbar.txtOperator_ArrowR_Top":"右向き矢印 (上)","SSE.Controllers.Toolbar.txtOperator_ColonEquals":"コロン付き等号","SSE.Controllers.Toolbar.txtOperator_Custom_1":"導出","SSE.Controllers.Toolbar.txtOperator_Custom_2":"誤差導出","SSE.Controllers.Toolbar.txtOperator_Definition":"定義により等しい","SSE.Controllers.Toolbar.txtOperator_DeltaEquals":"デルタは等しい","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"左右双方向矢印 (下)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"左右双方向矢印 (上)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"左に矢印 (下)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"左に矢印 (上)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"右向き矢印 (下)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"右向き矢印 (上)","SSE.Controllers.Toolbar.txtOperator_EqualsEquals":"等号等号","SSE.Controllers.Toolbar.txtOperator_MinusEquals":"マイナス付き等号","SSE.Controllers.Toolbar.txtOperator_PlusEquals":"プラス付き等号","SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"測度","SSE.Controllers.Toolbar.txtRadicalCustom_1":"二次方程式の解の公式の右辺","SSE.Controllers.Toolbar.txtRadicalCustom_2":"a の 2 乗と b の 2 乗の和の平方根","SSE.Controllers.Toolbar.txtRadicalRoot_2":"次数付き平方根","SSE.Controllers.Toolbar.txtRadicalRoot_3":"立方根","SSE.Controllers.Toolbar.txtRadicalRoot_n":"次数付きべき乗根","SSE.Controllers.Toolbar.txtRadicalSqrt":"平方根","SSE.Controllers.Toolbar.txtScriptCustom_1":"x 下付き文字 y の 2 乗","SSE.Controllers.Toolbar.txtScriptCustom_2":"スクリプト","SSE.Controllers.Toolbar.txtScriptCustom_3":"x の 2 乗","SSE.Controllers.Toolbar.txtScriptCustom_4":"Y 左上付き文字 n 左下付き文字 1","SSE.Controllers.Toolbar.txtScriptSub":"下付き","SSE.Controllers.Toolbar.txtScriptSubSup":"下付き文字 - 上付き文字","SSE.Controllers.Toolbar.txtScriptSubSupLeft":"左下付き文字 - 上付き文字","SSE.Controllers.Toolbar.txtScriptSup":"上付き","SSE.Controllers.Toolbar.txtSorting":"並べ替え","SSE.Controllers.Toolbar.txtSortSelected":"選択した内容を並べ替える","SSE.Controllers.Toolbar.txtSymbol_about":"近似","SSE.Controllers.Toolbar.txtSymbol_additional":"補集合","SSE.Controllers.Toolbar.txtSymbol_aleph":"アレフ","SSE.Controllers.Toolbar.txtSymbol_alpha":"アルファ","SSE.Controllers.Toolbar.txtSymbol_approx":"ほぼ等しい","SSE.Controllers.Toolbar.txtSymbol_ast":"アスタリスク","SSE.Controllers.Toolbar.txtSymbol_beta":"ベータ","SSE.Controllers.Toolbar.txtSymbol_beth":"ベート","SSE.Controllers.Toolbar.txtSymbol_bullet":"箇条書きの演算子","SSE.Controllers.Toolbar.txtSymbol_cap":"共通集合","SSE.Controllers.Toolbar.txtSymbol_cbrt":"立方根","SSE.Controllers.Toolbar.txtSymbol_cdots":"水平中央の省略記号","SSE.Controllers.Toolbar.txtSymbol_celsius":"摂氏","SSE.Controllers.Toolbar.txtSymbol_chi":"カイ","SSE.Controllers.Toolbar.txtSymbol_cong":"ほぼ等しい","SSE.Controllers.Toolbar.txtSymbol_cup":"和集合","SSE.Controllers.Toolbar.txtSymbol_ddots":"下右斜めの省略記号","SSE.Controllers.Toolbar.txtSymbol_degree":"度","SSE.Controllers.Toolbar.txtSymbol_delta":"デルタ","SSE.Controllers.Toolbar.txtSymbol_div":"「除算」記号","SSE.Controllers.Toolbar.txtSymbol_downarrow":"下矢印","SSE.Controllers.Toolbar.txtSymbol_emptyset":"空集合","SSE.Controllers.Toolbar.txtSymbol_epsilon":"イプシロン","SSE.Controllers.Toolbar.txtSymbol_equals":"等しい","SSE.Controllers.Toolbar.txtSymbol_equiv":"恒等","SSE.Controllers.Toolbar.txtSymbol_eta":"エータ","SSE.Controllers.Toolbar.txtSymbol_exists":"存在します\t","SSE.Controllers.Toolbar.txtSymbol_factorial":"階乗","SSE.Controllers.Toolbar.txtSymbol_fahrenheit":"華氏","SSE.Controllers.Toolbar.txtSymbol_forall":"全てに","SSE.Controllers.Toolbar.txtSymbol_gamma":"ガンマ","SSE.Controllers.Toolbar.txtSymbol_geq":"次の値より大きいか等しい","SSE.Controllers.Toolbar.txtSymbol_gg":"次の値よりはるかに大きい","SSE.Controllers.Toolbar.txtSymbol_greater":"次の値より大きい","SSE.Controllers.Toolbar.txtSymbol_in":"属する","SSE.Controllers.Toolbar.txtSymbol_inc":"増分","SSE.Controllers.Toolbar.txtSymbol_infinity":"無限大","SSE.Controllers.Toolbar.txtSymbol_iota":"イオタ","SSE.Controllers.Toolbar.txtSymbol_kappa":"カッパ","SSE.Controllers.Toolbar.txtSymbol_lambda":"ラムダ","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":"マイナス","SSE.Controllers.Toolbar.txtSymbol_mp":"マイナスプラス","SSE.Controllers.Toolbar.txtSymbol_mu":"ミュー","SSE.Controllers.Toolbar.txtSymbol_nabla":"ナブラ","SSE.Controllers.Toolbar.txtSymbol_neq":"と等しくない","SSE.Controllers.Toolbar.txtSymbol_ni":"含む","SSE.Controllers.Toolbar.txtSymbol_not":"「否定」記号","SSE.Controllers.Toolbar.txtSymbol_notexists":"存在しません","SSE.Controllers.Toolbar.txtSymbol_nu":"ニュー","SSE.Controllers.Toolbar.txtSymbol_o":"オミクロン","SSE.Controllers.Toolbar.txtSymbol_omega":"オメガ","SSE.Controllers.Toolbar.txtSymbol_partial":"偏微分方程式","SSE.Controllers.Toolbar.txtSymbol_percent":"パーセンテージ","SSE.Controllers.Toolbar.txtSymbol_phi":"ファイ","SSE.Controllers.Toolbar.txtSymbol_pi":"パイ","SSE.Controllers.Toolbar.txtSymbol_plus":"プラス","SSE.Controllers.Toolbar.txtSymbol_pm":"プラスとマイナス","SSE.Controllers.Toolbar.txtSymbol_propto":"比例","SSE.Controllers.Toolbar.txtSymbol_psi":"プサイ","SSE.Controllers.Toolbar.txtSymbol_qdrt":"四乗根","SSE.Controllers.Toolbar.txtSymbol_qed":"証明終了","SSE.Controllers.Toolbar.txtSymbol_rddots":"斜め(右上)の省略記号","SSE.Controllers.Toolbar.txtSymbol_rho":"ロー","SSE.Controllers.Toolbar.txtSymbol_rightarrow":"右矢印","SSE.Controllers.Toolbar.txtSymbol_sigma":"シグマ","SSE.Controllers.Toolbar.txtSymbol_sqrt":"根号","SSE.Controllers.Toolbar.txtSymbol_tau":"タウ","SSE.Controllers.Toolbar.txtSymbol_therefore":"従って","SSE.Controllers.Toolbar.txtSymbol_theta":"シータ","SSE.Controllers.Toolbar.txtSymbol_times":"「乗算」記号","SSE.Controllers.Toolbar.txtSymbol_uparrow":"上矢印","SSE.Controllers.Toolbar.txtSymbol_upsilon":"ウプシロン","SSE.Controllers.Toolbar.txtSymbol_varepsilon":"イプシロン (別形)","SSE.Controllers.Toolbar.txtSymbol_varphi":"ファイ (別形)","SSE.Controllers.Toolbar.txtSymbol_varpi":"パイ","SSE.Controllers.Toolbar.txtSymbol_varrho":"ロー (別形)","SSE.Controllers.Toolbar.txtSymbol_varsigma":"シグマ (別形)","SSE.Controllers.Toolbar.txtSymbol_vartheta":"シータ (別形)","SSE.Controllers.Toolbar.txtSymbol_vdots":"垂直線の省略記号","SSE.Controllers.Toolbar.txtSymbol_xsi":"グザイ","SSE.Controllers.Toolbar.txtSymbol_zeta":"ゼータ","SSE.Controllers.Toolbar.txtTable_TableStyleDark":"表のスタイル:暗","SSE.Controllers.Toolbar.txtTable_TableStyleLight":"表のスタイル:明るい","SSE.Controllers.Toolbar.txtTable_TableStyleMedium":"表のスタイル:中","SSE.Controllers.Toolbar.warnLongOperation":"実行しようとしている操作は、完了するまでにかなり時間がかかる可能性があります。
続行しますか?","SSE.Controllers.Toolbar.warnMergeLostData":"セルを結合すると、左上の値のみが保持され、他のセルの値は破棄されます。
続行してもよろしいです?","SSE.Controllers.Toolbar.warnNoRecommended":"グラフを作成するには、使用したいデータを含むセルを選択します。
行や列に名前があり、それらをラベルとして使用したい場合は、選択範囲に含めてください。","SSE.Controllers.Viewport.textFreezePanes":"ウィンドウ枠の固定","SSE.Controllers.Viewport.textFreezePanesShadow":"固定されたウィンドウ枠の影を表示する","SSE.Controllers.Viewport.textHideFBar":"数式バーを表示しない","SSE.Controllers.Viewport.textHideGridlines":"枠線を非表示にする","SSE.Controllers.Viewport.textHideHeadings":"見出しを表示しない","SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator":"小数点区切り","SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator":"桁区切り","SSE.Views.AdvancedSeparatorDialog.textLabel":"数値の桁区切り設定","SSE.Views.AdvancedSeparatorDialog.textQualifier":"文字列の引用符","SSE.Views.AdvancedSeparatorDialog.textTitle":"詳細設定","SSE.Views.AdvancedSeparatorDialog.txtNone":"(なし)","SSE.Views.AutoFilterDialog.btnCustomFilter":"ユーザー設定フィルター","SSE.Views.AutoFilterDialog.textAddSelection":"現在の選択範囲をフィルターに追加する","SSE.Views.AutoFilterDialog.textEmptyItem":"{空白}","SSE.Views.AutoFilterDialog.textSelectAll":"すべてを選択","SSE.Views.AutoFilterDialog.textSelectAllResults":"検索の全ての結果を選択する","SSE.Views.AutoFilterDialog.textWarning":"警告","SSE.Views.AutoFilterDialog.txtAboveAve":"平均より上","SSE.Views.AutoFilterDialog.txtAfter":"その後...","SSE.Views.AutoFilterDialog.txtAllDatesInThePeriod":"期間中の全日程","SSE.Views.AutoFilterDialog.txtApril":"4月","SSE.Views.AutoFilterDialog.txtAugust":"8月","SSE.Views.AutoFilterDialog.txtBefore":"その前...","SSE.Views.AutoFilterDialog.txtBegins":"...で始まる","SSE.Views.AutoFilterDialog.txtBelowAve":"平均より下​​","SSE.Views.AutoFilterDialog.txtBetween":"…の間に","SSE.Views.AutoFilterDialog.txtClear":"消去","SSE.Views.AutoFilterDialog.txtContains":"...が値を含む","SSE.Views.AutoFilterDialog.txtDateFilter":"日付フィルター","SSE.Views.AutoFilterDialog.txtDecember":"12月","SSE.Views.AutoFilterDialog.txtEmpty":"セルのフィルタを挿入してください。","SSE.Views.AutoFilterDialog.txtEnds":"終了","SSE.Views.AutoFilterDialog.txtEquals":"...に等しい","SSE.Views.AutoFilterDialog.txtFebruary":"2月","SSE.Views.AutoFilterDialog.txtFilterCellColor":"セルの色でフィルター","SSE.Views.AutoFilterDialog.txtFilterFontColor":"フォントの色でフィルター","SSE.Views.AutoFilterDialog.txtGreater":"...より大きい","SSE.Views.AutoFilterDialog.txtGreaterEquals":"次の値より大きいか等しい","SSE.Views.AutoFilterDialog.txtJanuary":"1月","SSE.Views.AutoFilterDialog.txtJuly":"7月","SSE.Views.AutoFilterDialog.txtJune":"6月","SSE.Views.AutoFilterDialog.txtLabelFilter":"ラベル・フィルター","SSE.Views.AutoFilterDialog.txtLastMonth":"先月","SSE.Views.AutoFilterDialog.txtLastQuarter":"前四半期","SSE.Views.AutoFilterDialog.txtLastWeek":"先週","SSE.Views.AutoFilterDialog.txtLastYear":"去年","SSE.Views.AutoFilterDialog.txtLess":"...より小","SSE.Views.AutoFilterDialog.txtLessEquals":"より小か等しい","SSE.Views.AutoFilterDialog.txtMarch":"3月","SSE.Views.AutoFilterDialog.txtMay":"5月","SSE.Views.AutoFilterDialog.txtNextMonth":"来月","SSE.Views.AutoFilterDialog.txtNextQuarter":"来四半期","SSE.Views.AutoFilterDialog.txtNextWeek":"来週","SSE.Views.AutoFilterDialog.txtNextYear":"来年","SSE.Views.AutoFilterDialog.txtNotBegins":"…の値で始まらない","SSE.Views.AutoFilterDialog.txtNotBetween":"間ではない","SSE.Views.AutoFilterDialog.txtNotContains":"次の値を含まない...","SSE.Views.AutoFilterDialog.txtNotEnds":"次の値で終わらない...","SSE.Views.AutoFilterDialog.txtNotEquals":"...と等しくない","SSE.Views.AutoFilterDialog.txtNovember":"11月","SSE.Views.AutoFilterDialog.txtNumFilter":"番号フィルター","SSE.Views.AutoFilterDialog.txtOctober":"10月","SSE.Views.AutoFilterDialog.txtQuarter1":"第1四半期","SSE.Views.AutoFilterDialog.txtQuarter2":"第2四半期","SSE.Views.AutoFilterDialog.txtQuarter3":"第3四半期","SSE.Views.AutoFilterDialog.txtQuarter4":"第4四半期","SSE.Views.AutoFilterDialog.txtReapply":"再適用​​","SSE.Views.AutoFilterDialog.txtSeptember":"9月","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.txtThisMonth":"今月","SSE.Views.AutoFilterDialog.txtThisQuarter":"今期","SSE.Views.AutoFilterDialog.txtThisWeek":"今週","SSE.Views.AutoFilterDialog.txtThisYear":"今年","SSE.Views.AutoFilterDialog.txtTitle":"フィルター​​","SSE.Views.AutoFilterDialog.txtToday":"今日","SSE.Views.AutoFilterDialog.txtTomorrow":"明日","SSE.Views.AutoFilterDialog.txtTop10":"トップ10","SSE.Views.AutoFilterDialog.txtValueFilter":"値フィルター","SSE.Views.AutoFilterDialog.txtYearToDate":"今年度","SSE.Views.AutoFilterDialog.txtYesterday":"昨日","SSE.Views.AutoFilterDialog.warnFilterError":"値フィルターを適用するには、「値」範囲に少なくとも1つのフィールドが必要です。","SSE.Views.AutoFilterDialog.warnNoSelected":"値を少なくとも1つを指定してください。","SSE.Views.CellEditor.textManager":"名前の管理","SSE.Views.CellEditor.tipFormula":"関数を挿入","SSE.Views.CellRangeDialog.errorMaxRows":"エラー!使用可能なデータ系列の数は、1グラフあたり最大255個です。","SSE.Views.CellRangeDialog.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","SSE.Views.CellRangeDialog.txtEmpty":"このフィールドは必須項目です","SSE.Views.CellRangeDialog.txtInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.CellRangeDialog.txtTitle":"データ範囲の選択","SSE.Views.CellSettings.strShrink":"縮小して全体を表示する","SSE.Views.CellSettings.strWrap":"テキストの折り返し","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.textControl":"テキストコントロール","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.textOrientation":"テキストの方向","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.errorInvalidReference":"参照が無効です。 開いているワークシートを参照する必要があります。","SSE.Views.ChartDataDialog.errorMaxPoints":"グラフごとの直列のポイントの最大数は4096です。","SSE.Views.ChartDataDialog.errorMaxRows":"グラフのデータ系列の最大数は255です。","SSE.Views.ChartDataDialog.errorNoSingleRowCol":"参照が無効です。 タイトル、値、サイズ、またはデータラベルの参照は、単一のセル、行、または列である必要があります。","SSE.Views.ChartDataDialog.errorNoValues":"グラフを作成するには、系列に少なくとも1つの値がある必要があります。","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.textSwitch":"行/列を切り替える","SSE.Views.ChartDataDialog.textTitle":"グラフのデータ","SSE.Views.ChartDataDialog.textUp":"上","SSE.Views.ChartDataRangeDialog.errorInFormula":"入力した数式にエラーがあります。","SSE.Views.ChartDataRangeDialog.errorInvalidReference":"参照が無効です。 開いているワークシートを参照する必要があります。","SSE.Views.ChartDataRangeDialog.errorMaxPoints":"グラフごとの直列のポイントの最大数は4096です。","SSE.Views.ChartDataRangeDialog.errorMaxRows":"グラフのデータ系列の最大数は255です。","SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol":"参照が無効です。 タイトル、値、サイズ、またはデータラベルの参照は、単一のセル、行、または列である必要があります。","SSE.Views.ChartDataRangeDialog.errorNoValues":"グラフを作成するには、系列に少なくとも1つの値がある必要があります。","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.errorMaxRows":"グラフのデータ系列の最大数は255です","SSE.Views.ChartSettings.strLineWeight":"線の太さ","SSE.Views.ChartSettings.strSparkColor":"色","SSE.Views.ChartSettings.strTemplate":"テンプレート","SSE.Views.ChartSettings.text3dDepth":"深さ(ベースに対する割合)","SSE.Views.ChartSettings.text3dHeight":"高さ(ベースに対する割合)","SSE.Views.ChartSettings.text3dRotation":"3D回転","SSE.Views.ChartSettings.textAdvanced":"詳細設定の表示","SSE.Views.ChartSettings.textAutoscale":"自動スケーリング","SSE.Views.ChartSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値をご入力ください。","SSE.Views.ChartSettings.textChangeType":"タイプを変更","SSE.Views.ChartSettings.textChartType":"グラフ種類の変更","SSE.Views.ChartSettings.textDefault":"デフォルト回転","SSE.Views.ChartSettings.textDown":"下","SSE.Views.ChartSettings.textEditData":"データと場所を編集","SSE.Views.ChartSettings.textFirstPoint":"最初のポイント","SSE.Views.ChartSettings.textHeight":"高さ","SSE.Views.ChartSettings.textHighPoint":"最高ポイント","SSE.Views.ChartSettings.textKeepRatio":"比例の定数","SSE.Views.ChartSettings.textLastPoint":"最後ポイント","SSE.Views.ChartSettings.textLeft":"左","SSE.Views.ChartSettings.textLowPoint":"最低ポイント","SSE.Views.ChartSettings.textMarkers":"マーカー","SSE.Views.ChartSettings.textNarrow":"狭角","SSE.Views.ChartSettings.textNegativePoint":"マイナスのポイント","SSE.Views.ChartSettings.textPerspective":"分析観点","SSE.Views.ChartSettings.textRanges":"データ範囲","SSE.Views.ChartSettings.textRight":"右","SSE.Views.ChartSettings.textRightAngle":"軸の直交","SSE.Views.ChartSettings.textSelectData":"データの選択","SSE.Views.ChartSettings.textShow":"表示する","SSE.Views.ChartSettings.textSize":"サイズ","SSE.Views.ChartSettings.textStyle":"スタイル","SSE.Views.ChartSettings.textSwitch":"行/列を切り替える","SSE.Views.ChartSettings.textType":"タイプ","SSE.Views.ChartSettings.textUp":"上","SSE.Views.ChartSettings.textWiden":"広角","SSE.Views.ChartSettings.textWidth":"幅","SSE.Views.ChartSettings.textX":"X 回転","SSE.Views.ChartSettings.textY":"Y 回転","SSE.Views.ChartSettingsDlg.errorMaxPoints":"エラー!グラフごとの直列のポイントの最大数は4096です。","SSE.Views.ChartSettingsDlg.errorMaxRows":"エラー!使用可能なデータ系列の数は、1グラフあたり最大255個です。","SSE.Views.ChartSettingsDlg.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","SSE.Views.ChartSettingsDlg.textAbsolute":"セルで移動したりサイズを変更したりしない","SSE.Views.ChartSettingsDlg.textAlt":"代替テキスト","SSE.Views.ChartSettingsDlg.textAltDescription":"説明","SSE.Views.ChartSettingsDlg.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","SSE.Views.ChartSettingsDlg.textAltTitle":"タイトル","SSE.Views.ChartSettingsDlg.textAuto":"自動","SSE.Views.ChartSettingsDlg.textAutoEach":"各に自動的","SSE.Views.ChartSettingsDlg.textAxisCrosses":"軸との交点","SSE.Views.ChartSettingsDlg.textAxisOptions":"軸の設定","SSE.Views.ChartSettingsDlg.textAxisPos":"軸の位置","SSE.Views.ChartSettingsDlg.textAxisSettings":"軸の設定","SSE.Views.ChartSettingsDlg.textAxisTitle":"タイトル","SSE.Views.ChartSettingsDlg.textBase":"ベース","SSE.Views.ChartSettingsDlg.textBetweenTickMarks":"目盛りの間","SSE.Views.ChartSettingsDlg.textBillions":"十億","SSE.Views.ChartSettingsDlg.textBottom":"下","SSE.Views.ChartSettingsDlg.textCategoryName":"カテゴリ名","SSE.Views.ChartSettingsDlg.textCenter":"中央揃え","SSE.Views.ChartSettingsDlg.textChartElementsLegend":"グラフ要素&
グラフの凡例","SSE.Views.ChartSettingsDlg.textChartTitle":"グラフのタイトル","SSE.Views.ChartSettingsDlg.textCross":"十字形","SSE.Views.ChartSettingsDlg.textCustom":"ユーザー設定","SSE.Views.ChartSettingsDlg.textDataColumns":"列に","SSE.Views.ChartSettingsDlg.textDataLabels":"データ ラベル","SSE.Views.ChartSettingsDlg.textDataRange":"データ範囲","SSE.Views.ChartSettingsDlg.textDataRows":"行に","SSE.Views.ChartSettingsDlg.textDataSeries":"データ系列","SSE.Views.ChartSettingsDlg.textDisplayLegend":"凡例を表示","SSE.Views.ChartSettingsDlg.textEmptyCells":"空のセルと非表示のセル","SSE.Views.ChartSettingsDlg.textEmptyLine":"データポイントを線で接続する","SSE.Views.ChartSettingsDlg.textFit":"幅に合わせる","SSE.Views.ChartSettingsDlg.textFixed":"固定","SSE.Views.ChartSettingsDlg.textFormat":"ラベルの書式","SSE.Views.ChartSettingsDlg.textGaps":"空隙","SSE.Views.ChartSettingsDlg.textGridLines":"枠線表示","SSE.Views.ChartSettingsDlg.textGroup":"スパークラインをグループ化する","SSE.Views.ChartSettingsDlg.textHide":"表示しない","SSE.Views.ChartSettingsDlg.textHideAxis":"軸を非表示","SSE.Views.ChartSettingsDlg.textHigh":"高","SSE.Views.ChartSettingsDlg.textHorAxis":"横軸","SSE.Views.ChartSettingsDlg.textHorAxisSec":"二次横軸","SSE.Views.ChartSettingsDlg.textHorGrid":"横軸目盛線","SSE.Views.ChartSettingsDlg.textHorizontal":"水平","SSE.Views.ChartSettingsDlg.textHorTitle":"横軸のタイトル","SSE.Views.ChartSettingsDlg.textHundredMil":"100 000 000","SSE.Views.ChartSettingsDlg.textHundreds":"百","SSE.Views.ChartSettingsDlg.textHundredThousands":"100 000","SSE.Views.ChartSettingsDlg.textIn":"に","SSE.Views.ChartSettingsDlg.textInnerBottom":"内部(下)","SSE.Views.ChartSettingsDlg.textInnerTop":"内部(上)","SSE.Views.ChartSettingsDlg.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.ChartSettingsDlg.textLabelDist":"軸ラベルの距離","SSE.Views.ChartSettingsDlg.textLabelInterval":"ラベルの間の間隔","SSE.Views.ChartSettingsDlg.textLabelOptions":"ラベル オプション\t","SSE.Views.ChartSettingsDlg.textLabelPos":"ラベルの位置","SSE.Views.ChartSettingsDlg.textLayout":"レイアウト","SSE.Views.ChartSettingsDlg.textLeft":"左","SSE.Views.ChartSettingsDlg.textLeftOverlay":"左の重ね合わせ","SSE.Views.ChartSettingsDlg.textLegendBottom":"下","SSE.Views.ChartSettingsDlg.textLegendLeft":"左","SSE.Views.ChartSettingsDlg.textLegendPos":"凡例","SSE.Views.ChartSettingsDlg.textLegendRight":"右に","SSE.Views.ChartSettingsDlg.textLegendTop":"トップ","SSE.Views.ChartSettingsDlg.textLines":"線","SSE.Views.ChartSettingsDlg.textLocationRange":"場所の範囲","SSE.Views.ChartSettingsDlg.textLogScale":"対数目盛","SSE.Views.ChartSettingsDlg.textLow":"低","SSE.Views.ChartSettingsDlg.textMajor":"メジャー","SSE.Views.ChartSettingsDlg.textMajorMinor":"メジャーまたはマイナー","SSE.Views.ChartSettingsDlg.textMajorType":"メジャータイプ","SSE.Views.ChartSettingsDlg.textManual":"手動的に","SSE.Views.ChartSettingsDlg.textMarkers":"マーカー","SSE.Views.ChartSettingsDlg.textMarksInterval":"マークの間の間隔","SSE.Views.ChartSettingsDlg.textMaxValue":"最大値","SSE.Views.ChartSettingsDlg.textMillions":"百万","SSE.Views.ChartSettingsDlg.textMinor":"マイナー","SSE.Views.ChartSettingsDlg.textMinorType":"マイナータイプ","SSE.Views.ChartSettingsDlg.textMinValue":"最小値","SSE.Views.ChartSettingsDlg.textNextToAxis":"軸の下/左","SSE.Views.ChartSettingsDlg.textNone":"なし","SSE.Views.ChartSettingsDlg.textNoOverlay":"重ね合わせなし","SSE.Views.ChartSettingsDlg.textOneCell":"移動するが、セルでサイズを変更しない","SSE.Views.ChartSettingsDlg.textOnTickMarks":"目盛","SSE.Views.ChartSettingsDlg.textOut":"外","SSE.Views.ChartSettingsDlg.textOuterTop":"外トップ","SSE.Views.ChartSettingsDlg.textOverlay":"オーバーレイ","SSE.Views.ChartSettingsDlg.textReverse":"軸を反転する","SSE.Views.ChartSettingsDlg.textReverseOrder":"逆順","SSE.Views.ChartSettingsDlg.textRight":"右に","SSE.Views.ChartSettingsDlg.textRightOverlay":"右の重ね合わせ","SSE.Views.ChartSettingsDlg.textRotated":"回転","SSE.Views.ChartSettingsDlg.textSameAll":"すべてに同じ","SSE.Views.ChartSettingsDlg.textSelectData":"データの選択","SSE.Views.ChartSettingsDlg.textSeparator":"日付のラベルの区切り記号","SSE.Views.ChartSettingsDlg.textSeriesName":"系列の名前","SSE.Views.ChartSettingsDlg.textShow":"表示","SSE.Views.ChartSettingsDlg.textShowAxis":"軸の表示","SSE.Views.ChartSettingsDlg.textShowBorders":"グラフの罫線を表示","SSE.Views.ChartSettingsDlg.textShowData":"非表示の行と列にデータを表示する","SSE.Views.ChartSettingsDlg.textShowEmptyCells":"空のセルを表示する","SSE.Views.ChartSettingsDlg.textShowEquation":"チャートに数式を表示","SSE.Views.ChartSettingsDlg.textShowGrid":"グリッド線","SSE.Views.ChartSettingsDlg.textShowSparkAxis":"軸を表示する","SSE.Views.ChartSettingsDlg.textShowValues":"グラフ値を表示","SSE.Views.ChartSettingsDlg.textSingle":"単一スパークライン","SSE.Views.ChartSettingsDlg.textSmooth":"スムーズ","SSE.Views.ChartSettingsDlg.textSnap":"セルに合わせる","SSE.Views.ChartSettingsDlg.textSparkRanges":"スパークライン範囲","SSE.Views.ChartSettingsDlg.textStraight":"直線","SSE.Views.ChartSettingsDlg.textStyle":"スタイル","SSE.Views.ChartSettingsDlg.textTenMillions":"10 000 000","SSE.Views.ChartSettingsDlg.textTenThousands":"10 000","SSE.Views.ChartSettingsDlg.textThousands":"千","SSE.Views.ChartSettingsDlg.textTickOptions":"ティックのオプション","SSE.Views.ChartSettingsDlg.textTitle":"グラフ - 詳細設定","SSE.Views.ChartSettingsDlg.textTitleSparkline":"スパークラインー詳細設定","SSE.Views.ChartSettingsDlg.textTop":"上","SSE.Views.ChartSettingsDlg.textTrendlineOptions":"傾向線のオプション","SSE.Views.ChartSettingsDlg.textTrillions":"兆","SSE.Views.ChartSettingsDlg.textTwoCell":"セルで移動してサイズを変更する","SSE.Views.ChartSettingsDlg.textType":"タイプ","SSE.Views.ChartSettingsDlg.textTypeData":"タイプ&データ","SSE.Views.ChartSettingsDlg.textTypeStyle":"グラフの種類、タイトル&
データ範囲","SSE.Views.ChartSettingsDlg.textUnits":"表示単位","SSE.Views.ChartSettingsDlg.textValue":"値","SSE.Views.ChartSettingsDlg.textVertAxis":"縦軸","SSE.Views.ChartSettingsDlg.textVertAxisSec":"二次縦軸","SSE.Views.ChartSettingsDlg.textVertGrid":"縦軸目盛線","SSE.Views.ChartSettingsDlg.textVertTitle":"縦軸のタイトル","SSE.Views.ChartSettingsDlg.textXAxisTitle":"X軸のタイトル","SSE.Views.ChartSettingsDlg.textYAxisTitle":"Y軸のタイトル","SSE.Views.ChartSettingsDlg.textZero":"ゼロ","SSE.Views.ChartSettingsDlg.txtEmpty":"このフィールドは必須項目です","SSE.Views.ChartTypeDialog.errorComboSeries":"組み合わせグラフを作成するには、最低2つのデータを選択します。","SSE.Views.ChartTypeDialog.errorSecondaryAxis":"選択したチャートタイプでは、既存のチャートが使用している2次軸が必要です。他のチャートタイプを選択してください。","SSE.Views.ChartTypeDialog.textSecondary":"二次軸","SSE.Views.ChartTypeDialog.textSeries":"系列","SSE.Views.ChartTypeDialog.textStyle":"スタイル","SSE.Views.ChartTypeDialog.textTitle":"グラフの種類","SSE.Views.ChartTypeDialog.textType":"タイプ","SSE.Views.ChartWizardDialog.errorComboSeries":"組み合わせチャートを作成するには、最低2つのデータを選択します。","SSE.Views.ChartWizardDialog.errorMaxPoints":"グラプごとの直列のポイントの最大数は4096です。","SSE.Views.ChartWizardDialog.errorMaxRows":"グラフのデータ系列の最大数は255です。","SSE.Views.ChartWizardDialog.errorSecondaryAxis":"選択したチャートタイプでは、既存のチャートが使用している2次軸が必要です。他のチャートタイプを選択してください。","SSE.Views.ChartWizardDialog.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、始値、最大値、最小値、終値の順でシートのデータを配置してください。","SSE.Views.ChartWizardDialog.textRecommended":"おすすめ","SSE.Views.ChartWizardDialog.textSecondary":"二次軸","SSE.Views.ChartWizardDialog.textSeries":"系列","SSE.Views.ChartWizardDialog.textTitle":"グラフの挿入","SSE.Views.ChartWizardDialog.textTitleChange":"グラフの種類の変更","SSE.Views.ChartWizardDialog.textType":"タイプ","SSE.Views.ChartWizardDialog.txtSeriesDesc":"データ・シリーズのチャート・タイプと軸を選択してください","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.capDataExternalLinks":"外部リンク","SSE.Views.DataTab.capDataFromText":"データの挿入","SSE.Views.DataTab.capGoalSeek":"ゴールシーク","SSE.Views.DataTab.mniFromFile":"ローカルTXT/CSVから","SSE.Views.DataTab.mniFromUrl":"TXT/CSVWeb アドレスから","SSE.Views.DataTab.mniFromXMLFile":"ローカルXMLから","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":"テキスト/CSVファイルからデータ挿入","SSE.Views.DataTab.tipDataValidation":"データの入力規則","SSE.Views.DataTab.tipExternalLinks":"このスプレッドシートがリンクしている他のファイルを見る","SSE.Views.DataTab.tipGoalSeek":"必要な値に対する正しい入力を見つける","SSE.Views.DataTab.tipGroup":"セルの範囲をグループ化する","SSE.Views.DataTab.tipRemDuplicates":"シート内の重複を削除","SSE.Views.DataTab.tipToColumns":"セルテキストを列に分割する","SSE.Views.DataTab.tipUngroup":"セルの範囲をグループ解除","SSE.Views.DataValidationDialog.errorFormula":"現在、値がエラーと評価されています。続けますか?","SSE.Views.DataValidationDialog.errorInvalid":"フィールド \"{0}\"に入力した値が無効です。","SSE.Views.DataValidationDialog.errorInvalidDate":"フィールド \"{0}\"に入力した日付が無効です。","SSE.Views.DataValidationDialog.errorInvalidList":"リストソースは、区切られたリスト、または単一の行または列への参照である必要があります。","SSE.Views.DataValidationDialog.errorInvalidTime":"フィールド \"{0}\"に入力した時刻が無効です。","SSE.Views.DataValidationDialog.errorMinGreaterMax":"\"{1}\"フィールドは\"{0}\" フィールド以上である必要があります。","SSE.Views.DataValidationDialog.errorMustEnterBothValues":"フィールド \"{0}\"とフィールド \"{1}\"の両方に値を入力する必要があります。","SSE.Views.DataValidationDialog.errorMustEnterValue":"フィールド \"{0}\"に値を入力する必要があります。","SSE.Views.DataValidationDialog.errorNamedRange":"指定した名前付き範囲が見つかりません。","SSE.Views.DataValidationDialog.errorNegativeTextLength":"条件 \"{0}\"では負の値を使用できません。","SSE.Views.DataValidationDialog.errorNotNumeric":"フィールド \"{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.textShowDropDown":"セルにドロップダウンリストを表示する","SSE.Views.DataValidationDialog.textShowError":"無効なデータが入力された後にエラー警告を表示する","SSE.Views.DataValidationDialog.textShowInput":"セルが選択されたときに入力メッセージを表示する","SSE.Views.DataValidationDialog.textSource":"ソース","SSE.Views.DataValidationDialog.textStartDate":"開始日","SSE.Views.DataValidationDialog.textStartTime":"開始時間","SSE.Views.DataValidationDialog.textStop":"停止","SSE.Views.DataValidationDialog.textStyle":"スタイル","SSE.Views.DataValidationDialog.textTitle":"タイトル","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.txtStartTime":"開始時間","SSE.Views.DataValidationDialog.txtTextLength":"テキストの長さ","SSE.Views.DataValidationDialog.txtTime":"時間","SSE.Views.DataValidationDialog.txtWhole":"整数","SSE.Views.DigitalFilterDialog.capAnd":"と","SSE.Views.DigitalFilterDialog.capCondition1":"次の値と等しい","SSE.Views.DigitalFilterDialog.capCondition10":"次の文字列で終わらない","SSE.Views.DigitalFilterDialog.capCondition11":"含んでいる\t","SSE.Views.DigitalFilterDialog.capCondition12":"次の文字を含まない","SSE.Views.DigitalFilterDialog.capCondition2":"指定の値に等しくない","SSE.Views.DigitalFilterDialog.capCondition3":"がより大きい","SSE.Views.DigitalFilterDialog.capCondition30":"の次","SSE.Views.DigitalFilterDialog.capCondition4":"次の値より大きいか等しい","SSE.Views.DigitalFilterDialog.capCondition40":"次の後であるか、等しい","SSE.Views.DigitalFilterDialog.capCondition5":"より小さい","SSE.Views.DigitalFilterDialog.capCondition50":"次の前","SSE.Views.DigitalFilterDialog.capCondition6":"より小か等しい","SSE.Views.DigitalFilterDialog.capCondition60":"次の前であるか、等しい","SSE.Views.DigitalFilterDialog.capCondition7":"で始まる","SSE.Views.DigitalFilterDialog.capCondition8":"次の文字列で始まらない","SSE.Views.DigitalFilterDialog.capCondition9":"終了","SSE.Views.DigitalFilterDialog.capOr":"または","SSE.Views.DigitalFilterDialog.textNoFilter":"フィルタなし","SSE.Views.DigitalFilterDialog.textShowRows":"抽出条件の指定:","SSE.Views.DigitalFilterDialog.textUse1":"?を使って、任意の1文字を表すことができます。","SSE.Views.DigitalFilterDialog.textUse2":"* を使って、任意の文字列を表すことができます。","SSE.Views.DigitalFilterDialog.txtSelectDate":"日付の選択","SSE.Views.DigitalFilterDialog.txtTitle":"ユーザー設定フィルター","SSE.Views.DocumentHolder.advancedEquationText":"数式設定","SSE.Views.DocumentHolder.advancedImgText":"画像の詳細設定","SSE.Views.DocumentHolder.advancedShapeText":"図形の詳細設定","SSE.Views.DocumentHolder.advancedSlicerText":"スライサーの高度な設定","SSE.Views.DocumentHolder.allLinearText":"すべて - 線形","SSE.Views.DocumentHolder.allProfText":"すべて - プロフェッショナル","SSE.Views.DocumentHolder.bottomCellText":"下揃え","SSE.Views.DocumentHolder.btnChart":"タイトル、凡例、目盛線、データ ラベルなどのグラフ要素を追加、削除、または変更します","SSE.Views.DocumentHolder.bulletsText":"箇条書きと段落番号","SSE.Views.DocumentHolder.centerCellText":"中央揃え","SSE.Views.DocumentHolder.chartDataText":"グラフデータを選択する","SSE.Views.DocumentHolder.chartText":"グラフの詳細設定","SSE.Views.DocumentHolder.chartTypeText":"グラフの種類を変更する","SSE.Views.DocumentHolder.currLinearText":"現在 - 線形","SSE.Views.DocumentHolder.currProfText":"現在 - プロフェッショナル","SSE.Views.DocumentHolder.deleteColumnText":"列","SSE.Views.DocumentHolder.deleteRowText":"行の削除","SSE.Views.DocumentHolder.deleteTableText":"表","SSE.Views.DocumentHolder.DepthAxis":"Z軸","SSE.Views.DocumentHolder.direct270Text":"270度回転","SSE.Views.DocumentHolder.direct90Text":"90度回転","SSE.Views.DocumentHolder.directHText":"水平","SSE.Views.DocumentHolder.directionText":"文字列の方向","SSE.Views.DocumentHolder.editChartText":"データを編集","SSE.Views.DocumentHolder.editHyperlinkText":"ハイパーリンクを編集","SSE.Views.DocumentHolder.hideEqToolbar":"方程式ツールバーを非表示にする","SSE.Views.DocumentHolder.insertColumnLeftText":"左に列の挿入","SSE.Views.DocumentHolder.insertColumnRightText":"右に列の挿入","SSE.Views.DocumentHolder.insertRowAboveText":"上に行の挿入","SSE.Views.DocumentHolder.insertRowBelowText":"下に行の挿入","SSE.Views.DocumentHolder.latexText":"LaTeX","SSE.Views.DocumentHolder.originalSizeText":"実際のサイズ","SSE.Views.DocumentHolder.removeHyperlinkText":"ハイパーリンクの削除","SSE.Views.DocumentHolder.selectColumnText":"列全体","SSE.Views.DocumentHolder.selectDataText":"列のデータ","SSE.Views.DocumentHolder.selectRowText":"行の選択","SSE.Views.DocumentHolder.selectTableText":"テーブルの選択","SSE.Views.DocumentHolder.showEqToolbar":"方程式ツールバーの表示","SSE.Views.DocumentHolder.strDelete":"署名の削除","SSE.Views.DocumentHolder.strDetails":"サインの詳細","SSE.Views.DocumentHolder.strSetup":"サインの設定","SSE.Views.DocumentHolder.strSign":"サインする","SSE.Views.DocumentHolder.textAlign":"配置","SSE.Views.DocumentHolder.textArrange":"順序","SSE.Views.DocumentHolder.textArrangeBack":"最背面ヘ移動","SSE.Views.DocumentHolder.textArrangeBackward":"背面ヘ移動","SSE.Views.DocumentHolder.textArrangeForward":"前面ヘ移動","SSE.Views.DocumentHolder.textArrangeFront":"最前面ヘ移動","SSE.Views.DocumentHolder.textAverage":"平均","SSE.Views.DocumentHolder.textAxes":"座標軸","SSE.Views.DocumentHolder.textAxisTitles":"軸のタイトル","SSE.Views.DocumentHolder.textBullets":"箇条書き","SSE.Views.DocumentHolder.textChartTitle":"チャートのタイトル","SSE.Views.DocumentHolder.textCopyCells":"セルのコピー","SSE.Views.DocumentHolder.textCount":"データの個数","SSE.Views.DocumentHolder.textCrop":"トリミング","SSE.Views.DocumentHolder.textCropFill":"塗りつぶし","SSE.Views.DocumentHolder.textCropFit":"合わせる","SSE.Views.DocumentHolder.textDataTable":"データ表","SSE.Views.DocumentHolder.textEditPoints":"頂点の編集","SSE.Views.DocumentHolder.textEntriesList":"ドロップダウンリストから選択する","SSE.Views.DocumentHolder.textErrorBars":"誤差範囲","SSE.Views.DocumentHolder.textExponential":"指数","SSE.Views.DocumentHolder.textFillDays":"日別に入力","SSE.Views.DocumentHolder.textFillFormatOnly":"フォーマットのみ入力","SSE.Views.DocumentHolder.textFillMonths":"月別に入力","SSE.Views.DocumentHolder.textFillSeries":"数列の入力","SSE.Views.DocumentHolder.textFillWeekdays":"平日別に入力","SSE.Views.DocumentHolder.textFillWithoutFormat":"フォーマットなしの入力","SSE.Views.DocumentHolder.textFillYears":"年別に入力","SSE.Views.DocumentHolder.textFlashFill":"高速入力","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.textGrowthTrend":"指数増加傾向","SSE.Views.DocumentHolder.textHorizontalMajor":"主要な水平線","SSE.Views.DocumentHolder.textHorizontalMinor":"二次的な水平線","SSE.Views.DocumentHolder.textLinear":"線形","SSE.Views.DocumentHolder.textLinearForecast":"線形予測","SSE.Views.DocumentHolder.textLinearTrend":"線形トレンド","SSE.Views.DocumentHolder.textLines":"行","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.textMovingAverage":"移動平均 (2)","SSE.Views.DocumentHolder.textNone":"なし","SSE.Views.DocumentHolder.textNumbering":"番号付け","SSE.Views.DocumentHolder.textReplace":"画像の置き換え","SSE.Views.DocumentHolder.textResetCrop":"トリミングをリセット","SSE.Views.DocumentHolder.textRotate":"回転","SSE.Views.DocumentHolder.textRotate270":"反時計回りに90度回転","SSE.Views.DocumentHolder.textRotate90":"時計回りに90度回転","SSE.Views.DocumentHolder.textSaveAsPicture":"画像として保存","SSE.Views.DocumentHolder.textSeries":"系列","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.textShapesMerge":"図形を結合","SSE.Views.DocumentHolder.textShowDataTable":"データ表の表示","SSE.Views.DocumentHolder.textShowLegendKeys":"凡例キーの表示","SSE.Views.DocumentHolder.textShowUpDown":"上昇/下降バーを表示","SSE.Views.DocumentHolder.textStandardDeviation":"標準偏差","SSE.Views.DocumentHolder.textStandardError":"標準誤差","SSE.Views.DocumentHolder.textStdDev":"標準偏差","SSE.Views.DocumentHolder.textSum":"合計","SSE.Views.DocumentHolder.textTrendline":"トレンドライン","SSE.Views.DocumentHolder.textUndo":"元に戻す","SSE.Views.DocumentHolder.textUnFreezePanes":"ウインドウ枠固定の解除","SSE.Views.DocumentHolder.textUpDownBars":"上下スクロールバー","SSE.Views.DocumentHolder.textVar":"標本分散","SSE.Views.DocumentHolder.textVerticalMajor":"主要の縦軸","SSE.Views.DocumentHolder.textVerticalMinor":"二次的な縦軸","SSE.Views.DocumentHolder.tipMarkersArrow":"箇条書き(矢印)","SSE.Views.DocumentHolder.tipMarkersCheckmark":"箇条書き(チェックマーク)","SSE.Views.DocumentHolder.tipMarkersDash":"「ダッシュ」記号","SSE.Views.DocumentHolder.tipMarkersFRhombus":"箇条書き(ひし形)","SSE.Views.DocumentHolder.tipMarkersFRound":"箇条書き(丸)","SSE.Views.DocumentHolder.tipMarkersFSquare":"箇条書き(四角)","SSE.Views.DocumentHolder.tipMarkersHRound":"箇条書き(円)","SSE.Views.DocumentHolder.tipMarkersStar":"箇条書き(星)","SSE.Views.DocumentHolder.topCellText":"上揃え","SSE.Views.DocumentHolder.txtAccounting":"会計","SSE.Views.DocumentHolder.txtAddComment":"コメントを追加","SSE.Views.DocumentHolder.txtAddNamedRange":"名前の定義","SSE.Views.DocumentHolder.txtArrange":"順序","SSE.Views.DocumentHolder.txtAscending":"昇順","SSE.Views.DocumentHolder.txtAutoColumnWidth":"自動調整","SSE.Views.DocumentHolder.txtAutoRowHeight":"自動調整","SSE.Views.DocumentHolder.txtAverage":"平均","SSE.Views.DocumentHolder.txtCellFormat":"セルをフォーマットする","SSE.Views.DocumentHolder.txtClear":"消去","SSE.Views.DocumentHolder.txtClearAll":"すべて","SSE.Views.DocumentHolder.txtClearComments":"コメント","SSE.Views.DocumentHolder.txtClearFormat":"形式","SSE.Views.DocumentHolder.txtClearHyper":"ハイパーリンク","SSE.Views.DocumentHolder.txtClearPivotField":"{0} のフィルターをクリア","SSE.Views.DocumentHolder.txtClearSparklineGroups":"選択されたスパークライン・グループを解除","SSE.Views.DocumentHolder.txtClearSparklines":"選択されたスパークラインを解除","SSE.Views.DocumentHolder.txtClearText":"テキスト","SSE.Views.DocumentHolder.txtCollapse":"折りたたみ","SSE.Views.DocumentHolder.txtCollapseEntire":"フィールド全体を折りたたむ","SSE.Views.DocumentHolder.txtColumn":"列全体","SSE.Views.DocumentHolder.txtColumnWidth":"列の幅","SSE.Views.DocumentHolder.txtCondFormat":"条件付き書式","SSE.Views.DocumentHolder.txtCopy":"コピー","SSE.Views.DocumentHolder.txtCount":"カウント","SSE.Views.DocumentHolder.txtCurrency":"通貨","SSE.Views.DocumentHolder.txtCustomColumnWidth":"ユーザー設定の列幅","SSE.Views.DocumentHolder.txtCustomRowHeight":"ユーザー設定の行の高さ","SSE.Views.DocumentHolder.txtCustomSort":"ユーザー設定の並べ替え","SSE.Views.DocumentHolder.txtCut":"切り取り","SSE.Views.DocumentHolder.txtDateLong":"長い日付形式","SSE.Views.DocumentHolder.txtDateShort":"日付 (短い形式)","SSE.Views.DocumentHolder.txtDelete":"削除","SSE.Views.DocumentHolder.txtDelField":"削除","SSE.Views.DocumentHolder.txtDescending":"降順","SSE.Views.DocumentHolder.txtDifference":"基準値との差分","SSE.Views.DocumentHolder.txtDistribHor":"左右に整列","SSE.Views.DocumentHolder.txtDistribVert":"上下に整列","SSE.Views.DocumentHolder.txtEditComment":"コメントの編集","SSE.Views.DocumentHolder.txtEditObject":"オブジェクトを編集","SSE.Views.DocumentHolder.txtExpand":"拡張する","SSE.Views.DocumentHolder.txtExpandCollapse":"拡張/折りたたみ","SSE.Views.DocumentHolder.txtExpandEntire":"フィールド全体を拡張する","SSE.Views.DocumentHolder.txtFieldSettings":"フィールド設定","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.txtGetLink":"この範囲のリンクを取得する","SSE.Views.DocumentHolder.txtGrandTotal":"総計","SSE.Views.DocumentHolder.txtGroup":"グループ化","SSE.Views.DocumentHolder.txtHide":"表示しない","SSE.Views.DocumentHolder.txtIndex":"インデックス","SSE.Views.DocumentHolder.txtInsert":"挿入","SSE.Views.DocumentHolder.txtInsHyperlink":"ハイパーリンク","SSE.Views.DocumentHolder.txtInsImage":"画像をファイルから挿入する","SSE.Views.DocumentHolder.txtInsImageUrl":"画像をURLから挿入する","SSE.Views.DocumentHolder.txtLabelFilter":"ラベル フィルター","SSE.Views.DocumentHolder.txtMax":"最大","SSE.Views.DocumentHolder.txtMin":"最小","SSE.Views.DocumentHolder.txtMoreOptions":"他のオプション","SSE.Views.DocumentHolder.txtNormal":"計算なし","SSE.Views.DocumentHolder.txtNumber":"数値","SSE.Views.DocumentHolder.txtNumFormat":"数値の書式","SSE.Views.DocumentHolder.txtPaste":"貼り付け","SSE.Views.DocumentHolder.txtPercent":"%","SSE.Views.DocumentHolder.txtPercentage":"パーセンテージ","SSE.Views.DocumentHolder.txtPercentDiff":"基準値に対する比率の差","SSE.Views.DocumentHolder.txtPercentOfCol":"カラムサマリーパーセンテージ","SSE.Views.DocumentHolder.txtPercentOfGrand":"%合計","SSE.Views.DocumentHolder.txtPercentOfParent":"親集計に対する比率","SSE.Views.DocumentHolder.txtPercentOfParentCol":"親列集計に対する比率","SSE.Views.DocumentHolder.txtPercentOfParentRow":"親行集計に対する比率","SSE.Views.DocumentHolder.txtPercentOfRunTotal":"累計","SSE.Views.DocumentHolder.txtPercentOfTotal":"行集計に対する比率","SSE.Views.DocumentHolder.txtPivotSettings":"ピボットテーブルの設定","SSE.Views.DocumentHolder.txtProduct":"積","SSE.Views.DocumentHolder.txtRankAscending":"昇順での順位","SSE.Views.DocumentHolder.txtRankDescending":"降順での順位","SSE.Views.DocumentHolder.txtReapply":"再適用​​","SSE.Views.DocumentHolder.txtRefresh":"更新する","SSE.Views.DocumentHolder.txtRow":"行全体","SSE.Views.DocumentHolder.txtRowHeight":"行の高さ","SSE.Views.DocumentHolder.txtRunTotal":"累計","SSE.Views.DocumentHolder.txtScientific":"指数","SSE.Views.DocumentHolder.txtSelect":"選択","SSE.Views.DocumentHolder.txtShiftDown":"下方向にシフト","SSE.Views.DocumentHolder.txtShiftLeft":"左方向にシフト","SSE.Views.DocumentHolder.txtShiftRight":"右方向にシフト","SSE.Views.DocumentHolder.txtShiftUp":"上方向にシフト","SSE.Views.DocumentHolder.txtShow":"表示","SSE.Views.DocumentHolder.txtShowAs":"計算の種類を表示","SSE.Views.DocumentHolder.txtShowComment":"コメントの表示","SSE.Views.DocumentHolder.txtShowDetails":"詳細の表示","SSE.Views.DocumentHolder.txtSort":"並べ替え","SSE.Views.DocumentHolder.txtSortCellColor":"選択したセルの色を上に表示","SSE.Views.DocumentHolder.txtSortFontColor":"選択したフォントの色を上に表示","SSE.Views.DocumentHolder.txtSortOption":"その他の並べ替えオプション","SSE.Views.DocumentHolder.txtSparklines":"スパークライン","SSE.Views.DocumentHolder.txtSubtotalField":"小計","SSE.Views.DocumentHolder.txtSum":"合計","SSE.Views.DocumentHolder.txtSummarize":"値の集計方法","SSE.Views.DocumentHolder.txtText":"テキスト","SSE.Views.DocumentHolder.txtTextAdvanced":"段落の詳細設定","SSE.Views.DocumentHolder.txtTime":"時刻","SSE.Views.DocumentHolder.txtTop10":"トップ10","SSE.Views.DocumentHolder.txtUngroup":"グループ解除","SSE.Views.DocumentHolder.txtValueFieldSettings":"値フィールド設定","SSE.Views.DocumentHolder.txtValueFilter":"値フィルター","SSE.Views.DocumentHolder.txtWidth":"幅","SSE.Views.DocumentHolder.unicodeText":"Unicode","SSE.Views.DocumentHolder.vertAlignText":"垂直方向の配置","SSE.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","SSE.Views.FieldSettingsDialog.strLayout":"レイアウト","SSE.Views.FieldSettingsDialog.strSubtotals":"小計","SSE.Views.FieldSettingsDialog.textNumFormat":"数値の書式","SSE.Views.FieldSettingsDialog.textReport":"レポートフォーム","SSE.Views.FieldSettingsDialog.textTitle":"フィールド設定","SSE.Views.FieldSettingsDialog.txtAverage":"平均","SSE.Views.FieldSettingsDialog.txtBlank":"各項目の後に空白行を挿入する","SSE.Views.FieldSettingsDialog.txtBottom":"グループの下部に表示する","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.txtRepeat":"各行でアイテムラベルを繰り返す","SSE.Views.FieldSettingsDialog.txtShowSubtotals":"小計を表示する","SSE.Views.FieldSettingsDialog.txtSourceName":"ソース名:","SSE.Views.FieldSettingsDialog.txtStdDev":"標準偏差","SSE.Views.FieldSettingsDialog.txtStdDevp":"標準偏差","SSE.Views.FieldSettingsDialog.txtSum":"合計","SSE.Views.FieldSettingsDialog.txtSummarize":"小計の関数","SSE.Views.FieldSettingsDialog.txtTabular":"表形式","SSE.Views.FieldSettingsDialog.txtTop":"グループのトップに表示する","SSE.Views.FieldSettingsDialog.txtVar":"標本分散","SSE.Views.FieldSettingsDialog.txtVarp":"分散","SSE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","SSE.Views.FileMenu.btnBackCaption":"ファイルの場所を開く","SSE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","SSE.Views.FileMenu.btnCloseMenuCaption":"戻る","SSE.Views.FileMenu.btnCreateNewCaption":"新規作成","SSE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","SSE.Views.FileMenu.btnExitCaption":"閉じる","SSE.Views.FileMenu.btnExportToPDFCaption":"PDFへの変換","SSE.Views.FileMenu.btnFileOpenCaption":"開く","SSE.Views.FileMenu.btnHelpCaption":"ヘルプ","SSE.Views.FileMenu.btnHistoryCaption":"バージョン履歴","SSE.Views.FileMenu.btnInfoCaption":"詳細情報","SSE.Views.FileMenu.btnPrintCaption":"印刷","SSE.Views.FileMenu.btnProtectCaption":"保護する","SSE.Views.FileMenu.btnRecentFilesCaption":"最近使ったファイルを開く","SSE.Views.FileMenu.btnRenameCaption":"名前を変更する","SSE.Views.FileMenu.btnReturnCaption":"スプレッドシートに戻る","SSE.Views.FileMenu.btnRightsCaption":"アクセス権","SSE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","SSE.Views.FileMenu.btnSaveCaption":"保存","SSE.Views.FileMenu.btnSaveCopyAsCaption":"別名で保存","SSE.Views.FileMenu.btnSettingsCaption":"詳細設定","SSE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","SSE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","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.txtAddProperty":"プロパティの追加","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.txtCommon":"共通","SSE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成しました","SSE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"ドキュメントのプロパティ","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","SSE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","SSE.Views.FileMenuPanels.DocumentInfo.txtOwner":"所有者","SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"場所","SSE.Views.FileMenuPanels.DocumentInfo.txtProperties":"プロパティ","SSE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"このタイトルのプロパティはすでに存在します","SSE.Views.FileMenuPanels.DocumentInfo.txtRights":"権利を持っている者","SSE.Views.FileMenuPanels.DocumentInfo.txtSpreadsheetInfo":"スプレッドシート情報","SSE.Views.FileMenuPanels.DocumentInfo.txtSubject":"件名","SSE.Views.FileMenuPanels.DocumentInfo.txtTags":"タグ","SSE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロードされました","SSE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","SSE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス権","SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス許可の変更","SSE.Views.FileMenuPanels.DocumentRights.txtRights":"権利を持っている者","SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText":"適用","SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode":"共同編集モード","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904":"1904年の日付システムを使用する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator":"小数点区切り","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage":"辞書言語","SSE.Views.FileMenuPanels.MainSettingsGeneral.strEnableIterative":"反復計算を有効にする","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast":"即時反映モード","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender":"フォント・ヒンティング","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale":"数式の言語","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx":"例えば:合計;最小;最大;カウント","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip":"数式のヒントを表示","SSE.Views.FileMenuPanels.MainSettingsGeneral.strHScroll":"水平スクロールバーを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE":"大文字がある言葉を無視する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers":"数字のある単語は無視する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings":"マクロの設定","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxChange":"相対誤差","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxIterations":"最大反復回数","SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton":"貼り付けるときに[貼り付けオプション]ボタンを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle":"R1C1参照形式","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings":"地域の設定","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx":"例えば:","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRTLSupport":"RTLインターフェース","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments":"シートにコメントを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges":"他のユーザーの変更点を表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments":"解決済みコメントを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll":"スクロール中にグリッドに固定","SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict":"厳密モード","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle":"タブのスタイル","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme":"インターフェイスのテーマ","SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator":"桁区切り","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit":"測定単位","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings":"地域の設定に基づいて桁区切りを使用する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strVScroll":"縦スクロールバーを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom":"既定のズーム値","SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes":"10 分ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes":"30 分ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes":"5 分ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes":"1 時間ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover":"自動回復情報を保存する","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave":"自動保存","SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled":"無効","SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill":"塗りつぶし","SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave":"中間バージョンの保存","SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine":"線","SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute":"1 分ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle":"参照スタイル","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAdvancedSettings":"詳細設定","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance":"外観","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect":"オートコレクト設定…","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe":"ベラルーシ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg":"ブルガリア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa":"カタルニア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode":"既定のキャッシュ モード","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating":"計算","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm":"センチ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration":"共同編集","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs":"チェコ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa":"デンマーク語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe":"ドイツ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving":"編集と保存","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl":"ギリシャ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn":"英語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtErrorNumber":"入力した内容は使用できません。恐らく整数または10進数である必要があります。","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs":"スペイン語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip":"リアルタイムの共同編集 すべての変更は自動的に保存されます","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi":"フィンランド語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr":"フランス語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu":"ハンガリー語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHy":"アルメニア語","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.txtLastUsed":"最近使用","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo":"ラオス語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv":"ラトビア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac":"OSXのように","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative":"ネイティブ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb":"ノルウェー語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl":"オランダ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl":"ポーランド語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing":"校正","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt":"ポイント","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr":"ポルトガル語 (ブラジル)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang":"ポルトガル語(ポルトガル)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint":"クイックプリントボタンをエディタヘッダーに表示","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion":"地域","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo":"ルーマニア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu":"ロシア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros":"全てを有効にする","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc":"マクロを有効にして、通知しない","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtScreenReader":"スクリーンリーダーのサポートをオンにする","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir":"デフォルトのシート方向","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc":"この設定は新規シートのみに影響します","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr":"左から右へ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl":"右から左へ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk":"スロバキア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl":"スロベニア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros":"全てを無効にする","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc":"マクロを無効にして、通知しない","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip":"「保存」ボタンを使用して、あなたや他人が行った変更を同期させることができます","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv":"スウェーデン語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTabBack":"ツールバーの色をタブの背景に使う","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr":"トルコ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk":"ウクライナ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーを使用します","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","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.txtWorkspace":"ワークスペース","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh":"中国語","SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"警告","SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"パスワード付きで","SSE.Views.FileMenuPanels.ProtectDoc.strProtect":"スプレッドシートを保護する","SSE.Views.FileMenuPanels.ProtectDoc.strSignature":"サインを使って","SSE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有効な署名がスプレッドシートに追加されました。
スプレッドシートは編集から保護されています。","SSE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"
目に見えないデジタル署名を追加することで、スプレッドシートの完全性を確保する","SSE.Views.FileMenuPanels.ProtectDoc.txtEdit":"スプレッドシートを編集する","SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"編集すると、スプレッドシートから署名が削除されます。
このまま続けますか?","SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"このスプレッドシートはパスワードで保護されています","SSE.Views.FileMenuPanels.ProtectDoc.txtProtectSpreadsheet":"このスプレッドシートをパスワードで暗号化する","SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"このスプレッドシートはサインする必要があります。","SSE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有効な署名がスプレッドシートに追加されました。 スプレッドシートは編集から保護されています。","SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"スプレッドシートの一部のデジタル署名が無効であるか、検証できませんでした。 スプレッドシートは編集から保護されています。","SSE.Views.FileMenuPanels.ProtectDoc.txtView":"署名の表示","SSE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","SSE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","SSE.Views.FillSeriesDialog.textAuto":"自動入力","SSE.Views.FillSeriesDialog.textCols":"列","SSE.Views.FillSeriesDialog.textDate":"日付","SSE.Views.FillSeriesDialog.textDateUnit":"日付単位","SSE.Views.FillSeriesDialog.textDay":"日","SSE.Views.FillSeriesDialog.textGrowth":"乗算","SSE.Views.FillSeriesDialog.textLinear":"線形","SSE.Views.FillSeriesDialog.textMonth":"月","SSE.Views.FillSeriesDialog.textRows":"行","SSE.Views.FillSeriesDialog.textSeries":"系列","SSE.Views.FillSeriesDialog.textStep":"ステップ","SSE.Views.FillSeriesDialog.textStop":"ストップ値","SSE.Views.FillSeriesDialog.textTitle":"系列","SSE.Views.FillSeriesDialog.textTrend":"傾向","SSE.Views.FillSeriesDialog.textType":"タイプ","SSE.Views.FillSeriesDialog.textWeek":"平日","SSE.Views.FillSeriesDialog.textYear":"年","SSE.Views.FillSeriesDialog.txtErrorNumber":"入力した内容は使用できません。整数または10進数が必要な場合があります。","SSE.Views.FormatRulesEditDlg.fillColor":"塗りつぶしの色","SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle":"警告","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.textColor":"文字の色","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.textIconLabel":"いつ {0} {1} と","SSE.Views.FormatRulesEditDlg.textIconLabelFirst":"いつ {0} {1}","SSE.Views.FormatRulesEditDlg.textIconLabelLast":"値が","SSE.Views.FormatRulesEditDlg.textIconsOverlap":"1 つまたは複数のアイコンのデータ範囲が重複しています。
アイコンのデータ範囲が重複しないようにデータ範囲の値を調整してください。","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":"指定した 1 つまたは複数の値が、有効なパーセント値ではありません。","SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt":"指定した{0}値は、有効なパーセント値ではありません。","SSE.Views.FormatRulesEditDlg.textNotValidPercentile":"指定した 1 つまたは複数の値が、有効なパーセンタイル値ではありません。","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.textReverse":"反転なアイコンの並び順","SSE.Views.FormatRulesEditDlg.textRight2Left":"右から左に","SSE.Views.FormatRulesEditDlg.textRightBorders":"右の枠線","SSE.Views.FormatRulesEditDlg.textRule":"ルール","SSE.Views.FormatRulesEditDlg.textSameAs":"正として","SSE.Views.FormatRulesEditDlg.textSelectData":"データの選択","SSE.Views.FormatRulesEditDlg.textShortBar":"もっとも短い列","SSE.Views.FormatRulesEditDlg.textShowBar":"バーのみ表示する","SSE.Views.FormatRulesEditDlg.textShowIcon":"アイコンのみ表示","SSE.Views.FormatRulesEditDlg.textSingleRef":"条件付き書式の数式ではこの種類の参照は使用できません。単一セルの参照に変更します。または =SUM(A1:B5) のようなワークシート関数による参照を使ってください。","SSE.Views.FormatRulesEditDlg.textSolid":"実線","SSE.Views.FormatRulesEditDlg.textStrikeout":"取り消し線","SSE.Views.FormatRulesEditDlg.textSubscript":"下付き文字","SSE.Views.FormatRulesEditDlg.textSuperscript":"上付き文字","SSE.Views.FormatRulesEditDlg.textTopBorders":"上の境界線","SSE.Views.FormatRulesEditDlg.textUnderline":"下線","SSE.Views.FormatRulesEditDlg.tipBorders":"境界線","SSE.Views.FormatRulesEditDlg.tipNumFormat":"数値の書式","SSE.Views.FormatRulesEditDlg.txtAccounting":"会計","SSE.Views.FormatRulesEditDlg.txtCurrency":"通貨","SSE.Views.FormatRulesEditDlg.txtDate":"日付","SSE.Views.FormatRulesEditDlg.txtDateLong":"長い日付形式","SSE.Views.FormatRulesEditDlg.txtDateShort":"日付 (短い形式)","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.txtText":"テキスト","SSE.Views.FormatRulesEditDlg.txtTime":"時刻","SSE.Views.FormatRulesEditDlg.txtTitleEdit":"フォーマットルールを編集する","SSE.Views.FormatRulesEditDlg.txtTitleNew":"新しい書式ルール","SSE.Views.FormatRulesManagerDlg.guestText":"ゲスト","SSE.Views.FormatRulesManagerDlg.lockText":"ロックされた","SSE.Views.FormatRulesManagerDlg.text1Above":"平均より 1 標準偏差上","SSE.Views.FormatRulesManagerDlg.text1Below":"平均より 1 標準偏差下","SSE.Views.FormatRulesManagerDlg.text2Above":"平均より 2 標準偏差上","SSE.Views.FormatRulesManagerDlg.text2Below":"平均より 2 標準偏差下","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.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.textScope":"のフォーマットルールを表示する","SSE.Views.FormatRulesManagerDlg.textSelectData":"データの選択","SSE.Views.FormatRulesManagerDlg.textSelection":"現在の選択","SSE.Views.FormatRulesManagerDlg.textThisPivot":"このピボット","SSE.Views.FormatRulesManagerDlg.textThisSheet":"このシート","SSE.Views.FormatRulesManagerDlg.textThisTable":"この表","SSE.Views.FormatRulesManagerDlg.textUnique":"一意の値","SSE.Views.FormatRulesManagerDlg.textUp":"ルールを上に動かす","SSE.Views.FormatRulesManagerDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.FormatRulesManagerDlg.txtTitle":"条件付き書式","SSE.Views.FormulaDialog.sDescription":"説明","SSE.Views.FormulaDialog.textGroupDescription":"機能グループの選択","SSE.Views.FormulaDialog.textListDescription":"機能の選択","SSE.Views.FormulaDialog.txtRecommended":"おすすめ","SSE.Views.FormulaDialog.txtSearch":"検索","SSE.Views.FormulaDialog.txtTitle":"関数を挿入","SSE.Views.FormulaTab.capBtnRemoveArr":"矢印を削除","SSE.Views.FormulaTab.capBtnTraceDep":"参照先のトレース","SSE.Views.FormulaTab.capBtnTracePrec":"参照元のトレース","SSE.Views.FormulaTab.textAutomatic":"自動","SSE.Views.FormulaTab.textCalculateCurrentSheet":"このシートを計算する","SSE.Views.FormulaTab.textCalculateWorkbook":"ワークブックを計算する","SSE.Views.FormulaTab.textManual":"手動的に","SSE.Views.FormulaTab.tipCalculate":"計算","SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook":"ワークブック全体を計算する","SSE.Views.FormulaTab.tipRemoveArr":"「参照元のトレース」または「参照先のトレース」で表示された矢印を削除します。","SSE.Views.FormulaTab.tipShowFormulas":"各セルに、結果の値の代わりに数式を表示する","SSE.Views.FormulaTab.tipTraceDep":"選択したセルの値によって影響を受けるセルを示す矢印を表示する","SSE.Views.FormulaTab.tipTracePrec":"選択したセルの値に影響を与えるセルを示す矢印を表示する","SSE.Views.FormulaTab.tipWatch":"ウォッチウィンドウの一覧にセルを追加する","SSE.Views.FormulaTab.txtAdditional":"追加","SSE.Views.FormulaTab.txtAutosum":"自動合計","SSE.Views.FormulaTab.txtAutosumTip":"合計","SSE.Views.FormulaTab.txtCalculation":"計算","SSE.Views.FormulaTab.txtFormula":"関数","SSE.Views.FormulaTab.txtFormulaTip":"関数を挿入","SSE.Views.FormulaTab.txtMore":"その他の関数","SSE.Views.FormulaTab.txtRecent":"最近使った項目","SSE.Views.FormulaTab.txtRemDep":"参照先トレースの矢印を削除","SSE.Views.FormulaTab.txtRemPrec":"参照元トレースの矢印を削除","SSE.Views.FormulaTab.txtShowFormulas":"数式を表示する","SSE.Views.FormulaTab.txtWatch":"ウォッチ ウィンドウ","SSE.Views.FormulaWizard.textAny":"すべて","SSE.Views.FormulaWizard.textArgument":"引数","SSE.Views.FormulaWizard.textFunction":"関数","SSE.Views.FormulaWizard.textFunctionRes":"関数の結果","SSE.Views.FormulaWizard.textHelp":"この関数について","SSE.Views.FormulaWizard.textLogical":"論理","SSE.Views.FormulaWizard.textNoArgs":"この関数には引数がありません","SSE.Views.FormulaWizard.textNoArgsDesc":"この引数には説明がありません","SSE.Views.FormulaWizard.textNumber":"数","SSE.Views.FormulaWizard.textReadMore":"続きを読む","SSE.Views.FormulaWizard.textRef":"参照","SSE.Views.FormulaWizard.textText":"テキスト","SSE.Views.FormulaWizard.textTitle":"関数の引数","SSE.Views.FormulaWizard.textValue":"数式の計算結果","SSE.Views.GoalSeekDlg.textChangingCell":"変化させるセル","SSE.Views.GoalSeekDlg.textDataRangeError":"数式に範囲がありません","SSE.Views.GoalSeekDlg.textMustContainFormula":"セルは数式を含んでいなければならない","SSE.Views.GoalSeekDlg.textMustContainValue":"セルは値を含まなければならない","SSE.Views.GoalSeekDlg.textMustFormulaResultNumber":"セル内の数式は数値にならなければならない","SSE.Views.GoalSeekDlg.textMustSingleCell":"参照は単一セルでなければならない","SSE.Views.GoalSeekDlg.textSelectData":"データの選択","SSE.Views.GoalSeekDlg.textSetCell":"セルを設定する","SSE.Views.GoalSeekDlg.textTitle":"ゴールシーク","SSE.Views.GoalSeekDlg.textToValue":"値","SSE.Views.GoalSeekDlg.txtEmpty":"このフィールドは必須項目です","SSE.Views.GoalSeekDlg.txtErrorNumber":"入力した内容は使用できません。恐らく整数または10進数である必要があります。","SSE.Views.GoalSeekStatusDlg.textContinue":"続ける","SSE.Views.GoalSeekStatusDlg.textCurrentValue":"現在の値:","SSE.Views.GoalSeekStatusDlg.textFoundSolution":"セル{0}のゴールシークで解が見つかりました。","SSE.Views.GoalSeekStatusDlg.textNotFoundSolution":"セル{0}のゴールシークで解が見つからなかった可能性があります。","SSE.Views.GoalSeekStatusDlg.textPause":"休止","SSE.Views.GoalSeekStatusDlg.textSearchIteration":"セル{0}のゴールシークの反復 #{1} を実行中です。","SSE.Views.GoalSeekStatusDlg.textStep":"ステップ","SSE.Views.GoalSeekStatusDlg.textTargetValue":"ターゲット値:","SSE.Views.GoalSeekStatusDlg.textTitle":"ゴールシークのステータス","SSE.Views.HeaderFooterDialog.textAlign":"ページの余白に合わせて整列する","SSE.Views.HeaderFooterDialog.textAll":"全ページ","SSE.Views.HeaderFooterDialog.textBold":"太字","SSE.Views.HeaderFooterDialog.textCenter":"中央揃え","SSE.Views.HeaderFooterDialog.textColor":"文字の色","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.textImage":"画像","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.textScale":"ドキュメントに合わせて拡大縮小","SSE.Views.HeaderFooterDialog.textSheet":"シートの名前","SSE.Views.HeaderFooterDialog.textStrikeout":"取り消し線","SSE.Views.HeaderFooterDialog.textSubscript":"下付き","SSE.Views.HeaderFooterDialog.textSuperscript":"上付き","SSE.Views.HeaderFooterDialog.textTime":"時刻","SSE.Views.HeaderFooterDialog.textTitle":"ヘッダー/フッター設定","SSE.Views.HeaderFooterDialog.textUnderline":"下線","SSE.Views.HeaderFooterDialog.tipFontName":"フォント","SSE.Views.HeaderFooterDialog.tipFontSize":"フォントのサイズ","SSE.Views.HyperlinkSettingsDialog.strDisplay":"表示","SSE.Views.HyperlinkSettingsDialog.strLinkTo":"リンク","SSE.Views.HyperlinkSettingsDialog.strRange":"範囲","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.textGetLink":"リンクを取得する","SSE.Views.HyperlinkSettingsDialog.textInternalLink":"内部のデータ範囲","SSE.Views.HyperlinkSettingsDialog.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.HyperlinkSettingsDialog.textNames":"定義された名前","SSE.Views.HyperlinkSettingsDialog.textSelectData":"データの選択","SSE.Views.HyperlinkSettingsDialog.textSelectFile":"ファイル選択","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.HyperlinkSettingsDialog.txtSizeLimit":"このフィールドは2083文字に制限されています","SSE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"ウェブアドレスを入力するか、ファイルを選択してください","SSE.Views.ImageSettings.strTransparency":"不透明度","SSE.Views.ImageSettings.textAdvanced":"詳細設定の表示","SSE.Views.ImageSettings.textCrop":"トリミング","SSE.Views.ImageSettings.textCropFill":"塗りつぶし","SSE.Views.ImageSettings.textCropFit":"合わせる","SSE.Views.ImageSettings.textCropToShape":"図形に合わせてトリミング","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.textRecentlyUsed":"最近使った項目","SSE.Views.ImageSettings.textResetCrop":"トリミングをリセット","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":"タイトル","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.ImageSettingsAdvanced.textVertically":"縦に","SSE.Views.ImportFromXmlDialog.textDestination":"データをどこに置くか、選択してください","SSE.Views.ImportFromXmlDialog.textExist":"既存のワークシート","SSE.Views.ImportFromXmlDialog.textInvalidRange":"無効なセル範囲","SSE.Views.ImportFromXmlDialog.textNew":"新しいワークシート","SSE.Views.ImportFromXmlDialog.textSelectData":"データの選択","SSE.Views.ImportFromXmlDialog.textTitle":"データのインポート","SSE.Views.ImportFromXmlDialog.txtEmpty":"この項目は必須です","SSE.Views.LeftMenu.ariaLeftMenu":"左メニュー","SSE.Views.LeftMenu.tipAbout":"詳細情報","SSE.Views.LeftMenu.tipChat":"チャット","SSE.Views.LeftMenu.tipComments":"コメント","SSE.Views.LeftMenu.tipFile":"ファイル","SSE.Views.LeftMenu.tipPlugins":"プラグイン","SSE.Views.LeftMenu.tipSearch":"検索","SSE.Views.LeftMenu.tipSpellcheck":"スペルチェック","SSE.Views.LeftMenu.tipSupport":"フィードバック&サポート","SSE.Views.LeftMenu.txtDeveloper":"開発者モード","SSE.Views.LeftMenu.txtEditor":"スプレッドシートエディター","SSE.Views.LeftMenu.txtLimit":"制限されたアクセス","SSE.Views.LeftMenu.txtTrial":"試用モード","SSE.Views.LeftMenu.txtTrialDev":"試用開発者モード","SSE.Views.MacroDialog.textMacro":"マクロの名","SSE.Views.MacroDialog.textTitle":"マクロの登録","SSE.Views.MainSettingsPrint.okButtonText":"保存","SSE.Views.MainSettingsPrint.strBottom":"下","SSE.Views.MainSettingsPrint.strLandscape":"横","SSE.Views.MainSettingsPrint.strLeft":"左","SSE.Views.MainSettingsPrint.strMargins":"余白","SSE.Views.MainSettingsPrint.strPortrait":"縦","SSE.Views.MainSettingsPrint.strPrint":"印刷","SSE.Views.MainSettingsPrint.strPrintTitles":"タイトルを印刷する","SSE.Views.MainSettingsPrint.strRight":"右に","SSE.Views.MainSettingsPrint.strTop":"トップ","SSE.Views.MainSettingsPrint.textActualSize":"実際のサイズ","SSE.Views.MainSettingsPrint.textCustom":"ユーザー設定","SSE.Views.MainSettingsPrint.textCustomOptions":"ユーザー設定","SSE.Views.MainSettingsPrint.textFitCols":"すべての列を 1 ページに表示","SSE.Views.MainSettingsPrint.textFitPage":"シートを 1 ページに表示","SSE.Views.MainSettingsPrint.textFitRows":"すべての行を 1 ページに表示","SSE.Views.MainSettingsPrint.textPageOrientation":"印刷の向き","SSE.Views.MainSettingsPrint.textPageScaling":"拡大縮小","SSE.Views.MainSettingsPrint.textPageSize":"ページのサイズ","SSE.Views.MainSettingsPrint.textPrintGrid":"枠線の印刷","SSE.Views.MainSettingsPrint.textPrintHeadings":"行と列の見出しを印刷","SSE.Views.MainSettingsPrint.textRepeat":"繰り返す...","SSE.Views.MainSettingsPrint.textRepeatLeft":"左側の列を繰り返す","SSE.Views.MainSettingsPrint.textRepeatTop":"上の行を繰り返す","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.textExistName":"エラー!すでに同じ名前がある範囲も存在しています。","SSE.Views.NamedRangeEditDlg.textInvalidName":"エラー!範囲の名前が正しくありません。","SSE.Views.NamedRangeEditDlg.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.NamedRangeEditDlg.textIsLocked":"エラー!要素が他のユーザーによって編集されています。","SSE.Views.NamedRangeEditDlg.textName":"名前","SSE.Views.NamedRangeEditDlg.textReservedName":"使用しようとしている名前は、既にセルの数式で参照されています。他の名前を使用してください。","SSE.Views.NamedRangeEditDlg.textScope":"スコープ","SSE.Views.NamedRangeEditDlg.textSelectData":"データの選択","SSE.Views.NamedRangeEditDlg.txtEmpty":"このフィールドは必須項目です","SSE.Views.NamedRangeEditDlg.txtTitleEdit":"名前を編集","SSE.Views.NamedRangeEditDlg.txtTitleNew":"新しい名前","SSE.Views.NamedRangePasteDlg.textNames":"名前付き一覧\t","SSE.Views.NamedRangePasteDlg.txtTitle":"名前の貼り付け","SSE.Views.NameManagerDlg.closeButtonText":"閉じる","SSE.Views.NameManagerDlg.guestText":"ゲスト","SSE.Views.NameManagerDlg.lockText":"ロックされた","SSE.Views.NameManagerDlg.textDataRange":"データ範囲","SSE.Views.NameManagerDlg.textDelete":"削除","SSE.Views.NameManagerDlg.textEdit":"編集","SSE.Views.NameManagerDlg.textEmpty":"名前付き範囲は、まだ作成されていません。
最低で一つの名前付き範囲を作成すると、このフィールドに表示されます。","SSE.Views.NameManagerDlg.textFilter":"フィルター​​","SSE.Views.NameManagerDlg.textFilterAll":"すべて","SSE.Views.NameManagerDlg.textFilterDefNames":"定義された名前","SSE.Views.NameManagerDlg.textFilterSheet":"シートに名前の範囲指定","SSE.Views.NameManagerDlg.textFilterTableNames":"表の名前","SSE.Views.NameManagerDlg.textFilterWorkbook":"ワークブックに名前の範囲指定","SSE.Views.NameManagerDlg.textNew":"新しい","SSE.Views.NameManagerDlg.textnoNames":"フィルタ条件に一致する名前付き一覧が見つかりませんでした。","SSE.Views.NameManagerDlg.textRanges":"名前付き一覧\t","SSE.Views.NameManagerDlg.textScope":"スコープ","SSE.Views.NameManagerDlg.textWorkbook":"ブック","SSE.Views.NameManagerDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.NameManagerDlg.txtTitle":"名前の管理","SSE.Views.NameManagerDlg.warnDelete":"{0}名前を削除してもよろしいですか?","SSE.Views.PageMarginsDialog.textBottom":"下","SSE.Views.PageMarginsDialog.textCenter":"ページの中央","SSE.Views.PageMarginsDialog.textHor":"水平に","SSE.Views.PageMarginsDialog.textLeft":"左","SSE.Views.PageMarginsDialog.textRight":"右","SSE.Views.PageMarginsDialog.textTitle":"余白","SSE.Views.PageMarginsDialog.textTop":"上","SSE.Views.PageMarginsDialog.textVert":"縦に","SSE.Views.PageMarginsDialog.textWarning":"警告","SSE.Views.PageMarginsDialog.warnCheckMargings":"余白が正しくありません","SSE.Views.ParagraphSettings.strLineHeight":"行間","SSE.Views.ParagraphSettings.strParagraphSpacing":"段落の間隔","SSE.Views.ParagraphSettings.strSpacingAfter":"後","SSE.Views.ParagraphSettings.strSpacingBefore":"前","SSE.Views.ParagraphSettings.textAdvanced":"詳細設定の表示","SSE.Views.ParagraphSettings.textAt":"行間","SSE.Views.ParagraphSettings.textAtLeast":"最小","SSE.Views.ParagraphSettings.textAuto":"複数","SSE.Views.ParagraphSettings.textExact":"固定値","SSE.Views.ParagraphSettings.txtAutoText":"自動","SSE.Views.ParagraphSettingsAdvanced.noTabs":"指定されたタブは、このフィールドに表示されます。","SSE.Views.ParagraphSettingsAdvanced.strAllCaps":"すべて大文字","SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"二重取り消し線","SSE.Views.ParagraphSettingsAdvanced.strIndent":"インデント","SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"行間","SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"右に","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":"小型英大文字\t","SSE.Views.ParagraphSettingsAdvanced.strSpacing":"間隔","SSE.Views.ParagraphSettingsAdvanced.strStrike":"取り消し線","SSE.Views.ParagraphSettingsAdvanced.strSubscript":"下付き","SSE.Views.ParagraphSettingsAdvanced.strSuperscript":"上付き文字","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":"全てを削除","SSE.Views.ParagraphSettingsAdvanced.textSet":"指定","SSE.Views.ParagraphSettingsAdvanced.textTabCenter":"中央揃え","SSE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","SSE.Views.ParagraphSettingsAdvanced.textTabPosition":"タブの位置","SSE.Views.ParagraphSettingsAdvanced.textTabRight":"右揃え","SSE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 詳細設定","SSE.Views.ParagraphSettingsAdvanced.txtAutoText":"自動","SSE.Views.PivotCalculatedItemsDialog.txtDelete":"削除","SSE.Views.PivotCalculatedItemsDialog.txtDuplicate":"複製","SSE.Views.PivotCalculatedItemsDialog.txtEdit":"編集","SSE.Views.PivotCalculatedItemsDialog.txtFormula":"数式","SSE.Views.PivotCalculatedItemsDialog.txtItemsName":"アイテム名","SSE.Views.PivotCalculatedItemsDialog.txtNew":"新しい","SSE.Views.PivotCalculatedItemsDialog.txtTitle":"計算項目","SSE.Views.PivotDigitalFilterDialog.capCondition1":"等号","SSE.Views.PivotDigitalFilterDialog.capCondition10":"次の文字列で終わらない","SSE.Views.PivotDigitalFilterDialog.capCondition11":"含んでいる\t","SSE.Views.PivotDigitalFilterDialog.capCondition12":"次の文字を含まない","SSE.Views.PivotDigitalFilterDialog.capCondition13":"間","SSE.Views.PivotDigitalFilterDialog.capCondition14":"間ではない","SSE.Views.PivotDigitalFilterDialog.capCondition2":"指定の値に等しくない","SSE.Views.PivotDigitalFilterDialog.capCondition3":"がより大きい","SSE.Views.PivotDigitalFilterDialog.capCondition30":"この項目の次","SSE.Views.PivotDigitalFilterDialog.capCondition4":"より以上か等しい","SSE.Views.PivotDigitalFilterDialog.capCondition40":"次の後であるか、等しい","SSE.Views.PivotDigitalFilterDialog.capCondition5":"がより小さい","SSE.Views.PivotDigitalFilterDialog.capCondition50":"次の前","SSE.Views.PivotDigitalFilterDialog.capCondition6":"より以下か等しい","SSE.Views.PivotDigitalFilterDialog.capCondition60":"次の前であるか、等しい","SSE.Views.PivotDigitalFilterDialog.capCondition7":"で始まる","SSE.Views.PivotDigitalFilterDialog.capCondition8":"次の文字から始まらない","SSE.Views.PivotDigitalFilterDialog.capCondition9":"終了","SSE.Views.PivotDigitalFilterDialog.textShowDate":"日付が次の条件を満たすアイテムを表示:","SSE.Views.PivotDigitalFilterDialog.textShowLabel":"ラベルが次の条件に一致する項目を表示する","SSE.Views.PivotDigitalFilterDialog.textShowValue":"次の条件に一致する項目を表示する:","SSE.Views.PivotDigitalFilterDialog.textUse1":"?を使って、任意の1文字を表すことができます。","SSE.Views.PivotDigitalFilterDialog.textUse2":"一連の文字の代わりに*をご使用ください","SSE.Views.PivotDigitalFilterDialog.txtAnd":"と","SSE.Views.PivotDigitalFilterDialog.txtTitleDate":"日付フィルター","SSE.Views.PivotDigitalFilterDialog.txtTitleLabel":"ラベル・フィルター","SSE.Views.PivotDigitalFilterDialog.txtTitleValue":"値フィルター","SSE.Views.PivotGroupDialog.textAuto":"自動","SSE.Views.PivotGroupDialog.textBy":"幅","SSE.Views.PivotGroupDialog.textDays":"日","SSE.Views.PivotGroupDialog.textEnd":"終了","SSE.Views.PivotGroupDialog.textError":"このフィールドは数値である必要があります","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.textSec":"秒","SSE.Views.PivotGroupDialog.textStart":"から開始する","SSE.Views.PivotGroupDialog.textYear":"年","SSE.Views.PivotGroupDialog.txtTitle":"グループ化","SSE.Views.PivotInsertCalculatedItemDialog.txtDescription":"単一フィールド内の異なる項目間の基本的な計算には、計算項目を使用できます","SSE.Views.PivotInsertCalculatedItemDialog.txtFormula":"数式","SSE.Views.PivotInsertCalculatedItemDialog.txtInsertIntoFormula":"数式に挿入","SSE.Views.PivotInsertCalculatedItemDialog.txtItem":"アイテム","SSE.Views.PivotInsertCalculatedItemDialog.txtItemName":"項目名","SSE.Views.PivotInsertCalculatedItemDialog.txtItems":"アイテム","SSE.Views.PivotInsertCalculatedItemDialog.txtReadMore":"続きを読む","SSE.Views.PivotInsertCalculatedItemDialog.txtTitle":"計算項目を挿入","SSE.Views.PivotSettings.textAdvanced":"詳細設定の表示","SSE.Views.PivotSettings.textColumns":"列","SSE.Views.PivotSettings.textFields":"フィールドを選択する","SSE.Views.PivotSettings.textFilters":"フィルター","SSE.Views.PivotSettings.textRows":"行","SSE.Views.PivotSettings.textValues":"値","SSE.Views.PivotSettings.txtAddColumn":"カラムを追加","SSE.Views.PivotSettings.txtAddFilter":"フィルターに追加","SSE.Views.PivotSettings.txtAddRow":"行に追加","SSE.Views.PivotSettings.txtAddValues":"値に追加","SSE.Views.PivotSettings.txtFieldSettings":"フィールド設定","SSE.Views.PivotSettings.txtMoveBegin":"はじめに移動する","SSE.Views.PivotSettings.txtMoveColumn":"列に移動する","SSE.Views.PivotSettings.txtMoveDown":"下に移動する","SSE.Views.PivotSettings.txtMoveEnd":"終わりに移動する","SSE.Views.PivotSettings.txtMoveFilter":"フィルターに移動する","SSE.Views.PivotSettings.txtMoveRow":"行に移動する","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.textAltTitle":"タイトル","SSE.Views.PivotSettingsAdvanced.textAutofitColWidth":"更新時に自動調整","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.textOver":"左から右","SSE.Views.PivotSettingsAdvanced.textSelectData":"データの選択","SSE.Views.PivotSettingsAdvanced.textShowCols":"列に表示","SSE.Views.PivotSettingsAdvanced.textShowHeaders":"行と列のフィールドヘッダーを表示する","SSE.Views.PivotSettingsAdvanced.textShowRows":"行に表示","SSE.Views.PivotSettingsAdvanced.textTitle":"ピボットテーブルの詳細設定","SSE.Views.PivotSettingsAdvanced.textWrapCol":"列ごとのレポートフィルターフィールド","SSE.Views.PivotSettingsAdvanced.textWrapRow":"行ごとのレポートフィルターフィールド","SSE.Views.PivotSettingsAdvanced.txtEmpty":"この項目は必須です","SSE.Views.PivotSettingsAdvanced.txtName":"名前","SSE.Views.PivotShowDetailDialog.textDescription":"表示したい詳細を含むフィールドを選択する:","SSE.Views.PivotShowDetailDialog.txtTitle":"詳細を表示","SSE.Views.PivotTable.capBlankRows":"空行","SSE.Views.PivotTable.capGrandTotals":"総計","SSE.Views.PivotTable.capLayout":"レポートのレイアウト","SSE.Views.PivotTable.capSubtotals":"小計","SSE.Views.PivotTable.mniBottomSubtotals":"すべての小計をグループの下に表示する","SSE.Views.PivotTable.mniInsertBlankLine":"各項目の後に空白行を挿入する","SSE.Views.PivotTable.mniLayoutCompact":"コンパクト形式で表示","SSE.Views.PivotTable.mniLayoutNoRepeat":"すべてのアイテムラベルを繰り返さない","SSE.Views.PivotTable.mniLayoutOutline":"アウトライン形式で表示","SSE.Views.PivotTable.mniLayoutRepeat":"すべてのアイテムラベルを繰り返す","SSE.Views.PivotTable.mniLayoutTabular":"表形式で表示","SSE.Views.PivotTable.mniNoSubtotals":"小計を表示しない","SSE.Views.PivotTable.mniOffTotals":"行と列には無効にする","SSE.Views.PivotTable.mniOnColumnsTotals":"行と列には有効にする","SSE.Views.PivotTable.mniOnRowsTotals":"行のみに有効にする","SSE.Views.PivotTable.mniOnTotals":"行と列には有効にする","SSE.Views.PivotTable.mniRemoveBlankLine":"各項目の後の空白行を削除する","SSE.Views.PivotTable.mniTopSubtotals":"すべての小計をグループの上に表示する","SSE.Views.PivotTable.textColBanded":"縞模様の例","SSE.Views.PivotTable.textColHeader":"列のヘッダー","SSE.Views.PivotTable.textRowBanded":"縞模様の行","SSE.Views.PivotTable.textRowHeader":"行のヘッダー","SSE.Views.PivotTable.tipCalculatedItems":"計算項目","SSE.Views.PivotTable.tipCreatePivot":"ピボットテーブルを挿入","SSE.Views.PivotTable.tipGrandTotals":"総計を表示か非表示する","SSE.Views.PivotTable.tipRefresh":"データソースからの情報を更新する","SSE.Views.PivotTable.tipRefreshCurrent":"データソースから現在のテーブルの情報を更新する","SSE.Views.PivotTable.tipSelect":"ピボットテーブル全体を選択する","SSE.Views.PivotTable.tipSubtotals":"小計を表示か非表示する","SSE.Views.PivotTable.txtCalculatedItems":"計算項目","SSE.Views.PivotTable.txtCollapseEntire":"フィールド全体を折りたたむ","SSE.Views.PivotTable.txtCreate":"表を挿入","SSE.Views.PivotTable.txtExpandEntire":"フィールド全体を拡張する","SSE.Views.PivotTable.txtGroupPivot_Custom":"ユーザー設定","SSE.Views.PivotTable.txtGroupPivot_Dark":"ダーク","SSE.Views.PivotTable.txtGroupPivot_Light":"ライト","SSE.Views.PivotTable.txtGroupPivot_Medium":"中","SSE.Views.PivotTable.txtPivotTable":"ピボットテーブル","SSE.Views.PivotTable.txtRefresh":"更新","SSE.Views.PivotTable.txtRefreshAll":"すべて更新","SSE.Views.PivotTable.txtSelect":"選択する","SSE.Views.PivotTable.txtTable_PivotStyleDark":"ダークスタイルのピボットテーブル","SSE.Views.PivotTable.txtTable_PivotStyleLight":"ライトスタイルのピボットテーブル","SSE.Views.PivotTable.txtTable_PivotStyleMedium":"ミディアムスタイルのピボットテーブル","SSE.Views.PrintSettings.btnDownload":"保存してダウンロード","SSE.Views.PrintSettings.btnExport":"保存&書き出し","SSE.Views.PrintSettings.btnPrint":"保存&印刷","SSE.Views.PrintSettings.strBottom":"下","SSE.Views.PrintSettings.strLandscape":"横","SSE.Views.PrintSettings.strLeft":"左","SSE.Views.PrintSettings.strMargins":"余白","SSE.Views.PrintSettings.strPortrait":"縦","SSE.Views.PrintSettings.strPrint":"印刷","SSE.Views.PrintSettings.strPrintTitles":"タイトルを印刷する","SSE.Views.PrintSettings.strRight":"右に","SSE.Views.PrintSettings.strShow":"表示する","SSE.Views.PrintSettings.strTop":"トップ","SSE.Views.PrintSettings.textActiveSheets":"作業中のシート","SSE.Views.PrintSettings.textActualSize":"実際のサイズ","SSE.Views.PrintSettings.textAllSheets":"全シート","SSE.Views.PrintSettings.textCurrentSheet":"現在のシート","SSE.Views.PrintSettings.textCustom":"ユーザー設定","SSE.Views.PrintSettings.textCustomOptions":"ユーザー設定","SSE.Views.PrintSettings.textFitCols":"すべての列を 1 ページに表示","SSE.Views.PrintSettings.textFitPage":"シートを 1 ページに表示","SSE.Views.PrintSettings.textFitRows":"すべての行を 1 ページに表示","SSE.Views.PrintSettings.textHideDetails":"詳細を非表示","SSE.Views.PrintSettings.textIgnore":"印刷範囲を無視する","SSE.Views.PrintSettings.textLayout":"レイアウト","SSE.Views.PrintSettings.textMarginsNarrow":"狭い","SSE.Views.PrintSettings.textMarginsNormal":"標準","SSE.Views.PrintSettings.textMarginsWide":"広い","SSE.Views.PrintSettings.textPageOrientation":"印刷の向き","SSE.Views.PrintSettings.textPages":"ページ:","SSE.Views.PrintSettings.textPageScaling":"拡大縮小","SSE.Views.PrintSettings.textPageSize":"ページのサイズ","SSE.Views.PrintSettings.textPrintGrid":"枠線の印刷","SSE.Views.PrintSettings.textPrintHeadings":"行と列の見出しを印刷","SSE.Views.PrintSettings.textPrintRange":"印刷範囲\t","SSE.Views.PrintSettings.textRange":"範囲","SSE.Views.PrintSettings.textRepeat":"繰り返す...","SSE.Views.PrintSettings.textRepeatLeft":"左側の列を繰り返す","SSE.Views.PrintSettings.textRepeatTop":"上の行を繰り返す","SSE.Views.PrintSettings.textSelection":"選択","SSE.Views.PrintSettings.textSettings":"シートの設定","SSE.Views.PrintSettings.textShowDetails":"詳細の表示","SSE.Views.PrintSettings.textShowGrid":"枠線を表示する","SSE.Views.PrintSettings.textShowHeadings":"行と列の見出しを表示する","SSE.Views.PrintSettings.textTitle":"印刷の設定","SSE.Views.PrintSettings.textTitlePDF":"PDFの設定","SSE.Views.PrintSettings.textTo":"まで","SSE.Views.PrintSettings.txtMarginsLast":"最後に適用した設定","SSE.Views.PrintTitlesDialog.textFirstCol":"最初の列","SSE.Views.PrintTitlesDialog.textFirstRow":"最初の行","SSE.Views.PrintTitlesDialog.textFrozenCols":"固定された列","SSE.Views.PrintTitlesDialog.textFrozenRows":"固定された行","SSE.Views.PrintTitlesDialog.textInvalidRange":"エラー!セルの範囲は無効です。","SSE.Views.PrintTitlesDialog.textLeft":"左側の列を繰り返す","SSE.Views.PrintTitlesDialog.textNoRepeat":"繰り返なし","SSE.Views.PrintTitlesDialog.textRepeat":"繰り返す...","SSE.Views.PrintTitlesDialog.textSelectRange":"範囲の選択","SSE.Views.PrintTitlesDialog.textTitle":"タイトルを印刷する","SSE.Views.PrintTitlesDialog.textTop":"上の行を繰り返す","SSE.Views.PrintWithPreview.txtActiveSheets":"作業中のシート","SSE.Views.PrintWithPreview.txtActualSize":"実際のサイズ","SSE.Views.PrintWithPreview.txtAllSheets":"全シート","SSE.Views.PrintWithPreview.txtApplyToAllSheets":"全シートに適用","SSE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"白黒印刷","SSE.Views.PrintWithPreview.txtBothSides":"両面印刷","SSE.Views.PrintWithPreview.txtBothSidesLongDesc":"長辺を綴じる","SSE.Views.PrintWithPreview.txtBothSidesShortDesc":"短辺を綴じる","SSE.Views.PrintWithPreview.txtBottom":"下","SSE.Views.PrintWithPreview.txtColorPrinting":"カラー印刷","SSE.Views.PrintWithPreview.txtCopies":"コピー","SSE.Views.PrintWithPreview.txtCurrentSheet":"現在のシート","SSE.Views.PrintWithPreview.txtCustom":"ユーザー設定","SSE.Views.PrintWithPreview.txtCustomOptions":"ユーザー設定","SSE.Views.PrintWithPreview.txtEmptyTable":"テーブルが空で印刷できるものはありません","SSE.Views.PrintWithPreview.txtFirstPageNumber":"先頭ページの番号:","SSE.Views.PrintWithPreview.txtFitCols":"すべての列を 1 ページに表示","SSE.Views.PrintWithPreview.txtFitPage":"シートを 1 ページに表示","SSE.Views.PrintWithPreview.txtFitRows":"すべての行を 1 ページに表示","SSE.Views.PrintWithPreview.txtGridlinesAndHeadings":"グリッド線と見出し​​","SSE.Views.PrintWithPreview.txtHeaderFooterSettings":"ヘッダー/フッター設定","SSE.Views.PrintWithPreview.txtIgnore":"印刷範囲を無視する","SSE.Views.PrintWithPreview.txtLandscape":"横","SSE.Views.PrintWithPreview.txtLeft":"左","SSE.Views.PrintWithPreview.txtMargins":"余白","SSE.Views.PrintWithPreview.txtMarginsLast":"最後に適用した設定","SSE.Views.PrintWithPreview.txtMarginsNarrow":"狭い","SSE.Views.PrintWithPreview.txtMarginsNormal":"標準","SSE.Views.PrintWithPreview.txtMarginsWide":"広い","SSE.Views.PrintWithPreview.txtOf":"{0}から","SSE.Views.PrintWithPreview.txtOneSide":"片面印刷","SSE.Views.PrintWithPreview.txtOneSideDesc":"ページの片面のみを印刷する","SSE.Views.PrintWithPreview.txtPage":"ページ","SSE.Views.PrintWithPreview.txtPageNumInvalid":"ページ番号が正しくありません。","SSE.Views.PrintWithPreview.txtPageOrientation":"印刷の向き","SSE.Views.PrintWithPreview.txtPages":"ページ:","SSE.Views.PrintWithPreview.txtPageSize":"ページ サイズ","SSE.Views.PrintWithPreview.txtPortrait":"縦","SSE.Views.PrintWithPreview.txtPrint":"印刷","SSE.Views.PrintWithPreview.txtPrinter":"プリンター","SSE.Views.PrintWithPreview.txtPrinterNotSelected":"プリンターが選択されていない","SSE.Views.PrintWithPreview.txtPrintersNotFound":"プリンターが見つかりません","SSE.Views.PrintWithPreview.txtPrintGrid":"枠線の印刷","SSE.Views.PrintWithPreview.txtPrintHeadings":"行と列の見出しを印刷","SSE.Views.PrintWithPreview.txtPrintRange":"印刷範囲\t","SSE.Views.PrintWithPreview.txtPrintSides":"両面印刷","SSE.Views.PrintWithPreview.txtPrintTitles":"タイトルを印刷する","SSE.Views.PrintWithPreview.txtPrintToPDF":"PDFに印刷","SSE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"システムダイアログで印刷する","SSE.Views.PrintWithPreview.txtRepeat":"繰り返す…","SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft":"左側の列を繰り返す","SSE.Views.PrintWithPreview.txtRepeatRowsAtTop":"上の行を繰り返す","SSE.Views.PrintWithPreview.txtRight":"右","SSE.Views.PrintWithPreview.txtSave":"保存","SSE.Views.PrintWithPreview.txtScaling":"拡大縮小","SSE.Views.PrintWithPreview.txtSelection":"選択","SSE.Views.PrintWithPreview.txtSettingsOfSheet":"シート設定","SSE.Views.PrintWithPreview.txtSheet":"シート:{0}","SSE.Views.PrintWithPreview.txtTo":"まで","SSE.Views.PrintWithPreview.txtTop":"トップ","SSE.Views.PrintWithPreview.txtWaitingForPrinters":"プリンターを待っています","SSE.Views.ProtectDialog.textExistName":"エラー!すでに同じ名前の範囲があります。","SSE.Views.ProtectDialog.textInvalidName":"範囲の名前に含めることができるのは、文字、数字、およびスペースだけです","SSE.Views.ProtectDialog.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.ProtectDialog.textSelectData":"データを選択する","SSE.Views.ProtectDialog.txtAllow":"このシートのユーザーに許可する","SSE.Views.ProtectDialog.txtAllowDescription":"特定の範囲の編集を解除することができます。","SSE.Views.ProtectDialog.txtAllowRanges":"範囲の編集を許可する","SSE.Views.ProtectDialog.txtAutofilter":"オートフィルター","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.txtOptional":"任意","SSE.Views.ProtectDialog.txtPassword":"パスワード","SSE.Views.ProtectDialog.txtPivot":"ピボット表とピボットチャートを使う","SSE.Views.ProtectDialog.txtProtect":"保護する","SSE.Views.ProtectDialog.txtRange":"範囲","SSE.Views.ProtectDialog.txtRangeName":"タイトル","SSE.Views.ProtectDialog.txtRepeat":"パスワードを再入力","SSE.Views.ProtectDialog.txtScen":"シナリオを編集する","SSE.Views.ProtectDialog.txtSelLocked":"ロックしたセルを選択する","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.ProtectedRangesEditDlg.textAnonymous":"匿名","SSE.Views.ProtectedRangesEditDlg.textAnyone":"誰でも","SSE.Views.ProtectedRangesEditDlg.textCanEdit":"編集","SSE.Views.ProtectedRangesEditDlg.textCantView":"拒否された","SSE.Views.ProtectedRangesEditDlg.textCanView":"閲覧","SSE.Views.ProtectedRangesEditDlg.textInvalidName":"範囲の名前に含めることができるのは、文字、数字、およびスペースだけです","SSE.Views.ProtectedRangesEditDlg.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.ProtectedRangesEditDlg.textRemove":"削除","SSE.Views.ProtectedRangesEditDlg.textSelectData":"データの選択","SSE.Views.ProtectedRangesEditDlg.textYou":"あなた","SSE.Views.ProtectedRangesEditDlg.txtAccess":"範囲へのアクセス","SSE.Views.ProtectedRangesEditDlg.txtEmpty":"この項目は必須です","SSE.Views.ProtectedRangesEditDlg.txtProtect":"保護する","SSE.Views.ProtectedRangesEditDlg.txtRange":"範囲","SSE.Views.ProtectedRangesEditDlg.txtRangeName":"タイトル","SSE.Views.ProtectedRangesEditDlg.txtYouCanEdit":"この範囲を編集できるのは自分だけ","SSE.Views.ProtectedRangesEditDlg.userPlaceholder":"名前またはメールアドレスを入力してください","SSE.Views.ProtectedRangesManagerDlg.guestText":"ゲスト","SSE.Views.ProtectedRangesManagerDlg.lockText":"ロックされた","SSE.Views.ProtectedRangesManagerDlg.textDelete":"削除","SSE.Views.ProtectedRangesManagerDlg.textEdit":"編集","SSE.Views.ProtectedRangesManagerDlg.textEmpty":"保護範囲はまだ作成されていません。
少なくとも1つの保護範囲を作成すると、このフィールドに表示されます。","SSE.Views.ProtectedRangesManagerDlg.textFilter":"フィルタ","SSE.Views.ProtectedRangesManagerDlg.textFilterAll":"すべて","SSE.Views.ProtectedRangesManagerDlg.textNew":"新しい","SSE.Views.ProtectedRangesManagerDlg.textProtect":"シートを保護する","SSE.Views.ProtectedRangesManagerDlg.textRange":"範囲","SSE.Views.ProtectedRangesManagerDlg.textRangesDesc":"編集範囲を選択した人に限定することができます。","SSE.Views.ProtectedRangesManagerDlg.textTitle":"タイトル","SSE.Views.ProtectedRangesManagerDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.ProtectedRangesManagerDlg.txtAccess":"アクセス","SSE.Views.ProtectedRangesManagerDlg.txtDenied":"拒否された","SSE.Views.ProtectedRangesManagerDlg.txtEdit":"編集","SSE.Views.ProtectedRangesManagerDlg.txtEditRange":"範囲を編集する","SSE.Views.ProtectedRangesManagerDlg.txtNewRange":"新しい範囲","SSE.Views.ProtectedRangesManagerDlg.txtTitle":"保護された範囲","SSE.Views.ProtectedRangesManagerDlg.txtView":"表示","SSE.Views.ProtectedRangesManagerDlg.warnDelete":"保護された範囲{0}を削除してよろしいですか?
スプレッドシートの編集アクセス権を持っている人は、誰でも範囲のコンテンツを編集することができます。","SSE.Views.ProtectedRangesManagerDlg.warnDeleteRanges":"保護された範囲を削除してよろしいですか?
スプレッドシートの編集権限を持つ人は誰でも、その範囲のコンテンツを編集することができます。","SSE.Views.ProtectRangesDlg.guestText":"ゲスト","SSE.Views.ProtectRangesDlg.lockText":"ロックされた","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.textTitle":"タイトル","SSE.Views.ProtectRangesDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.ProtectRangesDlg.txtEditRange":"範囲を編集する","SSE.Views.ProtectRangesDlg.txtNewRange":"新しい範囲","SSE.Views.ProtectRangesDlg.txtNo":"いいえ","SSE.Views.ProtectRangesDlg.txtTitle":"ユーザーに範囲の編集を許可する","SSE.Views.ProtectRangesDlg.txtYes":"はい","SSE.Views.ProtectRangesDlg.warnDelete":"{0}名前を削除してもよろしいですか?","SSE.Views.RemoveDuplicatesDialog.textColumns":"列","SSE.Views.RemoveDuplicatesDialog.textDescription":"重複する値を削除するには、1つ以上の列を選択してください。","SSE.Views.RemoveDuplicatesDialog.textHeaders":"先頭行に見出しが含まれる場合","SSE.Views.RemoveDuplicatesDialog.textSelectAll":"すべてを選択","SSE.Views.RemoveDuplicatesDialog.txtTitle":"重複データを削除","SSE.Views.RightMenu.ariaRightMenu":"右メニュー","SSE.Views.RightMenu.txtCellSettings":"セル設定","SSE.Views.RightMenu.txtChartSettings":"グラフの設定","SSE.Views.RightMenu.txtImageSettings":"画像の設定","SSE.Views.RightMenu.txtParagraphSettings":"段落の設定","SSE.Views.RightMenu.txtPivotSettings":"ピボットテーブルの設定","SSE.Views.RightMenu.txtSettings":"共通設定","SSE.Views.RightMenu.txtShapeSettings":"図形の設定","SSE.Views.RightMenu.txtSignatureSettings":"サインの設定","SSE.Views.RightMenu.txtSlicerSettings":"スライサーの設定","SSE.Views.RightMenu.txtSparklineSettings":"スパークライン設定","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.ScaleDialog.textScaleTo":"拡大縮小","SSE.Views.ScaleDialog.textTitle":"スケール設定","SSE.Views.ScaleDialog.textWidth":"幅","SSE.Views.SetValueDialog.txtMaxText":"このフィールドの最大値は、{0}です。","SSE.Views.SetValueDialog.txtMinText":"このフィールドの最小値は、{0}です。","SSE.Views.ShapeSettings.strBackground":"背景色","SSE.Views.ShapeSettings.strChange":"図形の変更","SSE.Views.ShapeSettings.strColor":"色","SSE.Views.ShapeSettings.strFill":"塗りつぶし","SSE.Views.ShapeSettings.strForeground":"前景色","SSE.Views.ShapeSettings.strPattern":"パターン","SSE.Views.ShapeSettings.strShadow":"影を表示する","SSE.Views.ShapeSettings.strSize":"サイズ","SSE.Views.ShapeSettings.strStroke":"線","SSE.Views.ShapeSettings.strTransparency":"不透明度","SSE.Views.ShapeSettings.strType":"タイプ","SSE.Views.ShapeSettings.textAdjustShadow":"影の調整","SSE.Views.ShapeSettings.textAdvanced":"詳細設定の表示","SSE.Views.ShapeSettings.textAngle":"角","SSE.Views.ShapeSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","SSE.Views.ShapeSettings.textColor":"色での塗りつぶし","SSE.Views.ShapeSettings.textDirection":"方向","SSE.Views.ShapeSettings.textEditPoints":"頂点の編集","SSE.Views.ShapeSettings.textEditShape":"図形の編集","SSE.Views.ShapeSettings.textEmptyPattern":"パターンなし","SSE.Views.ShapeSettings.textEyedropper":"スポイト","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":"塗りつぶし(グラデーション)","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.textMoreColors":"その他の色","SSE.Views.ShapeSettings.textNoFill":"塗りつぶしなし","SSE.Views.ShapeSettings.textNoShadow":"影なし","SSE.Views.ShapeSettings.textOriginalSize":"元のサイズ","SSE.Views.ShapeSettings.textPatternFill":"パターン","SSE.Views.ShapeSettings.textPosition":"位置","SSE.Views.ShapeSettings.textRadial":"放射状","SSE.Views.ShapeSettings.textRecentlyUsed":"最近使った項目","SSE.Views.ShapeSettings.textRotate90":"90度回転","SSE.Views.ShapeSettings.textRotation":"回転","SSE.Views.ShapeSettings.textSelectImage":"画像の選択","SSE.Views.ShapeSettings.textSelectTexture":"選択","SSE.Views.ShapeSettings.textShadow":"影","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":"キャンバス","SSE.Views.ShapeSettings.txtCarton":"カートン","SSE.Views.ShapeSettings.txtDarkFabric":"ダークファブリック","SSE.Views.ShapeSettings.txtGrain":"粒子","SSE.Views.ShapeSettings.txtGranite":"みかげ石","SSE.Views.ShapeSettings.txtGreyPaper":"グレー紙","SSE.Views.ShapeSettings.txtKnit":"ニット","SSE.Views.ShapeSettings.txtLeather":"レザー","SSE.Views.ShapeSettings.txtNoBorders":"線なし","SSE.Views.ShapeSettings.txtOffsetBottom":"オフセット:下","SSE.Views.ShapeSettings.txtOffsetBottomLeft":"オフセット:左下","SSE.Views.ShapeSettings.txtOffsetBottomRight":"オフセット:右下","SSE.Views.ShapeSettings.txtOffsetCenter":"オフセット:中央","SSE.Views.ShapeSettings.txtOffsetLeft":"オフセット:左","SSE.Views.ShapeSettings.txtOffsetRight":"オフセット:右","SSE.Views.ShapeSettings.txtOffsetTop":"オフセット:上","SSE.Views.ShapeSettings.txtOffsetTopLeft":"オフセット:左上","SSE.Views.ShapeSettings.txtOffsetTopRight":"オフセット:右上","SSE.Views.ShapeSettings.txtPapyrus":"パピルス","SSE.Views.ShapeSettings.txtWood":"木","SSE.Views.ShapeSettingsAdvanced.strColumns":"列","SSE.Views.ShapeSettingsAdvanced.strMargins":"テキストの埋め込み文字","SSE.Views.ShapeSettingsAdvanced.textAbsolute":"セルで移動したりサイズを変更したりしない","SSE.Views.ShapeSettingsAdvanced.textAlt":"代替テキスト","SSE.Views.ShapeSettingsAdvanced.textAltDescription":"説明","SSE.Views.ShapeSettingsAdvanced.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","SSE.Views.ShapeSettingsAdvanced.textAltTitle":"タイトル","SSE.Views.ShapeSettingsAdvanced.textAngle":"角","SSE.Views.ShapeSettingsAdvanced.textArrows":"矢印","SSE.Views.ShapeSettingsAdvanced.textAutofit":"自動調整","SSE.Views.ShapeSettingsAdvanced.textBeginSize":"始点のサイズ","SSE.Views.ShapeSettingsAdvanced.textBeginStyle":"始点のスタイル","SSE.Views.ShapeSettingsAdvanced.textBevel":"面取り","SSE.Views.ShapeSettingsAdvanced.textBottom":"下","SSE.Views.ShapeSettingsAdvanced.textCapType":"線の先端","SSE.Views.ShapeSettingsAdvanced.textColNumber":"列数","SSE.Views.ShapeSettingsAdvanced.textEndSize":"終点のサイズ","SSE.Views.ShapeSettingsAdvanced.textEndStyle":"終点のスタイル","SSE.Views.ShapeSettingsAdvanced.textFlat":"フラット","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":"ラウンド","SSE.Views.ShapeSettingsAdvanced.textSize":"サイズ","SSE.Views.ShapeSettingsAdvanced.textSnap":"セルに合わせる","SSE.Views.ShapeSettingsAdvanced.textSpacing":"列の間隔","SSE.Views.ShapeSettingsAdvanced.textSquare":"四角の","SSE.Views.ShapeSettingsAdvanced.textTextBox":"テキストボックス","SSE.Views.ShapeSettingsAdvanced.textTitle":"図形 - 詳細設定","SSE.Views.ShapeSettingsAdvanced.textTop":"トップ","SSE.Views.ShapeSettingsAdvanced.textTwoCell":"セルで移動してサイズを変更する","SSE.Views.ShapeSettingsAdvanced.textVertically":"縦に","SSE.Views.ShapeSettingsAdvanced.textWeightArrows":"太さ&矢印","SSE.Views.ShapeSettingsAdvanced.textWidth":"幅","SSE.Views.SignatureSettings.notcriticalErrorTitle":"警告","SSE.Views.SignatureSettings.strDelete":"署名の削除","SSE.Views.SignatureSettings.strDetails":"サインの詳細","SSE.Views.SignatureSettings.strInvalid":"無効な署名","SSE.Views.SignatureSettings.strRequested":"要求された署名","SSE.Views.SignatureSettings.strSetup":"サインの設定","SSE.Views.SignatureSettings.strSign":"サインする","SSE.Views.SignatureSettings.strSignature":"署名","SSE.Views.SignatureSettings.strSigner":"署名者","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.strSorting":"並べ替えとフィルター","SSE.Views.SlicerSettings.textAdvanced":"詳細設定の表示","SSE.Views.SlicerSettings.textAsc":"昇順","SSE.Views.SlicerSettings.textAZ":"昇順","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.textSmallLarge":"最小から最大へ","SSE.Views.SlicerSettings.textStyle":"スタイル","SSE.Views.SlicerSettings.textVert":"縦に","SSE.Views.SlicerSettings.textWidth":"幅","SSE.Views.SlicerSettings.textZA":"降順","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.strSorting":"並べ替えとフィルター","SSE.Views.SlicerSettingsAdvanced.strStyle":"スタイル","SSE.Views.SlicerSettingsAdvanced.strStyleSize":"スタイルとサイズ","SSE.Views.SlicerSettingsAdvanced.strWidth":"幅","SSE.Views.SlicerSettingsAdvanced.textAbsolute":"セルで移動したりサイズを変更したりしない","SSE.Views.SlicerSettingsAdvanced.textAlt":"代替テキスト","SSE.Views.SlicerSettingsAdvanced.textAltDescription":"説明","SSE.Views.SlicerSettingsAdvanced.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","SSE.Views.SlicerSettingsAdvanced.textAltTitle":"タイトル","SSE.Views.SlicerSettingsAdvanced.textAsc":"昇順","SSE.Views.SlicerSettingsAdvanced.textAZ":"昇順","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.textSmallLarge":"最小から最大へ","SSE.Views.SlicerSettingsAdvanced.textSnap":"セルに合わせる","SSE.Views.SlicerSettingsAdvanced.textSort":"並べ替え","SSE.Views.SlicerSettingsAdvanced.textSourceName":"ソース名","SSE.Views.SlicerSettingsAdvanced.textTitle":"スライサーの高度な設定","SSE.Views.SlicerSettingsAdvanced.textTwoCell":"セルで移動してサイズを変更する","SSE.Views.SlicerSettingsAdvanced.textZA":"降順","SSE.Views.SlicerSettingsAdvanced.txtEmpty":"この項目は必須です","SSE.Views.SortDialog.errorEmpty":"すべての並べ替えの基準には、列または行を指定する必要があります。","SSE.Views.SortDialog.errorMoreOneCol":"複数の列が選択されています。","SSE.Views.SortDialog.errorMoreOneRow":"複数の行が選択されています。","SSE.Views.SortDialog.errorNotOriginalCol":"選択した列が元の選択範囲にありません。","SSE.Views.SortDialog.errorNotOriginalRow":"選択した行が元の選択範囲にありません。","SSE.Views.SortDialog.errorSameColumnColor":"%1は同じ色で複数回並べ替えられています。
重複する並べ替えの基準を削除して、再びお試しください。","SSE.Views.SortDialog.errorSameColumnValue":"%1は値で複数回並べ替えられています。
重複する並べ替えの基準を削除して、再びお試しください。","SSE.Views.SortDialog.textAsc":"昇順","SSE.Views.SortDialog.textAuto":"自動","SSE.Views.SortDialog.textAZ":"昇順","SSE.Views.SortDialog.textBelow":"下","SSE.Views.SortDialog.textBtnCopy":"コピー","SSE.Views.SortDialog.textBtnDelete":"削除","SSE.Views.SortDialog.textBtnNew":"新しい","SSE.Views.SortDialog.textCellColor":"セルの背景色","SSE.Views.SortDialog.textColumn":"列","SSE.Views.SortDialog.textDesc":"降順","SSE.Views.SortDialog.textDown":"レベルを下げる","SSE.Views.SortDialog.textFontColor":"フォントの色","SSE.Views.SortDialog.textLeft":"左","SSE.Views.SortDialog.textLevels":"レベル","SSE.Views.SortDialog.textMoreCols":"(他の行...)","SSE.Views.SortDialog.textMoreRows":"(他の列...)","SSE.Views.SortDialog.textNone":"なし","SSE.Views.SortDialog.textOptions":"設定","SSE.Views.SortDialog.textOrder":"順","SSE.Views.SortDialog.textRight":"右に","SSE.Views.SortDialog.textRow":"行","SSE.Views.SortDialog.textSort":"並べ替え","SSE.Views.SortDialog.textSortBy":"並べ替え","SSE.Views.SortDialog.textThenBy":"次に優先されるキー","SSE.Views.SortDialog.textTop":"上","SSE.Views.SortDialog.textUp":"レベルを上げる","SSE.Views.SortDialog.textValues":"値","SSE.Views.SortDialog.textZA":"降順","SSE.Views.SortDialog.txtInvalidRange":"無効なセル範囲","SSE.Views.SortDialog.txtTitle":"並べ替え","SSE.Views.SortFilterDialog.textAsc":"次の値で降順","SSE.Views.SortFilterDialog.textDesc":"次の値で降順","SSE.Views.SortFilterDialog.textNoSort":"並べ替えなし","SSE.Views.SortFilterDialog.txtTitle":"並べ替え","SSE.Views.SortFilterDialog.txtTitleValue":"値で並べ替え","SSE.Views.SortOptionsDialog.textCase":"大文字と小文字の区別する","SSE.Views.SortOptionsDialog.textHeaders":"先頭行をデータの見出しとして使用する","SSE.Views.SortOptionsDialog.textLeftRight":"左から右に並べ替え","SSE.Views.SortOptionsDialog.textOrientation":"印刷方向","SSE.Views.SortOptionsDialog.textTitle":"並べ替えの設定","SSE.Views.SortOptionsDialog.textTopBottom":"上から下に並べ替え","SSE.Views.SpecialPasteDialog.textAdd":"追加","SSE.Views.SpecialPasteDialog.textAll":"すべて","SSE.Views.SpecialPasteDialog.textBlanks":"空白セルを無視する","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.textSub":"減算","SSE.Views.SpecialPasteDialog.textTitle":"特殊貼付け","SSE.Views.SpecialPasteDialog.textTranspose":"入れ替える","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.txtClosePanel":"スペルを閉じる","SSE.Views.Spellcheck.txtComplete":"スペルチェックが完了しました","SSE.Views.Spellcheck.txtDictionaryLanguage":"辞書言語","SSE.Views.Spellcheck.txtNextTip":"次の言葉へ","SSE.Views.Spellcheck.txtSpelling":"スペル","SSE.Views.Statusbar.CopyDialog.itemMoveToEnd":"(末尾へ移動)","SSE.Views.Statusbar.CopyDialog.textCreateCopy":"コピーを作成する","SSE.Views.Statusbar.CopyDialog.textCreateNewSpreadsheet":"(新しいスプレッドシートを作成)","SSE.Views.Statusbar.CopyDialog.textMoveBefore":"シートの前へ移動","SSE.Views.Statusbar.CopyDialog.textSpreadsheet":"スプレッドシート","SSE.Views.Statusbar.filteredRecordsText":"{0}の{1}がフィルタリングされた","SSE.Views.Statusbar.filteredText":"フィルタモード","SSE.Views.Statusbar.itemAverage":"平均","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.itemMoveOrCopy":"移動またはコピーする","SSE.Views.Statusbar.itemProtect":"保護する","SSE.Views.Statusbar.itemRename":"名前を変更する","SSE.Views.Statusbar.itemStatus":"保存の状況​​","SSE.Views.Statusbar.itemSum":"合計","SSE.Views.Statusbar.itemTabColor":"シート見出しの色","SSE.Views.Statusbar.itemUnProtect":"保護を解除する","SSE.Views.Statusbar.RenameDialog.errNameExists":"指定された名前のワークシートが既に存在します。","SSE.Views.Statusbar.RenameDialog.errNameWrongChar":"シート名に次の文字を含むことはできません:\\/*?[]:","SSE.Views.Statusbar.RenameDialog.labelSheetName":"シートの名前","SSE.Views.Statusbar.selectAllSheets":"すべてのシートを選択する","SSE.Views.Statusbar.sheetIndexText":"シート{0}/{1}","SSE.Views.Statusbar.textAverage":"平均","SSE.Views.Statusbar.textCount":"データの個数","SSE.Views.Statusbar.textMax":"最大","SSE.Views.Statusbar.textMin":"最小","SSE.Views.Statusbar.textNewColor":"その他の色","SSE.Views.Statusbar.textNoColor":"色なし","SSE.Views.Statusbar.textSum":"合計","SSE.Views.Statusbar.tipAddTab":"ワークシートを追加","SSE.Views.Statusbar.tipFirst":"最初のリストまでスクロール","SSE.Views.Statusbar.tipLast":"最後のリストまでスクロール","SSE.Views.Statusbar.tipListOfSheets":"シートリスト","SSE.Views.Statusbar.tipNext":"シートリストの右にスクロール","SSE.Views.Statusbar.tipPrev":"シートリストの左にスクロール","SSE.Views.Statusbar.tipZoomFactor":"ズーム","SSE.Views.Statusbar.tipZoomIn":"拡大","SSE.Views.Statusbar.tipZoomOut":"縮小","SSE.Views.Statusbar.ungroupSheets":"シートをグループ解除する","SSE.Views.Statusbar.zoomText":"ズーム{0}%","SSE.Views.TableDesignTab.deleteColumnText":"列の削除","SSE.Views.TableDesignTab.deleteRowText":"行の削除","SSE.Views.TableDesignTab.deleteTableText":"表の削除","SSE.Views.TableDesignTab.insertColumnLeftText":"左に列を挿入","SSE.Views.TableDesignTab.insertColumnRightText":"右に列を挿入","SSE.Views.TableDesignTab.insertRowAboveText":"上に行を挿入","SSE.Views.TableDesignTab.insertRowBelowText":"下に行を挿入","SSE.Views.TableDesignTab.selectColumnData":"列データの選択","SSE.Views.TableDesignTab.selectColumnText":"列全体の選択","SSE.Views.TableDesignTab.selectRowText":"行の選択","SSE.Views.TableDesignTab.selectTableText":"テーブルの選択","SSE.Views.TableDesignTab.tipAltText":"テーブルの代替タイトルと説明を設定する。","SSE.Views.TableDesignTab.tipConvertRange":"このテーブルを通常のセル範囲に変換してください。","SSE.Views.TableDesignTab.tipHeaderRow":"テーブルのヘッダー行を表示または非表示にする。","SSE.Views.TableDesignTab.tipInsertPivot":"ピボットテーブルを挿入","SSE.Views.TableDesignTab.tipInsertSlicer":"スライサーを挿入","SSE.Views.TableDesignTab.tipRemDuplicates":"シートから重複行を削除する。","SSE.Views.TableDesignTab.tipResize":"行や列を追加または削除して、このテーブルのサイズを変更してください。","SSE.Views.TableDesignTab.tipRowsCols":"行&列","SSE.Views.TableDesignTab.txtAltText":"代替テキスト","SSE.Views.TableDesignTab.txtBandedColumns":"縞模様の例","SSE.Views.TableDesignTab.txtBandedRows":"縞模様の行","SSE.Views.TableDesignTab.txtConvertToRange":"範囲に変換する","SSE.Views.TableDesignTab.txtFilterButton":"フィルタのボタン","SSE.Views.TableDesignTab.txtFirstColumn":"最初の列","SSE.Views.TableDesignTab.txtGroupTable_Custom":"カスタム","SSE.Views.TableDesignTab.txtGroupTable_Dark":"ダーク","SSE.Views.TableDesignTab.txtGroupTable_Light":"ライト","SSE.Views.TableDesignTab.txtGroupTable_Medium":"中","SSE.Views.TableDesignTab.txtHeaderRow":"ヘッダー行","SSE.Views.TableDesignTab.txtLastColumn":"最後の列","SSE.Views.TableDesignTab.txtPivot":"ピボット","SSE.Views.TableDesignTab.txtRemDuplicates":"重複データを削除","SSE.Views.TableDesignTab.txtResize":"テーブルのサイズ変更","SSE.Views.TableDesignTab.txtRowsCols":"行&列","SSE.Views.TableDesignTab.txtSlicer":"スライサー","SSE.Views.TableDesignTab.txtTotalRow":"合計行","SSE.Views.TableOptionsDialog.errorAutoFilterDataRange":"選んだ範囲にこの操作を適用できません。
範囲内の1つのセルを選んでから、もう一度お試しください。","SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError":"選択したセル範囲で操作を完了できませんでした。
最初のテーブルの行は同じ行にあったように、範囲を選択してください。
新しいテーブル範囲が元のテーブル範囲に重なるようにしてください。","SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables":"選択したセル範囲で操作を完了できませんでした。
他のテーブルが含まれていない範囲を選択してください。","SSE.Views.TableOptionsDialog.errorMultiCellFormula":"複数セルの配列数式はテーブルでは使用できません。","SSE.Views.TableOptionsDialog.txtEmpty":"このフィールドは必須項目です","SSE.Views.TableOptionsDialog.txtFormat":"表を作成する","SSE.Views.TableOptionsDialog.txtInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.TableOptionsDialog.txtNote":"ヘッダーは同じ行に残しておく必要があり、結果のテーブル範囲は元のテーブル範囲と重ねる必要があります。","SSE.Views.TableOptionsDialog.txtTitle":"タイトル","SSE.Views.TableSettingsAdvanced.textAlt":"代替テキスト","SSE.Views.TableSettingsAdvanced.textAltDescription":"説明","SSE.Views.TableSettingsAdvanced.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","SSE.Views.TableSettingsAdvanced.textAltTitle":"タイトル","SSE.Views.TableSettingsAdvanced.textTitle":"テーブル - 詳細設定","SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom":"ユーザー設定","SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark":"ダーク","SSE.Views.TableSettingsAdvanced.txtGroupTable_Light":"ライト","SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium":"中","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark":"表のスタイル:暗","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight":"表のスタイル:明るい","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium":"表のスタイル:中","SSE.Views.TextArtSettings.strBackground":"背景色","SSE.Views.TextArtSettings.strColor":"色","SSE.Views.TextArtSettings.strFill":"塗りつぶし","SSE.Views.TextArtSettings.strForeground":"前景色","SSE.Views.TextArtSettings.strPattern":"パターン","SSE.Views.TextArtSettings.strSize":"サイズ","SSE.Views.TextArtSettings.strStroke":"線","SSE.Views.TextArtSettings.strTransparency":"不透明度","SSE.Views.TextArtSettings.strType":"タイプ","SSE.Views.TextArtSettings.textAngle":"角","SSE.Views.TextArtSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","SSE.Views.TextArtSettings.textColor":"色での塗りつぶし","SSE.Views.TextArtSettings.textDirection":"方向","SSE.Views.TextArtSettings.textEmptyPattern":"パターンなし","SSE.Views.TextArtSettings.textFromFile":"ファイルから","SSE.Views.TextArtSettings.textFromUrl":"URLから","SSE.Views.TextArtSettings.textGradient":"グラデーションのポイント","SSE.Views.TextArtSettings.textGradientFill":"塗りつぶし(グラデーション)","SSE.Views.TextArtSettings.textImageTexture":"画像またはテクスチャ","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":"ストレッチ","SSE.Views.TextArtSettings.textStyle":"スタイル","SSE.Views.TextArtSettings.textTemplate":"テンプレート","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":"キャンバス","SSE.Views.TextArtSettings.txtCarton":"カートン","SSE.Views.TextArtSettings.txtDarkFabric":"ダークファブリック","SSE.Views.TextArtSettings.txtGrain":"粒子","SSE.Views.TextArtSettings.txtGranite":"みかげ石","SSE.Views.TextArtSettings.txtGreyPaper":"グレー紙","SSE.Views.TextArtSettings.txtKnit":"ニット","SSE.Views.TextArtSettings.txtLeather":"レザー","SSE.Views.TextArtSettings.txtNoBorders":"線なし","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":"スライサー","SSE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","SSE.Views.Toolbar.capBtnInsSymbol":"記号","SSE.Views.Toolbar.capBtnMargins":"余白","SSE.Views.Toolbar.capBtnPageBreak":"区切り","SSE.Views.Toolbar.capBtnPageOrient":"印刷の向き","SSE.Views.Toolbar.capBtnPageSize":"サイズ","SSE.Views.Toolbar.capBtnPrintArea":"印刷範囲","SSE.Views.Toolbar.capBtnPrintTitles":"タイトルを印刷する","SSE.Views.Toolbar.capBtnScale":"拡大縮小印刷","SSE.Views.Toolbar.capImgAlign":"配置","SSE.Views.Toolbar.capImgBackward":"背面ヘ移動","SSE.Views.Toolbar.capImgForward":"前面ヘ移動","SSE.Views.Toolbar.capImgGroup":"グループ化","SSE.Views.Toolbar.capInsertChart":"グラフ","SSE.Views.Toolbar.capInsertChartRecommend":"おすすめのチャート","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.capInsertTextart":"テキストアート","SSE.Views.Toolbar.capShapesMerge":"図形を結合","SSE.Views.Toolbar.mniCapitalizeWords":"各単語を大文字にする","SSE.Views.Toolbar.mniImageFromFile":"ファイルから画像","SSE.Views.Toolbar.mniImageFromStorage":"ストレージから画像","SSE.Views.Toolbar.mniImageFromUrl":"URLから画像","SSE.Views.Toolbar.mniLowerCase":"小文字","SSE.Views.Toolbar.mniSentenceCase":"センテンスケース","SSE.Views.Toolbar.mniToggleCase":"大文字と小文字を入れ替える","SSE.Views.Toolbar.mniUpperCase":"大文字","SSE.Views.Toolbar.textAddPrintArea":"印刷範囲に追加","SSE.Views.Toolbar.textAlignBottom":"下揃え","SSE.Views.Toolbar.textAlignCenter":"中央揃え","SSE.Views.Toolbar.textAlignJust":"両端揃え","SSE.Views.Toolbar.textAlignLeft":"左揃え","SSE.Views.Toolbar.textAlignMiddle":"中央揃え","SSE.Views.Toolbar.textAlignRight":"右揃え","SSE.Views.Toolbar.textAlignTop":"上揃え","SSE.Views.Toolbar.textAllBorders":"すべての枠線","SSE.Views.Toolbar.textAlpha":"ギリシャ小文字アルファ","SSE.Views.Toolbar.textAuto":"自動","SSE.Views.Toolbar.textAutoColor":"自動","SSE.Views.Toolbar.textBetta":"ギリシャ小文字ベータ","SSE.Views.Toolbar.textBlackHeart":"ブラック・ハート・スーツ","SSE.Views.Toolbar.textBold":"太字","SSE.Views.Toolbar.textBordersColor":"線の色","SSE.Views.Toolbar.textBordersStyle":"線のスタイル","SSE.Views.Toolbar.textBottom":"低:","SSE.Views.Toolbar.textBottomBorders":"下の枠線","SSE.Views.Toolbar.textBullet":"箇条書き","SSE.Views.Toolbar.textCellAlign":"セルの整列の書式設定","SSE.Views.Toolbar.textCenterBorders":"内側の垂直枠線","SSE.Views.Toolbar.textClearPrintArea":"印刷範囲を解除","SSE.Views.Toolbar.textClearRule":"ルールを消去","SSE.Views.Toolbar.textClockwise":"右回りに​​回転","SSE.Views.Toolbar.textColorScales":"色​​スケール","SSE.Views.Toolbar.textCopyright":"著作権マーク","SSE.Views.Toolbar.textCounterCw":"左回りに​​回転","SSE.Views.Toolbar.textCustom":"ユーザー設定","SSE.Views.Toolbar.textDataBars":"データ バー","SSE.Views.Toolbar.textDegree":"度記号","SSE.Views.Toolbar.textDelLeft":"左方向にシフト","SSE.Views.Toolbar.textDelPageBreak":"改ページの削除","SSE.Views.Toolbar.textDelta":"ギリシャ小文字デルタ","SSE.Views.Toolbar.textDelUp":"上方向にシフト","SSE.Views.Toolbar.textDiagDownBorder":"斜め(上から下)","SSE.Views.Toolbar.textDiagUpBorder":"斜め(下から上)","SSE.Views.Toolbar.textDirContext":"コンテキスト","SSE.Views.Toolbar.textDirLtr":"左から右へ","SSE.Views.Toolbar.textDirRtl":"右から左へ","SSE.Views.Toolbar.textDivision":"除算記号","SSE.Views.Toolbar.textDollar":"ドル記号","SSE.Views.Toolbar.textDone":"完了","SSE.Views.Toolbar.textDown":"下","SSE.Views.Toolbar.textEditVA":"表示エリアを編集する","SSE.Views.Toolbar.textEntireCol":"列全体","SSE.Views.Toolbar.textEntireRow":"行全体","SSE.Views.Toolbar.textEuro":"ユーロ記号","SSE.Views.Toolbar.textFewPages":"ページ","SSE.Views.Toolbar.textFillLeft":"左","SSE.Views.Toolbar.textFillRight":"右","SSE.Views.Toolbar.textFormatCellFill":"セルの塗りつぶしの書式設定","SSE.Views.Toolbar.textGreaterEqual":"以上","SSE.Views.Toolbar.textHeight":"高さ","SSE.Views.Toolbar.textHideVA":"表示エリアを非表示にする","SSE.Views.Toolbar.textHorizontal":"横書きテキスト","SSE.Views.Toolbar.textInfinity":"無限","SSE.Views.Toolbar.textInsDown":"下方向にシフト","SSE.Views.Toolbar.textInsideBorders":"内枠線","SSE.Views.Toolbar.textInsPageBreak":"改ページの挿入","SSE.Views.Toolbar.textInsRight":"右方向にシフト","SSE.Views.Toolbar.textItalic":"イタリック","SSE.Views.Toolbar.textItems":"アイテム","SSE.Views.Toolbar.textLandscape":"横向き","SSE.Views.Toolbar.textLeft":"左:","SSE.Views.Toolbar.textLeftBorders":"左の枠線","SSE.Views.Toolbar.textLessEqual":"以下","SSE.Views.Toolbar.textLetterPi":"ギリシャの小文字ピー","SSE.Views.Toolbar.textManageRule":"ルールの管理","SSE.Views.Toolbar.textManyPages":"ページ","SSE.Views.Toolbar.textMarginsLast":"最後に適用した設定","SSE.Views.Toolbar.textMarginsNarrow":"狭い","SSE.Views.Toolbar.textMarginsNormal":"標準","SSE.Views.Toolbar.textMarginsWide":"広い","SSE.Views.Toolbar.textMiddleBorders":"内側の水平枠線","SSE.Views.Toolbar.textMoreBorders":"さらに多くの枠線","SSE.Views.Toolbar.textMoreFormats":"その他のフォーマット","SSE.Views.Toolbar.textMorePages":"その他のページ","SSE.Views.Toolbar.textMoreSymbols":"その他の記号","SSE.Views.Toolbar.textNewColor":"その他の色","SSE.Views.Toolbar.textNewRule":"新しいルール","SSE.Views.Toolbar.textNoBorders":"枠線なし","SSE.Views.Toolbar.textNotEqualTo":"同等ではない","SSE.Views.Toolbar.textOneHalf":"普通分数の1/2","SSE.Views.Toolbar.textOnePage":"ページ","SSE.Views.Toolbar.textOneQuarter":"普通分数の1/4","SSE.Views.Toolbar.textOutBorders":"外枠線","SSE.Views.Toolbar.textPageMarginsCustom":"ユーザー設定の余白","SSE.Views.Toolbar.textPlusMinus":"プラスマイナス記号","SSE.Views.Toolbar.textPortrait":"縦向き","SSE.Views.Toolbar.textPrint":"印刷","SSE.Views.Toolbar.textPrintGridlines":"枠線の印刷","SSE.Views.Toolbar.textPrintHeadings":"見出しの印刷","SSE.Views.Toolbar.textPrintOptions":"印刷の設定","SSE.Views.Toolbar.textRegistered":"登録商標マーク","SSE.Views.Toolbar.textResetPageBreak":"すべての改ページをリセットする","SSE.Views.Toolbar.textRight":"右:","SSE.Views.Toolbar.textRightBorders":"右の枠線","SSE.Views.Toolbar.textRotateDown":"右へ90度回転","SSE.Views.Toolbar.textRotateUp":"左へ90度回転","SSE.Views.Toolbar.textRtlSheet":"シート(右から左)","SSE.Views.Toolbar.textScale":"規模","SSE.Views.Toolbar.textScaleCustom":"ユーザー設定","SSE.Views.Toolbar.textSection":"節記号","SSE.Views.Toolbar.textSelection":"現在の選択項目から","SSE.Views.Toolbar.textSeries":"系列","SSE.Views.Toolbar.textSetPrintArea":"印刷範囲を設定する","SSE.Views.Toolbar.textShapesCombine":"結合","SSE.Views.Toolbar.textShapesFragment":"断片","SSE.Views.Toolbar.textShapesIntersect":"交差","SSE.Views.Toolbar.textShapesSubstract":"減算","SSE.Views.Toolbar.textShapesUnion":"連合","SSE.Views.Toolbar.textShowVA":"表示エリアを表示にする","SSE.Views.Toolbar.textSmile":"白い笑顔","SSE.Views.Toolbar.textSquareRoot":"平方根","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.textTabDraw":"描画","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.textTabTableDesign":"表のデザイン","SSE.Views.Toolbar.textTabView":"表示","SSE.Views.Toolbar.textThisPivot":"このピボットから","SSE.Views.Toolbar.textThisSheet":"このシートから","SSE.Views.Toolbar.textThisTable":"この表から","SSE.Views.Toolbar.textTilde":"チルダ","SSE.Views.Toolbar.textTop":"トップ: ","SSE.Views.Toolbar.textTopBorders":"上の枠線","SSE.Views.Toolbar.textTradeMark":"商標マーク","SSE.Views.Toolbar.textUnderline":"下線","SSE.Views.Toolbar.textUp":"上","SSE.Views.Toolbar.textVertical":"縦書きテキスト","SSE.Views.Toolbar.textWidth":"幅","SSE.Views.Toolbar.textYen":"円記号","SSE.Views.Toolbar.textZoom":"ズーム","SSE.Views.Toolbar.tipAlignBottom":"下揃え","SSE.Views.Toolbar.tipAlignCenter":"中央揃え","SSE.Views.Toolbar.tipAlignJust":"両端揃え","SSE.Views.Toolbar.tipAlignLeft":"左揃え","SSE.Views.Toolbar.tipAlignMiddle":"中央揃え","SSE.Views.Toolbar.tipAlignRight":"右揃え","SSE.Views.Toolbar.tipAlignTop":"上揃え","SSE.Views.Toolbar.tipAutofilter":"並べ替えとフィルタ","SSE.Views.Toolbar.tipBack":"戻る","SSE.Views.Toolbar.tipBorders":"表の枠線","SSE.Views.Toolbar.tipCellStyle":"セルのスタイル","SSE.Views.Toolbar.tipChangeCase":"大文字小文字を変更","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.tipCut":"切り取り","SSE.Views.Toolbar.tipDecDecimal":"小数点以下の表示桁数を減らす","SSE.Views.Toolbar.tipDecFont":"フォントサイズの縮小","SSE.Views.Toolbar.tipDeleteOpt":"セルを削除","SSE.Views.Toolbar.tipDigStyleAccounting":"会計のスタイル","SSE.Views.Toolbar.tipDigStyleComma":"カンマスタイル","SSE.Views.Toolbar.tipDigStyleCurrency":"通貨スタイル","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.tipHAlighOle":"左右の整列","SSE.Views.Toolbar.tipImgAlign":"オブジェクトを整列する","SSE.Views.Toolbar.tipImgGroup":"オブジェクトをグループ化する","SSE.Views.Toolbar.tipIncDecimal":"小数点以下の表示桁数を増やす","SSE.Views.Toolbar.tipIncFont":"フォントサイズの拡大","SSE.Views.Toolbar.tipInsertChart":"グラフを挿入","SSE.Views.Toolbar.tipInsertChartRecommend":"推奨チャートを挿入","SSE.Views.Toolbar.tipInsertChartSpark":"グラフを挿入","SSE.Views.Toolbar.tipInsertEquation":"方程式を挿入","SSE.Views.Toolbar.tipInsertHorizontalText":"横書きテキストボックスの挿入","SSE.Views.Toolbar.tipInsertHyperlink":"ハイパーリンクを追加","SSE.Views.Toolbar.tipInsertImage":"画像を挿入","SSE.Views.Toolbar.tipInsertOpt":"セルを挿入","SSE.Views.Toolbar.tipInsertShape":"図形を挿入","SSE.Views.Toolbar.tipInsertSlicer":"スライサーを挿入","SSE.Views.Toolbar.tipInsertSmartArt":"SmartArtの挿入","SSE.Views.Toolbar.tipInsertSpark":"スパークラインを挿入する","SSE.Views.Toolbar.tipInsertSymbol":"記号を挿入","SSE.Views.Toolbar.tipInsertTable":"表の挿入","SSE.Views.Toolbar.tipInsertText":"テキストボックスを挿入する","SSE.Views.Toolbar.tipInsertTextart":"テキストアートの挿入","SSE.Views.Toolbar.tipInsertVerticalText":"縦書きテキストボックスの挿入","SSE.Views.Toolbar.tipMerge":"結合して、中央に配置する","SSE.Views.Toolbar.tipNone":"なし","SSE.Views.Toolbar.tipNumFormat":"数値の書式","SSE.Views.Toolbar.tipPageBreak":"印刷物で次のページを開始する位置に改行を追加する","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.tipPrintQuick":"クイックプリント","SSE.Views.Toolbar.tipPrintTitles":"タイトルを印刷する","SSE.Views.Toolbar.tipRedo":"やり直す","SSE.Views.Toolbar.tipReplace":"置き換え","SSE.Views.Toolbar.tipRtlSheet":"最初の列が右側に来るようにシートの方向を切り替える","SSE.Views.Toolbar.tipSave":"保存","SSE.Views.Toolbar.tipSaveCoauth":"他のユーザが変更を見れるために変更を保存します。","SSE.Views.Toolbar.tipScale":"拡大縮小印刷","SSE.Views.Toolbar.tipSelectAll":"すべて選択","SSE.Views.Toolbar.tipSendBackward":"背面ヘ移動","SSE.Views.Toolbar.tipSendForward":"前面ヘ移動","SSE.Views.Toolbar.tipShapesMerge":"図形を結合","SSE.Views.Toolbar.tipSynchronize":"ドキュメントは他のユーザーによって変更されました。変更を保存するためにここでクリックし、アップデートを再ロードしてください。","SSE.Views.Toolbar.tipTextDirection":"テキスト方向","SSE.Views.Toolbar.tipTextFormatting":"その他のテキスト編集ツール","SSE.Views.Toolbar.tipTextOrientation":"印刷の向き","SSE.Views.Toolbar.tipUndo":"元に戻す","SSE.Views.Toolbar.tipVAlighOle":"垂直揃え","SSE.Views.Toolbar.tipVisibleArea":"表示エリア","SSE.Views.Toolbar.tipWrap":"折り返して​​全体を表示する","SSE.Views.Toolbar.txtAccounting":"会計","SSE.Views.Toolbar.txtAdditional":"追加","SSE.Views.Toolbar.txtAscending":"昇順","SSE.Views.Toolbar.txtAutosumTip":"合計","SSE.Views.Toolbar.txtCellStyle":"セルのスタイル","SSE.Views.Toolbar.txtClearAll":"すべて","SSE.Views.Toolbar.txtClearComments":"コメント","SSE.Views.Toolbar.txtClearFilter":"フィルタをクリアする","SSE.Views.Toolbar.txtClearFormat":"形式","SSE.Views.Toolbar.txtClearFormula":"関数","SSE.Views.Toolbar.txtClearHyper":"ハイパーリンク","SSE.Views.Toolbar.txtClearText":"テキスト","SSE.Views.Toolbar.txtCurrency":"通貨","SSE.Views.Toolbar.txtCustom":"ユーザー設定","SSE.Views.Toolbar.txtDate":"日付","SSE.Views.Toolbar.txtDateLong":"長い日付形式","SSE.Views.Toolbar.txtDateShort":"日付 (短い形式)","SSE.Views.Toolbar.txtDateTime":"日付&時刻","SSE.Views.Toolbar.txtDescending":"降順","SSE.Views.Toolbar.txtDollar":"$ ドル","SSE.Views.Toolbar.txtEuro":"€ ユーロ","SSE.Views.Toolbar.txtExp":"指数","SSE.Views.Toolbar.txtFillNum":"塗りつぶし","SSE.Views.Toolbar.txtFilter":"フィルター​​","SSE.Views.Toolbar.txtFormula":"関数を挿入","SSE.Views.Toolbar.txtFraction":"分数","SSE.Views.Toolbar.txtFranc":"CHF スイス フラン","SSE.Views.Toolbar.txtGeneral":"標準","SSE.Views.Toolbar.txtInteger":"整数","SSE.Views.Toolbar.txtManageRange":"名前の管理","SSE.Views.Toolbar.txtMergeAcross":"横方向に​​結合","SSE.Views.Toolbar.txtMergeCells":"セルの結合","SSE.Views.Toolbar.txtMergeCenter":"結合して中央揃え","SSE.Views.Toolbar.txtNamedRange":"名前付き一覧\t","SSE.Views.Toolbar.txtNewRange":"名前の定義","SSE.Views.Toolbar.txtNoBorders":"枠線なし","SSE.Views.Toolbar.txtNumber":"数値","SSE.Views.Toolbar.txtPasteRange":"名前の貼り付け","SSE.Views.Toolbar.txtPercentage":"パーセンテージ","SSE.Views.Toolbar.txtPound":"£ ポンド","SSE.Views.Toolbar.txtRouble":"₽ ルーブル","SSE.Views.Toolbar.txtScientific":"指数","SSE.Views.Toolbar.txtSearch":"検索","SSE.Views.Toolbar.txtSort":"並べ替え","SSE.Views.Toolbar.txtSortAZ":"昇順並べ替え","SSE.Views.Toolbar.txtSortZA":"降順並べ替え","SSE.Views.Toolbar.txtSpecial":"特殊","SSE.Views.Toolbar.txtTableTemplate":"表として書式設定","SSE.Views.Toolbar.txtText":"テキスト","SSE.Views.Toolbar.txtTime":"時刻","SSE.Views.Toolbar.txtUnmerge":"セル結合の解除","SSE.Views.Toolbar.txtYen":"¥ 円","SSE.Views.Top10FilterDialog.textType":"表示","SSE.Views.Top10FilterDialog.txtBottom":"最低","SSE.Views.Top10FilterDialog.txtBy":"対象","SSE.Views.Top10FilterDialog.txtItems":"アイテム","SSE.Views.Top10FilterDialog.txtPercent":"パーセント","SSE.Views.Top10FilterDialog.txtSum":"合計","SSE.Views.Top10FilterDialog.txtTitle":"トップ 10 オートフィルタ","SSE.Views.Top10FilterDialog.txtTop":"トップ","SSE.Views.Top10FilterDialog.txtValueTitle":"トップ10フィルター","SSE.Views.ValueFieldSettingsDialog.textNext":"(次)","SSE.Views.ValueFieldSettingsDialog.textNumFormat":"数値の書式","SSE.Views.ValueFieldSettingsDialog.textPrev":"(前)","SSE.Views.ValueFieldSettingsDialog.textTitle":"値フィールド設定","SSE.Views.ValueFieldSettingsDialog.txtAverage":"平均","SSE.Views.ValueFieldSettingsDialog.txtBaseField":"基本フィールド","SSE.Views.ValueFieldSettingsDialog.txtBaseItem":"基本アイテム\n\t","SSE.Views.ValueFieldSettingsDialog.txtByField":"%2 の %1","SSE.Views.ValueFieldSettingsDialog.txtCount":"データの個数","SSE.Views.ValueFieldSettingsDialog.txtCountNums":"数値の個数","SSE.Views.ValueFieldSettingsDialog.txtCustomName":"ユーザー設定の名前","SSE.Views.ValueFieldSettingsDialog.txtDifference":"基準値との差分","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.txtPercentOfGrand":"%合計","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParent":"親集計に対する比率","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentCol":"親列集計に対する比率","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentRow":"親行集計に対する比率","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow":"合計のパーセント","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRunTotal":"累計","SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal":"行のパーセント","SSE.Views.ValueFieldSettingsDialog.txtProduct":"乗積","SSE.Views.ValueFieldSettingsDialog.txtRankAscending":"昇順での順位","SSE.Views.ValueFieldSettingsDialog.txtRankDescending":"降順での順位","SSE.Views.ValueFieldSettingsDialog.txtRunTotal":"累計","SSE.Views.ValueFieldSettingsDialog.txtShowAs":"計算の種類を表示","SSE.Views.ValueFieldSettingsDialog.txtSourceName":"ソース名:","SSE.Views.ValueFieldSettingsDialog.txtStdDev":"標準偏差","SSE.Views.ValueFieldSettingsDialog.txtStdDevp":"標準偏差","SSE.Views.ValueFieldSettingsDialog.txtSum":"合計","SSE.Views.ValueFieldSettingsDialog.txtSummarize":"値フィールドを次のように要約する:","SSE.Views.ValueFieldSettingsDialog.txtVar":"標本分散","SSE.Views.ValueFieldSettingsDialog.txtVarp":"分散","SSE.Views.ViewManagerDlg.closeButtonText":"閉じる","SSE.Views.ViewManagerDlg.guestText":"ゲスト","SSE.Views.ViewManagerDlg.lockText":"ロックされた","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.textViews":"シート表示","SSE.Views.ViewManagerDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.ViewManagerDlg.txtTitle":"シート表示マネージャー","SSE.Views.ViewManagerDlg.warnDeleteAnotherView":"このシートビューを削除してもよろしいですか?","SSE.Views.ViewManagerDlg.warnDeleteView":"現在有効になっている表示 '%1'を削除しようとしています。
この表示を閉じて削除しますか?","SSE.Views.ViewTab.capBtnFreeze":"ウィンドウ枠の固定","SSE.Views.ViewTab.capBtnSheetView":"シートの表示","SSE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","SSE.Views.ViewTab.textClose":"閉じる","SSE.Views.ViewTab.textCombineSheetAndStatusBars":"ステータスバーとシートを結合する","SSE.Views.ViewTab.textCreate":"新しい","SSE.Views.ViewTab.textDefault":"デフォルト","SSE.Views.ViewTab.textFill":"塗りつぶし","SSE.Views.ViewTab.textFormula":"数式バー","SSE.Views.ViewTab.textFreezeCol":"先頭列を固定する","SSE.Views.ViewTab.textFreezeRow":"先頭行を固定する","SSE.Views.ViewTab.textGridlines":"枠線表示","SSE.Views.ViewTab.textHeadings":"見出し","SSE.Views.ViewTab.textInterfaceTheme":"インターフェイスのテーマ","SSE.Views.ViewTab.textLeftMenu":"左パネル","SSE.Views.ViewTab.textLine":"線","SSE.Views.ViewTab.textMacros":"マクロ","SSE.Views.ViewTab.textManager":"表示マネージャー","SSE.Views.ViewTab.textRightMenu":"右パネル","SSE.Views.ViewTab.textShowFrozenPanesShadow":"固定されたウィンドウ枠の影を表示する","SSE.Views.ViewTab.textTabStyle":"タブのスタイル","SSE.Views.ViewTab.textUnFreeze":"ウインドウ枠固定の解除","SSE.Views.ViewTab.textZeros":"0を表示する","SSE.Views.ViewTab.textZoom":"ズーム","SSE.Views.ViewTab.tipClose":"シートの表示を閉じる","SSE.Views.ViewTab.tipCreate":"シート表示を作成する","SSE.Views.ViewTab.tipFreeze":"ウィンドウ枠の固定","SSE.Views.ViewTab.tipInterfaceTheme":"インターフェースのテーマ","SSE.Views.ViewTab.tipMacros":"マクロ","SSE.Views.ViewTab.tipSheetView":"シートの表示","SSE.Views.ViewTab.tipViewNormal":"通常表示で原稿を見る","SSE.Views.ViewTab.tipViewPageBreak":"原稿を印刷したときに、改ページがどこに表示されるかを確認する","SSE.Views.ViewTab.txtViewNormal":"標準","SSE.Views.ViewTab.txtViewPageBreak":"改ページ プレビュー","SSE.Views.WatchDialog.closeButtonText":"閉じる","SSE.Views.WatchDialog.textAdd":"ウォッチ式の追加","SSE.Views.WatchDialog.textBook":"ブック","SSE.Views.WatchDialog.textCell":"セル","SSE.Views.WatchDialog.textDelete":"ウォッチ式の削除","SSE.Views.WatchDialog.textDeleteAll":"全部削除する","SSE.Views.WatchDialog.textFormula":"数式","SSE.Views.WatchDialog.textName":"名前","SSE.Views.WatchDialog.textSheet":"シート","SSE.Views.WatchDialog.textValue":"値","SSE.Views.WatchDialog.txtTitle":"ウォッチ ウィンドウ","SSE.Views.WBProtection.hintAllowRanges":"範囲の編集を許可する","SSE.Views.WBProtection.hintProtectRange":"範囲を保護する","SSE.Views.WBProtection.hintProtectSheet":"シートを保護する","SSE.Views.WBProtection.hintProtectWB":"ブックを保護する","SSE.Views.WBProtection.txtAllowRanges":"範囲の編集を許可する","SSE.Views.WBProtection.txtHiddenFormula":"非表示の数式","SSE.Views.WBProtection.txtLockedCell":"ロックされたセル","SSE.Views.WBProtection.txtLockedShape":"図形をロック","SSE.Views.WBProtection.txtLockedText":"テキストをロックする","SSE.Views.WBProtection.txtProtectRange":"範囲を保護する","SSE.Views.WBProtection.txtProtectSheet":"シートを保護する","SSE.Views.WBProtection.txtProtectWB":"ブックを保護する","SSE.Views.WBProtection.txtSheetUnlockDescription":"シートを保護解除するようにパスワードを入力してください","SSE.Views.WBProtection.txtSheetUnlockTitle":"シートを保護を解除する","SSE.Views.WBProtection.txtWBUnlockDescription":"ブックを保護解除するようにパスワードを入力してください","SSE.Views.WBProtection.txtWBUnlockTitle":"ブックを保護を解除する"} \ No newline at end of file +{"cancelButtonText":"キャンセル","Common.Controllers.Chat.notcriticalErrorTitle":"警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.ExternalLinks.textAddExternalData":"外部ソースへのリンクが追加されました。このようなリンクは、「データ」タブで更新することができます。","Common.Controllers.ExternalLinks.textContinue":"続ける","Common.Controllers.ExternalLinks.textDontUpdate":"アップデートしない","Common.Controllers.ExternalLinks.textTurnOff":"自動アップデートをオフにする","Common.Controllers.ExternalLinks.textUpdate":"更新","Common.Controllers.ExternalLinks.txtErrorExternalLink":"エラー:アップデートに失敗しました","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdate":"このワークブックには、自動的に更新される外部ソースへのリンクが含まれています。これは安全ではない可能性があります。

リンク先を信頼する場合は、「続行」をクリックしてください。","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdateDE":"このドキュメントには自動的に更新される外部ソースへのリンクが含まれています。これは安全ではない可能性があります。

それらを信頼する場合は、「続行」を押してください。","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdatePE":"このプレゼンテーションは自動的に更新される外部ソースへのリンクが含まれています。これは安全ではない可能性があります。

信頼できる場合は、「続行」を押してください。","Common.Controllers.ExternalLinks.warnUpdateExternalData":"このワークブックには、安全でない可能性のある1つまたは複数の外部ソースへのリンクが含まれています。
リンクを信頼する場合は、最新のデータを取得するためにそれらを更新してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"このドキュメントには、安全でない可能性のある外部ソースへのリンクが1つ以上含まれています。
リンクを信頼できる場合は、更新して最新のデータを取得してください。","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"このプレゼンテーションには、安全でない可能性のある外部ソースへのリンクが含まれています。
リンクを信頼する場合は、更新して最新のデータを取得してください。","Common.Controllers.History.notcriticalErrorTitle":"警告","Common.Controllers.History.txtErrorLoadHistory":"履歴の読み込みに失敗しました","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","Common.Controllers.Shortcuts.txtDescriptionAddLineBreak":"Add a line break without starting a new paragraph when entering text within a graphical object.","Common.Controllers.Shortcuts.txtDescriptionAutoFill":"Use this shortcut in an empty cell below or above existing values in the column. A drop-down list with existing values will appear. Select one of the available text values to fill an empty cell.","Common.Controllers.Shortcuts.txtDescriptionBold":"Make the font of the selected text fragment darker and heavier than normal, or remove the bold formatting.","Common.Controllers.Shortcuts.txtDescriptionCellAddSeparator":"Insert a separator within an active cell.","Common.Controllers.Shortcuts.txtDescriptionCellCurrencyFormat":"Apply the Currency format with two decimal places.","Common.Controllers.Shortcuts.txtDescriptionCellDateFormat":"Apply the Date format with the day, month, and year.","Common.Controllers.Shortcuts.txtDescriptionCellEditorSwitchReference":"Switch the type of a reference to a cell in the formula bar (absolute, relative).","Common.Controllers.Shortcuts.txtDescriptionCellEntryCancel":"Cancel an entry in the selected cell or the formula bar.","Common.Controllers.Shortcuts.txtDescriptionCellExponentialFormat":"Apply the Exponential number format with two decimal places.","Common.Controllers.Shortcuts.txtDescriptionCellGeneralFormat":"Apply the General number format.","Common.Controllers.Shortcuts.txtDescriptionCellInsertDate":"Insert the today date within an active cell.","Common.Controllers.Shortcuts.txtDescriptionCellInsertSumFunction":"Insert the SUM function into the selected cell.","Common.Controllers.Shortcuts.txtDescriptionCellInsertTime":"Insert the current time within an active cell.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellDown":"Move to the cell below.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellLeft":"Move to the cell on the left.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellRight":"Move to the cell on the right.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellUp":"Move to the cell above.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomEdge":"Outline a cell at the bottom edge of the visible data region.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomNonBlank":"Outline the next cell with data below in a worksheet.","Common.Controllers.Shortcuts.txtDescriptionCellMoveDown":"Outline a cell below the currently selected one.","Common.Controllers.Shortcuts.txtDescriptionCellMoveEndSpreadsheet":"Outline the lower right used cell in the worksheet situated in the bottommost row with data from the rightmost column with data. If the cursor is in the formula bar, it will be placed to the end of the text.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstCell":"Outline the cell A1.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstColumn":"Outline a cell in the column A of the current row.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeft":"Outline a cell to the left of the currently selected one.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeftNonBlank":"Outline the next cell with data on the left in a worksheet.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRight":"Outline a cell to the right of the currently selected one.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRightNonBlank":"Outline the next cell with data on the right in a worksheet.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopEdge":"Outline a cell at the top edge of the visible data region.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopNonBlank":"Outline the next cell with data above in a worksheet.","Common.Controllers.Shortcuts.txtDescriptionCellMoveUp":"Outline a cell above the currently selected one.","Common.Controllers.Shortcuts.txtDescriptionCellNumberFormat":"Apply the Number format with two decimal places, thousands separator, and minus sign (-) for negative values.","Common.Controllers.Shortcuts.txtDescriptionCellPercentFormat":"Apply the Percentage format with no decimal places.","Common.Controllers.Shortcuts.txtDescriptionCellStartNewLine":"Start a new line in the same cell.","Common.Controllers.Shortcuts.txtDescriptionCellTimeFormat":"Apply the Time format with the hour and minute, and AM or PM.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"Switch a paragraph between centered and left-aligned. Works only with text within a graphical object.","Common.Controllers.Shortcuts.txtDescriptionClearActiveCellContent":"Remove the content (data and formulas) from the active cell without affecting the cell format or comments.","Common.Controllers.Shortcuts.txtDescriptionClearSelectedCellsContent":"Remove the content (data and formulas) from all selected cells without affecting the cell format or comments.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"Close the current spreadsheet window.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"Close a menu or modal window. Suspend copying formats. Reset adding shapes mode. Clear clipboard when cutting/copying cells. Hide the Paste Special button.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveDown":"Complete a cell entry in the selected cell or the formula bar, and move to the cell below.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveLeft":"Complete a cell entry in the selected cell or the formula bar and move to the cell on the left.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveRight":"Complete a cell entry in the selected cell or the formula bar and move to the cell on the right.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveUp":"Complete a cell entry in the selected cell, and move to the cell above.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryStay":"Complete a cell entry in the selected cell or the formula bar and stay in it.","Common.Controllers.Shortcuts.txtDescriptionCopy":"Send the selected data/graphics to the computer clipboard memory. The copied data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program.","Common.Controllers.Shortcuts.txtDescriptionCut":"Cut the selected data/graphics and send them to the computer clipboard memory. The cut data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"Decrease the size of the font for the selected text fragment 1 point. Works only with text within a graphical object.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"Delete one character to the left in the formula bar or in the selected cell when the cell editing mode is activated. Remove the selection. Also removes the content of the active cell. It is also applicable to text in graphical objects.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"Remove a word, selection to the left of the cursor.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"Delete one character to the right in the formula bar or in the selected cell when the cell editing mode is activated. Remove the selection. Also removes the cell contents (data and formulas) from selected cells without affecting cell formats or comments. It is also applicable to text in graphical objects.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"Remove a word, selection to the right of the cursor.","Common.Controllers.Shortcuts.txtDescriptionDownloadAs":"Open the Download as... panel to save the currently edited spreadsheet to the computer hard disk drive in one of the supported formats.","Common.Controllers.Shortcuts.txtDescriptionDrawingAddTab":"Add the tab character to the object content.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"When the chart title is selected, select the text.","Common.Controllers.Shortcuts.txtDescriptionEditOpenCellEditor":"Edit the active cell and position the insertion point at the end of the cell contents. If editing in a cell is turned off, the insertion point will be moved into the Formula Bar.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"Repeat the latest undone action.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"Select the entire shape content (when the cursor is within the shape content). Select the entire cell content (when the cursor is within the cell).","Common.Controllers.Shortcuts.txtDescriptionEditShape":"When the shape is selected, if it does not contain content, create content and move the cursor to the beginning of the line. If the content is empty, move the cursor to it, otherwise select the entire content.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"Reverse the latest performed action.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"Insert an en dash to the right of the cursor.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"End the current paragraph and start a new one when entering text within a graphical object.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"Add a new placeholder to the equation argument.","Common.Controllers.Shortcuts.txtDescriptionExitAddingShapesMode":"Exit from adding shapes mode. Remove selection step by step (e.g., if the content of a shape within a group is selected, the cursor will be removed from the content first, then from the shape, then from the group).","Common.Controllers.Shortcuts.txtDescriptionFillSelectedCellRange":"Fill the selected cell range with the current entry. Select a cell range, type data to the active cell, and press the specified keys to fill all the selected cells with entered data.","Common.Controllers.Shortcuts.txtDescriptionFormatAsTableTemplate":"Apply a table template to a selected cell range.","Common.Controllers.Shortcuts.txtDescriptionFormatTableAddSummaryRow":"Add the Summary row for a formatted table.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"Increase the size of the font for the selected text fragment 1 point. Works only with text within a graphical object.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"Insert a link which can be used to go to a web address.","Common.Controllers.Shortcuts.txtDescriptionItalic":"Make the font of the selected text fragment italicized and slightly slanted, or remove italic formatting.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"Switch a paragraph between justified and left-aligned. Works only with text within a graphical object.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"Align a paragraph left. Works only with text within a graphical object.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningLine":"Put the cursor to the beginning of the currently edited line.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningText":"Put the cursor to the very beginning of the text in a cell or shape.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterLeft":"Move the cursor one character to the left.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterRight":"Move the cursor one character to the right.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineDown":"Move the cursor one line down.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineUp":"Move the cursor one line up.","Common.Controllers.Shortcuts.txtDescriptionMoveEndLine":"Put the cursor to the end of the currently edited line.","Common.Controllers.Shortcuts.txtDescriptionMoveEndText":"Put the cursor to the very end of the text in a cell or shape.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusNextObject":"Move focus to the next object after the currently selected one.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusPreviousObject":"Move focus to the previous object before the currently selected one.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepBottom":"Use the keyboard arrows to move the selected object by a big step down.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepLeft":"Use the keyboard arrows to move the selected object by a big step to the left.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepRight":"Use the keyboard arrows to move the selected object by a big step to the right.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepUp":"Use the keyboard arrows to move the selected object by a big step up.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepBottom":"Hold down the specified key and use the keyboard arrow to move the selected object down by one pixel at a time.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepLeft":"Hold down the specified key and use the keyboard arrow to move the selected object to the left by one pixel at a time.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepRight":"Hold down the specified key and use the keyboard arrow to move the selected object to the right by one pixel at a time.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepUp":"Hold down the specified key and use the keyboard arrow to move the selected object up by one pixel at a time.","Common.Controllers.Shortcuts.txtDescriptionMoveWordLeft":"Move the cursor one word to the left.","Common.Controllers.Shortcuts.txtDescriptionMoveWordRight":"Move the cursor one word to the right.","Common.Controllers.Shortcuts.txtDescriptionNavigateNextControl":"Navigate between controls to give focus to the next control in modal dialogues.","Common.Controllers.Shortcuts.txtDescriptionNavigatePreviousControl":"Navigate between controls to give focus to the previous control in modal dialogues.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"Switch to the next file tab in Desktop Editors or browser tab in Online Editors.","Common.Controllers.Shortcuts.txtDescriptionNextWorksheet":"Move to the next sheet in your spreadsheet.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"Open the Chat panel in the Online Editors and send a message.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"Open a data entry field where you can add the text of your comment.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"Open the Comments panel to add your own comment or reply to other users' comments.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"Open the contextual menu of the selected element.","Common.Controllers.Shortcuts.txtDescriptionOpenDeleteCellsWindow":"Open the dialog box for deleting cells within the current spreadsheet with an added parameter of a shift to the left, a shift up, deleting an entire row or an entire column.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"Open the standard dialog box that allows selecting an existing file. If you select the file in this dialog box and click Open, the file will be opened in a new tab or window of Desktop Editors.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"Open the File panel to save, download, print the current spreadsheet, view its info, create a new spreadsheet or open an existing one, access the help menu of the Spreadsheet Editor or its advanced settings.","Common.Controllers.Shortcuts.txtDescriptionOpenFilterWindow":"In the header of a column with a filter, open the filter window.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"Open the Find and Replace menu (panel) with the replacement field to replace one or more occurrences of the found characters.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"Open the Find dialog window to start searching for a cell containing the required characters.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"Open the Help menu of the Spreadsheet Editor.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertCellsWindow":"Open the dialog box for inserting new cells within the current spreadsheet with an added parameter of a shift to the right, a shift down, inserting an entire row or an entire column.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertFunctionDialog":"Open the dialog box for inserting a new function by choosing from the provided list.","Common.Controllers.Shortcuts.txtDescriptionOpenNumberFormatDialog":"Open the Number Format dialog box.","Common.Controllers.Shortcuts.txtDescriptionPaste":"Insert the previously copied/cut data/graphics from the computer clipboard memory to the current cursor position. The data can be previously copied from the same worksheet, from another spreadsheet, or from some other program.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaAllFormatting":"Paste formulas with all the data formatting.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaColumnWidth":"Paste formulas with all the data formatting and set the source column's width for the cell range.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNoBorders":"Paste formulas with all the data formatting except the cell borders.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNumberFormat":"Paste formulas with the formatting applied to numbers.","Common.Controllers.Shortcuts.txtDescriptionPasteLink":"Paste the external link to a cell or range of cells in another spreadsheet within the current portal (in the online editor) or in a local file (in the desktop editor).","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormatting":"Paste the cell formatting only without pasting the cell contents.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormula":"Paste formulas without pasting the data formatting.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyValue":"Paste the formula results without pasting the data formatting.","Common.Controllers.Shortcuts.txtDescriptionPasteValueAllFormatting":"Paste the formula results with all the data formatting.","Common.Controllers.Shortcuts.txtDescriptionPasteValueNumberFormat":"Paste the formula results with the formatting applied to numbers.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"Switch to the previous file tab in Desktop Editors or browser tab in Online Editors.","Common.Controllers.Shortcuts.txtDescriptionPreviousWorksheet":"Move to the previous sheet in your spreadsheet.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"Print your spreadsheet with one of the available printers or save it to a file.","Common.Controllers.Shortcuts.txtDescriptionRecalculateActiveSheet":"Recalculate the current worksheet.","Common.Controllers.Shortcuts.txtDescriptionRecalculateAll":"Recalculate the entire workbook.","Common.Controllers.Shortcuts.txtDescriptionRefreshAllPivots":"Update all pivot tables.","Common.Controllers.Shortcuts.txtDescriptionRefreshSelectedPivots":"Update the previously selected pivot table.","Common.Controllers.Shortcuts.txtDescriptionRemoveGraphicalObject":"Remove graphical object.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"Switch a paragraph between right-aligned and left-aligned. Works only with text within a graphical object.","Common.Controllers.Shortcuts.txtDescriptionSave":"Save all the changes to the spreadsheet currently edited with the Spreadsheet Editor. The active file will be saved with its current file name, location, and file format.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningLine":"Select a text fragment from the cursor to the beginning of the current line.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningText":"Select a text fragment from the cursor to the beginning of the text in a cell or shape.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningWorksheet":"Select a fragment from the current selected cells to the beginning of the worksheet.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterLeft":"Select one character to the left of the cursor position.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterRight":"Select one character to the right of the cursor position.","Common.Controllers.Shortcuts.txtDescriptionSelectColumn":"Select an entire column in a worksheet.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorBeginningRow":"Select a fragment from the cursor to the beginning of the current row.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorEndRow":"Select a fragment from the cursor to the end of the current row.","Common.Controllers.Shortcuts.txtDescriptionSelectDownOneScreen":"Extend the selection to include all the cells one screen down from the active cell. All cells in the columns of the previously selected range will be selected.","Common.Controllers.Shortcuts.txtDescriptionSelectEndLine":"Select a text fragment from the cursor to the end of the current line.","Common.Controllers.Shortcuts.txtDescriptionSelectEndText":"Select a text fragment from the cursor to the end of the text in a cell or shape.","Common.Controllers.Shortcuts.txtDescriptionSelectFirstColumn":"Extend the selection to the first column (A).","Common.Controllers.Shortcuts.txtDescriptionSelectLastUsedCell":"Select a fragment from the current selected cells to the last used cell in the worksheet (in the bottommost row with data of the rightmost column with data). If the cursor is in the formula bar, this will select all text in the formula bar from the cursor position to the end without affecting the height of the formula bar.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"Move the cursor one line down, selecting all symbols between the previous and current cursor position.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"Move the cursor one line up, selecting all symbols between the previous and current cursor position.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankDown":"Extend the selection to the nearest nonblank cell in the same column down from the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankRight":"Extend the selection to the nearest nonblank cell in the same row to the right of the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankUp":"Extend the selection to the nearest nonblank cell in the same column up from the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankDown":"Select cells to the next nonblank cell down from the active cell or to the edge of the visible area.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankLeft":"Select cells to the next nonblank cell to the left of the active cell or to the edge of the visible area.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankRight":"Select cells to the next nonblank cell to the right of the active cell or to the edge of the visible area.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankUp":"Select cells to the next nonblank cell up from the active cell or to the edge of the visible area.","Common.Controllers.Shortcuts.txtDescriptionSelectNonblankLeft":"Extend the selection to the nonblank cell to the left.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellDown":"Select one cell down.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellLeft":"Select one cell to the left.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellRight":"Select one cell to the right.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellUp":"Select one cell up.","Common.Controllers.Shortcuts.txtDescriptionSelectRow":"Select an entire row in a worksheet.","Common.Controllers.Shortcuts.txtDescriptionSelectUpOneScreen":"Extend the selection to include all the cells one screen up from the active cell. All cells in the columns of the previously selected range will be selected.","Common.Controllers.Shortcuts.txtDescriptionSelectWordLeft":"Select one word to the left of the cursor.","Common.Controllers.Shortcuts.txtDescriptionSelectWordRight":"Select one word to the right of the cursor.","Common.Controllers.Shortcuts.txtDescriptionShowFormulas":"Display functions (not their values) on a sheet for printing them.","Common.Controllers.Shortcuts.txtDescriptionSlicerClearSelectedValues":"Clear selected values for a slicer.","Common.Controllers.Shortcuts.txtDescriptionSlicerSwitchMultiSelect":"Enable/disable multi-select for a slicer.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"Enables/disables the transmission of actions performed in the application for screen readers.","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"Make the selected text fragment struck out with a line going through the letters, or remove strikeout formatting.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"Make the selected text fragment smaller and place it to the lower part of the text line, e.g. as in chemical formulas.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"Make the selected text fragment smaller and place it to the upper part of the text line, e.g. as in fractions.","Common.Controllers.Shortcuts.txtDescriptionToggleAutoFilter":"Enable a filter for a selected cell range, or remove the filter.","Common.Controllers.Shortcuts.txtDescriptionTranspose":"Paste data switching them from columns to rows, or vice versa. This option is available for regular data ranges, but not for formatted tables.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"Make the selected text fragment underlined with a line going under the letters, or remove underlining.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"Visit a link (with the cursor in the link).","Common.Controllers.Shortcuts.txtDescriptionZoom100":"Reset the 'Zoom' parameter of the current spreadsheet to a default 100%.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"Zoom in the currently edited spreadsheet.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"Zoom out the currently edited spreadsheet.","Common.Controllers.Shortcuts.txtLabelAddLineBreak":"AddLineBreak","Common.Controllers.Shortcuts.txtLabelAutoFill":"AutoFill","Common.Controllers.Shortcuts.txtLabelBold":"Bold","Common.Controllers.Shortcuts.txtLabelCellAddSeparator":"CellAddSeparator","Common.Controllers.Shortcuts.txtLabelCellCurrencyFormat":"CellCurrencyFormat","Common.Controllers.Shortcuts.txtLabelCellDateFormat":"CellDateFormat","Common.Controllers.Shortcuts.txtLabelCellEditorSwitchReference":"CellEditorSwitchReference","Common.Controllers.Shortcuts.txtLabelCellEntryCancel":"CellEntryCancel","Common.Controllers.Shortcuts.txtLabelCellExponentialFormat":"CellExponentialFormat","Common.Controllers.Shortcuts.txtLabelCellGeneralFormat":"CellGeneralFormat","Common.Controllers.Shortcuts.txtLabelCellInsertDate":"CellInsertDate","Common.Controllers.Shortcuts.txtLabelCellInsertSumFunction":"CellInsertSumFunction","Common.Controllers.Shortcuts.txtLabelCellInsertTime":"CellInsertTime","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellDown":"CellMoveActiveCellDown","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellLeft":"CellMoveActiveCellLeft","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellRight":"CellMoveActiveCellRight","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellUp":"CellMoveActiveCellUp","Common.Controllers.Shortcuts.txtLabelCellMoveBottomEdge":"CellMoveBottomEdge","Common.Controllers.Shortcuts.txtLabelCellMoveBottomNonBlank":"CellMoveBottomNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveDown":"CellMoveDown","Common.Controllers.Shortcuts.txtLabelCellMoveEndSpreadsheet":"CellMoveEndSpreadsheet","Common.Controllers.Shortcuts.txtLabelCellMoveFirstCell":"CellMoveFirstCell","Common.Controllers.Shortcuts.txtLabelCellMoveFirstColumn":"CellMoveFirstColumn","Common.Controllers.Shortcuts.txtLabelCellMoveLeft":"CellMoveLeft","Common.Controllers.Shortcuts.txtLabelCellMoveLeftNonBlank":"CellMoveLeftNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveRight":"CellMoveRight","Common.Controllers.Shortcuts.txtLabelCellMoveRightNonBlank":"CellMoveRightNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveTopEdge":"CellMoveTopEdge","Common.Controllers.Shortcuts.txtLabelCellMoveTopNonBlank":"CellMoveTopNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveUp":"CellMoveUp","Common.Controllers.Shortcuts.txtLabelCellNumberFormat":"CellNumberFormat","Common.Controllers.Shortcuts.txtLabelCellPercentFormat":"CellPercentFormat","Common.Controllers.Shortcuts.txtLabelCellStartNewLine":"CellStartNewLine","Common.Controllers.Shortcuts.txtLabelCellTimeFormat":"CellTimeFormat","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelClearActiveCellContent":"ClearActiveCellContent","Common.Controllers.Shortcuts.txtLabelClearSelectedCellsContent":"ClearSelectedCellsContent","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveDown":"CompleteCellEntryMoveDown","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveLeft":"CompleteCellEntryMoveLeft","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveRight":"CompleteCellEntryMoveRight","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveUp":"CompleteCellEntryMoveUp","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryStay":"CompleteCellEntryStay","Common.Controllers.Shortcuts.txtLabelCopy":"Copy","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelDownloadAs":"DownloadAs","Common.Controllers.Shortcuts.txtLabelDrawingAddTab":"DrawingAddTab","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditOpenCellEditor":"EditOpenCellEditor","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelExitAddingShapesMode":"ExitAddingShapesMode","Common.Controllers.Shortcuts.txtLabelFillSelectedCellRange":"FillSelectedCellRange","Common.Controllers.Shortcuts.txtLabelFormatAsTableTemplate":"FormatAsTableTemplate","Common.Controllers.Shortcuts.txtLabelFormatTableAddSummaryRow":"FormatTableAddSummaryRow","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelMoveBeginningLine":"MoveBeginningLine","Common.Controllers.Shortcuts.txtLabelMoveBeginningText":"MoveBeginningText","Common.Controllers.Shortcuts.txtLabelMoveCharacterLeft":"MoveCharacterLeft","Common.Controllers.Shortcuts.txtLabelMoveCharacterRight":"MoveCharacterRight","Common.Controllers.Shortcuts.txtLabelMoveCursorLineDown":"MoveCursorLineDown","Common.Controllers.Shortcuts.txtLabelMoveCursorLineUp":"MoveCursorLineUp","Common.Controllers.Shortcuts.txtLabelMoveEndLine":"MoveEndLine","Common.Controllers.Shortcuts.txtLabelMoveEndText":"MoveEndText","Common.Controllers.Shortcuts.txtLabelMoveFocusNextObject":"MoveFocusNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusPreviousObject":"MoveFocusPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepBottom":"MoveShapeBigStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepLeft":"MoveShapeBigStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepRight":"MoveShapeBigStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepUp":"MoveShapeBigStepUp","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepBottom":"MoveShapeLittleStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepLeft":"MoveShapeLittleStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepRight":"MoveShapeLittleStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepUp":"MoveShapeLittleStepUp","Common.Controllers.Shortcuts.txtLabelMoveWordLeft":"MoveWordLeft","Common.Controllers.Shortcuts.txtLabelMoveWordRight":"MoveWordRight","Common.Controllers.Shortcuts.txtLabelNavigateNextControl":"NavigateNextControl","Common.Controllers.Shortcuts.txtLabelNavigatePreviousControl":"NavigatePreviousControl","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextWorksheet":"NextWorksheet","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenDeleteCellsWindow":"OpenDeleteCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFilterWindow":"OpenFilterWindow","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelOpenInsertCellsWindow":"OpenInsertCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenInsertFunctionDialog":"OpenInsertFunctionDialog","Common.Controllers.Shortcuts.txtLabelOpenNumberFormatDialog":"OpenNumberFormatDialog","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormulaAllFormatting":"PasteFormulaAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteFormulaColumnWidth":"PasteFormulaColumnWidth","Common.Controllers.Shortcuts.txtLabelPasteFormulaNoBorders":"PasteFormulaNoBorders","Common.Controllers.Shortcuts.txtLabelPasteFormulaNumberFormat":"PasteFormulaNumberFormat","Common.Controllers.Shortcuts.txtLabelPasteLink":"PasteLink","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormatting":"PasteOnlyFormatting","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormula":"PasteOnlyFormula","Common.Controllers.Shortcuts.txtLabelPasteOnlyValue":"PasteOnlyValue","Common.Controllers.Shortcuts.txtLabelPasteValueAllFormatting":"PasteValueAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteValueNumberFormat":"PasteValueNumberFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousWorksheet":"PreviousWorksheet","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRecalculateActiveSheet":"RecalculateActiveSheet","Common.Controllers.Shortcuts.txtLabelRecalculateAll":"RecalculateAll","Common.Controllers.Shortcuts.txtLabelRefreshAllPivots":"RefreshAllPivots","Common.Controllers.Shortcuts.txtLabelRefreshSelectedPivots":"RefreshSelectedPivots","Common.Controllers.Shortcuts.txtLabelRemoveGraphicalObject":"RemoveGraphicalObject","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSelectBeginningLine":"SelectBeginningLine","Common.Controllers.Shortcuts.txtLabelSelectBeginningText":"SelectBeginningText","Common.Controllers.Shortcuts.txtLabelSelectBeginningWorksheet":"SelectBeginningWorksheet","Common.Controllers.Shortcuts.txtLabelSelectCharacterLeft":"SelectCharacterLeft","Common.Controllers.Shortcuts.txtLabelSelectCharacterRight":"SelectCharacterRight","Common.Controllers.Shortcuts.txtLabelSelectColumn":"SelectColumn","Common.Controllers.Shortcuts.txtLabelSelectCursorBeginningRow":"SelectCursorBeginningRow","Common.Controllers.Shortcuts.txtLabelSelectCursorEndRow":"SelectCursorEndRow","Common.Controllers.Shortcuts.txtLabelSelectDownOneScreen":"SelectDownOneScreen","Common.Controllers.Shortcuts.txtLabelSelectEndLine":"SelectEndLine","Common.Controllers.Shortcuts.txtLabelSelectEndText":"SelectEndText","Common.Controllers.Shortcuts.txtLabelSelectFirstColumn":"SelectFirstColumn","Common.Controllers.Shortcuts.txtLabelSelectLastUsedCell":"SelectLastUsedCell","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankDown":"SelectNearestNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankRight":"SelectNearestNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankUp":"SelectNearestNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankDown":"SelectNextNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankLeft":"SelectNextNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankRight":"SelectNextNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankUp":"SelectNextNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNonblankLeft":"SelectNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellDown":"SelectOneCellDown","Common.Controllers.Shortcuts.txtLabelSelectOneCellLeft":"SelectOneCellLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellRight":"SelectOneCellRight","Common.Controllers.Shortcuts.txtLabelSelectOneCellUp":"SelectOneCellUp","Common.Controllers.Shortcuts.txtLabelSelectRow":"SelectRow","Common.Controllers.Shortcuts.txtLabelSelectUpOneScreen":"SelectUpOneScreen","Common.Controllers.Shortcuts.txtLabelSelectWordLeft":"SelectWordLeft","Common.Controllers.Shortcuts.txtLabelSelectWordRight":"SelectWordRight","Common.Controllers.Shortcuts.txtLabelShowFormulas":"ShowFormulas","Common.Controllers.Shortcuts.txtLabelSlicerClearSelectedValues":"SlicerClearSelectedValues","Common.Controllers.Shortcuts.txtLabelSlicerSwitchMultiSelect":"SlicerSwitchMultiSelect","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStrikeout":"Strikeout","Common.Controllers.Shortcuts.txtLabelSubscript":"Subscript","Common.Controllers.Shortcuts.txtLabelSuperscript":"Superscript","Common.Controllers.Shortcuts.txtLabelToggleAutoFilter":"ToggleAutoFilter","Common.Controllers.Shortcuts.txtLabelTranspose":"Transpose","Common.Controllers.Shortcuts.txtLabelUnderline":"Underline","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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.textColumnSpark":"縦棒グラフ","Common.define.chartData.textCombo":"複合","Common.define.chartData.textComboAreaBar":"積み上げ面 - 集合縦棒","Common.define.chartData.textComboBarLine":"集合縦棒 - 線","Common.define.chartData.textComboBarLineSecondary":"集合縦棒 - 第2軸の折れ線","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.textLineSpark":"グラフ","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.textRadar":"レーダーチャート","Common.define.chartData.textRadarFilled":"塗りつぶしレーダー","Common.define.chartData.textRadarMarker":"マーカー付きレーダー","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.chartData.textSurface":"表面","Common.define.chartData.textWinLossSpark":"勝ち/負け","Common.define.conditionalData.exampleText":"AaBbCcYyZz","Common.define.conditionalData.noFormatText":"書式設定しない","Common.define.conditionalData.text1Above":"より 1 標準偏差上","Common.define.conditionalData.text1Below":"より 1 標準偏差下","Common.define.conditionalData.text2Above":"より 2 標準偏差上","Common.define.conditionalData.text2Below":"より 2 標準偏差下","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.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.textText":"テキスト","Common.define.conditionalData.textThisMonth":"今月","Common.define.conditionalData.textThisWeek":"今週","Common.define.conditionalData.textToday":"今日","Common.define.conditionalData.textTomorrow":"明日","Common.define.conditionalData.textTop":"トップ","Common.define.conditionalData.textUnique":"一意","Common.define.conditionalData.textValue":"値が","Common.define.conditionalData.textYesterday":"昨日","Common.define.smartArt.textAccentedPicture":"アクセント付きの図","Common.define.smartArt.textAccentProcess":"アクセントプロセス","Common.define.smartArt.textAlternatingFlow":"波型ステップ","Common.define.smartArt.textAlternatingHexagons":"左右交替積み上げ六角形","Common.define.smartArt.textAlternatingPictureBlocks":"左右交替積み上げ画像ブロック","Common.define.smartArt.textAlternatingPictureCircles":"円形付き画像ジグザグ表示","Common.define.smartArt.textArchitectureLayout":"アーキテクチャ レイアウト","Common.define.smartArt.textArrowRibbon":"リボン状の矢印","Common.define.smartArt.textAscendingPictureAccentProcess":"アクセント画像付き上昇ステップ","Common.define.smartArt.textBalance":"バランス","Common.define.smartArt.textBasicBendingProcess":"基本蛇行ステップ","Common.define.smartArt.textBasicBlockList":"カード型リスト","Common.define.smartArt.textBasicChevronProcess":"プロセス","Common.define.smartArt.textBasicCycle":"基本の循環","Common.define.smartArt.textBasicMatrix":"基本マトリックス","Common.define.smartArt.textBasicPie":"円グラフ","Common.define.smartArt.textBasicProcess":"基本ステップ","Common.define.smartArt.textBasicPyramid":"基本ピラミッド","Common.define.smartArt.textBasicRadial":"基本放射","Common.define.smartArt.textBasicTarget":"ターゲット","Common.define.smartArt.textBasicTimeline":"タイムライン","Common.define.smartArt.textBasicVenn":"基本ベン図","Common.define.smartArt.textBendingPictureAccentList":"画像付きカード型リスト","Common.define.smartArt.textBendingPictureBlocks":"自動配置の画像ブロック","Common.define.smartArt.textBendingPictureCaption":"自動配置の表題付き画像","Common.define.smartArt.textBendingPictureCaptionList":"自動配置の表題付き画像レイアウト","Common.define.smartArt.textBendingPictureSemiTranparentText":"自動配置の半透明テキスト付き画像","Common.define.smartArt.textBlockCycle":"ボックス循環","Common.define.smartArt.textBubblePictureList":"バブル状画像リスト","Common.define.smartArt.textCaptionedPictures":"表題付き画像","Common.define.smartArt.textChevronAccentProcess":"アクセントステップ","Common.define.smartArt.textChevronList":"プロセス リスト","Common.define.smartArt.textCircleAccentTimeline":"円形組み合わせタイムライン","Common.define.smartArt.textCircleArrowProcess":"円形矢印プロセス","Common.define.smartArt.textCirclePictureHierarchy":"円形画像を使用した階層","Common.define.smartArt.textCircleProcess":"円形プロセス","Common.define.smartArt.textCircleRelationship":"円の関連付け","Common.define.smartArt.textCircularBendingProcess":"円形蛇行ステップ","Common.define.smartArt.textCircularPictureCallout":"円形画像を使った吹き出し","Common.define.smartArt.textClosedChevronProcess":"開始点強調型プロセス","Common.define.smartArt.textContinuousArrowProcess":"大きな矢印のプロセス","Common.define.smartArt.textContinuousBlockProcess":"矢印と長方形のプロセス","Common.define.smartArt.textContinuousCycle":"連続性強調循環","Common.define.smartArt.textContinuousPictureList":"矢印付き画像リスト","Common.define.smartArt.textConvergingArrows":"内向き矢印","Common.define.smartArt.textConvergingRadial":"収束ラジアル","Common.define.smartArt.textConvergingText":"内向きテキスト","Common.define.smartArt.textCounterbalanceArrows":"対立とバランスの矢印","Common.define.smartArt.textCycle":"循環","Common.define.smartArt.textCycleMatrix":"循環マトリックス","Common.define.smartArt.textDescendingBlockList":"ブロックの降順リスト","Common.define.smartArt.textDescendingProcess":"降順プロセス","Common.define.smartArt.textDetailedProcess":"詳述プロセス","Common.define.smartArt.textDivergingArrows":"左右逆方向矢印","Common.define.smartArt.textDivergingRadial":"矢印付き放射","Common.define.smartArt.textEquation":"数式","Common.define.smartArt.textFramedTextPicture":"フレームに表示されるテキスト画像","Common.define.smartArt.textFunnel":"漏斗","Common.define.smartArt.textGear":"歯車","Common.define.smartArt.textGridMatrix":"グリッド マトリックス","Common.define.smartArt.textGroupedList":"グループ リスト","Common.define.smartArt.textHalfCircleOrganizationChart":"アーチ型線で飾られた組織図","Common.define.smartArt.textHexagonCluster":"蜂の巣状の六角形","Common.define.smartArt.textHexagonRadial":"六角形放射","Common.define.smartArt.textHierarchy":"階層","Common.define.smartArt.textHierarchyList":"階層リスト","Common.define.smartArt.textHorizontalBulletList":"横方向箇条書きリスト","Common.define.smartArt.textHorizontalHierarchy":"横方向階層","Common.define.smartArt.textHorizontalLabeledHierarchy":"ラベル付き横方向階層","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"複数レベル対応の横方向階層","Common.define.smartArt.textHorizontalOrganizationChart":"水平方向の組織図","Common.define.smartArt.textHorizontalPictureList":"横方向画像リスト","Common.define.smartArt.textIncreasingArrowProcess":"上昇矢印のプロセス","Common.define.smartArt.textIncreasingCircleProcess":"上昇円プロセス","Common.define.smartArt.textInterconnectedBlockProcess":"相互接続された長方形のプロセス","Common.define.smartArt.textInterconnectedRings":"互いにつながったリング","Common.define.smartArt.textInvertedPyramid":"反転ピラミッド","Common.define.smartArt.textLabeledHierarchy":"ラベル付き階層","Common.define.smartArt.textLinearVenn":"横方向ベン図","Common.define.smartArt.textLinedList":"線区切りリスト","Common.define.smartArt.textList":"リスト","Common.define.smartArt.textMatrix":"マトリックス","Common.define.smartArt.textMultidirectionalCycle":"双方向循環","Common.define.smartArt.textNameAndTitleOrganizationChart":"氏名/役職名付き組織図","Common.define.smartArt.textNestedTarget":"包含","Common.define.smartArt.textNondirectionalCycle":"矢印無し循環","Common.define.smartArt.textOpposingArrows":"上下逆方向矢印","Common.define.smartArt.textOpposingIdeas":"対立する案","Common.define.smartArt.textOrganizationChart":"組織図","Common.define.smartArt.textOther":"その他","Common.define.smartArt.textPhasedProcess":"フェーズ プロセス","Common.define.smartArt.textPicture":"画像","Common.define.smartArt.textPictureAccentBlocks":"画像アクセントのブロック","Common.define.smartArt.textPictureAccentList":"画像アクセントのリスト","Common.define.smartArt.textPictureAccentProcess":"画像アクセントのプロセス","Common.define.smartArt.textPictureCaptionList":"画像キャプションのリスト","Common.define.smartArt.textPictureFrame":"フォトフレーム","Common.define.smartArt.textPictureGrid":"画像グリッド","Common.define.smartArt.textPictureLineup":"画像ラインアップ","Common.define.smartArt.textPictureOrganizationChart":"画像付き組織図","Common.define.smartArt.textPictureStrips":"画像付きラベル","Common.define.smartArt.textPieProcess":"円グラフのプロセス","Common.define.smartArt.textPlusAndMinus":"プラスとマイナス","Common.define.smartArt.textProcess":"プロセス","Common.define.smartArt.textProcessArrows":"矢印型ステップ","Common.define.smartArt.textProcessList":"プロセスのリスト","Common.define.smartArt.textPyramid":"ピラミッド","Common.define.smartArt.textPyramidList":"ピラミッドのリスト","Common.define.smartArt.textRadialCluster":"放射ブロック","Common.define.smartArt.textRadialCycle":"中心付き循環","Common.define.smartArt.textRadialList":"放射リスト","Common.define.smartArt.textRadialPictureList":"放射画像リスト","Common.define.smartArt.textRadialVenn":"放射型ベン図","Common.define.smartArt.textRandomToResultProcess":"複数案をまとめるステップ","Common.define.smartArt.textRelationship":"関係","Common.define.smartArt.textRepeatingBendingProcess":"改行型蛇行ステップ","Common.define.smartArt.textReverseList":"逆順リスト","Common.define.smartArt.textSegmentedCycle":"円型循環","Common.define.smartArt.textSegmentedProcess":"分割ステップ","Common.define.smartArt.textSegmentedPyramid":"分割ピラミッド","Common.define.smartArt.textSnapshotPictureList":"スナップショット画像リスト","Common.define.smartArt.textSpiralPicture":"渦巻き画像","Common.define.smartArt.textSquareAccentList":"箇条書き記号アクセントのリスト","Common.define.smartArt.textStackedList":"積み上げリスト","Common.define.smartArt.textStackedVenn":"包含型ベン図","Common.define.smartArt.textStaggeredProcess":"段違いステップ","Common.define.smartArt.textStepDownProcess":"ステップ ダウンのプロセス","Common.define.smartArt.textStepUpProcess":"ステップアップのプロセス","Common.define.smartArt.textSubStepProcess":"サブステップのプロセス","Common.define.smartArt.textTabbedArc":"円弧状タブ","Common.define.smartArt.textTableHierarchy":"積み木型の階層","Common.define.smartArt.textTableList":"表型リスト","Common.define.smartArt.textTabList":"タブ付きリスト","Common.define.smartArt.textTargetList":"ターゲットのリスト","Common.define.smartArt.textTextCycle":"テキスト循環","Common.define.smartArt.textThemePictureAccent":"テーマ画像アクセント","Common.define.smartArt.textThemePictureAlternatingAccent":"テーマ画像交互のアクセント","Common.define.smartArt.textThemePictureGrid":"テーマ画像グリッド","Common.define.smartArt.textTitledMatrix":"タイトル付きマトリックス","Common.define.smartArt.textTitledPictureAccentList":"画像付き横方向リスト","Common.define.smartArt.textTitledPictureBlocks":"タイトル付き画像ブロック","Common.define.smartArt.textTitlePictureLineup":"タイトル付き画像ラインアップ","Common.define.smartArt.textTrapezoidList":"台形リスト","Common.define.smartArt.textUpwardArrow":"上向き矢印","Common.define.smartArt.textVaryingWidthList":"可変幅リスト","Common.define.smartArt.textVerticalAccentList":"縦方向アクセントのリスト","Common.define.smartArt.textVerticalArrowList":"縦方向矢印リスト","Common.define.smartArt.textVerticalBendingProcess":"縦型蛇行ステップ","Common.define.smartArt.textVerticalBlockList":"縦方向ボックス リスト","Common.define.smartArt.textVerticalBoxList":"縦方向リスト","Common.define.smartArt.textVerticalBracketList":"縦方向ブラケット リスト","Common.define.smartArt.textVerticalBulletList":"縦方向箇条書きリスト","Common.define.smartArt.textVerticalChevronList":"縦方向プロセス","Common.define.smartArt.textVerticalCircleList":"縦方向円リスト","Common.define.smartArt.textVerticalCurvedList":"縦方向カーブのリスト","Common.define.smartArt.textVerticalEquation":"縦型の数式","Common.define.smartArt.textVerticalPictureAccentList":"縦方向円形画像リスト","Common.define.smartArt.textVerticalPictureList":"縦方向画像リスト","Common.define.smartArt.textVerticalProcess":"縦方向ステップ","Common.Translation.textMoreButton":"もっと","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"見に開く","Common.UI.ButtonColored.textAutoColor":"自動","Common.UI.ButtonColored.textEyedropper":"スポイト","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":"金","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":"木","Common.UI.Calendar.textShortTuesday":"火","Common.UI.Calendar.textShortWednesday":"水","Common.UI.Calendar.textYears":"年","Common.UI.ComboBorderSize.txtNoBorders":"枠線なし","Common.UI.ComboBorderSizeEditable.txtNoBorders":"枠線なし","Common.UI.ComboDataView.emptyComboText":"スタイルなし","Common.UI.ExtendedColorDialog.addButtonText":"追加","Common.UI.ExtendedColorDialog.textCurrent":"現在","Common.UI.ExtendedColorDialog.textHexErr":"入力された値が正しくありません。
000000〜FFFFFFの数値を入力してください。","Common.UI.ExtendedColorDialog.textNew":"新しい","Common.UI.ExtendedColorDialog.textRGBErr":"入力された値が正しくありません。
0〜255の数値を入力してください。","Common.UI.HSBColorPicker.textNoColor":"色なし","Common.UI.InputField.txtEmpty":"このフィールドは必須です","Common.UI.InputFieldBtnCalendar.textDate":"日付の選択","Common.UI.InputFieldBtnPassword.textHintHidePwd":"パスワードを表示しない","Common.UI.InputFieldBtnPassword.textHintHold":"長押しでパスワード表示","Common.UI.InputFieldBtnPassword.textHintShowPwd":"パスワードを表示する","Common.UI.SearchBar.textFind":"検索する","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果を強調表示","Common.UI.SearchDialog.textMatchCase":"大文字と小文字の区別","Common.UI.SearchDialog.textReplaceDef":"代替テキストを入力してください","Common.UI.SearchDialog.textSearchStart":"ここでテキストを挿入してください。","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索","Common.UI.SearchDialog.textWholeWords":"単語全体","Common.UI.SearchDialog.txtBtnHideReplace":"変更を表示しない","Common.UI.SearchDialog.txtBtnReplace":"置き換え","Common.UI.SearchDialog.txtBtnReplaceAll":"全ての置き換え","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"ドキュメントは他のユーザーによって変更されました。
変更を保存するためにここでクリックし、アップデートを再ロードしてください。","Common.UI.ThemeColorPalette.textRecentColors":"最近使った色","Common.UI.ThemeColorPalette.textStandartColors":"標準色","Common.UI.ThemeColorPalette.textThemeColors":"テーマの色","Common.UI.Themes.txtThemeClassicLight":"明るい(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"暗い","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"明るい","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":" 警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Utils.ThemeColor.txtaccent":"アクセント","Common.Utils.ThemeColor.txtAqua":"水色","Common.Utils.ThemeColor.txtbackground":"背景","Common.Utils.ThemeColor.txtBlack":"黒色","Common.Utils.ThemeColor.txtBlue":"青色","Common.Utils.ThemeColor.txtBrightGreen":"明るい緑","Common.Utils.ThemeColor.txtBrown":"茶色","Common.Utils.ThemeColor.txtDarkBlue":"濃い青色","Common.Utils.ThemeColor.txtDarker":"より濃い","Common.Utils.ThemeColor.txtDarkGray":"濃い灰色","Common.Utils.ThemeColor.txtDarkGreen":"濃い緑色","Common.Utils.ThemeColor.txtDarkPurple":"濃い紫色","Common.Utils.ThemeColor.txtDarkRed":"濃い赤色","Common.Utils.ThemeColor.txtDarkTeal":"濃い青緑色","Common.Utils.ThemeColor.txtDarkYellow":"濃い黄色","Common.Utils.ThemeColor.txtGold":"金色","Common.Utils.ThemeColor.txtGray":"灰色","Common.Utils.ThemeColor.txtGreen":"緑色","Common.Utils.ThemeColor.txtIndigo":"インディゴ","Common.Utils.ThemeColor.txtLavender":"ラベンダー","Common.Utils.ThemeColor.txtLightBlue":"明るい青色","Common.Utils.ThemeColor.txtLighter":"より明るい","Common.Utils.ThemeColor.txtLightGray":"明るい灰色","Common.Utils.ThemeColor.txtLightGreen":"明るい緑色","Common.Utils.ThemeColor.txtLightOrange":"明るいオレンジ色","Common.Utils.ThemeColor.txtLightYellow":"明るい黄色","Common.Utils.ThemeColor.txtOrange":"オレンジ色","Common.Utils.ThemeColor.txtPink":"ピンク色","Common.Utils.ThemeColor.txtPurple":"紫色","Common.Utils.ThemeColor.txtRed":"赤色","Common.Utils.ThemeColor.txtRose":"ローズ色","Common.Utils.ThemeColor.txtSkyBlue":"スカイブルー色","Common.Utils.ThemeColor.txtTeal":"青緑色","Common.Utils.ThemeColor.txttext":"テキスト","Common.Utils.ThemeColor.txtTurquosie":"ターコイズ色","Common.Utils.ThemeColor.txtViolet":"バイオレット色","Common.Utils.ThemeColor.txtWhite":"白色","Common.Utils.ThemeColor.txtYellow":"黄色","Common.Views.About.txtAddress":"アドレス:","Common.Views.About.txtLicensee":"ライセンス所有者","Common.Views.About.txtLicensor":"ライセンサー","Common.Views.About.txtMail":"メール:","Common.Views.About.txtPoweredBy":"によって提供されています","Common.Views.About.txtTel":"電話番号:","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":"削除する","Common.Views.AutoCorrectDialog.textFLSentence":"文章の最初の文字を大文字にする","Common.Views.AutoCorrectDialog.textHyperlink":"インターネットとネットワークのアドレスをハイパーリンクに変更する","Common.Views.AutoCorrectDialog.textMathCorrect":"数式オートコレクト","Common.Views.AutoCorrectDialog.textNewRowCol":"テーブルに新しい行と列を含める","Common.Views.AutoCorrectDialog.textRecognized":"認識された関数","Common.Views.AutoCorrectDialog.textRecognizedDesc":"以下の式は、認識される数式です。 自動的にイタリック体になることはありません。","Common.Views.AutoCorrectDialog.textReplace":"置き換える","Common.Views.AutoCorrectDialog.textReplaceText":"入力時に置き換える\n\t","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.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"ここでメッセージを挿入してください","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.mniFilterComments":"コメントの表示","Common.Views.Comments.mniFilterGroups":"グループでフィルター","Common.Views.Comments.mniPositionAsc":"上から","Common.Views.Comments.mniPositionDesc":"下から","Common.Views.Comments.textAdd":"追加","Common.Views.Comments.textAddComment":"コメントを追加","Common.Views.Comments.textAddCommentToDoc":"ドキュメントにコメントを追加","Common.Views.Comments.textAddReply":"返信を追加","Common.Views.Comments.textAll":"すべて","Common.Views.Comments.textAnonym":"ゲスト","Common.Views.Comments.textCancel":"キャンセル","Common.Views.Comments.textClose":"閉じる","Common.Views.Comments.textClosePanel":"コメントを閉じる","Common.Views.Comments.textComment":"コメント","Common.Views.Comments.textComments":"コメント","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"ここでコメントを挿入してください。","Common.Views.Comments.textHintAddComment":"コメントを追加","Common.Views.Comments.textOpen":"開く","Common.Views.Comments.textOpenAgain":"もう一度開く","Common.Views.Comments.textReply":"返信する","Common.Views.Comments.textResolve":"解決","Common.Views.Comments.textResolved":"解決済み","Common.Views.Comments.textSort":"コメントを並べ替える","Common.Views.Comments.textSortFilter":"コメントの並べ替えとフィルター","Common.Views.Comments.textSortFilterMore":"並び替え、フィルター、その他","Common.Views.Comments.textSortMore":"並び替えなど","Common.Views.Comments.textViewResolved":"コメントを再開する権限がありません","Common.Views.Comments.txtEmpty":"シートにはコメントがありません","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"エディターツールバーのボタンやコンテキストメニューの操作によるコピー、カット、ペーストの動作は、このエディタータブ内でのみ実行されます。

エディタータブ以外のアプリケーションとの間でコピーまたは貼り付けを行うには、次のキーボードの組み合わせを使用して下さい:","Common.Views.CopyWarningDialog.textTitle":"コピー、カット、ペーストのアクション","Common.Views.CopyWarningDialog.textToCopy":"コピーのため","Common.Views.CopyWarningDialog.textToCut":"切り取りのため","Common.Views.CopyWarningDialog.textToPaste":"貼り付けのため","Common.Views.CustomizeQuickAccessDialog.textDownload":"ダウンロード","Common.Views.CustomizeQuickAccessDialog.textMsg":"クイックアクセスツールバーに表示されるコマンドをチェックしてください","Common.Views.CustomizeQuickAccessDialog.textPrint":"印刷","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"クイックプリント","Common.Views.CustomizeQuickAccessDialog.textRedo":"やり直す","Common.Views.CustomizeQuickAccessDialog.textSave":"保存","Common.Views.CustomizeQuickAccessDialog.textTitle":"クイックアクセスのカスタマイズ","Common.Views.CustomizeQuickAccessDialog.textUndo":"元に戻す","Common.Views.DocumentAccessDialog.textLoading":"読み込み中...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.DocumentPropertyDialog.errorDate":"カレンダーから値を選択して日付として保存できます。
値を手動で入力した場合は、テキストとして保存されます。","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"いいえ","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"はい","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"プロパティはタイトルが必要です","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"タイトル","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"「はい」または「いいえ」","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"日付","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"タイプ","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"数","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"有効な数値を入力してください","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"テキスト","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"プロパティには値が必要です","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"値","Common.Views.DocumentPropertyDialog.txtTitle":"新しいドキュメントのプロパティ","Common.Views.Draw.hintEraser":"消しゴム","Common.Views.Draw.hintSelect":"選択","Common.Views.Draw.txtEraser":"消しゴム","Common.Views.Draw.txtHighlighter":"蛍光ペン","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"ペン","Common.Views.Draw.txtSelect":"選択","Common.Views.Draw.txtSize":"サイズ","Common.Views.EditNameDialog.textLabel":"ラベル:","Common.Views.EditNameDialog.textLabelError":"ラベルは空白にできません。","Common.Views.ExternalLinksDlg.closeButtonText":"閉じる","Common.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","Common.Views.ExternalLinksDlg.textChange":"変更元","Common.Views.ExternalLinksDlg.textDelete":"リンクの解除","Common.Views.ExternalLinksDlg.textDeleteAll":"すべてのリンクを解除","Common.Views.ExternalLinksDlg.textOk":"OK","Common.Views.ExternalLinksDlg.textOpen":"オープンソース","Common.Views.ExternalLinksDlg.textSource":"ソース","Common.Views.ExternalLinksDlg.textStatus":"ステータス","Common.Views.ExternalLinksDlg.textUnknown":"不明","Common.Views.ExternalLinksDlg.textUpdate":"値を更新","Common.Views.ExternalLinksDlg.textUpdateAll":"すべて更新","Common.Views.ExternalLinksDlg.textUpdating":"更新中...","Common.Views.ExternalLinksDlg.txtTitle":"外部リンク","Common.Views.FormatSettingsDialog.textCategory":"カテゴリー","Common.Views.FormatSettingsDialog.textDecimal":"小数点","Common.Views.FormatSettingsDialog.textFormat":"フォーマット","Common.Views.FormatSettingsDialog.textLinked":"ソースにリンクした","Common.Views.FormatSettingsDialog.textLocale":"ロケール設定","Common.Views.FormatSettingsDialog.textSeparator":"1000の区切り文字を使用する","Common.Views.FormatSettingsDialog.textSymbols":"記号","Common.Views.FormatSettingsDialog.textTitle":"数値の書式","Common.Views.FormatSettingsDialog.txtAccounting":"会計","Common.Views.FormatSettingsDialog.txtAs10":"10分の5(5/10)として","Common.Views.FormatSettingsDialog.txtAs100":"100分の50(50/100)として","Common.Views.FormatSettingsDialog.txtAs16":"16分の8(8/16)として","Common.Views.FormatSettingsDialog.txtAs2":"2分の1(1/2)として","Common.Views.FormatSettingsDialog.txtAs4":"8分の2(2/4)として","Common.Views.FormatSettingsDialog.txtAs8":"8分の4(4/8)として","Common.Views.FormatSettingsDialog.txtCurrency":"通貨","Common.Views.FormatSettingsDialog.txtCustom":"カスタム","Common.Views.FormatSettingsDialog.txtCustomWarning":"カスタム番号の形式を慎重に入力してください。 Spreadsheet Editorは、xlsxファイルに影響を与える可能性のあるエラーについてカスタム形式をチェックしません。","Common.Views.FormatSettingsDialog.txtDate":"日付","Common.Views.FormatSettingsDialog.txtFraction":"分数","Common.Views.FormatSettingsDialog.txtGeneral":"標準","Common.Views.FormatSettingsDialog.txtNone":"なし","Common.Views.FormatSettingsDialog.txtNumber":"数字","Common.Views.FormatSettingsDialog.txtPercentage":"パーセンテージ","Common.Views.FormatSettingsDialog.txtSample":"例:","Common.Views.FormatSettingsDialog.txtScientific":"学術的","Common.Views.FormatSettingsDialog.txtText":"テキスト","Common.Views.FormatSettingsDialog.txtTime":"時間","Common.Views.FormatSettingsDialog.txtUpto1":"最大1桁(1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"最大2桁(12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"最大3桁(131/135)","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りとしてマーク","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textBack":"ファイルの場所を開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideStatusBar":"ステータスバーとシートを結合する","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textSaveBegin":"保存中...","Common.Views.Header.textSaveChanged":"更新された","Common.Views.Header.textSaveEnd":"すべての変更が保存されました","Common.Views.Header.textSaveExpander":"すべての変更が保存されました","Common.Views.Header.textShare":"共有","Common.Views.Header.textZoom":"ズーム","Common.Views.Header.tipAccessRights":"文書のアクセス許可の管理","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDownload":"ファイルをダウンロード","Common.Views.Header.tipGoEdit":"このファイルを編集する","Common.Views.Header.tipPrint":"印刷","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直し","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUndock":"別のウィンドウにドッキングを解除する","Common.Views.Header.tipUsers":"ユーザーを表示する","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.textHighlightDeleted":"削除されたところをハイライトする","Common.Views.History.textMore":"もっと見る","Common.Views.History.textRestore":"復元する","Common.Views.History.textShow":"拡張する","Common.Views.History.textShowAll":"詳細な変更を表示する","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"バージョン履歴","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.textFromFile":"ファイルから","Common.Views.ListSettingsDialog.textFromStorage":"ストレージから","Common.Views.ListSettingsDialog.textFromUrl":"URLから","Common.Views.ListSettingsDialog.textNumbering":"番号付き","Common.Views.ListSettingsDialog.textSelect":"選択する","Common.Views.ListSettingsDialog.tipChange":"箇条書きを変更","Common.Views.ListSettingsDialog.txtBullet":"箇条書き","Common.Views.ListSettingsDialog.txtColor":"色","Common.Views.ListSettingsDialog.txtImage":"画像","Common.Views.ListSettingsDialog.txtImport":"挿入","Common.Views.ListSettingsDialog.txtNewBullet":"新しい箇条書き","Common.Views.ListSettingsDialog.txtNewImage":"新しい画像","Common.Views.ListSettingsDialog.txtNone":"なし","Common.Views.ListSettingsDialog.txtOfText":"テキストの%","Common.Views.ListSettingsDialog.txtSize":"サイズ","Common.Views.ListSettingsDialog.txtStart":"から始まる","Common.Views.ListSettingsDialog.txtSymbol":"記号","Common.Views.ListSettingsDialog.txtTitle":"リストの設定","Common.Views.ListSettingsDialog.txtType":"タイプ","Common.Views.MacrosAiDialog.textAreaPlaceholder":"クエリのプロンプトを入力してください","Common.Views.MacrosAiDialog.textCreate":"作成","Common.Views.MacrosDialog.textAutostart":"自動起動","Common.Views.MacrosDialog.textConvertFromVBA":"VBAから変換する","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"マクロをVBAから変換する","Common.Views.MacrosDialog.textCopy":"コピー","Common.Views.MacrosDialog.textCreateFromDesc":"説明から作成する","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"マクロを説明から作成する","Common.Views.MacrosDialog.textCustomFunction":"カスタム関数","Common.Views.MacrosDialog.textCustomFunctions":"カスタム関数","Common.Views.MacrosDialog.textDebug":"デバッグ","Common.Views.MacrosDialog.textDelete":"削除","Common.Views.MacrosDialog.textFunctions":"関数","Common.Views.MacrosDialog.textLoading":"読み込み中...","Common.Views.MacrosDialog.textMacro":"マクロ","Common.Views.MacrosDialog.textMacros":"マクロ","Common.Views.MacrosDialog.textMakeAutostart":"自動起動に設定","Common.Views.MacrosDialog.textRename":"名前を変更","Common.Views.MacrosDialog.textRun":"実行","Common.Views.MacrosDialog.textSave":"保存","Common.Views.MacrosDialog.textTitle":"マクロ","Common.Views.MacrosDialog.textUnMakeAutostart":"自動起動を解除","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"カスタム関数を追加","Common.Views.MacrosDialog.tipFunctionCopy":"カスタム関数のコピー","Common.Views.MacrosDialog.tipFunctionDelete":"カスタム関数の削除","Common.Views.MacrosDialog.tipFunctionRename":"カスタム関数名の変更","Common.Views.MacrosDialog.tipMacrosAdd":"マクロを追加","Common.Views.MacrosDialog.tipMacrosCopy":"マクロのコピー","Common.Views.MacrosDialog.tipMacrosDebug":"マクロのデバッグ","Common.Views.MacrosDialog.tipMacrosRename":"マクロ名の変更","Common.Views.MacrosDialog.tipMacrosRun":"マクロの実行","Common.Views.MacrosDialog.tipRedo":"やり直す","Common.Views.MacrosDialog.tipUndo":"元に戻す","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":"タブ","Common.Views.OpenDialog.txtTitle":"%1オプションを選択","Common.Views.OpenDialog.txtTitleProtected":"保護されたファイル","Common.Views.PasswordDialog.txtDescription":"この文書を保護するためのパスワードを設定してください。","Common.Views.PasswordDialog.txtIncorrectPwd":"先に入力したパスワードと一致しません。","Common.Views.PasswordDialog.txtPassword":"パスワード","Common.Views.PasswordDialog.txtRepeat":"パスワードを再入力","Common.Views.PasswordDialog.txtTitle":"パスワードの設定","Common.Views.PasswordDialog.txtWarning":"警告: パスワードを忘れると元に戻せません。安全な場所に記録してください。","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"スタート","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.Plugins.tipMore":"もっと","Common.Views.Protection.hintAddPwd":"パスワードを使用して、暗号化する","Common.Views.Protection.hintDelPwd":"パスワードの削除","Common.Views.Protection.hintPwd":"パスワードを変更するか削除する","Common.Views.Protection.hintSignature":"デジタル署名かデジタル署名行を追加","Common.Views.Protection.txtAddPwd":"パスワードを追加","Common.Views.Protection.txtChangePwd":"パスワードを変更","Common.Views.Protection.txtDeletePwd":"パスワードを削除する","Common.Views.Protection.txtEncrypt":"暗号化する","Common.Views.Protection.txtInvisibleSignature":"デジタル署名を追加","Common.Views.Protection.txtSignature":"署名","Common.Views.Protection.txtSignatureLine":"署名欄を追加","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","Common.Views.RenameDialog.textName":"ファイル名","Common.Views.RenameDialog.txtInvalidName":"ファイル名に次の文字を使うことはできません。","Common.Views.ReviewChanges.hintNext":"次の変更箇所へ","Common.Views.ReviewChanges.hintPrev":"前の​​変更箇所へ","Common.Views.ReviewChanges.strFast":"即時反映モード","Common.Views.ReviewChanges.strFastDesc":"リアルタイムの共同編集です。すべての変更は自動的に保存されます。","Common.Views.ReviewChanges.strStrict":"厳密モード","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":"変更履歴","Common.Views.ReviewChanges.tipReviewView":"変更を表示するモードをご選択ください","Common.Views.ReviewChanges.tipSetDocLang":"文書の言語を設定する","Common.Views.ReviewChanges.tipSetSpelling":"スペルチェック","Common.Views.ReviewChanges.tipSharing":"文書のアクセス許可の管理","Common.Views.ReviewChanges.txtAccept":"承諾","Common.Views.ReviewChanges.txtAcceptAll":"すべての変更を承諾する","Common.Views.ReviewChanges.txtAcceptChanges":"変更を承諾する","Common.Views.ReviewChanges.txtAcceptCurrent":"現在の変更を承諾する","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":"最終版","Common.Views.ReviewChanges.txtHistory":"バージョン履歴","Common.Views.ReviewChanges.txtMarkup":"全ての変更(編集)","Common.Views.ReviewChanges.txtMarkupCap":"マークアップ","Common.Views.ReviewChanges.txtNext":"次へ","Common.Views.ReviewChanges.txtOriginal":"すべての変更が拒否されました(プレビュー)","Common.Views.ReviewChanges.txtOriginalCap":"初版","Common.Views.ReviewChanges.txtPrev":"前のへ","Common.Views.ReviewChanges.txtReject":"拒否する","Common.Views.ReviewChanges.txtRejectAll":"すべての変更を元に戻す","Common.Views.ReviewChanges.txtRejectChanges":"変更を拒否する","Common.Views.ReviewChanges.txtRejectCurrent":"現在の変更を元に戻す","Common.Views.ReviewChanges.txtSharing":"共有","Common.Views.ReviewChanges.txtSpelling":"スペルチェック","Common.Views.ReviewChanges.txtTurnon":"変更履歴","Common.Views.ReviewChanges.txtView":"表示モード","Common.Views.ReviewPopover.textAdd":"追加","Common.Views.ReviewPopover.textAddReply":"返信を追加","Common.Views.ReviewPopover.textCancel":"キャンセル","Common.Views.ReviewPopover.textClose":"閉じる","Common.Views.ReviewPopover.textComment":"コメント","Common.Views.ReviewPopover.textEdit":"OK","Common.Views.ReviewPopover.textEnterComment":"ここにコメントを入力してください。","Common.Views.ReviewPopover.textMention":"+言及されるユーザーに文書にアクセスを提供して、メールで通知する","Common.Views.ReviewPopover.textMentionNotify":"+言及されるユーザーはメールで通知される","Common.Views.ReviewPopover.textOpenAgain":"もう一度開く","Common.Views.ReviewPopover.textReply":"返信する","Common.Views.ReviewPopover.textResolve":"解決する","Common.Views.ReviewPopover.textViewResolved":"コメントを再開する権限がありません","Common.Views.ReviewPopover.txtDeleteTip":"削除する","Common.Views.ReviewPopover.txtEditTip":"編集","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textByColumns":"列で","Common.Views.SearchPanel.textByRows":"行で","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字を区別する","Common.Views.SearchPanel.textCell":"セル","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索する","Common.Views.SearchPanel.textFindAndReplace":"検索して置換する","Common.Views.SearchPanel.textFormula":"数式","Common.Views.SearchPanel.textFormulas":"数式","Common.Views.SearchPanel.textItemEntireCell":"セル全体の内容","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textLookIn":"検索の範囲","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textName":"名前","Common.Views.SearchPanel.textNoMatches":"一致する結果がありません","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"置換する","Common.Views.SearchPanel.textReplaceAll":"全てを置換する","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearch":"検索","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchOptions":"検索オプション","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textSelectDataRange":"データ範囲を選択する","Common.Views.SearchPanel.textSheet":"シート","Common.Views.SearchPanel.textSpecificRange":"特定の範囲","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textValue":"値","Common.Views.SearchPanel.textValues":"値","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.textWithin":"範囲","Common.Views.SearchPanel.textWorkbook":"ワークブック","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.ShapeShadowDialog.txtAngle":"角","Common.Views.ShapeShadowDialog.txtDistance":"距離","Common.Views.ShapeShadowDialog.txtSize":"サイズ","Common.Views.ShapeShadowDialog.txtTitle":"影の調整","Common.Views.ShapeShadowDialog.txtTransparency":"透過性","Common.Views.ShortcutsDialog.txtDescription":"Description","Common.Views.ShortcutsDialog.txtEmpty":"No matches found. Adjust your search.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restore All to Defaults","Common.Views.ShortcutsDialog.txtRestoreContinue":"Do you want to continue?","Common.Views.ShortcutsDialog.txtRestoreDescription":"All shortcuts settings will be restored to default.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restore to default","Common.Views.ShortcutsDialog.txtSearch":"Search","Common.Views.ShortcutsDialog.txtTitle":"Keyboard Shortcuts","Common.Views.ShortcutsEditDialog.txtAction":"Action","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Type desired shortcut","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"The shortcut used by actions %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"The shortcut used by actions %1 and can’t be changed","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"The shortcut used by action %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"The shortcut used by action %1 and can’t be changed","Common.Views.ShortcutsEditDialog.txtNewShortcut":"New shortcut","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Do you want to continue?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"All shortcuts for action “%1” will be restored to default.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restore to default","Common.Views.ShortcutsEditDialog.txtTitle":"Edit shortcut","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Type desired shortcut","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":"画像を選択","Common.Views.SignDialog.textSignature":"署名は次のようになります:","Common.Views.SignDialog.textTitle":"文書のサイン","Common.Views.SignDialog.textUseImage":"または画像を署名として使用するため、「画像の選択」をクリックしてください","Common.Views.SignDialog.textValid":"%1から%2までは有効","Common.Views.SignDialog.tipFontName":"フォント名","Common.Views.SignDialog.tipFontSize":"フォントのサイズ","Common.Views.SignSettingsDialog.textAllowComment":"署名者が署名ダイアログボックスにコメントを追加できるようにする","Common.Views.SignSettingsDialog.textDefInstruction":"このドキュメントに署名する前に、署名するコンテンツが正しいことを確認してください。","Common.Views.SignSettingsDialog.textInfoEmail":"署名候補者のメールアドレス","Common.Views.SignSettingsDialog.textInfoName":"署名候補者","Common.Views.SignSettingsDialog.textInfoTitle":"署名候補者の役職","Common.Views.SignSettingsDialog.textInstructions":"署名者への説明書","Common.Views.SignSettingsDialog.textShowDate":"署名欄に署名日を表示する","Common.Views.SignSettingsDialog.textTitle":"サインの設定","Common.Views.SignSettingsDialog.txtEmpty":"この項目は必須です","Common.Views.SymbolTableDialog.textCharacter":"文字","Common.Views.SymbolTableDialog.textCode":"UnicodeHEX値","Common.Views.SymbolTableDialog.textCopyright":"著作権マーク","Common.Views.SymbolTableDialog.textDCQuote":"二重引用符(右)","Common.Views.SymbolTableDialog.textDOQuote":"二重の引用符(左)","Common.Views.SymbolTableDialog.textEllipsis":"水平の省略記号","Common.Views.SymbolTableDialog.textEmDash":"全角ダッシュ","Common.Views.SymbolTableDialog.textEmSpace":"全角スペース","Common.Views.SymbolTableDialog.textEnDash":"半角ダッシュ","Common.Views.SymbolTableDialog.textEnSpace":"半角スペース","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":"ラベルは空白にできません。","SSE.Controllers.DataTab.strSheet":"シート","SSE.Controllers.DataTab.textColumns":"列","SSE.Controllers.DataTab.textContinue":"続ける","SSE.Controllers.DataTab.textEmptyUrl":"URLを指定してください。","SSE.Controllers.DataTab.textRows":"行","SSE.Controllers.DataTab.textTurnOff":"自動アップデートをオフにする","SSE.Controllers.DataTab.textWizard":"テキスト区切り","SSE.Controllers.DataTab.txtContinue":"Continue","SSE.Controllers.DataTab.txtDataValidation":"データの入力規則","SSE.Controllers.DataTab.txtExpand":"拡張する","SSE.Controllers.DataTab.txtExpandRemDuplicates":"選択範囲の横のデータは削除されません。選択範囲を拡大して隣接するデータを含めるか、現在選択されているセルのみを続行しますか?","SSE.Controllers.DataTab.txtExtendDataValidation":"選択範囲には、データバリデーション設定のないセルがいくつか含まれています。
データバリデーションをこれらのセルに拡張しますか?","SSE.Controllers.DataTab.txtImportWizard":"テキスト取り込みウィザード","SSE.Controllers.DataTab.txtMaxFeasible":"The maximum number of feasible solutions was reached. Continue anyway?","SSE.Controllers.DataTab.txtMaxIterations":"The maximum iteration limit was reached. Continue anyway?","SSE.Controllers.DataTab.txtMaxSubproblem":"The maximum number of subproblems was reached. Continue anyway?","SSE.Controllers.DataTab.txtMaxTime":"The maximum time limit was reached. Continue anyway?","SSE.Controllers.DataTab.txtRemDuplicates":"重複データを削除","SSE.Controllers.DataTab.txtRemoveDataValidation":"選択には複数のタイプのバリデーションが含まれます。
現在の設定を消去して続行しますか?","SSE.Controllers.DataTab.txtRemSelected":"選択した範囲で削除する","SSE.Controllers.DataTab.txtStop":"Stop","SSE.Controllers.DataTab.txtTrialSolution":"Show trial solution","SSE.Controllers.DataTab.txtUrlTitle":"データのURLを貼り付け","SSE.Controllers.DocumentHolder.alignmentText":"配置","SSE.Controllers.DocumentHolder.centerText":"中央揃え","SSE.Controllers.DocumentHolder.deleteColumnText":"列を削除","SSE.Controllers.DocumentHolder.deleteRowText":"行を削除","SSE.Controllers.DocumentHolder.deleteText":"削除","SSE.Controllers.DocumentHolder.errorInvalidLink":"リンク参照が存在しません。 リンクを修正するか、ご削除ください。","SSE.Controllers.DocumentHolder.guestText":"ゲスト","SSE.Controllers.DocumentHolder.insertColumnLeftText":"左に列の挿入","SSE.Controllers.DocumentHolder.insertColumnRightText":"右に列の挿入","SSE.Controllers.DocumentHolder.insertRowAboveText":"行 (上)","SSE.Controllers.DocumentHolder.insertRowBelowText":"行(下)","SSE.Controllers.DocumentHolder.insertText":"挿入","SSE.Controllers.DocumentHolder.leftText":"左","SSE.Controllers.DocumentHolder.notcriticalErrorTitle":"警告","SSE.Controllers.DocumentHolder.rightText":"右","SSE.Controllers.DocumentHolder.textArgument":"Argument","SSE.Controllers.DocumentHolder.textAutoCorrectSettings":"オートコレクトの設定","SSE.Controllers.DocumentHolder.textChangeColumnWidth":"列の幅{0}記号({1}ピクセル)","SSE.Controllers.DocumentHolder.textChangeRowHeight":"行の高さ{0}ポイント({1}ピクセル)","SSE.Controllers.DocumentHolder.textCtrlClick":"リンク先に移動するには、クリックします。このセルを選択するには、マウスのボタンを押し続け、ポインターの形が変わったらマウスのボタンを離します。","SSE.Controllers.DocumentHolder.textInsertLeft":"左に挿入","SSE.Controllers.DocumentHolder.textInsertTop":"上に挿入","SSE.Controllers.DocumentHolder.textPasteSpecial":"特殊貼付け","SSE.Controllers.DocumentHolder.textStopExpand":"テーブルの自動拡を停止する","SSE.Controllers.DocumentHolder.textSym":"記号","SSE.Controllers.DocumentHolder.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Controllers.DocumentHolder.txtAboveAve":"平均より上","SSE.Controllers.DocumentHolder.txtAddBottom":"下罫線を追加","SSE.Controllers.DocumentHolder.txtAddFractionBar":"分数線を追加","SSE.Controllers.DocumentHolder.txtAddHor":"水平線を追加","SSE.Controllers.DocumentHolder.txtAddLB":"左下罫線を追加","SSE.Controllers.DocumentHolder.txtAddLeft":"左罫線を追加","SSE.Controllers.DocumentHolder.txtAddLT":"左上罫線を追加","SSE.Controllers.DocumentHolder.txtAddRight":"右罫線を追加","SSE.Controllers.DocumentHolder.txtAddTop":"上罫線を追加","SSE.Controllers.DocumentHolder.txtAddVer":"縦線を追加","SSE.Controllers.DocumentHolder.txtAlignToChar":"文字に合わせる","SSE.Controllers.DocumentHolder.txtAll":"(すべて)","SSE.Controllers.DocumentHolder.txtAllTableHint":"テーブルのすべての値、または、指定したテーブル列と列番号、データおよび集計行を返す","SSE.Controllers.DocumentHolder.txtAnd":"と","SSE.Controllers.DocumentHolder.txtBegins":"で始まる","SSE.Controllers.DocumentHolder.txtBelowAve":"平均より下​​","SSE.Controllers.DocumentHolder.txtBlanks":"(空白)","SSE.Controllers.DocumentHolder.txtBorderProps":"罫線の​​プロパティ","SSE.Controllers.DocumentHolder.txtBottom":"下","SSE.Controllers.DocumentHolder.txtByField":"%2分の%1","SSE.Controllers.DocumentHolder.txtColumn":"列","SSE.Controllers.DocumentHolder.txtColumnAlign":"列の配置","SSE.Controllers.DocumentHolder.txtContains":"含んでいる\t","SSE.Controllers.DocumentHolder.txtCopySuccess":"リンクがクリップボードにコピーされました","SSE.Controllers.DocumentHolder.txtDataTableHint":"テーブルまたは指定したテーブル列のデータセルを返す","SSE.Controllers.DocumentHolder.txtDecreaseArg":"引数のサイズの縮小","SSE.Controllers.DocumentHolder.txtDeleteArg":"引数を削除","SSE.Controllers.DocumentHolder.txtDeleteBreak":"手動ブレークを削除する","SSE.Controllers.DocumentHolder.txtDeleteChars":"囲まれた文字を削除","SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators":"開始文字、終了文字と区切り文字を削除","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.txtFilterTop":"上","SSE.Controllers.DocumentHolder.txtFormula":"数式","SSE.Controllers.DocumentHolder.txtFractionLinear":"分数(横)に変更","SSE.Controllers.DocumentHolder.txtFractionSkewed":"斜めの分数罫に変更","SSE.Controllers.DocumentHolder.txtFractionStacked":"分数(縦)に変更\t","SSE.Controllers.DocumentHolder.txtGreater":"次の値より大きい","SSE.Controllers.DocumentHolder.txtGreaterEquals":"次の値より大きいか等しい","SSE.Controllers.DocumentHolder.txtGroupCharOver":"テキストの上の文字","SSE.Controllers.DocumentHolder.txtGroupCharUnder":"テキストの下の文字","SSE.Controllers.DocumentHolder.txtHeadersTableHint":"テーブルまたは指定されたテーブルカラムのカラムヘッダを返す","SSE.Controllers.DocumentHolder.txtHeight":"高さ","SSE.Controllers.DocumentHolder.txtHideBottom":"下罫線を表示しない","SSE.Controllers.DocumentHolder.txtHideBottomLimit":"下限を表示しない","SSE.Controllers.DocumentHolder.txtHideCloseBracket":"右かっこを表示しない","SSE.Controllers.DocumentHolder.txtHideDegree":"次数を表示しない","SSE.Controllers.DocumentHolder.txtHideHor":"水平線を表示しない","SSE.Controllers.DocumentHolder.txtHideLB":"左(下)の線を表示しない","SSE.Controllers.DocumentHolder.txtHideLeft":"左罫線を表示しない","SSE.Controllers.DocumentHolder.txtHideLT":"左(上)の線を表示しない","SSE.Controllers.DocumentHolder.txtHideOpenBracket":"左かっこを表示しない","SSE.Controllers.DocumentHolder.txtHidePlaceholder":"プレースホルダを表示しない","SSE.Controllers.DocumentHolder.txtHideRight":"右罫線を表示しない","SSE.Controllers.DocumentHolder.txtHideTop":"上罫線を表示しない","SSE.Controllers.DocumentHolder.txtHideTopLimit":"上限を表示しない","SSE.Controllers.DocumentHolder.txtHideVer":"縦線を表示しない","SSE.Controllers.DocumentHolder.txtImportWizard":"テキストインポートウィザード","SSE.Controllers.DocumentHolder.txtIncreaseArg":"引数のサイズの拡大","SSE.Controllers.DocumentHolder.txtInsertArgAfter":"後に引数を挿入","SSE.Controllers.DocumentHolder.txtInsertArgBefore":"前に引数を挿入","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.txtOther":"その他","SSE.Controllers.DocumentHolder.txtOverbar":"テキストの上にバー","SSE.Controllers.DocumentHolder.txtPaste":"貼り付け","SSE.Controllers.DocumentHolder.txtPasteBorders":"罫線のない数式","SSE.Controllers.DocumentHolder.txtPasteColWidths":"数式と列幅","SSE.Controllers.DocumentHolder.txtPasteDestFormat":"貼り付け先の書式に合わせる","SSE.Controllers.DocumentHolder.txtPasteFormat":"書式のみ貼り付け","SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat":"数式と数値の書式","SSE.Controllers.DocumentHolder.txtPasteFormulas":"数式だけを貼り付ける","SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat":"数式と全ての書式","SSE.Controllers.DocumentHolder.txtPasteLink":"リンクを貼り付け","SSE.Controllers.DocumentHolder.txtPasteLinkPicture":"リンクされた画像","SSE.Controllers.DocumentHolder.txtPasteMerge":"条件付き書式を結合する","SSE.Controllers.DocumentHolder.txtPastePicture":"画像","SSE.Controllers.DocumentHolder.txtPasteSourceFormat":"ソースのフォーマット","SSE.Controllers.DocumentHolder.txtPasteTranspose":"入れ替える","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":"上付きの削除","SSE.Controllers.DocumentHolder.txtRowHeight":"行の高さ","SSE.Controllers.DocumentHolder.txtScriptsAfter":"テキストの後のスクリプト","SSE.Controllers.DocumentHolder.txtScriptsBefore":"テキストの前のスクリプト","SSE.Controllers.DocumentHolder.txtShowBottomLimit":"下限を表示する","SSE.Controllers.DocumentHolder.txtShowCloseBracket":"右かっこの表示","SSE.Controllers.DocumentHolder.txtShowDegree":"次数を表示する","SSE.Controllers.DocumentHolder.txtShowOpenBracket":"左かっこの表示","SSE.Controllers.DocumentHolder.txtShowPlaceholder":"プレースホルダーの表示","SSE.Controllers.DocumentHolder.txtShowTopLimit":"上限を表示する","SSE.Controllers.DocumentHolder.txtSorting":"並べ替え","SSE.Controllers.DocumentHolder.txtSortSelected":"選択した内容を並べ替える","SSE.Controllers.DocumentHolder.txtStretchBrackets":"かっこの拡大","SSE.Controllers.DocumentHolder.txtThisRowHint":"指定した列のこの行のみを選択","SSE.Controllers.DocumentHolder.txtTop":"上","SSE.Controllers.DocumentHolder.txtTotalsTableHint":"テーブルまたは指定したテーブル列の集計行を返す","SSE.Controllers.DocumentHolder.txtUnderbar":"テキストの下にバー","SSE.Controllers.DocumentHolder.txtUndoExpansion":"テーブルの自動拡をキャンセルする","SSE.Controllers.DocumentHolder.txtUseTextImport":"テキスト取り込みウィザードを使う","SSE.Controllers.DocumentHolder.txtValue":"値","SSE.Controllers.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、デバイスに害を及ぼす可能性があります。このまま続けますか?","SSE.Controllers.DocumentHolder.txtWidth":"幅","SSE.Controllers.DocumentHolder.warnFilterError":"値フィルターを適用するには、「値」範囲に少なくとも1つのフィールドが必要です。","SSE.Controllers.FormulaDialog.sCategoryAll":"すべて","SSE.Controllers.FormulaDialog.sCategoryCube":"立方体","SSE.Controllers.FormulaDialog.sCategoryCustom":"カスタム","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.sCategoryStatistical":"統計","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":"検索の範囲","SSE.Controllers.LeftMenu.textNoTextFound":"検索データが見つかりませんでした。他の検索設定を選択してください。","SSE.Controllers.LeftMenu.textReplaceSkipped":"置換が完了しました。{0}つスキップされました。","SSE.Controllers.LeftMenu.textReplaceSuccess":"検索完了しました。更新件数は、{0} です。","SSE.Controllers.LeftMenu.textSave":"保存","SSE.Controllers.LeftMenu.textSearch":"検索","SSE.Controllers.LeftMenu.textSelectPath":"ファイルのコピーを保存するパスを入力してください","SSE.Controllers.LeftMenu.textSheet":"シート","SSE.Controllers.LeftMenu.textValues":"値","SSE.Controllers.LeftMenu.textWarning":"警告","SSE.Controllers.LeftMenu.textWithin":"範囲","SSE.Controllers.LeftMenu.textWorkbook":"ブック","SSE.Controllers.LeftMenu.txtUntitled":"タイトルなし","SSE.Controllers.LeftMenu.warnDownloadAs":"この形式で保存し続ける場合は、テキスト以外のすべての機能が失われます。
続行してもよろしいですか?","SSE.Controllers.LeftMenu.warnDownloadCsv":"CSV形式は複数シートファイルおよびテキスト以外のすべての要素の保存をサポートしていません。
選択したシートのみをCSVに保存するには、OKを押してください。
スプレッドシート全体とすべての機能を保存するには、キャンセルをクリックして別の形式を選","SSE.Controllers.LeftMenu.warnDownloadCsvSheets":"CSV形式は複数シートファイルの保存をサポートしていません。
選択した形式を維持し、現在のシートだけを保存するには、Saveを押します。
現在のスプレッドシートを保存するには、Cancelをクリックして、別の形式で保存してください。","SSE.Controllers.LeftMenu.warnDownloadOds":"Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?","SSE.Controllers.Main.confirmAddCellWatches":"このアクションは {0} セル時計を追加します。
このまま続けますか?","SSE.Controllers.Main.confirmAddCellWatchesMax":"このアクションは、メモリ保存の理由によって {0} セルウォッチのみを追加します。
このまま続けますか?","SSE.Controllers.Main.confirmMaxChangesSize":"アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。","SSE.Controllers.Main.confirmMoveCellRange":"展開先のセルにはデータがあります。続けますか?","SSE.Controllers.Main.confirmPutMergeRange":"ソースデータは結合されたセルを含まれています。
テーブルに貼り付る前にマージを削除しました。","SSE.Controllers.Main.confirmReplaceFormulaInTable":"ヘーダ行の数式が削除されて、固定テキストに変換されます。続けてもよろしいですか?","SSE.Controllers.Main.confirmReplaceHFPicture":"ヘッダーの各セクションに挿入できる写真は1枚のみです。
「置き換える」を押すと、既存の画像を置き換えます。
「キープ」を押すと、既存の画像を保持します。","SSE.Controllers.Main.convertationTimeoutText":"変換のタイムアウトを超過しました。","SSE.Controllers.Main.criticalErrorExtText":"OKボタンを押すと文書リストに戻ります","SSE.Controllers.Main.criticalErrorExtTextClose":"[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":"権限のない操作を実行しようとしています。
ドキュメントサーバーの管理者にご連絡ください。","SSE.Controllers.Main.errorArgsRange":"入力した数式は正しくありません。
引数の範囲が正しくありません。","SSE.Controllers.Main.errorAutoFilterChange":"ワークシートの表内のセルをシフトしようとしているので、この操作は許可されません。","SSE.Controllers.Main.errorAutoFilterChangeFormatTable":"テーブルの一部を移動することはできないので、操作を実行することができません。
テーブル全体がシフトしたように、ほかのデータの範囲を選択し、もう一度お試しください。","SSE.Controllers.Main.errorAutoFilterDataRange":"選んだ範囲にこの操作を適用できません。
範囲内の1つのセルを選んでから、もう一度お試しください。","SSE.Controllers.Main.errorAutoFilterHiddenRange":"エリアをフィルタされたセルが含まれているので、操作を実行できません。
フィルタリングの要素を表示して、もう一度お試しください","SSE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません。","SSE.Controllers.Main.errorCalculatedItemInPageField":"項目を追加または変更できません。ピボットテーブルレポートのフィルタにこのフィールドがあります。","SSE.Controllers.Main.errorCannotPasteImg":"この画像はクリップボードから貼り付けることはできませんが、端末に保存してそこから挿入するか、\nテキストを含まない画像をコピーしてスプレッドシートに貼り付けることが可能です。","SSE.Controllers.Main.errorCannotUngroup":"グループ化を解除できません。 アウトラインを開始するには、詳細の行または列を選択してグループ化ください。","SSE.Controllers.Main.errorCannotUseCommandProtectedSheet":"このコマンドは、保護されたシートでは使用できません。このコマンドを使用するには、シートの保護を解除してください。
パスワードの入力を求められる場合があります。","SSE.Controllers.Main.errorChangeArray":"配列の一部を変更することはできません。","SSE.Controllers.Main.errorChangeFilteredRange":"これにより、ワークシートのフィルター範囲が変更されます。
このタスクを完了するには、オートフィルターをご削除ください。","SSE.Controllers.Main.errorChangeOnProtectedSheet":"変更しようとしているチャートには、保護されたシートにあります。変更するには保護を解除が必要です。パスワードの入力を要求されることもあります。","SSE.Controllers.Main.errorCircularReference":"数式が自分のセルを直接または間接的に参照する循環参照が1つ以上あります。
これらの参照を削除または変更するか、数式を別のセルに移動してみてください。","SSE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。今、文書を編集することができません。","SSE.Controllers.Main.errorConnectToServer":"文書を保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
OKボタンをクリックするとドキュメントをダウンロードするように求められます。","SSE.Controllers.Main.errorConvertXml":"
サポートされていない形式のファイルです。
XML Spreadsheet 2003形式のみ使用可能です。","SSE.Controllers.Main.errorCopyDisabled":"For security reasons, the contents of this document cannot be copied.","SSE.Controllers.Main.errorCopyMultiselectArea":"このコマンドを複数選択において使用することはできません。
単一の範囲を選択して、再ご試行ください。","SSE.Controllers.Main.errorCountArg":"入力した数式は正しくありません。
引数の数が一致していません。","SSE.Controllers.Main.errorCountArgExceed":"入力した数式は正しくありません。
引数の数を超過しました。","SSE.Controllers.Main.errorCreateDefName":"存在する名前付き範囲を編集することはできません。
今、範囲が編集されているので、新しい名前付き範囲を作成することはできません。","SSE.Controllers.Main.errorCreateRange":"既存のレンジは編集できず、新しいレンジは編集中のものがあるため、
現時点では作成することができません。","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.errorDependentsNoFormulas":"「参照先のトレース」コマンドで、アクティブセルを参照する数式が見つかりませんでした。","SSE.Controllers.Main.errorDirectUrl":"ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。","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":"ファイルサイズがサーバーで設定された制限を超過しています。
Documentサーバー管理者に詳細をお問い合わせください。","SSE.Controllers.Main.errorFileVKey":"外部エラーです。
セキュリティキーが正しくありません。この問題は解決しない場合は、サポートにお問い合わせください。","SSE.Controllers.Main.errorFillRange":"選択した範囲を塗りつぶせません。
\n結合されたセルは同じサイズである必要があります。","SSE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。コンピューターにファイルを保存するために、「名前を付けてダウンロード」を使用し、または後で再お試しください。","SSE.Controllers.Main.errorFormulaInPivotFieldName":"ピボットテーブルレポートの項目またはフィールド名に数式を入力できません。","SSE.Controllers.Main.errorFormulaName":"入力した数式は正しくありません。
数式の名前が正しくありません。","SSE.Controllers.Main.errorFormulaParsing":"数式を解析中に内部エラーが発生","SSE.Controllers.Main.errorFrmlMaxLength":"数式の長さが8192文字の制限を超えています。
編集して再びお試しください。","SSE.Controllers.Main.errorFrmlMaxReference":"値、
セル参照、名前が多すぎるため、この数式を入力できません。","SSE.Controllers.Main.errorFrmlMaxTextLength":"数式のテキスト値は255文字に制限されています。
コンカチネート関数または連結演算子(&)をご使用ください。","SSE.Controllers.Main.errorFrmlWrongReferences":"関数が存在しないシートを参照します。
データを確認して、もう一度お試しください。","SSE.Controllers.Main.errorFTChangeTableRangeError":"選択したセル範囲で操作を完了できませんでした。
最初のテーブルの行は同じ行にあったように、範囲をご選択ください。
新しいテーブル範囲が元のテーブル範囲に重なるようにしてください。","SSE.Controllers.Main.errorFTRangeIncludedOtherTables":"選択したセル範囲で操作を完了できませんでした。
他のテーブルが含まれていない範囲をご選択ください。","SSE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","SSE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","SSE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","SSE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","SSE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","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.errorLockedCellGoalSeek":"パラメータ選択プロセスに関与するセルの1つが、他のユーザーによって変更された。","SSE.Controllers.Main.errorLockedCellPivot":"ピボットテーブル内のデータを変更することはできません。","SSE.Controllers.Main.errorLockedCellSolver":"One of the cells involved in the Solver process has been modified by another user.","SSE.Controllers.Main.errorLockedWorksheetRename":"他のユーザーによって名前が変更されているのでシートの名前を変更することはできません。","SSE.Controllers.Main.errorMacroUnavailableWarning":"Cannot run the macro %1. The macro may not be available in this workbook or all macros may be disabled.","SSE.Controllers.Main.errorMaxPoints":"グラフごとの直列のポイントの最大数は4096です。","SSE.Controllers.Main.errorMoveRange":"結合されたセルの一部を変更することはできません。","SSE.Controllers.Main.errorMoveSlicerError":"テーブルスライサーをあるワークブックから別のワークブックにコピーすることはできません。
テーブル全体とスライサーを選択して、再ご試行ください。","SSE.Controllers.Main.errorMultiCellFormula":"複数セルの配列数式はテーブルでは使用できません。","SSE.Controllers.Main.errorNoDataToParse":"解析するデータが選択されていません。","SSE.Controllers.Main.errorNotUniqueFieldWithCalculated":"ピボットテーブルに計算された項目がある場合、フィールドをデータエリアで2回以上使用したり、データエリアと別のエリアで同時に使用したりすることはできません。","SSE.Controllers.Main.errorOpenWarning":"ファイル式の1つが8192文字の制限を超えています。
この式が削除されました。","SSE.Controllers.Main.errorOperandExpected":"入力した関数の構文が正しくありません。かっこ「(」または「)」のいずれかが欠落していないかどうかをご確認ください。","SSE.Controllers.Main.errorPasswordIsNotCorrect":"入力したパスワードは間違っています。
CapsLock キーがオフになっていることを確認し、大文字と小文字が正しく使われていることを確認してください。 ","SSE.Controllers.Main.errorPasteInPivot":"選択したセルに対してこの変更を行うことはできません。ピボットテーブルに影響を与えるためです。
フィールドリストを使用してレポートを変更してください。","SSE.Controllers.Main.errorPasteMaxRange":"コピーと貼り付けエリアが一致していません。
同じサイズの領域を選択するか、またはコピーしたセルを貼り付けるために行の最初のセルをクリックしてください。","SSE.Controllers.Main.errorPasteMultiSelect":"この操作は、複数の範囲を選択した場合には実行できません。
単一の範囲を選択して、再試行してください。","SSE.Controllers.Main.errorPasteSlicerError":"テーブルスライサーは、あるブックから別のブックにコピーすることはできません。","SSE.Controllers.Main.errorPivotFieldNameExists":"ピボットテーブルのフィールド名がすでに存在します。","SSE.Controllers.Main.errorPivotGroup":"その選択をグループ化できません。","SSE.Controllers.Main.errorPivotOverlap":"ピボットテーブルレポートにはテーブルを重ねることができません。","SSE.Controllers.Main.errorPivotWithoutUnderlying":"ピボットテーブルのレポートが、基礎となるデータなしで保存されました。
[更新]ボタンを使用して、レポートを更新します。","SSE.Controllers.Main.errorPrecedentsNoValidRef":"「参照元のトレース」コマンドは、アクティブなセルに有効な参照を含む数式が含まれている必要があります。","SSE.Controllers.Main.errorPrintMaxPagesCount":"残念ながら、現在のプログラムバージョンでは一度に1500ページを超える印刷はできません。
この制限は今後のリリースで削除される予定です。","SSE.Controllers.Main.errorProtectedRange":"この範囲は編集不可です。","SSE.Controllers.Main.errorSaveWatermark":"このファイルには、別のドメインにリンクされた透かし画像が含まれています。
PDFで見えるようにするには、文書と同じドメインからリンクされるように透かし画像を更新するか、コンピュータからアップロードしてください。","SSE.Controllers.Main.errorServerVersion":"エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。","SSE.Controllers.Main.errorSessionAbsolute":"ドキュメント編集セッションが終了しました。 ページを再度お読み込みください。","SSE.Controllers.Main.errorSessionIdle":"このドキュメントは長い間編集されていませんでした。このページを再度読み込んでください。","SSE.Controllers.Main.errorSessionToken":"サーバーとの接続が中断されました。このページを再度読み込んでください。","SSE.Controllers.Main.errorSetPassword":"パスワードを設定できませんでした。","SSE.Controllers.Main.errorSingleColumnOrRowError":"場所の参照が有効ではありません。すべてのセルが同じ行または列に含まれていません。
 すべてのセルが 1 つの行または列に含まれるように選択してください","SSE.Controllers.Main.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","SSE.Controllers.Main.errorToken":"ドキュメントセキュリティトークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。","SSE.Controllers.Main.errorTokenExpire":"ドキュメントセキュリティトークンの有効期限が切れています。
ドキュメントサーバーの管理者に連絡してください。","SSE.Controllers.Main.errorUnexpectedGuid":"外部エラーです。
予期しないGuidです。この問題は解決しない場合は、サポートにお問い合わせください。","SSE.Controllers.Main.errorUpdateVersion":"ファイルのバージョンが変更されました。ページが再ロードされます。","SSE.Controllers.Main.errorUpdateVersionOnDisconnect":"インターネット接続が復旧し、ファイルのバージョンが更新されました。
作業を継続する前に、ファイルをダウンロードするか、内容をコピーして、変更が消えてしまわないように確認してから、ページを再びお読み込みください。","SSE.Controllers.Main.errorUserDrop":"今、ファイルにアクセスすることはできません。","SSE.Controllers.Main.errorUsersExceed":"料金プランで許可されているユーザー数を超過しました。","SSE.Controllers.Main.errorViewerDisconnect":"接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。","SSE.Controllers.Main.errorWrongBracketsCount":"入力した数式は正しくありません。
かっこの数が正しくありません。","SSE.Controllers.Main.errorWrongOperator":"入力した数式は正しくありません。誤った演算子が使用されました。
エラーを確認して修正してください。または、数式の編集をキャンセルするためにESCボタンを使用してください。","SSE.Controllers.Main.errorWrongPassword":"パスワードが正しくありません。","SSE.Controllers.Main.errRemDuplicates":"削除した重複した数: {0}、残した一意の数: {1}","SSE.Controllers.Main.leavePageText":"このスプレッドシートの保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。","SSE.Controllers.Main.leavePageTextOnClose":"このスプレッドシートにある保存されていない変更が失われます。保存するように「キャンセル」クリックして「保存」クリックしてください。保存されていない変更を破棄ように「OK」をクリックしてください。","SSE.Controllers.Main.loadFontsTextText":"データを読み込んでいます...","SSE.Controllers.Main.loadFontsTitleText":"データを読み込んでいます","SSE.Controllers.Main.loadFontTextText":"データを読み込んでいます...","SSE.Controllers.Main.loadFontTitleText":"データを読み込んでいます","SSE.Controllers.Main.loadImagesTextText":"イメージを読み込み中...","SSE.Controllers.Main.loadImagesTitleText":"イメージを読み込み中","SSE.Controllers.Main.loadImageTextText":"イメージを読み込み中...","SSE.Controllers.Main.loadImageTitleText":"イメージを読み込み中","SSE.Controllers.Main.loadingDocumentTitleText":"スプレッドシートの読み込み中","SSE.Controllers.Main.notcriticalErrorTitle":" 警告","SSE.Controllers.Main.openErrorText":"ファイルを読み込み中にエラーが発生しました。","SSE.Controllers.Main.openTextText":"スプレッドシートを開いています...","SSE.Controllers.Main.openTitleText":"スプレッドシートを開いています","SSE.Controllers.Main.pastInMergeAreaError":"結合されたセルの一部を変更することはできません。","SSE.Controllers.Main.printTextText":"スプレッドシートの印刷...","SSE.Controllers.Main.printTitleText":"スプレッドシートの印刷","SSE.Controllers.Main.reloadButtonText":"ページの再読み込み","SSE.Controllers.Main.requestEditFailedMessageText":"この文書は他のユーザによって編集しています。後でもう一度試してみてください。","SSE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","SSE.Controllers.Main.saveErrorText":"ファイルを保存中にエラーが発生しました。","SSE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","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.textConnectionLost":"接続中です。接続設定をご確認ください。","SSE.Controllers.Main.textContactUs":"営業部に連絡する","SSE.Controllers.Main.textContinue":"続ける","SSE.Controllers.Main.textContinuesOpening":"File continues opening...","SSE.Controllers.Main.textConvertEquation":"この数式は、サポートされなくなった古いバージョンの数式エディタで作成されました。 編集するには、方程式をOffice Math ML形式に変換します。
今すぐ変換しますか?","SSE.Controllers.Main.textCustomLoader":"ライセンスの条件によっては、ローダーを変更する権利がないことにご注意ください。
見積もりについては、営業部門にお問い合わせください。","SSE.Controllers.Main.textDisconnect":"接続が切断されました ","SSE.Controllers.Main.textFillOtherRows":"他の列を埋める","SSE.Controllers.Main.textFormulaFilledAllRows":"{0}で埋められた数式列はデータが挿入されてます。他の空の列の挿入は数分かかる場合があります。","SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty":"数式は最初の{0}列で挿入されてます。他の空の列の挿入は数分かかる場合があります。","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData":"メモリ保存により数式で挿入されている最初の{0}列はデータが含めれています。このシート内にその他の{1}列にデータが含まれています。手動でそれらを入力が可能です。","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty":"メモリ保存により最初の{0}列は数式のみで挿入されています。このシートの他の列にはデータが含まれていません。","SSE.Controllers.Main.textGuest":"ゲスト","SSE.Controllers.Main.textHasMacros":"ファイルには自動マクロが含まれています。
マクロを実行しますか?","SSE.Controllers.Main.textKeep":"キープ","SSE.Controllers.Main.textLearnMore":"更に詳しく","SSE.Controllers.Main.textLoadingDocument":"スプレッドシートの読み込み中","SSE.Controllers.Main.textLongName":"128文字未満の名前を入力してください。","SSE.Controllers.Main.textNeedSynchronize":"更新があります。","SSE.Controllers.Main.textNo":"いいえ","SSE.Controllers.Main.textNoLicenseTitle":"ライセンス制限に達しました","SSE.Controllers.Main.textPaidFeature":"有料機能","SSE.Controllers.Main.textPleaseWait":"操作が予想以上に時間がかかります。しばらくお待ちください...","SSE.Controllers.Main.textReconnect":"接続が回復しました","SSE.Controllers.Main.textRemember":"すべてのファイルに選択を保存する","SSE.Controllers.Main.textRememberMacros":"すべてのマクロに、この選択を記憶する","SSE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","SSE.Controllers.Main.textRenameLabel":"コラボレーションに使用する名前を入力してください。","SSE.Controllers.Main.textReplace":"置き換え","SSE.Controllers.Main.textRequestMacros":"マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?","SSE.Controllers.Main.textShape":"図形","SSE.Controllers.Main.textStrict":"厳密なモード","SSE.Controllers.Main.textText":"テキスト","SSE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","SSE.Controllers.Main.textTryUndoRedo":"即時反映共同編集モードでは元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳密モード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。","SSE.Controllers.Main.textTryUndoRedoWarn":"即時反映の共同編集モードでは、元に戻す/やり直し機能が無効になります。","SSE.Controllers.Main.textUndo":"元に戻す","SSE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","SSE.Controllers.Main.textUpdating":"アップデート中","SSE.Controllers.Main.textYes":"はい","SSE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","SSE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","SSE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","SSE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","SSE.Controllers.Main.titleReadOnly":"閲覧専用モード","SSE.Controllers.Main.titleServerVersion":"エディターが更新された","SSE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","SSE.Controllers.Main.txtAccent":"アクセント","SSE.Controllers.Main.txtAll":"(すべて)","SSE.Controllers.Main.txtArt":"ここにテキストを入力してください","SSE.Controllers.Main.txtBasicShapes":"基本図形","SSE.Controllers.Main.txtBlank":"(空白)","SSE.Controllers.Main.txtButtons":"ボタン","SSE.Controllers.Main.txtByField":"%2 の %1","SSE.Controllers.Main.txtCallouts":"吹き出し","SSE.Controllers.Main.txtCharts":"グラフ","SSE.Controllers.Main.txtClearFilter":"フィルタをクリアする","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.txtInfo":"情報","SSE.Controllers.Main.txtLines":"線","SSE.Controllers.Main.txtMath":"数学","SSE.Controllers.Main.txtMinutes":"分","SSE.Controllers.Main.txtMonths":"月","SSE.Controllers.Main.txtMultiSelect":"複数選択","SSE.Controllers.Main.txtNone":"なし","SSE.Controllers.Main.txtOpen":"開く","SSE.Controllers.Main.txtOr":"%1か%2","SSE.Controllers.Main.txtPage":"ページ","SSE.Controllers.Main.txtPageOf":"1%/2%ページ","SSE.Controllers.Main.txtPages":"ページ","SSE.Controllers.Main.txtPicture":"画像","SSE.Controllers.Main.txtPivotTable":"ピボットテーブル","SSE.Controllers.Main.txtPreparedBy":"作成者:","SSE.Controllers.Main.txtPrintArea":"印刷範囲","SSE.Controllers.Main.txtQuarter":"四半期","SSE.Controllers.Main.txtQuarters":"四半期","SSE.Controllers.Main.txtRectangles":"四角形","SSE.Controllers.Main.txtRow":"行","SSE.Controllers.Main.txtRowLbls":"行ラベル","SSE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","SSE.Controllers.Main.txtScheme_Aspect":"アスペクト","SSE.Controllers.Main.txtScheme_Blue":"青色","SSE.Controllers.Main.txtScheme_Blue_Green":"ブルーグリーン","SSE.Controllers.Main.txtScheme_Blue_II":"青色II","SSE.Controllers.Main.txtScheme_Blue_Warm":"ブルーウォーム","SSE.Controllers.Main.txtScheme_Grayscale":"グレースケール","SSE.Controllers.Main.txtScheme_Green":"緑色","SSE.Controllers.Main.txtScheme_Green_Yellow":"黄緑色","SSE.Controllers.Main.txtScheme_Marquee":"マーキー","SSE.Controllers.Main.txtScheme_Median":"中位数","SSE.Controllers.Main.txtScheme_Office":"Office","SSE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","SSE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","SSE.Controllers.Main.txtScheme_Orange":"オレンジ色","SSE.Controllers.Main.txtScheme_Orange_Red":"オレンジ赤色","SSE.Controllers.Main.txtScheme_Paper":"紙","SSE.Controllers.Main.txtScheme_Red":"赤色","SSE.Controllers.Main.txtScheme_Red_Orange":"オレンジ赤色","SSE.Controllers.Main.txtScheme_Red_Violet":"赤紫色","SSE.Controllers.Main.txtScheme_Slipstream":"スリップストリーム","SSE.Controllers.Main.txtScheme_Violet":"バイオレット色","SSE.Controllers.Main.txtScheme_Violet_II":"バイオレット II","SSE.Controllers.Main.txtScheme_Yellow":"黄色","SSE.Controllers.Main.txtScheme_Yellow_Orange":"オレンジ黄色","SSE.Controllers.Main.txtSeconds":"秒","SSE.Controllers.Main.txtSeries":"系列","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_actionButtonSound":"「音」ボタン","SSE.Controllers.Main.txtShape_arc":"円弧","SSE.Controllers.Main.txtShape_bentArrow":"曲線の矢印","SSE.Controllers.Main.txtShape_bentConnector5":"カギ線コネクター","SSE.Controllers.Main.txtShape_bentConnector5WithArrow":"カギ線矢印コネクター","SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"カギ線の二重矢印コネクター","SSE.Controllers.Main.txtShape_bentUpArrow":"曲線の矢印(上)","SSE.Controllers.Main.txtShape_bevel":"額縁","SSE.Controllers.Main.txtShape_blockArc":"アーチ","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":"角","SSE.Controllers.Main.txtShape_cube":"立方体","SSE.Controllers.Main.txtShape_curvedConnector3":"曲線コネクタ","SSE.Controllers.Main.txtShape_curvedConnector3WithArrow":"曲線矢印コネクタ","SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows":"曲線の二重矢印コネクタ","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":"12角形","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":"半フレーム","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":"爆発 1","SSE.Controllers.Main.txtShape_irregularSeal2":"爆発 2","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":"1つの角を丸めた四角形","SSE.Controllers.Main.txtShape_round2DiagRect":"対角する 2 つの角を丸めた四角形","SSE.Controllers.Main.txtShape_round2SameRect":"片側の 2 つの角を丸めた四角形","SSE.Controllers.Main.txtShape_roundRect":"角を丸めた四角形","SSE.Controllers.Main.txtShape_rtTriangle":"直角三角形","SSE.Controllers.Main.txtShape_smileyFace":"スマイル","SSE.Controllers.Main.txtShape_snip1Rect":"1つの角を切り取った四角形","SSE.Controllers.Main.txtShape_snip2DiagRect":"対角する2つの角を切り取った四角形","SSE.Controllers.Main.txtShape_snip2SameRect":"片側の2つの角を切り取った四角形","SSE.Controllers.Main.txtShape_snipRoundRect":"1つの角を切り取り1つの角を丸めた四角形","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.txtShape_stripedRightArrow":"ストライプの右矢印","SSE.Controllers.Main.txtShape_sun":"太陽形","SSE.Controllers.Main.txtShape_teardrop":"滴","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_wave":"波","SSE.Controllers.Main.txtShape_wedgeEllipseCallout":"円形吹き出し","SSE.Controllers.Main.txtShape_wedgeRectCallout":"長方形の吹き出し","SSE.Controllers.Main.txtShape_wedgeRoundRectCallout":"角丸長方形の引き出し","SSE.Controllers.Main.txtSheet":"シート","SSE.Controllers.Main.txtSlicer":"スライサー","SSE.Controllers.Main.txtSolverLookingSolution":"Solver is finding a solution.","SSE.Controllers.Main.txtStarsRibbons":"スター&リボン","SSE.Controllers.Main.txtStyle_Bad":"悪い","SSE.Controllers.Main.txtStyle_Calculation":"計算","SSE.Controllers.Main.txtStyle_Check_Cell":"チェックセル","SSE.Controllers.Main.txtStyle_Comma":"カンマ","SSE.Controllers.Main.txtStyle_Currency":"通貨","SSE.Controllers.Main.txtStyle_Explanatory_Text":"説明文","SSE.Controllers.Main.txtStyle_Good":"良い","SSE.Controllers.Main.txtStyle_Heading_1":"見出し1","SSE.Controllers.Main.txtStyle_Heading_2":"見出し2","SSE.Controllers.Main.txtStyle_Heading_3":"見出し3","SSE.Controllers.Main.txtStyle_Heading_4":"見出し4","SSE.Controllers.Main.txtStyle_Input":"入力","SSE.Controllers.Main.txtStyle_Linked_Cell":"リンクされたセル","SSE.Controllers.Main.txtStyle_Neutral":"ニュートラル","SSE.Controllers.Main.txtStyle_Normal":"標準","SSE.Controllers.Main.txtStyle_Note":"注意","SSE.Controllers.Main.txtStyle_Output":"出力","SSE.Controllers.Main.txtStyle_Percent":"パーセント","SSE.Controllers.Main.txtStyle_Title":"表題","SSE.Controllers.Main.txtStyle_Total":"合計","SSE.Controllers.Main.txtStyle_Warning_Text":"警告テキスト","SSE.Controllers.Main.txtTab":"タブ","SSE.Controllers.Main.txtTable":"表","SSE.Controllers.Main.txtTime":"時刻","SSE.Controllers.Main.txtUnlock":"ロックを解除する","SSE.Controllers.Main.txtUnlockRange":"範囲のロック解除","SSE.Controllers.Main.txtUnlockRangeDescription":"範囲を変更するようにパスワードを入力してください","SSE.Controllers.Main.txtUnlockRangeWarning":"変更しようとしている範囲がパスワードで保護されています。","SSE.Controllers.Main.txtValues":"値","SSE.Controllers.Main.txtView":"表示","SSE.Controllers.Main.txtXAxis":"X 軸","SSE.Controllers.Main.txtYAxis":"Y軸","SSE.Controllers.Main.txtYears":"年","SSE.Controllers.Main.unknownErrorText":"不明なエラー","SSE.Controllers.Main.unsupportedBrowserErrorText":"お使いのブラウザがサポートされていません。","SSE.Controllers.Main.uploadDocExtMessage":"不明な文書形式","SSE.Controllers.Main.uploadDocFileCountMessage":"アップロードされた文書がありません","SSE.Controllers.Main.uploadDocSizeMessage":"文書の最大サイズ制限を超えました","SSE.Controllers.Main.uploadImageExtMessage":"不明な画像形式","SSE.Controllers.Main.uploadImageFileCountMessage":"アップロードした画像なし","SSE.Controllers.Main.uploadImageSizeMessage":"イメージのサイズの上限が超えさせました。サイズの上限が25MB。","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.warnExternalChartProtected":"このチャートは外部ファイルのデータに基づいています。このウィンドウでは、チャートに表示するデータを選択することしかできません。スプレッドシートを編集するには、スプレッドシートエディタで開いてください。","SSE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","SSE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","SSE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページを再読み込みしてください。","SSE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","SSE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください","SSE.Controllers.Main.warnModifyFilter":"You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.","SSE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","SSE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。","SSE.Controllers.Main.warnOpenCsv":"CSV形式は複数シートファイルやテキスト以外の要素の保存をサポートしていません。
アクティブなシートのみが保存されます。","SSE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","SSE.Controllers.PivotTable.strSheet":"シート","SSE.Controllers.PivotTable.txtCalculatedItemInPageField":"項目を追加または変更できません。ピボットテーブルレポートのフィルタにこのフィールドがあります。","SSE.Controllers.PivotTable.txtCalculatedItemWarningDefault":"このアクティブセルでは、計算項目に対する操作は許可されていません。","SSE.Controllers.PivotTable.txtNotUniqueFieldWithCalculated":"ピボットテーブルに計算された項目がある場合、フィールドをデータエリアで2回以上使用したり、データエリアと別のエリアで同時に使用したりすることはできません。","SSE.Controllers.PivotTable.txtPivotFieldCustomSubtotalsWithCalculatedItems":"計算項目はカスタム小計では動作しません。","SSE.Controllers.PivotTable.txtPivotItemNameNotFound":"項目名が見つかりません。名前が正しく入力されているか確認し、その項目がピボットテーブルレポートに存在しているか確認してください。","SSE.Controllers.PivotTable.txtWrongDataFieldSubtotalForCalculatedItems":"ピボットテーブルレポートで計算された項目がある場合、平均、標準偏差、分散はサポートされません。","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.txtCustom":"ユーザー設定","SSE.Controllers.Print.txtZoomToPage":"ページ全体に合わせる","SSE.Controllers.Search.textInvalidRange":"エラー!セルの範囲が正しくありません","SSE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","SSE.Controllers.Search.textReplaceSkipped":"置換が行われました。スキップされた発生回数は{0}です。","SSE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました","SSE.Controllers.Statusbar.errNameExists":"指定された名前のワークシートが既に存在します。","SSE.Controllers.Statusbar.errorLastSheet":"最低 1 つのワークシートが含まれていなければなりません。","SSE.Controllers.Statusbar.errorRemoveSheet":"ワークシートを削除することができません。","SSE.Controllers.Statusbar.errSheetNameRules":"無効なシート名を入力しました:
- シート名は空にできません。
- シート名には次の文字を含めることができません:\\ / * ? [ ] : または最初や最後の文字として ' を使用することはできません。","SSE.Controllers.Statusbar.strSheet":"シート","SSE.Controllers.Statusbar.textContinue":"続ける","SSE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","SSE.Controllers.Statusbar.textSheetViewTip":"シートビューモードになっています。 フィルタと並べ替えは、あなたとまだこのビューにいる人だけに表示されます。","SSE.Controllers.Statusbar.textSheetViewTipFilters":"シート表示モードになっています。 フィルタは、あなたとまだこの表示にいる人だけに表示されます。","SSE.Controllers.Statusbar.warnAddSheetCsv":"CSV形式では複数シートのファイルの保存をサポートしていません。アクティブなシートのみが保存されます。すべてのシートを保持するには、別の形式でファイルを保存してください。","SSE.Controllers.Statusbar.warnDeleteSheet":"選択したシートにはデータが含まれている可能性があります。続行してもよろしいですか?","SSE.Controllers.Statusbar.zoomText":"ズーム{0}%","SSE.Controllers.TableDesignTab.notcriticalErrorTitle":"警告","SSE.Controllers.TableDesignTab.textExistName":"エラー!すでに同じ名前がある範囲も存在しています。","SSE.Controllers.TableDesignTab.textInvalidName":"エラー!表の名前が正しくありません。","SSE.Controllers.TableDesignTab.textIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Controllers.TableDesignTab.textLongOperation":"長時間の操作","SSE.Controllers.TableDesignTab.textReservedName":"使用しようとしている名前は、既にセルの数式で参照されています。他の名前を使用してください。","SSE.Controllers.TableDesignTab.textResize":"テーブルのサイズ変更","SSE.Controllers.TableDesignTab.warnLongOperation":"実行しようとしている操作は、完了するまでにかなり時間がかかる可能性があります。
続行しますか?","SSE.Controllers.Toolbar.confirmAddFontName":"保存しようとしているフォントを現在のデバイスで使用することができません。
システムフォントを使って、テキストのスタイルが表示されます。利用できます時、保存されたフォントが使用されます。
続行しますか。","SSE.Controllers.Toolbar.errorComboSeries":"組み合わせグラフを作成するには、最低2つのデータを選択します。","SSE.Controllers.Toolbar.errorMaxPoints":"グラフごとの直列のポイントの最大数は4096です。","SSE.Controllers.Toolbar.errorMaxRows":"エラー!使用可能なデータ系列の数は、1グラフあたり最大255個です。","SSE.Controllers.Toolbar.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","SSE.Controllers.Toolbar.helpChartElements":"Easily toggle the visibility of chart elements with several clicks.","SSE.Controllers.Toolbar.helpChartElementsHeader":"Chart elements display","SSE.Controllers.Toolbar.helpCommentFilter":"Manage your view by toggling between open and resolved comments in the left panel.","SSE.Controllers.Toolbar.helpCommentFilterHeader":"Comment filters","SSE.Controllers.Toolbar.helpRtlDir":"Adjust the text direction for cells to align with your content needs.","SSE.Controllers.Toolbar.helpRtlDirHeader":"Cell text direction","SSE.Controllers.Toolbar.helpTableTab":"Access all formatted table settings conveniently in the dedicated Table Design tab.","SSE.Controllers.Toolbar.helpTableTabHeader":"Table Design tab","SSE.Controllers.Toolbar.textAccent":"ダイアクリティカル・マーク","SSE.Controllers.Toolbar.textBracket":"括弧","SSE.Controllers.Toolbar.textDirectional":"方向","SSE.Controllers.Toolbar.textFontSizeErr":"入力された値が正しくありません。
1〜409の数値を入力してください。","SSE.Controllers.Toolbar.textFraction":"分数","SSE.Controllers.Toolbar.textFunction":"関数","SSE.Controllers.Toolbar.textIndicator":"インジケーター","SSE.Controllers.Toolbar.textInsert":"挿入","SSE.Controllers.Toolbar.textIntegral":"積分","SSE.Controllers.Toolbar.textLargeOperator":"大型演算子","SSE.Controllers.Toolbar.textLimitAndLog":"極限と対数","SSE.Controllers.Toolbar.textLongOperation":"長時間の操作","SSE.Controllers.Toolbar.textMatrix":"行列","SSE.Controllers.Toolbar.textOperator":"演算子","SSE.Controllers.Toolbar.textPasteSpecial":"Paste special","SSE.Controllers.Toolbar.textPivot":"ピボットテーブル","SSE.Controllers.Toolbar.textRadical":"冪根","SSE.Controllers.Toolbar.textRating":"評価","SSE.Controllers.Toolbar.textRecentlyUsed":"最近使った項目","SSE.Controllers.Toolbar.textScript":"スクリプト","SSE.Controllers.Toolbar.textShapes":"図形","SSE.Controllers.Toolbar.textSymbols":"記号と特殊文字","SSE.Controllers.Toolbar.textWarning":"警告","SSE.Controllers.Toolbar.txtAccent_Accent":"アキュート","SSE.Controllers.Toolbar.txtAccent_ArrowD":"左右双方向矢印 (上)","SSE.Controllers.Toolbar.txtAccent_ArrowL":"左に矢印 (上)","SSE.Controllers.Toolbar.txtAccent_ArrowR":"右向き矢印 (上)","SSE.Controllers.Toolbar.txtAccent_Bar":"横棒グラフ","SSE.Controllers.Toolbar.txtAccent_BarBot":"下の棒","SSE.Controllers.Toolbar.txtAccent_BarTop":"上の棒","SSE.Controllers.Toolbar.txtAccent_BorderBox":"四角囲み数式 (プレースホルダ付き)","SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"四角囲み数式 (例)","SSE.Controllers.Toolbar.txtAccent_Check":"チェック","SSE.Controllers.Toolbar.txtAccent_CurveBracketBot":"下かっこ","SSE.Controllers.Toolbar.txtAccent_CurveBracketTop":"上かっこ","SSE.Controllers.Toolbar.txtAccent_Custom_1":"ベクトル A","SSE.Controllers.Toolbar.txtAccent_Custom_2":"上線付きABC","SSE.Controllers.Toolbar.txtAccent_Custom_3":"x XORと上線","SSE.Controllers.Toolbar.txtAccent_DDDot":"3重ドット","SSE.Controllers.Toolbar.txtAccent_DDot":"二重ドット","SSE.Controllers.Toolbar.txtAccent_Dot":"点","SSE.Controllers.Toolbar.txtAccent_DoubleBar":"二重上線","SSE.Controllers.Toolbar.txtAccent_Grave":"グレーブ・アクセント","SSE.Controllers.Toolbar.txtAccent_GroupBot":"グループ化文字(下)","SSE.Controllers.Toolbar.txtAccent_GroupTop":"グループ化文字(上)","SSE.Controllers.Toolbar.txtAccent_HarpoonL":"左半矢印(上)","SSE.Controllers.Toolbar.txtAccent_HarpoonR":"右向き半矢印 (上)","SSE.Controllers.Toolbar.txtAccent_Hat":"ハット","SSE.Controllers.Toolbar.txtAccent_Smile":"ブリーブ","SSE.Controllers.Toolbar.txtAccent_Tilde":"チルダ","SSE.Controllers.Toolbar.txtBracket_Angle":"括弧","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"括弧と区切り記号","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"括弧と区切り記号","SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"終わり山かっこ","SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"単一かっこ","SSE.Controllers.Toolbar.txtBracket_Curve":"括弧","SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"括弧と区切り記号","SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"右中かっこ","SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"単一かっこ","SSE.Controllers.Toolbar.txtBracket_Custom_1":"場合分け(条件2つ)","SSE.Controllers.Toolbar.txtBracket_Custom_2":"場合分け (条件3つ)","SSE.Controllers.Toolbar.txtBracket_Custom_3":"縦並びオブジェクト","SSE.Controllers.Toolbar.txtBracket_Custom_4":"縦並びオブジェクト (かっこ付き)","SSE.Controllers.Toolbar.txtBracket_Custom_5":"場合分けの例","SSE.Controllers.Toolbar.txtBracket_Custom_6":"二項係数","SSE.Controllers.Toolbar.txtBracket_Custom_7":"二項係数","SSE.Controllers.Toolbar.txtBracket_Line":"縦棒","SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"縦棒 (右のみ)","SSE.Controllers.Toolbar.txtBracket_Line_OpenNone":"縦棒 (左のみ)","SSE.Controllers.Toolbar.txtBracket_LineDouble":"括弧","SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"二重縦棒 (右のみ)","SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"二重縦棒 (左のみ)","SSE.Controllers.Toolbar.txtBracket_LowLim":"括弧","SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"床関数 (右記号)","SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"床関数 (左記号)","SSE.Controllers.Toolbar.txtBracket_Round":"括弧","SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"括弧と区切り記号","SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"右かっこ","SSE.Controllers.Toolbar.txtBracket_Round_OpenNone":"左かっこ","SSE.Controllers.Toolbar.txtBracket_Square":"大かっこ","SSE.Controllers.Toolbar.txtBracket_Square_CloseClose":"右の角括弧の間のプレースホルダー","SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"反転した角括弧","SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"右角かっこ","SSE.Controllers.Toolbar.txtBracket_Square_OpenNone":"左角かっこ","SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"左の角括弧の間のプレースホルダー","SSE.Controllers.Toolbar.txtBracket_SquareDouble":"括弧","SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"右ダブル角型かっこ","SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"左ダブル角型かっこ","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.txtFormula":"Formula","SSE.Controllers.Toolbar.txtFractionDiagonal":"分数 (斜め)","SSE.Controllers.Toolbar.txtFractionDifferential_1":"微分","SSE.Controllers.Toolbar.txtFractionDifferential_2":"微分","SSE.Controllers.Toolbar.txtFractionDifferential_3":"部分的なxに対する部分的なy","SSE.Controllers.Toolbar.txtFractionDifferential_4":"微分","SSE.Controllers.Toolbar.txtFractionHorizontal":"分数 (横)","SSE.Controllers.Toolbar.txtFractionPi_2":"円周率を2で割る","SSE.Controllers.Toolbar.txtFractionSmall":"分数 (小)","SSE.Controllers.Toolbar.txtFractionVertical":"分数 (縦)","SSE.Controllers.Toolbar.txtFunction_1_Cos":"逆余弦関数","SSE.Controllers.Toolbar.txtFunction_1_Cosh":"逆双曲線余弦","SSE.Controllers.Toolbar.txtFunction_1_Cot":"逆余接関数","SSE.Controllers.Toolbar.txtFunction_1_Coth":"双曲線逆余接","SSE.Controllers.Toolbar.txtFunction_1_Csc":"逆余割関数","SSE.Controllers.Toolbar.txtFunction_1_Csch":"逆双曲線余割関数","SSE.Controllers.Toolbar.txtFunction_1_Sec":"逆正割関数","SSE.Controllers.Toolbar.txtFunction_1_Sech":"逆双曲線正割","SSE.Controllers.Toolbar.txtFunction_1_Sin":"逆正弦関数","SSE.Controllers.Toolbar.txtFunction_1_Sinh":"双曲線逆正弦関数","SSE.Controllers.Toolbar.txtFunction_1_Tan":"逆正接関数","SSE.Controllers.Toolbar.txtFunction_1_Tanh":"双曲線逆正接関数","SSE.Controllers.Toolbar.txtFunction_Cos":"余弦関数","SSE.Controllers.Toolbar.txtFunction_Cosh":"双曲線余弦関数","SSE.Controllers.Toolbar.txtFunction_Cot":"余接関数","SSE.Controllers.Toolbar.txtFunction_Coth":"双曲線余接関数","SSE.Controllers.Toolbar.txtFunction_Csc":"余割関数\t","SSE.Controllers.Toolbar.txtFunction_Csch":"双曲線余割関数","SSE.Controllers.Toolbar.txtFunction_Custom_1":"Sin θ","SSE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","SSE.Controllers.Toolbar.txtFunction_Custom_3":"正接数式","SSE.Controllers.Toolbar.txtFunction_Sec":"正割関数","SSE.Controllers.Toolbar.txtFunction_Sech":"双曲線正割関数","SSE.Controllers.Toolbar.txtFunction_Sin":"正弦関数","SSE.Controllers.Toolbar.txtFunction_Sinh":"双曲線正弦関数","SSE.Controllers.Toolbar.txtFunction_Tan":"逆正接関数","SSE.Controllers.Toolbar.txtFunction_Tanh":"双曲線正接関数","SSE.Controllers.Toolbar.txtGroupCell_Custom":"ユーザー設定","SSE.Controllers.Toolbar.txtGroupCell_DataAndModel":"データとモデル","SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral":"良い、悪い、どちらでもない","SSE.Controllers.Toolbar.txtGroupCell_NoName":"名前なし","SSE.Controllers.Toolbar.txtGroupCell_NumberFormat":"数値の書式","SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles":"テーマのセル スタイル","SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings":"タイトルと見出し","SSE.Controllers.Toolbar.txtGroupTable_Custom":"ユーザー設定","SSE.Controllers.Toolbar.txtGroupTable_Dark":"ダーク","SSE.Controllers.Toolbar.txtGroupTable_Light":"ライト","SSE.Controllers.Toolbar.txtGroupTable_Medium":"中","SSE.Controllers.Toolbar.txtImportWizard":"Text Import","SSE.Controllers.Toolbar.txtInsertCells":"セルを挿入","SSE.Controllers.Toolbar.txtIntegral":"積分","SSE.Controllers.Toolbar.txtIntegral_dtheta":"微分 dθ","SSE.Controllers.Toolbar.txtIntegral_dx":"微分dx","SSE.Controllers.Toolbar.txtIntegral_dy":"微分 dy","SSE.Controllers.Toolbar.txtIntegralCenterSubSup":"積分","SSE.Controllers.Toolbar.txtIntegralDouble":"二重積分","SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"二重積分","SSE.Controllers.Toolbar.txtIntegralDoubleSubSup":"二重積分","SSE.Controllers.Toolbar.txtIntegralOriented":"周回積分","SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"周回積分","SSE.Controllers.Toolbar.txtIntegralOrientedDouble":"面積分","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"面積分 (上下端値を上下に配置)","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"面積分 (上下端値あり)","SSE.Controllers.Toolbar.txtIntegralOrientedSubSup":"周回積分","SSE.Controllers.Toolbar.txtIntegralOrientedTriple":"体積積分","SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"体積積分 (上下端値を上下に配置)","SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"体積積分 (上下端値あり)","SSE.Controllers.Toolbar.txtIntegralSubSup":"積分","SSE.Controllers.Toolbar.txtIntegralTriple":"三重積分","SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"三重積分 (上下端値を上下に配置)","SSE.Controllers.Toolbar.txtIntegralTripleSubSup":"三重積分 (上下端値あり)","SSE.Controllers.Toolbar.txtInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Controllers.Toolbar.txtKeepTextOnly":"Keep text only","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction":"論理積","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"論理積 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"論理積 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"論理積 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"論理積 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_CoProd":"余積","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"下端付き余積","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"極限付き余積","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"下端下付き双対積","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"上下付き極限付き双対積","SSE.Controllers.Toolbar.txtLargeOperator_Custom_1":"n から k を選ぶ場合の k の総和","SSE.Controllers.Toolbar.txtLargeOperator_Custom_2":"総和 (i = 0 から n まで)","SSE.Controllers.Toolbar.txtLargeOperator_Custom_3":"添え字 2 個を使う総和の例","SSE.Controllers.Toolbar.txtLargeOperator_Custom_4":"積の例","SSE.Controllers.Toolbar.txtLargeOperator_Custom_5":"和集合の例","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction":"論理和","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"論理和 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"論理和 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"論理和 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"論理和 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Intersection":"共通集合","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"積集合 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"積集合 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"積集合 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"積集合 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Prod":"乗積","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"積 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"積 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"積 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"積 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Sum":"合計","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"総和 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"総和 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"総和 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"総和 (上付き/下付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Union":"和集合","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"和集合 (下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"和集合 (上下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub":"和集合 (下付き文字の下端値あり)","SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup":"和集合 (下付き/上付き文字の上下端値あり)","SSE.Controllers.Toolbar.txtLimitLog_Custom_1":"極限の例","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":"最大","SSE.Controllers.Toolbar.txtLimitLog_Min":"最小","SSE.Controllers.Toolbar.txtLockSort":"選択の範囲の近くにデータが見つけられたけどこのセルを変更するに十分なアクセス許可がありません。
選択の範囲を続行してもよろしいですか?","SSE.Controllers.Toolbar.txtMatrix_1_2":"1x2空行列","SSE.Controllers.Toolbar.txtMatrix_1_3":"1x3空行列","SSE.Controllers.Toolbar.txtMatrix_2_1":"2x1 空行列","SSE.Controllers.Toolbar.txtMatrix_2_2":"2x2 空行列","SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"かっこ付き空行列","SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"かっこ付き空行列","SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"かっこ付き空行列","SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"かっこ付き空行列","SSE.Controllers.Toolbar.txtMatrix_2_3":"2x3 空行列","SSE.Controllers.Toolbar.txtMatrix_3_1":"3x1 空行列","SSE.Controllers.Toolbar.txtMatrix_3_2":"3x2 空行列","SSE.Controllers.Toolbar.txtMatrix_3_3":"3x3 空行列","SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"ベースライン ドット","SSE.Controllers.Toolbar.txtMatrix_Dots_Center":"ミッドライン・ドット","SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal":"斜めドット","SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical":"縦向きドット","SSE.Controllers.Toolbar.txtMatrix_Flat_Round":"疎行列 (かっこ付き)","SSE.Controllers.Toolbar.txtMatrix_Flat_Square":"疎行列 (大かっこ付き)","SSE.Controllers.Toolbar.txtMatrix_Identity_2":"2x2 単位行列","SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"3x3 単位行列","SSE.Controllers.Toolbar.txtMatrix_Identity_3":"3x3 単位行列","SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"3x3 単位行列","SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"左右双方向矢印 (下)","SSE.Controllers.Toolbar.txtOperator_ArrowD_Top":"左右双方向矢印 (上)","SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"左に矢印 (下)","SSE.Controllers.Toolbar.txtOperator_ArrowL_Top":"左に矢印 (上)","SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"右向き矢印 (下)","SSE.Controllers.Toolbar.txtOperator_ArrowR_Top":"右向き矢印 (上)","SSE.Controllers.Toolbar.txtOperator_ColonEquals":"コロン付き等号","SSE.Controllers.Toolbar.txtOperator_Custom_1":"導出","SSE.Controllers.Toolbar.txtOperator_Custom_2":"誤差導出","SSE.Controllers.Toolbar.txtOperator_Definition":"定義により等しい","SSE.Controllers.Toolbar.txtOperator_DeltaEquals":"デルタは等しい","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"左右双方向矢印 (下)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"左右双方向矢印 (上)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"左に矢印 (下)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"左に矢印 (上)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"右向き矢印 (下)","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"右向き矢印 (上)","SSE.Controllers.Toolbar.txtOperator_EqualsEquals":"等号等号","SSE.Controllers.Toolbar.txtOperator_MinusEquals":"マイナス付き等号","SSE.Controllers.Toolbar.txtOperator_PlusEquals":"プラス付き等号","SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"測度","SSE.Controllers.Toolbar.txtOther":"Other","SSE.Controllers.Toolbar.txtPaste":"Paste","SSE.Controllers.Toolbar.txtPasteBorders":"Formula without borders","SSE.Controllers.Toolbar.txtPasteColWidths":"Formula + column width","SSE.Controllers.Toolbar.txtPasteDestFormat":"Destination formatting","SSE.Controllers.Toolbar.txtPasteFormat":"Paste only formatting","SSE.Controllers.Toolbar.txtPasteFormulaNumFormat":"Formula + number format","SSE.Controllers.Toolbar.txtPasteFormulas":"Paste only formula","SSE.Controllers.Toolbar.txtPasteKeepSourceFormat":"Formula + all formatting","SSE.Controllers.Toolbar.txtPasteLink":"Paste link","SSE.Controllers.Toolbar.txtPasteLinkPicture":"Linked picture","SSE.Controllers.Toolbar.txtPasteMerge":"Merge conditional formatting","SSE.Controllers.Toolbar.txtPasteNoOptions":"Paste (P)","SSE.Controllers.Toolbar.txtPastePicture":"Picture","SSE.Controllers.Toolbar.txtPasteSourceFormat":"Source formatting","SSE.Controllers.Toolbar.txtPasteTranspose":"Transpose","SSE.Controllers.Toolbar.txtPasteValFormat":"Value + all formatting","SSE.Controllers.Toolbar.txtPasteValNumFormat":"Value + number format","SSE.Controllers.Toolbar.txtPasteValues":"Paste only value","SSE.Controllers.Toolbar.txtRadicalCustom_1":"二次方程式の解の公式の右辺","SSE.Controllers.Toolbar.txtRadicalCustom_2":"a の 2 乗と b の 2 乗の和の平方根","SSE.Controllers.Toolbar.txtRadicalRoot_2":"次数付き平方根","SSE.Controllers.Toolbar.txtRadicalRoot_3":"立方根","SSE.Controllers.Toolbar.txtRadicalRoot_n":"次数付きべき乗根","SSE.Controllers.Toolbar.txtRadicalSqrt":"平方根","SSE.Controllers.Toolbar.txtScriptCustom_1":"x 下付き文字 y の 2 乗","SSE.Controllers.Toolbar.txtScriptCustom_2":"スクリプト","SSE.Controllers.Toolbar.txtScriptCustom_3":"x の 2 乗","SSE.Controllers.Toolbar.txtScriptCustom_4":"Y 左上付き文字 n 左下付き文字 1","SSE.Controllers.Toolbar.txtScriptSub":"下付き","SSE.Controllers.Toolbar.txtScriptSubSup":"下付き文字 - 上付き文字","SSE.Controllers.Toolbar.txtScriptSubSupLeft":"左下付き文字 - 上付き文字","SSE.Controllers.Toolbar.txtScriptSup":"上付き","SSE.Controllers.Toolbar.txtSorting":"並べ替え","SSE.Controllers.Toolbar.txtSortSelected":"選択した内容を並べ替える","SSE.Controllers.Toolbar.txtSymbol_about":"近似","SSE.Controllers.Toolbar.txtSymbol_additional":"補集合","SSE.Controllers.Toolbar.txtSymbol_aleph":"アレフ","SSE.Controllers.Toolbar.txtSymbol_alpha":"アルファ","SSE.Controllers.Toolbar.txtSymbol_approx":"ほぼ等しい","SSE.Controllers.Toolbar.txtSymbol_ast":"アスタリスク","SSE.Controllers.Toolbar.txtSymbol_beta":"ベータ","SSE.Controllers.Toolbar.txtSymbol_beth":"ベート","SSE.Controllers.Toolbar.txtSymbol_bullet":"箇条書きの演算子","SSE.Controllers.Toolbar.txtSymbol_cap":"共通集合","SSE.Controllers.Toolbar.txtSymbol_cbrt":"立方根","SSE.Controllers.Toolbar.txtSymbol_cdots":"水平中央の省略記号","SSE.Controllers.Toolbar.txtSymbol_celsius":"摂氏","SSE.Controllers.Toolbar.txtSymbol_chi":"カイ","SSE.Controllers.Toolbar.txtSymbol_cong":"ほぼ等しい","SSE.Controllers.Toolbar.txtSymbol_cup":"和集合","SSE.Controllers.Toolbar.txtSymbol_ddots":"下右斜めの省略記号","SSE.Controllers.Toolbar.txtSymbol_degree":"度","SSE.Controllers.Toolbar.txtSymbol_delta":"デルタ","SSE.Controllers.Toolbar.txtSymbol_div":"「除算」記号","SSE.Controllers.Toolbar.txtSymbol_downarrow":"下矢印","SSE.Controllers.Toolbar.txtSymbol_emptyset":"空集合","SSE.Controllers.Toolbar.txtSymbol_epsilon":"イプシロン","SSE.Controllers.Toolbar.txtSymbol_equals":"等しい","SSE.Controllers.Toolbar.txtSymbol_equiv":"恒等","SSE.Controllers.Toolbar.txtSymbol_eta":"エータ","SSE.Controllers.Toolbar.txtSymbol_exists":"存在します\t","SSE.Controllers.Toolbar.txtSymbol_factorial":"階乗","SSE.Controllers.Toolbar.txtSymbol_fahrenheit":"華氏","SSE.Controllers.Toolbar.txtSymbol_forall":"全てに","SSE.Controllers.Toolbar.txtSymbol_gamma":"ガンマ","SSE.Controllers.Toolbar.txtSymbol_geq":"次の値より大きいか等しい","SSE.Controllers.Toolbar.txtSymbol_gg":"次の値よりはるかに大きい","SSE.Controllers.Toolbar.txtSymbol_greater":"次の値より大きい","SSE.Controllers.Toolbar.txtSymbol_in":"属する","SSE.Controllers.Toolbar.txtSymbol_inc":"増分","SSE.Controllers.Toolbar.txtSymbol_infinity":"無限大","SSE.Controllers.Toolbar.txtSymbol_iota":"イオタ","SSE.Controllers.Toolbar.txtSymbol_kappa":"カッパ","SSE.Controllers.Toolbar.txtSymbol_lambda":"ラムダ","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":"マイナス","SSE.Controllers.Toolbar.txtSymbol_mp":"マイナスプラス","SSE.Controllers.Toolbar.txtSymbol_mu":"ミュー","SSE.Controllers.Toolbar.txtSymbol_nabla":"ナブラ","SSE.Controllers.Toolbar.txtSymbol_neq":"と等しくない","SSE.Controllers.Toolbar.txtSymbol_ni":"含む","SSE.Controllers.Toolbar.txtSymbol_not":"「否定」記号","SSE.Controllers.Toolbar.txtSymbol_notexists":"存在しません","SSE.Controllers.Toolbar.txtSymbol_nu":"ニュー","SSE.Controllers.Toolbar.txtSymbol_o":"オミクロン","SSE.Controllers.Toolbar.txtSymbol_omega":"オメガ","SSE.Controllers.Toolbar.txtSymbol_partial":"偏微分方程式","SSE.Controllers.Toolbar.txtSymbol_percent":"パーセンテージ","SSE.Controllers.Toolbar.txtSymbol_phi":"ファイ","SSE.Controllers.Toolbar.txtSymbol_pi":"パイ","SSE.Controllers.Toolbar.txtSymbol_plus":"プラス","SSE.Controllers.Toolbar.txtSymbol_pm":"プラスとマイナス","SSE.Controllers.Toolbar.txtSymbol_propto":"比例","SSE.Controllers.Toolbar.txtSymbol_psi":"プサイ","SSE.Controllers.Toolbar.txtSymbol_qdrt":"四乗根","SSE.Controllers.Toolbar.txtSymbol_qed":"証明終了","SSE.Controllers.Toolbar.txtSymbol_rddots":"斜め(右上)の省略記号","SSE.Controllers.Toolbar.txtSymbol_rho":"ロー","SSE.Controllers.Toolbar.txtSymbol_rightarrow":"右矢印","SSE.Controllers.Toolbar.txtSymbol_sigma":"シグマ","SSE.Controllers.Toolbar.txtSymbol_sqrt":"根号","SSE.Controllers.Toolbar.txtSymbol_tau":"タウ","SSE.Controllers.Toolbar.txtSymbol_therefore":"従って","SSE.Controllers.Toolbar.txtSymbol_theta":"シータ","SSE.Controllers.Toolbar.txtSymbol_times":"「乗算」記号","SSE.Controllers.Toolbar.txtSymbol_uparrow":"上矢印","SSE.Controllers.Toolbar.txtSymbol_upsilon":"ウプシロン","SSE.Controllers.Toolbar.txtSymbol_varepsilon":"イプシロン (別形)","SSE.Controllers.Toolbar.txtSymbol_varphi":"ファイ (別形)","SSE.Controllers.Toolbar.txtSymbol_varpi":"パイ","SSE.Controllers.Toolbar.txtSymbol_varrho":"ロー (別形)","SSE.Controllers.Toolbar.txtSymbol_varsigma":"シグマ (別形)","SSE.Controllers.Toolbar.txtSymbol_vartheta":"シータ (別形)","SSE.Controllers.Toolbar.txtSymbol_vdots":"垂直線の省略記号","SSE.Controllers.Toolbar.txtSymbol_xsi":"グザイ","SSE.Controllers.Toolbar.txtSymbol_zeta":"ゼータ","SSE.Controllers.Toolbar.txtTable_TableStyleDark":"表のスタイル:暗","SSE.Controllers.Toolbar.txtTable_TableStyleLight":"表のスタイル:明るい","SSE.Controllers.Toolbar.txtTable_TableStyleMedium":"表のスタイル:中","SSE.Controllers.Toolbar.txtUseTextImport":"Use text import","SSE.Controllers.Toolbar.txtValue":"Value","SSE.Controllers.Toolbar.warnLongOperation":"実行しようとしている操作は、完了するまでにかなり時間がかかる可能性があります。
続行しますか?","SSE.Controllers.Toolbar.warnMergeLostData":"セルを結合すると、左上の値のみが保持され、他のセルの値は破棄されます。
続行してもよろしいです?","SSE.Controllers.Toolbar.warnNoRecommended":"グラフを作成するには、使用したいデータを含むセルを選択します。
行や列に名前があり、それらをラベルとして使用したい場合は、選択範囲に含めてください。","SSE.Controllers.Viewport.textFreezePanes":"ウィンドウ枠の固定","SSE.Controllers.Viewport.textFreezePanesShadow":"固定されたウィンドウ枠の影を表示する","SSE.Controllers.Viewport.textHideFBar":"数式バーを表示しない","SSE.Controllers.Viewport.textHideGridlines":"枠線を非表示にする","SSE.Controllers.Viewport.textHideHeadings":"見出しを表示しない","SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator":"小数点区切り","SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator":"桁区切り","SSE.Views.AdvancedSeparatorDialog.textLabel":"数値の桁区切り設定","SSE.Views.AdvancedSeparatorDialog.textQualifier":"文字列の引用符","SSE.Views.AdvancedSeparatorDialog.textTitle":"詳細設定","SSE.Views.AdvancedSeparatorDialog.txtNone":"(なし)","SSE.Views.AutoFilterDialog.btnCustomFilter":"ユーザー設定フィルター","SSE.Views.AutoFilterDialog.textAddSelection":"現在の選択範囲をフィルターに追加する","SSE.Views.AutoFilterDialog.textEmptyItem":"{空白}","SSE.Views.AutoFilterDialog.textSelectAll":"すべてを選択","SSE.Views.AutoFilterDialog.textSelectAllResults":"検索の全ての結果を選択する","SSE.Views.AutoFilterDialog.textWarning":"警告","SSE.Views.AutoFilterDialog.txtAboveAve":"平均より上","SSE.Views.AutoFilterDialog.txtAfter":"その後...","SSE.Views.AutoFilterDialog.txtAllDatesInThePeriod":"期間中の全日程","SSE.Views.AutoFilterDialog.txtApril":"4月","SSE.Views.AutoFilterDialog.txtAugust":"8月","SSE.Views.AutoFilterDialog.txtBefore":"その前...","SSE.Views.AutoFilterDialog.txtBegins":"...で始まる","SSE.Views.AutoFilterDialog.txtBelowAve":"平均より下​​","SSE.Views.AutoFilterDialog.txtBetween":"…の間に","SSE.Views.AutoFilterDialog.txtClear":"消去","SSE.Views.AutoFilterDialog.txtContains":"...が値を含む","SSE.Views.AutoFilterDialog.txtDateFilter":"日付フィルター","SSE.Views.AutoFilterDialog.txtDecember":"12月","SSE.Views.AutoFilterDialog.txtEmpty":"セルのフィルタを挿入してください。","SSE.Views.AutoFilterDialog.txtEnds":"終了","SSE.Views.AutoFilterDialog.txtEquals":"...に等しい","SSE.Views.AutoFilterDialog.txtFebruary":"2月","SSE.Views.AutoFilterDialog.txtFilterCellColor":"セルの色でフィルター","SSE.Views.AutoFilterDialog.txtFilterFontColor":"フォントの色でフィルター","SSE.Views.AutoFilterDialog.txtGreater":"...より大きい","SSE.Views.AutoFilterDialog.txtGreaterEquals":"次の値より大きいか等しい","SSE.Views.AutoFilterDialog.txtJanuary":"1月","SSE.Views.AutoFilterDialog.txtJuly":"7月","SSE.Views.AutoFilterDialog.txtJune":"6月","SSE.Views.AutoFilterDialog.txtLabelFilter":"ラベル・フィルター","SSE.Views.AutoFilterDialog.txtLastMonth":"先月","SSE.Views.AutoFilterDialog.txtLastQuarter":"前四半期","SSE.Views.AutoFilterDialog.txtLastWeek":"先週","SSE.Views.AutoFilterDialog.txtLastYear":"去年","SSE.Views.AutoFilterDialog.txtLess":"...より小","SSE.Views.AutoFilterDialog.txtLessEquals":"より小か等しい","SSE.Views.AutoFilterDialog.txtMarch":"3月","SSE.Views.AutoFilterDialog.txtMay":"5月","SSE.Views.AutoFilterDialog.txtNextMonth":"来月","SSE.Views.AutoFilterDialog.txtNextQuarter":"来四半期","SSE.Views.AutoFilterDialog.txtNextWeek":"来週","SSE.Views.AutoFilterDialog.txtNextYear":"来年","SSE.Views.AutoFilterDialog.txtNotBegins":"…の値で始まらない","SSE.Views.AutoFilterDialog.txtNotBetween":"間ではない","SSE.Views.AutoFilterDialog.txtNotContains":"次の値を含まない...","SSE.Views.AutoFilterDialog.txtNotEnds":"次の値で終わらない...","SSE.Views.AutoFilterDialog.txtNotEquals":"...と等しくない","SSE.Views.AutoFilterDialog.txtNovember":"11月","SSE.Views.AutoFilterDialog.txtNumFilter":"番号フィルター","SSE.Views.AutoFilterDialog.txtOctober":"10月","SSE.Views.AutoFilterDialog.txtQuarter1":"第1四半期","SSE.Views.AutoFilterDialog.txtQuarter2":"第2四半期","SSE.Views.AutoFilterDialog.txtQuarter3":"第3四半期","SSE.Views.AutoFilterDialog.txtQuarter4":"第4四半期","SSE.Views.AutoFilterDialog.txtReapply":"再適用​​","SSE.Views.AutoFilterDialog.txtSeptember":"9月","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.txtThisMonth":"今月","SSE.Views.AutoFilterDialog.txtThisQuarter":"今期","SSE.Views.AutoFilterDialog.txtThisWeek":"今週","SSE.Views.AutoFilterDialog.txtThisYear":"今年","SSE.Views.AutoFilterDialog.txtTitle":"フィルター​​","SSE.Views.AutoFilterDialog.txtToday":"今日","SSE.Views.AutoFilterDialog.txtTomorrow":"明日","SSE.Views.AutoFilterDialog.txtTop10":"トップ10","SSE.Views.AutoFilterDialog.txtValueFilter":"値フィルター","SSE.Views.AutoFilterDialog.txtYearToDate":"今年度","SSE.Views.AutoFilterDialog.txtYesterday":"昨日","SSE.Views.AutoFilterDialog.warnFilterError":"値フィルターを適用するには、「値」範囲に少なくとも1つのフィールドが必要です。","SSE.Views.AutoFilterDialog.warnNoSelected":"値を少なくとも1つを指定してください。","SSE.Views.CellEditor.textManager":"名前の管理","SSE.Views.CellEditor.tipFormula":"関数を挿入","SSE.Views.CellRangeDialog.errorMaxRows":"エラー!使用可能なデータ系列の数は、1グラフあたり最大255個です。","SSE.Views.CellRangeDialog.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","SSE.Views.CellRangeDialog.txtEmpty":"このフィールドは必須項目です","SSE.Views.CellRangeDialog.txtInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.CellRangeDialog.txtTitle":"データ範囲の選択","SSE.Views.CellSettings.strShrink":"縮小して全体を表示する","SSE.Views.CellSettings.strWrap":"テキストの折り返し","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.textControl":"テキストコントロール","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.textOrientation":"テキストの方向","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.errorInvalidReference":"参照が無効です。 開いているワークシートを参照する必要があります。","SSE.Views.ChartDataDialog.errorMaxPoints":"グラフごとの直列のポイントの最大数は4096です。","SSE.Views.ChartDataDialog.errorMaxRows":"グラフのデータ系列の最大数は255です。","SSE.Views.ChartDataDialog.errorNoSingleRowCol":"参照が無効です。 タイトル、値、サイズ、またはデータラベルの参照は、単一のセル、行、または列である必要があります。","SSE.Views.ChartDataDialog.errorNoValues":"グラフを作成するには、系列に少なくとも1つの値がある必要があります。","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.textSwitch":"行/列を切り替える","SSE.Views.ChartDataDialog.textTitle":"グラフのデータ","SSE.Views.ChartDataDialog.textUp":"上","SSE.Views.ChartDataRangeDialog.errorInFormula":"入力した数式にエラーがあります。","SSE.Views.ChartDataRangeDialog.errorInvalidReference":"参照が無効です。 開いているワークシートを参照する必要があります。","SSE.Views.ChartDataRangeDialog.errorMaxPoints":"グラフごとの直列のポイントの最大数は4096です。","SSE.Views.ChartDataRangeDialog.errorMaxRows":"グラフのデータ系列の最大数は255です。","SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol":"参照が無効です。 タイトル、値、サイズ、またはデータラベルの参照は、単一のセル、行、または列である必要があります。","SSE.Views.ChartDataRangeDialog.errorNoValues":"グラフを作成するには、系列に少なくとも1つの値がある必要があります。","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.errorMaxRows":"グラフのデータ系列の最大数は255です","SSE.Views.ChartSettings.strLineWeight":"線の太さ","SSE.Views.ChartSettings.strSparkColor":"色","SSE.Views.ChartSettings.strTemplate":"テンプレート","SSE.Views.ChartSettings.text3dDepth":"深さ(ベースに対する割合)","SSE.Views.ChartSettings.text3dHeight":"高さ(ベースに対する割合)","SSE.Views.ChartSettings.text3dRotation":"3D回転","SSE.Views.ChartSettings.textAdvanced":"詳細設定の表示","SSE.Views.ChartSettings.textAutoscale":"自動スケーリング","SSE.Views.ChartSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値をご入力ください。","SSE.Views.ChartSettings.textChangeType":"タイプを変更","SSE.Views.ChartSettings.textChartType":"グラフ種類の変更","SSE.Views.ChartSettings.textDefault":"デフォルト回転","SSE.Views.ChartSettings.textDown":"下","SSE.Views.ChartSettings.textEditData":"データと場所を編集","SSE.Views.ChartSettings.textFirstPoint":"最初のポイント","SSE.Views.ChartSettings.textHeight":"高さ","SSE.Views.ChartSettings.textHighPoint":"最高ポイント","SSE.Views.ChartSettings.textKeepRatio":"比例の定数","SSE.Views.ChartSettings.textLastPoint":"最後ポイント","SSE.Views.ChartSettings.textLeft":"左","SSE.Views.ChartSettings.textLowPoint":"最低ポイント","SSE.Views.ChartSettings.textMarkers":"マーカー","SSE.Views.ChartSettings.textNarrow":"狭角","SSE.Views.ChartSettings.textNegativePoint":"マイナスのポイント","SSE.Views.ChartSettings.textPerspective":"分析観点","SSE.Views.ChartSettings.textRanges":"データ範囲","SSE.Views.ChartSettings.textRight":"右","SSE.Views.ChartSettings.textRightAngle":"軸の直交","SSE.Views.ChartSettings.textSelectData":"データの選択","SSE.Views.ChartSettings.textShow":"表示する","SSE.Views.ChartSettings.textSize":"サイズ","SSE.Views.ChartSettings.textStyle":"スタイル","SSE.Views.ChartSettings.textSwitch":"行/列を切り替える","SSE.Views.ChartSettings.textType":"タイプ","SSE.Views.ChartSettings.textUp":"上","SSE.Views.ChartSettings.textWiden":"広角","SSE.Views.ChartSettings.textWidth":"幅","SSE.Views.ChartSettings.textX":"X 回転","SSE.Views.ChartSettings.textY":"Y 回転","SSE.Views.ChartSettingsDlg.errorMaxPoints":"エラー!グラフごとの直列のポイントの最大数は4096です。","SSE.Views.ChartSettingsDlg.errorMaxRows":"エラー!使用可能なデータ系列の数は、1グラフあたり最大255個です。","SSE.Views.ChartSettingsDlg.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。","SSE.Views.ChartSettingsDlg.textAbsolute":"セルで移動したりサイズを変更したりしない","SSE.Views.ChartSettingsDlg.textAlt":"代替テキスト","SSE.Views.ChartSettingsDlg.textAltDescription":"説明","SSE.Views.ChartSettingsDlg.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","SSE.Views.ChartSettingsDlg.textAltTitle":"タイトル","SSE.Views.ChartSettingsDlg.textAuto":"自動","SSE.Views.ChartSettingsDlg.textAutoEach":"各に自動的","SSE.Views.ChartSettingsDlg.textAxisCrosses":"軸との交点","SSE.Views.ChartSettingsDlg.textAxisOptions":"軸の設定","SSE.Views.ChartSettingsDlg.textAxisPos":"軸の位置","SSE.Views.ChartSettingsDlg.textAxisSettings":"軸の設定","SSE.Views.ChartSettingsDlg.textAxisTitle":"タイトル","SSE.Views.ChartSettingsDlg.textBase":"ベース","SSE.Views.ChartSettingsDlg.textBetweenTickMarks":"目盛りの間","SSE.Views.ChartSettingsDlg.textBillions":"十億","SSE.Views.ChartSettingsDlg.textBottom":"下","SSE.Views.ChartSettingsDlg.textCategoryName":"カテゴリ名","SSE.Views.ChartSettingsDlg.textCenter":"中央揃え","SSE.Views.ChartSettingsDlg.textChartElementsLegend":"グラフ要素&
グラフの凡例","SSE.Views.ChartSettingsDlg.textChartTitle":"グラフのタイトル","SSE.Views.ChartSettingsDlg.textCross":"十字形","SSE.Views.ChartSettingsDlg.textCustom":"ユーザー設定","SSE.Views.ChartSettingsDlg.textDataColumns":"列に","SSE.Views.ChartSettingsDlg.textDataLabels":"データ ラベル","SSE.Views.ChartSettingsDlg.textDataRange":"データ範囲","SSE.Views.ChartSettingsDlg.textDataRows":"行に","SSE.Views.ChartSettingsDlg.textDataSeries":"データ系列","SSE.Views.ChartSettingsDlg.textDisplayLegend":"凡例を表示","SSE.Views.ChartSettingsDlg.textEmptyCells":"空のセルと非表示のセル","SSE.Views.ChartSettingsDlg.textEmptyLine":"データポイントを線で接続する","SSE.Views.ChartSettingsDlg.textFit":"幅に合わせる","SSE.Views.ChartSettingsDlg.textFixed":"固定","SSE.Views.ChartSettingsDlg.textFormat":"ラベルの書式","SSE.Views.ChartSettingsDlg.textGaps":"空隙","SSE.Views.ChartSettingsDlg.textGridLines":"枠線表示","SSE.Views.ChartSettingsDlg.textGroup":"スパークラインをグループ化する","SSE.Views.ChartSettingsDlg.textHide":"表示しない","SSE.Views.ChartSettingsDlg.textHideAxis":"軸を非表示","SSE.Views.ChartSettingsDlg.textHigh":"高","SSE.Views.ChartSettingsDlg.textHorAxis":"横軸","SSE.Views.ChartSettingsDlg.textHorAxisSec":"二次横軸","SSE.Views.ChartSettingsDlg.textHorGrid":"横軸目盛線","SSE.Views.ChartSettingsDlg.textHorizontal":"水平","SSE.Views.ChartSettingsDlg.textHorTitle":"横軸のタイトル","SSE.Views.ChartSettingsDlg.textHundredMil":"100 000 000","SSE.Views.ChartSettingsDlg.textHundreds":"百","SSE.Views.ChartSettingsDlg.textHundredThousands":"100 000","SSE.Views.ChartSettingsDlg.textIn":"に","SSE.Views.ChartSettingsDlg.textInnerBottom":"内部(下)","SSE.Views.ChartSettingsDlg.textInnerTop":"内部(上)","SSE.Views.ChartSettingsDlg.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.ChartSettingsDlg.textLabelDist":"軸ラベルの距離","SSE.Views.ChartSettingsDlg.textLabelInterval":"ラベルの間の間隔","SSE.Views.ChartSettingsDlg.textLabelOptions":"ラベル オプション\t","SSE.Views.ChartSettingsDlg.textLabelPos":"ラベルの位置","SSE.Views.ChartSettingsDlg.textLayout":"レイアウト","SSE.Views.ChartSettingsDlg.textLeft":"左","SSE.Views.ChartSettingsDlg.textLeftOverlay":"左の重ね合わせ","SSE.Views.ChartSettingsDlg.textLegendBottom":"下","SSE.Views.ChartSettingsDlg.textLegendLeft":"左","SSE.Views.ChartSettingsDlg.textLegendPos":"凡例","SSE.Views.ChartSettingsDlg.textLegendRight":"右に","SSE.Views.ChartSettingsDlg.textLegendTop":"トップ","SSE.Views.ChartSettingsDlg.textLines":"線","SSE.Views.ChartSettingsDlg.textLocationRange":"場所の範囲","SSE.Views.ChartSettingsDlg.textLogScale":"対数目盛","SSE.Views.ChartSettingsDlg.textLow":"低","SSE.Views.ChartSettingsDlg.textMajor":"メジャー","SSE.Views.ChartSettingsDlg.textMajorMinor":"メジャーまたはマイナー","SSE.Views.ChartSettingsDlg.textMajorType":"メジャータイプ","SSE.Views.ChartSettingsDlg.textManual":"手動的に","SSE.Views.ChartSettingsDlg.textMarkers":"マーカー","SSE.Views.ChartSettingsDlg.textMarksInterval":"マークの間の間隔","SSE.Views.ChartSettingsDlg.textMaxValue":"最大値","SSE.Views.ChartSettingsDlg.textMillions":"百万","SSE.Views.ChartSettingsDlg.textMinor":"マイナー","SSE.Views.ChartSettingsDlg.textMinorType":"マイナータイプ","SSE.Views.ChartSettingsDlg.textMinValue":"最小値","SSE.Views.ChartSettingsDlg.textNextToAxis":"軸の下/左","SSE.Views.ChartSettingsDlg.textNone":"なし","SSE.Views.ChartSettingsDlg.textNoOverlay":"重ね合わせなし","SSE.Views.ChartSettingsDlg.textOneCell":"移動するが、セルでサイズを変更しない","SSE.Views.ChartSettingsDlg.textOnTickMarks":"目盛","SSE.Views.ChartSettingsDlg.textOut":"外","SSE.Views.ChartSettingsDlg.textOuterTop":"外トップ","SSE.Views.ChartSettingsDlg.textOverlay":"オーバーレイ","SSE.Views.ChartSettingsDlg.textReverse":"軸を反転する","SSE.Views.ChartSettingsDlg.textReverseOrder":"逆順","SSE.Views.ChartSettingsDlg.textRight":"右に","SSE.Views.ChartSettingsDlg.textRightOverlay":"右の重ね合わせ","SSE.Views.ChartSettingsDlg.textRotated":"回転","SSE.Views.ChartSettingsDlg.textSameAll":"すべてに同じ","SSE.Views.ChartSettingsDlg.textSelectData":"データの選択","SSE.Views.ChartSettingsDlg.textSeparator":"日付のラベルの区切り記号","SSE.Views.ChartSettingsDlg.textSeriesName":"系列の名前","SSE.Views.ChartSettingsDlg.textShow":"表示","SSE.Views.ChartSettingsDlg.textShowAxis":"軸の表示","SSE.Views.ChartSettingsDlg.textShowBorders":"グラフの罫線を表示","SSE.Views.ChartSettingsDlg.textShowData":"非表示の行と列にデータを表示する","SSE.Views.ChartSettingsDlg.textShowEmptyCells":"空のセルを表示する","SSE.Views.ChartSettingsDlg.textShowEquation":"チャートに数式を表示","SSE.Views.ChartSettingsDlg.textShowGrid":"グリッド線","SSE.Views.ChartSettingsDlg.textShowSparkAxis":"軸を表示する","SSE.Views.ChartSettingsDlg.textShowValues":"グラフ値を表示","SSE.Views.ChartSettingsDlg.textSingle":"単一スパークライン","SSE.Views.ChartSettingsDlg.textSmooth":"スムーズ","SSE.Views.ChartSettingsDlg.textSnap":"セルに合わせる","SSE.Views.ChartSettingsDlg.textSparkRanges":"スパークライン範囲","SSE.Views.ChartSettingsDlg.textStraight":"直線","SSE.Views.ChartSettingsDlg.textStyle":"スタイル","SSE.Views.ChartSettingsDlg.textTenMillions":"10 000 000","SSE.Views.ChartSettingsDlg.textTenThousands":"10 000","SSE.Views.ChartSettingsDlg.textThousands":"千","SSE.Views.ChartSettingsDlg.textTickOptions":"ティックのオプション","SSE.Views.ChartSettingsDlg.textTitle":"グラフ - 詳細設定","SSE.Views.ChartSettingsDlg.textTitleSparkline":"スパークラインー詳細設定","SSE.Views.ChartSettingsDlg.textTop":"上","SSE.Views.ChartSettingsDlg.textTrendlineOptions":"傾向線のオプション","SSE.Views.ChartSettingsDlg.textTrillions":"兆","SSE.Views.ChartSettingsDlg.textTwoCell":"セルで移動してサイズを変更する","SSE.Views.ChartSettingsDlg.textType":"タイプ","SSE.Views.ChartSettingsDlg.textTypeData":"タイプ&データ","SSE.Views.ChartSettingsDlg.textTypeStyle":"グラフの種類、タイトル&
データ範囲","SSE.Views.ChartSettingsDlg.textUnits":"表示単位","SSE.Views.ChartSettingsDlg.textValue":"値","SSE.Views.ChartSettingsDlg.textVertAxis":"縦軸","SSE.Views.ChartSettingsDlg.textVertAxisSec":"二次縦軸","SSE.Views.ChartSettingsDlg.textVertGrid":"縦軸目盛線","SSE.Views.ChartSettingsDlg.textVertTitle":"縦軸のタイトル","SSE.Views.ChartSettingsDlg.textXAxisTitle":"X軸のタイトル","SSE.Views.ChartSettingsDlg.textYAxisTitle":"Y軸のタイトル","SSE.Views.ChartSettingsDlg.textZero":"ゼロ","SSE.Views.ChartSettingsDlg.txtEmpty":"このフィールドは必須項目です","SSE.Views.ChartTypeDialog.errorComboSeries":"組み合わせグラフを作成するには、最低2つのデータを選択します。","SSE.Views.ChartTypeDialog.errorSecondaryAxis":"選択したチャートタイプでは、既存のチャートが使用している2次軸が必要です。他のチャートタイプを選択してください。","SSE.Views.ChartTypeDialog.textSecondary":"二次軸","SSE.Views.ChartTypeDialog.textSeries":"系列","SSE.Views.ChartTypeDialog.textStyle":"スタイル","SSE.Views.ChartTypeDialog.textTitle":"グラフの種類","SSE.Views.ChartTypeDialog.textType":"タイプ","SSE.Views.ChartWizardDialog.errorComboSeries":"組み合わせチャートを作成するには、最低2つのデータを選択します。","SSE.Views.ChartWizardDialog.errorMaxPoints":"グラプごとの直列のポイントの最大数は4096です。","SSE.Views.ChartWizardDialog.errorMaxRows":"グラフのデータ系列の最大数は255です。","SSE.Views.ChartWizardDialog.errorSecondaryAxis":"選択したチャートタイプでは、既存のチャートが使用している2次軸が必要です。他のチャートタイプを選択してください。","SSE.Views.ChartWizardDialog.errorStockChart":"行の順序が正しくありません。この株価チャートを作成するには、始値、最大値、最小値、終値の順でシートのデータを配置してください。","SSE.Views.ChartWizardDialog.textRecommended":"おすすめ","SSE.Views.ChartWizardDialog.textSecondary":"二次軸","SSE.Views.ChartWizardDialog.textSeries":"系列","SSE.Views.ChartWizardDialog.textTitle":"グラフの挿入","SSE.Views.ChartWizardDialog.textTitleChange":"グラフの種類の変更","SSE.Views.ChartWizardDialog.textType":"タイプ","SSE.Views.ChartWizardDialog.txtSeriesDesc":"データ・シリーズのチャート・タイプと軸を選択してください","SSE.Views.ConstraintDialog.textDataConstraint":"Constraint must be a number, simple reference, or formula with a numeric value.","SSE.Views.ConstraintDialog.textTooManyCells":"Too many cells","SSE.Views.ConstraintDialog.textUnequalCellsNumber":"Unequal number of cells in Cell Reference and Constraint","SSE.Views.ConstraintDialog.txtAdd":"Add","SSE.Views.ConstraintDialog.txtBin":"binary","SSE.Views.ConstraintDialog.txtCellRef":"Cell reference","SSE.Views.ConstraintDialog.txtConstraint":"Constraint","SSE.Views.ConstraintDialog.txtDiff":"AllDifferent","SSE.Views.ConstraintDialog.txtInt":"integer","SSE.Views.ConstraintDialog.txtNotValidRef":"Cell reference is empty or contents are not valid.","SSE.Views.ConstraintDialog.txtTitle":"Add constraint","SSE.Views.ConstraintDialog.txtTitleChange":"Change constraint","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.capDataExternalLinks":"外部リンク","SSE.Views.DataTab.capDataFromText":"データの挿入","SSE.Views.DataTab.capGoalSeek":"ゴールシーク","SSE.Views.DataTab.capSolver":"Solver","SSE.Views.DataTab.mniFromFile":"ローカルTXT/CSVから","SSE.Views.DataTab.mniFromUrl":"TXT/CSVWeb アドレスから","SSE.Views.DataTab.mniFromXMLFile":"ローカルXMLから","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":"テキスト/CSVファイルからデータ挿入","SSE.Views.DataTab.tipDataValidation":"データの入力規則","SSE.Views.DataTab.tipExternalLinks":"このスプレッドシートがリンクしている他のファイルを見る","SSE.Views.DataTab.tipGoalSeek":"必要な値に対する正しい入力を見つける","SSE.Views.DataTab.tipGroup":"セルの範囲をグループ化する","SSE.Views.DataTab.tipRemDuplicates":"シート内の重複を削除","SSE.Views.DataTab.tipSolver":"Find the optimal value of a target cell","SSE.Views.DataTab.tipToColumns":"セルテキストを列に分割する","SSE.Views.DataTab.tipUngroup":"セルの範囲をグループ解除","SSE.Views.DataValidationDialog.errorFormula":"現在、値がエラーと評価されています。続けますか?","SSE.Views.DataValidationDialog.errorInvalid":"フィールド \"{0}\"に入力した値が無効です。","SSE.Views.DataValidationDialog.errorInvalidDate":"フィールド \"{0}\"に入力した日付が無効です。","SSE.Views.DataValidationDialog.errorInvalidList":"リストソースは、区切られたリスト、または単一の行または列への参照である必要があります。","SSE.Views.DataValidationDialog.errorInvalidTime":"フィールド \"{0}\"に入力した時刻が無効です。","SSE.Views.DataValidationDialog.errorMinGreaterMax":"\"{1}\"フィールドは\"{0}\" フィールド以上である必要があります。","SSE.Views.DataValidationDialog.errorMustEnterBothValues":"フィールド \"{0}\"とフィールド \"{1}\"の両方に値を入力する必要があります。","SSE.Views.DataValidationDialog.errorMustEnterValue":"フィールド \"{0}\"に値を入力する必要があります。","SSE.Views.DataValidationDialog.errorNamedRange":"指定した名前付き範囲が見つかりません。","SSE.Views.DataValidationDialog.errorNegativeTextLength":"条件 \"{0}\"では負の値を使用できません。","SSE.Views.DataValidationDialog.errorNotNumeric":"フィールド \"{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.textShowDropDown":"セルにドロップダウンリストを表示する","SSE.Views.DataValidationDialog.textShowError":"無効なデータが入力された後にエラー警告を表示する","SSE.Views.DataValidationDialog.textShowInput":"セルが選択されたときに入力メッセージを表示する","SSE.Views.DataValidationDialog.textSource":"ソース","SSE.Views.DataValidationDialog.textStartDate":"開始日","SSE.Views.DataValidationDialog.textStartTime":"開始時間","SSE.Views.DataValidationDialog.textStop":"停止","SSE.Views.DataValidationDialog.textStyle":"スタイル","SSE.Views.DataValidationDialog.textTitle":"タイトル","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.txtStartTime":"開始時間","SSE.Views.DataValidationDialog.txtTextLength":"テキストの長さ","SSE.Views.DataValidationDialog.txtTime":"時間","SSE.Views.DataValidationDialog.txtWhole":"整数","SSE.Views.DigitalFilterDialog.capAnd":"と","SSE.Views.DigitalFilterDialog.capCondition1":"次の値と等しい","SSE.Views.DigitalFilterDialog.capCondition10":"次の文字列で終わらない","SSE.Views.DigitalFilterDialog.capCondition11":"含んでいる\t","SSE.Views.DigitalFilterDialog.capCondition12":"次の文字を含まない","SSE.Views.DigitalFilterDialog.capCondition2":"指定の値に等しくない","SSE.Views.DigitalFilterDialog.capCondition3":"がより大きい","SSE.Views.DigitalFilterDialog.capCondition30":"の次","SSE.Views.DigitalFilterDialog.capCondition4":"次の値より大きいか等しい","SSE.Views.DigitalFilterDialog.capCondition40":"次の後であるか、等しい","SSE.Views.DigitalFilterDialog.capCondition5":"より小さい","SSE.Views.DigitalFilterDialog.capCondition50":"次の前","SSE.Views.DigitalFilterDialog.capCondition6":"より小か等しい","SSE.Views.DigitalFilterDialog.capCondition60":"次の前であるか、等しい","SSE.Views.DigitalFilterDialog.capCondition7":"で始まる","SSE.Views.DigitalFilterDialog.capCondition8":"次の文字列で始まらない","SSE.Views.DigitalFilterDialog.capCondition9":"終了","SSE.Views.DigitalFilterDialog.capOr":"または","SSE.Views.DigitalFilterDialog.textNoFilter":"フィルタなし","SSE.Views.DigitalFilterDialog.textShowRows":"抽出条件の指定:","SSE.Views.DigitalFilterDialog.textUse1":"?を使って、任意の1文字を表すことができます。","SSE.Views.DigitalFilterDialog.textUse2":"* を使って、任意の文字列を表すことができます。","SSE.Views.DigitalFilterDialog.txtSelectDate":"日付の選択","SSE.Views.DigitalFilterDialog.txtTitle":"ユーザー設定フィルター","SSE.Views.DocumentHolder.advancedEquationText":"数式設定","SSE.Views.DocumentHolder.advancedImgText":"画像の詳細設定","SSE.Views.DocumentHolder.advancedShapeText":"図形の詳細設定","SSE.Views.DocumentHolder.advancedSlicerText":"スライサーの高度な設定","SSE.Views.DocumentHolder.AlignBottom":"Bottom","SSE.Views.DocumentHolder.AlignCenter":"Center","SSE.Views.DocumentHolder.AlignJust":"Justify","SSE.Views.DocumentHolder.AlignLeft":"Left","SSE.Views.DocumentHolder.AlignMiddle":"Middle","SSE.Views.DocumentHolder.AlignRight":"Right","SSE.Views.DocumentHolder.AlignText":"Text alignment","SSE.Views.DocumentHolder.AlignTop":"Top","SSE.Views.DocumentHolder.allLinearText":"すべて - 線形","SSE.Views.DocumentHolder.allProfText":"すべて - プロフェッショナル","SSE.Views.DocumentHolder.bottomCellText":"下揃え","SSE.Views.DocumentHolder.btnChart":"タイトル、凡例、目盛線、データ ラベルなどのグラフ要素を追加、削除、または変更します","SSE.Views.DocumentHolder.bulletsText":"箇条書きと段落番号","SSE.Views.DocumentHolder.centerCellText":"中央揃え","SSE.Views.DocumentHolder.chartDataText":"グラフデータを選択する","SSE.Views.DocumentHolder.chartText":"グラフの詳細設定","SSE.Views.DocumentHolder.chartTypeText":"グラフの種類を変更する","SSE.Views.DocumentHolder.currLinearText":"現在 - 線形","SSE.Views.DocumentHolder.currProfText":"現在 - プロフェッショナル","SSE.Views.DocumentHolder.deleteColumnText":"列","SSE.Views.DocumentHolder.deleteRowText":"行の削除","SSE.Views.DocumentHolder.deleteTableText":"表","SSE.Views.DocumentHolder.DepthAxis":"Z軸","SSE.Views.DocumentHolder.direct270Text":"270度回転","SSE.Views.DocumentHolder.direct90Text":"90度回転","SSE.Views.DocumentHolder.directHText":"水平","SSE.Views.DocumentHolder.directionText":"文字列の方向","SSE.Views.DocumentHolder.editChartText":"データを編集","SSE.Views.DocumentHolder.editHyperlinkText":"ハイパーリンクを編集","SSE.Views.DocumentHolder.hideEqToolbar":"方程式ツールバーを非表示にする","SSE.Views.DocumentHolder.insertColumnLeftText":"左に列の挿入","SSE.Views.DocumentHolder.insertColumnRightText":"右に列の挿入","SSE.Views.DocumentHolder.insertRowAboveText":"上に行の挿入","SSE.Views.DocumentHolder.insertRowBelowText":"下に行の挿入","SSE.Views.DocumentHolder.latexText":"LaTeX","SSE.Views.DocumentHolder.originalSizeText":"実際のサイズ","SSE.Views.DocumentHolder.removeHyperlinkText":"ハイパーリンクの削除","SSE.Views.DocumentHolder.selectColumnText":"列全体","SSE.Views.DocumentHolder.selectDataText":"列のデータ","SSE.Views.DocumentHolder.selectRowText":"行の選択","SSE.Views.DocumentHolder.selectTableText":"テーブルの選択","SSE.Views.DocumentHolder.showEqToolbar":"方程式ツールバーの表示","SSE.Views.DocumentHolder.strDelete":"署名の削除","SSE.Views.DocumentHolder.strDetails":"サインの詳細","SSE.Views.DocumentHolder.strSetup":"サインの設定","SSE.Views.DocumentHolder.strSign":"サインする","SSE.Views.DocumentHolder.textAlign":"配置","SSE.Views.DocumentHolder.textArrange":"順序","SSE.Views.DocumentHolder.textArrangeBack":"最背面ヘ移動","SSE.Views.DocumentHolder.textArrangeBackward":"背面ヘ移動","SSE.Views.DocumentHolder.textArrangeForward":"前面ヘ移動","SSE.Views.DocumentHolder.textArrangeFront":"最前面ヘ移動","SSE.Views.DocumentHolder.textAverage":"平均","SSE.Views.DocumentHolder.textAxes":"座標軸","SSE.Views.DocumentHolder.textAxisTitles":"軸のタイトル","SSE.Views.DocumentHolder.textBullets":"箇条書き","SSE.Views.DocumentHolder.textChartTitle":"チャートのタイトル","SSE.Views.DocumentHolder.textCopyCells":"セルのコピー","SSE.Views.DocumentHolder.textCount":"データの個数","SSE.Views.DocumentHolder.textCrop":"トリミング","SSE.Views.DocumentHolder.textCropFill":"塗りつぶし","SSE.Views.DocumentHolder.textCropFit":"合わせる","SSE.Views.DocumentHolder.textDataTable":"データ表","SSE.Views.DocumentHolder.textEditPoints":"頂点の編集","SSE.Views.DocumentHolder.textEntriesList":"ドロップダウンリストから選択する","SSE.Views.DocumentHolder.textErrorBars":"誤差範囲","SSE.Views.DocumentHolder.textExponential":"指数","SSE.Views.DocumentHolder.textFillDays":"日別に入力","SSE.Views.DocumentHolder.textFillFormatOnly":"フォーマットのみ入力","SSE.Views.DocumentHolder.textFillMonths":"月別に入力","SSE.Views.DocumentHolder.textFillSeries":"数列の入力","SSE.Views.DocumentHolder.textFillWeekdays":"平日別に入力","SSE.Views.DocumentHolder.textFillWithoutFormat":"フォーマットなしの入力","SSE.Views.DocumentHolder.textFillYears":"年別に入力","SSE.Views.DocumentHolder.textFlashFill":"高速入力","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.textGrowthTrend":"指数増加傾向","SSE.Views.DocumentHolder.textHorizontalMajor":"主要な水平線","SSE.Views.DocumentHolder.textHorizontalMinor":"二次的な水平線","SSE.Views.DocumentHolder.textLinear":"線形","SSE.Views.DocumentHolder.textLinearForecast":"線形予測","SSE.Views.DocumentHolder.textLinearTrend":"線形トレンド","SSE.Views.DocumentHolder.textLines":"行","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.textMovingAverage":"移動平均 (2)","SSE.Views.DocumentHolder.textNone":"なし","SSE.Views.DocumentHolder.textNumbering":"番号付け","SSE.Views.DocumentHolder.textReplace":"画像の置き換え","SSE.Views.DocumentHolder.textResetCrop":"トリミングをリセット","SSE.Views.DocumentHolder.textRotate":"回転","SSE.Views.DocumentHolder.textRotate270":"反時計回りに90度回転","SSE.Views.DocumentHolder.textRotate90":"時計回りに90度回転","SSE.Views.DocumentHolder.textSaveAsPicture":"画像として保存","SSE.Views.DocumentHolder.textSeries":"系列","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.textShapesMerge":"図形を結合","SSE.Views.DocumentHolder.textShowDataTable":"データ表の表示","SSE.Views.DocumentHolder.textShowLegendKeys":"凡例キーの表示","SSE.Views.DocumentHolder.textShowUpDown":"上昇/下降バーを表示","SSE.Views.DocumentHolder.textStandardDeviation":"標準偏差","SSE.Views.DocumentHolder.textStandardError":"標準誤差","SSE.Views.DocumentHolder.textStdDev":"標準偏差","SSE.Views.DocumentHolder.textSum":"合計","SSE.Views.DocumentHolder.textTrendline":"トレンドライン","SSE.Views.DocumentHolder.textUndo":"元に戻す","SSE.Views.DocumentHolder.textUnFreezePanes":"ウインドウ枠固定の解除","SSE.Views.DocumentHolder.textUpDownBars":"上下スクロールバー","SSE.Views.DocumentHolder.textVar":"標本分散","SSE.Views.DocumentHolder.textVerticalMajor":"主要の縦軸","SSE.Views.DocumentHolder.textVerticalMinor":"二次的な縦軸","SSE.Views.DocumentHolder.tipMarkersArrow":"箇条書き(矢印)","SSE.Views.DocumentHolder.tipMarkersCheckmark":"箇条書き(チェックマーク)","SSE.Views.DocumentHolder.tipMarkersDash":"「ダッシュ」記号","SSE.Views.DocumentHolder.tipMarkersFRhombus":"箇条書き(ひし形)","SSE.Views.DocumentHolder.tipMarkersFRound":"箇条書き(丸)","SSE.Views.DocumentHolder.tipMarkersFSquare":"箇条書き(四角)","SSE.Views.DocumentHolder.tipMarkersHRound":"箇条書き(円)","SSE.Views.DocumentHolder.tipMarkersStar":"箇条書き(星)","SSE.Views.DocumentHolder.topCellText":"上揃え","SSE.Views.DocumentHolder.txtAccounting":"会計","SSE.Views.DocumentHolder.txtAddComment":"コメントを追加","SSE.Views.DocumentHolder.txtAddNamedRange":"名前の定義","SSE.Views.DocumentHolder.txtArrange":"順序","SSE.Views.DocumentHolder.txtAscending":"昇順","SSE.Views.DocumentHolder.txtAutoColumnWidth":"自動調整","SSE.Views.DocumentHolder.txtAutoRowHeight":"自動調整","SSE.Views.DocumentHolder.txtAverage":"平均","SSE.Views.DocumentHolder.txtCellFormat":"セルをフォーマットする","SSE.Views.DocumentHolder.txtClear":"消去","SSE.Views.DocumentHolder.txtClearAll":"すべて","SSE.Views.DocumentHolder.txtClearComments":"コメント","SSE.Views.DocumentHolder.txtClearFormat":"形式","SSE.Views.DocumentHolder.txtClearHyper":"ハイパーリンク","SSE.Views.DocumentHolder.txtClearPivotField":"{0} のフィルターをクリア","SSE.Views.DocumentHolder.txtClearSparklineGroups":"選択されたスパークライン・グループを解除","SSE.Views.DocumentHolder.txtClearSparklines":"選択されたスパークラインを解除","SSE.Views.DocumentHolder.txtClearText":"テキスト","SSE.Views.DocumentHolder.txtCollapse":"折りたたみ","SSE.Views.DocumentHolder.txtCollapseEntire":"フィールド全体を折りたたむ","SSE.Views.DocumentHolder.txtColumn":"列全体","SSE.Views.DocumentHolder.txtColumnWidth":"列の幅","SSE.Views.DocumentHolder.txtCondFormat":"条件付き書式","SSE.Views.DocumentHolder.txtCopy":"コピー","SSE.Views.DocumentHolder.txtCount":"カウント","SSE.Views.DocumentHolder.txtCurrency":"通貨","SSE.Views.DocumentHolder.txtCustomColumnWidth":"ユーザー設定の列幅","SSE.Views.DocumentHolder.txtCustomRowHeight":"ユーザー設定の行の高さ","SSE.Views.DocumentHolder.txtCustomSort":"ユーザー設定の並べ替え","SSE.Views.DocumentHolder.txtCut":"切り取り","SSE.Views.DocumentHolder.txtDateLong":"長い日付形式","SSE.Views.DocumentHolder.txtDateShort":"日付 (短い形式)","SSE.Views.DocumentHolder.txtDelete":"削除","SSE.Views.DocumentHolder.txtDelField":"削除","SSE.Views.DocumentHolder.txtDescending":"降順","SSE.Views.DocumentHolder.txtDifference":"基準値との差分","SSE.Views.DocumentHolder.txtDistribHor":"左右に整列","SSE.Views.DocumentHolder.txtDistribVert":"上下に整列","SSE.Views.DocumentHolder.txtEditComment":"コメントの編集","SSE.Views.DocumentHolder.txtEditObject":"オブジェクトを編集","SSE.Views.DocumentHolder.txtExpand":"拡張する","SSE.Views.DocumentHolder.txtExpandCollapse":"拡張/折りたたみ","SSE.Views.DocumentHolder.txtExpandEntire":"フィールド全体を拡張する","SSE.Views.DocumentHolder.txtFieldSettings":"フィールド設定","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.txtGetLink":"この範囲のリンクを取得する","SSE.Views.DocumentHolder.txtGrandTotal":"総計","SSE.Views.DocumentHolder.txtGroup":"グループ化","SSE.Views.DocumentHolder.txtHide":"表示しない","SSE.Views.DocumentHolder.txtIndex":"インデックス","SSE.Views.DocumentHolder.txtInsert":"挿入","SSE.Views.DocumentHolder.txtInsHyperlink":"ハイパーリンク","SSE.Views.DocumentHolder.txtInsImage":"画像をファイルから挿入する","SSE.Views.DocumentHolder.txtInsImageUrl":"画像をURLから挿入する","SSE.Views.DocumentHolder.txtLabelFilter":"ラベル フィルター","SSE.Views.DocumentHolder.txtMax":"最大","SSE.Views.DocumentHolder.txtMin":"最小","SSE.Views.DocumentHolder.txtMoreOptions":"他のオプション","SSE.Views.DocumentHolder.txtNormal":"計算なし","SSE.Views.DocumentHolder.txtNumber":"数値","SSE.Views.DocumentHolder.txtNumFormat":"数値の書式","SSE.Views.DocumentHolder.txtPaste":"貼り付け","SSE.Views.DocumentHolder.txtPercent":"%","SSE.Views.DocumentHolder.txtPercentage":"パーセンテージ","SSE.Views.DocumentHolder.txtPercentDiff":"基準値に対する比率の差","SSE.Views.DocumentHolder.txtPercentOfCol":"カラムサマリーパーセンテージ","SSE.Views.DocumentHolder.txtPercentOfGrand":"%合計","SSE.Views.DocumentHolder.txtPercentOfParent":"親集計に対する比率","SSE.Views.DocumentHolder.txtPercentOfParentCol":"親列集計に対する比率","SSE.Views.DocumentHolder.txtPercentOfParentRow":"親行集計に対する比率","SSE.Views.DocumentHolder.txtPercentOfRunTotal":"累計","SSE.Views.DocumentHolder.txtPercentOfTotal":"行集計に対する比率","SSE.Views.DocumentHolder.txtPivotSettings":"ピボットテーブルの設定","SSE.Views.DocumentHolder.txtProduct":"積","SSE.Views.DocumentHolder.txtRankAscending":"昇順での順位","SSE.Views.DocumentHolder.txtRankDescending":"降順での順位","SSE.Views.DocumentHolder.txtReapply":"再適用​​","SSE.Views.DocumentHolder.txtRefresh":"更新する","SSE.Views.DocumentHolder.txtRow":"行全体","SSE.Views.DocumentHolder.txtRowHeight":"行の高さ","SSE.Views.DocumentHolder.txtRunTotal":"累計","SSE.Views.DocumentHolder.txtScientific":"指数","SSE.Views.DocumentHolder.txtSelect":"選択","SSE.Views.DocumentHolder.txtShiftDown":"下方向にシフト","SSE.Views.DocumentHolder.txtShiftLeft":"左方向にシフト","SSE.Views.DocumentHolder.txtShiftRight":"右方向にシフト","SSE.Views.DocumentHolder.txtShiftUp":"上方向にシフト","SSE.Views.DocumentHolder.txtShow":"表示","SSE.Views.DocumentHolder.txtShowAs":"計算の種類を表示","SSE.Views.DocumentHolder.txtShowComment":"コメントの表示","SSE.Views.DocumentHolder.txtShowDetails":"詳細の表示","SSE.Views.DocumentHolder.txtSort":"並べ替え","SSE.Views.DocumentHolder.txtSortCellColor":"選択したセルの色を上に表示","SSE.Views.DocumentHolder.txtSortFontColor":"選択したフォントの色を上に表示","SSE.Views.DocumentHolder.txtSortOption":"その他の並べ替えオプション","SSE.Views.DocumentHolder.txtSparklines":"スパークライン","SSE.Views.DocumentHolder.txtSubtotalField":"小計","SSE.Views.DocumentHolder.txtSum":"合計","SSE.Views.DocumentHolder.txtSummarize":"値の集計方法","SSE.Views.DocumentHolder.txtText":"テキスト","SSE.Views.DocumentHolder.txtTextAdvanced":"段落の詳細設定","SSE.Views.DocumentHolder.txtTime":"時刻","SSE.Views.DocumentHolder.txtTop10":"トップ10","SSE.Views.DocumentHolder.txtUngroup":"グループ解除","SSE.Views.DocumentHolder.txtValueFieldSettings":"値フィールド設定","SSE.Views.DocumentHolder.txtValueFilter":"値フィルター","SSE.Views.DocumentHolder.txtWidth":"幅","SSE.Views.DocumentHolder.unicodeText":"Unicode","SSE.Views.DocumentHolder.vertAlignText":"垂直方向の配置","SSE.Views.ExternalLinksDlg.textAutoUpdate":"リンクされたソースからデータを自動的に更新する","SSE.Views.FieldSettingsDialog.strLayout":"レイアウト","SSE.Views.FieldSettingsDialog.strSubtotals":"小計","SSE.Views.FieldSettingsDialog.textNumFormat":"数値の書式","SSE.Views.FieldSettingsDialog.textReport":"レポートフォーム","SSE.Views.FieldSettingsDialog.textTitle":"フィールド設定","SSE.Views.FieldSettingsDialog.txtAverage":"平均","SSE.Views.FieldSettingsDialog.txtBlank":"各項目の後に空白行を挿入する","SSE.Views.FieldSettingsDialog.txtBottom":"グループの下部に表示する","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.txtRepeat":"各行でアイテムラベルを繰り返す","SSE.Views.FieldSettingsDialog.txtShowSubtotals":"小計を表示する","SSE.Views.FieldSettingsDialog.txtSourceName":"ソース名:","SSE.Views.FieldSettingsDialog.txtStdDev":"標準偏差","SSE.Views.FieldSettingsDialog.txtStdDevp":"標準偏差","SSE.Views.FieldSettingsDialog.txtSum":"合計","SSE.Views.FieldSettingsDialog.txtSummarize":"小計の関数","SSE.Views.FieldSettingsDialog.txtTabular":"表形式","SSE.Views.FieldSettingsDialog.txtTop":"グループのトップに表示する","SSE.Views.FieldSettingsDialog.txtVar":"標本分散","SSE.Views.FieldSettingsDialog.txtVarp":"分散","SSE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","SSE.Views.FileMenu.btnBackCaption":"ファイルの場所を開く","SSE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","SSE.Views.FileMenu.btnCloseMenuCaption":"戻る","SSE.Views.FileMenu.btnCreateNewCaption":"新規作成","SSE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","SSE.Views.FileMenu.btnExitCaption":"閉じる","SSE.Views.FileMenu.btnExportToPDFCaption":"PDFへの変換","SSE.Views.FileMenu.btnFileOpenCaption":"開く","SSE.Views.FileMenu.btnHelpCaption":"ヘルプ","SSE.Views.FileMenu.btnHistoryCaption":"バージョン履歴","SSE.Views.FileMenu.btnInfoCaption":"詳細情報","SSE.Views.FileMenu.btnPrintCaption":"印刷","SSE.Views.FileMenu.btnProtectCaption":"保護する","SSE.Views.FileMenu.btnRecentFilesCaption":"最近使ったファイルを開く","SSE.Views.FileMenu.btnRenameCaption":"名前を変更する","SSE.Views.FileMenu.btnReturnCaption":"スプレッドシートに戻る","SSE.Views.FileMenu.btnRightsCaption":"アクセス権","SSE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","SSE.Views.FileMenu.btnSaveCaption":"保存","SSE.Views.FileMenu.btnSaveCopyAsCaption":"別名で保存","SSE.Views.FileMenu.btnSettingsCaption":"詳細設定","SSE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","SSE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","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.txtAddProperty":"プロパティの追加","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.txtCommon":"共通","SSE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成しました","SSE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"ドキュメントのプロパティ","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","SSE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","SSE.Views.FileMenuPanels.DocumentInfo.txtOwner":"所有者","SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"場所","SSE.Views.FileMenuPanels.DocumentInfo.txtProperties":"プロパティ","SSE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"このタイトルのプロパティはすでに存在します","SSE.Views.FileMenuPanels.DocumentInfo.txtRights":"権利を持っている者","SSE.Views.FileMenuPanels.DocumentInfo.txtSpreadsheetInfo":"スプレッドシート情報","SSE.Views.FileMenuPanels.DocumentInfo.txtSubject":"件名","SSE.Views.FileMenuPanels.DocumentInfo.txtTags":"タグ","SSE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロードされました","SSE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","SSE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス権","SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス許可の変更","SSE.Views.FileMenuPanels.DocumentRights.txtRights":"権利を持っている者","SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText":"適用","SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode":"共同編集モード","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904":"1904年の日付システムを使用する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator":"小数点区切り","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage":"辞書言語","SSE.Views.FileMenuPanels.MainSettingsGeneral.strEnableIterative":"反復計算を有効にする","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast":"即時反映モード","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender":"フォント・ヒンティング","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale":"数式の言語","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx":"例えば:合計;最小;最大;カウント","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip":"数式のヒントを表示","SSE.Views.FileMenuPanels.MainSettingsGeneral.strHScroll":"水平スクロールバーを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE":"大文字がある言葉を無視する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers":"数字のある単語は無視する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings":"マクロの設定","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxChange":"相対誤差","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxIterations":"最大反復回数","SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton":"貼り付けるときに[貼り付けオプション]ボタンを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle":"R1C1参照形式","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings":"地域の設定","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx":"例えば:","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRTLSupport":"RTLインターフェース","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments":"シートにコメントを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges":"他のユーザーの変更点を表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments":"解決済みコメントを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll":"スクロール中にグリッドに固定","SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict":"厳密モード","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle":"タブのスタイル","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme":"インターフェイスのテーマ","SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator":"桁区切り","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit":"測定単位","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings":"地域の設定に基づいて桁区切りを使用する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strVScroll":"縦スクロールバーを表示する","SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom":"既定のズーム値","SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes":"10 分ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes":"30 分ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes":"5 分ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes":"1 時間ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover":"自動回復情報を保存する","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave":"自動保存","SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled":"無効","SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill":"塗りつぶし","SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave":"中間バージョンの保存","SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine":"線","SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute":"1 分ごと","SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle":"参照スタイル","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAdvancedSettings":"詳細設定","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance":"外観","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect":"オートコレクト設定…","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe":"ベラルーシ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg":"ブルガリア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa":"カタルニア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode":"既定のキャッシュ モード","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating":"計算","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm":"センチ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration":"共同編集","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs":"チェコ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCustomizeQuickAccess":"クイックアクセスのカスタマイズ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa":"デンマーク語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe":"ドイツ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving":"編集と保存","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl":"ギリシャ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn":"英語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtErrorNumber":"入力した内容は使用できません。恐らく整数または10進数である必要があります。","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs":"スペイン語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip":"リアルタイムの共同編集 すべての変更は自動的に保存されます","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi":"フィンランド語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr":"フランス語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu":"ハンガリー語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHy":"アルメニア語","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.txtLastUsed":"最近使用","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo":"ラオス語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv":"ラトビア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac":"OSXのように","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative":"ネイティブ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb":"ノルウェー語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl":"オランダ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl":"ポーランド語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing":"校正","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt":"ポイント","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr":"ポルトガル語 (ブラジル)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang":"ポルトガル語(ポルトガル)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint":"クイックプリントボタンをエディタヘッダーに表示","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion":"地域","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo":"ルーマニア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu":"ロシア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros":"全てを有効にする","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc":"マクロを有効にして、通知しない","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtScreenReader":"スクリーンリーダーのサポートをオンにする","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir":"デフォルトのシート方向","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc":"この設定は新規シートのみに影響します","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr":"左から右へ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl":"右から左へ","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk":"スロバキア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl":"スロベニア語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSr":"Serbian (Latin)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSrcyrl":"Serbian (Cyrillic)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros":"全てを無効にする","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc":"マクロを無効にして、通知しない","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip":"「保存」ボタンを使用して、あなたや他人が行った変更を同期させることができます","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv":"スウェーデン語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTabBack":"ツールバーの色をタブの背景に使う","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr":"トルコ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk":"ウクライナ語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーを使用します","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","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.txtWorkspace":"ワークスペース","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh":"中国語","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZhtw":"Chinese (Traditional)","SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"警告","SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"パスワード付きで","SSE.Views.FileMenuPanels.ProtectDoc.strProtect":"スプレッドシートを保護する","SSE.Views.FileMenuPanels.ProtectDoc.strSignature":"サインを使って","SSE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"有効な署名がスプレッドシートに追加されました。
スプレッドシートは編集から保護されています。","SSE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"
目に見えないデジタル署名を追加することで、スプレッドシートの完全性を確保する","SSE.Views.FileMenuPanels.ProtectDoc.txtEdit":"スプレッドシートを編集する","SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"編集すると、スプレッドシートから署名が削除されます。
このまま続けますか?","SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"このスプレッドシートはパスワードで保護されています","SSE.Views.FileMenuPanels.ProtectDoc.txtProtectSpreadsheet":"このスプレッドシートをパスワードで暗号化する","SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"このスプレッドシートはサインする必要があります。","SSE.Views.FileMenuPanels.ProtectDoc.txtSigned":"有効な署名がスプレッドシートに追加されました。 スプレッドシートは編集から保護されています。","SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"スプレッドシートの一部のデジタル署名が無効であるか、検証できませんでした。 スプレッドシートは編集から保護されています。","SSE.Views.FileMenuPanels.ProtectDoc.txtView":"署名の表示","SSE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Keyboard Shortcuts","SSE.Views.FileMenuPanels.Settings.txtCustomize":"Customize","SSE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","SSE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","SSE.Views.FillSeriesDialog.textAuto":"自動入力","SSE.Views.FillSeriesDialog.textCols":"列","SSE.Views.FillSeriesDialog.textDate":"日付","SSE.Views.FillSeriesDialog.textDateUnit":"日付単位","SSE.Views.FillSeriesDialog.textDay":"日","SSE.Views.FillSeriesDialog.textGrowth":"乗算","SSE.Views.FillSeriesDialog.textLinear":"線形","SSE.Views.FillSeriesDialog.textMonth":"月","SSE.Views.FillSeriesDialog.textRows":"行","SSE.Views.FillSeriesDialog.textSeries":"系列","SSE.Views.FillSeriesDialog.textStep":"ステップ","SSE.Views.FillSeriesDialog.textStop":"ストップ値","SSE.Views.FillSeriesDialog.textTitle":"系列","SSE.Views.FillSeriesDialog.textTrend":"傾向","SSE.Views.FillSeriesDialog.textType":"タイプ","SSE.Views.FillSeriesDialog.textWeek":"平日","SSE.Views.FillSeriesDialog.textYear":"年","SSE.Views.FillSeriesDialog.txtErrorNumber":"入力した内容は使用できません。整数または10進数が必要な場合があります。","SSE.Views.FormatRulesEditDlg.fillColor":"塗りつぶしの色","SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle":"警告","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.textColor":"文字の色","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.textIconLabel":"いつ {0} {1} と","SSE.Views.FormatRulesEditDlg.textIconLabelFirst":"いつ {0} {1}","SSE.Views.FormatRulesEditDlg.textIconLabelLast":"値が","SSE.Views.FormatRulesEditDlg.textIconsOverlap":"1 つまたは複数のアイコンのデータ範囲が重複しています。
アイコンのデータ範囲が重複しないようにデータ範囲の値を調整してください。","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":"指定した 1 つまたは複数の値が、有効なパーセント値ではありません。","SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt":"指定した{0}値は、有効なパーセント値ではありません。","SSE.Views.FormatRulesEditDlg.textNotValidPercentile":"指定した 1 つまたは複数の値が、有効なパーセンタイル値ではありません。","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.textReverse":"反転なアイコンの並び順","SSE.Views.FormatRulesEditDlg.textRight2Left":"右から左に","SSE.Views.FormatRulesEditDlg.textRightBorders":"右の枠線","SSE.Views.FormatRulesEditDlg.textRule":"ルール","SSE.Views.FormatRulesEditDlg.textSameAs":"正として","SSE.Views.FormatRulesEditDlg.textSelectData":"データの選択","SSE.Views.FormatRulesEditDlg.textShortBar":"もっとも短い列","SSE.Views.FormatRulesEditDlg.textShowBar":"バーのみ表示する","SSE.Views.FormatRulesEditDlg.textShowIcon":"アイコンのみ表示","SSE.Views.FormatRulesEditDlg.textSingleRef":"条件付き書式の数式ではこの種類の参照は使用できません。単一セルの参照に変更します。または =SUM(A1:B5) のようなワークシート関数による参照を使ってください。","SSE.Views.FormatRulesEditDlg.textSolid":"実線","SSE.Views.FormatRulesEditDlg.textStrikeout":"取り消し線","SSE.Views.FormatRulesEditDlg.textSubscript":"下付き文字","SSE.Views.FormatRulesEditDlg.textSuperscript":"上付き文字","SSE.Views.FormatRulesEditDlg.textTopBorders":"上の境界線","SSE.Views.FormatRulesEditDlg.textUnderline":"下線","SSE.Views.FormatRulesEditDlg.tipBorders":"境界線","SSE.Views.FormatRulesEditDlg.tipNumFormat":"数値の書式","SSE.Views.FormatRulesEditDlg.txtAccounting":"会計","SSE.Views.FormatRulesEditDlg.txtCurrency":"通貨","SSE.Views.FormatRulesEditDlg.txtDate":"日付","SSE.Views.FormatRulesEditDlg.txtDateLong":"長い日付形式","SSE.Views.FormatRulesEditDlg.txtDateShort":"日付 (短い形式)","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.txtText":"テキスト","SSE.Views.FormatRulesEditDlg.txtTime":"時刻","SSE.Views.FormatRulesEditDlg.txtTitleEdit":"フォーマットルールを編集する","SSE.Views.FormatRulesEditDlg.txtTitleNew":"新しい書式ルール","SSE.Views.FormatRulesManagerDlg.guestText":"ゲスト","SSE.Views.FormatRulesManagerDlg.lockText":"ロックされた","SSE.Views.FormatRulesManagerDlg.text1Above":"平均より 1 標準偏差上","SSE.Views.FormatRulesManagerDlg.text1Below":"平均より 1 標準偏差下","SSE.Views.FormatRulesManagerDlg.text2Above":"平均より 2 標準偏差上","SSE.Views.FormatRulesManagerDlg.text2Below":"平均より 2 標準偏差下","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.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.textScope":"のフォーマットルールを表示する","SSE.Views.FormatRulesManagerDlg.textSelectData":"データの選択","SSE.Views.FormatRulesManagerDlg.textSelection":"現在の選択","SSE.Views.FormatRulesManagerDlg.textThisPivot":"このピボット","SSE.Views.FormatRulesManagerDlg.textThisSheet":"このシート","SSE.Views.FormatRulesManagerDlg.textThisTable":"この表","SSE.Views.FormatRulesManagerDlg.textUnique":"一意の値","SSE.Views.FormatRulesManagerDlg.textUp":"ルールを上に動かす","SSE.Views.FormatRulesManagerDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.FormatRulesManagerDlg.txtTitle":"条件付き書式","SSE.Views.FormulaDialog.sDescription":"説明","SSE.Views.FormulaDialog.textGroupDescription":"機能グループの選択","SSE.Views.FormulaDialog.textListDescription":"機能の選択","SSE.Views.FormulaDialog.txtRecommended":"おすすめ","SSE.Views.FormulaDialog.txtSearch":"検索","SSE.Views.FormulaDialog.txtTitle":"関数を挿入","SSE.Views.FormulaTab.capBtnRemoveArr":"矢印を削除","SSE.Views.FormulaTab.capBtnTraceDep":"参照先のトレース","SSE.Views.FormulaTab.capBtnTracePrec":"参照元のトレース","SSE.Views.FormulaTab.textAutomatic":"自動","SSE.Views.FormulaTab.textCalculateCurrentSheet":"このシートを計算する","SSE.Views.FormulaTab.textCalculateWorkbook":"ワークブックを計算する","SSE.Views.FormulaTab.textManual":"手動的に","SSE.Views.FormulaTab.tipCalculate":"計算","SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook":"ワークブック全体を計算する","SSE.Views.FormulaTab.tipRemoveArr":"「参照元のトレース」または「参照先のトレース」で表示された矢印を削除します。","SSE.Views.FormulaTab.tipShowFormulas":"各セルに、結果の値の代わりに数式を表示する","SSE.Views.FormulaTab.tipTraceDep":"選択したセルの値によって影響を受けるセルを示す矢印を表示する","SSE.Views.FormulaTab.tipTracePrec":"選択したセルの値に影響を与えるセルを示す矢印を表示する","SSE.Views.FormulaTab.tipWatch":"ウォッチウィンドウの一覧にセルを追加する","SSE.Views.FormulaTab.txtAdditional":"追加","SSE.Views.FormulaTab.txtAutosum":"自動合計","SSE.Views.FormulaTab.txtAutosumTip":"合計","SSE.Views.FormulaTab.txtCalculation":"計算","SSE.Views.FormulaTab.txtFormula":"関数","SSE.Views.FormulaTab.txtFormulaTip":"関数を挿入","SSE.Views.FormulaTab.txtMore":"その他の関数","SSE.Views.FormulaTab.txtRecent":"最近使った項目","SSE.Views.FormulaTab.txtRemDep":"参照先トレースの矢印を削除","SSE.Views.FormulaTab.txtRemPrec":"参照元トレースの矢印を削除","SSE.Views.FormulaTab.txtShowFormulas":"数式を表示する","SSE.Views.FormulaTab.txtWatch":"ウォッチ ウィンドウ","SSE.Views.FormulaWizard.textAny":"すべて","SSE.Views.FormulaWizard.textArgument":"引数","SSE.Views.FormulaWizard.textFunction":"関数","SSE.Views.FormulaWizard.textFunctionRes":"関数の結果","SSE.Views.FormulaWizard.textHelp":"この関数について","SSE.Views.FormulaWizard.textLogical":"論理","SSE.Views.FormulaWizard.textNoArgs":"この関数には引数がありません","SSE.Views.FormulaWizard.textNoArgsDesc":"この引数には説明がありません","SSE.Views.FormulaWizard.textNumber":"数","SSE.Views.FormulaWizard.textReadMore":"続きを読む","SSE.Views.FormulaWizard.textRef":"参照","SSE.Views.FormulaWizard.textText":"テキスト","SSE.Views.FormulaWizard.textTitle":"関数の引数","SSE.Views.FormulaWizard.textValue":"数式の計算結果","SSE.Views.GoalSeekDlg.textChangingCell":"変化させるセル","SSE.Views.GoalSeekDlg.textDataRangeError":"数式に範囲がありません","SSE.Views.GoalSeekDlg.textMustContainFormula":"セルは数式を含んでいなければならない","SSE.Views.GoalSeekDlg.textMustContainValue":"セルは値を含まなければならない","SSE.Views.GoalSeekDlg.textMustFormulaResultNumber":"セル内の数式は数値にならなければならない","SSE.Views.GoalSeekDlg.textMustSingleCell":"参照は単一セルでなければならない","SSE.Views.GoalSeekDlg.textSelectData":"データの選択","SSE.Views.GoalSeekDlg.textSetCell":"セルを設定する","SSE.Views.GoalSeekDlg.textTitle":"ゴールシーク","SSE.Views.GoalSeekDlg.textToValue":"値","SSE.Views.GoalSeekDlg.txtEmpty":"このフィールドは必須項目です","SSE.Views.GoalSeekDlg.txtErrorNumber":"入力した内容は使用できません。恐らく整数または10進数である必要があります。","SSE.Views.GoalSeekStatusDlg.textContinue":"続ける","SSE.Views.GoalSeekStatusDlg.textCurrentValue":"現在の値:","SSE.Views.GoalSeekStatusDlg.textFoundSolution":"セル{0}のゴールシークで解が見つかりました。","SSE.Views.GoalSeekStatusDlg.textNotFoundSolution":"セル{0}のゴールシークで解が見つからなかった可能性があります。","SSE.Views.GoalSeekStatusDlg.textPause":"休止","SSE.Views.GoalSeekStatusDlg.textSearchIteration":"セル{0}のゴールシークの反復 #{1} を実行中です。","SSE.Views.GoalSeekStatusDlg.textStep":"ステップ","SSE.Views.GoalSeekStatusDlg.textTargetValue":"ターゲット値:","SSE.Views.GoalSeekStatusDlg.textTitle":"ゴールシークのステータス","SSE.Views.HeaderFooterDialog.textAlign":"ページの余白に合わせて整列する","SSE.Views.HeaderFooterDialog.textAll":"全ページ","SSE.Views.HeaderFooterDialog.textBold":"太字","SSE.Views.HeaderFooterDialog.textCenter":"中央揃え","SSE.Views.HeaderFooterDialog.textColor":"文字の色","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.textImage":"画像","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.textScale":"ドキュメントに合わせて拡大縮小","SSE.Views.HeaderFooterDialog.textSheet":"シートの名前","SSE.Views.HeaderFooterDialog.textStrikeout":"取り消し線","SSE.Views.HeaderFooterDialog.textSubscript":"下付き","SSE.Views.HeaderFooterDialog.textSuperscript":"上付き","SSE.Views.HeaderFooterDialog.textTime":"時刻","SSE.Views.HeaderFooterDialog.textTitle":"ヘッダー/フッター設定","SSE.Views.HeaderFooterDialog.textUnderline":"下線","SSE.Views.HeaderFooterDialog.tipFontName":"フォント","SSE.Views.HeaderFooterDialog.tipFontSize":"フォントのサイズ","SSE.Views.HyperlinkSettingsDialog.strDisplay":"表示","SSE.Views.HyperlinkSettingsDialog.strLinkTo":"リンク","SSE.Views.HyperlinkSettingsDialog.strRange":"範囲","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.textGetLink":"リンクを取得する","SSE.Views.HyperlinkSettingsDialog.textInternalLink":"内部のデータ範囲","SSE.Views.HyperlinkSettingsDialog.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.HyperlinkSettingsDialog.textNames":"定義された名前","SSE.Views.HyperlinkSettingsDialog.textSelectData":"データの選択","SSE.Views.HyperlinkSettingsDialog.textSelectFile":"ファイル選択","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.HyperlinkSettingsDialog.txtSizeLimit":"このフィールドは2083文字に制限されています","SSE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"ウェブアドレスを入力するか、ファイルを選択してください","SSE.Views.ImageSettings.strTransparency":"不透明度","SSE.Views.ImageSettings.textAdvanced":"詳細設定の表示","SSE.Views.ImageSettings.textCrop":"トリミング","SSE.Views.ImageSettings.textCropFill":"塗りつぶし","SSE.Views.ImageSettings.textCropFit":"合わせる","SSE.Views.ImageSettings.textCropToShape":"図形に合わせてトリミング","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.textRecentlyUsed":"最近使った項目","SSE.Views.ImageSettings.textResetCrop":"トリミングをリセット","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":"タイトル","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.ImageSettingsAdvanced.textVertically":"縦に","SSE.Views.ImportFromXmlDialog.textDestination":"データをどこに置くか、選択してください","SSE.Views.ImportFromXmlDialog.textExist":"既存のワークシート","SSE.Views.ImportFromXmlDialog.textInvalidRange":"無効なセル範囲","SSE.Views.ImportFromXmlDialog.textNew":"新しいワークシート","SSE.Views.ImportFromXmlDialog.textSelectData":"データの選択","SSE.Views.ImportFromXmlDialog.textTitle":"データのインポート","SSE.Views.ImportFromXmlDialog.txtEmpty":"この項目は必須です","SSE.Views.LeftMenu.ariaLeftMenu":"左メニュー","SSE.Views.LeftMenu.tipAbout":"詳細情報","SSE.Views.LeftMenu.tipChat":"チャット","SSE.Views.LeftMenu.tipComments":"コメント","SSE.Views.LeftMenu.tipFile":"ファイル","SSE.Views.LeftMenu.tipPlugins":"プラグイン","SSE.Views.LeftMenu.tipSearch":"検索","SSE.Views.LeftMenu.tipSpellcheck":"スペルチェック","SSE.Views.LeftMenu.tipSupport":"フィードバック&サポート","SSE.Views.LeftMenu.txtDeveloper":"開発者モード","SSE.Views.LeftMenu.txtEditor":"スプレッドシートエディター","SSE.Views.LeftMenu.txtLimit":"制限されたアクセス","SSE.Views.LeftMenu.txtTrial":"試用モード","SSE.Views.LeftMenu.txtTrialDev":"試用開発者モード","SSE.Views.MacroDialog.textMacro":"マクロの名","SSE.Views.MacroDialog.textTitle":"マクロの登録","SSE.Views.MainSettingsPrint.okButtonText":"保存","SSE.Views.MainSettingsPrint.strBottom":"下","SSE.Views.MainSettingsPrint.strLandscape":"横","SSE.Views.MainSettingsPrint.strLeft":"左","SSE.Views.MainSettingsPrint.strMargins":"余白","SSE.Views.MainSettingsPrint.strPortrait":"縦","SSE.Views.MainSettingsPrint.strPrint":"印刷","SSE.Views.MainSettingsPrint.strPrintTitles":"タイトルを印刷する","SSE.Views.MainSettingsPrint.strRight":"右に","SSE.Views.MainSettingsPrint.strTop":"トップ","SSE.Views.MainSettingsPrint.textActualSize":"実際のサイズ","SSE.Views.MainSettingsPrint.textCustom":"ユーザー設定","SSE.Views.MainSettingsPrint.textCustomOptions":"ユーザー設定","SSE.Views.MainSettingsPrint.textFitCols":"すべての列を 1 ページに表示","SSE.Views.MainSettingsPrint.textFitPage":"シートを 1 ページに表示","SSE.Views.MainSettingsPrint.textFitRows":"すべての行を 1 ページに表示","SSE.Views.MainSettingsPrint.textPageOrientation":"印刷の向き","SSE.Views.MainSettingsPrint.textPageScaling":"拡大縮小","SSE.Views.MainSettingsPrint.textPageSize":"ページのサイズ","SSE.Views.MainSettingsPrint.textPrintGrid":"枠線の印刷","SSE.Views.MainSettingsPrint.textPrintHeadings":"行と列の見出しを印刷","SSE.Views.MainSettingsPrint.textRepeat":"繰り返す...","SSE.Views.MainSettingsPrint.textRepeatLeft":"左側の列を繰り返す","SSE.Views.MainSettingsPrint.textRepeatTop":"上の行を繰り返す","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.textExistName":"エラー!すでに同じ名前がある範囲も存在しています。","SSE.Views.NamedRangeEditDlg.textInvalidName":"エラー!範囲の名前が正しくありません。","SSE.Views.NamedRangeEditDlg.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.NamedRangeEditDlg.textIsLocked":"エラー!要素が他のユーザーによって編集されています。","SSE.Views.NamedRangeEditDlg.textName":"名前","SSE.Views.NamedRangeEditDlg.textReservedName":"使用しようとしている名前は、既にセルの数式で参照されています。他の名前を使用してください。","SSE.Views.NamedRangeEditDlg.textScope":"スコープ","SSE.Views.NamedRangeEditDlg.textSelectData":"データの選択","SSE.Views.NamedRangeEditDlg.txtEmpty":"このフィールドは必須項目です","SSE.Views.NamedRangeEditDlg.txtTitleEdit":"名前を編集","SSE.Views.NamedRangeEditDlg.txtTitleNew":"新しい名前","SSE.Views.NamedRangePasteDlg.textNames":"名前付き一覧\t","SSE.Views.NamedRangePasteDlg.txtTitle":"名前の貼り付け","SSE.Views.NameManagerDlg.closeButtonText":"閉じる","SSE.Views.NameManagerDlg.guestText":"ゲスト","SSE.Views.NameManagerDlg.lockText":"ロックされた","SSE.Views.NameManagerDlg.textDataRange":"データ範囲","SSE.Views.NameManagerDlg.textDelete":"削除","SSE.Views.NameManagerDlg.textEdit":"編集","SSE.Views.NameManagerDlg.textEmpty":"名前付き範囲は、まだ作成されていません。
最低で一つの名前付き範囲を作成すると、このフィールドに表示されます。","SSE.Views.NameManagerDlg.textFilter":"フィルター​​","SSE.Views.NameManagerDlg.textFilterAll":"すべて","SSE.Views.NameManagerDlg.textFilterDefNames":"定義された名前","SSE.Views.NameManagerDlg.textFilterSheet":"シートに名前の範囲指定","SSE.Views.NameManagerDlg.textFilterTableNames":"表の名前","SSE.Views.NameManagerDlg.textFilterWorkbook":"ワークブックに名前の範囲指定","SSE.Views.NameManagerDlg.textNew":"新しい","SSE.Views.NameManagerDlg.textnoNames":"フィルタ条件に一致する名前付き一覧が見つかりませんでした。","SSE.Views.NameManagerDlg.textRanges":"名前付き一覧\t","SSE.Views.NameManagerDlg.textScope":"スコープ","SSE.Views.NameManagerDlg.textWorkbook":"ブック","SSE.Views.NameManagerDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.NameManagerDlg.txtTitle":"名前の管理","SSE.Views.NameManagerDlg.warnDelete":"{0}名前を削除してもよろしいですか?","SSE.Views.PageMarginsDialog.textBottom":"下","SSE.Views.PageMarginsDialog.textCenter":"ページの中央","SSE.Views.PageMarginsDialog.textHor":"水平に","SSE.Views.PageMarginsDialog.textLeft":"左","SSE.Views.PageMarginsDialog.textRight":"右","SSE.Views.PageMarginsDialog.textTitle":"余白","SSE.Views.PageMarginsDialog.textTop":"上","SSE.Views.PageMarginsDialog.textVert":"縦に","SSE.Views.PageMarginsDialog.textWarning":"警告","SSE.Views.PageMarginsDialog.warnCheckMargings":"余白が正しくありません","SSE.Views.ParagraphSettings.strLineHeight":"行間","SSE.Views.ParagraphSettings.strParagraphSpacing":"段落の間隔","SSE.Views.ParagraphSettings.strSpacingAfter":"後","SSE.Views.ParagraphSettings.strSpacingBefore":"前","SSE.Views.ParagraphSettings.textAdvanced":"詳細設定の表示","SSE.Views.ParagraphSettings.textAt":"行間","SSE.Views.ParagraphSettings.textAtLeast":"最小","SSE.Views.ParagraphSettings.textAuto":"複数","SSE.Views.ParagraphSettings.textExact":"固定値","SSE.Views.ParagraphSettings.txtAutoText":"自動","SSE.Views.ParagraphSettingsAdvanced.noTabs":"指定されたタブは、このフィールドに表示されます。","SSE.Views.ParagraphSettingsAdvanced.strAllCaps":"すべて大文字","SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike":"二重取り消し線","SSE.Views.ParagraphSettingsAdvanced.strIndent":"インデント","SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText":"左","SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing":"行間","SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText":"右に","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":"小型英大文字\t","SSE.Views.ParagraphSettingsAdvanced.strSpacing":"間隔","SSE.Views.ParagraphSettingsAdvanced.strStrike":"取り消し線","SSE.Views.ParagraphSettingsAdvanced.strSubscript":"下付き","SSE.Views.ParagraphSettingsAdvanced.strSuperscript":"上付き文字","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":"全てを削除","SSE.Views.ParagraphSettingsAdvanced.textSet":"指定","SSE.Views.ParagraphSettingsAdvanced.textTabCenter":"中央揃え","SSE.Views.ParagraphSettingsAdvanced.textTabLeft":"左","SSE.Views.ParagraphSettingsAdvanced.textTabPosition":"タブの位置","SSE.Views.ParagraphSettingsAdvanced.textTabRight":"右揃え","SSE.Views.ParagraphSettingsAdvanced.textTitle":"段落 - 詳細設定","SSE.Views.ParagraphSettingsAdvanced.txtAutoText":"自動","SSE.Views.PivotCalculatedItemsDialog.txtDelete":"削除","SSE.Views.PivotCalculatedItemsDialog.txtDuplicate":"複製","SSE.Views.PivotCalculatedItemsDialog.txtEdit":"編集","SSE.Views.PivotCalculatedItemsDialog.txtFormula":"数式","SSE.Views.PivotCalculatedItemsDialog.txtItemsName":"アイテム名","SSE.Views.PivotCalculatedItemsDialog.txtNew":"新しい","SSE.Views.PivotCalculatedItemsDialog.txtTitle":"計算項目","SSE.Views.PivotDigitalFilterDialog.capCondition1":"等号","SSE.Views.PivotDigitalFilterDialog.capCondition10":"次の文字列で終わらない","SSE.Views.PivotDigitalFilterDialog.capCondition11":"含んでいる\t","SSE.Views.PivotDigitalFilterDialog.capCondition12":"次の文字を含まない","SSE.Views.PivotDigitalFilterDialog.capCondition13":"間","SSE.Views.PivotDigitalFilterDialog.capCondition14":"間ではない","SSE.Views.PivotDigitalFilterDialog.capCondition2":"指定の値に等しくない","SSE.Views.PivotDigitalFilterDialog.capCondition3":"がより大きい","SSE.Views.PivotDigitalFilterDialog.capCondition30":"この項目の次","SSE.Views.PivotDigitalFilterDialog.capCondition4":"より以上か等しい","SSE.Views.PivotDigitalFilterDialog.capCondition40":"次の後であるか、等しい","SSE.Views.PivotDigitalFilterDialog.capCondition5":"がより小さい","SSE.Views.PivotDigitalFilterDialog.capCondition50":"次の前","SSE.Views.PivotDigitalFilterDialog.capCondition6":"より以下か等しい","SSE.Views.PivotDigitalFilterDialog.capCondition60":"次の前であるか、等しい","SSE.Views.PivotDigitalFilterDialog.capCondition7":"で始まる","SSE.Views.PivotDigitalFilterDialog.capCondition8":"次の文字から始まらない","SSE.Views.PivotDigitalFilterDialog.capCondition9":"終了","SSE.Views.PivotDigitalFilterDialog.textShowDate":"日付が次の条件を満たすアイテムを表示:","SSE.Views.PivotDigitalFilterDialog.textShowLabel":"ラベルが次の条件に一致する項目を表示する","SSE.Views.PivotDigitalFilterDialog.textShowValue":"次の条件に一致する項目を表示する:","SSE.Views.PivotDigitalFilterDialog.textUse1":"?を使って、任意の1文字を表すことができます。","SSE.Views.PivotDigitalFilterDialog.textUse2":"一連の文字の代わりに*をご使用ください","SSE.Views.PivotDigitalFilterDialog.txtAnd":"と","SSE.Views.PivotDigitalFilterDialog.txtTitleDate":"日付フィルター","SSE.Views.PivotDigitalFilterDialog.txtTitleLabel":"ラベル・フィルター","SSE.Views.PivotDigitalFilterDialog.txtTitleValue":"値フィルター","SSE.Views.PivotGroupDialog.textAuto":"自動","SSE.Views.PivotGroupDialog.textBy":"幅","SSE.Views.PivotGroupDialog.textDays":"日","SSE.Views.PivotGroupDialog.textEnd":"終了","SSE.Views.PivotGroupDialog.textError":"このフィールドは数値である必要があります","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.textSec":"秒","SSE.Views.PivotGroupDialog.textStart":"から開始する","SSE.Views.PivotGroupDialog.textYear":"年","SSE.Views.PivotGroupDialog.txtTitle":"グループ化","SSE.Views.PivotInsertCalculatedItemDialog.txtDescription":"単一フィールド内の異なる項目間の基本的な計算には、計算項目を使用できます","SSE.Views.PivotInsertCalculatedItemDialog.txtFormula":"数式","SSE.Views.PivotInsertCalculatedItemDialog.txtInsertIntoFormula":"数式に挿入","SSE.Views.PivotInsertCalculatedItemDialog.txtItem":"アイテム","SSE.Views.PivotInsertCalculatedItemDialog.txtItemName":"項目名","SSE.Views.PivotInsertCalculatedItemDialog.txtItems":"アイテム","SSE.Views.PivotInsertCalculatedItemDialog.txtReadMore":"続きを読む","SSE.Views.PivotInsertCalculatedItemDialog.txtTitle":"計算項目を挿入","SSE.Views.PivotSettings.textAdvanced":"詳細設定の表示","SSE.Views.PivotSettings.textColumns":"列","SSE.Views.PivotSettings.textFields":"フィールドを選択する","SSE.Views.PivotSettings.textFilters":"フィルター","SSE.Views.PivotSettings.textRows":"行","SSE.Views.PivotSettings.textValues":"値","SSE.Views.PivotSettings.txtAddColumn":"カラムを追加","SSE.Views.PivotSettings.txtAddFilter":"フィルターに追加","SSE.Views.PivotSettings.txtAddRow":"行に追加","SSE.Views.PivotSettings.txtAddValues":"値に追加","SSE.Views.PivotSettings.txtFieldSettings":"フィールド設定","SSE.Views.PivotSettings.txtMoveBegin":"はじめに移動する","SSE.Views.PivotSettings.txtMoveColumn":"列に移動する","SSE.Views.PivotSettings.txtMoveDown":"下に移動する","SSE.Views.PivotSettings.txtMoveEnd":"終わりに移動する","SSE.Views.PivotSettings.txtMoveFilter":"フィルターに移動する","SSE.Views.PivotSettings.txtMoveRow":"行に移動する","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.textAltTitle":"タイトル","SSE.Views.PivotSettingsAdvanced.textAutofitColWidth":"更新時に自動調整","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.textOver":"左から右","SSE.Views.PivotSettingsAdvanced.textSelectData":"データの選択","SSE.Views.PivotSettingsAdvanced.textShowCols":"列に表示","SSE.Views.PivotSettingsAdvanced.textShowHeaders":"行と列のフィールドヘッダーを表示する","SSE.Views.PivotSettingsAdvanced.textShowRows":"行に表示","SSE.Views.PivotSettingsAdvanced.textTitle":"ピボットテーブルの詳細設定","SSE.Views.PivotSettingsAdvanced.textWrapCol":"列ごとのレポートフィルターフィールド","SSE.Views.PivotSettingsAdvanced.textWrapRow":"行ごとのレポートフィルターフィールド","SSE.Views.PivotSettingsAdvanced.txtEmpty":"この項目は必須です","SSE.Views.PivotSettingsAdvanced.txtName":"名前","SSE.Views.PivotShowDetailDialog.textDescription":"表示したい詳細を含むフィールドを選択する:","SSE.Views.PivotShowDetailDialog.txtTitle":"詳細を表示","SSE.Views.PivotTable.capBlankRows":"空行","SSE.Views.PivotTable.capGrandTotals":"総計","SSE.Views.PivotTable.capLayout":"レポートのレイアウト","SSE.Views.PivotTable.capSubtotals":"小計","SSE.Views.PivotTable.mniBottomSubtotals":"すべての小計をグループの下に表示する","SSE.Views.PivotTable.mniInsertBlankLine":"各項目の後に空白行を挿入する","SSE.Views.PivotTable.mniLayoutCompact":"コンパクト形式で表示","SSE.Views.PivotTable.mniLayoutNoRepeat":"すべてのアイテムラベルを繰り返さない","SSE.Views.PivotTable.mniLayoutOutline":"アウトライン形式で表示","SSE.Views.PivotTable.mniLayoutRepeat":"すべてのアイテムラベルを繰り返す","SSE.Views.PivotTable.mniLayoutTabular":"表形式で表示","SSE.Views.PivotTable.mniNoSubtotals":"小計を表示しない","SSE.Views.PivotTable.mniOffTotals":"行と列には無効にする","SSE.Views.PivotTable.mniOnColumnsTotals":"行と列には有効にする","SSE.Views.PivotTable.mniOnRowsTotals":"行のみに有効にする","SSE.Views.PivotTable.mniOnTotals":"行と列には有効にする","SSE.Views.PivotTable.mniRemoveBlankLine":"各項目の後の空白行を削除する","SSE.Views.PivotTable.mniTopSubtotals":"すべての小計をグループの上に表示する","SSE.Views.PivotTable.textColBanded":"縞模様の例","SSE.Views.PivotTable.textColHeader":"列のヘッダー","SSE.Views.PivotTable.textRowBanded":"縞模様の行","SSE.Views.PivotTable.textRowHeader":"行のヘッダー","SSE.Views.PivotTable.tipCalculatedItems":"計算項目","SSE.Views.PivotTable.tipCreatePivot":"ピボットテーブルを挿入","SSE.Views.PivotTable.tipGrandTotals":"総計を表示か非表示する","SSE.Views.PivotTable.tipRefresh":"データソースからの情報を更新する","SSE.Views.PivotTable.tipRefreshCurrent":"データソースから現在のテーブルの情報を更新する","SSE.Views.PivotTable.tipSelect":"ピボットテーブル全体を選択する","SSE.Views.PivotTable.tipSubtotals":"小計を表示か非表示する","SSE.Views.PivotTable.txtCalculatedItems":"計算項目","SSE.Views.PivotTable.txtCollapseEntire":"フィールド全体を折りたたむ","SSE.Views.PivotTable.txtCreate":"表を挿入","SSE.Views.PivotTable.txtExpandEntire":"フィールド全体を拡張する","SSE.Views.PivotTable.txtGroupPivot_Custom":"ユーザー設定","SSE.Views.PivotTable.txtGroupPivot_Dark":"ダーク","SSE.Views.PivotTable.txtGroupPivot_Light":"ライト","SSE.Views.PivotTable.txtGroupPivot_Medium":"中","SSE.Views.PivotTable.txtPivotTable":"ピボットテーブル","SSE.Views.PivotTable.txtRefresh":"更新","SSE.Views.PivotTable.txtRefreshAll":"すべて更新","SSE.Views.PivotTable.txtSelect":"選択する","SSE.Views.PivotTable.txtTable_PivotStyleDark":"ダークスタイルのピボットテーブル","SSE.Views.PivotTable.txtTable_PivotStyleLight":"ライトスタイルのピボットテーブル","SSE.Views.PivotTable.txtTable_PivotStyleMedium":"ミディアムスタイルのピボットテーブル","SSE.Views.PrintSettings.btnDownload":"保存してダウンロード","SSE.Views.PrintSettings.btnExport":"保存&書き出し","SSE.Views.PrintSettings.btnPrint":"保存&印刷","SSE.Views.PrintSettings.strBottom":"下","SSE.Views.PrintSettings.strLandscape":"横","SSE.Views.PrintSettings.strLeft":"左","SSE.Views.PrintSettings.strMargins":"余白","SSE.Views.PrintSettings.strPortrait":"縦","SSE.Views.PrintSettings.strPrint":"印刷","SSE.Views.PrintSettings.strPrintTitles":"タイトルを印刷する","SSE.Views.PrintSettings.strRight":"右に","SSE.Views.PrintSettings.strShow":"表示する","SSE.Views.PrintSettings.strTop":"トップ","SSE.Views.PrintSettings.textActiveSheets":"作業中のシート","SSE.Views.PrintSettings.textActualSize":"実際のサイズ","SSE.Views.PrintSettings.textAllSheets":"全シート","SSE.Views.PrintSettings.textCurrentSheet":"現在のシート","SSE.Views.PrintSettings.textCustom":"ユーザー設定","SSE.Views.PrintSettings.textCustomOptions":"ユーザー設定","SSE.Views.PrintSettings.textFitCols":"すべての列を 1 ページに表示","SSE.Views.PrintSettings.textFitPage":"シートを 1 ページに表示","SSE.Views.PrintSettings.textFitRows":"すべての行を 1 ページに表示","SSE.Views.PrintSettings.textHideDetails":"詳細を非表示","SSE.Views.PrintSettings.textIgnore":"印刷範囲を無視する","SSE.Views.PrintSettings.textLayout":"レイアウト","SSE.Views.PrintSettings.textMarginsNarrow":"狭い","SSE.Views.PrintSettings.textMarginsNormal":"標準","SSE.Views.PrintSettings.textMarginsWide":"広い","SSE.Views.PrintSettings.textPageOrientation":"印刷の向き","SSE.Views.PrintSettings.textPages":"ページ:","SSE.Views.PrintSettings.textPageScaling":"拡大縮小","SSE.Views.PrintSettings.textPageSize":"ページのサイズ","SSE.Views.PrintSettings.textPrintGrid":"枠線の印刷","SSE.Views.PrintSettings.textPrintHeadings":"行と列の見出しを印刷","SSE.Views.PrintSettings.textPrintRange":"印刷範囲\t","SSE.Views.PrintSettings.textRange":"範囲","SSE.Views.PrintSettings.textRepeat":"繰り返す...","SSE.Views.PrintSettings.textRepeatLeft":"左側の列を繰り返す","SSE.Views.PrintSettings.textRepeatTop":"上の行を繰り返す","SSE.Views.PrintSettings.textSelection":"選択","SSE.Views.PrintSettings.textSettings":"シートの設定","SSE.Views.PrintSettings.textShowDetails":"詳細の表示","SSE.Views.PrintSettings.textShowGrid":"枠線を表示する","SSE.Views.PrintSettings.textShowHeadings":"行と列の見出しを表示する","SSE.Views.PrintSettings.textTitle":"印刷の設定","SSE.Views.PrintSettings.textTitlePDF":"PDFの設定","SSE.Views.PrintSettings.textTo":"まで","SSE.Views.PrintSettings.txtMarginsLast":"最後に適用した設定","SSE.Views.PrintTitlesDialog.textFirstCol":"最初の列","SSE.Views.PrintTitlesDialog.textFirstRow":"最初の行","SSE.Views.PrintTitlesDialog.textFrozenCols":"固定された列","SSE.Views.PrintTitlesDialog.textFrozenRows":"固定された行","SSE.Views.PrintTitlesDialog.textInvalidRange":"エラー!セルの範囲は無効です。","SSE.Views.PrintTitlesDialog.textLeft":"左側の列を繰り返す","SSE.Views.PrintTitlesDialog.textNoRepeat":"繰り返なし","SSE.Views.PrintTitlesDialog.textRepeat":"繰り返す...","SSE.Views.PrintTitlesDialog.textSelectRange":"範囲の選択","SSE.Views.PrintTitlesDialog.textTitle":"タイトルを印刷する","SSE.Views.PrintTitlesDialog.textTop":"上の行を繰り返す","SSE.Views.PrintWithPreview.txtActiveSheets":"作業中のシート","SSE.Views.PrintWithPreview.txtActualSize":"実際のサイズ","SSE.Views.PrintWithPreview.txtAllSheets":"全シート","SSE.Views.PrintWithPreview.txtApplyToAllSheets":"全シートに適用","SSE.Views.PrintWithPreview.txtAuto":"Auto","SSE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"白黒印刷","SSE.Views.PrintWithPreview.txtBothSides":"両面印刷","SSE.Views.PrintWithPreview.txtBothSidesLongDesc":"長辺を綴じる","SSE.Views.PrintWithPreview.txtBothSidesShortDesc":"短辺を綴じる","SSE.Views.PrintWithPreview.txtBottom":"下","SSE.Views.PrintWithPreview.txtColorPrinting":"カラー印刷","SSE.Views.PrintWithPreview.txtCopies":"コピー","SSE.Views.PrintWithPreview.txtCurrentSheet":"現在のシート","SSE.Views.PrintWithPreview.txtCustom":"ユーザー設定","SSE.Views.PrintWithPreview.txtCustomOptions":"ユーザー設定","SSE.Views.PrintWithPreview.txtEmptyTable":"テーブルが空で印刷できるものはありません","SSE.Views.PrintWithPreview.txtFirstPageNumber":"先頭ページの番号:","SSE.Views.PrintWithPreview.txtFitCols":"すべての列を 1 ページに表示","SSE.Views.PrintWithPreview.txtFitPage":"シートを 1 ページに表示","SSE.Views.PrintWithPreview.txtFitRows":"すべての行を 1 ページに表示","SSE.Views.PrintWithPreview.txtGridlinesAndHeadings":"グリッド線と見出し​​","SSE.Views.PrintWithPreview.txtHeaderFooterSettings":"ヘッダー/フッター設定","SSE.Views.PrintWithPreview.txtIgnore":"印刷範囲を無視する","SSE.Views.PrintWithPreview.txtLandscape":"横","SSE.Views.PrintWithPreview.txtLeft":"左","SSE.Views.PrintWithPreview.txtMargins":"余白","SSE.Views.PrintWithPreview.txtMarginsLast":"最後に適用した設定","SSE.Views.PrintWithPreview.txtMarginsNarrow":"狭い","SSE.Views.PrintWithPreview.txtMarginsNormal":"標準","SSE.Views.PrintWithPreview.txtMarginsWide":"広い","SSE.Views.PrintWithPreview.txtOf":"{0}から","SSE.Views.PrintWithPreview.txtOneSide":"片面印刷","SSE.Views.PrintWithPreview.txtOneSideDesc":"ページの片面のみを印刷する","SSE.Views.PrintWithPreview.txtPage":"ページ","SSE.Views.PrintWithPreview.txtPageNumInvalid":"ページ番号が正しくありません。","SSE.Views.PrintWithPreview.txtPageOrientation":"印刷の向き","SSE.Views.PrintWithPreview.txtPages":"ページ:","SSE.Views.PrintWithPreview.txtPageSize":"ページ サイズ","SSE.Views.PrintWithPreview.txtPortrait":"縦","SSE.Views.PrintWithPreview.txtPrint":"印刷","SSE.Views.PrintWithPreview.txtPrinter":"プリンター","SSE.Views.PrintWithPreview.txtPrinterNotSelected":"プリンターが選択されていない","SSE.Views.PrintWithPreview.txtPrintersNotFound":"プリンターが見つかりません","SSE.Views.PrintWithPreview.txtPrintGrid":"枠線の印刷","SSE.Views.PrintWithPreview.txtPrintHeadings":"行と列の見出しを印刷","SSE.Views.PrintWithPreview.txtPrintRange":"印刷範囲\t","SSE.Views.PrintWithPreview.txtPrintSides":"両面印刷","SSE.Views.PrintWithPreview.txtPrintTitles":"タイトルを印刷する","SSE.Views.PrintWithPreview.txtPrintToPDF":"PDFに印刷","SSE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"システムダイアログで印刷する","SSE.Views.PrintWithPreview.txtRepeat":"繰り返す…","SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft":"左側の列を繰り返す","SSE.Views.PrintWithPreview.txtRepeatRowsAtTop":"上の行を繰り返す","SSE.Views.PrintWithPreview.txtRight":"右","SSE.Views.PrintWithPreview.txtSave":"保存","SSE.Views.PrintWithPreview.txtScaling":"拡大縮小","SSE.Views.PrintWithPreview.txtSelection":"選択","SSE.Views.PrintWithPreview.txtSettingsOfSheet":"シート設定","SSE.Views.PrintWithPreview.txtSheet":"シート:{0}","SSE.Views.PrintWithPreview.txtTo":"まで","SSE.Views.PrintWithPreview.txtTop":"トップ","SSE.Views.PrintWithPreview.txtWaitingForPrinters":"プリンターを待っています","SSE.Views.ProtectDialog.textExistName":"エラー!すでに同じ名前の範囲があります。","SSE.Views.ProtectDialog.textInvalidName":"範囲の名前に含めることができるのは、文字、数字、およびスペースだけです","SSE.Views.ProtectDialog.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.ProtectDialog.textSelectData":"データを選択する","SSE.Views.ProtectDialog.txtAllow":"このシートのユーザーに許可する","SSE.Views.ProtectDialog.txtAllowDescription":"特定の範囲の編集を解除することができます。","SSE.Views.ProtectDialog.txtAllowRanges":"範囲の編集を許可する","SSE.Views.ProtectDialog.txtAutofilter":"オートフィルター","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.txtOptional":"任意","SSE.Views.ProtectDialog.txtPassword":"パスワード","SSE.Views.ProtectDialog.txtPivot":"ピボット表とピボットチャートを使う","SSE.Views.ProtectDialog.txtProtect":"保護する","SSE.Views.ProtectDialog.txtRange":"範囲","SSE.Views.ProtectDialog.txtRangeName":"タイトル","SSE.Views.ProtectDialog.txtRepeat":"パスワードを再入力","SSE.Views.ProtectDialog.txtScen":"シナリオを編集する","SSE.Views.ProtectDialog.txtSelLocked":"ロックしたセルを選択する","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.ProtectedRangesEditDlg.textAnonymous":"匿名","SSE.Views.ProtectedRangesEditDlg.textAnyone":"誰でも","SSE.Views.ProtectedRangesEditDlg.textCanEdit":"編集","SSE.Views.ProtectedRangesEditDlg.textCantView":"拒否された","SSE.Views.ProtectedRangesEditDlg.textCanView":"閲覧","SSE.Views.ProtectedRangesEditDlg.textInvalidName":"範囲の名前に含めることができるのは、文字、数字、およびスペースだけです","SSE.Views.ProtectedRangesEditDlg.textInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.ProtectedRangesEditDlg.textRemove":"削除","SSE.Views.ProtectedRangesEditDlg.textSelectData":"データの選択","SSE.Views.ProtectedRangesEditDlg.textYou":"あなた","SSE.Views.ProtectedRangesEditDlg.txtAccess":"範囲へのアクセス","SSE.Views.ProtectedRangesEditDlg.txtEmpty":"この項目は必須です","SSE.Views.ProtectedRangesEditDlg.txtProtect":"保護する","SSE.Views.ProtectedRangesEditDlg.txtRange":"範囲","SSE.Views.ProtectedRangesEditDlg.txtRangeName":"タイトル","SSE.Views.ProtectedRangesEditDlg.txtYouCanEdit":"この範囲を編集できるのは自分だけ","SSE.Views.ProtectedRangesEditDlg.userPlaceholder":"名前またはメールアドレスを入力してください","SSE.Views.ProtectedRangesManagerDlg.guestText":"ゲスト","SSE.Views.ProtectedRangesManagerDlg.lockText":"ロックされた","SSE.Views.ProtectedRangesManagerDlg.textDelete":"削除","SSE.Views.ProtectedRangesManagerDlg.textEdit":"編集","SSE.Views.ProtectedRangesManagerDlg.textEmpty":"保護範囲はまだ作成されていません。
少なくとも1つの保護範囲を作成すると、このフィールドに表示されます。","SSE.Views.ProtectedRangesManagerDlg.textFilter":"フィルタ","SSE.Views.ProtectedRangesManagerDlg.textFilterAll":"すべて","SSE.Views.ProtectedRangesManagerDlg.textNew":"新しい","SSE.Views.ProtectedRangesManagerDlg.textProtect":"シートを保護する","SSE.Views.ProtectedRangesManagerDlg.textRange":"範囲","SSE.Views.ProtectedRangesManagerDlg.textRangesDesc":"編集範囲を選択した人に限定することができます。","SSE.Views.ProtectedRangesManagerDlg.textTitle":"タイトル","SSE.Views.ProtectedRangesManagerDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.ProtectedRangesManagerDlg.txtAccess":"アクセス","SSE.Views.ProtectedRangesManagerDlg.txtDenied":"拒否された","SSE.Views.ProtectedRangesManagerDlg.txtEdit":"編集","SSE.Views.ProtectedRangesManagerDlg.txtEditRange":"範囲を編集する","SSE.Views.ProtectedRangesManagerDlg.txtNewRange":"新しい範囲","SSE.Views.ProtectedRangesManagerDlg.txtTitle":"保護された範囲","SSE.Views.ProtectedRangesManagerDlg.txtView":"表示","SSE.Views.ProtectedRangesManagerDlg.warnDelete":"保護された範囲{0}を削除してよろしいですか?
スプレッドシートの編集アクセス権を持っている人は、誰でも範囲のコンテンツを編集することができます。","SSE.Views.ProtectedRangesManagerDlg.warnDeleteRanges":"保護された範囲を削除してよろしいですか?
スプレッドシートの編集権限を持つ人は誰でも、その範囲のコンテンツを編集することができます。","SSE.Views.ProtectRangesDlg.guestText":"ゲスト","SSE.Views.ProtectRangesDlg.lockText":"ロックされた","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.textTitle":"タイトル","SSE.Views.ProtectRangesDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.ProtectRangesDlg.txtEditRange":"範囲を編集する","SSE.Views.ProtectRangesDlg.txtNewRange":"新しい範囲","SSE.Views.ProtectRangesDlg.txtNo":"いいえ","SSE.Views.ProtectRangesDlg.txtTitle":"ユーザーに範囲の編集を許可する","SSE.Views.ProtectRangesDlg.txtYes":"はい","SSE.Views.ProtectRangesDlg.warnDelete":"{0}名前を削除してもよろしいですか?","SSE.Views.RemoveDuplicatesDialog.textColumns":"列","SSE.Views.RemoveDuplicatesDialog.textDescription":"重複する値を削除するには、1つ以上の列を選択してください。","SSE.Views.RemoveDuplicatesDialog.textHeaders":"先頭行に見出しが含まれる場合","SSE.Views.RemoveDuplicatesDialog.textSelectAll":"すべてを選択","SSE.Views.RemoveDuplicatesDialog.txtTitle":"重複データを削除","SSE.Views.RightMenu.ariaRightMenu":"右メニュー","SSE.Views.RightMenu.txtCellSettings":"セル設定","SSE.Views.RightMenu.txtChartSettings":"グラフの設定","SSE.Views.RightMenu.txtImageSettings":"画像の設定","SSE.Views.RightMenu.txtParagraphSettings":"段落の設定","SSE.Views.RightMenu.txtPivotSettings":"ピボットテーブルの設定","SSE.Views.RightMenu.txtSettings":"共通設定","SSE.Views.RightMenu.txtShapeSettings":"図形の設定","SSE.Views.RightMenu.txtSignatureSettings":"サインの設定","SSE.Views.RightMenu.txtSlicerSettings":"スライサーの設定","SSE.Views.RightMenu.txtSparklineSettings":"スパークライン設定","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.ScaleDialog.textScaleTo":"拡大縮小","SSE.Views.ScaleDialog.textTitle":"スケール設定","SSE.Views.ScaleDialog.textWidth":"幅","SSE.Views.SetValueDialog.txtMaxText":"このフィールドの最大値は、{0}です。","SSE.Views.SetValueDialog.txtMinText":"このフィールドの最小値は、{0}です。","SSE.Views.ShapeSettings.strBackground":"背景色","SSE.Views.ShapeSettings.strChange":"図形の変更","SSE.Views.ShapeSettings.strColor":"色","SSE.Views.ShapeSettings.strFill":"塗りつぶし","SSE.Views.ShapeSettings.strForeground":"前景色","SSE.Views.ShapeSettings.strPattern":"パターン","SSE.Views.ShapeSettings.strShadow":"影を表示する","SSE.Views.ShapeSettings.strSize":"サイズ","SSE.Views.ShapeSettings.strStroke":"線","SSE.Views.ShapeSettings.strTransparency":"不透明度","SSE.Views.ShapeSettings.strType":"タイプ","SSE.Views.ShapeSettings.textAdjustShadow":"影の調整","SSE.Views.ShapeSettings.textAdvanced":"詳細設定の表示","SSE.Views.ShapeSettings.textAngle":"角","SSE.Views.ShapeSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","SSE.Views.ShapeSettings.textColor":"色での塗りつぶし","SSE.Views.ShapeSettings.textDirection":"方向","SSE.Views.ShapeSettings.textEditPoints":"頂点の編集","SSE.Views.ShapeSettings.textEditShape":"図形の編集","SSE.Views.ShapeSettings.textEmptyPattern":"パターンなし","SSE.Views.ShapeSettings.textEyedropper":"スポイト","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":"塗りつぶし(グラデーション)","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.textMoreColors":"その他の色","SSE.Views.ShapeSettings.textNoFill":"塗りつぶしなし","SSE.Views.ShapeSettings.textNoShadow":"影なし","SSE.Views.ShapeSettings.textOriginalSize":"元のサイズ","SSE.Views.ShapeSettings.textPatternFill":"パターン","SSE.Views.ShapeSettings.textPosition":"位置","SSE.Views.ShapeSettings.textRadial":"放射状","SSE.Views.ShapeSettings.textRecentlyUsed":"最近使った項目","SSE.Views.ShapeSettings.textRotate90":"90度回転","SSE.Views.ShapeSettings.textRotation":"回転","SSE.Views.ShapeSettings.textSelectImage":"画像の選択","SSE.Views.ShapeSettings.textSelectTexture":"選択","SSE.Views.ShapeSettings.textShadow":"影","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":"キャンバス","SSE.Views.ShapeSettings.txtCarton":"カートン","SSE.Views.ShapeSettings.txtDarkFabric":"ダークファブリック","SSE.Views.ShapeSettings.txtGrain":"粒子","SSE.Views.ShapeSettings.txtGranite":"みかげ石","SSE.Views.ShapeSettings.txtGreyPaper":"グレー紙","SSE.Views.ShapeSettings.txtKnit":"ニット","SSE.Views.ShapeSettings.txtLeather":"レザー","SSE.Views.ShapeSettings.txtNoBorders":"線なし","SSE.Views.ShapeSettings.txtOffsetBottom":"オフセット:下","SSE.Views.ShapeSettings.txtOffsetBottomLeft":"オフセット:左下","SSE.Views.ShapeSettings.txtOffsetBottomRight":"オフセット:右下","SSE.Views.ShapeSettings.txtOffsetCenter":"オフセット:中央","SSE.Views.ShapeSettings.txtOffsetLeft":"オフセット:左","SSE.Views.ShapeSettings.txtOffsetRight":"オフセット:右","SSE.Views.ShapeSettings.txtOffsetTop":"オフセット:上","SSE.Views.ShapeSettings.txtOffsetTopLeft":"オフセット:左上","SSE.Views.ShapeSettings.txtOffsetTopRight":"オフセット:右上","SSE.Views.ShapeSettings.txtPapyrus":"パピルス","SSE.Views.ShapeSettings.txtWood":"木","SSE.Views.ShapeSettingsAdvanced.strColumns":"列","SSE.Views.ShapeSettingsAdvanced.strMargins":"テキストの埋め込み文字","SSE.Views.ShapeSettingsAdvanced.textAbsolute":"セルで移動したりサイズを変更したりしない","SSE.Views.ShapeSettingsAdvanced.textAlt":"代替テキスト","SSE.Views.ShapeSettingsAdvanced.textAltDescription":"説明","SSE.Views.ShapeSettingsAdvanced.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","SSE.Views.ShapeSettingsAdvanced.textAltTitle":"タイトル","SSE.Views.ShapeSettingsAdvanced.textAngle":"角","SSE.Views.ShapeSettingsAdvanced.textArrows":"矢印","SSE.Views.ShapeSettingsAdvanced.textAutofit":"自動調整","SSE.Views.ShapeSettingsAdvanced.textBeginSize":"始点のサイズ","SSE.Views.ShapeSettingsAdvanced.textBeginStyle":"始点のスタイル","SSE.Views.ShapeSettingsAdvanced.textBevel":"面取り","SSE.Views.ShapeSettingsAdvanced.textBottom":"下","SSE.Views.ShapeSettingsAdvanced.textCapType":"線の先端","SSE.Views.ShapeSettingsAdvanced.textColNumber":"列数","SSE.Views.ShapeSettingsAdvanced.textEndSize":"終点のサイズ","SSE.Views.ShapeSettingsAdvanced.textEndStyle":"終点のスタイル","SSE.Views.ShapeSettingsAdvanced.textFlat":"フラット","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":"ラウンド","SSE.Views.ShapeSettingsAdvanced.textSize":"サイズ","SSE.Views.ShapeSettingsAdvanced.textSnap":"セルに合わせる","SSE.Views.ShapeSettingsAdvanced.textSpacing":"列の間隔","SSE.Views.ShapeSettingsAdvanced.textSquare":"四角の","SSE.Views.ShapeSettingsAdvanced.textTextBox":"テキストボックス","SSE.Views.ShapeSettingsAdvanced.textTitle":"図形 - 詳細設定","SSE.Views.ShapeSettingsAdvanced.textTop":"トップ","SSE.Views.ShapeSettingsAdvanced.textTwoCell":"セルで移動してサイズを変更する","SSE.Views.ShapeSettingsAdvanced.textVertically":"縦に","SSE.Views.ShapeSettingsAdvanced.textWeightArrows":"太さ&矢印","SSE.Views.ShapeSettingsAdvanced.textWidth":"幅","SSE.Views.SignatureSettings.notcriticalErrorTitle":"警告","SSE.Views.SignatureSettings.strDelete":"署名の削除","SSE.Views.SignatureSettings.strDetails":"サインの詳細","SSE.Views.SignatureSettings.strInvalid":"無効な署名","SSE.Views.SignatureSettings.strRequested":"要求された署名","SSE.Views.SignatureSettings.strSetup":"サインの設定","SSE.Views.SignatureSettings.strSign":"サインする","SSE.Views.SignatureSettings.strSignature":"署名","SSE.Views.SignatureSettings.strSigner":"署名者","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.strSorting":"並べ替えとフィルター","SSE.Views.SlicerSettings.textAdvanced":"詳細設定の表示","SSE.Views.SlicerSettings.textAsc":"昇順","SSE.Views.SlicerSettings.textAZ":"昇順","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.textSmallLarge":"最小から最大へ","SSE.Views.SlicerSettings.textStyle":"スタイル","SSE.Views.SlicerSettings.textVert":"縦に","SSE.Views.SlicerSettings.textWidth":"幅","SSE.Views.SlicerSettings.textZA":"降順","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.strSorting":"並べ替えとフィルター","SSE.Views.SlicerSettingsAdvanced.strStyle":"スタイル","SSE.Views.SlicerSettingsAdvanced.strStyleSize":"スタイルとサイズ","SSE.Views.SlicerSettingsAdvanced.strWidth":"幅","SSE.Views.SlicerSettingsAdvanced.textAbsolute":"セルで移動したりサイズを変更したりしない","SSE.Views.SlicerSettingsAdvanced.textAlt":"代替テキスト","SSE.Views.SlicerSettingsAdvanced.textAltDescription":"説明","SSE.Views.SlicerSettingsAdvanced.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","SSE.Views.SlicerSettingsAdvanced.textAltTitle":"タイトル","SSE.Views.SlicerSettingsAdvanced.textAsc":"昇順","SSE.Views.SlicerSettingsAdvanced.textAZ":"昇順","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.textSmallLarge":"最小から最大へ","SSE.Views.SlicerSettingsAdvanced.textSnap":"セルに合わせる","SSE.Views.SlicerSettingsAdvanced.textSort":"並べ替え","SSE.Views.SlicerSettingsAdvanced.textSourceName":"ソース名","SSE.Views.SlicerSettingsAdvanced.textTitle":"スライサーの高度な設定","SSE.Views.SlicerSettingsAdvanced.textTwoCell":"セルで移動してサイズを変更する","SSE.Views.SlicerSettingsAdvanced.textZA":"降順","SSE.Views.SlicerSettingsAdvanced.txtEmpty":"この項目は必須です","SSE.Views.SolverDlg.textAdd":"Add","SSE.Views.SolverDlg.textBin":"bin","SSE.Views.SolverDlg.textConfirmChangeMethod":"You won't be able to return to %1 method if you run solver.","SSE.Views.SolverDlg.textConfirmReset":"Reset all solver options and cell selections?","SSE.Views.SolverDlg.textConstraints":"Subject to the constraints","SSE.Views.SolverDlg.textDataRange":"Problem to solve not specified.","SSE.Views.SolverDlg.textDelete":"Delete","SSE.Views.SolverDlg.textDif":"dif","SSE.Views.SolverDlg.textEdit":"Change","SSE.Views.SolverDlg.textEmptyList":"No constraints have been created yet.
Create at least one, and it will appear in this list.","SSE.Views.SolverDlg.textEvolutionary":"Evolutionary","SSE.Views.SolverDlg.textInt":"int","SSE.Views.SolverDlg.textManyVarCells":"Too many Variable cells.","SSE.Views.SolverDlg.textMax":"Max","SSE.Views.SolverDlg.textMethod":"Solving method","SSE.Views.SolverDlg.textMethodDesc":"LP Simplex engine is used for linear solver problem.","SSE.Views.SolverDlg.textMin":"Min","SSE.Views.SolverDlg.textMustContainFormula":"Objective cell contents must be a formula.","SSE.Views.SolverDlg.textMustSingleCell":"Objective cell must be a single cell on the active sheet.","SSE.Views.SolverDlg.textNonlinear":"GRG Nonlinear","SSE.Views.SolverDlg.textNonNegative":"Make unconstrained variables non-negative","SSE.Views.SolverDlg.textNotSupported":"Nonlinear or evolutionary methods are not supported yet. If you need it, %1","SSE.Views.SolverDlg.textObjective":"Set objective","SSE.Views.SolverDlg.textOptions":"Options","SSE.Views.SolverDlg.textReadMore":"Read more","SSE.Views.SolverDlg.textReset":"Reset","SSE.Views.SolverDlg.textResetAll":"Reset all","SSE.Views.SolverDlg.textSelectData":"Select data","SSE.Views.SolverDlg.textSimplex":"Simplex LP","SSE.Views.SolverDlg.textSolve":"Solve","SSE.Views.SolverDlg.textTellUs":"tell us about it","SSE.Views.SolverDlg.textTitle":"Solver parameters","SSE.Views.SolverDlg.textTo":"To","SSE.Views.SolverDlg.textUnsupportedConstraints":"Some of the constraints contain unsupported int, bin, or dif relationships.
Please delete them or change the relationships to supported <=, =, >=.","SSE.Views.SolverDlg.textValueOf":"Value of","SSE.Views.SolverDlg.textVars":"By changing variable cell","SSE.Views.SolverDlg.txtEmpty":"This field is required","SSE.Views.SolverDlg.txtErrorNumber":"Your entry cannot be used. An integer or decimal number may be required.","SSE.Views.SolverMethodDialog.txtAutoScale":"Use automatic scaling","SSE.Views.SolverMethodDialog.txtIgnore":"Ignore integer constraints","SSE.Views.SolverMethodDialog.txtIterations":"Iterations","SSE.Views.SolverMethodDialog.txtIterationsInvalid":"Iterations must be a positive number.","SSE.Views.SolverMethodDialog.txtMaxTime":"Max time (sec)","SSE.Views.SolverMethodDialog.txtMaxTimeInvalid":"Max time must be a positive number.","SSE.Views.SolverMethodDialog.txtOptimality":"Integer optimality (%)","SSE.Views.SolverMethodDialog.txtOptimalityInvalid":"Integer tolerance must be a small positive number.","SSE.Views.SolverMethodDialog.txtPrecision":"Constraint precision","SSE.Views.SolverMethodDialog.txtPrecisionInvalid":"Precision must be a small positive number.","SSE.Views.SolverMethodDialog.txtSolverInt":"Solving with integer constraints","SSE.Views.SolverMethodDialog.txtSolverLimits":"Solving limits","SSE.Views.SolverMethodDialog.txtTitle":"Method options","SSE.Views.SolverResultsDlg.txtCantImprove":"Solver cannot improve the current solution. All constraints are satisfied.","SSE.Views.SolverResultsDlg.txtCantImproveDesc":"When the Evolutionary engine is used, this means Solver stopped because is can not find a better solution in the given time.","SSE.Views.SolverResultsDlg.txtConverged":"Solver has converged to the current solution. All constraints are satisfied.","SSE.Views.SolverResultsDlg.txtConvergedDesc":"Solver has performed 5 iterations for which the objective did not move significantly. Try a smaller convergence setting, or a different starting point.","SSE.Views.SolverResultsDlg.txtErrorModel":"Error in model. Please verify that all cells and Constraints are valid.","SSE.Views.SolverResultsDlg.txtErrorModelDesc":"Perhaps some cells that are not Variable cells are marked as Integer, Binary or AllDifferent.","SSE.Views.SolverResultsDlg.txtErrorVal":"Solver encountered an error value in the Objective cell or a Constraint cell.","SSE.Views.SolverResultsDlg.txtErrorValDesc":"One of the cells in the worksheet became an error value when Solver tried certain values for the Variable Cells.","SSE.Views.SolverResultsDlg.txtIntSolution":"Solver found an integer solution within tolerance. All constraints are satisfied.","SSE.Views.SolverResultsDlg.txtIntSolutionDesc":"It is possible that better integer solutions exist. To make sure Solver finds the very best solution, set the integer tolerance in the options dialog to 0%.","SSE.Views.SolverResultsDlg.txtKeep":"Keep solver solution","SSE.Views.SolverResultsDlg.txtLineConditions":"The linearity conditions required by this LP Solver are not satisfied.","SSE.Views.SolverResultsDlg.txtLineConditionsDesc":"Create a linearity report to see where the problem is, or switch to the GRG engine.","SSE.Views.SolverResultsDlg.txtNoFeasible":"Solver could not find a feasible solution.","SSE.Views.SolverResultsDlg.txtNoFeasibleDesc":"Solver can not find a point for which all Constraints are satisfied.","SSE.Views.SolverResultsDlg.txtNotConverge":"The Objective cell values do not converge.","SSE.Views.SolverResultsDlg.txtNotConvergeDesc":"Solver can make the Objective cell as large (or small when minimizing) as it wants.","SSE.Views.SolverResultsDlg.txtNotEnoughMemory":"There is not enough memory available to solve the problem.","SSE.Views.SolverResultsDlg.txtOpenParams":"Return to solver parameters dialog","SSE.Views.SolverResultsDlg.txtOptimalSolution":"Solver found a solution. All Constraints and optimality conditions are satisfied.","SSE.Views.SolverResultsDlg.txtOptimalSolutionDesc":"When Simplex LP is used, this means Solver has found a global optimal solution.","SSE.Views.SolverResultsDlg.txtRestore":"Restore original values","SSE.Views.SolverResultsDlg.txtStopped":"Solver stopped at user’s request.","SSE.Views.SolverResultsDlg.txtStoppedDesc":"Solver has stopped before finding a globally optimal solution. The best found solution, if any, will be given.","SSE.Views.SolverResultsDlg.txtTitle":"Solver results","SSE.Views.SortDialog.errorEmpty":"すべての並べ替えの基準には、列または行を指定する必要があります。","SSE.Views.SortDialog.errorMoreOneCol":"複数の列が選択されています。","SSE.Views.SortDialog.errorMoreOneRow":"複数の行が選択されています。","SSE.Views.SortDialog.errorNotOriginalCol":"選択した列が元の選択範囲にありません。","SSE.Views.SortDialog.errorNotOriginalRow":"選択した行が元の選択範囲にありません。","SSE.Views.SortDialog.errorSameColumnColor":"%1は同じ色で複数回並べ替えられています。
重複する並べ替えの基準を削除して、再びお試しください。","SSE.Views.SortDialog.errorSameColumnValue":"%1は値で複数回並べ替えられています。
重複する並べ替えの基準を削除して、再びお試しください。","SSE.Views.SortDialog.textAsc":"昇順","SSE.Views.SortDialog.textAuto":"自動","SSE.Views.SortDialog.textAZ":"昇順","SSE.Views.SortDialog.textBelow":"下","SSE.Views.SortDialog.textBtnCopy":"コピー","SSE.Views.SortDialog.textBtnDelete":"削除","SSE.Views.SortDialog.textBtnNew":"新しい","SSE.Views.SortDialog.textCellColor":"セルの背景色","SSE.Views.SortDialog.textColumn":"列","SSE.Views.SortDialog.textDesc":"降順","SSE.Views.SortDialog.textDown":"レベルを下げる","SSE.Views.SortDialog.textFontColor":"フォントの色","SSE.Views.SortDialog.textLeft":"左","SSE.Views.SortDialog.textLevels":"レベル","SSE.Views.SortDialog.textMoreCols":"(他の行...)","SSE.Views.SortDialog.textMoreRows":"(他の列...)","SSE.Views.SortDialog.textNone":"なし","SSE.Views.SortDialog.textOptions":"設定","SSE.Views.SortDialog.textOrder":"順","SSE.Views.SortDialog.textRight":"右に","SSE.Views.SortDialog.textRow":"行","SSE.Views.SortDialog.textSort":"並べ替え","SSE.Views.SortDialog.textSortBy":"並べ替え","SSE.Views.SortDialog.textThenBy":"次に優先されるキー","SSE.Views.SortDialog.textTop":"上","SSE.Views.SortDialog.textUp":"レベルを上げる","SSE.Views.SortDialog.textValues":"値","SSE.Views.SortDialog.textZA":"降順","SSE.Views.SortDialog.txtInvalidRange":"無効なセル範囲","SSE.Views.SortDialog.txtTitle":"並べ替え","SSE.Views.SortFilterDialog.textAsc":"次の値で降順","SSE.Views.SortFilterDialog.textDesc":"次の値で降順","SSE.Views.SortFilterDialog.textNoSort":"並べ替えなし","SSE.Views.SortFilterDialog.txtTitle":"並べ替え","SSE.Views.SortFilterDialog.txtTitleValue":"値で並べ替え","SSE.Views.SortOptionsDialog.textCase":"大文字と小文字の区別する","SSE.Views.SortOptionsDialog.textHeaders":"先頭行をデータの見出しとして使用する","SSE.Views.SortOptionsDialog.textLeftRight":"左から右に並べ替え","SSE.Views.SortOptionsDialog.textOrientation":"印刷方向","SSE.Views.SortOptionsDialog.textTitle":"並べ替えの設定","SSE.Views.SortOptionsDialog.textTopBottom":"上から下に並べ替え","SSE.Views.SpecialPasteDialog.textAdd":"追加","SSE.Views.SpecialPasteDialog.textAll":"すべて","SSE.Views.SpecialPasteDialog.textBlanks":"空白セルを無視する","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.textSub":"減算","SSE.Views.SpecialPasteDialog.textTitle":"特殊貼付け","SSE.Views.SpecialPasteDialog.textTranspose":"入れ替える","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.txtClosePanel":"スペルを閉じる","SSE.Views.Spellcheck.txtComplete":"スペルチェックが完了しました","SSE.Views.Spellcheck.txtDictionaryLanguage":"辞書言語","SSE.Views.Spellcheck.txtNextTip":"次の言葉へ","SSE.Views.Spellcheck.txtSpelling":"スペル","SSE.Views.Statusbar.CopyDialog.itemMoveToEnd":"(末尾へ移動)","SSE.Views.Statusbar.CopyDialog.textCreateCopy":"コピーを作成する","SSE.Views.Statusbar.CopyDialog.textCreateNewSpreadsheet":"(新しいスプレッドシートを作成)","SSE.Views.Statusbar.CopyDialog.textMoveBefore":"シートの前へ移動","SSE.Views.Statusbar.CopyDialog.textSpreadsheet":"スプレッドシート","SSE.Views.Statusbar.filteredRecordsText":"{0}の{1}がフィルタリングされた","SSE.Views.Statusbar.filteredText":"フィルタモード","SSE.Views.Statusbar.itemAverage":"平均","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.itemMoveOrCopy":"移動またはコピーする","SSE.Views.Statusbar.itemProtect":"保護する","SSE.Views.Statusbar.itemRename":"名前を変更する","SSE.Views.Statusbar.itemStatus":"保存の状況​​","SSE.Views.Statusbar.itemSum":"合計","SSE.Views.Statusbar.itemTabColor":"シート見出しの色","SSE.Views.Statusbar.itemUnProtect":"保護を解除する","SSE.Views.Statusbar.RenameDialog.errNameExists":"指定された名前のワークシートが既に存在します。","SSE.Views.Statusbar.RenameDialog.errNameWrongChar":"シート名に次の文字を含むことはできません:\\/*?[]:","SSE.Views.Statusbar.RenameDialog.labelSheetName":"シートの名前","SSE.Views.Statusbar.selectAllSheets":"すべてのシートを選択する","SSE.Views.Statusbar.sheetIndexText":"シート{0}/{1}","SSE.Views.Statusbar.textAverage":"平均","SSE.Views.Statusbar.textCount":"データの個数","SSE.Views.Statusbar.textMax":"最大","SSE.Views.Statusbar.textMin":"最小","SSE.Views.Statusbar.textNewColor":"その他の色","SSE.Views.Statusbar.textNoColor":"色なし","SSE.Views.Statusbar.textSum":"合計","SSE.Views.Statusbar.tipAddTab":"ワークシートを追加","SSE.Views.Statusbar.tipFirst":"最初のリストまでスクロール","SSE.Views.Statusbar.tipLast":"最後のリストまでスクロール","SSE.Views.Statusbar.tipListOfSheets":"シートリスト","SSE.Views.Statusbar.tipNext":"シートリストの右にスクロール","SSE.Views.Statusbar.tipPrev":"シートリストの左にスクロール","SSE.Views.Statusbar.tipZoomFactor":"ズーム","SSE.Views.Statusbar.tipZoomIn":"拡大","SSE.Views.Statusbar.tipZoomOut":"縮小","SSE.Views.Statusbar.ungroupSheets":"シートをグループ解除する","SSE.Views.Statusbar.zoomText":"ズーム{0}%","SSE.Views.TableDesignTab.deleteColumnText":"列の削除","SSE.Views.TableDesignTab.deleteRowText":"行の削除","SSE.Views.TableDesignTab.deleteTableText":"表の削除","SSE.Views.TableDesignTab.insertColumnLeftText":"左に列を挿入","SSE.Views.TableDesignTab.insertColumnRightText":"右に列を挿入","SSE.Views.TableDesignTab.insertRowAboveText":"上に行を挿入","SSE.Views.TableDesignTab.insertRowBelowText":"下に行を挿入","SSE.Views.TableDesignTab.selectColumnData":"列データの選択","SSE.Views.TableDesignTab.selectColumnText":"列全体の選択","SSE.Views.TableDesignTab.selectRowText":"行の選択","SSE.Views.TableDesignTab.selectTableText":"テーブルの選択","SSE.Views.TableDesignTab.tipAltText":"テーブルの代替タイトルと説明を設定する。","SSE.Views.TableDesignTab.tipConvertRange":"このテーブルを通常のセル範囲に変換してください。","SSE.Views.TableDesignTab.tipHeaderRow":"テーブルのヘッダー行を表示または非表示にする。","SSE.Views.TableDesignTab.tipInsertPivot":"ピボットテーブルを挿入","SSE.Views.TableDesignTab.tipInsertSlicer":"スライサーを挿入","SSE.Views.TableDesignTab.tipRemDuplicates":"シートから重複行を削除する。","SSE.Views.TableDesignTab.tipResize":"行や列を追加または削除して、このテーブルのサイズを変更してください。","SSE.Views.TableDesignTab.tipRowsCols":"行&列","SSE.Views.TableDesignTab.txtAltText":"代替テキスト","SSE.Views.TableDesignTab.txtBandedColumns":"縞模様の例","SSE.Views.TableDesignTab.txtBandedRows":"縞模様の行","SSE.Views.TableDesignTab.txtConvertToRange":"範囲に変換する","SSE.Views.TableDesignTab.txtFilterButton":"フィルタのボタン","SSE.Views.TableDesignTab.txtFirstColumn":"最初の列","SSE.Views.TableDesignTab.txtGroupTable_Custom":"カスタム","SSE.Views.TableDesignTab.txtGroupTable_Dark":"ダーク","SSE.Views.TableDesignTab.txtGroupTable_Light":"ライト","SSE.Views.TableDesignTab.txtGroupTable_Medium":"中","SSE.Views.TableDesignTab.txtHeaderRow":"ヘッダー行","SSE.Views.TableDesignTab.txtLastColumn":"最後の列","SSE.Views.TableDesignTab.txtPivot":"ピボット","SSE.Views.TableDesignTab.txtRemDuplicates":"重複データを削除","SSE.Views.TableDesignTab.txtResize":"テーブルのサイズ変更","SSE.Views.TableDesignTab.txtRowsCols":"行&列","SSE.Views.TableDesignTab.txtSlicer":"スライサー","SSE.Views.TableDesignTab.txtTotalRow":"合計行","SSE.Views.TableOptionsDialog.errorAutoFilterDataRange":"選んだ範囲にこの操作を適用できません。
範囲内の1つのセルを選んでから、もう一度お試しください。","SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError":"選択したセル範囲で操作を完了できませんでした。
最初のテーブルの行は同じ行にあったように、範囲を選択してください。
新しいテーブル範囲が元のテーブル範囲に重なるようにしてください。","SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables":"選択したセル範囲で操作を完了できませんでした。
他のテーブルが含まれていない範囲を選択してください。","SSE.Views.TableOptionsDialog.errorMultiCellFormula":"複数セルの配列数式はテーブルでは使用できません。","SSE.Views.TableOptionsDialog.txtEmpty":"このフィールドは必須項目です","SSE.Views.TableOptionsDialog.txtFormat":"表を作成する","SSE.Views.TableOptionsDialog.txtInvalidRange":"エラー!セルの範囲が正しくありません。","SSE.Views.TableOptionsDialog.txtNote":"ヘッダーは同じ行に残しておく必要があり、結果のテーブル範囲は元のテーブル範囲と重ねる必要があります。","SSE.Views.TableOptionsDialog.txtTitle":"タイトル","SSE.Views.TableSettingsAdvanced.textAlt":"代替テキスト","SSE.Views.TableSettingsAdvanced.textAltDescription":"説明","SSE.Views.TableSettingsAdvanced.textAltTip":"視覚障害や認知障害のある人が、画像や図形、図表にどのような情報が含まれているかを理解しやすくするため、そのオブジェクトについて目視できる情報を文章で表現したものです。","SSE.Views.TableSettingsAdvanced.textAltTitle":"タイトル","SSE.Views.TableSettingsAdvanced.textTitle":"テーブル - 詳細設定","SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom":"ユーザー設定","SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark":"ダーク","SSE.Views.TableSettingsAdvanced.txtGroupTable_Light":"ライト","SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium":"中","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark":"表のスタイル:暗","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight":"表のスタイル:明るい","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium":"表のスタイル:中","SSE.Views.TextArtSettings.strBackground":"背景色","SSE.Views.TextArtSettings.strColor":"色","SSE.Views.TextArtSettings.strFill":"塗りつぶし","SSE.Views.TextArtSettings.strForeground":"前景色","SSE.Views.TextArtSettings.strPattern":"パターン","SSE.Views.TextArtSettings.strSize":"サイズ","SSE.Views.TextArtSettings.strStroke":"線","SSE.Views.TextArtSettings.strTransparency":"不透明度","SSE.Views.TextArtSettings.strType":"タイプ","SSE.Views.TextArtSettings.textAngle":"角","SSE.Views.TextArtSettings.textBorderSizeErr":"入力された値が正しくありません。
0〜1584の数値を入力してください。","SSE.Views.TextArtSettings.textColor":"色での塗りつぶし","SSE.Views.TextArtSettings.textDirection":"方向","SSE.Views.TextArtSettings.textEmptyPattern":"パターンなし","SSE.Views.TextArtSettings.textFromFile":"ファイルから","SSE.Views.TextArtSettings.textFromUrl":"URLから","SSE.Views.TextArtSettings.textGradient":"グラデーションのポイント","SSE.Views.TextArtSettings.textGradientFill":"塗りつぶし(グラデーション)","SSE.Views.TextArtSettings.textImageTexture":"画像またはテクスチャ","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":"ストレッチ","SSE.Views.TextArtSettings.textStyle":"スタイル","SSE.Views.TextArtSettings.textTemplate":"テンプレート","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":"キャンバス","SSE.Views.TextArtSettings.txtCarton":"カートン","SSE.Views.TextArtSettings.txtDarkFabric":"ダークファブリック","SSE.Views.TextArtSettings.txtGrain":"粒子","SSE.Views.TextArtSettings.txtGranite":"みかげ石","SSE.Views.TextArtSettings.txtGreyPaper":"グレー紙","SSE.Views.TextArtSettings.txtKnit":"ニット","SSE.Views.TextArtSettings.txtLeather":"レザー","SSE.Views.TextArtSettings.txtNoBorders":"線なし","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":"スライサー","SSE.Views.Toolbar.capBtnInsSmartArt":"SmartArt","SSE.Views.Toolbar.capBtnInsSymbol":"記号","SSE.Views.Toolbar.capBtnMargins":"余白","SSE.Views.Toolbar.capBtnPageBreak":"区切り","SSE.Views.Toolbar.capBtnPageOrient":"印刷の向き","SSE.Views.Toolbar.capBtnPageSize":"サイズ","SSE.Views.Toolbar.capBtnPrintArea":"印刷範囲","SSE.Views.Toolbar.capBtnPrintTitles":"タイトルを印刷する","SSE.Views.Toolbar.capBtnScale":"拡大縮小印刷","SSE.Views.Toolbar.capImgAlign":"配置","SSE.Views.Toolbar.capImgBackward":"背面ヘ移動","SSE.Views.Toolbar.capImgForward":"前面ヘ移動","SSE.Views.Toolbar.capImgGroup":"グループ化","SSE.Views.Toolbar.capInsertChart":"グラフ","SSE.Views.Toolbar.capInsertChartRecommend":"おすすめのチャート","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.capInsertTextart":"テキストアート","SSE.Views.Toolbar.capShapesMerge":"図形を結合","SSE.Views.Toolbar.mniCapitalizeWords":"各単語を大文字にする","SSE.Views.Toolbar.mniImageFromFile":"ファイルから画像","SSE.Views.Toolbar.mniImageFromStorage":"ストレージから画像","SSE.Views.Toolbar.mniImageFromUrl":"URLから画像","SSE.Views.Toolbar.mniLowerCase":"小文字","SSE.Views.Toolbar.mniSentenceCase":"センテンスケース","SSE.Views.Toolbar.mniToggleCase":"大文字と小文字を入れ替える","SSE.Views.Toolbar.mniUpperCase":"大文字","SSE.Views.Toolbar.textAddPrintArea":"印刷範囲に追加","SSE.Views.Toolbar.textAlignBottom":"下揃え","SSE.Views.Toolbar.textAlignCenter":"中央揃え","SSE.Views.Toolbar.textAlignJust":"両端揃え","SSE.Views.Toolbar.textAlignLeft":"左揃え","SSE.Views.Toolbar.textAlignMiddle":"中央揃え","SSE.Views.Toolbar.textAlignRight":"右揃え","SSE.Views.Toolbar.textAlignTop":"上揃え","SSE.Views.Toolbar.textAllBorders":"すべての枠線","SSE.Views.Toolbar.textAlpha":"ギリシャ小文字アルファ","SSE.Views.Toolbar.textAuto":"自動","SSE.Views.Toolbar.textAutoColor":"自動","SSE.Views.Toolbar.textAutoColumnWidth":"Auto fit column width","SSE.Views.Toolbar.textAutoRowHeight":"Auto fit row height","SSE.Views.Toolbar.textBetta":"ギリシャ小文字ベータ","SSE.Views.Toolbar.textBlackHeart":"ブラック・ハート・スーツ","SSE.Views.Toolbar.textBold":"太字","SSE.Views.Toolbar.textBordersColor":"線の色","SSE.Views.Toolbar.textBordersStyle":"線のスタイル","SSE.Views.Toolbar.textBottom":"低:","SSE.Views.Toolbar.textBottomBorders":"下の枠線","SSE.Views.Toolbar.textBullet":"箇条書き","SSE.Views.Toolbar.textCellAlign":"セルの整列の書式設定","SSE.Views.Toolbar.textCellFormat":"Format","SSE.Views.Toolbar.textCenterBorders":"内側の垂直枠線","SSE.Views.Toolbar.textClearPrintArea":"印刷範囲を解除","SSE.Views.Toolbar.textClearRule":"ルールを消去","SSE.Views.Toolbar.textClockwise":"右回りに​​回転","SSE.Views.Toolbar.textColorScales":"色​​スケール","SSE.Views.Toolbar.textColumns":"Columns","SSE.Views.Toolbar.textColumnWidth":"Column width","SSE.Views.Toolbar.textCopyright":"著作権マーク","SSE.Views.Toolbar.textCounterCw":"左回りに​​回転","SSE.Views.Toolbar.textCustom":"ユーザー設定","SSE.Views.Toolbar.textCustomColumnWidth":"Custom column width","SSE.Views.Toolbar.textCustomRowHeight":"Custom row height","SSE.Views.Toolbar.textDataBars":"データ バー","SSE.Views.Toolbar.textDegree":"度記号","SSE.Views.Toolbar.textDelLeft":"左方向にシフト","SSE.Views.Toolbar.textDelPageBreak":"改ページの削除","SSE.Views.Toolbar.textDelta":"ギリシャ小文字デルタ","SSE.Views.Toolbar.textDelUp":"上方向にシフト","SSE.Views.Toolbar.textDiagDownBorder":"斜め(上から下)","SSE.Views.Toolbar.textDiagUpBorder":"斜め(下から上)","SSE.Views.Toolbar.textDirContext":"コンテキスト","SSE.Views.Toolbar.textDirLtr":"左から右へ","SSE.Views.Toolbar.textDirRtl":"右から左へ","SSE.Views.Toolbar.textDivision":"除算記号","SSE.Views.Toolbar.textDollar":"ドル記号","SSE.Views.Toolbar.textDone":"完了","SSE.Views.Toolbar.textDown":"下","SSE.Views.Toolbar.textEditVA":"表示エリアを編集する","SSE.Views.Toolbar.textEntireCol":"列全体","SSE.Views.Toolbar.textEntireRow":"行全体","SSE.Views.Toolbar.textEuro":"ユーロ記号","SSE.Views.Toolbar.textFewPages":"ページ","SSE.Views.Toolbar.textFillLeft":"左","SSE.Views.Toolbar.textFillRight":"右","SSE.Views.Toolbar.textFormatCellFill":"セルの塗りつぶしの書式設定","SSE.Views.Toolbar.textFormatCells":"Format cells","SSE.Views.Toolbar.textGreaterEqual":"以上","SSE.Views.Toolbar.textHeight":"高さ","SSE.Views.Toolbar.textHide":"Hide","SSE.Views.Toolbar.textHideVA":"表示エリアを非表示にする","SSE.Views.Toolbar.textHorizontal":"横書きテキスト","SSE.Views.Toolbar.textInfinity":"無限","SSE.Views.Toolbar.textInsDown":"下方向にシフト","SSE.Views.Toolbar.textInsideBorders":"内枠線","SSE.Views.Toolbar.textInsPageBreak":"改ページの挿入","SSE.Views.Toolbar.textInsRight":"右方向にシフト","SSE.Views.Toolbar.textItalic":"イタリック","SSE.Views.Toolbar.textItems":"アイテム","SSE.Views.Toolbar.textLandscape":"横向き","SSE.Views.Toolbar.textLeft":"左:","SSE.Views.Toolbar.textLeftBorders":"左の枠線","SSE.Views.Toolbar.textLessEqual":"以下","SSE.Views.Toolbar.textLetterPi":"ギリシャの小文字ピー","SSE.Views.Toolbar.textLockedCell":"Locked cell","SSE.Views.Toolbar.textManageRule":"ルールの管理","SSE.Views.Toolbar.textManyPages":"ページ","SSE.Views.Toolbar.textMarginsLast":"最後に適用した設定","SSE.Views.Toolbar.textMarginsNarrow":"狭い","SSE.Views.Toolbar.textMarginsNormal":"標準","SSE.Views.Toolbar.textMarginsWide":"広い","SSE.Views.Toolbar.textMiddleBorders":"内側の水平枠線","SSE.Views.Toolbar.textMoreBorders":"さらに多くの枠線","SSE.Views.Toolbar.textMoreFormats":"その他のフォーマット","SSE.Views.Toolbar.textMorePages":"その他のページ","SSE.Views.Toolbar.textMoreSymbols":"その他の記号","SSE.Views.Toolbar.textMoveCopySheet":"Move or copy sheet","SSE.Views.Toolbar.textNewColor":"その他の色","SSE.Views.Toolbar.textNewRule":"新しいルール","SSE.Views.Toolbar.textNoBorders":"枠線なし","SSE.Views.Toolbar.textNotEqualTo":"同等ではない","SSE.Views.Toolbar.textOneHalf":"普通分数の1/2","SSE.Views.Toolbar.textOnePage":"ページ","SSE.Views.Toolbar.textOneQuarter":"普通分数の1/4","SSE.Views.Toolbar.textOutBorders":"外枠線","SSE.Views.Toolbar.textPageMarginsCustom":"ユーザー設定の余白","SSE.Views.Toolbar.textPlusMinus":"プラスマイナス記号","SSE.Views.Toolbar.textPortrait":"縦向き","SSE.Views.Toolbar.textPrint":"印刷","SSE.Views.Toolbar.textPrintGridlines":"枠線の印刷","SSE.Views.Toolbar.textPrintHeadings":"見出しの印刷","SSE.Views.Toolbar.textPrintOptions":"印刷の設定","SSE.Views.Toolbar.textProtectSheet":"Protect sheet","SSE.Views.Toolbar.textRegistered":"登録商標マーク","SSE.Views.Toolbar.textRenameSheet":"Rename sheet","SSE.Views.Toolbar.textResetPageBreak":"すべての改ページをリセットする","SSE.Views.Toolbar.textRight":"右:","SSE.Views.Toolbar.textRightBorders":"右の枠線","SSE.Views.Toolbar.textRotateDown":"右へ90度回転","SSE.Views.Toolbar.textRotateUp":"左へ90度回転","SSE.Views.Toolbar.textRowHeight":"Row height","SSE.Views.Toolbar.textRows":"Rows","SSE.Views.Toolbar.textRtlSheet":"シート(右から左)","SSE.Views.Toolbar.textScale":"規模","SSE.Views.Toolbar.textScaleCustom":"ユーザー設定","SSE.Views.Toolbar.textSection":"節記号","SSE.Views.Toolbar.textSelection":"現在の選択項目から","SSE.Views.Toolbar.textSeries":"系列","SSE.Views.Toolbar.textSetPrintArea":"印刷範囲を設定する","SSE.Views.Toolbar.textShapesCombine":"結合","SSE.Views.Toolbar.textShapesFragment":"断片","SSE.Views.Toolbar.textShapesIntersect":"交差","SSE.Views.Toolbar.textShapesSubstract":"減算","SSE.Views.Toolbar.textShapesUnion":"連合","SSE.Views.Toolbar.textSheet":"Sheet","SSE.Views.Toolbar.textSheets":"Hidden sheets","SSE.Views.Toolbar.textShow":"Show","SSE.Views.Toolbar.textShowVA":"表示エリアを表示にする","SSE.Views.Toolbar.textSmile":"白い笑顔","SSE.Views.Toolbar.textSquareRoot":"平方根","SSE.Views.Toolbar.textStrikeout":"取り消し線","SSE.Views.Toolbar.textSubscript":"下付き","SSE.Views.Toolbar.textSubSuperscript":"下付き/上付きの文字","SSE.Views.Toolbar.textSuperscript":"上付き","SSE.Views.Toolbar.textTabCollaboration":"共同編集","SSE.Views.Toolbar.textTabColor":"Tab color","SSE.Views.Toolbar.textTabData":"データ","SSE.Views.Toolbar.textTabDraw":"描画","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.textTabTableDesign":"表のデザイン","SSE.Views.Toolbar.textTabView":"表示","SSE.Views.Toolbar.textThisPivot":"このピボットから","SSE.Views.Toolbar.textThisSheet":"このシートから","SSE.Views.Toolbar.textThisTable":"この表から","SSE.Views.Toolbar.textTilde":"チルダ","SSE.Views.Toolbar.textTop":"トップ: ","SSE.Views.Toolbar.textTopBorders":"上の枠線","SSE.Views.Toolbar.textTradeMark":"商標マーク","SSE.Views.Toolbar.textUnderline":"下線","SSE.Views.Toolbar.textUnProtectSheet":"Unprotect sheet","SSE.Views.Toolbar.textUp":"上","SSE.Views.Toolbar.textVertical":"縦書きテキスト","SSE.Views.Toolbar.textWidth":"幅","SSE.Views.Toolbar.textYen":"円記号","SSE.Views.Toolbar.textZoom":"ズーム","SSE.Views.Toolbar.tipAlignBottom":"下揃え","SSE.Views.Toolbar.tipAlignCenter":"中央揃え","SSE.Views.Toolbar.tipAlignJust":"両端揃え","SSE.Views.Toolbar.tipAlignLeft":"左揃え","SSE.Views.Toolbar.tipAlignMiddle":"中央揃え","SSE.Views.Toolbar.tipAlignRight":"右揃え","SSE.Views.Toolbar.tipAlignTop":"上揃え","SSE.Views.Toolbar.tipAutofilter":"並べ替えとフィルタ","SSE.Views.Toolbar.tipBack":"戻る","SSE.Views.Toolbar.tipBorders":"表の枠線","SSE.Views.Toolbar.tipCellStyle":"セルのスタイル","SSE.Views.Toolbar.tipChangeCase":"大文字小文字を変更","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.tipCut":"切り取り","SSE.Views.Toolbar.tipDecDecimal":"小数点以下の表示桁数を減らす","SSE.Views.Toolbar.tipDecFont":"フォントサイズの縮小","SSE.Views.Toolbar.tipDeleteOpt":"セルを削除","SSE.Views.Toolbar.tipDigStyleAccounting":"会計のスタイル","SSE.Views.Toolbar.tipDigStyleComma":"カンマスタイル","SSE.Views.Toolbar.tipDigStyleCurrency":"通貨スタイル","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.tipFormatCell":"Change the row height or column width, organize sheets, or protect or hide cells","SSE.Views.Toolbar.tipHAlighOle":"左右の整列","SSE.Views.Toolbar.tipImgAlign":"オブジェクトを整列する","SSE.Views.Toolbar.tipImgGroup":"オブジェクトをグループ化する","SSE.Views.Toolbar.tipIncDecimal":"小数点以下の表示桁数を増やす","SSE.Views.Toolbar.tipIncFont":"フォントサイズの拡大","SSE.Views.Toolbar.tipInsertChart":"グラフを挿入","SSE.Views.Toolbar.tipInsertChartRecommend":"推奨チャートを挿入","SSE.Views.Toolbar.tipInsertChartSpark":"グラフを挿入","SSE.Views.Toolbar.tipInsertEquation":"方程式を挿入","SSE.Views.Toolbar.tipInsertHorizontalText":"横書きテキストボックスの挿入","SSE.Views.Toolbar.tipInsertHyperlink":"ハイパーリンクを追加","SSE.Views.Toolbar.tipInsertImage":"画像を挿入","SSE.Views.Toolbar.tipInsertOpt":"セルを挿入","SSE.Views.Toolbar.tipInsertShape":"図形を挿入","SSE.Views.Toolbar.tipInsertSlicer":"スライサーを挿入","SSE.Views.Toolbar.tipInsertSmartArt":"SmartArtの挿入","SSE.Views.Toolbar.tipInsertSpark":"スパークラインを挿入する","SSE.Views.Toolbar.tipInsertSymbol":"記号を挿入","SSE.Views.Toolbar.tipInsertTable":"表の挿入","SSE.Views.Toolbar.tipInsertText":"テキストボックスを挿入する","SSE.Views.Toolbar.tipInsertTextart":"テキストアートの挿入","SSE.Views.Toolbar.tipInsertVerticalText":"縦書きテキストボックスの挿入","SSE.Views.Toolbar.tipMerge":"結合して、中央に配置する","SSE.Views.Toolbar.tipNone":"なし","SSE.Views.Toolbar.tipNumFormat":"数値の書式","SSE.Views.Toolbar.tipPageBreak":"印刷物で次のページを開始する位置に改行を追加する","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.tipPrintQuick":"クイックプリント","SSE.Views.Toolbar.tipPrintTitles":"タイトルを印刷する","SSE.Views.Toolbar.tipRedo":"やり直す","SSE.Views.Toolbar.tipReplace":"置き換え","SSE.Views.Toolbar.tipRtlSheet":"最初の列が右側に来るようにシートの方向を切り替える","SSE.Views.Toolbar.tipSave":"保存","SSE.Views.Toolbar.tipSaveCoauth":"他のユーザが変更を見れるために変更を保存します。","SSE.Views.Toolbar.tipScale":"拡大縮小印刷","SSE.Views.Toolbar.tipSelectAll":"すべて選択","SSE.Views.Toolbar.tipSendBackward":"背面ヘ移動","SSE.Views.Toolbar.tipSendForward":"前面ヘ移動","SSE.Views.Toolbar.tipShapesMerge":"図形を結合","SSE.Views.Toolbar.tipSynchronize":"ドキュメントは他のユーザーによって変更されました。変更を保存するためにここでクリックし、アップデートを再ロードしてください。","SSE.Views.Toolbar.tipTextDir":"Direction","SSE.Views.Toolbar.tipTextDirection":"テキスト方向","SSE.Views.Toolbar.tipTextFormatting":"その他のテキスト編集ツール","SSE.Views.Toolbar.tipTextOrientation":"印刷の向き","SSE.Views.Toolbar.tipUndo":"元に戻す","SSE.Views.Toolbar.tipVAlighOle":"垂直揃え","SSE.Views.Toolbar.tipVisibleArea":"表示エリア","SSE.Views.Toolbar.tipWrap":"折り返して​​全体を表示する","SSE.Views.Toolbar.txtAccounting":"会計","SSE.Views.Toolbar.txtAdditional":"追加","SSE.Views.Toolbar.txtAscending":"昇順","SSE.Views.Toolbar.txtAutosumTip":"合計","SSE.Views.Toolbar.txtCellStyle":"セルのスタイル","SSE.Views.Toolbar.txtClearAll":"すべて","SSE.Views.Toolbar.txtClearComments":"コメント","SSE.Views.Toolbar.txtClearFilter":"フィルタをクリアする","SSE.Views.Toolbar.txtClearFormat":"形式","SSE.Views.Toolbar.txtClearFormula":"関数","SSE.Views.Toolbar.txtClearHyper":"ハイパーリンク","SSE.Views.Toolbar.txtClearText":"テキスト","SSE.Views.Toolbar.txtCurrency":"通貨","SSE.Views.Toolbar.txtCustom":"ユーザー設定","SSE.Views.Toolbar.txtDate":"日付","SSE.Views.Toolbar.txtDateLong":"長い日付形式","SSE.Views.Toolbar.txtDateShort":"日付 (短い形式)","SSE.Views.Toolbar.txtDateTime":"日付&時刻","SSE.Views.Toolbar.txtDescending":"降順","SSE.Views.Toolbar.txtDollar":"$ ドル","SSE.Views.Toolbar.txtEuro":"€ ユーロ","SSE.Views.Toolbar.txtExp":"指数","SSE.Views.Toolbar.txtFillNum":"塗りつぶし","SSE.Views.Toolbar.txtFilter":"フィルター​​","SSE.Views.Toolbar.txtFormula":"関数を挿入","SSE.Views.Toolbar.txtFraction":"分数","SSE.Views.Toolbar.txtFranc":"CHF スイス フラン","SSE.Views.Toolbar.txtGeneral":"標準","SSE.Views.Toolbar.txtInteger":"整数","SSE.Views.Toolbar.txtManageRange":"名前の管理","SSE.Views.Toolbar.txtMergeAcross":"横方向に​​結合","SSE.Views.Toolbar.txtMergeCells":"セルの結合","SSE.Views.Toolbar.txtMergeCenter":"結合して中央揃え","SSE.Views.Toolbar.txtNamedRange":"名前付き一覧\t","SSE.Views.Toolbar.txtNewRange":"名前の定義","SSE.Views.Toolbar.txtNoBorders":"枠線なし","SSE.Views.Toolbar.txtNumber":"数値","SSE.Views.Toolbar.txtPasteRange":"名前の貼り付け","SSE.Views.Toolbar.txtPercentage":"パーセンテージ","SSE.Views.Toolbar.txtPound":"£ ポンド","SSE.Views.Toolbar.txtRouble":"₽ ルーブル","SSE.Views.Toolbar.txtScientific":"指数","SSE.Views.Toolbar.txtSearch":"検索","SSE.Views.Toolbar.txtSort":"並べ替え","SSE.Views.Toolbar.txtSortAZ":"昇順並べ替え","SSE.Views.Toolbar.txtSortZA":"降順並べ替え","SSE.Views.Toolbar.txtSpecial":"特殊","SSE.Views.Toolbar.txtTableTemplate":"表として書式設定","SSE.Views.Toolbar.txtText":"テキスト","SSE.Views.Toolbar.txtTime":"時刻","SSE.Views.Toolbar.txtUnmerge":"セル結合の解除","SSE.Views.Toolbar.txtYen":"¥ 円","SSE.Views.Top10FilterDialog.textType":"表示","SSE.Views.Top10FilterDialog.txtBottom":"最低","SSE.Views.Top10FilterDialog.txtBy":"対象","SSE.Views.Top10FilterDialog.txtItems":"アイテム","SSE.Views.Top10FilterDialog.txtPercent":"パーセント","SSE.Views.Top10FilterDialog.txtSum":"合計","SSE.Views.Top10FilterDialog.txtTitle":"トップ 10 オートフィルタ","SSE.Views.Top10FilterDialog.txtTop":"トップ","SSE.Views.Top10FilterDialog.txtValueTitle":"トップ10フィルター","SSE.Views.ValueFieldSettingsDialog.textNext":"(次)","SSE.Views.ValueFieldSettingsDialog.textNumFormat":"数値の書式","SSE.Views.ValueFieldSettingsDialog.textPrev":"(前)","SSE.Views.ValueFieldSettingsDialog.textTitle":"値フィールド設定","SSE.Views.ValueFieldSettingsDialog.txtAverage":"平均","SSE.Views.ValueFieldSettingsDialog.txtBaseField":"基本フィールド","SSE.Views.ValueFieldSettingsDialog.txtBaseItem":"基本アイテム\n\t","SSE.Views.ValueFieldSettingsDialog.txtByField":"%2 の %1","SSE.Views.ValueFieldSettingsDialog.txtCount":"データの個数","SSE.Views.ValueFieldSettingsDialog.txtCountNums":"数値の個数","SSE.Views.ValueFieldSettingsDialog.txtCustomName":"ユーザー設定の名前","SSE.Views.ValueFieldSettingsDialog.txtDifference":"基準値との差分","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.txtPercentOfGrand":"%合計","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParent":"親集計に対する比率","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentCol":"親列集計に対する比率","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentRow":"親行集計に対する比率","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow":"合計のパーセント","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRunTotal":"累計","SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal":"行のパーセント","SSE.Views.ValueFieldSettingsDialog.txtProduct":"乗積","SSE.Views.ValueFieldSettingsDialog.txtRankAscending":"昇順での順位","SSE.Views.ValueFieldSettingsDialog.txtRankDescending":"降順での順位","SSE.Views.ValueFieldSettingsDialog.txtRunTotal":"累計","SSE.Views.ValueFieldSettingsDialog.txtShowAs":"計算の種類を表示","SSE.Views.ValueFieldSettingsDialog.txtSourceName":"ソース名:","SSE.Views.ValueFieldSettingsDialog.txtStdDev":"標準偏差","SSE.Views.ValueFieldSettingsDialog.txtStdDevp":"標準偏差","SSE.Views.ValueFieldSettingsDialog.txtSum":"合計","SSE.Views.ValueFieldSettingsDialog.txtSummarize":"値フィールドを次のように要約する:","SSE.Views.ValueFieldSettingsDialog.txtVar":"標本分散","SSE.Views.ValueFieldSettingsDialog.txtVarp":"分散","SSE.Views.ViewManagerDlg.closeButtonText":"閉じる","SSE.Views.ViewManagerDlg.guestText":"ゲスト","SSE.Views.ViewManagerDlg.lockText":"ロックされた","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.textViews":"シート表示","SSE.Views.ViewManagerDlg.tipIsLocked":"この要素が別のユーザーによって編集されています。","SSE.Views.ViewManagerDlg.txtTitle":"シート表示マネージャー","SSE.Views.ViewManagerDlg.warnDeleteAnotherView":"このシートビューを削除してもよろしいですか?","SSE.Views.ViewManagerDlg.warnDeleteView":"現在有効になっている表示 '%1'を削除しようとしています。
この表示を閉じて削除しますか?","SSE.Views.ViewTab.capBtnFreeze":"ウィンドウ枠の固定","SSE.Views.ViewTab.capBtnSheetView":"シートの表示","SSE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","SSE.Views.ViewTab.textClose":"閉じる","SSE.Views.ViewTab.textCombineSheetAndStatusBars":"ステータスバーとシートを結合する","SSE.Views.ViewTab.textCreate":"新しい","SSE.Views.ViewTab.textDefault":"デフォルト","SSE.Views.ViewTab.textFill":"塗りつぶし","SSE.Views.ViewTab.textFormula":"数式バー","SSE.Views.ViewTab.textFreezeCol":"先頭列を固定する","SSE.Views.ViewTab.textFreezeRow":"先頭行を固定する","SSE.Views.ViewTab.textGridlines":"枠線表示","SSE.Views.ViewTab.textHeadings":"見出し","SSE.Views.ViewTab.textInterfaceTheme":"インターフェイスのテーマ","SSE.Views.ViewTab.textLeftMenu":"左パネル","SSE.Views.ViewTab.textLine":"線","SSE.Views.ViewTab.textMacros":"マクロ","SSE.Views.ViewTab.textManager":"表示マネージャー","SSE.Views.ViewTab.textPauseMacro":"Pause recording","SSE.Views.ViewTab.textRecMacro":"Record macro","SSE.Views.ViewTab.textResumeMacro":"Resume recording","SSE.Views.ViewTab.textRightMenu":"右パネル","SSE.Views.ViewTab.textShowFrozenPanesShadow":"固定されたウィンドウ枠の影を表示する","SSE.Views.ViewTab.textStopMacro":"Stop recording","SSE.Views.ViewTab.textTabStyle":"タブのスタイル","SSE.Views.ViewTab.textUnFreeze":"ウインドウ枠固定の解除","SSE.Views.ViewTab.textZeros":"0を表示する","SSE.Views.ViewTab.textZoom":"ズーム","SSE.Views.ViewTab.tipClose":"シートの表示を閉じる","SSE.Views.ViewTab.tipCreate":"シート表示を作成する","SSE.Views.ViewTab.tipFreeze":"ウィンドウ枠の固定","SSE.Views.ViewTab.tipInterfaceTheme":"インターフェースのテーマ","SSE.Views.ViewTab.tipMacros":"マクロ","SSE.Views.ViewTab.tipPauseMacro":"Pause recording","SSE.Views.ViewTab.tipRecMacro":"Record macro","SSE.Views.ViewTab.tipResumeMacro":"Resume recording","SSE.Views.ViewTab.tipSheetView":"シートの表示","SSE.Views.ViewTab.tipStopMacro":"Stop recording","SSE.Views.ViewTab.tipViewNormal":"通常表示で原稿を見る","SSE.Views.ViewTab.tipViewPageBreak":"原稿を印刷したときに、改ページがどこに表示されるかを確認する","SSE.Views.ViewTab.txtViewNormal":"標準","SSE.Views.ViewTab.txtViewPageBreak":"改ページ プレビュー","SSE.Views.WatchDialog.closeButtonText":"閉じる","SSE.Views.WatchDialog.textAdd":"ウォッチ式の追加","SSE.Views.WatchDialog.textBook":"ブック","SSE.Views.WatchDialog.textCell":"セル","SSE.Views.WatchDialog.textDelete":"ウォッチ式の削除","SSE.Views.WatchDialog.textDeleteAll":"全部削除する","SSE.Views.WatchDialog.textFormula":"数式","SSE.Views.WatchDialog.textName":"名前","SSE.Views.WatchDialog.textSheet":"シート","SSE.Views.WatchDialog.textValue":"値","SSE.Views.WatchDialog.txtTitle":"ウォッチ ウィンドウ","SSE.Views.WBProtection.hintAllowRanges":"範囲の編集を許可する","SSE.Views.WBProtection.hintProtectRange":"範囲を保護する","SSE.Views.WBProtection.hintProtectSheet":"シートを保護する","SSE.Views.WBProtection.hintProtectWB":"ブックを保護する","SSE.Views.WBProtection.txtAllowRanges":"範囲の編集を許可する","SSE.Views.WBProtection.txtHiddenFormula":"非表示の数式","SSE.Views.WBProtection.txtLockedCell":"ロックされたセル","SSE.Views.WBProtection.txtLockedShape":"図形をロック","SSE.Views.WBProtection.txtLockedText":"テキストをロックする","SSE.Views.WBProtection.txtProtectRange":"範囲を保護する","SSE.Views.WBProtection.txtProtectSheet":"シートを保護する","SSE.Views.WBProtection.txtProtectWB":"ブックを保護する","SSE.Views.WBProtection.txtSheetUnlockDescription":"シートを保護解除するようにパスワードを入力してください","SSE.Views.WBProtection.txtSheetUnlockTitle":"シートを保護を解除する","SSE.Views.WBProtection.txtWBUnlockDescription":"ブックを保護解除するようにパスワードを入力してください","SSE.Views.WBProtection.txtWBUnlockTitle":"ブックを保護を解除する"} \ No newline at end of file diff --git a/public/web-apps/apps/spreadsheeteditor/main/locale/ko.json b/public/web-apps/apps/spreadsheeteditor/main/locale/ko.json index c7ca376ac..5e3798ecd 100644 --- a/public/web-apps/apps/spreadsheeteditor/main/locale/ko.json +++ b/public/web-apps/apps/spreadsheeteditor/main/locale/ko.json @@ -1 +1 @@ -{"cancelButtonText":"취소","Common.Controllers.Chat.notcriticalErrorTitle":"경고","Common.Controllers.Desktop.hintBtnHome":"메인 창 표시","Common.Controllers.Desktop.itemCreateFromTemplate":"템플릿에서 만들기","Common.Controllers.ExternalLinks.textAddExternalData":"외부 원본 링크가 추가되었습니다. 이러한 링크는 [데이터] 탭에서 업데이트할 수 있습니다.","Common.Controllers.ExternalLinks.textContinue":"계속","Common.Controllers.ExternalLinks.textDontUpdate":"업데이트하지 않음","Common.Controllers.ExternalLinks.textTurnOff":"자동 업데이트 해제","Common.Controllers.ExternalLinks.textUpdate":"업데이트","Common.Controllers.ExternalLinks.txtErrorExternalLink":"오류: 업데이트에 실패했습니다.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdate":"이 통합 문서에는 자동으로 업데이트되는 외부 소스에 대한 링크가 포함되어 있습니다. 이는 안전하지 않을 수 있습니다.

신뢰할 수 있는 경우 계속을 눌러 주세요.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdateDE":"이 문서에는 자동으로 업데이트되는 외부 원본 링크가 포함되어 있습니다. 안전하지 않을 수 있습니다.

링크를 신뢰하면 계속을 누르세요.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdatePE":"이 프레젠테이션에는 자동으로 업데이트되는 외부 원본 링크가 포함되어 있습니다. 안전하지 않을 수 있습니다.

링크를 신뢰하면 계속을 누르세요.","Common.Controllers.ExternalLinks.warnUpdateExternalData":"이 통합 문서에는 하나 이상의 안전하지 않을 수 있는 외부 소스로의 링크가 포함되어 있습니다.
만약 이 링크를 신뢰한다면 최신 데이터를 얻기 위해 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"이 문서에는 하나 이상의 외부 원본 링크가 포함되어 있으며 안전하지 않을 수 있습니다.
링크를 신뢰하면 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"이 프레젠테이션에는 하나 이상의 외부 원본 링크가 포함되어 있으며 안전하지 않을 수 있습니다.
링크를 신뢰하면 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.History.notcriticalErrorTitle":"경고","Common.Controllers.History.txtErrorLoadHistory":"기록 로드 실패","Common.Controllers.Plugins.helpMoveMacros":"매크로 작업을 시작하려면 보기 탭으로 전환하세요.","Common.Controllers.Plugins.helpMoveMacrosHeader":"이동된 매크로 버튼","Common.Controllers.Plugins.helpUseMacros":"매크로 버튼은 여기에 있습니다","Common.Controllers.Plugins.helpUseMacrosHeader":"매크로 접근 권한이 업데이트되었습니다","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"플러그인이 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 이곳에서 사용할 수 있습니다.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}이(가) 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 여기에서 접근할 수 있습니다.","Common.Controllers.Plugins.textRunInstalledPlugins":"설치된 플러그인 실행","Common.Controllers.Plugins.textRunPlugin":"플러그인 실행","Common.Controllers.Shortcuts.txtDescriptionAddLineBreak":"그래픽 개체 내에 텍스트를 입력할 때 새 단락을 시작하지 않고 줄 바꿈을 추가합니다.","Common.Controllers.Shortcuts.txtDescriptionAutoFill":"이 단축키는 해당 열의 기존 값 바로 위 또는 아래에 있는 빈 셀에서 사용할 수 있습니다. 기존 값이 포함된 드롭다운 목록이 나타납니다. 목록에서 원하는 텍스트 값을 선택하여 빈 셀을 채우세요.","Common.Controllers.Shortcuts.txtDescriptionBold":"선택한 텍스트 조각의 글꼴을 평소보다 더 진하고 굵게 만들거나 굵은 서식을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionCellAddSeparator":"활성 셀 내부에 구분선을 삽입하십시오.","Common.Controllers.Shortcuts.txtDescriptionCellCurrencyFormat":"통화 형식을 소수점 두 자리까지 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellDateFormat":"날짜 형식을 일, 월, 연도로 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellEditorSwitchReference":"수식 입력줄에서 셀에 대한 참조 형식을 절대 참조 또는 상대 참조로 변경합니다.","Common.Controllers.Shortcuts.txtDescriptionCellEntryCancel":"선택한 셀 또는 수식 입력줄의 입력을 취소합니다.","Common.Controllers.Shortcuts.txtDescriptionCellExponentialFormat":"지수 형식(소수점 둘째 자리까지)을 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellGeneralFormat":"일반적인 숫자 형식을 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellInsertDate":"활성화된 셀에 오늘 날짜를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionCellInsertSumFunction":"선택한 셀에 SUM 함수를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionCellInsertTime":"현재 시간을 활성 셀에 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellDown":"아래쪽 셀로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellLeft":"왼쪽 칸으로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellRight":"오른쪽 칸으로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellUp":"위쪽 셀로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomEdge":"보이는 데이터 영역의 아래쪽 가장자리에 셀 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomNonBlank":"워크시트에서 아래 데이터로 다음 셀의 윤곽선을 지정하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveDown":"현재 선택된 셀 바로 아래에 셀의 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveEndSpreadsheet":"워크시트에서 데이터가 있는 가장 아래쪽 행의 가장 오른쪽 열에 있는 오른쪽 아래 셀을 윤곽선으로 표시합니다. 커서가 수식 입력줄에 있는 경우 텍스트 끝에 커서가 배치됩니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstCell":"A1 셀의 윤곽선을 그리세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstColumn":"현재 행의 A열에 있는 셀을 윤곽선으로 표시합니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeft":"현재 선택된 셀의 왼쪽에 있는 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeftNonBlank":"워크시트에서 왼쪽에 있는 데이터가 있는 다음 셀을 윤곽선으로 표시하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRight":"현재 선택된 셀의 오른쪽에 있는 셀을 윤곽선으로 표시합니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRightNonBlank":"워크시트에서 오른쪽에 있는 데이터가 있는 다음 셀의 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopEdge":"보이는 데이터 영역의 위쪽 가장자리에 셀 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopNonBlank":"워크시트에서 위의 데이터가 있는 다음 셀의 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveUp":"현재 선택된 셀 바로 위에 있는 셀의 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellNumberFormat":"소수점 두 자리, 천 단위 구분 기호, 음수 값의 경우 마이너스 기호(-)를 사용하여 숫자 형식을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionCellPercentFormat":"소수점 이하 자릿수 없이 백분율 형식을 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellStartNewLine":"셀 같은 것에 새 줄을 시작하세요.","Common.Controllers.Shortcuts.txtDescriptionCellTimeFormat":"시간 형식은 시와 분, 그리고 오전/오후(AM 또는 PM)로 지정하십시오.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"단락의 정렬을 가운데 정렬과 왼쪽 정렬로 전환합니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionClearActiveCellContent":"셀 서식이나 주석에 영향을 주지 않고 활성 셀의 내용(데이터 및 수식)을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionClearSelectedCellsContent":"선택한 모든 셀의 내용(데이터 및 수식)을 셀 서식이나 주석에 영향을 주지 않고 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"현재 스프레드시트 창을 닫으세요.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"메뉴 또는 모달 창을 닫습니다. 서식 복사를 일시 중지합니다. 도형 추가 모드를 초기화합니다. 셀 잘라내기/복사 시 클립보드를 지웁니다. 붙여넣기 옵션 버튼을 숨깁니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveDown":"선택한 셀이나 수식 입력줄에 입력을 완료한 다음, 아래 셀로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveLeft":"선택한 셀이나 수식 입력줄에 입력을 완료한 다음 왼쪽 셀로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveRight":"선택한 셀이나 수식 입력줄에 입력을 완료한 다음 오른쪽 셀로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveUp":"선택한 셀에 입력을 완료하고 위쪽 셀로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryStay":"선택한 셀이나 수식 입력줄에 입력을 완료하고 해당 상태를 유지하세요.","Common.Controllers.Shortcuts.txtDescriptionCopy":"선택한 데이터/그래픽을 컴퓨터 클립보드 메모리에 저장합니다. 복사된 데이터는 나중에 동일한 워크시트의 다른 위치, 다른 스프레드시트 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCut":"선택한 데이터/그래픽을 잘라내어 컴퓨터 클립보드 메모리에 저장합니다. 잘라낸 데이터는 나중에 같은 워크시트의 다른 위치, 다른 스프레드시트 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 줄입니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"수식 입력줄 또는 셀 편집 모드가 활성화된 선택된 셀에서 왼쪽에 있는 문자를 하나 삭제합니다. 선택 영역을 제거합니다. 또한 활성 셀의 내용도 삭제됩니다. 그래픽 개체의 텍스트에도 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"커서 왼쪽에 있는 단어를 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"수식 입력줄 또는 셀 편집 모드가 활성화된 선택된 셀에서 오른쪽에 있는 문자를 한 글자 삭제합니다. 선택 영역을 제거합니다. 또한 셀 서식이나 주석에 영향을 주지 않고 선택된 셀의 내용(데이터 및 수식)을 삭제합니다. 그래픽 개체의 텍스트에도 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"커서 오른쪽에 있는 단어를 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionDownloadAs":"'다운로드 형식' 패널을 열어 현재 편집 중인 스프레드시트를 지원되는 형식 중 하나로 컴퓨터 하드 디스크 드라이브에 저장하세요.","Common.Controllers.Shortcuts.txtDescriptionDrawingAddTab":"객체 내용에 탭 문자를 추가하세요.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"차트 제목이 선택되면 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditOpenCellEditor":"활성 셀을 편집하고 셀 내용의 끝에 삽입 포인트를 놓습니다. 셀 편집 기능이 꺼져 있으면 삽입 포인트가 수식 입력줄로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"최근 취소한 작업을 반복합니다.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"(커서가 도형 내용 안에 있을 때) 도형 내용 전체를 선택합니다. (커서가 셀 내용 안에 있을 때) 셀 내용 전체를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"도형을 선택한 후 내용이 없으면 내용을 생성하고 커서를 해당 줄의 시작 부분으로 이동합니다. 내용이 비어 있으면 커서를 해당 내용으로 이동하고, 그렇지 않으면 전체 내용을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"가장 최근에 수행한 작업을 되돌립니다.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"커서 오른쪽에 하이픈(-)을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"그래픽 개체 내에 텍스트를 입력할 때는 현재 단락을 끝내고 새 단락을 시작하십시오.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"방정식 인수에 새 자리 표시자를 추가합니다.","Common.Controllers.Shortcuts.txtDescriptionExitAddingShapesMode":"도형 추가 모드를 종료합니다. 선택 항목을 단계적으로 제거합니다(예: 그룹 내 도형의 내용이 선택된 경우 커서가 먼저 내용에서 제거된 다음 도형에서, 마지막으로 그룹에서 제거됩니다).","Common.Controllers.Shortcuts.txtDescriptionFillSelectedCellRange":"선택한 셀 범위를 현재 입력값으로 채웁니다. 셀 범위를 선택하고 활성 셀에 데이터를 입력한 다음 지정된 키를 누르면 선택한 모든 셀이 입력한 데이터로 채워집니다.","Common.Controllers.Shortcuts.txtDescriptionFormatAsTableTemplate":"선택한 셀 범위에 표 템플릿을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionFormatTableAddSummaryRow":"서식이 지정된 표에 요약 행을 추가합니다.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 늘립니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"웹 주소로 이동할 수 있는 링크를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionItalic":"선택한 텍스트 조각의 글꼴을 기울임체로 만들고 약간 기울이거나, 기울임체 서식을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"단락의 정렬 방식을 양쪽 정렬과 왼쪽 정렬 사이에서 전환합니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"단락을 왼쪽으로 정렬합니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningLine":"현재 편집 중인 줄의 시작 부분에 커서를 놓으세요.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningText":"셀이나 도형의 텍스트 맨 처음에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterLeft":"커서를 왼쪽으로 한 글자 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterRight":"커서를 오른쪽으로 한 글자 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineDown":"커서를 한 줄 아래로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineUp":"커서를 한 줄 위로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveEndLine":"현재 편집 중인 줄의 끝에 커서를 놓으세요.","Common.Controllers.Shortcuts.txtDescriptionMoveEndText":"셀이나 도형의 텍스트 맨 끝에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusNextObject":"현재 선택된 개체 다음으로 선택을 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusPreviousObject":"현재 선택된 개체 바로 이전의 개체로 선택을 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepBottom":"키보드 화살표 키를 사용하여 선택한 개체를 큰 단계만큼 아래로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepLeft":"키보드 화살표 키를 사용하여 선택한 개체를 왼쪽으로 크게 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepRight":"키보드의 화살표 키를 사용하여 선택한 개체를 오른쪽으로 크게 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepUp":"키보드 화살표 키를 사용하여 선택한 개체를 한 칸씩 위로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepBottom":"지정된 키를 누른 상태에서 키보드 화살표 키를 사용하여 선택한 개체를 한 번에 1픽셀씩 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepLeft":"지정된 키를 누른 상태에서 키보드 화살표 키를 사용하여 선택한 개체를 왼쪽으로 1픽셀씩 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepRight":"지정된 키를 누른 상태에서 키보드 화살표 키를 사용하여 선택한 개체를 오른쪽으로 1픽셀씩 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepUp":"지정된 키를 누른 상태에서 키보드 화살표 키를 사용하여 선택한 개체를 한 번에 1픽셀씩 위로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveWordLeft":"커서를 왼쪽으로 한 단어 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveWordRight":"커서를 오른쪽으로 한 단어 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionNavigateNextControl":"모달 대화 상자에서 컨트롤 사이를 이동하여 다음 컨트롤에 초점을 맞춥니다.","Common.Controllers.Shortcuts.txtDescriptionNavigatePreviousControl":"모달 대화 상자에서 컨트롤 간을 이동하여 이전 컨트롤에 포커스를 맞춥니다.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"데스크톱 편집기에서는 다음 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환하세요.","Common.Controllers.Shortcuts.txtDescriptionNextWorksheet":"스프레드시트의 다음 시트로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"온라인 편집기에서 채팅 패널을 열고 메시지를 보내세요.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"댓글을 입력할 수 있는 데이터 입력란을 여세요.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"댓글 패널을 열어 직접 댓글을 작성하거나 다른 사용자의 댓글에 답글을 달아보세요.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"선택한 요소의 상황별 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenDeleteCellsWindow":"현재 스프레드시트에서 셀을 삭제하는 대화 상자를 엽니다. 이때 왼쪽으로 이동, 위로 이동, 전체 행 또는 전체 열 삭제와 같은 추가 매개변수를 지정할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"기존 파일을 선택할 수 있는 표준 대화 상자를 엽니다. 이 대화 상자에서 파일을 선택하고 열기를 클릭하면 해당 파일이 데스크톱 편집기의 새 탭이나 창에서 열립니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"파일 패널을 열면 현재 스프레드시트를 저장, 다운로드, 인쇄하거나, 정보를 보거나, 새 스프레드시트를 만들거나 기존 스프레드시트를 열거나, 스프레드시트 편집기의 도움말 메뉴 또는 고급 설정에 액세스할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFilterWindow":"필터가 적용된 열의 머리글에서 필터 창을 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"찾은 문자를 하나 이상 바꾸려면 바꾸기 필드가 있는 찾기 및 바꾸기 메뉴(패널)를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"필요한 문자가 포함된 셀을 검색하려면 찾기 대화 상자를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"스프레드시트 편집기의 도움말 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertCellsWindow":"현재 스프레드시트에 새 셀을 삽입하는 대화 상자를 엽니다. 이때 오른쪽으로 이동, 아래로 이동, 전체 행 또는 전체 열 삽입과 같은 추가 매개변수를 지정할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertFunctionDialog":"제공된 목록에서 선택하여 새 함수 삽입 대화 상자를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenNumberFormatDialog":"숫자 형식 대화 상자를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionPaste":"컴퓨터 클립보드 메모리에서 이전에 복사/잘라낸 데이터/그래픽을 현재 커서 위치에 삽입합니다. 데이터는 동일한 워크시트, 다른 스프레드시트 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaAllFormatting":"데이터 서식을 모두 포함하여 수식을 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaColumnWidth":"데이터 서식을 모두 유지한 채 수식을 붙여넣고 원본 열의 너비를 셀 범위로 설정합니다.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNoBorders":"셀 테두리를 제외한 모든 데이터 서식을 유지한 채 수식을 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNumberFormat":"숫자에 서식이 적용된 상태로 수식을 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteLink":"현재 포털(온라인 편집기) 내의 다른 스프레드시트 또는 로컬 파일(데스크톱 편집기)에 있는 셀 또는 셀 범위에 외부 링크를 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormatting":"셀 내용은 붙여넣지 않고 셀 서식만 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormula":"데이터 서식을 붙여넣지 않고 수식을 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyValue":"Paste the formula results without pasting the data formatting.","Common.Controllers.Shortcuts.txtDescriptionPasteValueAllFormatting":"데이터 서식을 모두 유지한 채 수식 결과를 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteValueNumberFormat":"숫자 서식이 적용된 상태로 수식 결과를 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"데스크톱 편집기에서는 이전 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환하세요.","Common.Controllers.Shortcuts.txtDescriptionPreviousWorksheet":"스프레드시트에서 이전 시트로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"사용 가능한 프린터 중 하나를 사용하여 스프레드시트를 인쇄하거나 파일로 저장하세요.","Common.Controllers.Shortcuts.txtDescriptionRecalculateActiveSheet":"현재 워크시트를 다시 계산합니다.","Common.Controllers.Shortcuts.txtDescriptionRecalculateAll":"통합 문서 전체를 다시 계산합니다.","Common.Controllers.Shortcuts.txtDescriptionRefreshAllPivots":"모든 피벗 테이블을 업데이트합니다.","Common.Controllers.Shortcuts.txtDescriptionRefreshSelectedPivots":"이전에 선택한 피벗 테이블을 업데이트합니다.","Common.Controllers.Shortcuts.txtDescriptionRemoveGraphicalObject":"그래픽 개체를 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"단락의 정렬 방향을 오른쪽 정렬과 왼쪽 정렬로 전환합니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionSave":"스프레드시트 편집기로 현재 편집 중인 스프레드시트의 모든 변경 사항을 저장합니다. 활성 파일은 현재 파일 이름, 위치 및 파일 형식으로 저장됩니다.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningLine":"커서 위치부터 현재 줄의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningText":"커서 위치에서 셀 또는 도형의 텍스트 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningWorksheet":"현재 선택된 셀부터 워크시트 시작 부분까지의 범위를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterLeft":"커서 위치의 왼쪽에 있는 문자를 하나 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterRight":"커서 위치 바로 오른쪽에 있는 문자를 하나 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectColumn":"워크시트에서 열 전체를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorBeginningRow":"커서 위치부터 현재 행의 시작 부분까지의 영역을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorEndRow":"커서 위치부터 현재 행의 끝까지의 영역을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectDownOneScreen":"활성 셀에서 한 화면 아래의 모든 셀을 포함하도록 선택 범위를 확장합니다. 이전에 선택한 범위의 열에 있는 모든 셀이 선택됩니다.","Common.Controllers.Shortcuts.txtDescriptionSelectEndLine":"커서 위치부터 현재 줄의 끝까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectEndText":"셀 또는 도형에서 커서 위치부터 텍스트 끝까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectFirstColumn":"선택 범위를 첫 번째 열(A)까지 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLastUsedCell":"현재 선택된 셀부터 워크시트에서 마지막으로 사용한 셀(데이터가 있는 가장 오른쪽 열의 가장 아래 행)까지의 영역을 선택합니다. 커서가 수식 입력줄에 있는 경우, 수식 입력줄의 높이는 변경하지 않고 커서 위치부터 끝까지의 모든 텍스트가 선택됩니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"커서를 한 줄 아래로 이동하여 이전 커서 위치와 현재 커서 위치 사이의 모든 기호를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"커서를 한 줄 위로 이동하여 이전 커서 위치와 현재 커서 위치 사이의 모든 기호를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankDown":"활성 셀에서 아래쪽 같은 열에 있는 가장 가까운 비어 있지 않은 셀까지 선택 영역을 확장합니다. 다음 셀이 비어 있으면 그 다음 비어 있지 않은 셀까지 선택 영역을 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankRight":"활성 셀의 오른쪽에 있는 같은 행의 가장 가까운 비어 있지 않은 셀까지 선택 영역을 확장합니다. 다음 셀이 비어 있으면 그 다음 비어 있지 않은 셀까지 선택 영역을 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankUp":"활성 셀에서 위쪽 같은 열에 있는 가장 가까운 비어 있지 않은 셀까지 선택 영역을 확장합니다. 다음 셀이 비어 있으면 그 다음 비어 있지 않은 셀까지 선택 영역을 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankDown":"활성 셀에서 바로 아래에 있는 비어 있지 않은 셀 또는 보이는 영역의 가장자리까지 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankLeft":"활성 셀의 왼쪽에 있는 다음 비어 있지 않은 셀 또는 보이는 영역의 가장자리까지 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankRight":"활성 셀의 오른쪽에 있는 다음 비어 있지 않은 셀 또는 표시되는 영역의 가장자리까지 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankUp":"활성 셀 바로 위쪽의 비어 있지 않은 셀 또는 보이는 영역의 가장자리까지 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNonblankLeft":"선택 영역을 왼쪽의 비어 있지 않은 셀까지 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellDown":"아래쪽 셀 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellLeft":"왼쪽의 셀 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellRight":"오른쪽 셀 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellUp":"위쪽 셀 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectRow":"워크시트에서 행 전체를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectUpOneScreen":"활성 셀에서 한 화면 위쪽의 모든 셀을 포함하도록 선택 범위를 확장합니다. 이전에 선택한 범위의 열에 있는 모든 셀이 선택됩니다.","Common.Controllers.Shortcuts.txtDescriptionSelectWordLeft":"커서 왼쪽에 있는 단어 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectWordRight":"커서 오른쪽에 있는 단어 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionShowFormulas":"출력용 용지에 함수 값 외에 함수 자체를 표시합니다.","Common.Controllers.Shortcuts.txtDescriptionSlicerClearSelectedValues":"슬라이서에서 선택한 값을 지웁니다.","Common.Controllers.Shortcuts.txtDescriptionSlicerSwitchMultiSelect":"슬라이서의 다중 선택 기능을 활성화/비활성화합니다.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"화면 판독기가 애플리케이션에서 수행한 작업을 전송할지 여부를 활성화/비활성화합니다.","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"선택한 텍스트 조각에 취소선을 그어 표시하거나, 취소선 서식을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"선택한 텍스트 조각의 크기를 줄여서 텍스트 줄의 아래쪽에 배치합니다. 예를 들어 화학식에서처럼요.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"선택한 텍스트 조각의 크기를 줄여서 텍스트 줄의 위쪽에 배치합니다(예: 분수처럼).","Common.Controllers.Shortcuts.txtDescriptionToggleAutoFilter":"선택 범위에 필터를 적용하거나 필터를 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionTranspose":"데이터를 붙여넣을 때 열에서 행으로, 또는 그 반대로 순서를 바꿀 수 있습니다. 이 옵션은 일반 데이터 범위에 사용할 수 있지만, 서식이 지정된 표에는 사용할 수 없습니다.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"선택한 텍스트 부분에 글자 아래에 선을 그어 밑줄을 긋거나, 밑줄을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"(커서를 링크 위에 올려놓고) 링크를 방문하세요.","Common.Controllers.Shortcuts.txtDescriptionZoom100":"현재 스프레드시트의 '확대/축소' 매개변수를 기본값인 100%로 재설정합니다.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"현재 편집 중인 스프레드시트를 확대해 보세요.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"현재 편집 중인 스프레드시트를 축소하세요.","Common.Controllers.Shortcuts.txtLabelAddLineBreak":"AddLineBreak","Common.Controllers.Shortcuts.txtLabelAutoFill":"AutoFill","Common.Controllers.Shortcuts.txtLabelBold":"굵게","Common.Controllers.Shortcuts.txtLabelCellAddSeparator":"CellAddSeparator","Common.Controllers.Shortcuts.txtLabelCellCurrencyFormat":"CellCurrencyFormat","Common.Controllers.Shortcuts.txtLabelCellDateFormat":"CellDateFormat","Common.Controllers.Shortcuts.txtLabelCellEditorSwitchReference":"CellEditorSwitchReference","Common.Controllers.Shortcuts.txtLabelCellEntryCancel":"CellEntryCancel","Common.Controllers.Shortcuts.txtLabelCellExponentialFormat":"CellExponentialFormat","Common.Controllers.Shortcuts.txtLabelCellGeneralFormat":"CellGeneralFormat","Common.Controllers.Shortcuts.txtLabelCellInsertDate":"CellInsertDate","Common.Controllers.Shortcuts.txtLabelCellInsertSumFunction":"CellInsertSumFunction","Common.Controllers.Shortcuts.txtLabelCellInsertTime":"CellInsertTime","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellDown":"CellMoveActiveCellDown","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellLeft":"CellMoveActiveCellLeft","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellRight":"CellMoveActiveCellRight","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellUp":"CellMoveActiveCellUp","Common.Controllers.Shortcuts.txtLabelCellMoveBottomEdge":"CellMoveBottomEdge","Common.Controllers.Shortcuts.txtLabelCellMoveBottomNonBlank":"CellMoveBottomNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveDown":"CellMoveDown","Common.Controllers.Shortcuts.txtLabelCellMoveEndSpreadsheet":"CellMoveEndSpreadsheet","Common.Controllers.Shortcuts.txtLabelCellMoveFirstCell":"CellMoveFirstCell","Common.Controllers.Shortcuts.txtLabelCellMoveFirstColumn":"CellMoveFirstColumn","Common.Controllers.Shortcuts.txtLabelCellMoveLeft":"CellMoveLeft","Common.Controllers.Shortcuts.txtLabelCellMoveLeftNonBlank":"CellMoveLeftNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveRight":"CellMoveRight","Common.Controllers.Shortcuts.txtLabelCellMoveRightNonBlank":"CellMoveRightNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveTopEdge":"CellMoveTopEdge","Common.Controllers.Shortcuts.txtLabelCellMoveTopNonBlank":"CellMoveTopNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveUp":"CellMoveUp","Common.Controllers.Shortcuts.txtLabelCellNumberFormat":"CellNumberFormat","Common.Controllers.Shortcuts.txtLabelCellPercentFormat":"CellPercentFormat","Common.Controllers.Shortcuts.txtLabelCellStartNewLine":"CellStartNewLine","Common.Controllers.Shortcuts.txtLabelCellTimeFormat":"CellTimeFormat","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelClearActiveCellContent":"ClearActiveCellContent","Common.Controllers.Shortcuts.txtLabelClearSelectedCellsContent":"ClearSelectedCellsContent","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveDown":"CompleteCellEntryMoveDown","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveLeft":"CompleteCellEntryMoveLeft","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveRight":"CompleteCellEntryMoveRight","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveUp":"CompleteCellEntryMoveUp","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryStay":"CompleteCellEntryStay","Common.Controllers.Shortcuts.txtLabelCopy":"복사","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelDownloadAs":"DownloadAs","Common.Controllers.Shortcuts.txtLabelDrawingAddTab":"DrawingAddTab","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditOpenCellEditor":"EditOpenCellEditor","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelExitAddingShapesMode":"ExitAddingShapesMode","Common.Controllers.Shortcuts.txtLabelFillSelectedCellRange":"FillSelectedCellRange","Common.Controllers.Shortcuts.txtLabelFormatAsTableTemplate":"FormatAsTableTemplate","Common.Controllers.Shortcuts.txtLabelFormatTableAddSummaryRow":"FormatTableAddSummaryRow","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelMoveBeginningLine":"MoveBeginningLine","Common.Controllers.Shortcuts.txtLabelMoveBeginningText":"MoveBeginningText","Common.Controllers.Shortcuts.txtLabelMoveCharacterLeft":"MoveCharacterLeft","Common.Controllers.Shortcuts.txtLabelMoveCharacterRight":"MoveCharacterRight","Common.Controllers.Shortcuts.txtLabelMoveCursorLineDown":"MoveCursorLineDown","Common.Controllers.Shortcuts.txtLabelMoveCursorLineUp":"MoveCursorLineUp","Common.Controllers.Shortcuts.txtLabelMoveEndLine":"MoveEndLine","Common.Controllers.Shortcuts.txtLabelMoveEndText":"MoveEndText","Common.Controllers.Shortcuts.txtLabelMoveFocusNextObject":"MoveFocusNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusPreviousObject":"MoveFocusPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepBottom":"MoveShapeBigStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepLeft":"MoveShapeBigStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepRight":"MoveShapeBigStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepUp":"MoveShapeBigStepUp","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepBottom":"MoveShapeLittleStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepLeft":"MoveShapeLittleStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepRight":"MoveShapeLittleStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepUp":"MoveShapeLittleStepUp","Common.Controllers.Shortcuts.txtLabelMoveWordLeft":"MoveWordLeft","Common.Controllers.Shortcuts.txtLabelMoveWordRight":"MoveWordRight","Common.Controllers.Shortcuts.txtLabelNavigateNextControl":"NavigateNextControl","Common.Controllers.Shortcuts.txtLabelNavigatePreviousControl":"NavigatePreviousControl","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextWorksheet":"NextWorksheet","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenDeleteCellsWindow":"OpenDeleteCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFilterWindow":"OpenFilterWindow","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelOpenInsertCellsWindow":"OpenInsertCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenInsertFunctionDialog":"OpenInsertFunctionDialog","Common.Controllers.Shortcuts.txtLabelOpenNumberFormatDialog":"OpenNumberFormatDialog","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormulaAllFormatting":"PasteFormulaAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteFormulaColumnWidth":"PasteFormulaColumnWidth","Common.Controllers.Shortcuts.txtLabelPasteFormulaNoBorders":"PasteFormulaNoBorders","Common.Controllers.Shortcuts.txtLabelPasteFormulaNumberFormat":"PasteFormulaNumberFormat","Common.Controllers.Shortcuts.txtLabelPasteLink":"PasteLink","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormatting":"PasteOnlyFormatting","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormula":"PasteOnlyFormula","Common.Controllers.Shortcuts.txtLabelPasteOnlyValue":"PasteOnlyValue","Common.Controllers.Shortcuts.txtLabelPasteValueAllFormatting":"PasteValueAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteValueNumberFormat":"PasteValueNumberFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousWorksheet":"PreviousWorksheet","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRecalculateActiveSheet":"RecalculateActiveSheet","Common.Controllers.Shortcuts.txtLabelRecalculateAll":"RecalculateAll","Common.Controllers.Shortcuts.txtLabelRefreshAllPivots":"RefreshAllPivots","Common.Controllers.Shortcuts.txtLabelRefreshSelectedPivots":"RefreshSelectedPivots","Common.Controllers.Shortcuts.txtLabelRemoveGraphicalObject":"RemoveGraphicalObject","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSelectBeginningLine":"SelectBeginningLine","Common.Controllers.Shortcuts.txtLabelSelectBeginningText":"SelectBeginningText","Common.Controllers.Shortcuts.txtLabelSelectBeginningWorksheet":"SelectBeginningWorksheet","Common.Controllers.Shortcuts.txtLabelSelectCharacterLeft":"SelectCharacterLeft","Common.Controllers.Shortcuts.txtLabelSelectCharacterRight":"SelectCharacterRight","Common.Controllers.Shortcuts.txtLabelSelectColumn":"SelectColumn","Common.Controllers.Shortcuts.txtLabelSelectCursorBeginningRow":"SelectCursorBeginningRow","Common.Controllers.Shortcuts.txtLabelSelectCursorEndRow":"SelectCursorEndRow","Common.Controllers.Shortcuts.txtLabelSelectDownOneScreen":"SelectDownOneScreen","Common.Controllers.Shortcuts.txtLabelSelectEndLine":"SelectEndLine","Common.Controllers.Shortcuts.txtLabelSelectEndText":"SelectEndText","Common.Controllers.Shortcuts.txtLabelSelectFirstColumn":"SelectFirstColumn","Common.Controllers.Shortcuts.txtLabelSelectLastUsedCell":"SelectLastUsedCell","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankDown":"SelectNearestNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankRight":"SelectNearestNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankUp":"SelectNearestNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankDown":"SelectNextNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankLeft":"SelectNextNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankRight":"SelectNextNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankUp":"SelectNextNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNonblankLeft":"SelectNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellDown":"SelectOneCellDown","Common.Controllers.Shortcuts.txtLabelSelectOneCellLeft":"SelectOneCellLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellRight":"SelectOneCellRight","Common.Controllers.Shortcuts.txtLabelSelectOneCellUp":"SelectOneCellUp","Common.Controllers.Shortcuts.txtLabelSelectRow":"SelectRow","Common.Controllers.Shortcuts.txtLabelSelectUpOneScreen":"SelectUpOneScreen","Common.Controllers.Shortcuts.txtLabelSelectWordLeft":"SelectWordLeft","Common.Controllers.Shortcuts.txtLabelSelectWordRight":"SelectWordRight","Common.Controllers.Shortcuts.txtLabelShowFormulas":"ShowFormulas","Common.Controllers.Shortcuts.txtLabelSlicerClearSelectedValues":"SlicerClearSelectedValues","Common.Controllers.Shortcuts.txtLabelSlicerSwitchMultiSelect":"SlicerSwitchMultiSelect","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStrikeout":"취소선","Common.Controllers.Shortcuts.txtLabelSubscript":"아래 첨자 ","Common.Controllers.Shortcuts.txtLabelSuperscript":"위첨자","Common.Controllers.Shortcuts.txtLabelToggleAutoFilter":"ToggleAutoFilter","Common.Controllers.Shortcuts.txtLabelTranspose":"Transpose","Common.Controllers.Shortcuts.txtLabelUnderline":"밑줄","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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.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.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.textLineSpark":"선","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.textRadar":"레이더","Common.define.chartData.textRadarFilled":"채워진 레이더","Common.define.chartData.textRadarMarker":"마커가 있는 레이더","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.chartData.textSurface":"표면","Common.define.chartData.textWinLossSpark":"승리/패배","Common.define.conditionalData.exampleText":"AaBbCcYyZz","Common.define.conditionalData.noFormatText":"형식 없음","Common.define.conditionalData.text1Above":"1 이상의 표준편차","Common.define.conditionalData.text1Below":"표준편차 1이하","Common.define.conditionalData.text2Above":"표준편차 2이상","Common.define.conditionalData.text2Below":"표준편차 2이하","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.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.textText":"텍스트","Common.define.conditionalData.textThisMonth":"이번 달","Common.define.conditionalData.textThisWeek":"이번 주","Common.define.conditionalData.textToday":"오늘","Common.define.conditionalData.textTomorrow":"내일","Common.define.conditionalData.textTop":"위","Common.define.conditionalData.textUnique":"고유값","Common.define.conditionalData.textValue":"값이","Common.define.conditionalData.textYesterday":"어제","Common.define.smartArt.textAccentedPicture":"강조 이미지","Common.define.smartArt.textAccentProcess":"강조 프로세스","Common.define.smartArt.textAlternatingFlow":"번갈아 가는 흐름","Common.define.smartArt.textAlternatingHexagons":"번갈아 가는 육각형","Common.define.smartArt.textAlternatingPictureBlocks":"번갈아 가며 그림 블록 만들기","Common.define.smartArt.textAlternatingPictureCircles":"번갈아 가는 그림 원","Common.define.smartArt.textArchitectureLayout":"아키텍처 레이아웃","Common.define.smartArt.textArrowRibbon":"화살표 리본","Common.define.smartArt.textAscendingPictureAccentProcess":"오름차순 그림 강조 프로세스","Common.define.smartArt.textBalance":"균형","Common.define.smartArt.textBasicBendingProcess":"기본 절곡 프로세스","Common.define.smartArt.textBasicBlockList":"기본 차단 리스트","Common.define.smartArt.textBasicChevronProcess":"기본 쉐브론 프로세스","Common.define.smartArt.textBasicCycle":"기본 주기","Common.define.smartArt.textBasicMatrix":"기본 행렬","Common.define.smartArt.textBasicPie":"기본 파이","Common.define.smartArt.textBasicProcess":"기본 프로세스","Common.define.smartArt.textBasicPyramid":"기본 피라미드","Common.define.smartArt.textBasicRadial":"기본 원형","Common.define.smartArt.textBasicTarget":"기본 대상","Common.define.smartArt.textBasicTimeline":"기본 타임라인","Common.define.smartArt.textBasicVenn":"기본 벤 다이어그램","Common.define.smartArt.textBendingPictureAccentList":"휜 이미지 강조 목록","Common.define.smartArt.textBendingPictureBlocks":"휜 이미지 블록","Common.define.smartArt.textBendingPictureCaption":"휜 이미지 캡션","Common.define.smartArt.textBendingPictureCaptionList":"휜 이미지 캡션 목록","Common.define.smartArt.textBendingPictureSemiTranparentText":"휜 이미지 반투명 텍스트","Common.define.smartArt.textBlockCycle":"블록 주기","Common.define.smartArt.textBubblePictureList":"거품 이미지 목록","Common.define.smartArt.textCaptionedPictures":"캡션이 있는 사진","Common.define.smartArt.textChevronAccentProcess":"쉐브론 액센트 프로세스","Common.define.smartArt.textChevronList":"쉐브론 목록","Common.define.smartArt.textCircleAccentTimeline":"원형 강조 타임라인","Common.define.smartArt.textCircleArrowProcess":"원형 화살표 프로세스","Common.define.smartArt.textCirclePictureHierarchy":"원형 이미지 계층 구조","Common.define.smartArt.textCircleProcess":"원형 프로세스","Common.define.smartArt.textCircleRelationship":"원형 관계","Common.define.smartArt.textCircularBendingProcess":"원형 절곡 공정","Common.define.smartArt.textCircularPictureCallout":"원형 이미지 주석","Common.define.smartArt.textClosedChevronProcess":"닫힌 형태의 쉐브론 프로세스","Common.define.smartArt.textContinuousArrowProcess":"연속된 화살표 프로세스","Common.define.smartArt.textContinuousBlockProcess":"연속된 블록 프로세스","Common.define.smartArt.textContinuousCycle":"연속적인 주기","Common.define.smartArt.textContinuousPictureList":"연속된 그림 목록","Common.define.smartArt.textConvergingArrows":"수렴 화살표","Common.define.smartArt.textConvergingRadial":"한 지점으로 모이는 방사형","Common.define.smartArt.textConvergingText":"한 지점으로 모이는 텍스트","Common.define.smartArt.textCounterbalanceArrows":"평형 화살","Common.define.smartArt.textCycle":"주기","Common.define.smartArt.textCycleMatrix":"주기 행렬","Common.define.smartArt.textDescendingBlockList":"내림차순으로 정렬한 목록","Common.define.smartArt.textDescendingProcess":"내림차순 프로세스","Common.define.smartArt.textDetailedProcess":"상세한 프로세스","Common.define.smartArt.textDivergingArrows":"분기 화살표","Common.define.smartArt.textDivergingRadial":"분기하는 방사형","Common.define.smartArt.textEquation":"방정식","Common.define.smartArt.textFramedTextPicture":"테두리가 있는 텍스트 이미지","Common.define.smartArt.textFunnel":"깔때기","Common.define.smartArt.textGear":"대비","Common.define.smartArt.textGridMatrix":"격자 행렬","Common.define.smartArt.textGroupedList":"그룹화 된 목록","Common.define.smartArt.textHalfCircleOrganizationChart":"반원 형태 조직도","Common.define.smartArt.textHexagonCluster":"육각형 클러스터","Common.define.smartArt.textHexagonRadial":"육각형 방사형","Common.define.smartArt.textHierarchy":"계층","Common.define.smartArt.textHierarchyList":"계층 목록","Common.define.smartArt.textHorizontalBulletList":"가로 방향 불릿 목록","Common.define.smartArt.textHorizontalHierarchy":"수평적 계층","Common.define.smartArt.textHorizontalLabeledHierarchy":"가로로 라벨링된 계층 구조","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"가로로 다중 수준 계층","Common.define.smartArt.textHorizontalOrganizationChart":"가로 방향 조직도","Common.define.smartArt.textHorizontalPictureList":"가로로 나열된 그림 목록","Common.define.smartArt.textIncreasingArrowProcess":"증가 화살표 프로세스","Common.define.smartArt.textIncreasingCircleProcess":"증가하는 원 프로세스","Common.define.smartArt.textInterconnectedBlockProcess":"상호 연결된 블록 프로세스","Common.define.smartArt.textInterconnectedRings":"상호 연결된 링","Common.define.smartArt.textInvertedPyramid":"역 피라미드","Common.define.smartArt.textLabeledHierarchy":"레이블이 있는 계층 구조","Common.define.smartArt.textLinearVenn":"선형 벤 다이어그램","Common.define.smartArt.textLinedList":"선으로 구분된 목록","Common.define.smartArt.textList":"목록","Common.define.smartArt.textMatrix":"행렬","Common.define.smartArt.textMultidirectionalCycle":"다방향 사이클","Common.define.smartArt.textNameAndTitleOrganizationChart":"이름 및 직위 조직도","Common.define.smartArt.textNestedTarget":"중첩 대상","Common.define.smartArt.textNondirectionalCycle":"비방향 사이클","Common.define.smartArt.textOpposingArrows":"반대 화살표","Common.define.smartArt.textOpposingIdeas":"상반된 개념","Common.define.smartArt.textOrganizationChart":"조직도","Common.define.smartArt.textOther":"기타","Common.define.smartArt.textPhasedProcess":"단계별 프로세스","Common.define.smartArt.textPicture":"그림","Common.define.smartArt.textPictureAccentBlocks":"그림 강조 블럭","Common.define.smartArt.textPictureAccentList":"그림 강조 목록","Common.define.smartArt.textPictureAccentProcess":"그림 강조 프로세스","Common.define.smartArt.textPictureCaptionList":"그림 캡션 목록","Common.define.smartArt.textPictureFrame":"사진 프레임","Common.define.smartArt.textPictureGrid":"그림 격자","Common.define.smartArt.textPictureLineup":"사진 라인업","Common.define.smartArt.textPictureOrganizationChart":"그림 조직도","Common.define.smartArt.textPictureStrips":"그림 스트립","Common.define.smartArt.textPieProcess":"파이 프로세스","Common.define.smartArt.textPlusAndMinus":"플러스와 마이너스","Common.define.smartArt.textProcess":"프로세스","Common.define.smartArt.textProcessArrows":"프로세스 화살표","Common.define.smartArt.textProcessList":"프로세스 목록","Common.define.smartArt.textPyramid":"피라미드","Common.define.smartArt.textPyramidList":"피라미드 목록","Common.define.smartArt.textRadialCluster":"방사형 클러스터","Common.define.smartArt.textRadialCycle":"방사형주기","Common.define.smartArt.textRadialList":"방사형 목록","Common.define.smartArt.textRadialPictureList":"방사형 그림 목록","Common.define.smartArt.textRadialVenn":"원형 벤 다이어그램","Common.define.smartArt.textRandomToResultProcess":"무작위 랜덤 프로세스","Common.define.smartArt.textRelationship":"관계","Common.define.smartArt.textRepeatingBendingProcess":"반복되는 접힘 과정","Common.define.smartArt.textReverseList":"역방향 목록","Common.define.smartArt.textSegmentedCycle":"분할된 주기","Common.define.smartArt.textSegmentedProcess":"세분화된 프로세스","Common.define.smartArt.textSegmentedPyramid":"분할된 피라미드","Common.define.smartArt.textSnapshotPictureList":"스냅샷 사진 목록","Common.define.smartArt.textSpiralPicture":"나선형 그림","Common.define.smartArt.textSquareAccentList":"사각형 강조 목록","Common.define.smartArt.textStackedList":"스택 리스트","Common.define.smartArt.textStackedVenn":"쌓인 벤 다이어그램","Common.define.smartArt.textStaggeredProcess":"단계별 프로세스","Common.define.smartArt.textStepDownProcess":"단계적 프로세스","Common.define.smartArt.textStepUpProcess":"단계별 프로세스","Common.define.smartArt.textSubStepProcess":"하위 단계 프로세스","Common.define.smartArt.textTabbedArc":"원호형 탭","Common.define.smartArt.textTableHierarchy":"테이블 계층","Common.define.smartArt.textTableList":"테이블 목록","Common.define.smartArt.textTabList":"탭 목록","Common.define.smartArt.textTargetList":"대상 목록","Common.define.smartArt.textTextCycle":"텍스트 사이클","Common.define.smartArt.textThemePictureAccent":"테마 이미지 강조","Common.define.smartArt.textThemePictureAlternatingAccent":"테마 이미지 교체 강조","Common.define.smartArt.textThemePictureGrid":"테마 이미지 격자","Common.define.smartArt.textTitledMatrix":"제목 행렬","Common.define.smartArt.textTitledPictureAccentList":"제목이 있는 이미지 강조 목록","Common.define.smartArt.textTitledPictureBlocks":"제목이 있는 그림 블록","Common.define.smartArt.textTitlePictureLineup":"타이틀 이미지 라인업","Common.define.smartArt.textTrapezoidList":"사다리꼴 목록","Common.define.smartArt.textUpwardArrow":"위쪽 화살표","Common.define.smartArt.textVaryingWidthList":"너비가 다른 목록","Common.define.smartArt.textVerticalAccentList":"수직 강조 목록","Common.define.smartArt.textVerticalArrowList":"수직 화살표 목록","Common.define.smartArt.textVerticalBendingProcess":"수직 절곡 프로세스","Common.define.smartArt.textVerticalBlockList":"수직 블록 목록","Common.define.smartArt.textVerticalBoxList":"수직 상자 목록","Common.define.smartArt.textVerticalBracketList":"수직 괄호 목록","Common.define.smartArt.textVerticalBulletList":"수직 글머리 기호 목록","Common.define.smartArt.textVerticalChevronList":"수직 쉐브론 목록","Common.define.smartArt.textVerticalCircleList":"수직 원 목록","Common.define.smartArt.textVerticalCurvedList":"수직 곡선 목록","Common.define.smartArt.textVerticalEquation":"수직 방정식","Common.define.smartArt.textVerticalPictureAccentList":"수직 방향 그림 강조 목록","Common.define.smartArt.textVerticalPictureList":"수직 이미지 목록","Common.define.smartArt.textVerticalProcess":"수직 프로세스","Common.Translation.textMoreButton":"더","Common.Translation.tipFileLocked":"문서가 편집 잠금 상태입니다.변경한 후 로컬 복사본으로 저장할 수 있습니다.","Common.Translation.tipFileReadOnly":"파일이 읽기 전용입니다. 변경 사항을 유지하려면 파일을 새 이름으로 저장하거나 다른 위치에 저장하세요.","Common.Translation.warnFileLocked":"파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.","Common.Translation.warnFileLockedBtnEdit":"복사본 만들기","Common.Translation.warnFileLockedBtnView":"미리보기","Common.UI.ButtonColored.textAutoColor":"자동","Common.UI.ButtonColored.textEyedropper":"스포이드","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":"금","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":"목","Common.UI.Calendar.textShortTuesday":"화","Common.UI.Calendar.textShortWednesday":"수","Common.UI.Calendar.textYears":"년","Common.UI.ComboBorderSize.txtNoBorders":"테두리 없음","Common.UI.ComboBorderSizeEditable.txtNoBorders":"테두리 없음","Common.UI.ComboDataView.emptyComboText":"스타일 없음","Common.UI.ExtendedColorDialog.addButtonText":"Add","Common.UI.ExtendedColorDialog.textCurrent":"현재","Common.UI.ExtendedColorDialog.textHexErr":"입력 한 값이 잘못되었습니다.
000000에서 FFFFFF 사이의 값을 입력하십시오.","Common.UI.ExtendedColorDialog.textNew":"New","Common.UI.ExtendedColorDialog.textRGBErr":"입력 한 값이 잘못되었습니다.
0에서 255 사이의 숫자 값을 입력하십시오.","Common.UI.HSBColorPicker.textNoColor":"색상 없음","Common.UI.InputField.txtEmpty":"이 필드는 필수입니다","Common.UI.InputFieldBtnCalendar.textDate":"날짜선택","Common.UI.InputFieldBtnPassword.textHintHidePwd":"비밀번호 숨기기","Common.UI.InputFieldBtnPassword.textHintHold":"길게 눌러 비밀번호 보기","Common.UI.InputFieldBtnPassword.textHintShowPwd":"비밀번호 표시","Common.UI.SearchBar.textFind":"찾기","Common.UI.SearchBar.tipCloseSearch":"검색 닫기","Common.UI.SearchBar.tipNextResult":"다음결과","Common.UI.SearchBar.tipOpenAdvancedSettings":"고급 설정 열기","Common.UI.SearchBar.tipPreviousResult":"이전 결과","Common.UI.SearchDialog.textHighlight":"결과 강조 표시","Common.UI.SearchDialog.textMatchCase":"대소 문자를 구분합니다","Common.UI.SearchDialog.textReplaceDef":"대체 텍스트 입력","Common.UI.SearchDialog.textSearchStart":"여기에 텍스트를 입력하십시오","Common.UI.SearchDialog.textTitle":"찾기 및 바꾸기","Common.UI.SearchDialog.textTitle2":"찾기","Common.UI.SearchDialog.textWholeWords":"전체 단어 만","Common.UI.SearchDialog.txtBtnHideReplace":"바꾸기 숨기기","Common.UI.SearchDialog.txtBtnReplace":"바꾸기","Common.UI.SearchDialog.txtBtnReplaceAll":"모두 바꾸기","Common.UI.SynchronizeTip.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.SynchronizeTip.textGotIt":"확인","Common.UI.SynchronizeTip.textNew":"신규","Common.UI.SynchronizeTip.textSynchronize":"다른 사용자가 문서를 변경했습니다.
클릭하여 변경 사항을 저장하고 업데이트를 다시로드하십시오.","Common.UI.ThemeColorPalette.textRecentColors":"최근 색상","Common.UI.ThemeColorPalette.textStandartColors":"표준 색상","Common.UI.ThemeColorPalette.textThemeColors":"테마 색","Common.UI.Themes.txtThemeClassicLight":"전통적인 밝은 색상","Common.UI.Themes.txtThemeContrastDark":"어두운 대비","Common.UI.Themes.txtThemeDark":"어두운","Common.UI.Themes.txtThemeGray":"회색","Common.UI.Themes.txtThemeLight":"밝은","Common.UI.Themes.txtThemeModernDark":"모던 다크","Common.UI.Themes.txtThemeModernLight":"모던 라이트","Common.UI.Themes.txtThemeSystem":"시스템과 동일","Common.UI.Window.cancelButtonText":"취소","Common.UI.Window.closeButtonText":"닫기","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"확인","Common.UI.Window.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.Window.textError":"오류","Common.UI.Window.textInformation":"정보","Common.UI.Window.textWarning":"경고","Common.UI.Window.yesButtonText":"예","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt 키","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl 키","Common.Utils.String.textShift":"Shift 키","Common.Utils.ThemeColor.txtaccent":"강조","Common.Utils.ThemeColor.txtAqua":"아쿠아","Common.Utils.ThemeColor.txtbackground":"배경","Common.Utils.ThemeColor.txtBlack":"검정","Common.Utils.ThemeColor.txtBlue":"파랑","Common.Utils.ThemeColor.txtBrightGreen":"밝은 녹색","Common.Utils.ThemeColor.txtBrown":"갈색","Common.Utils.ThemeColor.txtDarkBlue":"어두운 파랑색","Common.Utils.ThemeColor.txtDarker":"더 어둡게","Common.Utils.ThemeColor.txtDarkGray":"어두운 회색","Common.Utils.ThemeColor.txtDarkGreen":"어두운 초록색","Common.Utils.ThemeColor.txtDarkPurple":"진한 보라색","Common.Utils.ThemeColor.txtDarkRed":"어두운 빨간색","Common.Utils.ThemeColor.txtDarkTeal":"어두운 암청색","Common.Utils.ThemeColor.txtDarkYellow":"어두운 노란색","Common.Utils.ThemeColor.txtGold":"금색","Common.Utils.ThemeColor.txtGray":"회색","Common.Utils.ThemeColor.txtGreen":"녹색","Common.Utils.ThemeColor.txtIndigo":"남색","Common.Utils.ThemeColor.txtLavender":"라벤더","Common.Utils.ThemeColor.txtLightBlue":"밝은 파랑","Common.Utils.ThemeColor.txtLighter":"더 밝은","Common.Utils.ThemeColor.txtLightGray":"밝은 회색","Common.Utils.ThemeColor.txtLightGreen":"밝은 초록","Common.Utils.ThemeColor.txtLightOrange":"밝은 주황","Common.Utils.ThemeColor.txtLightYellow":"밝은 노랑","Common.Utils.ThemeColor.txtOrange":"주황","Common.Utils.ThemeColor.txtPink":"분홍","Common.Utils.ThemeColor.txtPurple":"보라","Common.Utils.ThemeColor.txtRed":"빨강","Common.Utils.ThemeColor.txtRose":"장미","Common.Utils.ThemeColor.txtSkyBlue":"하늘색","Common.Utils.ThemeColor.txtTeal":"암청색","Common.Utils.ThemeColor.txttext":"본문","Common.Utils.ThemeColor.txtTurquosie":"터키옥색","Common.Utils.ThemeColor.txtViolet":"바이올렛","Common.Utils.ThemeColor.txtWhite":"흰색","Common.Utils.ThemeColor.txtYellow":"노랑","Common.Views.About.txtAddress":"주소 :","Common.Views.About.txtLicensee":"라이선스","Common.Views.About.txtLicensor":"LICENSOR","Common.Views.About.txtMail":"이메일 :","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.textDelete":"삭제","Common.Views.AutoCorrectDialog.textFLSentence":"영어 문장의 첫 글자를 대문자로","Common.Views.AutoCorrectDialog.textHyperlink":"인터넷과 네트워크 경로를 하이퍼 링크로 설정","Common.Views.AutoCorrectDialog.textMathCorrect":"수식 자동 고침","Common.Views.AutoCorrectDialog.textNewRowCol":"테이블에 새 행과 열을 포함","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.textChat":"채팅","Common.Views.Chat.textClosePanel":"채팅 닫기","Common.Views.Chat.textEnterMessage":"메시지를 입력하세요","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.mniFilterComments":"댓글 표시","Common.Views.Comments.mniFilterGroups":"그룹별 필터링","Common.Views.Comments.mniPositionAsc":"위에서 부터","Common.Views.Comments.mniPositionDesc":"아래로 부터","Common.Views.Comments.textAdd":"추가","Common.Views.Comments.textAddComment":"코멘트 추가","Common.Views.Comments.textAddCommentToDoc":"문서에 설명 추가","Common.Views.Comments.textAddReply":"답장 추가","Common.Views.Comments.textAll":"모두","Common.Views.Comments.textAnonym":"손님","Common.Views.Comments.textCancel":"취소","Common.Views.Comments.textClose":"닫기","Common.Views.Comments.textClosePanel":"코멘트 닫기","Common.Views.Comments.textComment":"코멘트","Common.Views.Comments.textComments":"코멘트","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"여기에 의견을 입력하십시오","Common.Views.Comments.textHintAddComment":"코멘트 추가","Common.Views.Comments.textOpen":"열기","Common.Views.Comments.textOpenAgain":"다시 열기","Common.Views.Comments.textReply":"Reply","Common.Views.Comments.textResolve":"해결","Common.Views.Comments.textResolved":"해결됨","Common.Views.Comments.textSort":"코멘트 분류","Common.Views.Comments.textSortFilter":"코멘트","Common.Views.Comments.textSortFilterMore":"정렬, 필터 및 기타 옵션","Common.Views.Comments.textSortMore":"정렬 및 기타 옵션","Common.Views.Comments.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.Comments.txtEmpty":"시트에 코멘트가 없습니다","Common.Views.CopyWarningDialog.textDontShow":"이 메시지를 다시 표시하지 않음","Common.Views.CopyWarningDialog.textMsg":"편집기 도구 모음 단추 및 컨텍스트 메뉴 작업을 사용하여 복사, 잘라 내기 및 붙여 넣기 작업은이 편집기 탭 내에서만 수행됩니다.

외부 응용 프로그램으로 복사하거나 붙여 넣으려면 편집기 탭은 다음과 같은 키보드 조합을 사용합니다 : ","Common.Views.CopyWarningDialog.textTitle":"작업 복사, 잘라 내기 및 붙여 넣기","Common.Views.CopyWarningDialog.textToCopy":"복사","Common.Views.CopyWarningDialog.textToCut":"잘라 내기","Common.Views.CopyWarningDialog.textToPaste":"붙여 넣기","Common.Views.CustomizeQuickAccessDialog.textDownload":"다운로드","Common.Views.CustomizeQuickAccessDialog.textMsg":"빠른 실행 도구 모음에 표시할 명령을 선택하세요","Common.Views.CustomizeQuickAccessDialog.textPrint":"인쇄","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"빠른 인쇄","Common.Views.CustomizeQuickAccessDialog.textRedo":"다시 실행","Common.Views.CustomizeQuickAccessDialog.textSave":"저장","Common.Views.CustomizeQuickAccessDialog.textTitle":"빠른 실행 도구 모음 사용자 지정","Common.Views.CustomizeQuickAccessDialog.textUndo":"실행 취소","Common.Views.DocumentAccessDialog.textLoading":"로드 중 ...","Common.Views.DocumentAccessDialog.textTitle":"공유 설정","Common.Views.DocumentPropertyDialog.errorDate":"캘린더에서 값을 선택하면 날짜 형식으로 저장됩니다.
직접 입력하면 텍스트로 저장됩니다.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"아니오","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"확인","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"속성에는 제목이 있어야 합니다","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"제목","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"예\" 또는 \"아니요\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"날짜","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"유형","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"숫자","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"유효한 숫자를 입력하세요","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"텍스트","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"속성에는 값이 있어야 합니다","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"값","Common.Views.DocumentPropertyDialog.txtTitle":"새 문서 속성","Common.Views.Draw.hintEraser":"지우개","Common.Views.Draw.hintSelect":"선택","Common.Views.Draw.txtEraser":"지우개","Common.Views.Draw.txtHighlighter":"하이라이터","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"펜:","Common.Views.Draw.txtSelect":"선택","Common.Views.Draw.txtSize":"크기","Common.Views.EditNameDialog.textLabel":"라벨:","Common.Views.EditNameDialog.textLabelError":"라벨은 비워 둘 수 없습니다.","Common.Views.ExternalLinksDlg.closeButtonText":"닫기","Common.Views.ExternalLinksDlg.textAutoUpdate":"연결된 원본에서 데이터 자동 업데이트","Common.Views.ExternalLinksDlg.textChange":"소스 변경","Common.Views.ExternalLinksDlg.textDelete":"링크 해제","Common.Views.ExternalLinksDlg.textDeleteAll":"모든 링크 해제","Common.Views.ExternalLinksDlg.textOk":"확인","Common.Views.ExternalLinksDlg.textOpen":"오픈 소스","Common.Views.ExternalLinksDlg.textSource":"출처","Common.Views.ExternalLinksDlg.textStatus":"상태","Common.Views.ExternalLinksDlg.textUnknown":"알 수 없음","Common.Views.ExternalLinksDlg.textUpdate":"값 업데이트","Common.Views.ExternalLinksDlg.textUpdateAll":"모두 업데이트","Common.Views.ExternalLinksDlg.textUpdating":"업데이트 중…","Common.Views.ExternalLinksDlg.txtTitle":"외부 링크","Common.Views.FormatSettingsDialog.textCategory":"카테고리","Common.Views.FormatSettingsDialog.textDecimal":"소수","Common.Views.FormatSettingsDialog.textFormat":"서식","Common.Views.FormatSettingsDialog.textLinked":"원본에 연결","Common.Views.FormatSettingsDialog.textLocale":"지역 설정","Common.Views.FormatSettingsDialog.textSeparator":"1000 단위 구분 기호 사용","Common.Views.FormatSettingsDialog.textSymbols":"기호","Common.Views.FormatSettingsDialog.textTitle":"숫자 서식","Common.Views.FormatSettingsDialog.txtAccounting":"회계","Common.Views.FormatSettingsDialog.txtAs10":"분모를 10으로 (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"분모를 100으로 (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"분모를 16으로 (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"분모를 2로 (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"분모를 4로 (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"분모를 8로 (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"통화","Common.Views.FormatSettingsDialog.txtCustom":"사용자 지정","Common.Views.FormatSettingsDialog.txtCustomWarning":"사용자 지정 숫자 서식을 신중하게 입력하세요. 스프레드시트 편집기는 xlsx 파일에 영향을 줄 수 있는 오류가 있는지 사용자 지정 서식을 확인하지 않습니다.","Common.Views.FormatSettingsDialog.txtDate":"날짜","Common.Views.FormatSettingsDialog.txtFraction":"분수","Common.Views.FormatSettingsDialog.txtGeneral":"일반","Common.Views.FormatSettingsDialog.txtNone":"없음","Common.Views.FormatSettingsDialog.txtNumber":"숫자","Common.Views.FormatSettingsDialog.txtPercentage":"백분율","Common.Views.FormatSettingsDialog.txtSample":"샘플 :","Common.Views.FormatSettingsDialog.txtScientific":"지수","Common.Views.FormatSettingsDialog.txtText":"텍스트","Common.Views.FormatSettingsDialog.txtTime":"시간","Common.Views.FormatSettingsDialog.txtUpto1":"한 자리까지 (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"두 자리까지 (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"세 자리까지 (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"빠른 실행 도구 모음","Common.Views.Header.labelCoUsersDescr":"파일을 편집 중인 사용자:","Common.Views.Header.textAddFavorite":"즐겨찾기에 추가","Common.Views.Header.textAdvSettings":"고급 설정","Common.Views.Header.textBack":"파일 위치 열기","Common.Views.Header.textClose":"파일 닫기","Common.Views.Header.textCompactView":"보기 컴팩트 도구 모음","Common.Views.Header.textHideLines":"눈금자 숨기기","Common.Views.Header.textHideStatusBar":"상태 표시 줄 숨기기","Common.Views.Header.textPrint":"인쇄","Common.Views.Header.textReadOnly":"읽기 전용","Common.Views.Header.textRemoveFavorite":"즐겨찾기에서 제거","Common.Views.Header.textSaveBegin":"저장 중 ...","Common.Views.Header.textSaveChanged":"수정된","Common.Views.Header.textSaveEnd":"모든 변경 사항이 저장되었습니다","Common.Views.Header.textSaveExpander":"모든 변경 사항이 저장되었습니다","Common.Views.Header.textShare":"공유","Common.Views.Header.textZoom":"확대/축소","Common.Views.Header.tipAccessRights":"문서 액세스 권한 관리","Common.Views.Header.tipCustomizeQuickAccessToolbar":"빠른 실행 도구 모음 사용자 지정","Common.Views.Header.tipDownload":"파일을 다운로드","Common.Views.Header.tipGoEdit":"현재 파일 편집","Common.Views.Header.tipPrint":"파일 출력","Common.Views.Header.tipPrintQuick":"빠른 인쇄","Common.Views.Header.tipRedo":"다시 실행","Common.Views.Header.tipSave":"저장","Common.Views.Header.tipSearch":"검색","Common.Views.Header.tipUndo":"실행 취소","Common.Views.Header.tipUndock":"별도 창으로 이동","Common.Views.Header.tipUsers":"사용자 보기","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.textHighlightDeleted":"결과 강조 삭제","Common.Views.History.textMore":"더 보기","Common.Views.History.textRestore":"복구","Common.Views.History.textShow":"확장","Common.Views.History.textShowAll":"자세한 변경 사항 표시","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"버전 기록","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.textFromFile":"파일에서","Common.Views.ListSettingsDialog.textFromStorage":"스토리지로 부터","Common.Views.ListSettingsDialog.textFromUrl":"URL로부터","Common.Views.ListSettingsDialog.textNumbering":"번호 매기기","Common.Views.ListSettingsDialog.textSelect":"선택해서 가져오다","Common.Views.ListSettingsDialog.tipChange":"글 머리 기호 변경","Common.Views.ListSettingsDialog.txtBullet":"단추","Common.Views.ListSettingsDialog.txtColor":"색상","Common.Views.ListSettingsDialog.txtImage":"이미지","Common.Views.ListSettingsDialog.txtImport":"가져오기","Common.Views.ListSettingsDialog.txtNewBullet":"새로운 글머리 기호","Common.Views.ListSettingsDialog.txtNewImage":"새로운 이미지","Common.Views.ListSettingsDialog.txtNone":"없음","Common.Views.ListSettingsDialog.txtOfText":"전체의 %","Common.Views.ListSettingsDialog.txtSize":"크기","Common.Views.ListSettingsDialog.txtStart":"시작","Common.Views.ListSettingsDialog.txtSymbol":"기호","Common.Views.ListSettingsDialog.txtTitle":"목록 설정","Common.Views.ListSettingsDialog.txtType":"형식","Common.Views.MacrosAiDialog.textAreaPlaceholder":"쿼리에 사용할 프롬프트를 입력하세요","Common.Views.MacrosAiDialog.textCreate":"만들기","Common.Views.MacrosDialog.textAutostart":"자동 시작","Common.Views.MacrosDialog.textConvertFromVBA":"VBA에서 변환","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"VBA 매크로 변환","Common.Views.MacrosDialog.textCopy":"복사","Common.Views.MacrosDialog.textCreateFromDesc":"설명으로부터 만들기","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"설명을 기반으로 매크로 만들기","Common.Views.MacrosDialog.textCustomFunction":"사용자 정의 함수","Common.Views.MacrosDialog.textCustomFunctions":"사용자 정의 함수","Common.Views.MacrosDialog.textDebug":"디버그","Common.Views.MacrosDialog.textDelete":"삭제","Common.Views.MacrosDialog.textFunctions":"함수","Common.Views.MacrosDialog.textLoading":"로드 중 ...","Common.Views.MacrosDialog.textMacro":"매크로","Common.Views.MacrosDialog.textMacros":"매크로","Common.Views.MacrosDialog.textMakeAutostart":"자동 시작 설정","Common.Views.MacrosDialog.textRename":"이름 바꾸기","Common.Views.MacrosDialog.textRun":"실행","Common.Views.MacrosDialog.textSave":"저장","Common.Views.MacrosDialog.textTitle":"매크로","Common.Views.MacrosDialog.textUnMakeAutostart":"자동 시작 해제","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"사용자 정의 함수 추가","Common.Views.MacrosDialog.tipFunctionCopy":"사용자 정의 함수 복사","Common.Views.MacrosDialog.tipFunctionDelete":"사용자 정의 함수 삭제","Common.Views.MacrosDialog.tipFunctionRename":"사용자 정의 함수 이름 바꾸기","Common.Views.MacrosDialog.tipMacrosAdd":"매크로 추가","Common.Views.MacrosDialog.tipMacrosCopy":"매크로 복사","Common.Views.MacrosDialog.tipMacrosDebug":"매크로 디버그","Common.Views.MacrosDialog.tipMacrosRename":"매크로 이름 바꾸기","Common.Views.MacrosDialog.tipMacrosRun":"매크로 실행","Common.Views.MacrosDialog.tipRedo":"다시 실행","Common.Views.MacrosDialog.tipUndo":"실행 취소","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":"탭","Common.Views.OpenDialog.txtTitle":"%1 옵션 선택","Common.Views.OpenDialog.txtTitleProtected":"보호 된 파일","Common.Views.PasswordDialog.txtDescription":"문서 보호용 비밀번호를 세팅하세요","Common.Views.PasswordDialog.txtIncorrectPwd":"확인 비밀번호가 같지 않음","Common.Views.PasswordDialog.txtPassword":"암호","Common.Views.PasswordDialog.txtRepeat":"비밀번호 반복","Common.Views.PasswordDialog.txtTitle":"비밀번호 설정","Common.Views.PasswordDialog.txtWarning":"주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.","Common.Views.PluginDlg.textDock":"플러그인 고정","Common.Views.PluginDlg.textLoading":"불러오는 중","Common.Views.PluginPanel.textClosePanel":"플러그인 닫기","Common.Views.PluginPanel.textHidePanel":"플러그인 축소","Common.Views.PluginPanel.textLoading":"불러오는 중","Common.Views.PluginPanel.textUndock":"플러그인 고정 해제","Common.Views.Plugins.groupCaption":"플러그인","Common.Views.Plugins.strPlugins":"플러그인","Common.Views.Plugins.textBackgroundPlugins":"백그라운드 플러그인","Common.Views.Plugins.textClosePanel":"플러그 인 닫기","Common.Views.Plugins.textLoading":"불러오는 중","Common.Views.Plugins.textSettings":"설정","Common.Views.Plugins.textStart":"시작","Common.Views.Plugins.textStop":"정지","Common.Views.Plugins.textTheListOfBackgroundPlugins":"백그라운드 플러그인 목록","Common.Views.Plugins.tipMore":"더 보기","Common.Views.Protection.hintAddPwd":"비밀번호로 암호화","Common.Views.Protection.hintDelPwd":"비밀번호 삭제","Common.Views.Protection.hintPwd":"비밀번호 변경 또는 삭제","Common.Views.Protection.hintSignature":"디지털 서명 또는 서명 라인을 추가 ","Common.Views.Protection.txtAddPwd":"비밀번호 추가","Common.Views.Protection.txtChangePwd":"비밀번호를 변경","Common.Views.Protection.txtDeletePwd":"비밀번호 삭제","Common.Views.Protection.txtEncrypt":"암호화","Common.Views.Protection.txtInvisibleSignature":"디지털 서명을 추가","Common.Views.Protection.txtSignature":"서명","Common.Views.Protection.txtSignatureLine":"서명란 추가","Common.Views.RecentFiles.txtOpenRecent":"최근 열기","Common.Views.RenameDialog.textName":"파일 이름","Common.Views.RenameDialog.txtInvalidName":"파일 이름에 다음 문자를 포함 할 수 없습니다 :","Common.Views.ReviewChanges.hintNext":"다음 변경 사항","Common.Views.ReviewChanges.hintPrev":"이전 변경으로","Common.Views.ReviewChanges.strFast":"빠르게","Common.Views.ReviewChanges.strFastDesc":"실시간 협력 편집. 모든 변경사항들은 자동적으로 저장됨.","Common.Views.ReviewChanges.strStrict":"엄격한","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":"변경 내역 추적","Common.Views.ReviewChanges.tipReviewView":"변경사항이 표시될 모드 선택","Common.Views.ReviewChanges.tipSetDocLang":"문서 언어 설정","Common.Views.ReviewChanges.tipSetSpelling":"맞춤법 검사","Common.Views.ReviewChanges.tipSharing":"문서 액세스 권한 관리","Common.Views.ReviewChanges.txtAccept":"수락","Common.Views.ReviewChanges.txtAcceptAll":"모든 변경 내용 적용","Common.Views.ReviewChanges.txtAcceptChanges":"변경 접수","Common.Views.ReviewChanges.txtAcceptCurrent":"현재 변경 내용 적용","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":"최종","Common.Views.ReviewChanges.txtHistory":"버전 기록","Common.Views.ReviewChanges.txtMarkup":"모든 변경 (편집)","Common.Views.ReviewChanges.txtMarkupCap":"마크업","Common.Views.ReviewChanges.txtNext":"다음","Common.Views.ReviewChanges.txtOriginal":"모든 변경 거부됨 (미리보기)","Common.Views.ReviewChanges.txtOriginalCap":"오리지널","Common.Views.ReviewChanges.txtPrev":"이전","Common.Views.ReviewChanges.txtReject":"거부","Common.Views.ReviewChanges.txtRejectAll":"모든 변경 사항 거부","Common.Views.ReviewChanges.txtRejectChanges":"변경 거부","Common.Views.ReviewChanges.txtRejectCurrent":"현재 변경 거부","Common.Views.ReviewChanges.txtSharing":"공유","Common.Views.ReviewChanges.txtSpelling":"맞춤법 검사","Common.Views.ReviewChanges.txtTurnon":"변경 내역 추적","Common.Views.ReviewChanges.txtView":"디스플레이 모드","Common.Views.ReviewPopover.textAdd":"추가","Common.Views.ReviewPopover.textAddReply":"답장 추가","Common.Views.ReviewPopover.textCancel":"취소","Common.Views.ReviewPopover.textClose":"닫기","Common.Views.ReviewPopover.textComment":"코멘트","Common.Views.ReviewPopover.textEdit":"확인","Common.Views.ReviewPopover.textEnterComment":"여기에 의견을 입력하십시오","Common.Views.ReviewPopover.textMention":"+이 내용은 이 문서에 접근할 시 이메일을 통해 전해 질 것입니다.","Common.Views.ReviewPopover.textMentionNotify":"+이 내용은 이메일을 통해 사용자에게 알려 줄 것 입니다.","Common.Views.ReviewPopover.textOpenAgain":"다시 열기","Common.Views.ReviewPopover.textReply":"답변","Common.Views.ReviewPopover.textResolve":"해결","Common.Views.ReviewPopover.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.ReviewPopover.txtDeleteTip":"삭제","Common.Views.ReviewPopover.txtEditTip":"편집","Common.Views.SaveAsDlg.textLoading":"로드 중","Common.Views.SaveAsDlg.textTitle":"저장 폴더","Common.Views.SearchPanel.textByColumns":"열 기준","Common.Views.SearchPanel.textByRows":"행 기준","Common.Views.SearchPanel.textCaseSensitive":"대소 문자를 구분합니다","Common.Views.SearchPanel.textCell":"셀","Common.Views.SearchPanel.textCloseSearch":"검색 닫기","Common.Views.SearchPanel.textContentChanged":"문서가 변경되었습니다.","Common.Views.SearchPanel.textFind":"찾기","Common.Views.SearchPanel.textFindAndReplace":"찾기 및 바꾸기","Common.Views.SearchPanel.textFormula":"수식","Common.Views.SearchPanel.textFormulas":"수식","Common.Views.SearchPanel.textItemEntireCell":"전체 셀 내용","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} 항목이 성공적으로 대체되었습니다.","Common.Views.SearchPanel.textLookIn":"검색 범위","Common.Views.SearchPanel.textMatchUsingRegExp":"정규 표현식을 사용하여 일치하는 것을 찾기","Common.Views.SearchPanel.textName":"이름","Common.Views.SearchPanel.textNoMatches":"일치 하는 항목 없음","Common.Views.SearchPanel.textNoSearchResults":"검색결과 없음","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} 항목이 대체되었습니다. 남은 {2} 항목은 다른 사용자에 의해 잠겨 있습니다.","Common.Views.SearchPanel.textReplace":"바꾸기","Common.Views.SearchPanel.textReplaceAll":"모두 바꾸기","Common.Views.SearchPanel.textReplaceWith":"다음으로 교체","Common.Views.SearchPanel.textSearch":"검색","Common.Views.SearchPanel.textSearchAgain":"{0}정확한 결과를 보려면 새 검색 {1}을(를) 수행하십시오.","Common.Views.SearchPanel.textSearchHasStopped":"검색이 중지되었습니다","Common.Views.SearchPanel.textSearchOptions":"검색 옵션","Common.Views.SearchPanel.textSearchResults":"검색결과: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"검색 결과","Common.Views.SearchPanel.textSelectDataRange":"데이터 범위 선택","Common.Views.SearchPanel.textSheet":"시트","Common.Views.SearchPanel.textSpecificRange":"특정 범위","Common.Views.SearchPanel.textTooManyResults":"표시할 결과가 너무 많습니다.","Common.Views.SearchPanel.textValue":"값","Common.Views.SearchPanel.textValues":"값","Common.Views.SearchPanel.textWholeWords":"전체 단어 만","Common.Views.SearchPanel.textWithin":"내부에","Common.Views.SearchPanel.textWorkbook":"통합 문서","Common.Views.SearchPanel.tipNextResult":"다음결과","Common.Views.SearchPanel.tipPreviousResult":"이전 결과","Common.Views.SelectFileDlg.textLoading":"로드 중","Common.Views.SelectFileDlg.textTitle":"데이터 소스 선택","Common.Views.ShapeShadowDialog.txtAngle":"각도","Common.Views.ShapeShadowDialog.txtDistance":"간격","Common.Views.ShapeShadowDialog.txtSize":"크기","Common.Views.ShapeShadowDialog.txtTitle":"그림자 조정","Common.Views.ShapeShadowDialog.txtTransparency":"투명도","Common.Views.ShortcutsDialog.txtDescription":"세부 설명","Common.Views.ShortcutsDialog.txtEmpty":"일치하는 결과가 없습니다. 검색 조건을 조정하세요.","Common.Views.ShortcutsDialog.txtRestoreAll":"모든 항목을 기본 설정으로 복원","Common.Views.ShortcutsDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsDialog.txtRestoreDescription":"모든 바로가기 설정이 기본값으로 복원됩니다.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"기본 설정으로 복원","Common.Views.ShortcutsDialog.txtSearch":"검색","Common.Views.ShortcutsDialog.txtTitle":"키보드 단축키","Common.Views.ShortcutsEditDialog.txtAction":"동작","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"원하는 바로가기 키를 입력하세요","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"액션에서 사용하는 바로가기 %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"액션 %1에서 사용하는 바로가기 키이며 변경할 수 없습니다.","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"액션 %1에서 사용되는 바로가기","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"액션 %1에서 사용하는 바로가기 키이며 변경할 수 없습니다.","Common.Views.ShortcutsEditDialog.txtNewShortcut":"새로운 바로가기","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"\"%1\" 작업에 대한 모든 바로가기 키가 기본값으로 복원됩니다.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"기본 설정으로 복원","Common.Views.ShortcutsEditDialog.txtTitle":"바로가기 편집","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"원하는 바로가기 키를 입력하세요","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":"이미지 선택","Common.Views.SignDialog.textSignature":"서명은 처럼 보임","Common.Views.SignDialog.textTitle":"서명문서","Common.Views.SignDialog.textUseImage":"또는 서명으로 그림을 사용하려면 '이미지 선택'을 클릭","Common.Views.SignDialog.textValid":"%1에서 %2까지 유효","Common.Views.SignDialog.tipFontName":"폰트명","Common.Views.SignDialog.tipFontSize":"글꼴 크기","Common.Views.SignSettingsDialog.textAllowComment":"서명 대화창에 서명자의 코멘트 추가 허용","Common.Views.SignSettingsDialog.textDefInstruction":"이 문서에 서명하기 전에, 서명하는 내용이 정확한지 확인하세요.","Common.Views.SignSettingsDialog.textInfoEmail":"이메일","Common.Views.SignSettingsDialog.textInfoName":"이름","Common.Views.SignSettingsDialog.textInfoTitle":"서명자 타이틀","Common.Views.SignSettingsDialog.textInstructions":"서명자용 지침","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":"라벨은 비워 둘 수 없습니다.","SSE.Controllers.DataTab.strSheet":"시트","SSE.Controllers.DataTab.textColumns":"열","SSE.Controllers.DataTab.textContinue":"계속","SSE.Controllers.DataTab.textEmptyUrl":"URL을 지정해야 합니다.","SSE.Controllers.DataTab.textRows":"행","SSE.Controllers.DataTab.textTurnOff":"자동 업데이트 해제","SSE.Controllers.DataTab.textWizard":"텍스트 나누기","SSE.Controllers.DataTab.txtContinue":"계속","SSE.Controllers.DataTab.txtDataValidation":"데이터 유효성","SSE.Controllers.DataTab.txtExpand":"확장","SSE.Controllers.DataTab.txtExpandRemDuplicates":"선택한 콘텐츠 옆의 데이터는 삭제되지 않습니다. 인접 데이터를 포함하도록 선택 영역을 확장하시겠습니까, 아니면 현재 선택한 셀을 계속 사용하시겠습니까?","SSE.Controllers.DataTab.txtExtendDataValidation":"이 선택에는 데이터 확인 설정이 없는 데이터가 포함되어 있습니다.
데이터 유효성 체크를 이 장치로 하시겠습니까?","SSE.Controllers.DataTab.txtImportWizard":"텍스트 가져오기 마법사","SSE.Controllers.DataTab.txtMaxFeasible":"가능한 해의 최대 개수에 도달했습니다. 그래도 계속하시겠습니까?","SSE.Controllers.DataTab.txtMaxIterations":"최대 반복 횟수 제한에 도달했습니다. 그래도 계속하시겠습니까?","SSE.Controllers.DataTab.txtMaxSubproblem":"하위 문제의 최대 개수에 도달했습니다. 그래도 계속하시겠습니까?","SSE.Controllers.DataTab.txtMaxTime":"최대 시간 제한에 도달했습니다. 그래도 계속하시겠습니까?","SSE.Controllers.DataTab.txtRemDuplicates":"중복된 항목 제거","SSE.Controllers.DataTab.txtRemoveDataValidation":"이 선택에는 여러 확인 유형이 포함됩니다.
현재 설정을 지우고 계속하시겠습니까?","SSE.Controllers.DataTab.txtRemSelected":"선택한 위치에서 삭제","SSE.Controllers.DataTab.txtStop":"정지","SSE.Controllers.DataTab.txtTrialSolution":"체험판 솔루션 보기","SSE.Controllers.DataTab.txtUrlTitle":"데이터 URL 붙여넣기","SSE.Controllers.DocumentHolder.alignmentText":"정렬","SSE.Controllers.DocumentHolder.centerText":"Center","SSE.Controllers.DocumentHolder.deleteColumnText":"열 삭제","SSE.Controllers.DocumentHolder.deleteRowText":"행 삭제","SSE.Controllers.DocumentHolder.deleteText":"Delete","SSE.Controllers.DocumentHolder.errorInvalidLink":"링크 참조가 존재하지 않습니다. 링크를 수정하거나 삭제하십시오.","SSE.Controllers.DocumentHolder.guestText":"Guest","SSE.Controllers.DocumentHolder.insertColumnLeftText":"왼쪽 열","SSE.Controllers.DocumentHolder.insertColumnRightText":"오른쪽 열","SSE.Controllers.DocumentHolder.insertRowAboveText":"위의 행","SSE.Controllers.DocumentHolder.insertRowBelowText":"행 아래","SSE.Controllers.DocumentHolder.insertText":"Insert","SSE.Controllers.DocumentHolder.leftText":"Left","SSE.Controllers.DocumentHolder.notcriticalErrorTitle":"경고","SSE.Controllers.DocumentHolder.rightText":"Right","SSE.Controllers.DocumentHolder.textArgument":"인수","SSE.Controllers.DocumentHolder.textAutoCorrectSettings":"자동 고침 옵션","SSE.Controllers.DocumentHolder.textChangeColumnWidth":"열 너비 {0} 기호 ({1} 픽셀)","SSE.Controllers.DocumentHolder.textChangeRowHeight":"행 높이 {0} 점 ({1} 픽셀)","SSE.Controllers.DocumentHolder.textCtrlClick":"실행하려면 한 번만 클릭하십시오. 누르고 있으면 현재 셀이 선택됩니다.","SSE.Controllers.DocumentHolder.textInsertLeft":"왼쪽에 삽입","SSE.Controllers.DocumentHolder.textInsertTop":"위의 행 삽입","SSE.Controllers.DocumentHolder.textPasteSpecial":"특수기호 붙이기","SSE.Controllers.DocumentHolder.textStopExpand":"자동으로 표 확장 끔","SSE.Controllers.DocumentHolder.textSym":"sym","SSE.Controllers.DocumentHolder.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Controllers.DocumentHolder.txtAboveAve":"평균 이상","SSE.Controllers.DocumentHolder.txtAddBottom":"아래쪽 테두리 추가","SSE.Controllers.DocumentHolder.txtAddFractionBar":"분수 막대 추가","SSE.Controllers.DocumentHolder.txtAddHor":"가로선 추가","SSE.Controllers.DocumentHolder.txtAddLB":"왼쪽 하단 추가","SSE.Controllers.DocumentHolder.txtAddLeft":"왼쪽 테두리 추가","SSE.Controllers.DocumentHolder.txtAddLT":"왼쪽 상단 줄 추가","SSE.Controllers.DocumentHolder.txtAddRight":"오른쪽 테두리 추가","SSE.Controllers.DocumentHolder.txtAddTop":"위쪽 테두리 추가","SSE.Controllers.DocumentHolder.txtAddVer":"세로선 추가","SSE.Controllers.DocumentHolder.txtAlignToChar":"문자에 정렬","SSE.Controllers.DocumentHolder.txtAll":"(전체)","SSE.Controllers.DocumentHolder.txtAllTableHint":"열 머리글, 데이터 및 총 행을 포함하여 테이블 또는 지정된 테이블 열의 전체 내용을 반환합니다","SSE.Controllers.DocumentHolder.txtAnd":"그리고","SSE.Controllers.DocumentHolder.txtBegins":"~와 함께 시작하다.\n~로 시작하다","SSE.Controllers.DocumentHolder.txtBelowAve":"평균 이하","SSE.Controllers.DocumentHolder.txtBlanks":"(빈칸들)","SSE.Controllers.DocumentHolder.txtBorderProps":"테두리 속성","SSE.Controllers.DocumentHolder.txtBottom":"Bottom","SSE.Controllers.DocumentHolder.txtByField":"%2의 %1","SSE.Controllers.DocumentHolder.txtColumn":"열","SSE.Controllers.DocumentHolder.txtColumnAlign":"열 정렬","SSE.Controllers.DocumentHolder.txtContains":"포함","SSE.Controllers.DocumentHolder.txtCopySuccess":"클립보드로 링크 복사됨","SSE.Controllers.DocumentHolder.txtDataTableHint":"테이블 또는 지정된 테이블 열의 데이터 셀을 반환합니다","SSE.Controllers.DocumentHolder.txtDecreaseArg":"인수 크기 감소","SSE.Controllers.DocumentHolder.txtDeleteArg":"인수 삭제","SSE.Controllers.DocumentHolder.txtDeleteBreak":"나누기 삭제","SSE.Controllers.DocumentHolder.txtDeleteChars":"둘러싸는 문자 삭제","SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators":"둘러싸는 문자 및 구분 기호 삭제","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.txtFilterTop":"위","SSE.Controllers.DocumentHolder.txtFormula":"수식","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.txtHeadersTableHint":"테이블 또는 지정된 테이블 열에 대한 열 머리글을 반환합니다","SSE.Controllers.DocumentHolder.txtHeight":"높이","SSE.Controllers.DocumentHolder.txtHideBottom":"아래쪽 테두리 숨기기","SSE.Controllers.DocumentHolder.txtHideBottomLimit":"하단 제한 숨기기","SSE.Controllers.DocumentHolder.txtHideCloseBracket":"닫는 대괄호 숨기기","SSE.Controllers.DocumentHolder.txtHideDegree":"학위 숨기기","SSE.Controllers.DocumentHolder.txtHideHor":"가로 선 숨기기","SSE.Controllers.DocumentHolder.txtHideLB":"왼쪽 하단 줄 숨기기","SSE.Controllers.DocumentHolder.txtHideLeft":"왼쪽 테두리 숨기기","SSE.Controllers.DocumentHolder.txtHideLT":"왼쪽 상단 줄 숨기기","SSE.Controllers.DocumentHolder.txtHideOpenBracket":"여는 대괄호 숨기기","SSE.Controllers.DocumentHolder.txtHidePlaceholder":"자리 표시 자 숨기기","SSE.Controllers.DocumentHolder.txtHideRight":"오른쪽 테두리 숨기기","SSE.Controllers.DocumentHolder.txtHideTop":"위쪽 테두리 숨기기","SSE.Controllers.DocumentHolder.txtHideTopLimit":"상한값 숨기기","SSE.Controllers.DocumentHolder.txtHideVer":"수직선 숨기기","SSE.Controllers.DocumentHolder.txtImportWizard":"텍스트 가져오기 마법사","SSE.Controllers.DocumentHolder.txtIncreaseArg":"인수 크기 늘리기","SSE.Controllers.DocumentHolder.txtInsertArgAfter":"뒤에 인수를 삽입하십시오.","SSE.Controllers.DocumentHolder.txtInsertArgBefore":"앞에 인수를 삽입하십시오.","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.txtOther":"기타","SSE.Controllers.DocumentHolder.txtOverbar":"텍스트 위에 바","SSE.Controllers.DocumentHolder.txtPaste":"붙여 넣기","SSE.Controllers.DocumentHolder.txtPasteBorders":"테두리없는 수식","SSE.Controllers.DocumentHolder.txtPasteColWidths":"수식 + 열 너비","SSE.Controllers.DocumentHolder.txtPasteDestFormat":"대상 서식 지정","SSE.Controllers.DocumentHolder.txtPasteFormat":"서식 붙이기 만 붙여 넣기","SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat":"수식 + 숫자 형식","SSE.Controllers.DocumentHolder.txtPasteFormulas":"수식 만 붙여 넣기","SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat":"수식 + 모든 서식 지정","SSE.Controllers.DocumentHolder.txtPasteLink":"붙여 넣기 링크","SSE.Controllers.DocumentHolder.txtPasteLinkPicture":"연결된 그림","SSE.Controllers.DocumentHolder.txtPasteMerge":"조건부 서식 병합","SSE.Controllers.DocumentHolder.txtPastePicture":"그림","SSE.Controllers.DocumentHolder.txtPasteSourceFormat":"소스 서식 지정","SSE.Controllers.DocumentHolder.txtPasteTranspose":"Transpose","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":"위 첨자 제거","SSE.Controllers.DocumentHolder.txtRowHeight":"행 높이","SSE.Controllers.DocumentHolder.txtScriptsAfter":"텍스트 뒤의 스크립트","SSE.Controllers.DocumentHolder.txtScriptsBefore":"텍스트 앞의 스크립트","SSE.Controllers.DocumentHolder.txtShowBottomLimit":"아래쪽 한계 표시","SSE.Controllers.DocumentHolder.txtShowCloseBracket":"닫는 괄호 표시","SSE.Controllers.DocumentHolder.txtShowDegree":"학위 표시","SSE.Controllers.DocumentHolder.txtShowOpenBracket":"여는 대괄호 표시","SSE.Controllers.DocumentHolder.txtShowPlaceholder":"Show placeholder","SSE.Controllers.DocumentHolder.txtShowTopLimit":"상한 표시","SSE.Controllers.DocumentHolder.txtSorting":"정렬","SSE.Controllers.DocumentHolder.txtSortSelected":"정렬 선택","SSE.Controllers.DocumentHolder.txtStretchBrackets":"스트레치 괄호","SSE.Controllers.DocumentHolder.txtThisRowHint":"지정된 열의 이 행만 선택","SSE.Controllers.DocumentHolder.txtTop":"Top","SSE.Controllers.DocumentHolder.txtTotalsTableHint":"테이블 또는 지정된 테이블 열의 총 행을 반환합니다","SSE.Controllers.DocumentHolder.txtUnderbar":"텍스트 아래에 바","SSE.Controllers.DocumentHolder.txtUndoExpansion":"테이블 자동확장 하지 않기","SSE.Controllers.DocumentHolder.txtUseTextImport":"텍스트 마법사를 사용","SSE.Controllers.DocumentHolder.txtValue":"값","SSE.Controllers.DocumentHolder.txtWarnUrl":"이 링크는 장치와 데이터에 손상을 줄 수 있습니다.
계속하시겠습니까?","SSE.Controllers.DocumentHolder.txtWidth":"너비","SSE.Controllers.DocumentHolder.warnFilterError":"값 필터를 적용하려면 \"값\" 영역에 하나 이상의 필드가 있어야 합니다.","SSE.Controllers.FormulaDialog.sCategoryAll":"모든","SSE.Controllers.FormulaDialog.sCategoryCube":"정육면체","SSE.Controllers.FormulaDialog.sCategoryCustom":"사용자 지정","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.sCategoryStatistical":"통계","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.textSave":"저장","SSE.Controllers.LeftMenu.textSearch":"Search","SSE.Controllers.LeftMenu.textSelectPath":"복사본을 저장할 새 이름을 입력하세요","SSE.Controllers.LeftMenu.textSheet":"시트","SSE.Controllers.LeftMenu.textValues":"값","SSE.Controllers.LeftMenu.textWarning":"경고","SSE.Controllers.LeftMenu.textWithin":"within","SSE.Controllers.LeftMenu.textWorkbook":"통합 문서","SSE.Controllers.LeftMenu.txtUntitled":"제목없음","SSE.Controllers.LeftMenu.warnDownloadAs":"이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?","SSE.Controllers.LeftMenu.warnDownloadCsv":"CSV 형식은 여러 시트 파일과 텍스트 외의 모든 요소를 저장할 수 없습니다.
선택한 시트만 CSV로 저장하려면 확인을 누르세요.
전체 스프레드시트와 모든 기능을 저장하려면 취소를 클릭하고 다른 형식을 선택하세요.","SSE.Controllers.LeftMenu.warnDownloadCsvSheets":"CSV 형식은 다중 시트 파일을 저장하지 않습니다.
선택한 형식을 유지하고 현재 시트만 저장하려면 저장을 누르세요.
현재 스프레드시트를 저장하려면 취소를 누르고 다른 형식으로 저장하세요.","SSE.Controllers.LeftMenu.warnDownloadOds":"제한된 서식 지원으로 인해 이 파일을 저장하면 일부 수식, 셀 서식 또는 포함된 개체가 손실될 수 있습니다.
계속하시겠습니까?","SSE.Controllers.Main.confirmAddCellWatches":"이 작업으로 {0}개의 셀 모니터링이 추가됩니다.
계속하시겠습니까?","SSE.Controllers.Main.confirmAddCellWatchesMax":"이 작업은 메모리 저장 이유로 {0}개의 셀 모니터링만 추가합니다.
계속하시겠습니까?","SSE.Controllers.Main.confirmMaxChangesSize":"작업의 크기가 서버에 설정된 제한을 초과합니다.
마지막 작업을 취소하려면 '실행 취소'를 누르고 작업을 로컬로 유지하려면 '계속'을 누르세요 (파일을 다운로드하거나 내용을 복사하여 데이터 손실이 없도록 하십시오).","SSE.Controllers.Main.confirmMoveCellRange":"대상 셀 범위에 데이터가 포함될 수 있습니다. 작업을 계속 하시겠습니까?","SSE.Controllers.Main.confirmPutMergeRange":"원본 데이터에 병합 된 셀이 있습니다.
테이블에 붙여 넣기 전에 병합되지 않았습니다.","SSE.Controllers.Main.confirmReplaceFormulaInTable":"머리글 행의 수식이 삭제되고 정적 텍스트로 변환됩니다.
계속하시겠습니까?","SSE.Controllers.Main.confirmReplaceHFPicture":"헤더 각 섹션에는 하나의 그림만 삽입할 수 있습니다.
기존 그림을 대체하려면 '대체'를 누르세요.
기존 그림을 유지하려면 '유지'를 누르세요.","SSE.Controllers.Main.convertationTimeoutText":"전환 시간 초과를 초과했습니다.","SSE.Controllers.Main.criticalErrorExtText":"문서 목록으로 돌아가려면 \"OK\"를 누르십시오.","SSE.Controllers.Main.criticalErrorExtTextClose":"\"확인\"을 눌러 편집기를 닫으세요.","SSE.Controllers.Main.criticalErrorTitle":"오류","SSE.Controllers.Main.downloadErrorText":"다운로드하지 못했습니다.","SSE.Controllers.Main.downloadTextText":"스프레드시트 다운로드 중 ...","SSE.Controllers.Main.downloadTitleText":"스프레드시트 다운로드 중","SSE.Controllers.Main.errNoDuplicates":"중복 값이 ​​없습니다.","SSE.Controllers.Main.errorAccessDeny":"권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.","SSE.Controllers.Main.errorArgsRange":"입력 된 수식에 오류가 있습니다.
잘못된 인수 범위가 사용되었습니다.","SSE.Controllers.Main.errorAutoFilterChange":"이 작업은 워크시트의 테이블에 있는 셀을 이동하려고 하기 때문에 허용되지 않습니다.","SSE.Controllers.Main.errorAutoFilterChangeFormatTable":"테이블의 일부를 이동할 수 없으므로 선택한 셀에 대해 작업을 수행 할 수 없습니다.
전체 데이터를 이동하여 다시 시도하도록 다른 데이터 범위를 선택하십시오.","SSE.Controllers.Main.errorAutoFilterDataRange":"선택한 셀 범위에서 작업을 수행 할 수 없습니다.
기존 데이터 범위와 다른 데이터 범위를 선택하고 다시 시도하십시오.","SSE.Controllers.Main.errorAutoFilterHiddenRange":"영역에 필터링 된 셀이 포함되어있어 작업을 수행 할 수 없습니다.
필터링 된 요소를 숨김 해제하고 다시 시도하십시오.","SSE.Controllers.Main.errorBadImageUrl":"이미지 URL이 잘못되었습니다.","SSE.Controllers.Main.errorCalculatedItemInPageField":"항목을 추가하거나 수정할 수 없습니다. 피벗 테이블 보고서에 이 필드가 필터로 설정되어 있습니다.","SSE.Controllers.Main.errorCannotPasteImg":"클립보드에서 이 이미지를 붙여넣을 수 없지만, 장치에 저장한 후 \n삽입하거나 텍스트 없이 이미지를 복사하여 스프레드시트에 붙여넣을 수 있습니다.","SSE.Controllers.Main.errorCannotUngroup":"그룹을 해제할 수 없습니다. 윤곽선을 시작하려면 세부 행 또는 열을 선택하고 그룹화하십시오.","SSE.Controllers.Main.errorCannotUseCommandProtectedSheet":"보호된 시트에서는 이 명령을 사용할 수 없습니다. 이 명령을 사용하려면 시트 보호를 해제하세요.
비밀번호를 입력하라는 메시지가 표시될 수 있습니다.","SSE.Controllers.Main.errorChangeArray":"배열의 일부를 변경할 수 없습니다.","SSE.Controllers.Main.errorChangeFilteredRange":"이렇게 하면 워크시트의 필터 범위가 변경됩니다.
이 작업을 완료하려면 \"자동 필터\"를 삭제하십시오.","SSE.Controllers.Main.errorChangeOnProtectedSheet":"변경하려는 셀 또는 차트가 보호된 워크시트에 있습니다.
변경하려면 워크시트의 잠금을 해제하세요. 입력한 비밀번호를 수정해야 할 수도 있습니다.","SSE.Controllers.Main.errorCircularReference":"수식이 직접 또는 간접적으로 자신의 셀을 참조하는 순환 참조가 하나 이상 있습니다.
이 참조를 제거하거나 변경하거나, 수식을 다른 셀로 옮겨 보세요.","SSE.Controllers.Main.errorCoAuthoringDisconnect":"서버 연결이 끊어졌습니다. 문서를 지금 편집 할 수 없습니다.","SSE.Controllers.Main.errorConnectToServer":"문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.
'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.","SSE.Controllers.Main.errorConvertXml":"지원되지 않는 형식의 파일입니다.
XML 스프레드시트 2003 형식만 사용할 수 있습니다.","SSE.Controllers.Main.errorCopyDisabled":"보안상의 이유로 이 문서의 내용은 복사할 수 없습니다.","SSE.Controllers.Main.errorCopyMultiselectArea":"이 명령은 여러 선택 항목과 함께 사용할 수 없습니다.
단일 범위를 선택하고 다시 시도하십시오.","SSE.Controllers.Main.errorCountArg":"입력 된 수식에 오류가 있습니다.
잘못된 수의 인수가 사용되었습니다.","SSE.Controllers.Main.errorCountArgExceed":"입력 된 수식에 오류가 있습니다.
인수 수가 초과되었습니다.","SSE.Controllers.Main.errorCreateDefName":"기존 명명 된 범위를 편집 할 수 없으며 일부는 편집 중임에 따라 현재 명명 된 범위를 만들 수 없습니다.","SSE.Controllers.Main.errorCreateRange":"현재 일부 범위가 편집 중이어서 기존 범위를 편집할 수 없으며 새로운 범위를 생성할 수 없습니다.","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.errorDependentsNoFormulas":"종속 항목 추적 명령에서는 활성 셀을 참조하는 수식을 찾지 못했습니다.","SSE.Controllers.Main.errorDirectUrl":"문서에 대한 링크를 확인하십시오.
이 링크는 다운로드할 파일에 대한 직접 링크여야 합니다.","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.errorFormulaInPivotFieldName":"피벗 테이블 보고서에서 항목 이름이나 필드 이름에 수식을 입력할 수 없습니다.","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.errorInconsistentExt":"파일을 여는 중 오류가 발생했습니다.
파일 내용이 파일 확장명과 일치하지 않습니다.","SSE.Controllers.Main.errorInconsistentExtDocx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 텍스트 문서(예: docx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","SSE.Controllers.Main.errorInconsistentExtPdf":"파일을 여는 동안 오류가 발생했습니다.
파일의 내용은 pdf/djvu/xps/oxps 형식 중 하나와 일치하지만, 파일의 확장자가 일치하지 않습니다:%1.","SSE.Controllers.Main.errorInconsistentExtPptx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 프리젠테이션(예: pptx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","SSE.Controllers.Main.errorInconsistentExtXlsx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용은 스프레드시트(예: xlsx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","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.errorLockedCellGoalSeek":"목표값 찾기 과정에 포함된 셀 중 하나가 다른 사용자에 의해 수정되었습니다.","SSE.Controllers.Main.errorLockedCellPivot":"피벗 테이블에서 데이터를 변경할 수 없습니다.","SSE.Controllers.Main.errorLockedCellSolver":"Solver 프로세스에 관련된 셀 중 하나가 다른 사용자에 의해 수정되었습니다.","SSE.Controllers.Main.errorLockedWorksheetRename":"시트의 이름을 다른 사용자가 바꾸면 이름을 바꿀 수 없습니다.","SSE.Controllers.Main.errorMacroUnavailableWarning":"매크로 %1을 실행할 수 없습니다. 이 통합 문서에 해당 매크로가 없거나 모든 매크로가 비활성화되어 있을 수 있습니다.","SSE.Controllers.Main.errorMaxPoints":"차트당 시리즈내 포인트의 최대값은 4096임","SSE.Controllers.Main.errorMoveRange":"병합 된 셀의 일부를 변경할 수 없습니다","SSE.Controllers.Main.errorMoveSlicerError":"한 통합 문서에서 다른 통합 문서로 테이블 슬라이서를 복사할 수 없습니다.
전체 테이블과 슬라이서를 선택하여 다시 시도하세요.","SSE.Controllers.Main.errorMultiCellFormula":"다중 셀 배열 수식은 테이블에서 허용되지 않습니다.","SSE.Controllers.Main.errorNoDataToParse":"선택한 행에는 구문 분석을 위한 데이터가 없습니다.","SSE.Controllers.Main.errorNotUniqueFieldWithCalculated":"하나 이상의 피벗 테이블에 계산된 항목이 포함된 경우, 데이터 영역에서 동일한 필드를 두 번 이상 사용하거나 데이터 영역과 다른 영역에서 동시에 사용할 수 없습니다.","SSE.Controllers.Main.errorOpenWarning":"파일 수식 중 하나가 8192자 제한을 초과합니다.
공식이 삭제되었습니다.","SSE.Controllers.Main.errorOperandExpected":"입력 한 함수 구문이 올바르지 않습니다. 괄호 중 하나가 누락되어 있는지 확인하십시오 ( '('또는 ')').","SSE.Controllers.Main.errorPasswordIsNotCorrect":"잘못된 비밀번호.
캡 잠금 버튼이 꺼져 있는지 확인하고 올바른 대문자를 사용해야 합니다.","SSE.Controllers.Main.errorPasteInPivot":"이 변경은 선택한 셀에 대해 적용할 수 없습니다. 피벗 테이블에 영향을 주기 때문입니다.
보고서를 변경하려면 필드 목록을 사용하세요.","SSE.Controllers.Main.errorPasteMaxRange":"복사 및 붙여넣기 영역이 일치하지 않습니다.
같은 크기의 영역을 선택하거나 행의 첫 번째 셀을 클릭하여 복사한 셀을 붙여넣으세요.","SSE.Controllers.Main.errorPasteMultiSelect":"이 작업은 여러 범위를 선택한 경우에는 사용할 수 없습니다.
단일 범위를 선택하고 다시 시도하십시오.","SSE.Controllers.Main.errorPasteSlicerError":"테이블 슬라이서는 한 통합 문서에서 다른 통합 문서로 복사할 수 없습니다.","SSE.Controllers.Main.errorPivotFieldNameExists":"피벗 테이블 필드 이름이 이미 존재합니다.","SSE.Controllers.Main.errorPivotGroup":"그룹화할 수 없음","SSE.Controllers.Main.errorPivotOverlap":"피벗 보고서가 정해진 범위를 벗어났습니다.","SSE.Controllers.Main.errorPivotWithoutUnderlying":"피벗 테이블은 기본 데이터와 함께 저장되지 않습니다.
보고서를 업데이트하려면 \"업데이트\" 버튼을 사용하십시오.","SSE.Controllers.Main.errorPrecedentsNoValidRef":"선행 항목 추적 명령을 사용하려면 활성 셀에 유효한 참조를 포함하는 수식이 있어야 합니다.","SSE.Controllers.Main.errorPrintMaxPagesCount":"유감스럽게도 현재 프로그램 버전에서 한 번에 1500 페이지 이상을 인쇄 할 수 없습니다.
이 제한 사항은 다음 릴리스에서 제거 될 예정입니다.","SSE.Controllers.Main.errorProtectedRange":"이 범위는 편집이 허용되지 않습니다.","SSE.Controllers.Main.errorSaveWatermark":"이 파일에는 다른 도메인에 연결된 워터마크 이미지가 포함되어 있습니다.
PDF에서 워터마크를 표시하려면 워터마크 이미지를 문서와 동일한 도메인에서 연결되도록 업데이트하거나, 컴퓨터에서 업로드해 주세요.","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.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":"데이터로드 중 ...","SSE.Controllers.Main.loadFontTitleText":"데이터로드 중","SSE.Controllers.Main.loadImagesTextText":"이미지로드 중 ...","SSE.Controllers.Main.loadImagesTitleText":"이미지로드 중","SSE.Controllers.Main.loadImageTextText":"이미지로드 중 ...","SSE.Controllers.Main.loadImageTitleText":"이미지로드 중","SSE.Controllers.Main.loadingDocumentTitleText":"스프레드시트 로드 중","SSE.Controllers.Main.notcriticalErrorTitle":"경고","SSE.Controllers.Main.openErrorText":"파일을 여는 동안 오류가 발생했습니다","SSE.Controllers.Main.openTextText":"스프레드시트 열기 중...","SSE.Controllers.Main.openTitleText":"스프레드시트 열기","SSE.Controllers.Main.pastInMergeAreaError":"병합 된 셀의 일부를 변경할 수 없습니다","SSE.Controllers.Main.printTextText":"스프레드시트 인쇄 중...","SSE.Controllers.Main.printTitleText":"스프레드시트 인쇄","SSE.Controllers.Main.reloadButtonText":"Reload Page","SSE.Controllers.Main.requestEditFailedMessageText":"누군가이 문서를 지금 편집하고 있습니다. 나중에 다시 시도하십시오.","SSE.Controllers.Main.requestEditFailedTitleText":"액세스가 거부되었습니다","SSE.Controllers.Main.saveErrorText":"파일을 저장하는 동안 오류가 발생했습니다.","SSE.Controllers.Main.saveErrorTextDesktop":"이 파일을 저장하거나 생성할 수 없습니다.
가능한 이유는 다음과 같습니다.
1. 파일이 읽기 전용입니다.
2. 다른 사용자가 파일을 편집 중입니다.
3. 디스크가 가득 찼거나 손상되었습니다.","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.textConnectionLost":"연결을 시도 중입니다. 연결 설정을 확인해 주세요.","SSE.Controllers.Main.textContactUs":"영업 담당자에게 문의","SSE.Controllers.Main.textContinue":"계속","SSE.Controllers.Main.textConvertEquation":"방정식은 더 이상 지원되지 않는 이전 버전의 방정식 편집기를 사용하여 생성되었습니다. 편집하려면 수식을 Office Math ML 형식으로 변환하세요.
지금 변환하시겠습니까?","SSE.Controllers.Main.textCustomLoader":"라이선스 조건에 따라 교체할 권한이 없습니다.
견적은 당사 영업부에 문의해 주십시오.","SSE.Controllers.Main.textDisconnect":"네트워크 연결 끊김","SSE.Controllers.Main.textFillOtherRows":"다른 행 채우기","SSE.Controllers.Main.textFormulaFilledAllRows":"수식이 채워진 {0} 행에 데이터가 있습니다. 다른 빈 행을 채우는 데 몇 분 정도 걸릴 수 있습니다.","SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty":"수식이 첫 {0}행을 채웠습니다. 다른 빈 행을 채우는 데 몇 분 정도 걸릴 수 있습니다.","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData":"메모리 절약 이유로 수식은 첫 {0}행만 채웠습니다. 이 시트의 다른 행에는 데이터가 없습니다.","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty":"메모리 절약 이유로 수식은 첫 {0}행만 채웠습니다. 이 시트의 다른 행에는 데이터가 없습니다.","SSE.Controllers.Main.textGuest":"게스트","SSE.Controllers.Main.textHasMacros":"파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?","SSE.Controllers.Main.textKeep":"유지","SSE.Controllers.Main.textLearnMore":"자세히","SSE.Controllers.Main.textLoadingDocument":"스프레드시트 로드 중","SSE.Controllers.Main.textLongName":"128자 미만의 이름을 입력하세요.","SSE.Controllers.Main.textNeedSynchronize":"업데이트가 있습니다.","SSE.Controllers.Main.textNo":"No","SSE.Controllers.Main.textNoLicenseTitle":"라이선스 한도에 도달함","SSE.Controllers.Main.textPaidFeature":"유료기능","SSE.Controllers.Main.textPleaseWait":"작업이 예상보다 많은 시간이 걸릴 수 있습니다. 잠시 기다려주십시오 ...","SSE.Controllers.Main.textReconnect":"연결이 복원되었습니다","SSE.Controllers.Main.textRemember":"모든 파일에 대한 선택 사항을 기억하기","SSE.Controllers.Main.textRememberMacros":"모든 매크로에 대한 내 선택 기억","SSE.Controllers.Main.textRenameError":"사용자 이름은 비워둘 수 없습니다.","SSE.Controllers.Main.textRenameLabel":"협업에 사용할 이름을 입력합니다","SSE.Controllers.Main.textReplace":"바꾸기","SSE.Controllers.Main.textRequestMacros":"매크로에서 URL로 요청합니다. %1에게 요청을 허용하시겠습니까?","SSE.Controllers.Main.textShape":"도형","SSE.Controllers.Main.textStrict":"엄격 모드","SSE.Controllers.Main.textText":"본문","SSE.Controllers.Main.textTryQuickPrint":"빠른 인쇄를 선택했습니다. 전체 문서가 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.
계속하시겠습니까?","SSE.Controllers.Main.textTryUndoRedo":"빠른 공동 편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"엄격 모드 \"버튼을 클릭하면 엄격한 공동 편집 모드로 전환되어 파일을 편집 할 수 있습니다. 다른 사용자가 방해를해서 저장 한 후에 만 ​​변경 사항을 보내면됩니다. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ","SSE.Controllers.Main.textTryUndoRedoWarn":"빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.","SSE.Controllers.Main.textUndo":"실행 취소","SSE.Controllers.Main.textUpdateVersion":"문서를 현재 편집할 수 없습니다.
파일을 업데이트하는 중입니다. 잠시만 기다려 주세요...","SSE.Controllers.Main.textUpdating":"업데이트 중","SSE.Controllers.Main.textYes":"예","SSE.Controllers.Main.tipLicenseExceeded":"라이선스에서 허용된 최대 동시 연결 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","SSE.Controllers.Main.tipLicenseUsersExceeded":"라이선스에서 허용된 최대 편집 사용자 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","SSE.Controllers.Main.titleLicenseExp":"라이선스 만료","SSE.Controllers.Main.titleLicenseNotActive":"라이선스가 활성화되지 않음","SSE.Controllers.Main.titleReadOnly":"읽기 전용 모드","SSE.Controllers.Main.titleServerVersion":"편집기가 업데이트되었습니다.","SSE.Controllers.Main.titleUpdateVersion":"버전이 변경되었습니다","SSE.Controllers.Main.txtAccent":"Accent","SSE.Controllers.Main.txtAll":"(전체)","SSE.Controllers.Main.txtArt":"여기에 귀하의 텍스트를 입력하여 주십시오","SSE.Controllers.Main.txtBasicShapes":"기본 도형","SSE.Controllers.Main.txtBlank":"(빈칸)","SSE.Controllers.Main.txtButtons":"버튼","SSE.Controllers.Main.txtByField":"%2의 %1","SSE.Controllers.Main.txtCallouts":"설명선","SSE.Controllers.Main.txtCharts":"차트","SSE.Controllers.Main.txtClearFilter":"필터선택 초기화","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.txtInfo":"정보","SSE.Controllers.Main.txtLines":"선","SSE.Controllers.Main.txtMath":"수학","SSE.Controllers.Main.txtMinutes":"분","SSE.Controllers.Main.txtMonths":"월","SSE.Controllers.Main.txtMultiSelect":"다중 선택","SSE.Controllers.Main.txtNone":"없음","SSE.Controllers.Main.txtOpen":"열기","SSE.Controllers.Main.txtOr":"1% 또는 2%","SSE.Controllers.Main.txtPage":"페이지","SSE.Controllers.Main.txtPageOf":"전체 %2 중 %1","SSE.Controllers.Main.txtPages":"페이지","SSE.Controllers.Main.txtPicture":"그림","SSE.Controllers.Main.txtPivotTable":"피벗테이블","SSE.Controllers.Main.txtPreparedBy":"편집자","SSE.Controllers.Main.txtPrintArea":"인쇄 영역","SSE.Controllers.Main.txtQuarter":"분기","SSE.Controllers.Main.txtQuarters":"분기","SSE.Controllers.Main.txtRectangles":"직사각형","SSE.Controllers.Main.txtRow":"행","SSE.Controllers.Main.txtRowLbls":"행 레이블","SSE.Controllers.Main.txtSaveCopyAsComplete":"파일 복사본이 성공적으로 저장되었습니다","SSE.Controllers.Main.txtScheme_Aspect":"비율","SSE.Controllers.Main.txtScheme_Blue":"파랑","SSE.Controllers.Main.txtScheme_Blue_Green":"청록","SSE.Controllers.Main.txtScheme_Blue_II":"파랑 II","SSE.Controllers.Main.txtScheme_Blue_Warm":"따뜻한 파랑","SSE.Controllers.Main.txtScheme_Grayscale":"그레이스케일","SSE.Controllers.Main.txtScheme_Green":"초록","SSE.Controllers.Main.txtScheme_Green_Yellow":"연두","SSE.Controllers.Main.txtScheme_Marquee":"선택 윤곽선","SSE.Controllers.Main.txtScheme_Median":"중앙값","SSE.Controllers.Main.txtScheme_Office":"Office","SSE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","SSE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","SSE.Controllers.Main.txtScheme_Orange":"주황","SSE.Controllers.Main.txtScheme_Orange_Red":"주홍","SSE.Controllers.Main.txtScheme_Paper":"용지","SSE.Controllers.Main.txtScheme_Red":"빨강","SSE.Controllers.Main.txtScheme_Red_Orange":"적주황","SSE.Controllers.Main.txtScheme_Red_Violet":"자홍","SSE.Controllers.Main.txtScheme_Slipstream":"슬립스트림","SSE.Controllers.Main.txtScheme_Violet":"보라","SSE.Controllers.Main.txtScheme_Violet_II":"보라 II","SSE.Controllers.Main.txtScheme_Yellow":"노랑","SSE.Controllers.Main.txtScheme_Yellow_Orange":"황주황","SSE.Controllers.Main.txtSeconds":"초","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_actionButtonSound":"소리 버튼","SSE.Controllers.Main.txtShape_arc":"호","SSE.Controllers.Main.txtShape_bentArrow":"구부러진 화살","SSE.Controllers.Main.txtShape_bentConnector5":"연결선: 꺾임","SSE.Controllers.Main.txtShape_bentConnector5WithArrow":"연결선: 꺾인 화살표","SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"연결선: 꺾인 양쪽 화살표","SSE.Controllers.Main.txtShape_bentUpArrow":"위로 구부러진 화살","SSE.Controllers.Main.txtShape_bevel":"사선","SSE.Controllers.Main.txtShape_blockArc":"닫힌 호","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_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_snip1Rect":"사각형: 잘린 한쪽 모서리","SSE.Controllers.Main.txtShape_snip2DiagRect":"사각형: 잘린 대각선 방향 모서리","SSE.Controllers.Main.txtShape_snip2SameRect":"사각형: 잘린 양쪽 모서리","SSE.Controllers.Main.txtShape_snipRoundRect":"사각형: 한쪽은 둥글고 한쪽은 짤린 모서리","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.txtShape_stripedRightArrow":"줄무늬 오른쪽 화살표","SSE.Controllers.Main.txtShape_sun":"해모양","SSE.Controllers.Main.txtShape_teardrop":"눈물 방울","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_wave":"물결","SSE.Controllers.Main.txtShape_wedgeEllipseCallout":"말풍선: 타원형","SSE.Controllers.Main.txtShape_wedgeRectCallout":"말풍선: 사각형","SSE.Controllers.Main.txtShape_wedgeRoundRectCallout":"말풍선: 모서리가 둥근 사각형","SSE.Controllers.Main.txtSheet":"시트","SSE.Controllers.Main.txtSlicer":"슬라이서","SSE.Controllers.Main.txtSolverLookingSolution":"솔버가 해법을 찾고 있습니다.","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":"통화","SSE.Controllers.Main.txtStyle_Explanatory_Text":"설명 텍스트","SSE.Controllers.Main.txtStyle_Good":"Good","SSE.Controllers.Main.txtStyle_Heading_1":"제목 1","SSE.Controllers.Main.txtStyle_Heading_2":"제목 2","SSE.Controllers.Main.txtStyle_Heading_3":"제목 3","SSE.Controllers.Main.txtStyle_Heading_4":"제목 4","SSE.Controllers.Main.txtStyle_Input":"입력","SSE.Controllers.Main.txtStyle_Linked_Cell":"Linked Cell","SSE.Controllers.Main.txtStyle_Neutral":"Neutral","SSE.Controllers.Main.txtStyle_Normal":"일반","SSE.Controllers.Main.txtStyle_Note":"참고","SSE.Controllers.Main.txtStyle_Output":"출력","SSE.Controllers.Main.txtStyle_Percent":"Percent","SSE.Controllers.Main.txtStyle_Title":"제목","SSE.Controllers.Main.txtStyle_Total":"합계","SSE.Controllers.Main.txtStyle_Warning_Text":"경고문","SSE.Controllers.Main.txtTab":"탭","SSE.Controllers.Main.txtTable":"표","SSE.Controllers.Main.txtTime":"시간","SSE.Controllers.Main.txtUnlock":"잠금해제","SSE.Controllers.Main.txtUnlockRange":"범위해제","SSE.Controllers.Main.txtUnlockRangeDescription":"범위를 변경하려면 비밀번호를 입력하세요 :","SSE.Controllers.Main.txtUnlockRangeWarning":"변경하려는 범위는 암호로 보호됩니다.","SSE.Controllers.Main.txtValues":"값","SSE.Controllers.Main.txtView":"보기","SSE.Controllers.Main.txtXAxis":"X 축","SSE.Controllers.Main.txtYAxis":"Y 축","SSE.Controllers.Main.txtYears":"년","SSE.Controllers.Main.unknownErrorText":"알 수없는 오류.","SSE.Controllers.Main.unsupportedBrowserErrorText":"사용 중인 브라우저가 지원되지 않습니다.","SSE.Controllers.Main.uploadDocExtMessage":"알 수 없는 파일 형식입니다.","SSE.Controllers.Main.uploadDocFileCountMessage":"업로드 된 문서가 없습니다.","SSE.Controllers.Main.uploadDocSizeMessage":"최대 문서 크기 제한을 초과했습니다.","SSE.Controllers.Main.uploadImageExtMessage":"알 수없는 이미지 형식입니다.","SSE.Controllers.Main.uploadImageFileCountMessage":"이미지가 업로드되지 않았습니다.","SSE.Controllers.Main.uploadImageSizeMessage":"이미지 크기 제한을 초과했습니다.","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.warnExternalChartProtected":"이 차트는 외부 파일의 데이터를 기반으로 합니다. 이 창에서는 차트에 표시할 데이터만 선택할 수 있습니다. 스프레드시트를 편집하려면 스프레드시트 편집기에서 열어야 합니다.","SSE.Controllers.Main.warnLicenseAnonymous":"익명 사용자에 대한 접근이 거부되었습니다.
이 문서는 보기 전용으로 열립니다.","SSE.Controllers.Main.warnLicenseBefore":"라이선스가 활성화되지 않았습니다.
관리자에게 문의하세요.","SSE.Controllers.Main.warnLicenseExp":"귀하의 라이선스가 만료되었습니다.
라이선스를 갱신하고 페이지를 새로고침하세요.","SSE.Controllers.Main.warnLicenseLimitedNoAccess":"라이선스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.","SSE.Controllers.Main.warnLicenseLimitedRenewed":"라이선스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오","SSE.Controllers.Main.warnModifyFilter":"현재 핀이 사용자에게만 표시되지 않는 모드입니다. 필터를 추가하거나 제거할 수 없습니다.
현재 보기를 저장하려면 탭에서 시트 보기를 사용하세요.","SSE.Controllers.Main.warnNoLicense":"이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.","SSE.Controllers.Main.warnNoLicenseUsers":"이 버전의 %1 편집자에게는 동시 사용자에게 특정 제한 사항이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.","SSE.Controllers.Main.warnOpenCsv":"CSV 형식은 다중 시트 파일 또는 텍스트 이외의 요소를 저장할 수 없습니다.
활성 시트만 저장됩니다.","SSE.Controllers.Main.warnProcessRightsChange":"파일 편집 권한이 거부되었습니다.","SSE.Controllers.PivotTable.strSheet":"시트","SSE.Controllers.PivotTable.txtCalculatedItemInPageField":"항목을 추가하거나 수정할 수 없습니다. 피벗 테이블 보고서에 이 필드가 필터로 설정되어 있습니다.","SSE.Controllers.PivotTable.txtCalculatedItemWarningDefault":"이 활성 셀에서는 계산된 항목에 대한 작업이 허용되지 않습니다.","SSE.Controllers.PivotTable.txtNotUniqueFieldWithCalculated":"하나 이상의 피벗 테이블에 계산된 항목이 포함된 경우, 데이터 영역에서 동일한 필드를 두 번 이상 사용하거나 데이터 영역과 다른 영역에서 동시에 사용할 수 없습니다.","SSE.Controllers.PivotTable.txtPivotFieldCustomSubtotalsWithCalculatedItems":"계산된 항목은 사용자 지정 소계와 함께 작동하지 않습니다.","SSE.Controllers.PivotTable.txtPivotItemNameNotFound":"항목 이름을 찾을 수 없습니다. 이름을 정확히 입력했는지 확인하고, 해당 항목이 피벗테이블 보고서에 있는지 확인하십시오.","SSE.Controllers.PivotTable.txtWrongDataFieldSubtotalForCalculatedItems":"피벗테이블 보고서에 계산된 항목이 있을 경우 평균, 표준 편차 및 분산은 지원되지 않습니다.","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.txtCustom":"사용자 정의","SSE.Controllers.Print.txtZoomToPage":"페이지에 맞게 확대","SSE.Controllers.Search.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Controllers.Search.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","SSE.Controllers.Search.textReplaceSkipped":"대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.","SSE.Controllers.Search.textReplaceSuccess":"검색이 완료되었습니다. {0}번의 항목이 대체되었습니다.","SSE.Controllers.Statusbar.errNameExists":"같은 이름의 워크 시트가 이미 있습니다.","SSE.Controllers.Statusbar.errorLastSheet":"통합 문서에는 최소한 하나의 보이는 워크 시트가 있어야합니다.","SSE.Controllers.Statusbar.errorRemoveSheet":"워크 시트를 삭제할 수 없습니다.","SSE.Controllers.Statusbar.errSheetNameRules":"잘못된 시트 이름을 입력했습니다:
- 시트 이름은 비워둘 수 없습니다.
- 시트 이름에는 다음 문자를 포함할 수 없습니다: \\ / * ? [ ] : 또는 ' 문자를 처음이나 마지막에 사용할 수 없습니다.","SSE.Controllers.Statusbar.strSheet":"시트","SSE.Controllers.Statusbar.textContinue":"계속","SSE.Controllers.Statusbar.textDisconnect":"연결이 끊어졌습니다
연결을 시도하는 중입니다.","SSE.Controllers.Statusbar.textSheetViewTip":"시트보기 모드입니다. 필터 및 정렬은 나와 이 보기에 있는 사용자만 볼 수 있습니다.","SSE.Controllers.Statusbar.textSheetViewTipFilters":"시트 보기 모드에 있습니다. 필터는 나와 이 보기에 있는 사람들만 볼 수 있습니다.","SSE.Controllers.Statusbar.warnAddSheetCsv":"CSV 형식은 다중 시트 파일을 저장할 수 없습니다. 활성 시트만 저장됩니다. 모든 시트를 유지하려면 다른 형식으로 파일을 저장하세요.","SSE.Controllers.Statusbar.warnDeleteSheet":"워크 시트에 데이터가 있을 수 있습니다. 작업을 계속 하시겠습니까?","SSE.Controllers.Statusbar.zoomText":"확대/축소 {0} %","SSE.Controllers.TableDesignTab.notcriticalErrorTitle":"경고","SSE.Controllers.TableDesignTab.textExistName":"오류! 같은 이름의 범위가 이미 있습니다","SSE.Controllers.TableDesignTab.textInvalidName":"오류! 잘못된 테이블 이름","SSE.Controllers.TableDesignTab.textIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Controllers.TableDesignTab.textLongOperation":"긴 작업","SSE.Controllers.TableDesignTab.textReservedName":"사용하려는 이름이 이미 셀 수식에서 참조되고 있습니다. 다른 이름을 사용하세요.","SSE.Controllers.TableDesignTab.textResize":"크기 조정 테이블","SSE.Controllers.TableDesignTab.warnLongOperation":"수행하려는 작업은 완료하는 데 시간이 오래 걸릴 수 있습니다.
계속하시겠습니까?","SSE.Controllers.Toolbar.confirmAddFontName":"저장하려는 글꼴을 현재 장치에서 사용할 수 없습니다.
시스템 글꼴 중 하나를 사용하여 텍스트 스타일이 표시되고 저장된 글꼴은 사용할 수 있습니다.
계속 하시겠습니까? ","SSE.Controllers.Toolbar.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","SSE.Controllers.Toolbar.errorMaxPoints":"차트당 시리즈내 포인트의 최대값은 4096임.","SSE.Controllers.Toolbar.errorMaxRows":"오류! 차트 당 최대 데이터 시리즈 수는 255입니다.","SSE.Controllers.Toolbar.errorStockChart":"잘못된 행 순서. 주식형 차트를 작성하려면 시트에 데이터를 다음과 같은 순서로 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.","SSE.Controllers.Toolbar.helpChartElements":"몇 번의 클릭만으로 차트 요소의 표시 여부를 간편하게 전환할 수 있습니다.","SSE.Controllers.Toolbar.helpChartElementsHeader":"차트 요소 표시","SSE.Controllers.Toolbar.helpCommentFilter":"왼쪽 패널에서 열려 있는 댓글과 해결된 댓글을 전환하여 보기 방식을 관리하세요.","SSE.Controllers.Toolbar.helpCommentFilterHeader":"댓글 필터","SSE.Controllers.Toolbar.helpRtlDir":"셀의 텍스트 방향을 콘텐츠 요구 사항에 맞게 조정하세요.","SSE.Controllers.Toolbar.helpRtlDirHeader":"셀 텍스트 방향","SSE.Controllers.Toolbar.helpTableTab":"표 디자인 탭에서 서식이 지정된 모든 표 설정을 편리하게 이용할 수 있습니다.","SSE.Controllers.Toolbar.helpTableTabHeader":"테이블 디자인 탭","SSE.Controllers.Toolbar.textAccent":"악센트","SSE.Controllers.Toolbar.textBracket":"대괄호","SSE.Controllers.Toolbar.textDirectional":"방향","SSE.Controllers.Toolbar.textFontSizeErr":"입력 한 값이 잘못되었습니다.
1 ~ 409 사이의 숫자 값을 입력하십시오.","SSE.Controllers.Toolbar.textFraction":"분수","SSE.Controllers.Toolbar.textFunction":"함수","SSE.Controllers.Toolbar.textIndicator":"지표","SSE.Controllers.Toolbar.textInsert":"삽입","SSE.Controllers.Toolbar.textIntegral":"적분","SSE.Controllers.Toolbar.textLargeOperator":"대형 연산자","SSE.Controllers.Toolbar.textLimitAndLog":"극한 및 로그","SSE.Controllers.Toolbar.textLongOperation":"긴 작업","SSE.Controllers.Toolbar.textMatrix":"행렬","SSE.Controllers.Toolbar.textOperator":"연산자","SSE.Controllers.Toolbar.textPivot":"피벗 테이블","SSE.Controllers.Toolbar.textRadical":"근호","SSE.Controllers.Toolbar.textRating":"평가","SSE.Controllers.Toolbar.textRecentlyUsed":"최근 사용된","SSE.Controllers.Toolbar.textScript":"첨자","SSE.Controllers.Toolbar.textShapes":"도형","SSE.Controllers.Toolbar.textSymbols":"기호","SSE.Controllers.Toolbar.textWarning":"경고","SSE.Controllers.Toolbar.txtAccent_Accent":"급성","SSE.Controllers.Toolbar.txtAccent_ArrowD":"오른쪽 위 왼쪽 화살표 위","SSE.Controllers.Toolbar.txtAccent_ArrowL":"왼쪽 위 화살표","SSE.Controllers.Toolbar.txtAccent_ArrowR":"오른쪽 위 화살표 위","SSE.Controllers.Toolbar.txtAccent_Bar":"Bar","SSE.Controllers.Toolbar.txtAccent_BarBot":"Underbar","SSE.Controllers.Toolbar.txtAccent_BarTop":"Overbar","SSE.Controllers.Toolbar.txtAccent_BorderBox":"박스형 수식 (자리 표시 자 포함)","SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"상자화 된 수식 (예)","SSE.Controllers.Toolbar.txtAccent_Check":"확인","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","SSE.Controllers.Toolbar.txtAccent_DDDot":"트리플 도트","SSE.Controllers.Toolbar.txtAccent_DDot":"Double Dot","SSE.Controllers.Toolbar.txtAccent_Dot":"Dot","SSE.Controllers.Toolbar.txtAccent_DoubleBar":"Double Overbar","SSE.Controllers.Toolbar.txtAccent_Grave":"Grave","SSE.Controllers.Toolbar.txtAccent_GroupBot":"아래의 문자 그룹화","SSE.Controllers.Toolbar.txtAccent_GroupTop":"위의 문자 그룹화","SSE.Controllers.Toolbar.txtAccent_HarpoonL":"Leftwards Harpoon Above","SSE.Controllers.Toolbar.txtAccent_HarpoonR":"Rightwards Harpoon Above","SSE.Controllers.Toolbar.txtAccent_Hat":"Hat","SSE.Controllers.Toolbar.txtAccent_Smile":"Breve","SSE.Controllers.Toolbar.txtAccent_Tilde":"물결표","SSE.Controllers.Toolbar.txtBracket_Angle":"대괄호","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"구분 기호가있는 대괄호","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"구분 기호가있는 대괄호","SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"단일 브라켓","SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"단일 브래킷","SSE.Controllers.Toolbar.txtBracket_Curve":"대괄호","SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"구분 기호가있는 대괄호","SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Custom_1":"사례 (두 조건)","SSE.Controllers.Toolbar.txtBracket_Custom_2":"사례 (세 조건)","SSE.Controllers.Toolbar.txtBracket_Custom_3":"Stack Object","SSE.Controllers.Toolbar.txtBracket_Custom_4":"Stack Object","SSE.Controllers.Toolbar.txtBracket_Custom_5":"사례 사례","SSE.Controllers.Toolbar.txtBracket_Custom_6":"Binomial Coefficient","SSE.Controllers.Toolbar.txtBracket_Custom_7":"Binomial Coefficient","SSE.Controllers.Toolbar.txtBracket_Line":"대괄호","SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Line_OpenNone":"단일 브래킷","SSE.Controllers.Toolbar.txtBracket_LineDouble":"대괄호","SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"단일 브래킷","SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_LowLim":"대괄호","SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"단일 브래킷","SSE.Controllers.Toolbar.txtBracket_Round":"대괄호","SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"구분 기호가있는 대괄호","SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Round_OpenNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Square":"대괄호","SSE.Controllers.Toolbar.txtBracket_Square_CloseClose":"대괄호","SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"대괄호","SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Square_OpenNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"대괄호","SSE.Controllers.Toolbar.txtBracket_SquareDouble":"대괄호","SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"단일 대괄호","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","SSE.Controllers.Toolbar.txtFractionDifferential_1":"Differential","SSE.Controllers.Toolbar.txtFractionDifferential_2":"Differential","SSE.Controllers.Toolbar.txtFractionDifferential_3":"Differential","SSE.Controllers.Toolbar.txtFractionDifferential_4":"Differential","SSE.Controllers.Toolbar.txtFractionHorizontal":"선형 분수","SSE.Controllers.Toolbar.txtFractionPi_2":"Pi Over 2","SSE.Controllers.Toolbar.txtFractionSmall":"Small Fraction","SSE.Controllers.Toolbar.txtFractionVertical":"누적분수","SSE.Controllers.Toolbar.txtFunction_1_Cos":"역 코사인 함수","SSE.Controllers.Toolbar.txtFunction_1_Cosh":"쌍곡선 역 코사인 함수","SSE.Controllers.Toolbar.txtFunction_1_Cot":"역 코탄젠트 함수","SSE.Controllers.Toolbar.txtFunction_1_Coth":"쌍곡선 역방향 코탄젠트 함수","SSE.Controllers.Toolbar.txtFunction_1_Csc":"Inverse Cosecant Function","SSE.Controllers.Toolbar.txtFunction_1_Csch":"쌍곡선 반전 보조 함수","SSE.Controllers.Toolbar.txtFunction_1_Sec":"역 분개 함수","SSE.Controllers.Toolbar.txtFunction_1_Sech":"쌍곡선 역 차감 함수","SSE.Controllers.Toolbar.txtFunction_1_Sin":"역 사인 함수","SSE.Controllers.Toolbar.txtFunction_1_Sinh":"쌍곡선 역 사인 함수","SSE.Controllers.Toolbar.txtFunction_1_Tan":"역 탄젠트 함수","SSE.Controllers.Toolbar.txtFunction_1_Tanh":"쌍곡선 역 탄젠트 함수","SSE.Controllers.Toolbar.txtFunction_Cos":"코사인 함수","SSE.Controllers.Toolbar.txtFunction_Cosh":"쌍곡선 코사인 함수","SSE.Controllers.Toolbar.txtFunction_Cot":"코탄 센트 함수","SSE.Controllers.Toolbar.txtFunction_Coth":"쌍곡선 코탄 센트 함수","SSE.Controllers.Toolbar.txtFunction_Csc":"Cosecant 함수","SSE.Controllers.Toolbar.txtFunction_Csch":"쌍곡선 보조 함수","SSE.Controllers.Toolbar.txtFunction_Custom_1":"Sine theta","SSE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","SSE.Controllers.Toolbar.txtFunction_Custom_3":"Tangent formula","SSE.Controllers.Toolbar.txtFunction_Sec":"Secant 함수","SSE.Controllers.Toolbar.txtFunction_Sech":"쌍곡선 시컨트 함수","SSE.Controllers.Toolbar.txtFunction_Sin":"사인 함수","SSE.Controllers.Toolbar.txtFunction_Sinh":"쌍곡선 사인 함수","SSE.Controllers.Toolbar.txtFunction_Tan":"Tangent Function","SSE.Controllers.Toolbar.txtFunction_Tanh":"쌍곡선 탄젠트 함수","SSE.Controllers.Toolbar.txtGroupCell_Custom":"사용자 정의","SSE.Controllers.Toolbar.txtGroupCell_DataAndModel":"데이터와 모델","SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral":"좋음, 나쁨, 중립","SSE.Controllers.Toolbar.txtGroupCell_NoName":"이름 없음","SSE.Controllers.Toolbar.txtGroupCell_NumberFormat":"숫자 형식","SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles":"테마 기반 셀 스타일","SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings":"제목 및 표제","SSE.Controllers.Toolbar.txtGroupTable_Custom":"사용자 정의","SSE.Controllers.Toolbar.txtGroupTable_Dark":"어두운","SSE.Controllers.Toolbar.txtGroupTable_Light":"밝은","SSE.Controllers.Toolbar.txtGroupTable_Medium":"중","SSE.Controllers.Toolbar.txtInsertCells":"셀 삽입","SSE.Controllers.Toolbar.txtIntegral":"Integral","SSE.Controllers.Toolbar.txtIntegral_dtheta":"Differential theta","SSE.Controllers.Toolbar.txtIntegral_dx":"Differential x","SSE.Controllers.Toolbar.txtIntegral_dy":"차등 y","SSE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral","SSE.Controllers.Toolbar.txtIntegralDouble":"Double Integral","SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Double Integral","SSE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Double Integral","SSE.Controllers.Toolbar.txtIntegralOriented":"윤곽선 적분","SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"윤곽선 적분","SSE.Controllers.Toolbar.txtIntegralOrientedDouble":"Surface Integral","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Surface Integral","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"표면 적분","SSE.Controllers.Toolbar.txtIntegralOrientedSubSup":"윤곽선 적분","SSE.Controllers.Toolbar.txtIntegralOrientedTriple":"볼륨 정수","SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"볼륨 정수","SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"볼륨 정수","SSE.Controllers.Toolbar.txtIntegralSubSup":"Integral","SSE.Controllers.Toolbar.txtIntegralTriple":"Triple Integral","SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Triple Integral","SSE.Controllers.Toolbar.txtIntegralTripleSubSup":"Triple Integral","SSE.Controllers.Toolbar.txtInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_CoProd":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Custom_5":"Union","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Intersection":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Prod":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Sum":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Union":"Union","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"Union","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"Union","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_Lim":"제한","SSE.Controllers.Toolbar.txtLimitLog_Ln":"자연 로그","SSE.Controllers.Toolbar.txtLimitLog_Log":"로그","SSE.Controllers.Toolbar.txtLimitLog_LogBase":"로그","SSE.Controllers.Toolbar.txtLimitLog_Max":"최대값","SSE.Controllers.Toolbar.txtLimitLog_Min":"최소값","SSE.Controllers.Toolbar.txtLockSort":"선택의 범위 근처에 데이터가 존재 하지만이 셀을 변경하려면 충분한 권한이 없습니다.
선택의 범위를 계속 하시겠습니까?","SSE.Controllers.Toolbar.txtMatrix_1_2":"1x2 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_1_3":"1x3 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_1":"2x1 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2":"2x2 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"대괄호가있는 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"대괄호가있는 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"대괄호가있는 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"괄호로 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_3":"2x3 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_3_1":"3x1 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_3_2":"3x2 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_3_3":"3x3 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"기준점","SSE.Controllers.Toolbar.txtMatrix_Dots_Center":"Midline 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","SSE.Controllers.Toolbar.txtMatrix_Identity_2":"0 이 채워진 2x2 단위 행렬","SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"대각선 셀이 비어있는 2x2 단위 행렬","SSE.Controllers.Toolbar.txtMatrix_Identity_3":"0 이 채워진 3x3 단위 행렬","SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"대각선 셀이 비어있는 3x3 단위 행렬","SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"오른쪽 아래 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowD_Top":"오른쪽 위 왼쪽 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"왼쪽 아래쪽 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowL_Top":"왼쪽 위 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"오른쪽 아래 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowR_Top":"오른쪽 위 화살표 위","SSE.Controllers.Toolbar.txtOperator_ColonEquals":"콜론 균등","SSE.Controllers.Toolbar.txtOperator_Custom_1":"수익률","SSE.Controllers.Toolbar.txtOperator_Custom_2":"Delta Yields","SSE.Controllers.Toolbar.txtOperator_Definition":"정의에 의한 동일","SSE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta Equal To","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"오른쪽 아래 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"오른쪽 위 왼쪽 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"왼쪽 아래쪽 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"왼쪽 위 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"오른쪽 아래 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"오른쪽 위 화살표 위","SSE.Controllers.Toolbar.txtOperator_EqualsEquals":"Equal Equal","SSE.Controllers.Toolbar.txtOperator_MinusEquals":"Minus Equal","SSE.Controllers.Toolbar.txtOperator_PlusEquals":"Plus Equal","SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"측정 기준","SSE.Controllers.Toolbar.txtRadicalCustom_1":"Radical","SSE.Controllers.Toolbar.txtRadicalCustom_2":"Radical","SSE.Controllers.Toolbar.txtRadicalRoot_2":"학위가있는 제곱근","SSE.Controllers.Toolbar.txtRadicalRoot_3":"Cubic Root","SSE.Controllers.Toolbar.txtRadicalRoot_n":"Degree와 함께 급진적","SSE.Controllers.Toolbar.txtRadicalSqrt":"Square Root","SSE.Controllers.Toolbar.txtScriptCustom_1":"Script","SSE.Controllers.Toolbar.txtScriptCustom_2":"Script","SSE.Controllers.Toolbar.txtScriptCustom_3":"Script","SSE.Controllers.Toolbar.txtScriptCustom_4":"Script","SSE.Controllers.Toolbar.txtScriptSub":"아래 첨자","SSE.Controllers.Toolbar.txtScriptSubSup":"아래 첨자 - 위 첨자","SSE.Controllers.Toolbar.txtScriptSubSupLeft":"왼쪽 아래 첨자-위 첨자","SSE.Controllers.Toolbar.txtScriptSup":"Superscript","SSE.Controllers.Toolbar.txtSorting":"정렬","SSE.Controllers.Toolbar.txtSortSelected":"정렬 선택","SSE.Controllers.Toolbar.txtSymbol_about":"대략","SSE.Controllers.Toolbar.txtSymbol_additional":"Complement","SSE.Controllers.Toolbar.txtSymbol_aleph":"Alef","SSE.Controllers.Toolbar.txtSymbol_alpha":"Alpha","SSE.Controllers.Toolbar.txtSymbol_approx":"거의 동일","SSE.Controllers.Toolbar.txtSymbol_ast":"별표 연산자","SSE.Controllers.Toolbar.txtSymbol_beta":"베타","SSE.Controllers.Toolbar.txtSymbol_beth":"Bet","SSE.Controllers.Toolbar.txtSymbol_bullet":"글 머리 기호 연산자","SSE.Controllers.Toolbar.txtSymbol_cap":"교차점","SSE.Controllers.Toolbar.txtSymbol_cbrt":"큐브 루트","SSE.Controllers.Toolbar.txtSymbol_cdots":"중간 말줄임표","SSE.Controllers.Toolbar.txtSymbol_celsius":"Degrees Celsius","SSE.Controllers.Toolbar.txtSymbol_chi":"Chi","SSE.Controllers.Toolbar.txtSymbol_cong":"대략 같음","SSE.Controllers.Toolbar.txtSymbol_cup":"Union","SSE.Controllers.Toolbar.txtSymbol_ddots":"오른쪽 아래 대각선 줄임표","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_emptyset":"빈 세트","SSE.Controllers.Toolbar.txtSymbol_epsilon":"Epsilon","SSE.Controllers.Toolbar.txtSymbol_equals":"등호","SSE.Controllers.Toolbar.txtSymbol_equiv":"동일 함","SSE.Controllers.Toolbar.txtSymbol_eta":"Eta","SSE.Controllers.Toolbar.txtSymbol_exists":"존재 함","SSE.Controllers.Toolbar.txtSymbol_factorial":"Factorial","SSE.Controllers.Toolbar.txtSymbol_fahrenheit":"화씨","SSE.Controllers.Toolbar.txtSymbol_forall":"모두에게","SSE.Controllers.Toolbar.txtSymbol_gamma":"감마","SSE.Controllers.Toolbar.txtSymbol_geq":"크거나 같음","SSE.Controllers.Toolbar.txtSymbol_gg":"훨씬 더 큼","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":"보다 작음","SSE.Controllers.Toolbar.txtSymbol_ll":"훨씬 적습니다","SSE.Controllers.Toolbar.txtSymbol_minus":"Minus","SSE.Controllers.Toolbar.txtSymbol_mp":"마이너스 플러스","SSE.Controllers.Toolbar.txtSymbol_mu":"Mu","SSE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","SSE.Controllers.Toolbar.txtSymbol_neq":"같지 않음","SSE.Controllers.Toolbar.txtSymbol_ni":"구성원으로 포함","SSE.Controllers.Toolbar.txtSymbol_not":"부호 없음","SSE.Controllers.Toolbar.txtSymbol_notexists":"존재하지 않습니다","SSE.Controllers.Toolbar.txtSymbol_nu":"Nu","SSE.Controllers.Toolbar.txtSymbol_o":"Omicron","SSE.Controllers.Toolbar.txtSymbol_omega":"Omega","SSE.Controllers.Toolbar.txtSymbol_partial":"부분 미분","SSE.Controllers.Toolbar.txtSymbol_percent":"백분율","SSE.Controllers.Toolbar.txtSymbol_phi":"Phi","SSE.Controllers.Toolbar.txtSymbol_pi":"Pi","SSE.Controllers.Toolbar.txtSymbol_plus":"Plus","SSE.Controllers.Toolbar.txtSymbol_pm":"Plus Minus","SSE.Controllers.Toolbar.txtSymbol_propto":"Proportional To","SSE.Controllers.Toolbar.txtSymbol_psi":"Psi","SSE.Controllers.Toolbar.txtSymbol_qdrt":"네 번째 루트","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_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_upsilon":"Upsilon","SSE.Controllers.Toolbar.txtSymbol_varepsilon":"Epsilon Variant","SSE.Controllers.Toolbar.txtSymbol_varphi":"Phi Variant","SSE.Controllers.Toolbar.txtSymbol_varpi":"Pi Variant","SSE.Controllers.Toolbar.txtSymbol_varrho":"Rho Variant","SSE.Controllers.Toolbar.txtSymbol_varsigma":"Sigma Variant","SSE.Controllers.Toolbar.txtSymbol_vartheta":"Theta Variant","SSE.Controllers.Toolbar.txtSymbol_vdots":"수직 줄임표","SSE.Controllers.Toolbar.txtSymbol_xsi":"Xi","SSE.Controllers.Toolbar.txtSymbol_zeta":"Zeta","SSE.Controllers.Toolbar.txtTable_TableStyleDark":"어두운 표 스타일","SSE.Controllers.Toolbar.txtTable_TableStyleLight":"밝은 표 스타일","SSE.Controllers.Toolbar.txtTable_TableStyleMedium":"중간 표 스타일","SSE.Controllers.Toolbar.warnLongOperation":"수행하려는 작업이 완료하는 데 시간이 오래 걸릴 수 있습니다. 계속 하시겠습니까?","SSE.Controllers.Toolbar.warnMergeLostData":"왼쪽 위 셀의 데이터 만 병합 된 셀에 남아 있습니다.
계속 하시겠습니까?","SSE.Controllers.Toolbar.warnNoRecommended":"차트를 만들려면, 사용하려는 데이터가 포함된 셀을 선택하세요.
행과 열에 이름이 있고 이를 레이블로 사용하려면, 선택 영역에 포함시키세요.","SSE.Controllers.Viewport.textFreezePanes":"창 고정","SSE.Controllers.Viewport.textFreezePanesShadow":"틀 고정 음영 표시","SSE.Controllers.Viewport.textHideFBar":"수식 입력줄 감추기","SSE.Controllers.Viewport.textHideGridlines":"눈금 선 숨기기","SSE.Controllers.Viewport.textHideHeadings":"제목 숨기기","SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator":"소수점 구분 기호","SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator":"천 단위 구분자","SSE.Views.AdvancedSeparatorDialog.textLabel":"디지털 데이터 식별을 위한 설정","SSE.Views.AdvancedSeparatorDialog.textQualifier":"텍스트 퀄리파이어","SSE.Views.AdvancedSeparatorDialog.textTitle":"고급 설정","SSE.Views.AdvancedSeparatorDialog.txtNone":"(없음)","SSE.Views.AutoFilterDialog.btnCustomFilter":"사용자 정의 필터","SSE.Views.AutoFilterDialog.textAddSelection":"현재 선택을 필터에 추가","SSE.Views.AutoFilterDialog.textEmptyItem":"{공백}","SSE.Views.AutoFilterDialog.textSelectAll":"모두 선택","SSE.Views.AutoFilterDialog.textSelectAllResults":"모든 검색 결과 선택","SSE.Views.AutoFilterDialog.textWarning":"경고","SSE.Views.AutoFilterDialog.txtAboveAve":"평균 이상","SSE.Views.AutoFilterDialog.txtAfter":"이후...","SSE.Views.AutoFilterDialog.txtAllDatesInThePeriod":"기간 내의 모든 날짜","SSE.Views.AutoFilterDialog.txtApril":"4월","SSE.Views.AutoFilterDialog.txtAugust":"8월","SSE.Views.AutoFilterDialog.txtBefore":"이전...","SSE.Views.AutoFilterDialog.txtBegins":"다음으로 시작 ...","SSE.Views.AutoFilterDialog.txtBelowAve":"평균 이하","SSE.Views.AutoFilterDialog.txtBetween":"해당 범위...","SSE.Views.AutoFilterDialog.txtClear":"지우기","SSE.Views.AutoFilterDialog.txtContains":"포함 ...","SSE.Views.AutoFilterDialog.txtDateFilter":"날짜 필터","SSE.Views.AutoFilterDialog.txtDecember":"12월","SSE.Views.AutoFilterDialog.txtEmpty":"검색","SSE.Views.AutoFilterDialog.txtEnds":"끝내기 ...","SSE.Views.AutoFilterDialog.txtEquals":"같음 ...","SSE.Views.AutoFilterDialog.txtFebruary":"2월","SSE.Views.AutoFilterDialog.txtFilterCellColor":"셀 색상별로 필터링","SSE.Views.AutoFilterDialog.txtFilterFontColor":"글꼴 색으로 필터링","SSE.Views.AutoFilterDialog.txtGreater":"보다 큼 ...","SSE.Views.AutoFilterDialog.txtGreaterEquals":"크거나 같음 ...","SSE.Views.AutoFilterDialog.txtJanuary":"1월","SSE.Views.AutoFilterDialog.txtJuly":"7월","SSE.Views.AutoFilterDialog.txtJune":"6월","SSE.Views.AutoFilterDialog.txtLabelFilter":"라벨 필터","SSE.Views.AutoFilterDialog.txtLastMonth":"지난 달","SSE.Views.AutoFilterDialog.txtLastQuarter":"지난 분기","SSE.Views.AutoFilterDialog.txtLastWeek":"지난 주","SSE.Views.AutoFilterDialog.txtLastYear":"작년","SSE.Views.AutoFilterDialog.txtLess":"작음 ...","SSE.Views.AutoFilterDialog.txtLessEquals":"작거나 같음 ...","SSE.Views.AutoFilterDialog.txtMarch":"3월","SSE.Views.AutoFilterDialog.txtMay":"5월","SSE.Views.AutoFilterDialog.txtNextMonth":"다음 달","SSE.Views.AutoFilterDialog.txtNextQuarter":"다음 분기","SSE.Views.AutoFilterDialog.txtNextWeek":"다음 주","SSE.Views.AutoFilterDialog.txtNextYear":"다음 해","SSE.Views.AutoFilterDialog.txtNotBegins":"...로 시작하지 않습니다 ...","SSE.Views.AutoFilterDialog.txtNotBetween":"제외 범위...","SSE.Views.AutoFilterDialog.txtNotContains":"포함하지 않음 ...","SSE.Views.AutoFilterDialog.txtNotEnds":"끝내지 않습니다 ...","SSE.Views.AutoFilterDialog.txtNotEquals":"같지 않습니다 ...","SSE.Views.AutoFilterDialog.txtNovember":"11월","SSE.Views.AutoFilterDialog.txtNumFilter":"숫자 필터","SSE.Views.AutoFilterDialog.txtOctober":"10월","SSE.Views.AutoFilterDialog.txtQuarter1":"1분기","SSE.Views.AutoFilterDialog.txtQuarter2":"2분기","SSE.Views.AutoFilterDialog.txtQuarter3":"3분기","SSE.Views.AutoFilterDialog.txtQuarter4":"4분기","SSE.Views.AutoFilterDialog.txtReapply":"재적용","SSE.Views.AutoFilterDialog.txtSeptember":"9월","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.txtThisMonth":"이번 달","SSE.Views.AutoFilterDialog.txtThisQuarter":"이번 분기","SSE.Views.AutoFilterDialog.txtThisWeek":"이번 주","SSE.Views.AutoFilterDialog.txtThisYear":"올해","SSE.Views.AutoFilterDialog.txtTitle":"필터","SSE.Views.AutoFilterDialog.txtToday":"오늘","SSE.Views.AutoFilterDialog.txtTomorrow":"내일","SSE.Views.AutoFilterDialog.txtTop10":"Top 10","SSE.Views.AutoFilterDialog.txtValueFilter":"값 필터","SSE.Views.AutoFilterDialog.txtYearToDate":"년간 누적","SSE.Views.AutoFilterDialog.txtYesterday":"어제","SSE.Views.AutoFilterDialog.warnFilterError":"값 필터를 적용하려면 \"값\" 영역에 하나 이상의 필드가 있어야 합니다.","SSE.Views.AutoFilterDialog.warnNoSelected":"하나 이상의 값을 선택해야합니다.","SSE.Views.CellEditor.textManager":"이름 관리자","SSE.Views.CellEditor.tipFormula":"함수 삽입","SSE.Views.CellRangeDialog.errorMaxRows":"오류! 차트 당 최대 데이터 시리즈 수는 255입니다.","SSE.Views.CellRangeDialog.errorStockChart":"잘못된 행 순서. 주식형 차트를 작성하려면 시트에 데이터를 다음과 같은 순서로 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.","SSE.Views.CellRangeDialog.txtEmpty":"이 입력란은 필수 항목","SSE.Views.CellRangeDialog.txtInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.CellRangeDialog.txtTitle":"데이터 범위 선택","SSE.Views.CellSettings.strShrink":"크기에 맞게 축소","SSE.Views.CellSettings.strWrap":"텍스트 줄 바꾸기","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.textControl":"텍스트 제어","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.textOrientation":"텍스트 방향","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.errorInvalidReference":"참조가 잘못되었습니다. 참조는 열려 있는 워크시트여야 합니다.","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.textSwitch":"행 / 열 전환","SSE.Views.ChartDataDialog.textTitle":"차트 데이터","SSE.Views.ChartDataDialog.textUp":"위","SSE.Views.ChartDataRangeDialog.errorInFormula":"입력한 공식이 잘못되었습니다.","SSE.Views.ChartDataRangeDialog.errorInvalidReference":"참조가 잘못되었습니다. 참조는 열려 있는 워크시트여야 합니다.","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.errorMaxRows":"각 차트의 최대 데이터 계열 수는 255개입니다.","SSE.Views.ChartSettings.strLineWeight":"선 두께","SSE.Views.ChartSettings.strSparkColor":"색상","SSE.Views.ChartSettings.strTemplate":"템플릿","SSE.Views.ChartSettings.text3dDepth":"깊이(%)","SSE.Views.ChartSettings.text3dHeight":"높이(%)","SSE.Views.ChartSettings.text3dRotation":"3D 회전","SSE.Views.ChartSettings.textAdvanced":"고급 설정","SSE.Views.ChartSettings.textAutoscale":"자동 크기 조정","SSE.Views.ChartSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.","SSE.Views.ChartSettings.textChangeType":"유형 변경","SSE.Views.ChartSettings.textChartType":"차트 유형 변경","SSE.Views.ChartSettings.textDefault":"기본 로테이션","SSE.Views.ChartSettings.textDown":"아래로","SSE.Views.ChartSettings.textEditData":"데이터 및 위치 편집","SSE.Views.ChartSettings.textFirstPoint":"첫 번째 지점","SSE.Views.ChartSettings.textHeight":"높이","SSE.Views.ChartSettings.textHighPoint":"높은 점수","SSE.Views.ChartSettings.textKeepRatio":"상수 비율","SSE.Views.ChartSettings.textLastPoint":"마지막 지점","SSE.Views.ChartSettings.textLeft":"왼쪽","SSE.Views.ChartSettings.textLowPoint":"Low Point","SSE.Views.ChartSettings.textMarkers":"마커","SSE.Views.ChartSettings.textNarrow":"좁은 시야각","SSE.Views.ChartSettings.textNegativePoint":"Negative Point","SSE.Views.ChartSettings.textPerspective":"관점","SSE.Views.ChartSettings.textRanges":"참조 대상","SSE.Views.ChartSettings.textRight":"오른쪽","SSE.Views.ChartSettings.textRightAngle":"직각 축","SSE.Views.ChartSettings.textSelectData":"데이터 선택","SSE.Views.ChartSettings.textShow":"보기","SSE.Views.ChartSettings.textSize":"크기","SSE.Views.ChartSettings.textStyle":"스타일","SSE.Views.ChartSettings.textSwitch":"행 / 열 전환","SSE.Views.ChartSettings.textType":"유형","SSE.Views.ChartSettings.textUp":"위","SSE.Views.ChartSettings.textWiden":"시야 확장","SSE.Views.ChartSettings.textWidth":"너비","SSE.Views.ChartSettings.textX":"X 회전","SSE.Views.ChartSettings.textY":"Y 회전","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":"시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.","SSE.Views.ChartSettingsDlg.textAltTitle":"제목","SSE.Views.ChartSettingsDlg.textAuto":"Auto","SSE.Views.ChartSettingsDlg.textAutoEach":"각자 자동","SSE.Views.ChartSettingsDlg.textAxisCrosses":"교차축","SSE.Views.ChartSettingsDlg.textAxisOptions":"축 옵션","SSE.Views.ChartSettingsDlg.textAxisPos":"축 위치","SSE.Views.ChartSettingsDlg.textAxisSettings":"축 설정","SSE.Views.ChartSettingsDlg.textAxisTitle":"제목","SSE.Views.ChartSettingsDlg.textBase":"기본","SSE.Views.ChartSettingsDlg.textBetweenTickMarks":"눈금 사이","SSE.Views.ChartSettingsDlg.textBillions":"10 억","SSE.Views.ChartSettingsDlg.textBottom":"Bottom","SSE.Views.ChartSettingsDlg.textCategoryName":"카테고리 이름","SSE.Views.ChartSettingsDlg.textCenter":"Center","SSE.Views.ChartSettingsDlg.textChartElementsLegend":"차트 요소 &
차트 범례","SSE.Views.ChartSettingsDlg.textChartTitle":"차트 제목","SSE.Views.ChartSettingsDlg.textCross":"Cross","SSE.Views.ChartSettingsDlg.textCustom":"사용자 지정","SSE.Views.ChartSettingsDlg.textDataColumns":"열 단위로","SSE.Views.ChartSettingsDlg.textDataLabels":"데이터 레이블","SSE.Views.ChartSettingsDlg.textDataRange":"데이터 범위","SSE.Views.ChartSettingsDlg.textDataRows":"행 단위로","SSE.Views.ChartSettingsDlg.textDataSeries":"데이터 계열","SSE.Views.ChartSettingsDlg.textDisplayLegend":"범례 표시","SSE.Views.ChartSettingsDlg.textEmptyCells":"숨겨진 빈 셀","SSE.Views.ChartSettingsDlg.textEmptyLine":"데이터 요소를 선으로 연결","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.textHide":"숨기기","SSE.Views.ChartSettingsDlg.textHideAxis":"축 감추기","SSE.Views.ChartSettingsDlg.textHigh":"높음","SSE.Views.ChartSettingsDlg.textHorAxis":"가로 축","SSE.Views.ChartSettingsDlg.textHorAxisSec":"수평 보조축","SSE.Views.ChartSettingsDlg.textHorGrid":"수평 눈금 선","SSE.Views.ChartSettingsDlg.textHorizontal":"Horizontal","SSE.Views.ChartSettingsDlg.textHorTitle":"가로 축 제목","SSE.Views.ChartSettingsDlg.textHundredMil":"100 000 000","SSE.Views.ChartSettingsDlg.textHundreds":"Hundreds","SSE.Views.ChartSettingsDlg.textHundredThousands":"100 000","SSE.Views.ChartSettingsDlg.textIn":"In","SSE.Views.ChartSettingsDlg.textInnerBottom":"내부 하단","SSE.Views.ChartSettingsDlg.textInnerTop":"내부 상단","SSE.Views.ChartSettingsDlg.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.ChartSettingsDlg.textLabelDist":"축 레이블 거리","SSE.Views.ChartSettingsDlg.textLabelInterval":"레이블 간격","SSE.Views.ChartSettingsDlg.textLabelOptions":"레이블 옵션","SSE.Views.ChartSettingsDlg.textLabelPos":"레이블 위치","SSE.Views.ChartSettingsDlg.textLayout":"레이아웃","SSE.Views.ChartSettingsDlg.textLeft":"왼쪽","SSE.Views.ChartSettingsDlg.textLeftOverlay":"왼쪽 오버레이","SSE.Views.ChartSettingsDlg.textLegendBottom":"Bottom","SSE.Views.ChartSettingsDlg.textLegendLeft":"왼쪽","SSE.Views.ChartSettingsDlg.textLegendPos":"범례","SSE.Views.ChartSettingsDlg.textLegendRight":"오른쪽","SSE.Views.ChartSettingsDlg.textLegendTop":"Top","SSE.Views.ChartSettingsDlg.textLines":"선","SSE.Views.ChartSettingsDlg.textLocationRange":"위치 범위","SSE.Views.ChartSettingsDlg.textLogScale":"로그 스케일","SSE.Views.ChartSettingsDlg.textLow":"낮음","SSE.Views.ChartSettingsDlg.textMajor":"Major","SSE.Views.ChartSettingsDlg.textMajorMinor":"주니어 및 마이너","SSE.Views.ChartSettingsDlg.textMajorType":"주요 유형","SSE.Views.ChartSettingsDlg.textManual":"수동","SSE.Views.ChartSettingsDlg.textMarkers":"마커","SSE.Views.ChartSettingsDlg.textMarksInterval":"마크 간 간격","SSE.Views.ChartSettingsDlg.textMaxValue":"최대값","SSE.Views.ChartSettingsDlg.textMillions":"Millions","SSE.Views.ChartSettingsDlg.textMinor":"Minor","SSE.Views.ChartSettingsDlg.textMinorType":"보조 유형","SSE.Views.ChartSettingsDlg.textMinValue":"최소값","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":"외부 상단","SSE.Views.ChartSettingsDlg.textOverlay":"오버레이","SSE.Views.ChartSettingsDlg.textReverse":"역순으로 값","SSE.Views.ChartSettingsDlg.textReverseOrder":"역순","SSE.Views.ChartSettingsDlg.textRight":"오른쪽","SSE.Views.ChartSettingsDlg.textRightOverlay":"오른쪽 오버레이","SSE.Views.ChartSettingsDlg.textRotated":"Rotated","SSE.Views.ChartSettingsDlg.textSameAll":"모두 동일 함","SSE.Views.ChartSettingsDlg.textSelectData":"데이터 선택","SSE.Views.ChartSettingsDlg.textSeparator":"데이터 레이블 구분 기호","SSE.Views.ChartSettingsDlg.textSeriesName":"시리즈 이름","SSE.Views.ChartSettingsDlg.textShow":"보기","SSE.Views.ChartSettingsDlg.textShowAxis":"축 표시","SSE.Views.ChartSettingsDlg.textShowBorders":"차트 테두리 표시","SSE.Views.ChartSettingsDlg.textShowData":"숨겨진 행과 열에 데이터 표시","SSE.Views.ChartSettingsDlg.textShowEmptyCells":"빈 셀을 다음으로 표시","SSE.Views.ChartSettingsDlg.textShowEquation":"차트에 방정식 표시","SSE.Views.ChartSettingsDlg.textShowGrid":"눈금 선","SSE.Views.ChartSettingsDlg.textShowSparkAxis":"축 표시","SSE.Views.ChartSettingsDlg.textShowValues":"차트 값 표시","SSE.Views.ChartSettingsDlg.textSingle":"단일 스파크라인","SSE.Views.ChartSettingsDlg.textSmooth":"부드럽게","SSE.Views.ChartSettingsDlg.textSnap":"셀 잠그기","SSE.Views.ChartSettingsDlg.textSparkRanges":"스파크라인 범위","SSE.Views.ChartSettingsDlg.textStraight":"직선","SSE.Views.ChartSettingsDlg.textStyle":"스타일","SSE.Views.ChartSettingsDlg.textTenMillions":"10 000 000","SSE.Views.ChartSettingsDlg.textTenThousands":"10 000","SSE.Views.ChartSettingsDlg.textThousands":"수천","SSE.Views.ChartSettingsDlg.textTickOptions":"눈금 옵션","SSE.Views.ChartSettingsDlg.textTitle":"차트 - 고급 설정","SSE.Views.ChartSettingsDlg.textTitleSparkline":"스파크라인 - 고급 설정","SSE.Views.ChartSettingsDlg.textTop":"Top","SSE.Views.ChartSettingsDlg.textTrendlineOptions":"추세선 옵션","SSE.Views.ChartSettingsDlg.textTrillions":"수조","SSE.Views.ChartSettingsDlg.textTwoCell":"셀 이동 및 크기 조정","SSE.Views.ChartSettingsDlg.textType":"유형","SSE.Views.ChartSettingsDlg.textTypeData":"유형 및 데이터","SSE.Views.ChartSettingsDlg.textTypeStyle":"차트 유형, 스타일 &
참조 대상","SSE.Views.ChartSettingsDlg.textUnits":"표시 단위","SSE.Views.ChartSettingsDlg.textValue":"값","SSE.Views.ChartSettingsDlg.textVertAxis":"세로 축","SSE.Views.ChartSettingsDlg.textVertAxisSec":"수직 보조축","SSE.Views.ChartSettingsDlg.textVertGrid":"수직 눈금 선","SSE.Views.ChartSettingsDlg.textVertTitle":"세로 축 제목","SSE.Views.ChartSettingsDlg.textXAxisTitle":"X 축 제목","SSE.Views.ChartSettingsDlg.textYAxisTitle":"Y 축 제목","SSE.Views.ChartSettingsDlg.textZero":"Zero","SSE.Views.ChartSettingsDlg.txtEmpty":"이 입력란은 필수 항목","SSE.Views.ChartTypeDialog.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","SSE.Views.ChartTypeDialog.errorSecondaryAxis":"선택한 차트 유형에는 기존 차트에서 사용하는 보조 축이 필요합니다. 다른 차트 유형을 선택하세요.","SSE.Views.ChartTypeDialog.textSecondary":"보조축","SSE.Views.ChartTypeDialog.textSeries":"시리즈","SSE.Views.ChartTypeDialog.textStyle":"스타일","SSE.Views.ChartTypeDialog.textTitle":"차트 유형","SSE.Views.ChartTypeDialog.textType":"형식","SSE.Views.ChartWizardDialog.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","SSE.Views.ChartWizardDialog.errorMaxPoints":"차트당 시리즈의 최대 포인트 수는 4096입니다.","SSE.Views.ChartWizardDialog.errorMaxRows":"차트당 최대 데이터 시리즈 수는 255개입니다.","SSE.Views.ChartWizardDialog.errorSecondaryAxis":"선택한 차트 유형에는 기존 차트에서 사용하는 보조 축이 필요합니다. 다른 차트 유형을 선택하세요.","SSE.Views.ChartWizardDialog.errorStockChart":"행 순서가 올바르지 않습니다. 주식 차트를 만들려면 시트에 다음 순서로 데이터를 배치하세요: 시가, 최고가, 최저가, 종가.","SSE.Views.ChartWizardDialog.textRecommended":"추천","SSE.Views.ChartWizardDialog.textSecondary":"보조 축","SSE.Views.ChartWizardDialog.textSeries":"시리즈","SSE.Views.ChartWizardDialog.textTitle":"차트 삽입","SSE.Views.ChartWizardDialog.textTitleChange":"차트 유형 변경","SSE.Views.ChartWizardDialog.textType":"유형","SSE.Views.ChartWizardDialog.txtSeriesDesc":"데이터 계열의 차트 유형과 축을 선택하세요","SSE.Views.ConstraintDialog.textDataConstraint":"제약 조건은 숫자, 단순 참조 또는 숫자 값을 포함하는 수식이어야 합니다.","SSE.Views.ConstraintDialog.txtAdd":"추가","SSE.Views.ConstraintDialog.txtBin":"이진","SSE.Views.ConstraintDialog.txtCellRef":"셀 참조","SSE.Views.ConstraintDialog.txtConstraint":"제약조건","SSE.Views.ConstraintDialog.txtDiff":"AllDifferent","SSE.Views.ConstraintDialog.txtInt":"정수","SSE.Views.ConstraintDialog.txtNotValidRef":"셀 참조가 비어 있거나 내용이 유효하지 않습니다.","SSE.Views.ConstraintDialog.txtTitle":"조건 추가","SSE.Views.ConstraintDialog.txtTitleChange":"제약조건 변경","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.capDataExternalLinks":"외부 링크","SSE.Views.DataTab.capDataFromText":"데이터 검색","SSE.Views.DataTab.capGoalSeek":"목표값 찾기","SSE.Views.DataTab.capSolver":"Solver","SSE.Views.DataTab.mniFromFile":"로컬 시스템의 TXT/CSV","SSE.Views.DataTab.mniFromUrl":"Web 주소에서 TXT/CSV","SSE.Views.DataTab.mniFromXMLFile":"로컬 XML에서","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.tipExternalLinks":"이 스프레드시트와 연결된 다른 파일 보기","SSE.Views.DataTab.tipGoalSeek":"원하는 값을 얻기 위한 올바른 입력값을 찾습니다","SSE.Views.DataTab.tipGroup":"셀 범위를 그룹화","SSE.Views.DataTab.tipRemDuplicates":"시트에서 중복된 행을 삭제합니다","SSE.Views.DataTab.tipSolver":"대상 셀의 최적값을 찾으세요","SSE.Views.DataTab.tipToColumns":"텍스트가 있는 한 열을 여러 열로 나눕니다","SSE.Views.DataTab.tipUngroup":"셀 범위 그룹 해제","SSE.Views.DataValidationDialog.errorFormula":"이 값은 현재 오류로 평가됩니다. 계속하시겠습니까?","SSE.Views.DataValidationDialog.errorInvalid":"\"{0}\" 필드에 입력한 값이 잘못되었습니다.","SSE.Views.DataValidationDialog.errorInvalidDate":"\"{0}\" 필드에 입력한 날짜가 잘못되었습니다.","SSE.Views.DataValidationDialog.errorInvalidList":"목록 소스는 구분된 목록이거나 단일 행 또는 단일 열에 대한 참조여야 합니다.","SSE.Views.DataValidationDialog.errorInvalidTime":"\"{0}\" 필드에 입력한 시간이 잘못되었습니다.","SSE.Views.DataValidationDialog.errorMinGreaterMax":"\"{1}\" 필드는 \"{0}\" 필드보다 크거나 같아야 합니다.","SSE.Views.DataValidationDialog.errorMustEnterBothValues":"\"{0}\" 필드와 \"{1}\" 필드 모두에 값을 입력해야 합니다.","SSE.Views.DataValidationDialog.errorMustEnterValue":"\"{0}\" 필드에 값을 입력해야 합니다.","SSE.Views.DataValidationDialog.errorNamedRange":"지정한 명명된 범위를 찾을 수 없습니다.","SSE.Views.DataValidationDialog.errorNegativeTextLength":"\"{0}\" 조건에서는 음수 값을 사용할 수 없습니다.","SSE.Views.DataValidationDialog.errorNotNumeric":"필드 \"{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.textShowDropDown":"셀에 드롭 다운 목록 표시","SSE.Views.DataValidationDialog.textShowError":"잘못된 데이터 입력 시 오류 메시지 표시","SSE.Views.DataValidationDialog.textShowInput":"셀 선택 시 설명 메시지 표시","SSE.Views.DataValidationDialog.textSource":"출처","SSE.Views.DataValidationDialog.textStartDate":"시작일","SSE.Views.DataValidationDialog.textStartTime":"시작 시간","SSE.Views.DataValidationDialog.textStop":"정지","SSE.Views.DataValidationDialog.textStyle":"스타일","SSE.Views.DataValidationDialog.textTitle":"제목","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.txtStartTime":"시작 시간","SSE.Views.DataValidationDialog.txtTextLength":"텍스트 길이","SSE.Views.DataValidationDialog.txtTime":"시간","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.capCondition3":"보다 큼","SSE.Views.DigitalFilterDialog.capCondition30":"이후다","SSE.Views.DigitalFilterDialog.capCondition4":"크거나 같음","SSE.Views.DigitalFilterDialog.capCondition40":"이후 또는 같음","SSE.Views.DigitalFilterDialog.capCondition5":"미만","SSE.Views.DigitalFilterDialog.capCondition50":"이전","SSE.Views.DigitalFilterDialog.capCondition6":"작거나 같음","SSE.Views.DigitalFilterDialog.capCondition60":"이전 또는 같음","SSE.Views.DigitalFilterDialog.capCondition7":"시작 문자","SSE.Views.DigitalFilterDialog.capCondition8":"로 시작하지 않습니다","SSE.Views.DigitalFilterDialog.capCondition9":"로 끝남","SSE.Views.DigitalFilterDialog.capOr":"또는","SSE.Views.DigitalFilterDialog.textNoFilter":"필터 없음","SSE.Views.DigitalFilterDialog.textShowRows":"다음 조건을 만족하는 행 표시","SSE.Views.DigitalFilterDialog.textUse1":"한 문자 만 표시하려면?","SSE.Views.DigitalFilterDialog.textUse2":"모든 문자를 표시하려면 *를 사용하십시오.","SSE.Views.DigitalFilterDialog.txtSelectDate":"날짜선택","SSE.Views.DigitalFilterDialog.txtTitle":"사용자 정의 필터","SSE.Views.DocumentHolder.advancedEquationText":"방정식 설정","SSE.Views.DocumentHolder.advancedImgText":"이미지 고급 설정","SSE.Views.DocumentHolder.advancedShapeText":"모양 고급 설정","SSE.Views.DocumentHolder.advancedSlicerText":"슬라이서 고급 설정","SSE.Views.DocumentHolder.AlignBottom":"하단","SSE.Views.DocumentHolder.AlignCenter":"가운데","SSE.Views.DocumentHolder.AlignJust":"양쪽 맞춤","SSE.Views.DocumentHolder.AlignLeft":"왼쪽","SSE.Views.DocumentHolder.AlignMiddle":"가운데","SSE.Views.DocumentHolder.AlignRight":"오른쪽","SSE.Views.DocumentHolder.AlignText":"텍스트 정렬","SSE.Views.DocumentHolder.AlignTop":"맨 위","SSE.Views.DocumentHolder.allLinearText":"모두 - 선형","SSE.Views.DocumentHolder.allProfText":"전체 - 프로페셔널","SSE.Views.DocumentHolder.bottomCellText":"아래쪽 정렬","SSE.Views.DocumentHolder.btnChart":"차트 제목, 범례, 눈금선, 데이터 레이블 등 차트 요소 추가, 제거 또는 변경","SSE.Views.DocumentHolder.bulletsText":"글 머리 기호 및 번호 매기기","SSE.Views.DocumentHolder.centerCellText":"가운데 맞춤","SSE.Views.DocumentHolder.chartDataText":"차트 데이터 선택","SSE.Views.DocumentHolder.chartText":"차트 고급 설정","SSE.Views.DocumentHolder.chartTypeText":"차트 유형 변경","SSE.Views.DocumentHolder.currLinearText":"전류 - 선형","SSE.Views.DocumentHolder.currProfText":"현재-직업","SSE.Views.DocumentHolder.deleteColumnText":"열","SSE.Views.DocumentHolder.deleteRowText":"행","SSE.Views.DocumentHolder.deleteTableText":"테이블","SSE.Views.DocumentHolder.DepthAxis":"Z 축","SSE.Views.DocumentHolder.direct270Text":"텍스트 회전","SSE.Views.DocumentHolder.direct90Text":"텍스트 아래로 회전","SSE.Views.DocumentHolder.directHText":"Horizontal","SSE.Views.DocumentHolder.directionText":"텍스트 방향","SSE.Views.DocumentHolder.editChartText":"데이터 편집","SSE.Views.DocumentHolder.editHyperlinkText":"하이퍼 링크 편집","SSE.Views.DocumentHolder.hideEqToolbar":"수식 도구 모음 숨기기","SSE.Views.DocumentHolder.insertColumnLeftText":"왼쪽 열","SSE.Views.DocumentHolder.insertColumnRightText":"오른쪽 열","SSE.Views.DocumentHolder.insertRowAboveText":"위의 행","SSE.Views.DocumentHolder.insertRowBelowText":"아래 행","SSE.Views.DocumentHolder.latexText":"라텍","SSE.Views.DocumentHolder.originalSizeText":"실제 크기","SSE.Views.DocumentHolder.removeHyperlinkText":"하이퍼 링크 제거","SSE.Views.DocumentHolder.selectColumnText":"전체 열","SSE.Views.DocumentHolder.selectDataText":"열 데이터","SSE.Views.DocumentHolder.selectRowText":"행","SSE.Views.DocumentHolder.selectTableText":"테이블","SSE.Views.DocumentHolder.showEqToolbar":"수식 도구 모음 표시","SSE.Views.DocumentHolder.strDelete":"서명 삭제","SSE.Views.DocumentHolder.strDetails":"서명 상세","SSE.Views.DocumentHolder.strSetup":"서명 셋업","SSE.Views.DocumentHolder.strSign":"서명","SSE.Views.DocumentHolder.textAlign":"정렬","SSE.Views.DocumentHolder.textArrange":"순서","SSE.Views.DocumentHolder.textArrangeBack":"맨 뒤로 보내기","SSE.Views.DocumentHolder.textArrangeBackward":"뒤로 보내기","SSE.Views.DocumentHolder.textArrangeForward":"앞으로 보내기","SSE.Views.DocumentHolder.textArrangeFront":"맨 앞으로 보내기","SSE.Views.DocumentHolder.textAverage":"평균","SSE.Views.DocumentHolder.textAxes":"축","SSE.Views.DocumentHolder.textAxisTitles":"축 제목","SSE.Views.DocumentHolder.textBullets":"글 머리 기호","SSE.Views.DocumentHolder.textChartTitle":"차트 제목","SSE.Views.DocumentHolder.textCopyCells":"셀 복사","SSE.Views.DocumentHolder.textCount":"계산","SSE.Views.DocumentHolder.textCrop":"자르기","SSE.Views.DocumentHolder.textCropFill":"채우기","SSE.Views.DocumentHolder.textCropFit":"맞춤","SSE.Views.DocumentHolder.textDataTable":"데이터 표","SSE.Views.DocumentHolder.textEditPoints":"꼭지점 수정","SSE.Views.DocumentHolder.textEntriesList":"드롭 다운 목록에서 선택","SSE.Views.DocumentHolder.textErrorBars":"오류 막대","SSE.Views.DocumentHolder.textExponential":"지수","SSE.Views.DocumentHolder.textFillDays":"일자 채우기","SSE.Views.DocumentHolder.textFillFormatOnly":"서식만 채우기","SSE.Views.DocumentHolder.textFillMonths":"월 단위 채우기","SSE.Views.DocumentHolder.textFillSeries":"연속 데이터 채우기","SSE.Views.DocumentHolder.textFillWeekdays":"주중 날짜 채우기","SSE.Views.DocumentHolder.textFillWithoutFormat":"서식 없이 채우기","SSE.Views.DocumentHolder.textFillYears":"연도 채우기","SSE.Views.DocumentHolder.textFlashFill":"플래시 채우기","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.textGrowthTrend":"증가 추세","SSE.Views.DocumentHolder.textHorizontalMajor":"가로 주 눈금","SSE.Views.DocumentHolder.textHorizontalMinor":"가로 부 눈금","SSE.Views.DocumentHolder.textLinear":"선형","SSE.Views.DocumentHolder.textLinearForecast":"선형 예측","SSE.Views.DocumentHolder.textLinearTrend":"선형 추세","SSE.Views.DocumentHolder.textLines":"선","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.textMovingAverage":"이동 평균(2)","SSE.Views.DocumentHolder.textNone":"없음","SSE.Views.DocumentHolder.textNumbering":"번호 매기기","SSE.Views.DocumentHolder.textReplace":"이미지 바꾸기","SSE.Views.DocumentHolder.textResetCrop":"자르기 초기화","SSE.Views.DocumentHolder.textRotate":"회전","SSE.Views.DocumentHolder.textRotate270":"왼쪽으로 90도 회전","SSE.Views.DocumentHolder.textRotate90":"오른쪽으로 90도 회전","SSE.Views.DocumentHolder.textSaveAsPicture":"그림으로 저장","SSE.Views.DocumentHolder.textSeries":"시리즈","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.textShapesMerge":"도형 병합","SSE.Views.DocumentHolder.textShowDataTable":"데이터 표 표시","SSE.Views.DocumentHolder.textShowLegendKeys":"범례 항목 표시","SSE.Views.DocumentHolder.textShowUpDown":"상승/하락 막대 표시","SSE.Views.DocumentHolder.textStandardDeviation":"표준편차","SSE.Views.DocumentHolder.textStandardError":"표준오차","SSE.Views.DocumentHolder.textStdDev":"표준편차","SSE.Views.DocumentHolder.textSum":"합계","SSE.Views.DocumentHolder.textTrendline":"추세선","SSE.Views.DocumentHolder.textUndo":"실행 취소","SSE.Views.DocumentHolder.textUnFreezePanes":"창 고정 취소","SSE.Views.DocumentHolder.textUpDownBars":"위/아래 막대","SSE.Views.DocumentHolder.textVar":"표본분산","SSE.Views.DocumentHolder.textVerticalMajor":"세로 주 눈금","SSE.Views.DocumentHolder.textVerticalMinor":"세로 부 눈금","SSE.Views.DocumentHolder.tipMarkersArrow":"화살 글머리 기호","SSE.Views.DocumentHolder.tipMarkersCheckmark":"체크 표시 글머리 기호","SSE.Views.DocumentHolder.tipMarkersDash":"대시 글머리 기호","SSE.Views.DocumentHolder.tipMarkersFRhombus":"채워진 마름모 글머리 기호","SSE.Views.DocumentHolder.tipMarkersFRound":"채워진 원형 글머리 기호","SSE.Views.DocumentHolder.tipMarkersFSquare":"채워진 사각형 글머리 기호","SSE.Views.DocumentHolder.tipMarkersHRound":"빈 원형 글머리 기호","SSE.Views.DocumentHolder.tipMarkersStar":"별 글머리 기호","SSE.Views.DocumentHolder.topCellText":"정렬 위쪽","SSE.Views.DocumentHolder.txtAccounting":"회계","SSE.Views.DocumentHolder.txtAddComment":"주석 추가","SSE.Views.DocumentHolder.txtAddNamedRange":"이름 정의","SSE.Views.DocumentHolder.txtArrange":"순서","SSE.Views.DocumentHolder.txtAscending":"오름차순","SSE.Views.DocumentHolder.txtAutoColumnWidth":"자동 맞춤 열 너비","SSE.Views.DocumentHolder.txtAutoRowHeight":"행 높이 자동 맞춤","SSE.Views.DocumentHolder.txtAverage":"평균","SSE.Views.DocumentHolder.txtCellFormat":"셀 서식","SSE.Views.DocumentHolder.txtClear":"지우기","SSE.Views.DocumentHolder.txtClearAll":"모두","SSE.Views.DocumentHolder.txtClearComments":"코멘트","SSE.Views.DocumentHolder.txtClearFormat":"형식","SSE.Views.DocumentHolder.txtClearHyper":"하이퍼 링크","SSE.Views.DocumentHolder.txtClearPivotField":"{0}에서 필터 선택 초기화","SSE.Views.DocumentHolder.txtClearSparklineGroups":"선택한 스파크라인 그룹 지우기","SSE.Views.DocumentHolder.txtClearSparklines":"선택한 스파크라인 지우기","SSE.Views.DocumentHolder.txtClearText":"텍스트","SSE.Views.DocumentHolder.txtCollapse":"축소","SSE.Views.DocumentHolder.txtCollapseEntire":"전체 필드 접기","SSE.Views.DocumentHolder.txtColumn":"전체 열","SSE.Views.DocumentHolder.txtColumnWidth":"열 너비 설정","SSE.Views.DocumentHolder.txtCondFormat":"조건부 서식","SSE.Views.DocumentHolder.txtCopy":"복사","SSE.Views.DocumentHolder.txtCount":"계산","SSE.Views.DocumentHolder.txtCurrency":"통화","SSE.Views.DocumentHolder.txtCustomColumnWidth":"사용자 정의 열 너비","SSE.Views.DocumentHolder.txtCustomRowHeight":"사용자 정의 행 높이","SSE.Views.DocumentHolder.txtCustomSort":"정렬","SSE.Views.DocumentHolder.txtCut":"잘라 내기","SSE.Views.DocumentHolder.txtDateLong":"확장된 날짜 형식","SSE.Views.DocumentHolder.txtDateShort":"간단한 날짜 형식","SSE.Views.DocumentHolder.txtDelete":"삭제","SSE.Views.DocumentHolder.txtDelField":"삭제","SSE.Views.DocumentHolder.txtDescending":"내림차순","SSE.Views.DocumentHolder.txtDifference":"차이","SSE.Views.DocumentHolder.txtDistribHor":"수평 분포","SSE.Views.DocumentHolder.txtDistribVert":"수직 분포","SSE.Views.DocumentHolder.txtEditComment":"주석 편집","SSE.Views.DocumentHolder.txtEditObject":"개체 편집","SSE.Views.DocumentHolder.txtExpand":"확장","SSE.Views.DocumentHolder.txtExpandCollapse":"펼치기/접기","SSE.Views.DocumentHolder.txtExpandEntire":"전체 필드 펼치기","SSE.Views.DocumentHolder.txtFieldSettings":"필드 세팅","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.txtGetLink":"이 범위의 링크 가져오기","SSE.Views.DocumentHolder.txtGrandTotal":"총합계","SSE.Views.DocumentHolder.txtGroup":"그룹","SSE.Views.DocumentHolder.txtHide":"숨기기","SSE.Views.DocumentHolder.txtIndex":"색인","SSE.Views.DocumentHolder.txtInsert":"삽입","SSE.Views.DocumentHolder.txtInsHyperlink":"하이퍼 링크","SSE.Views.DocumentHolder.txtInsImage":"파일에서 이미지 삽입","SSE.Views.DocumentHolder.txtInsImageUrl":"URL에서 이미지 삽입","SSE.Views.DocumentHolder.txtLabelFilter":"라벨 필터","SSE.Views.DocumentHolder.txtMax":"최대","SSE.Views.DocumentHolder.txtMin":"최소","SSE.Views.DocumentHolder.txtMoreOptions":"더 많은 옵션","SSE.Views.DocumentHolder.txtNormal":"계산되지 않음","SSE.Views.DocumentHolder.txtNumber":"숫자","SSE.Views.DocumentHolder.txtNumFormat":"숫자 형식","SSE.Views.DocumentHolder.txtPaste":"붙여 넣기","SSE.Views.DocumentHolder.txtPercent":"백분율","SSE.Views.DocumentHolder.txtPercentage":"백분율","SSE.Views.DocumentHolder.txtPercentDiff":"%의 차이","SSE.Views.DocumentHolder.txtPercentOfCol":"열 전체의 %","SSE.Views.DocumentHolder.txtPercentOfGrand":"총계의 %","SSE.Views.DocumentHolder.txtPercentOfParent":"상위 합계의 %","SSE.Views.DocumentHolder.txtPercentOfParentCol":"상위 열 합계의 %","SSE.Views.DocumentHolder.txtPercentOfParentRow":"상위 행 합계의 %","SSE.Views.DocumentHolder.txtPercentOfRunTotal":"누계 합계 %","SSE.Views.DocumentHolder.txtPercentOfTotal":"행 전체의 %","SSE.Views.DocumentHolder.txtPivotSettings":"피벗 테이블 설정","SSE.Views.DocumentHolder.txtProduct":"제품","SSE.Views.DocumentHolder.txtRankAscending":"오름차순으로 순위 매기기","SSE.Views.DocumentHolder.txtRankDescending":"내림차순으로 순위 매기기","SSE.Views.DocumentHolder.txtReapply":"재적용","SSE.Views.DocumentHolder.txtRefresh":"새로고침","SSE.Views.DocumentHolder.txtRow":"전체 행","SSE.Views.DocumentHolder.txtRowHeight":"행 높이 설정","SSE.Views.DocumentHolder.txtRunTotal":"총실행","SSE.Views.DocumentHolder.txtScientific":"지수","SSE.Views.DocumentHolder.txtSelect":"선택","SSE.Views.DocumentHolder.txtShiftDown":"셀을 아래로 이동","SSE.Views.DocumentHolder.txtShiftLeft":"셀을 왼쪽으로 시프트","SSE.Views.DocumentHolder.txtShiftRight":"셀을 오른쪽으로 이동","SSE.Views.DocumentHolder.txtShiftUp":"셀을 위로 이동","SSE.Views.DocumentHolder.txtShow":"숨기기 취소","SSE.Views.DocumentHolder.txtShowAs":"표시된 값은","SSE.Views.DocumentHolder.txtShowComment":"설명 표시","SSE.Views.DocumentHolder.txtShowDetails":"세부 정보 표시","SSE.Views.DocumentHolder.txtSort":"정렬","SSE.Views.DocumentHolder.txtSortCellColor":"위에 셀 색상 선택","SSE.Views.DocumentHolder.txtSortFontColor":"선택한 글꼴 색을 맨 위에 표시","SSE.Views.DocumentHolder.txtSortOption":"더 많은 정렬 옵션","SSE.Views.DocumentHolder.txtSparklines":"스파크라인","SSE.Views.DocumentHolder.txtSubtotalField":"소계","SSE.Views.DocumentHolder.txtSum":"합계","SSE.Views.DocumentHolder.txtSummarize":"값을 요약하는 기준으로","SSE.Views.DocumentHolder.txtText":"텍스트","SSE.Views.DocumentHolder.txtTextAdvanced":"단락 고급 설정","SSE.Views.DocumentHolder.txtTime":"시간","SSE.Views.DocumentHolder.txtTop10":"상위 10","SSE.Views.DocumentHolder.txtUngroup":"그룹 해제","SSE.Views.DocumentHolder.txtValueFieldSettings":"값 필드 설정","SSE.Views.DocumentHolder.txtValueFilter":"값 필터","SSE.Views.DocumentHolder.txtWidth":"폭","SSE.Views.DocumentHolder.unicodeText":"유니코드","SSE.Views.DocumentHolder.vertAlignText":"Vertical Alignment","SSE.Views.ExternalLinksDlg.textAutoUpdate":"연결된 원본에서 자동으로 데이터 업데이트","SSE.Views.FieldSettingsDialog.strLayout":"레이아웃","SSE.Views.FieldSettingsDialog.strSubtotals":"소계","SSE.Views.FieldSettingsDialog.textNumFormat":"숫자 형식","SSE.Views.FieldSettingsDialog.textReport":"보고서 폼","SSE.Views.FieldSettingsDialog.textTitle":"필드 세팅","SSE.Views.FieldSettingsDialog.txtAverage":"평균","SSE.Views.FieldSettingsDialog.txtBlank":"각 항목 다음에 빈 줄을 삽입","SSE.Views.FieldSettingsDialog.txtBottom":"그룹 하단에 표시","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.txtRepeat":"각 행에서 항목 레이블을 반복","SSE.Views.FieldSettingsDialog.txtShowSubtotals":"소계 표시","SSE.Views.FieldSettingsDialog.txtSourceName":"소스 이름:","SSE.Views.FieldSettingsDialog.txtStdDev":"표준편차","SSE.Views.FieldSettingsDialog.txtStdDevp":"표준편차","SSE.Views.FieldSettingsDialog.txtSum":"합계","SSE.Views.FieldSettingsDialog.txtSummarize":"부분합 함수","SSE.Views.FieldSettingsDialog.txtTabular":"표 형식","SSE.Views.FieldSettingsDialog.txtTop":"그룹 상단에 표시","SSE.Views.FieldSettingsDialog.txtVar":"표본분산","SSE.Views.FieldSettingsDialog.txtVarp":"분산","SSE.Views.FileMenu.ariaFileMenu":"파일 메뉴","SSE.Views.FileMenu.btnBackCaption":"파일 위치 열기","SSE.Views.FileMenu.btnCloseEditor":"파일 닫기","SSE.Views.FileMenu.btnCloseMenuCaption":"메뉴 닫기","SSE.Views.FileMenu.btnCreateNewCaption":"새로 만들기","SSE.Views.FileMenu.btnDownloadCaption":"다운로드 방법","SSE.Views.FileMenu.btnExitCaption":"완료","SSE.Views.FileMenu.btnExportToPDFCaption":"PDF로 내보내기","SSE.Views.FileMenu.btnFileOpenCaption":"열기","SSE.Views.FileMenu.btnHelpCaption":"Help","SSE.Views.FileMenu.btnHistoryCaption":"버전 기록","SSE.Views.FileMenu.btnInfoCaption":"스프레드 시트 정보","SSE.Views.FileMenu.btnPrintCaption":"인쇄","SSE.Views.FileMenu.btnProtectCaption":"보호","SSE.Views.FileMenu.btnRecentFilesCaption":"최근 열기","SSE.Views.FileMenu.btnRenameCaption":"Rename","SSE.Views.FileMenu.btnReturnCaption":"스프레드시트로 돌아 가기","SSE.Views.FileMenu.btnRightsCaption":"액세스 권한","SSE.Views.FileMenu.btnSaveAsCaption":"다른 이름으로 저장","SSE.Views.FileMenu.btnSaveCaption":"저장","SSE.Views.FileMenu.btnSaveCopyAsCaption":"다른 이름으로 저장","SSE.Views.FileMenu.btnSettingsCaption":"고급 설정","SSE.Views.FileMenu.btnSuggestCaption":"기능 제안","SSE.Views.FileMenu.btnSwitchToMobileCaption":"모바일 보기로 전환","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.txtAddProperty":"속성 추가","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.txtCommon":"일반","SSE.Views.FileMenuPanels.DocumentInfo.txtCreated":"생성됨","SSE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"문서 속성","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"최종 편집자","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"최종 편집","SSE.Views.FileMenuPanels.DocumentInfo.txtNo":"아니오","SSE.Views.FileMenuPanels.DocumentInfo.txtOwner":"소유자","SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"위치","SSE.Views.FileMenuPanels.DocumentInfo.txtProperties":"속성","SSE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"동일한 제목의 속성이 이미 존재합니다","SSE.Views.FileMenuPanels.DocumentInfo.txtRights":"권한이있는 사람","SSE.Views.FileMenuPanels.DocumentInfo.txtSpreadsheetInfo":"스프레드시트 정보","SSE.Views.FileMenuPanels.DocumentInfo.txtSubject":"제목","SSE.Views.FileMenuPanels.DocumentInfo.txtTags":"태그 추가","SSE.Views.FileMenuPanels.DocumentInfo.txtTitle":"스프레드 시트 제목","SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"업로드 되었습니다","SSE.Views.FileMenuPanels.DocumentInfo.txtYes":"확인","SSE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"접근 권한","SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"액세스 권한 변경","SSE.Views.FileMenuPanels.DocumentRights.txtRights":"권한이있는 사람","SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText":"적용","SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode":"공동 편집 모드","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904":"1904 날짜 시스템 사용","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator":"소수점 구분 기호","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage":"사전 언어","SSE.Views.FileMenuPanels.MainSettingsGeneral.strEnableIterative":"반복 계산 사용","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast":"Fast","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender":"글꼴 힌트","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale":"수식 언어","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx":"예 : SUM; MIN; MAX; COUNT","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip":"함수 툴팁 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strHScroll":"가로 스크롤바 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE":"대문자 무시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers":"숫자가 있는 단어 무시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings":"매크로 설정","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxChange":"최대 변경량","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxIterations":"최대 반복 횟수","SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton":"내용을 붙여넣을 때 \"붙여넣기 옵션\" 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle":"R1C1 참조 양식","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings":"국가 별 설정","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx":"예 :","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRTLSupport":"오른쪽에서 왼쪽 인터페이스","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments":"시트에서 코멘트 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges":"다른 사용자의 변경사항 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments":"해결된 코멘트 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll":"스크롤 시 격자에 맞춤","SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict":"Strict","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle":"탭 스타일","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme":"인터페이스 테마","SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator":"천 단위 구분자","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit":"측정 단위","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings":"지역 설정에 따라 구분 기호 사용","SSE.Views.FileMenuPanels.MainSettingsGeneral.strVScroll":"세로 스크롤바 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom":"기본 확대/축소 값","SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes":"매 10 분마다","SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes":"30 분마다","SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes":"매 5 분마다","SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes":"매시간","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover":"자동 복구","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave":"자동 저장","SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled":"사용 안 함","SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill":"채우기","SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave":"모든 기록 버전을 서버에 저장","SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine":"선","SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute":"Every Minute","SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle":"참조 스타일","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAdvancedSettings":"고급 설정","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance":"모양","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect":"자동 고침 옵션...","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe":"벨라루스어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg":"불가리아어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa":"캐나다어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode":"사전 설정 캐시 모드","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating":"계산 중","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm":"센티미터","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration":"협업","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs":"체코어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCustomizeQuickAccess":"빠른 실행 도구 모음 사용자 지정","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa":"덴마크어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe":"Deutsch","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving":"편집 및 저장","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl":"그리스어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn":"영어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtErrorNumber":"입력하신 항목을 사용할 수 없습니다. 정수 또는 소수가 필요할 수 있습니다.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs":"스페인어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip":"실시간 공동 편집. 모든 변경사항은 자동으로 저장됩니다.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi":"끝","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr":"프랑스 국민","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu":"헝가리어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHy":"아르메니아어","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.txtLastUsed":"최종 사용","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.txtProofing":"보정","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt":"Point","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr":"브라질어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang":"포르투갈어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint":"편집기 헤더에 빠른 인쇄 버튼 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip":"문서는 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion":"지역","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo":"루마니아어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu":"러시아어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros":"모두 활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc":"알림 없이 모든 매크로 활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtScreenReader":"화면 읽기 지원 활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir":"기본 시트 방향","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc":"이 설정은 새 시트에만 적용됩니다","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr":"왼쪽에서 오른쪽으로","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl":"오른쪽에서 왼쪽으로","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk":"슬로바키아어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl":"슬로베이나어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSr":"세르비아어(라틴어)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSrcyrl":"세르비아어(키릴 문자)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros":"모두 비활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc":"알림없이 모든 매크로를 비활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip":"변경 사항을 동기화하기 위해 '저장' 버튼을 사용하세요","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv":"스웨덴어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTabBack":"도구 모음 색상을 탭 배경으로 사용","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr":"터키어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk":"우크라이나어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Alt 키를 사용하세요.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Option 키를 사용하세요.","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.txtWorkspace":"워크스페이스","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh":"중국어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZhtw":"중국어 (번체)","SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"경고","SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"비밀번호로","SSE.Views.FileMenuPanels.ProtectDoc.strProtect":"스프레드시트 보호","SSE.Views.FileMenuPanels.ProtectDoc.strSignature":"서명으로","SSE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"스프레드시트에 유효한 서명이 추가되었습니다.
스프레드시트는 편집으로부터 보호됩니다.","SSE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"눈에 보이지 않는 디지털 서명을 추가하여
스프레드시트의 무결성을 보장하세요.","SSE.Views.FileMenuPanels.ProtectDoc.txtEdit":"스프레드시트 편집","SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"편집은 스프레드시트에서 서명을 삭제할 것입니다.
계속하시겠습니까?","SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"이 스프레드시트는 비밀번호로 보호되어있습니다.","SSE.Views.FileMenuPanels.ProtectDoc.txtProtectSpreadsheet":"해당 스프레드시트를 비밀번호로 암호화하세요.","SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"이 스프레드시트는 서명되어야 합니다.","SSE.Views.FileMenuPanels.ProtectDoc.txtSigned":"유효한 서명이 스프레드시트에 추가되었습니다. 이 스프레드시트는 편집할 수 없도록 보호되었습니다.","SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"스프레드시트에 몇 가지 디지털 서명이 유효하지 않거나 확인되지 않음. 스프레드시트는 편집할 수 없도록 보호됨.","SSE.Views.FileMenuPanels.ProtectDoc.txtView":"서명 보기","SSE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"키보드 단축키","SSE.Views.FileMenuPanels.Settings.txtCustomize":"사용자 정의","SSE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"다운로드 방법","SSE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"다른 이름으로 저장","SSE.Views.FillSeriesDialog.textAuto":"자동 채우기","SSE.Views.FillSeriesDialog.textCols":"열","SSE.Views.FillSeriesDialog.textDate":"날짜","SSE.Views.FillSeriesDialog.textDateUnit":"날짜 단위","SSE.Views.FillSeriesDialog.textDay":"일","SSE.Views.FillSeriesDialog.textGrowth":"증가","SSE.Views.FillSeriesDialog.textLinear":"선형","SSE.Views.FillSeriesDialog.textMonth":"월","SSE.Views.FillSeriesDialog.textRows":"행","SSE.Views.FillSeriesDialog.textSeries":"계열 방향","SSE.Views.FillSeriesDialog.textStep":"단계 값","SSE.Views.FillSeriesDialog.textStop":"종료 값","SSE.Views.FillSeriesDialog.textTitle":"시리즈","SSE.Views.FillSeriesDialog.textTrend":"추세","SSE.Views.FillSeriesDialog.textType":"유형","SSE.Views.FillSeriesDialog.textWeek":"요일","SSE.Views.FillSeriesDialog.textYear":"년","SSE.Views.FillSeriesDialog.txtErrorNumber":"입력하신 항목을 사용할 수 없습니다. 정수 또는 소수가 필요할 수 있습니다.","SSE.Views.FormatRulesEditDlg.fillColor":"채우기 색","SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle":"경고","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.textColor":"글꼴색","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.textIconLabel":"{0}{1}시 &","SSE.Views.FormatRulesEditDlg.textIconLabelFirst":"{0}{1}시","SSE.Views.FormatRulesEditDlg.textIconLabelLast":"고정값일때","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.textReverse":"아이콘 순서 반전","SSE.Views.FormatRulesEditDlg.textRight2Left":"오른쪽에서 왼쪽으로","SSE.Views.FormatRulesEditDlg.textRightBorders":"오른쪽 테두리","SSE.Views.FormatRulesEditDlg.textRule":"규칙","SSE.Views.FormatRulesEditDlg.textSameAs":"양수와 같음","SSE.Views.FormatRulesEditDlg.textSelectData":"데이터 선택","SSE.Views.FormatRulesEditDlg.textShortBar":"가장 잛은 열","SSE.Views.FormatRulesEditDlg.textShowBar":"막대만 표시","SSE.Views.FormatRulesEditDlg.textShowIcon":"아이콘만 표시","SSE.Views.FormatRulesEditDlg.textSingleRef":"이 유형의 참조는 조건부 형식 수식에서 사용할 수 없습니다.
참조를 단일 셀로 변경하거나 =SUM(A1:B5)와 같은 워크시트 수식으로 설정하십시오.","SSE.Views.FormatRulesEditDlg.textSolid":"실선","SSE.Views.FormatRulesEditDlg.textStrikeout":"취소선","SSE.Views.FormatRulesEditDlg.textSubscript":"아래 첨자","SSE.Views.FormatRulesEditDlg.textSuperscript":"위첨자","SSE.Views.FormatRulesEditDlg.textTopBorders":"위쪽 테두리","SSE.Views.FormatRulesEditDlg.textUnderline":"밑줄","SSE.Views.FormatRulesEditDlg.tipBorders":"테두리","SSE.Views.FormatRulesEditDlg.tipNumFormat":"숫자 형식","SSE.Views.FormatRulesEditDlg.txtAccounting":"회계","SSE.Views.FormatRulesEditDlg.txtCurrency":"통화","SSE.Views.FormatRulesEditDlg.txtDate":"날짜","SSE.Views.FormatRulesEditDlg.txtDateLong":"확장된 날짜 형식","SSE.Views.FormatRulesEditDlg.txtDateShort":"간단한 날짜 형식","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.txtText":"텍스트","SSE.Views.FormatRulesEditDlg.txtTime":"시간","SSE.Views.FormatRulesEditDlg.txtTitleEdit":"포맷 규칙을 편집","SSE.Views.FormatRulesEditDlg.txtTitleNew":"새로운 형식 규칙","SSE.Views.FormatRulesManagerDlg.guestText":"게스트","SSE.Views.FormatRulesManagerDlg.lockText":"잠김","SSE.Views.FormatRulesManagerDlg.text1Above":"표준편차 1이상 평균","SSE.Views.FormatRulesManagerDlg.text1Below":"표준편차 1이하 평균","SSE.Views.FormatRulesManagerDlg.text2Above":"표준편차 2이상 평균","SSE.Views.FormatRulesManagerDlg.text2Below":"표준편차 2이하 평균","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.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.textScope":"규칙 형식 표시","SSE.Views.FormatRulesManagerDlg.textSelectData":"데이터 선택","SSE.Views.FormatRulesManagerDlg.textSelection":"현재 섹션","SSE.Views.FormatRulesManagerDlg.textThisPivot":"이 피벗","SSE.Views.FormatRulesManagerDlg.textThisSheet":"이 워크시트","SSE.Views.FormatRulesManagerDlg.textThisTable":"이 표","SSE.Views.FormatRulesManagerDlg.textUnique":"고유값","SSE.Views.FormatRulesManagerDlg.textUp":"규칙을 위로 이동","SSE.Views.FormatRulesManagerDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.FormatRulesManagerDlg.txtTitle":"조건부 서식","SSE.Views.FormulaDialog.sDescription":"설명","SSE.Views.FormulaDialog.textGroupDescription":"기능 그룹 선택","SSE.Views.FormulaDialog.textListDescription":"함수 선택","SSE.Views.FormulaDialog.txtRecommended":"추천","SSE.Views.FormulaDialog.txtSearch":"검색","SSE.Views.FormulaDialog.txtTitle":"함수 삽입","SSE.Views.FormulaTab.capBtnRemoveArr":"화살표 제거","SSE.Views.FormulaTab.capBtnTraceDep":"종속 항목 추적","SSE.Views.FormulaTab.capBtnTracePrec":"선행 항목 추적","SSE.Views.FormulaTab.textAutomatic":"자동","SSE.Views.FormulaTab.textCalculateCurrentSheet":"현재 시트 계산","SSE.Views.FormulaTab.textCalculateWorkbook":"통합 문서 계산","SSE.Views.FormulaTab.textManual":"수동","SSE.Views.FormulaTab.tipCalculate":"계산하다","SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook":"전체 통합 문서 계산","SSE.Views.FormulaTab.tipRemoveArr":"선행 추적 또는 종속 추적으로 그려진 화살표 제거","SSE.Views.FormulaTab.tipShowFormulas":"결과 값 대신 각 셀의 수식 표시","SSE.Views.FormulaTab.tipTraceDep":"선택한 셀의 값에 영향을 받는 셀을 나타내는 화살표 표시","SSE.Views.FormulaTab.tipTracePrec":"선택한 셀의 값에 영향을 미치는 셀을 나타내는 화살표 표시","SSE.Views.FormulaTab.tipWatch":"Watch 창 목록에 셀을 추가하세요.","SSE.Views.FormulaTab.txtAdditional":"추가","SSE.Views.FormulaTab.txtAutosum":"자동 합계","SSE.Views.FormulaTab.txtAutosumTip":"합계","SSE.Views.FormulaTab.txtCalculation":"계산","SSE.Views.FormulaTab.txtFormula":"함수","SSE.Views.FormulaTab.txtFormulaTip":"함수 삽입","SSE.Views.FormulaTab.txtMore":"더 많은 기능","SSE.Views.FormulaTab.txtRecent":"최근 사용된","SSE.Views.FormulaTab.txtRemDep":"종속 화살표 제거","SSE.Views.FormulaTab.txtRemPrec":"선행 화살표 제거","SSE.Views.FormulaTab.txtShowFormulas":"수식 표시","SSE.Views.FormulaTab.txtWatch":"모니터링 창","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.textNoArgsDesc":"이 인수에 대한 설명이 없습니다","SSE.Views.FormulaWizard.textNumber":"숫자","SSE.Views.FormulaWizard.textReadMore":"자세히 보기","SSE.Views.FormulaWizard.textRef":"참조","SSE.Views.FormulaWizard.textText":"텍스트","SSE.Views.FormulaWizard.textTitle":"함수의 인수","SSE.Views.FormulaWizard.textValue":"수식의 결과","SSE.Views.GoalSeekDlg.textChangingCell":"변경할 셀","SSE.Views.GoalSeekDlg.textDataRangeError":"수식에 범위가 없습니다","SSE.Views.GoalSeekDlg.textMustContainFormula":"셀에는 수식이 포함되어야 합니다","SSE.Views.GoalSeekDlg.textMustContainValue":"셀에는 값이 반드시 있어야 합니다","SSE.Views.GoalSeekDlg.textMustFormulaResultNumber":"셀의 공식 결과는 숫자여야 합니다.","SSE.Views.GoalSeekDlg.textMustSingleCell":"참조는 단일 셀이어야 합니다","SSE.Views.GoalSeekDlg.textSelectData":"데이터 선택","SSE.Views.GoalSeekDlg.textSetCell":"설정 셀","SSE.Views.GoalSeekDlg.textTitle":"목표값 찾기","SSE.Views.GoalSeekDlg.textToValue":"값으로","SSE.Views.GoalSeekDlg.txtEmpty":"이 필드는 필수입니다","SSE.Views.GoalSeekDlg.txtErrorNumber":"입력하신 항목을 사용할 수 없습니다. 정수 또는 소수가 필요할 수 있습니다.","SSE.Views.GoalSeekStatusDlg.textContinue":"계속","SSE.Views.GoalSeekStatusDlg.textCurrentValue":"현재 값:","SSE.Views.GoalSeekStatusDlg.textFoundSolution":"셀 {0}을(를) 사용한 목표값 찾기에서 해결책을 찾았습니다.","SSE.Views.GoalSeekStatusDlg.textNotFoundSolution":"셀 {0}을(를) 사용한 목표값 찾기에서 해결책을 찾지 못했을 수 있습니다.","SSE.Views.GoalSeekStatusDlg.textPause":"중지 중","SSE.Views.GoalSeekStatusDlg.textSearchIteration":"셀 {0}을(를) 사용한 목표값 찾기, 반복 #{1} 진행 중입니다.","SSE.Views.GoalSeekStatusDlg.textStep":"단계","SSE.Views.GoalSeekStatusDlg.textTargetValue":"목표 값:","SSE.Views.GoalSeekStatusDlg.textTitle":"목표값 찾기 상태","SSE.Views.HeaderFooterDialog.textAlign":"페이지 본문 영역에 정렬","SSE.Views.HeaderFooterDialog.textAll":"전체 페이지","SSE.Views.HeaderFooterDialog.textBold":"굵은체","SSE.Views.HeaderFooterDialog.textCenter":"중앙","SSE.Views.HeaderFooterDialog.textColor":"글꼴색","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.textImage":"그림","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.textScale":"문서에 맞게 조정","SSE.Views.HeaderFooterDialog.textSheet":"시트 이름","SSE.Views.HeaderFooterDialog.textStrikeout":"취소선","SSE.Views.HeaderFooterDialog.textSubscript":"아래 첨자","SSE.Views.HeaderFooterDialog.textSuperscript":"위첨자","SSE.Views.HeaderFooterDialog.textTime":"시간","SSE.Views.HeaderFooterDialog.textTitle":"머리글/바닥글 설정","SSE.Views.HeaderFooterDialog.textUnderline":"밑줄","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.textGetLink":"링크 가져오기","SSE.Views.HyperlinkSettingsDialog.textInternalLink":"내부 데이터 범위","SSE.Views.HyperlinkSettingsDialog.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.HyperlinkSettingsDialog.textNames":"정의 된 이름","SSE.Views.HyperlinkSettingsDialog.textSelectData":"데이터 선택","SSE.Views.HyperlinkSettingsDialog.textSelectFile":"파일 선택","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.HyperlinkSettingsDialog.txtSizeLimit":"이 필드는 2083 자로 제한되어 있습니다","SSE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"웹 주소를 입력하거나 파일을 선택하세요","SSE.Views.ImageSettings.strTransparency":"불투명도","SSE.Views.ImageSettings.textAdvanced":"고급 설정","SSE.Views.ImageSettings.textCrop":"자르기","SSE.Views.ImageSettings.textCropFill":"채우기","SSE.Views.ImageSettings.textCropFit":"맞춤","SSE.Views.ImageSettings.textCropToShape":"도형에 맞게 자르기","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.textRecentlyUsed":"최근 사용된","SSE.Views.ImageSettings.textResetCrop":"자르기 초기화","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":"제목","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.ImageSettingsAdvanced.textVertically":"세로","SSE.Views.ImportFromXmlDialog.textDestination":"데이터를 저장할 위치를 선택하세요.","SSE.Views.ImportFromXmlDialog.textExist":"존재하는 워크시트","SSE.Views.ImportFromXmlDialog.textInvalidRange":"유효하지 않은 셀 범위","SSE.Views.ImportFromXmlDialog.textNew":"신규 워크시트","SSE.Views.ImportFromXmlDialog.textSelectData":"데이터 선택","SSE.Views.ImportFromXmlDialog.textTitle":"데이터 가져오기","SSE.Views.ImportFromXmlDialog.txtEmpty":"이 입력란은 필수 항목","SSE.Views.LeftMenu.ariaLeftMenu":"왼쪽 메뉴","SSE.Views.LeftMenu.tipAbout":"정보","SSE.Views.LeftMenu.tipChat":"채팅","SSE.Views.LeftMenu.tipComments":"코멘트","SSE.Views.LeftMenu.tipFile":"파일","SSE.Views.LeftMenu.tipPlugins":"플러그인","SSE.Views.LeftMenu.tipSearch":"Search","SSE.Views.LeftMenu.tipSpellcheck":"맞춤법 검사","SSE.Views.LeftMenu.tipSupport":"피드백 및 지원","SSE.Views.LeftMenu.txtDeveloper":"개발자 모드","SSE.Views.LeftMenu.txtEditor":"스프레드시트 편집기","SSE.Views.LeftMenu.txtLimit":"접근 제한","SSE.Views.LeftMenu.txtTrial":"시험 모드","SSE.Views.LeftMenu.txtTrialDev":"개발자 모드 시도","SSE.Views.MacroDialog.textMacro":"매크로 이름","SSE.Views.MacroDialog.textTitle":"매크로 지정","SSE.Views.MainSettingsPrint.okButtonText":"저장","SSE.Views.MainSettingsPrint.strBottom":"아래쪽","SSE.Views.MainSettingsPrint.strLandscape":"가로 모드","SSE.Views.MainSettingsPrint.strLeft":"왼쪽","SSE.Views.MainSettingsPrint.strMargins":"여백","SSE.Views.MainSettingsPrint.strPortrait":"세로","SSE.Views.MainSettingsPrint.strPrint":"인쇄","SSE.Views.MainSettingsPrint.strPrintTitles":"제목 인쇄","SSE.Views.MainSettingsPrint.strRight":"오른쪽","SSE.Views.MainSettingsPrint.strTop":"위쪽","SSE.Views.MainSettingsPrint.textActualSize":"실제 크기","SSE.Views.MainSettingsPrint.textCustom":"사용자 정의","SSE.Views.MainSettingsPrint.textCustomOptions":"사용자 정의 옵션","SSE.Views.MainSettingsPrint.textFitCols":"한 페이지에 모든 열 맞추기","SSE.Views.MainSettingsPrint.textFitPage":"한 페이지에 시트 맞추기","SSE.Views.MainSettingsPrint.textFitRows":"한 페이지에 모든 행 맞추기","SSE.Views.MainSettingsPrint.textPageOrientation":"페이지 방향","SSE.Views.MainSettingsPrint.textPageScaling":"스케일링","SSE.Views.MainSettingsPrint.textPageSize":"페이지 크기","SSE.Views.MainSettingsPrint.textPrintGrid":"눈금 선 인쇄","SSE.Views.MainSettingsPrint.textPrintHeadings":"행 및 열 머리글 인쇄","SSE.Views.MainSettingsPrint.textRepeat":"반복...","SSE.Views.MainSettingsPrint.textRepeatLeft":"왼쪽 열을 반복","SSE.Views.MainSettingsPrint.textRepeatTop":"위의 행을 반복","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.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":"범위","SSE.Views.NamedRangeEditDlg.textSelectData":"데이터 선택","SSE.Views.NamedRangeEditDlg.txtEmpty":"이 입력란은 필수 항목","SSE.Views.NamedRangeEditDlg.txtTitleEdit":"이름 편집","SSE.Views.NamedRangeEditDlg.txtTitleNew":"새 이름","SSE.Views.NamedRangePasteDlg.textNames":"Named Ranges","SSE.Views.NamedRangePasteDlg.txtTitle":"붙여 넣기 이름","SSE.Views.NameManagerDlg.closeButtonText":"닫기","SSE.Views.NameManagerDlg.guestText":"게스트","SSE.Views.NameManagerDlg.lockText":"잠김","SSE.Views.NameManagerDlg.textDataRange":"데이터 범위","SSE.Views.NameManagerDlg.textDelete":"삭제","SSE.Views.NameManagerDlg.textEdit":"편집","SSE.Views.NameManagerDlg.textEmpty":"명명 된 범위가 아직 생성되지 않았습니다.
명명 된 하나 이상의 범위를 만들고이 필드에 나타납니다.","SSE.Views.NameManagerDlg.textFilter":"필터","SSE.Views.NameManagerDlg.textFilterAll":"모두","SSE.Views.NameManagerDlg.textFilterDefNames":"정의 된 이름","SSE.Views.NameManagerDlg.textFilterSheet":"이름이 시트로 범위 지정됨","SSE.Views.NameManagerDlg.textFilterTableNames":"테이블 이름","SSE.Views.NameManagerDlg.textFilterWorkbook":"이름이 통합 문서로 범위 지정됨","SSE.Views.NameManagerDlg.textNew":"새로 만들기","SSE.Views.NameManagerDlg.textnoNames":"필터와 일치하는 명명 된 범위를 찾을 수 없습니다.","SSE.Views.NameManagerDlg.textRanges":"이름 범위","SSE.Views.NameManagerDlg.textScope":"범위","SSE.Views.NameManagerDlg.textWorkbook":"통합 문서","SSE.Views.NameManagerDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.NameManagerDlg.txtTitle":"이름 관리자","SSE.Views.NameManagerDlg.warnDelete":"이름 {0}을 삭제 하시겠습니까?","SSE.Views.PageMarginsDialog.textBottom":"바닥","SSE.Views.PageMarginsDialog.textCenter":"페이지 중앙 정렬","SSE.Views.PageMarginsDialog.textHor":"수평","SSE.Views.PageMarginsDialog.textLeft":"왼쪽","SSE.Views.PageMarginsDialog.textRight":"오른쪽","SSE.Views.PageMarginsDialog.textTitle":"여백","SSE.Views.PageMarginsDialog.textTop":"위","SSE.Views.PageMarginsDialog.textVert":"세로","SSE.Views.PageMarginsDialog.textWarning":"경고","SSE.Views.PageMarginsDialog.warnCheckMargings":"여백이 잘못되었습니다","SSE.Views.ParagraphSettings.strLineHeight":"줄 간격","SSE.Views.ParagraphSettings.strParagraphSpacing":"단락 간격","SSE.Views.ParagraphSettings.strSpacingAfter":"이후","SSE.Views.ParagraphSettings.strSpacingBefore":"이전","SSE.Views.ParagraphSettings.textAdvanced":"고급 설정","SSE.Views.ParagraphSettings.textAt":"At","SSE.Views.ParagraphSettings.textAtLeast":"적어도","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.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.strSpacing":"간격","SSE.Views.ParagraphSettingsAdvanced.strStrike":"취소선","SSE.Views.ParagraphSettingsAdvanced.strSubscript":"아래 첨자","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":"모두 제거","SSE.Views.ParagraphSettingsAdvanced.textSet":"지정","SSE.Views.ParagraphSettingsAdvanced.textTabCenter":"Center","SSE.Views.ParagraphSettingsAdvanced.textTabLeft":"왼쪽","SSE.Views.ParagraphSettingsAdvanced.textTabPosition":"탭 위치","SSE.Views.ParagraphSettingsAdvanced.textTabRight":"Right","SSE.Views.ParagraphSettingsAdvanced.textTitle":"단락 - 고급 설정","SSE.Views.ParagraphSettingsAdvanced.txtAutoText":"자동","SSE.Views.PivotCalculatedItemsDialog.txtDelete":"삭제","SSE.Views.PivotCalculatedItemsDialog.txtDuplicate":"중복","SSE.Views.PivotCalculatedItemsDialog.txtEdit":"편집","SSE.Views.PivotCalculatedItemsDialog.txtFormula":"수식","SSE.Views.PivotCalculatedItemsDialog.txtItemsName":"항목 이름","SSE.Views.PivotCalculatedItemsDialog.txtNew":"신규","SSE.Views.PivotCalculatedItemsDialog.txtTitle":"내 계산된 항목","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.capCondition30":"이후","SSE.Views.PivotDigitalFilterDialog.capCondition4":"크거나 같음","SSE.Views.PivotDigitalFilterDialog.capCondition40":"이후 또는 같음","SSE.Views.PivotDigitalFilterDialog.capCondition5":"미만","SSE.Views.PivotDigitalFilterDialog.capCondition50":"이전","SSE.Views.PivotDigitalFilterDialog.capCondition6":"작거나 같음","SSE.Views.PivotDigitalFilterDialog.capCondition60":"이전 또는 같음","SSE.Views.PivotDigitalFilterDialog.capCondition7":"~와 함께 시작하다.\n~로 시작하다","SSE.Views.PivotDigitalFilterDialog.capCondition8":"다음 문자에서 시작하기","SSE.Views.PivotDigitalFilterDialog.capCondition9":"종료","SSE.Views.PivotDigitalFilterDialog.textShowDate":"날짜가 다음과 같은 항목 표시:","SSE.Views.PivotDigitalFilterDialog.textShowLabel":"레이블이 지정된 항목을 표시:","SSE.Views.PivotDigitalFilterDialog.textShowValue":"다음의 항목이 표시:","SSE.Views.PivotDigitalFilterDialog.textUse1":"? 를 사용하여 단일 문자를 나타낼 수 있습니다.","SSE.Views.PivotDigitalFilterDialog.textUse2":"모든 문자를 표시하려면 *를 사용하십시오.","SSE.Views.PivotDigitalFilterDialog.txtAnd":"그리고","SSE.Views.PivotDigitalFilterDialog.txtTitleDate":"날짜 필터","SSE.Views.PivotDigitalFilterDialog.txtTitleLabel":"라벨 필터","SSE.Views.PivotDigitalFilterDialog.txtTitleValue":"값 필터","SSE.Views.PivotGroupDialog.textAuto":"자동","SSE.Views.PivotGroupDialog.textBy":"작성","SSE.Views.PivotGroupDialog.textDays":"일","SSE.Views.PivotGroupDialog.textEnd":"종료","SSE.Views.PivotGroupDialog.textError":"이 필드는 숫자 여야합니다","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.textSec":"초","SSE.Views.PivotGroupDialog.textStart":"시작 시간","SSE.Views.PivotGroupDialog.textYear":"년","SSE.Views.PivotGroupDialog.txtTitle":"그룹핑","SSE.Views.PivotInsertCalculatedItemDialog.txtDescription":"계산 항목을 사용하여 하나의 필드 내에서 서로 다른 항목 간의 기본 계산을 수행할 수 있습니다.","SSE.Views.PivotInsertCalculatedItemDialog.txtFormula":"수식","SSE.Views.PivotInsertCalculatedItemDialog.txtInsertIntoFormula":"수식에 삽입","SSE.Views.PivotInsertCalculatedItemDialog.txtItem":"항목","SSE.Views.PivotInsertCalculatedItemDialog.txtItemName":"항목 이름","SSE.Views.PivotInsertCalculatedItemDialog.txtItems":"항목들","SSE.Views.PivotInsertCalculatedItemDialog.txtReadMore":"자세히 보기","SSE.Views.PivotInsertCalculatedItemDialog.txtTitle":"계산된 항목 삽입 위치","SSE.Views.PivotSettings.textAdvanced":"고급 설정","SSE.Views.PivotSettings.textColumns":"열","SSE.Views.PivotSettings.textFields":"필드 선택","SSE.Views.PivotSettings.textFilters":"필터","SSE.Views.PivotSettings.textRows":"행","SSE.Views.PivotSettings.textValues":"값","SSE.Views.PivotSettings.txtAddColumn":"열에 추가","SSE.Views.PivotSettings.txtAddFilter":"필터에 추가","SSE.Views.PivotSettings.txtAddRow":"행에 추가","SSE.Views.PivotSettings.txtAddValues":"값에 추가","SSE.Views.PivotSettings.txtFieldSettings":"필드 세팅","SSE.Views.PivotSettings.txtMoveBegin":"시작점으로 이동","SSE.Views.PivotSettings.txtMoveColumn":"열로 이동","SSE.Views.PivotSettings.txtMoveDown":"아래로 이동","SSE.Views.PivotSettings.txtMoveEnd":"끝으로 이동","SSE.Views.PivotSettings.txtMoveFilter":"필터로 이동","SSE.Views.PivotSettings.txtMoveRow":"행으로 이동","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.textAltTitle":"제목","SSE.Views.PivotSettingsAdvanced.textAutofitColWidth":"업데이트 시에 열 너비 자동 맞춤","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.textOver":"종료 후 아래로","SSE.Views.PivotSettingsAdvanced.textSelectData":"데이터 선택","SSE.Views.PivotSettingsAdvanced.textShowCols":"열에 표시","SSE.Views.PivotSettingsAdvanced.textShowHeaders":"행과 열의 필드 헤더 표시","SSE.Views.PivotSettingsAdvanced.textShowRows":"행에 표시","SSE.Views.PivotSettingsAdvanced.textTitle":"피벗테이블-고급설정","SSE.Views.PivotSettingsAdvanced.textWrapCol":"열별 필터 필드 보고서","SSE.Views.PivotSettingsAdvanced.textWrapRow":"행별 필터 필드 보고서","SSE.Views.PivotSettingsAdvanced.txtEmpty":"이 입력란은 필수 항목입니다.","SSE.Views.PivotSettingsAdvanced.txtName":"이름","SSE.Views.PivotShowDetailDialog.textDescription":"표시할 세부 항목이 포함된 필드를 선택하세요:","SSE.Views.PivotShowDetailDialog.txtTitle":"세부 정보 표시","SSE.Views.PivotTable.capBlankRows":"빈 행","SSE.Views.PivotTable.capGrandTotals":"종합 합계","SSE.Views.PivotTable.capLayout":"레이아웃 리포트","SSE.Views.PivotTable.capSubtotals":"서브 합계","SSE.Views.PivotTable.mniBottomSubtotals":"그룹 하단에 모든 서브 합계를 보여주기","SSE.Views.PivotTable.mniInsertBlankLine":"각 아이템 다음에 빈 라인을 추가하기","SSE.Views.PivotTable.mniLayoutCompact":"컴팩트 폼으로 보여주기","SSE.Views.PivotTable.mniLayoutNoRepeat":"모든 아이템 레이블을 반복하지 말 것","SSE.Views.PivotTable.mniLayoutOutline":"개요 폼으로 보여주기","SSE.Views.PivotTable.mniLayoutRepeat":"모든 아이템 레이블 반복","SSE.Views.PivotTable.mniLayoutTabular":"태블러 폼으로 보여주기","SSE.Views.PivotTable.mniNoSubtotals":"서브 합계를 보여주지 말 것","SSE.Views.PivotTable.mniOffTotals":"행과 열에 적용","SSE.Views.PivotTable.mniOnColumnsTotals":"열에만 적용","SSE.Views.PivotTable.mniOnRowsTotals":"행에만 적용","SSE.Views.PivotTable.mniOnTotals":"행과 열에 적용","SSE.Views.PivotTable.mniRemoveBlankLine":"각 아이템 다음에 빈 라인 삭제","SSE.Views.PivotTable.mniTopSubtotals":"그룹 상단에 모든 서브 합계 보여주기","SSE.Views.PivotTable.textColBanded":"줄무늬 열","SSE.Views.PivotTable.textColHeader":"열 머리글","SSE.Views.PivotTable.textRowBanded":"줄무늬 행","SSE.Views.PivotTable.textRowHeader":"열 헤더","SSE.Views.PivotTable.tipCalculatedItems":"계산된 항목","SSE.Views.PivotTable.tipCreatePivot":"피벗 테이블 삽입","SSE.Views.PivotTable.tipGrandTotals":"종합 합계 보이기 또는 숨기기","SSE.Views.PivotTable.tipRefresh":"데이터 소스에서 정보를 업데이트 하기","SSE.Views.PivotTable.tipRefreshCurrent":"현재 표의 데이터 소스로부터 정보 업데이트","SSE.Views.PivotTable.tipSelect":"전체 피벗 테이블 선택","SSE.Views.PivotTable.tipSubtotals":"서브 합계 보이기 또는 숨기기","SSE.Views.PivotTable.txtCalculatedItems":"계산된 항목","SSE.Views.PivotTable.txtCollapseEntire":"전체 필드 접기","SSE.Views.PivotTable.txtCreate":"표 삽입","SSE.Views.PivotTable.txtExpandEntire":"전체 필드 펼치기","SSE.Views.PivotTable.txtGroupPivot_Custom":"사용자 정의","SSE.Views.PivotTable.txtGroupPivot_Dark":"어두운","SSE.Views.PivotTable.txtGroupPivot_Light":"밝은","SSE.Views.PivotTable.txtGroupPivot_Medium":"중","SSE.Views.PivotTable.txtPivotTable":"피벗 테이블","SSE.Views.PivotTable.txtRefresh":"새로고침","SSE.Views.PivotTable.txtRefreshAll":"모두 새로 고침","SSE.Views.PivotTable.txtSelect":"선택","SSE.Views.PivotTable.txtTable_PivotStyleDark":"피벗 테이블 어두운 스타일","SSE.Views.PivotTable.txtTable_PivotStyleLight":"피벗 테이블 밝은 스타일","SSE.Views.PivotTable.txtTable_PivotStyleMedium":"피벗 테이블 중간 스타일","SSE.Views.PrintSettings.btnDownload":"저장 및 다운로드","SSE.Views.PrintSettings.btnExport":"저장 및 내보내기","SSE.Views.PrintSettings.btnPrint":"저장 및 인쇄","SSE.Views.PrintSettings.strBottom":"아래쪽","SSE.Views.PrintSettings.strLandscape":"가로 모드","SSE.Views.PrintSettings.strLeft":"왼쪽","SSE.Views.PrintSettings.strMargins":"여백","SSE.Views.PrintSettings.strPortrait":"세로","SSE.Views.PrintSettings.strPrint":"인쇄","SSE.Views.PrintSettings.strPrintTitles":"제목 인쇄","SSE.Views.PrintSettings.strRight":"오른쪽","SSE.Views.PrintSettings.strShow":"표시","SSE.Views.PrintSettings.strTop":"위쪽","SSE.Views.PrintSettings.textActiveSheets":"활성 시트","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.textMarginsNarrow":"좁게","SSE.Views.PrintSettings.textMarginsNormal":"표준","SSE.Views.PrintSettings.textMarginsWide":"넓게","SSE.Views.PrintSettings.textPageOrientation":"페이지 방향","SSE.Views.PrintSettings.textPages":"페이지:","SSE.Views.PrintSettings.textPageScaling":"스케일링","SSE.Views.PrintSettings.textPageSize":"페이지 크기","SSE.Views.PrintSettings.textPrintGrid":"눈금 선 인쇄","SSE.Views.PrintSettings.textPrintHeadings":"행 및 열 머리글 인쇄","SSE.Views.PrintSettings.textPrintRange":"인쇄 범위","SSE.Views.PrintSettings.textRange":"범위","SSE.Views.PrintSettings.textRepeat":"반복...","SSE.Views.PrintSettings.textRepeatLeft":"왼쪽 열을 반복","SSE.Views.PrintSettings.textRepeatTop":"위의 행을 반복","SSE.Views.PrintSettings.textSelection":"선택","SSE.Views.PrintSettings.textSettings":"시트 설정","SSE.Views.PrintSettings.textShowDetails":"세부 정보 표시","SSE.Views.PrintSettings.textShowGrid":"눈금선 표시","SSE.Views.PrintSettings.textShowHeadings":"행 및 열 머리글을 표시","SSE.Views.PrintSettings.textTitle":"인쇄 설정","SSE.Views.PrintSettings.textTitlePDF":"PDF 설정","SSE.Views.PrintSettings.textTo":"받는 사람","SSE.Views.PrintSettings.txtMarginsLast":"마지막 사용자 정의","SSE.Views.PrintTitlesDialog.textFirstCol":"첫째 열","SSE.Views.PrintTitlesDialog.textFirstRow":"머리글 행","SSE.Views.PrintTitlesDialog.textFrozenCols":"고정 된 열","SSE.Views.PrintTitlesDialog.textFrozenRows":"고정된 행","SSE.Views.PrintTitlesDialog.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.PrintTitlesDialog.textLeft":"왼쪽 열을 반복","SSE.Views.PrintTitlesDialog.textNoRepeat":"반복 없음","SSE.Views.PrintTitlesDialog.textRepeat":"반복...","SSE.Views.PrintTitlesDialog.textSelectRange":"범위 선택","SSE.Views.PrintTitlesDialog.textTitle":"제목 인쇄","SSE.Views.PrintTitlesDialog.textTop":"위의 행을 반복","SSE.Views.PrintWithPreview.txtActiveSheets":"활성 시트","SSE.Views.PrintWithPreview.txtActualSize":"실제 크기","SSE.Views.PrintWithPreview.txtAllSheets":"모든 시트","SSE.Views.PrintWithPreview.txtApplyToAllSheets":"모든 시트에 적용","SSE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"흑백 인쇄","SSE.Views.PrintWithPreview.txtBothSides":"양면에 인쇄","SSE.Views.PrintWithPreview.txtBothSidesLongDesc":"긴 변을 중심으로 페이지를 뒤집다","SSE.Views.PrintWithPreview.txtBothSidesShortDesc":"짧은 변을 중심으로 페이지를 뒤집다","SSE.Views.PrintWithPreview.txtBottom":"바닥","SSE.Views.PrintWithPreview.txtColorPrinting":"컬러 인쇄","SSE.Views.PrintWithPreview.txtCopies":"사본","SSE.Views.PrintWithPreview.txtCurrentSheet":"현재 시트","SSE.Views.PrintWithPreview.txtCustom":"사용자 정의","SSE.Views.PrintWithPreview.txtCustomOptions":"사용자 정의 옵션","SSE.Views.PrintWithPreview.txtEmptyTable":"표가 비어 있어 인쇄할 내용이 없습니다","SSE.Views.PrintWithPreview.txtFirstPageNumber":"첫 페이지 수:","SSE.Views.PrintWithPreview.txtFitCols":"한 페이지에 모든 열 맞추기","SSE.Views.PrintWithPreview.txtFitPage":"한 페이지에 시트 맞추기","SSE.Views.PrintWithPreview.txtFitRows":"한 페이지에 모든 행 맞추기","SSE.Views.PrintWithPreview.txtGridlinesAndHeadings":"눈금선 및 글머리","SSE.Views.PrintWithPreview.txtHeaderFooterSettings":"머리글/바닥글 설정","SSE.Views.PrintWithPreview.txtIgnore":"인쇄 영역 무시","SSE.Views.PrintWithPreview.txtLandscape":"가로 모드","SSE.Views.PrintWithPreview.txtLeft":"왼쪽","SSE.Views.PrintWithPreview.txtMargins":"여백","SSE.Views.PrintWithPreview.txtMarginsLast":"마지막 사용자 정의","SSE.Views.PrintWithPreview.txtMarginsNarrow":"좁게","SSE.Views.PrintWithPreview.txtMarginsNormal":"표준","SSE.Views.PrintWithPreview.txtMarginsWide":"넓게","SSE.Views.PrintWithPreview.txtOf":"/ {0}","SSE.Views.PrintWithPreview.txtOneSide":"단면 인쇄","SSE.Views.PrintWithPreview.txtOneSideDesc":"페이지의 한쪽에만 인쇄","SSE.Views.PrintWithPreview.txtPage":"페이지","SSE.Views.PrintWithPreview.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","SSE.Views.PrintWithPreview.txtPageOrientation":"페이지 방향","SSE.Views.PrintWithPreview.txtPages":"페이지:","SSE.Views.PrintWithPreview.txtPageSize":"페이지 크기","SSE.Views.PrintWithPreview.txtPortrait":"세로","SSE.Views.PrintWithPreview.txtPrint":"인쇄","SSE.Views.PrintWithPreview.txtPrinter":"프린터","SSE.Views.PrintWithPreview.txtPrinterNotSelected":"선택된 프린터 없음","SSE.Views.PrintWithPreview.txtPrintersNotFound":"프린터를 찾을 수 없습니다","SSE.Views.PrintWithPreview.txtPrintGrid":"눈금 선 인쇄","SSE.Views.PrintWithPreview.txtPrintHeadings":"행 및 열 머리글 인쇄","SSE.Views.PrintWithPreview.txtPrintRange":"인쇄 범위","SSE.Views.PrintWithPreview.txtPrintSides":"인쇄면","SSE.Views.PrintWithPreview.txtPrintTitles":"제목 인쇄","SSE.Views.PrintWithPreview.txtPrintToPDF":"PDF로 인쇄","SSE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"시스템 대화상자를 사용하여 인쇄","SSE.Views.PrintWithPreview.txtRepeat":"반복...","SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft":"왼쪽 열을 반복","SSE.Views.PrintWithPreview.txtRepeatRowsAtTop":"위의 행을 반복","SSE.Views.PrintWithPreview.txtRight":"오른쪽","SSE.Views.PrintWithPreview.txtSave":"저장","SSE.Views.PrintWithPreview.txtScaling":"스케일링","SSE.Views.PrintWithPreview.txtSelection":"선택","SSE.Views.PrintWithPreview.txtSettingsOfSheet":"시트 설정","SSE.Views.PrintWithPreview.txtSheet":"시트: {0}","SSE.Views.PrintWithPreview.txtTo":"받는 사람","SSE.Views.PrintWithPreview.txtTop":"맨 위","SSE.Views.PrintWithPreview.txtWaitingForPrinters":"프린터 대기 중","SSE.Views.ProtectDialog.textExistName":"오류! 제목이 지정된 범위가 이미 있습니다.","SSE.Views.ProtectDialog.textInvalidName":"범위 표준은 문자로 시작해야 하며 숫자, 문자 및 공백만 포함할 수 있습니다.","SSE.Views.ProtectDialog.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.ProtectDialog.textSelectData":"데이터 선택","SSE.Views.ProtectDialog.txtAllow":"모든 사용자 허용:","SSE.Views.ProtectDialog.txtAllowDescription":"편집을 위해 특정 범위를 잠금 해제할 수 있습니다.","SSE.Views.ProtectDialog.txtAllowRanges":"허용 범위 편집","SSE.Views.ProtectDialog.txtAutofilter":"자동 필터 사용","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.txtOptional":"선택","SSE.Views.ProtectDialog.txtPassword":"비밀번호","SSE.Views.ProtectDialog.txtPivot":"피벗 테이블과 피벗 차트를 사용","SSE.Views.ProtectDialog.txtProtect":"보호","SSE.Views.ProtectDialog.txtRange":"범위","SSE.Views.ProtectDialog.txtRangeName":"제목","SSE.Views.ProtectDialog.txtRepeat":"비밀번호 확인","SSE.Views.ProtectDialog.txtScen":"시나리오 편집","SSE.Views.ProtectDialog.txtSelLocked":"잠긴 셀 선택","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.ProtectedRangesEditDlg.textAnonymous":"익명사용자","SSE.Views.ProtectedRangesEditDlg.textAnyone":"모두","SSE.Views.ProtectedRangesEditDlg.textCanEdit":"편집","SSE.Views.ProtectedRangesEditDlg.textCantView":"거부됨","SSE.Views.ProtectedRangesEditDlg.textCanView":"보기","SSE.Views.ProtectedRangesEditDlg.textInvalidName":"범위 표준은 문자로 시작해야 하며 숫자, 문자 및 공백만 포함할 수 있습니다.","SSE.Views.ProtectedRangesEditDlg.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.ProtectedRangesEditDlg.textRemove":"제거","SSE.Views.ProtectedRangesEditDlg.textSelectData":"데이터 선택","SSE.Views.ProtectedRangesEditDlg.textYou":"당신","SSE.Views.ProtectedRangesEditDlg.txtAccess":"범위 접근 권한","SSE.Views.ProtectedRangesEditDlg.txtEmpty":"이 입력란은 필수 항목","SSE.Views.ProtectedRangesEditDlg.txtProtect":"보호","SSE.Views.ProtectedRangesEditDlg.txtRange":"범위","SSE.Views.ProtectedRangesEditDlg.txtRangeName":"제목","SSE.Views.ProtectedRangesEditDlg.txtYouCanEdit":"이 범위는 당신 만이 편집할 수 있습니다.","SSE.Views.ProtectedRangesEditDlg.userPlaceholder":"이름 또는 이메일 주소 입력 시작","SSE.Views.ProtectedRangesManagerDlg.guestText":"게스트","SSE.Views.ProtectedRangesManagerDlg.lockText":"잠김","SSE.Views.ProtectedRangesManagerDlg.textDelete":"삭제","SSE.Views.ProtectedRangesManagerDlg.textEdit":"편집","SSE.Views.ProtectedRangesManagerDlg.textEmpty":"아직 보호된 범위가 생성되지 않았습니다.
최소한 하나의 보호된 범위를 생성하면 이 필드에 나타납니다.","SSE.Views.ProtectedRangesManagerDlg.textFilter":"필터","SSE.Views.ProtectedRangesManagerDlg.textFilterAll":"모든","SSE.Views.ProtectedRangesManagerDlg.textNew":"신규","SSE.Views.ProtectedRangesManagerDlg.textProtect":"시트 보호","SSE.Views.ProtectedRangesManagerDlg.textRange":"범위","SSE.Views.ProtectedRangesManagerDlg.textRangesDesc":"선택한 사람들에게 편집 범위를 제한할 수 있습니다.","SSE.Views.ProtectedRangesManagerDlg.textTitle":"제목","SSE.Views.ProtectedRangesManagerDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.ProtectedRangesManagerDlg.txtAccess":"접근","SSE.Views.ProtectedRangesManagerDlg.txtDenied":"거부됨","SSE.Views.ProtectedRangesManagerDlg.txtEdit":"편집","SSE.Views.ProtectedRangesManagerDlg.txtEditRange":"범위 편집","SSE.Views.ProtectedRangesManagerDlg.txtNewRange":"새로운 범위","SSE.Views.ProtectedRangesManagerDlg.txtTitle":"보호된 범위","SSE.Views.ProtectedRangesManagerDlg.txtView":"보기","SSE.Views.ProtectedRangesManagerDlg.warnDelete":"보호된 범위 {0}를 삭제하시겠습니까?
스프레드시트의 수정 권한을 가진 모든 사용자가 해당 범위의 내용을 편집할 수 있게 됩니다.","SSE.Views.ProtectedRangesManagerDlg.warnDeleteRanges":"보호된 범위를 삭제하시겠습니까?
스프레드시트의 수정 권한을 가진 모든 사용자가 해당 범위의 내용을 편집할 수 있게 됩니다.","SSE.Views.ProtectRangesDlg.guestText":"게스트","SSE.Views.ProtectRangesDlg.lockText":"잠김","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.textTitle":"제목","SSE.Views.ProtectRangesDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.ProtectRangesDlg.txtEditRange":"범위 편집","SSE.Views.ProtectRangesDlg.txtNewRange":"새로운 범위","SSE.Views.ProtectRangesDlg.txtNo":"아니오","SSE.Views.ProtectRangesDlg.txtTitle":"사용자 범위 편집 허용","SSE.Views.ProtectRangesDlg.txtYes":"확인","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.ariaRightMenu":"오른쪽 메뉴","SSE.Views.RightMenu.txtCellSettings":"셀 설정","SSE.Views.RightMenu.txtChartSettings":"차트 설정","SSE.Views.RightMenu.txtImageSettings":"이미지 설정","SSE.Views.RightMenu.txtParagraphSettings":"단락 설정","SSE.Views.RightMenu.txtPivotSettings":"피벗 테이블 설정","SSE.Views.RightMenu.txtSettings":"공통 설정","SSE.Views.RightMenu.txtShapeSettings":"도형 설정","SSE.Views.RightMenu.txtSignatureSettings":"서명 세팅","SSE.Views.RightMenu.txtSlicerSettings":"슬라이서 설정","SSE.Views.RightMenu.txtSparklineSettings":"스파크라인 설정","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.ScaleDialog.textScaleTo":"확대/축소","SSE.Views.ScaleDialog.textTitle":"확대/축소 설정","SSE.Views.ScaleDialog.textWidth":"너비","SSE.Views.SetValueDialog.txtMaxText":"이 필드의 최대 값은 {0} 입니다.","SSE.Views.SetValueDialog.txtMinText":"이 필드의 최소값은 {0} 입니다.","SSE.Views.ShapeSettings.strBackground":"배경색","SSE.Views.ShapeSettings.strChange":"도형 변경","SSE.Views.ShapeSettings.strColor":"색상","SSE.Views.ShapeSettings.strFill":"채우기","SSE.Views.ShapeSettings.strForeground":"전경색","SSE.Views.ShapeSettings.strPattern":"패턴","SSE.Views.ShapeSettings.strShadow":"음영 표시","SSE.Views.ShapeSettings.strSize":"크기","SSE.Views.ShapeSettings.strStroke":"선","SSE.Views.ShapeSettings.strTransparency":"투명도","SSE.Views.ShapeSettings.strType":"Type","SSE.Views.ShapeSettings.textAdjustShadow":"그림자 조정","SSE.Views.ShapeSettings.textAdvanced":"고급 설정","SSE.Views.ShapeSettings.textAngle":"각도","SSE.Views.ShapeSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584 포인트 사이의 값을 입력하십시오.","SSE.Views.ShapeSettings.textColor":"색상 채우기","SSE.Views.ShapeSettings.textDirection":"방향","SSE.Views.ShapeSettings.textEditPoints":"꼭지점 수정","SSE.Views.ShapeSettings.textEditShape":"도형 편집","SSE.Views.ShapeSettings.textEmptyPattern":"패턴 없음","SSE.Views.ShapeSettings.textEyedropper":"스포이트","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.textMoreColors":"사용자 정의 색상 추가","SSE.Views.ShapeSettings.textNoFill":"채우기 없음","SSE.Views.ShapeSettings.textNoShadow":"그림자 없음","SSE.Views.ShapeSettings.textOriginalSize":"원본 크기","SSE.Views.ShapeSettings.textPatternFill":"패턴","SSE.Views.ShapeSettings.textPosition":"위치","SSE.Views.ShapeSettings.textRadial":"방사형","SSE.Views.ShapeSettings.textRecentlyUsed":"최근 사용된","SSE.Views.ShapeSettings.textRotate90":"90도 회전","SSE.Views.ShapeSettings.textRotation":"회전","SSE.Views.ShapeSettings.textSelectImage":"그림선택","SSE.Views.ShapeSettings.textSelectTexture":"선택","SSE.Views.ShapeSettings.textShadow":"그림자","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","SSE.Views.ShapeSettings.txtDarkFabric":"어두운 직물","SSE.Views.ShapeSettings.txtGrain":"Grain","SSE.Views.ShapeSettings.txtGranite":"Granite","SSE.Views.ShapeSettings.txtGreyPaper":"회색 용지","SSE.Views.ShapeSettings.txtKnit":"Knit","SSE.Views.ShapeSettings.txtLeather":"가죽","SSE.Views.ShapeSettings.txtNoBorders":"선 없음","SSE.Views.ShapeSettings.txtOffsetBottom":"오프셋: 아래쪽","SSE.Views.ShapeSettings.txtOffsetBottomLeft":"오프셋: 왼쪽 아래","SSE.Views.ShapeSettings.txtOffsetBottomRight":"오프셋: 오른쪽 아래","SSE.Views.ShapeSettings.txtOffsetCenter":"오프셋: 가운데","SSE.Views.ShapeSettings.txtOffsetLeft":"오프셋: 왼쪽","SSE.Views.ShapeSettings.txtOffsetRight":"오프셋: 오른쪽","SSE.Views.ShapeSettings.txtOffsetTop":"오프셋: 위쪽","SSE.Views.ShapeSettings.txtOffsetTopLeft":"오프셋: 왼쪽 위","SSE.Views.ShapeSettings.txtOffsetTopRight":"오프셋: 오른쪽 위","SSE.Views.ShapeSettings.txtPapyrus":"파피루스","SSE.Views.ShapeSettings.txtWood":"목재","SSE.Views.ShapeSettingsAdvanced.strColumns":"열","SSE.Views.ShapeSettingsAdvanced.strMargins":"텍스트 채우기","SSE.Views.ShapeSettingsAdvanced.textAbsolute":"셀을 이동하거나 크기를 조정하지 마십시오.","SSE.Views.ShapeSettingsAdvanced.textAlt":"대체 텍스트","SSE.Views.ShapeSettingsAdvanced.textAltDescription":"설명","SSE.Views.ShapeSettingsAdvanced.textAltTip":"시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.","SSE.Views.ShapeSettingsAdvanced.textAltTitle":"제목","SSE.Views.ShapeSettingsAdvanced.textAngle":"각도","SSE.Views.ShapeSettingsAdvanced.textArrows":"화살표","SSE.Views.ShapeSettingsAdvanced.textAutofit":"자동 맞춤","SSE.Views.ShapeSettingsAdvanced.textBeginSize":"크기 시작","SSE.Views.ShapeSettingsAdvanced.textBeginStyle":"스타일 시작","SSE.Views.ShapeSettingsAdvanced.textBevel":"Bevel","SSE.Views.ShapeSettingsAdvanced.textBottom":"Bottom","SSE.Views.ShapeSettingsAdvanced.textCapType":"모자 유형","SSE.Views.ShapeSettingsAdvanced.textColNumber":"열 수","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.textVertically":"세로","SSE.Views.ShapeSettingsAdvanced.textWeightArrows":"가중치 및 화살표","SSE.Views.ShapeSettingsAdvanced.textWidth":"폭","SSE.Views.SignatureSettings.notcriticalErrorTitle":"경고","SSE.Views.SignatureSettings.strDelete":"서명 삭제","SSE.Views.SignatureSettings.strDetails":"서명 상세","SSE.Views.SignatureSettings.strInvalid":"잘못된 서명","SSE.Views.SignatureSettings.strRequested":"요청 서명","SSE.Views.SignatureSettings.strSetup":"서명 셋업","SSE.Views.SignatureSettings.strSign":"서명","SSE.Views.SignatureSettings.strSignature":"서명","SSE.Views.SignatureSettings.strSigner":"서명자","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.strSorting":"정렬 및 필터","SSE.Views.SlicerSettings.textAdvanced":"고급 설정","SSE.Views.SlicerSettings.textAsc":"오름차순","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.textSmallLarge":"가장 작은 것에서 가장 큰 것","SSE.Views.SlicerSettings.textStyle":"스타일","SSE.Views.SlicerSettings.textVert":"세로","SSE.Views.SlicerSettings.textWidth":"너비","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.strSorting":"정렬 & 필터","SSE.Views.SlicerSettingsAdvanced.strStyle":"스타일","SSE.Views.SlicerSettingsAdvanced.strStyleSize":"스타일 및 크기","SSE.Views.SlicerSettingsAdvanced.strWidth":"너비","SSE.Views.SlicerSettingsAdvanced.textAbsolute":"셀을 이동하거나 크기를 조정하지 마십시오.","SSE.Views.SlicerSettingsAdvanced.textAlt":"대체 텍스트","SSE.Views.SlicerSettingsAdvanced.textAltDescription":"세부 설명","SSE.Views.SlicerSettingsAdvanced.textAltTip":"시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ","SSE.Views.SlicerSettingsAdvanced.textAltTitle":"제목","SSE.Views.SlicerSettingsAdvanced.textAsc":"오름차순","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.textSmallLarge":"가장 작은 것에서 가장 큰 것","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.SolverDlg.textAdd":"추가","SSE.Views.SolverDlg.textBin":"bin","SSE.Views.SolverDlg.textConfirmChangeMethod":"솔버를 실행하면 %1 메서드로 돌아갈 수 없습니다.","SSE.Views.SolverDlg.textConfirmReset":"모든 솔버 옵션과 셀 선택을 초기화하시겠습니까?","SSE.Views.SolverDlg.textConstraints":"제약 조건에 따라","SSE.Views.SolverDlg.textDataRange":"해결해야 할 문제가 명시되지 않았습니다.","SSE.Views.SolverDlg.textDelete":"삭제","SSE.Views.SolverDlg.textDif":"dif","SSE.Views.SolverDlg.textEdit":"변경","SSE.Views.SolverDlg.textEmptyList":"아직 제약 조건이 생성되지 않았습니다.
최소 하나 이상의 제약 조건을 생성하면 이 목록에 표시됩니다.","SSE.Views.SolverDlg.textEvolutionary":"진화적","SSE.Views.SolverDlg.textInt":"int","SSE.Views.SolverDlg.textManyVarCells":"변수 셀이 너무 많습니다.","SSE.Views.SolverDlg.textMax":"최대","SSE.Views.SolverDlg.textMethod":"해결 방법","SSE.Views.SolverDlg.textMethodDesc":"LP 심플렉스 엔진은 선형 문제 해결에 사용됩니다.","SSE.Views.SolverDlg.textMin":"최소","SSE.Views.SolverDlg.textMustContainFormula":"목적 셀의 내용은 수식이어야 합니다.","SSE.Views.SolverDlg.textMustSingleCell":"대상 셀은 활성 시트의 단일 셀이어야 합니다.","SSE.Views.SolverDlg.textNonlinear":"GRG 비선형","SSE.Views.SolverDlg.textNonNegative":"제약 조건이 없는 변수는 음수가 될 수 없도록 합니다.","SSE.Views.SolverDlg.textNotSupported":"비선형 또는 진화적 방법은 아직 지원되지 않습니다. 필요한 경우 %1","SSE.Views.SolverDlg.textObjective":"목표 설정","SSE.Views.SolverDlg.textOptions":"옵션","SSE.Views.SolverDlg.textReadMore":"더 읽어보기","SSE.Views.SolverDlg.textReset":"재설정","SSE.Views.SolverDlg.textResetAll":"모두 초기화","SSE.Views.SolverDlg.textSelectData":"데이터를 선택하세요","SSE.Views.SolverDlg.textSimplex":"Simplex LP","SSE.Views.SolverDlg.textSolve":"Solve","SSE.Views.SolverDlg.textTellUs":"그것에 대해 이야기해 주세요","SSE.Views.SolverDlg.textTitle":"솔버 매개변수","SSE.Views.SolverDlg.textTo":"받는이","SSE.Views.SolverDlg.textUnsupportedConstraints":"일부 제약 조건에 지원되지 않는 int, bin 또는 dif 관계가 포함되어 있습니다.
해당 관계를 삭제하거나 지원되는 <=, =, >= 관계로 변경하십시오.","SSE.Views.SolverDlg.textValueOf":"값","SSE.Views.SolverDlg.textVars":"변수 셀을 변경하여","SSE.Views.SolverDlg.txtEmpty":"이 항목은 필수 입력 사항입니다.","SSE.Views.SolverDlg.txtErrorNumber":"입력하신 내용은 사용할 수 없습니다. 정수 또는 소수점이 필요할 수 있습니다.","SSE.Views.SolverMethodDialog.txtAutoScale":"자동 크기 조정을 사용하세요","SSE.Views.SolverMethodDialog.txtIgnore":"정수 제약 조건을 무시합니다","SSE.Views.SolverMethodDialog.txtIterations":"반복","SSE.Views.SolverMethodDialog.txtIterationsInvalid":"반복은 반드시 양수여야합니다.","SSE.Views.SolverMethodDialog.txtMaxTime":"최대 시간(초)","SSE.Views.SolverMethodDialog.txtMaxTimeInvalid":"최대 시간은 반드시 양수여야 합니다.","SSE.Views.SolverMethodDialog.txtOptimality":"정수 최적성(%)","SSE.Views.SolverMethodDialog.txtOptimalityInvalid":"정수 허용 오차는 작은 양수여야 합니다.","SSE.Views.SolverMethodDialog.txtPrecision":"제약 조건 정밀도","SSE.Views.SolverMethodDialog.txtPrecisionInvalid":"정밀도는 작은 양수여야 합니다.","SSE.Views.SolverMethodDialog.txtSolverInt":"정수 제약 조건을 이용한 해결","SSE.Views.SolverMethodDialog.txtSolverLimits":"극한 풀기","SSE.Views.SolverMethodDialog.txtTitle":"메서드 옵션","SSE.Views.SolverResultsDlg.txtCantImprove":"솔버가 현재 솔루션을 개선할 수 없습니다. 모든 제약 조건이 충족되었습니다.","SSE.Views.SolverResultsDlg.txtCantImproveDesc":"진화 엔진이 사용될 때, 이는 주어진 시간 내에 더 나은 해법을 찾지 못했기 때문에 솔버가 중단되었음을 의미합니다.","SSE.Views.SolverResultsDlg.txtConverged":"솔버가 현재 솔루션으로 수렴했습니다. 모든 제약 조건이 충족되었습니다.","SSE.Views.SolverResultsDlg.txtConvergedDesc":"솔버가 5번의 반복 계산을 수행했지만 목적 함수 값이 크게 변하지 않았습니다. 수렴 설정값을 낮추거나 다른 시작점을 시도해 보세요.","SSE.Views.SolverResultsDlg.txtErrorModel":"모델에 오류가 있습니다. 모든 셀과 제약 조건이 유효한지 확인하십시오.","SSE.Views.SolverResultsDlg.txtErrorModelDesc":"변수 셀이 아닌 일부 셀이 정수, 이진 또는 모두 다름으로 표시될 수 있습니다.","SSE.Views.SolverResultsDlg.txtErrorVal":"솔버가 목적 함수 셀 또는 제약 조건 셀에서 오류 값을 발견했습니다.","SSE.Views.SolverResultsDlg.txtErrorValDesc":"Solver가 변수 셀에 특정 값을 시도하는 동안 워크시트의 한 셀에서 오류 값이 발생했습니다.","SSE.Views.SolverResultsDlg.txtIntSolution":"솔버가 허용 오차 범위 내에서 정수 해를 찾았습니다. 모든 제약 조건이 충족되었습니다.","SSE.Views.SolverResultsDlg.txtIntSolutionDesc":"더 나은 정수 해법이 존재할 가능성이 있습니다. Solver가 최상의 해법을 찾도록 하려면 옵션 대화 상자에서 정수 허용 오차를 0%로 설정하십시오.","SSE.Views.SolverResultsDlg.txtKeep":"해찾기 결과 유지","SSE.Views.SolverResultsDlg.txtLineConditions":"이 LP 솔버에 필요한 선형성 조건이 충족되지 않습니다.","SSE.Views.SolverResultsDlg.txtLineConditionsDesc":"선형성 보고서를 생성하여 문제점을 파악하거나 GRG 엔진으로 전환하십시오.","SSE.Views.SolverResultsDlg.txtNoFeasible":"솔버가 실행 가능한 해법을 찾지 못했습니다.","SSE.Views.SolverResultsDlg.txtNoFeasibleDesc":"솔버가 모든 제약 조건을 만족하는 지점을 찾을 수 없습니다.","SSE.Views.SolverResultsDlg.txtNotConverge":"목표 셀 값이 수렴하지 않습니다.","SSE.Views.SolverResultsDlg.txtNotConvergeDesc":"솔버는 목적 함수 셀을 원하는 만큼 크게(최소화 시에는 작게) 만들 수 있습니다.","SSE.Views.SolverResultsDlg.txtNotEnoughMemory":"문제를 해결하기에 사용 가능한 메모리가 부족합니다.","SSE.Views.SolverResultsDlg.txtOpenParams":"솔버 매개변수 대화 상자로 돌아가기","SSE.Views.SolverResultsDlg.txtOptimalSolution":"솔버가 해를 찾았습니다. 모든 제약 조건과 최적성 조건이 충족되었습니다.","SSE.Views.SolverResultsDlg.txtOptimalSolutionDesc":"심플렉스 LP를 사용했다는 것은 솔버가 전역 최적해를 찾았다는 의미입니다.","SSE.Views.SolverResultsDlg.txtRestore":"원래 값으로 복원","SSE.Views.SolverResultsDlg.txtStopped":"사용자의 요청에 따라 솔버가 중지되었습니다.","SSE.Views.SolverResultsDlg.txtStoppedDesc":"솔버가 전역 최적해를 찾기 전에 중단되었습니다. 찾은 최적해가 있다면 표시됩니다.","SSE.Views.SolverResultsDlg.txtTitle":"솔버 결과","SSE.Views.SortDialog.errorEmpty":"분류 기준에는 반드시 특정 행과 열을 지정해야 합니다.","SSE.Views.SortDialog.errorMoreOneCol":"여러 열이 선택되었습니다.","SSE.Views.SortDialog.errorMoreOneRow":"여러 행이 선택되었습니다.","SSE.Views.SortDialog.errorNotOriginalCol":"선택한 열이 원래의 선택 범위에 없습니다.","SSE.Views.SortDialog.errorNotOriginalRow":"선택한 행이 원래 선택한 범위에 없습니다.","SSE.Views.SortDialog.errorSameColumnColor":" %1이 같은 색상으로 최소한 한 번 이상 분류되었습니다.
중복된 분류 기준을 삭제하시고 다시 시도하여 주시기 바랍니다.","SSE.Views.SortDialog.errorSameColumnValue":"%1이 중복된 값으로 한 번 이상 분류되었습니다.
중복된 분류 기준을 삭제하시고 다시 한 번 더 시도하여 주시기 바랍니다.","SSE.Views.SortDialog.textAsc":"오름차순","SSE.Views.SortDialog.textAuto":"자동","SSE.Views.SortDialog.textAZ":"오름차순 A > Z","SSE.Views.SortDialog.textBelow":"아래","SSE.Views.SortDialog.textBtnCopy":"복사","SSE.Views.SortDialog.textBtnDelete":"삭제","SSE.Views.SortDialog.textBtnNew":"신규","SSE.Views.SortDialog.textCellColor":"셀 색상","SSE.Views.SortDialog.textColumn":"열","SSE.Views.SortDialog.textDesc":"내림차순","SSE.Views.SortDialog.textDown":"레벨 아래로 이동","SSE.Views.SortDialog.textFontColor":"글꼴 색","SSE.Views.SortDialog.textLeft":"왼쪽","SSE.Views.SortDialog.textLevels":"레벨들","SSE.Views.SortDialog.textMoreCols":"(다른 행들...)","SSE.Views.SortDialog.textMoreRows":"행 더 보기...","SSE.Views.SortDialog.textNone":"없음","SSE.Views.SortDialog.textOptions":"옵션...","SSE.Views.SortDialog.textOrder":"순서","SSE.Views.SortDialog.textRight":"오른쪽","SSE.Views.SortDialog.textRow":"행","SSE.Views.SortDialog.textSort":"정렬","SSE.Views.SortDialog.textSortBy":"정렬 기준","SSE.Views.SortDialog.textThenBy":"다음 우선되는 키","SSE.Views.SortDialog.textTop":"위","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.textNoSort":"정렬 없음","SSE.Views.SortFilterDialog.txtTitle":"정렬","SSE.Views.SortFilterDialog.txtTitleValue":"값에 따라 정렬","SSE.Views.SortOptionsDialog.textCase":"대소문자 구별","SSE.Views.SortOptionsDialog.textHeaders":"내 데이터에 제목이 있습니다.","SSE.Views.SortOptionsDialog.textLeftRight":"왼쪽에서 오른쪽으로 정렬","SSE.Views.SortOptionsDialog.textOrientation":"방향","SSE.Views.SortOptionsDialog.textTitle":"정렬 옵션","SSE.Views.SortOptionsDialog.textTopBottom":"위에서 아래로 정렬","SSE.Views.SpecialPasteDialog.textAdd":"추가","SSE.Views.SpecialPasteDialog.textAll":"모든","SSE.Views.SpecialPasteDialog.textBlanks":"공백 건너뛰기","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.textSub":"뺄셈","SSE.Views.SpecialPasteDialog.textTitle":"특수기호 붙이기","SSE.Views.SpecialPasteDialog.textTranspose":"교체","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.txtClosePanel":"맞춤법 검사 닫기","SSE.Views.Spellcheck.txtComplete":"맞춤법 검사 완료","SSE.Views.Spellcheck.txtDictionaryLanguage":"사전 언어","SSE.Views.Spellcheck.txtNextTip":"다음 단어로 이동","SSE.Views.Spellcheck.txtSpelling":"스펠링","SSE.Views.Statusbar.CopyDialog.itemMoveToEnd":"(끝으로 이동)","SSE.Views.Statusbar.CopyDialog.textCreateCopy":"복사본 만들기","SSE.Views.Statusbar.CopyDialog.textCreateNewSpreadsheet":"새 스프레드시트 만들기","SSE.Views.Statusbar.CopyDialog.textMoveBefore":"시트 이전으로 이동","SSE.Views.Statusbar.CopyDialog.textSpreadsheet":"스프레드시트","SSE.Views.Statusbar.filteredRecordsText":"{1} 개의 필터링 된 레코드 중 {0}","SSE.Views.Statusbar.filteredText":"필터 모드","SSE.Views.Statusbar.itemAverage":"평균","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.itemMoveOrCopy":"이동 또는 복사","SSE.Views.Statusbar.itemProtect":"보호","SSE.Views.Statusbar.itemRename":"이름 바꾸기","SSE.Views.Statusbar.itemStatus":"저장 상태","SSE.Views.Statusbar.itemSum":"합계","SSE.Views.Statusbar.itemTabColor":"탭 색상","SSE.Views.Statusbar.itemUnProtect":"보호해제","SSE.Views.Statusbar.RenameDialog.errNameExists":"같은 이름의 워크 시트가 이미 있습니다.","SSE.Views.Statusbar.RenameDialog.errNameWrongChar":"시트 이름에는 \\/ *? [] :","SSE.Views.Statusbar.RenameDialog.labelSheetName":"시트 이름","SSE.Views.Statusbar.selectAllSheets":"모든 워크시트 선택","SSE.Views.Statusbar.sheetIndexText":"전체 {1} 시트중 {0}","SSE.Views.Statusbar.textAverage":"평균","SSE.Views.Statusbar.textCount":"계산","SSE.Views.Statusbar.textMax":"최대","SSE.Views.Statusbar.textMin":"최소","SSE.Views.Statusbar.textNewColor":"새 사용자 정의 색상 추가","SSE.Views.Statusbar.textNoColor":"색상 없음","SSE.Views.Statusbar.textSum":"합계","SSE.Views.Statusbar.tipAddTab":"워크 시트 추가","SSE.Views.Statusbar.tipFirst":"첫 번째 시트로 스크롤","SSE.Views.Statusbar.tipLast":"마지막 시트로 스크롤","SSE.Views.Statusbar.tipListOfSheets":"시트 목록","SSE.Views.Statusbar.tipNext":"오른쪽 스크롤 목록","SSE.Views.Statusbar.tipPrev":"왼쪽으로 스크롤 목록","SSE.Views.Statusbar.tipZoomFactor":"확대/축소","SSE.Views.Statusbar.tipZoomIn":"확대","SSE.Views.Statusbar.tipZoomOut":"축소","SSE.Views.Statusbar.ungroupSheets":"시트 그룹 해제","SSE.Views.Statusbar.zoomText":"확대/축소 {0} %","SSE.Views.TableDesignTab.deleteColumnText":"열 삭제","SSE.Views.TableDesignTab.deleteRowText":"행 삭제","SSE.Views.TableDesignTab.deleteTableText":"표삭제","SSE.Views.TableDesignTab.insertColumnLeftText":"왼쪽에 열 삽입","SSE.Views.TableDesignTab.insertColumnRightText":"오른쪽 열 삽입","SSE.Views.TableDesignTab.insertRowAboveText":"위에 행 삽입","SSE.Views.TableDesignTab.insertRowBelowText":"아래에 행 삽입","SSE.Views.TableDesignTab.selectColumnData":"열 데이터 선택","SSE.Views.TableDesignTab.selectColumnText":"전체 열 선택","SSE.Views.TableDesignTab.selectRowText":"행 선택","SSE.Views.TableDesignTab.selectTableText":"표 선택","SSE.Views.TableDesignTab.tipAltText":"표의 대체 제목 및 설명 설정","SSE.Views.TableDesignTab.tipConvertRange":"이 표를 일반 셀 범위로 변환","SSE.Views.TableDesignTab.tipHeaderRow":"표의 머리글 행 표시 또는 숨기기","SSE.Views.TableDesignTab.tipInsertPivot":"피벗 테이블 삽입","SSE.Views.TableDesignTab.tipInsertSlicer":"슬라이서추가","SSE.Views.TableDesignTab.tipRemDuplicates":"시트에서 중복 행 제거 중","SSE.Views.TableDesignTab.tipResize":"행과 열을 추가하거나 제거하여 표 크기 변경","SSE.Views.TableDesignTab.tipRowsCols":"행 및 열","SSE.Views.TableDesignTab.txtAltText":"대체 텍스트","SSE.Views.TableDesignTab.txtBandedColumns":"줄무늬 열","SSE.Views.TableDesignTab.txtBandedRows":"줄무늬 행","SSE.Views.TableDesignTab.txtConvertToRange":"범위로 변환","SSE.Views.TableDesignTab.txtFilterButton":"필터 버튼","SSE.Views.TableDesignTab.txtFirstColumn":"첫 번째 열","SSE.Views.TableDesignTab.txtGroupTable_Custom":"사용자 지정","SSE.Views.TableDesignTab.txtGroupTable_Dark":"어두운","SSE.Views.TableDesignTab.txtGroupTable_Light":"밝은","SSE.Views.TableDesignTab.txtGroupTable_Medium":"중","SSE.Views.TableDesignTab.txtHeaderRow":"머리글 행","SSE.Views.TableDesignTab.txtLastColumn":"마지막 열","SSE.Views.TableDesignTab.txtPivot":"피벗","SSE.Views.TableDesignTab.txtRemDuplicates":"중복된 항목 제거","SSE.Views.TableDesignTab.txtResize":"크기 조정 테이블","SSE.Views.TableDesignTab.txtRowsCols":"행 및 열","SSE.Views.TableDesignTab.txtSlicer":"슬라이서","SSE.Views.TableDesignTab.txtTotalRow":"총 행","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.txtInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.TableOptionsDialog.txtNote":"헤더는 동일한 행에 있어야 하며 결과 테이블 범위는 원래 테이블 범위와 겹쳐야 합니다.","SSE.Views.TableOptionsDialog.txtTitle":"제목","SSE.Views.TableSettingsAdvanced.textAlt":"대체 텍스트","SSE.Views.TableSettingsAdvanced.textAltDescription":"설명","SSE.Views.TableSettingsAdvanced.textAltTip":"시각적 객체 정보의 대체 텍스트 기반 표현으로 시력이나인지 장애가있는 사람들에게 읽혀 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ","SSE.Views.TableSettingsAdvanced.textAltTitle":"제목","SSE.Views.TableSettingsAdvanced.textTitle":"표 - 고급 설정","SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom":"사용자 정의","SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark":"어두운","SSE.Views.TableSettingsAdvanced.txtGroupTable_Light":"밝은","SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium":"중","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark":"어두운 표 스타일","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight":"밝은 표 스타일","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium":"중간 표 스타일","SSE.Views.TextArtSettings.strBackground":"배경색","SSE.Views.TextArtSettings.strColor":"색상","SSE.Views.TextArtSettings.strFill":"채우기","SSE.Views.TextArtSettings.strForeground":"전경색","SSE.Views.TextArtSettings.strPattern":"패턴","SSE.Views.TextArtSettings.strSize":"크기","SSE.Views.TextArtSettings.strStroke":"선","SSE.Views.TextArtSettings.strTransparency":"투명도","SSE.Views.TextArtSettings.strType":"유형","SSE.Views.TextArtSettings.textAngle":"각도","SSE.Views.TextArtSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.","SSE.Views.TextArtSettings.textColor":"색상 채우기","SSE.Views.TextArtSettings.textDirection":"방향","SSE.Views.TextArtSettings.textEmptyPattern":"패턴 없음","SSE.Views.TextArtSettings.textFromFile":"파일로부터","SSE.Views.TextArtSettings.textFromUrl":"URL로부터","SSE.Views.TextArtSettings.textGradient":"그라데이션 포인트","SSE.Views.TextArtSettings.textGradientFill":"그라데이션 채우기","SSE.Views.TextArtSettings.textImageTexture":"그림 또는 질감","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":"늘이기","SSE.Views.TextArtSettings.textStyle":"스타일","SSE.Views.TextArtSettings.textTemplate":"템플릿","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","SSE.Views.TextArtSettings.txtDarkFabric":"어두운 직물","SSE.Views.TextArtSettings.txtGrain":"Grain","SSE.Views.TextArtSettings.txtGranite":"Granite","SSE.Views.TextArtSettings.txtGreyPaper":"회색 용지","SSE.Views.TextArtSettings.txtKnit":"Knit","SSE.Views.TextArtSettings.txtLeather":"가죽","SSE.Views.TextArtSettings.txtNoBorders":"선 없음","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.capBtnInsSmartArt":"SmartArt","SSE.Views.Toolbar.capBtnInsSymbol":"기호","SSE.Views.Toolbar.capBtnMargins":"여백","SSE.Views.Toolbar.capBtnPageBreak":"나누기","SSE.Views.Toolbar.capBtnPageOrient":"방향","SSE.Views.Toolbar.capBtnPageSize":"크기","SSE.Views.Toolbar.capBtnPrintArea":"인쇄 영역","SSE.Views.Toolbar.capBtnPrintTitles":"제목 인쇄","SSE.Views.Toolbar.capBtnScale":"크기에 맞게 확대/축소","SSE.Views.Toolbar.capImgAlign":"정렬","SSE.Views.Toolbar.capImgBackward":"뒤로 보내기","SSE.Views.Toolbar.capImgForward":"앞으로 보내기","SSE.Views.Toolbar.capImgGroup":"그룹","SSE.Views.Toolbar.capInsertChart":"차트","SSE.Views.Toolbar.capInsertChartRecommend":"추천 차트","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.capInsertTextart":"텍스트 아트","SSE.Views.Toolbar.capShapesMerge":"도형 병합","SSE.Views.Toolbar.mniCapitalizeWords":"각 단어의 첫글자를 대문자로","SSE.Views.Toolbar.mniImageFromFile":"파일에서 그림","SSE.Views.Toolbar.mniImageFromStorage":"스토리지에서 불러오기","SSE.Views.Toolbar.mniImageFromUrl":"URL에서 그림","SSE.Views.Toolbar.mniLowerCase":"소문자","SSE.Views.Toolbar.mniSentenceCase":"문장의 첫 글자를 대문자로","SSE.Views.Toolbar.mniToggleCase":"대/소문자 전환","SSE.Views.Toolbar.mniUpperCase":"대문자","SSE.Views.Toolbar.textAddPrintArea":"인쇄 영역에 추가","SSE.Views.Toolbar.textAlignBottom":"아래쪽 정렬","SSE.Views.Toolbar.textAlignCenter":"가운데 정렬","SSE.Views.Toolbar.textAlignJust":"Justified","SSE.Views.Toolbar.textAlignLeft":"왼쪽 정렬","SSE.Views.Toolbar.textAlignMiddle":"중간 정렬","SSE.Views.Toolbar.textAlignRight":"오른쪽 정렬","SSE.Views.Toolbar.textAlignTop":"Align Top","SSE.Views.Toolbar.textAllBorders":"모든 테두리","SSE.Views.Toolbar.textAlpha":"소문자 알파","SSE.Views.Toolbar.textAuto":"자동","SSE.Views.Toolbar.textAutoColor":"자동","SSE.Views.Toolbar.textBetta":"소문자 베타","SSE.Views.Toolbar.textBlackHeart":"검정 하트","SSE.Views.Toolbar.textBold":"Bold","SSE.Views.Toolbar.textBordersColor":"테두리 색상","SSE.Views.Toolbar.textBordersStyle":"테두리 스타일","SSE.Views.Toolbar.textBottom":"바닥: ","SSE.Views.Toolbar.textBottomBorders":"아래쪽 테두리","SSE.Views.Toolbar.textBullet":"글머리 기호","SSE.Views.Toolbar.textCellAlign":"셀 맞춤 형식 지정","SSE.Views.Toolbar.textCenterBorders":"내부 세로 테두리","SSE.Views.Toolbar.textClearPrintArea":"인쇄 영역 해제","SSE.Views.Toolbar.textClearRule":"규칙 제거","SSE.Views.Toolbar.textClockwise":"시계 방향으로 각도","SSE.Views.Toolbar.textColorScales":"색상 코드","SSE.Views.Toolbar.textCopyright":"저작권 표시","SSE.Views.Toolbar.textCounterCw":"시계 반대 방향 각도","SSE.Views.Toolbar.textCustom":"사용자 정의","SSE.Views.Toolbar.textDataBars":"데이터 막대","SSE.Views.Toolbar.textDegree":"도수 기호","SSE.Views.Toolbar.textDelLeft":"셀 왼쪽으로 시프트","SSE.Views.Toolbar.textDelPageBreak":"페이지 나누기 제거","SSE.Views.Toolbar.textDelta":"소문자 델타","SSE.Views.Toolbar.textDelUp":"셀을 위로 이동","SSE.Views.Toolbar.textDiagDownBorder":"대각선 아래쪽 테두리","SSE.Views.Toolbar.textDiagUpBorder":"대각선 위쪽 테두리","SSE.Views.Toolbar.textDirContext":"문맥","SSE.Views.Toolbar.textDirLtr":"왼쪽에서 오른쪽으로","SSE.Views.Toolbar.textDirRtl":"오른쪽에서 왼쪽으로","SSE.Views.Toolbar.textDivision":"나누기 기호","SSE.Views.Toolbar.textDollar":"달러 기호","SSE.Views.Toolbar.textDone":"완료","SSE.Views.Toolbar.textDown":"아래로","SSE.Views.Toolbar.textEditVA":"표시 영역 편집","SSE.Views.Toolbar.textEntireCol":"전체 열","SSE.Views.Toolbar.textEntireRow":"전체 행","SSE.Views.Toolbar.textEuro":"유로화","SSE.Views.Toolbar.textFewPages":"페이지","SSE.Views.Toolbar.textFillLeft":"왼쪽","SSE.Views.Toolbar.textFillRight":"오른쪽","SSE.Views.Toolbar.textFormatCellFill":"셀 배경 채우기 형식 지정","SSE.Views.Toolbar.textGreaterEqual":"크거나 같음","SSE.Views.Toolbar.textHeight":"높이","SSE.Views.Toolbar.textHideVA":"표시 영역 숨기기","SSE.Views.Toolbar.textHorizontal":"가로 텍스트","SSE.Views.Toolbar.textInfinity":"무한대","SSE.Views.Toolbar.textInsDown":"셀을 아래로 이동","SSE.Views.Toolbar.textInsideBorders":"테두리 안에","SSE.Views.Toolbar.textInsPageBreak":"페이지 나누기 삽입","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.textLessEqual":"보다 작거나 같음","SSE.Views.Toolbar.textLetterPi":"소문자 파이","SSE.Views.Toolbar.textManageRule":"관리 규칙","SSE.Views.Toolbar.textManyPages":"페이지","SSE.Views.Toolbar.textMarginsLast":"마지막 사용자 정의","SSE.Views.Toolbar.textMarginsNarrow":"좁게","SSE.Views.Toolbar.textMarginsNormal":"일반","SSE.Views.Toolbar.textMarginsWide":"넓게","SSE.Views.Toolbar.textMiddleBorders":"내부 수평 테두리","SSE.Views.Toolbar.textMoreBorders":"추가 테두리","SSE.Views.Toolbar.textMoreFormats":"기타 형식","SSE.Views.Toolbar.textMorePages":"더 많은 페이지","SSE.Views.Toolbar.textMoreSymbols":"더 많은 기호","SSE.Views.Toolbar.textNewColor":"새 사용자 지정 색 추가","SSE.Views.Toolbar.textNewRule":"새로운 규칙","SSE.Views.Toolbar.textNoBorders":"테두리 없음","SSE.Views.Toolbar.textNotEqualTo":"같지 않음","SSE.Views.Toolbar.textOneHalf":"2분의 1","SSE.Views.Toolbar.textOnePage":"페이지","SSE.Views.Toolbar.textOneQuarter":"4분의 1","SSE.Views.Toolbar.textOutBorders":"바깥쪽 테두리","SSE.Views.Toolbar.textPageMarginsCustom":"사용자 정의 여백","SSE.Views.Toolbar.textPlusMinus":"플러스 마이너스 기호","SSE.Views.Toolbar.textPortrait":"세로","SSE.Views.Toolbar.textPrint":"인쇄","SSE.Views.Toolbar.textPrintGridlines":"눈금 선 인쇄","SSE.Views.Toolbar.textPrintHeadings":"글머리 인쇄","SSE.Views.Toolbar.textPrintOptions":"인쇄 설정","SSE.Views.Toolbar.textRegistered":"등록된 서명","SSE.Views.Toolbar.textResetPageBreak":"모든 페이지 나누기 재설정","SSE.Views.Toolbar.textRight":"오른쪽 : ","SSE.Views.Toolbar.textRightBorders":"오른쪽 테두리","SSE.Views.Toolbar.textRotateDown":"텍스트 아래로 회전","SSE.Views.Toolbar.textRotateUp":"텍스트 회전","SSE.Views.Toolbar.textRtlSheet":"시트 오른쪽에서 왼쪽으로","SSE.Views.Toolbar.textScale":"크기","SSE.Views.Toolbar.textScaleCustom":"사용자 정의","SSE.Views.Toolbar.textSection":"섹션 기호","SSE.Views.Toolbar.textSelection":"현재 선택 고정","SSE.Views.Toolbar.textSeries":"시리즈","SSE.Views.Toolbar.textSetPrintArea":"인쇄영역 설정","SSE.Views.Toolbar.textShapesCombine":"결합","SSE.Views.Toolbar.textShapesFragment":"조각","SSE.Views.Toolbar.textShapesIntersect":"교차","SSE.Views.Toolbar.textShapesSubstract":"빼기","SSE.Views.Toolbar.textShapesUnion":"병합","SSE.Views.Toolbar.textShowVA":"가시 영역 표시","SSE.Views.Toolbar.textSmile":"흰 웃는 얼굴 이모티콘","SSE.Views.Toolbar.textSquareRoot":"제곱근","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.textTabDraw":"그리기","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.textTabTableDesign":"표 디자인","SSE.Views.Toolbar.textTabView":"보기","SSE.Views.Toolbar.textThisPivot":"피벗 테이블로 부터","SSE.Views.Toolbar.textThisSheet":"워크시트로 부터","SSE.Views.Toolbar.textThisTable":"표로 부터","SSE.Views.Toolbar.textTilde":"물결표","SSE.Views.Toolbar.textTop":"상위 : ","SSE.Views.Toolbar.textTopBorders":"위쪽 테두리","SSE.Views.Toolbar.textTradeMark":"상표 표시","SSE.Views.Toolbar.textUnderline":"밑줄","SSE.Views.Toolbar.textUp":"위","SSE.Views.Toolbar.textVertical":"세로 텍스트","SSE.Views.Toolbar.textWidth":"너비","SSE.Views.Toolbar.textYen":"엔화","SSE.Views.Toolbar.textZoom":"확대/축소","SSE.Views.Toolbar.tipAlignBottom":"아래쪽 정렬","SSE.Views.Toolbar.tipAlignCenter":"가운데 정렬","SSE.Views.Toolbar.tipAlignJust":"Justified","SSE.Views.Toolbar.tipAlignLeft":"왼쪽 정렬","SSE.Views.Toolbar.tipAlignMiddle":"중간 정렬","SSE.Views.Toolbar.tipAlignRight":"오른쪽 정렬","SSE.Views.Toolbar.tipAlignTop":"정렬","SSE.Views.Toolbar.tipAutofilter":"정렬 및 필터링","SSE.Views.Toolbar.tipBack":"뒤로","SSE.Views.Toolbar.tipBorders":"테두리","SSE.Views.Toolbar.tipCellStyle":"셀 스타일","SSE.Views.Toolbar.tipChangeCase":"대소문자 변경","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.tipCut":"잘라 내기","SSE.Views.Toolbar.tipDecDecimal":"자리수 줄임","SSE.Views.Toolbar.tipDecFont":"글꼴 크기 감소","SSE.Views.Toolbar.tipDeleteOpt":"셀 삭제","SSE.Views.Toolbar.tipDigStyleAccounting":"회계 표시 형식","SSE.Views.Toolbar.tipDigStyleComma":"쉼표 스타일","SSE.Views.Toolbar.tipDigStyleCurrency":"통화 스타일","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.tipHAlighOle":"수평 정렬","SSE.Views.Toolbar.tipImgAlign":"오브젝트 정렬","SSE.Views.Toolbar.tipImgGroup":"개체를 그룹화","SSE.Views.Toolbar.tipIncDecimal":"자리수 늘림","SSE.Views.Toolbar.tipIncFont":"글꼴 크기 증가","SSE.Views.Toolbar.tipInsertChart":"차트 삽입","SSE.Views.Toolbar.tipInsertChartRecommend":"추천 차트 삽입","SSE.Views.Toolbar.tipInsertChartSpark":"차트 또는 스파크 라인 삽입","SSE.Views.Toolbar.tipInsertEquation":"수식 삽입","SSE.Views.Toolbar.tipInsertHorizontalText":"가로 텍스트 상자 삽입","SSE.Views.Toolbar.tipInsertHyperlink":"하이퍼 링크 추가","SSE.Views.Toolbar.tipInsertImage":"그림 삽입","SSE.Views.Toolbar.tipInsertOpt":"셀 삽입","SSE.Views.Toolbar.tipInsertShape":"도형 삽입","SSE.Views.Toolbar.tipInsertSlicer":"슬라이서추가","SSE.Views.Toolbar.tipInsertSmartArt":"SmartArt 삽입","SSE.Views.Toolbar.tipInsertSpark":"스파크라인 삽입","SSE.Views.Toolbar.tipInsertSymbol":"기호 삽입","SSE.Views.Toolbar.tipInsertTable":"표 삽입","SSE.Views.Toolbar.tipInsertText":"텍스트 상자 삽입","SSE.Views.Toolbar.tipInsertTextart":"텍스트 아트 삽입","SSE.Views.Toolbar.tipInsertVerticalText":"세로 텍스트 상자 삽입","SSE.Views.Toolbar.tipMerge":"병합하고 가운데 맞춤","SSE.Views.Toolbar.tipNone":"없음","SSE.Views.Toolbar.tipNumFormat":"숫자 형식","SSE.Views.Toolbar.tipPageBreak":"인쇄물에서 다음 페이지가 시작되길 원하는 위치에 페이지 나누기를 추가하세요.","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.tipPrintQuick":"빠른 인쇄","SSE.Views.Toolbar.tipPrintTitles":"제목 인쇄","SSE.Views.Toolbar.tipRedo":"Redo","SSE.Views.Toolbar.tipReplace":"바꾸기","SSE.Views.Toolbar.tipRtlSheet":"첫 번째 열이 오른쪽에 오도록 시트 방향을 전환합니다","SSE.Views.Toolbar.tipSave":"저장","SSE.Views.Toolbar.tipSaveCoauth":"다른 사용자가 볼 수 있도록 변경 사항을 저장하십시오.","SSE.Views.Toolbar.tipScale":"크기에 맞게 확대/축소","SSE.Views.Toolbar.tipSelectAll":"모두 선택","SSE.Views.Toolbar.tipSendBackward":"뒤로 보내기","SSE.Views.Toolbar.tipSendForward":"앞으로 보내기","SSE.Views.Toolbar.tipShapesMerge":"도형 병합","SSE.Views.Toolbar.tipSynchronize":"다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.","SSE.Views.Toolbar.tipTextDir":"방향","SSE.Views.Toolbar.tipTextDirection":"텍스트 방향","SSE.Views.Toolbar.tipTextFormatting":"더 많은 텍스트 서식 지정 도구","SSE.Views.Toolbar.tipTextOrientation":"Orientation","SSE.Views.Toolbar.tipUndo":"실행 취소","SSE.Views.Toolbar.tipVAlighOle":"수직 정렬","SSE.Views.Toolbar.tipVisibleArea":"가시 영역","SSE.Views.Toolbar.tipWrap":"텍스트 줄 바꾸기","SSE.Views.Toolbar.txtAccounting":"회계","SSE.Views.Toolbar.txtAdditional":"Additional","SSE.Views.Toolbar.txtAscending":"오름차순","SSE.Views.Toolbar.txtAutosumTip":"합계","SSE.Views.Toolbar.txtCellStyle":"셀 스타일","SSE.Views.Toolbar.txtClearAll":"모두","SSE.Views.Toolbar.txtClearComments":"코멘트","SSE.Views.Toolbar.txtClearFilter":"필터선택 초기화","SSE.Views.Toolbar.txtClearFormat":"형식","SSE.Views.Toolbar.txtClearFormula":"함수","SSE.Views.Toolbar.txtClearHyper":"하이퍼 링크","SSE.Views.Toolbar.txtClearText":"텍스트","SSE.Views.Toolbar.txtCurrency":"통화","SSE.Views.Toolbar.txtCustom":"Custom","SSE.Views.Toolbar.txtDate":"날짜","SSE.Views.Toolbar.txtDateLong":"확장된 날짜 형식","SSE.Views.Toolbar.txtDateShort":"간단한 날짜 형식","SSE.Views.Toolbar.txtDateTime":"날짜 및 시간","SSE.Views.Toolbar.txtDescending":"내림차순","SSE.Views.Toolbar.txtDollar":"$ 영어 (미국)","SSE.Views.Toolbar.txtEuro":"€ 유로 (€123)","SSE.Views.Toolbar.txtExp":"지수","SSE.Views.Toolbar.txtFillNum":"채우기","SSE.Views.Toolbar.txtFilter":"필터","SSE.Views.Toolbar.txtFormula":"함수 삽입","SSE.Views.Toolbar.txtFraction":"분수","SSE.Views.Toolbar.txtFranc":"CHF Swiss franc","SSE.Views.Toolbar.txtGeneral":"일반","SSE.Views.Toolbar.txtInteger":"정수","SSE.Views.Toolbar.txtManageRange":"이름 관리자","SSE.Views.Toolbar.txtMergeAcross":"Merge Across","SSE.Views.Toolbar.txtMergeCells":"셀 병합","SSE.Views.Toolbar.txtMergeCenter":"병합 및 센터","SSE.Views.Toolbar.txtNamedRange":"Named Ranges","SSE.Views.Toolbar.txtNewRange":"이름 정의","SSE.Views.Toolbar.txtNoBorders":"테두리 없음","SSE.Views.Toolbar.txtNumber":"숫자","SSE.Views.Toolbar.txtPasteRange":"붙여 넣기 이름","SSE.Views.Toolbar.txtPercentage":"백분율","SSE.Views.Toolbar.txtPound":"£ 영어 (영국)","SSE.Views.Toolbar.txtRouble":"₽ 러시아어","SSE.Views.Toolbar.txtScientific":"지수","SSE.Views.Toolbar.txtSearch":"검색","SSE.Views.Toolbar.txtSort":"정렬","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":"¥ 일본어","SSE.Views.Top10FilterDialog.textType":"표시","SSE.Views.Top10FilterDialog.txtBottom":"Bottom","SSE.Views.Top10FilterDialog.txtBy":"~로","SSE.Views.Top10FilterDialog.txtItems":"항목","SSE.Views.Top10FilterDialog.txtPercent":"백분율","SSE.Views.Top10FilterDialog.txtSum":"합계","SSE.Views.Top10FilterDialog.txtTitle":"Top 10 AutoFilter","SSE.Views.Top10FilterDialog.txtTop":"Top","SSE.Views.Top10FilterDialog.txtValueTitle":"상위 10","SSE.Views.ValueFieldSettingsDialog.textNext":"(다음)","SSE.Views.ValueFieldSettingsDialog.textNumFormat":"숫자 형식","SSE.Views.ValueFieldSettingsDialog.textPrev":"(이전)","SSE.Views.ValueFieldSettingsDialog.textTitle":"값 필드 설정","SSE.Views.ValueFieldSettingsDialog.txtAverage":"평균","SSE.Views.ValueFieldSettingsDialog.txtBaseField":"기본 필드","SSE.Views.ValueFieldSettingsDialog.txtBaseItem":"기본 항목","SSE.Views.ValueFieldSettingsDialog.txtByField":"%2의 %1","SSE.Views.ValueFieldSettingsDialog.txtCount":"계산","SSE.Views.ValueFieldSettingsDialog.txtCountNums":"수를 집계","SSE.Views.ValueFieldSettingsDialog.txtCustomName":"사용자 정의 이름","SSE.Views.ValueFieldSettingsDialog.txtDifference":"차이","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.txtPercentOfGrand":"총계의 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParent":"상위 합계의 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentCol":"상위 열 합계의 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentRow":"상위 행 합계의 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow":"전체 백분율","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRunTotal":"누계 합계 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal":"% 행","SSE.Views.ValueFieldSettingsDialog.txtProduct":"제품","SSE.Views.ValueFieldSettingsDialog.txtRankAscending":"오름차순으로 순위 매기기","SSE.Views.ValueFieldSettingsDialog.txtRankDescending":"내림차순으로 순위 매기기","SSE.Views.ValueFieldSettingsDialog.txtRunTotal":"총실행","SSE.Views.ValueFieldSettingsDialog.txtShowAs":"표시된 값은","SSE.Views.ValueFieldSettingsDialog.txtSourceName":"소스 이름:","SSE.Views.ValueFieldSettingsDialog.txtStdDev":"표준편차","SSE.Views.ValueFieldSettingsDialog.txtStdDevp":"표준편차","SSE.Views.ValueFieldSettingsDialog.txtSum":"합계","SSE.Views.ValueFieldSettingsDialog.txtSummarize":"값 필드를 다음과 같이 요약:","SSE.Views.ValueFieldSettingsDialog.txtVar":"표본분산","SSE.Views.ValueFieldSettingsDialog.txtVarp":"분산","SSE.Views.ViewManagerDlg.closeButtonText":"닫기","SSE.Views.ViewManagerDlg.guestText":"게스트","SSE.Views.ViewManagerDlg.lockText":"잠김","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.textViews":"시트 표시","SSE.Views.ViewManagerDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.ViewManagerDlg.txtTitle":"시트 표시 관리자","SSE.Views.ViewManagerDlg.warnDeleteAnotherView":"이 시트 보기를 삭제하시겠습니까?","SSE.Views.ViewManagerDlg.warnDeleteView":"현재 활성화된 보기 '%1'을(를) 삭제하려고 합니다.
이 보기를 닫고 삭제하시겠습니까?","SSE.Views.ViewTab.capBtnFreeze":"창 고정","SSE.Views.ViewTab.capBtnSheetView":"시트보기","SSE.Views.ViewTab.textAlwaysShowToolbar":"항상 도구 모음 표시","SSE.Views.ViewTab.textClose":"닫기","SSE.Views.ViewTab.textCombineSheetAndStatusBars":"상태 표시 줄 숨기기","SSE.Views.ViewTab.textCreate":"새로만들기","SSE.Views.ViewTab.textDefault":"기본","SSE.Views.ViewTab.textFill":"채우기","SSE.Views.ViewTab.textFormula":"수식 입력줄","SSE.Views.ViewTab.textFreezeCol":"첫 번째 열 고정","SSE.Views.ViewTab.textFreezeRow":"첫 번째 행 고정","SSE.Views.ViewTab.textGridlines":"눈금선","SSE.Views.ViewTab.textHeadings":"제목","SSE.Views.ViewTab.textInterfaceTheme":"인터페이스 테마","SSE.Views.ViewTab.textLeftMenu":"왼쪽 패널","SSE.Views.ViewTab.textLine":"선","SSE.Views.ViewTab.textMacros":"매크로","SSE.Views.ViewTab.textManager":"보기 관리자","SSE.Views.ViewTab.textPauseMacro":"녹화 일시 중지","SSE.Views.ViewTab.textRecMacro":"매크로 기록","SSE.Views.ViewTab.textResumeMacro":"녹화 재개","SSE.Views.ViewTab.textRightMenu":"오른쪽 패널","SSE.Views.ViewTab.textShowFrozenPanesShadow":"틀 고정 음영 표시","SSE.Views.ViewTab.textStopMacro":"녹화 중지","SSE.Views.ViewTab.textTabStyle":"탭 스타일","SSE.Views.ViewTab.textUnFreeze":"창 고정 취소","SSE.Views.ViewTab.textZeros":"0표시","SSE.Views.ViewTab.textZoom":"확대/축소","SSE.Views.ViewTab.tipClose":"워크 시트 닫기","SSE.Views.ViewTab.tipCreate":"시트보기를 만들기","SSE.Views.ViewTab.tipFreeze":"창 고정","SSE.Views.ViewTab.tipInterfaceTheme":"인터페이스 테마","SSE.Views.ViewTab.tipMacros":"매크로","SSE.Views.ViewTab.tipPauseMacro":"녹화 일시 중지","SSE.Views.ViewTab.tipRecMacro":"매크로 기록","SSE.Views.ViewTab.tipResumeMacro":"녹화 재개","SSE.Views.ViewTab.tipSheetView":"시트보기","SSE.Views.ViewTab.tipStopMacro":"녹화 중지","SSE.Views.ViewTab.tipViewNormal":"문서를 일반 보기로 표시하세요.","SSE.Views.ViewTab.tipViewPageBreak":"문서가 인쇄될 때 페이지 나누기가 적용되는 곳을 확인하세요.","SSE.Views.ViewTab.txtViewNormal":"표준","SSE.Views.ViewTab.txtViewPageBreak":"페이지 나누기 미리보기","SSE.Views.WatchDialog.closeButtonText":"닫기","SSE.Views.WatchDialog.textAdd":"모니터링 설정 추가","SSE.Views.WatchDialog.textBook":"문서","SSE.Views.WatchDialog.textCell":"셀","SSE.Views.WatchDialog.textDelete":"모니터링 삭제","SSE.Views.WatchDialog.textDeleteAll":"모두 삭제","SSE.Views.WatchDialog.textFormula":"수식","SSE.Views.WatchDialog.textName":"이름","SSE.Views.WatchDialog.textSheet":"시트","SSE.Views.WatchDialog.textValue":"값","SSE.Views.WatchDialog.txtTitle":"모니터링 창","SSE.Views.WBProtection.hintAllowRanges":"허용 범위 편집","SSE.Views.WBProtection.hintProtectRange":"보호 범위","SSE.Views.WBProtection.hintProtectSheet":"시트 보호","SSE.Views.WBProtection.hintProtectWB":"통합 문서 보호","SSE.Views.WBProtection.txtAllowRanges":"허용 범위 편집","SSE.Views.WBProtection.txtHiddenFormula":"수식 숨기기","SSE.Views.WBProtection.txtLockedCell":"셀 잠금","SSE.Views.WBProtection.txtLockedShape":"잠긴 도형","SSE.Views.WBProtection.txtLockedText":"텍스트 잠금","SSE.Views.WBProtection.txtProtectRange":"보호 범위","SSE.Views.WBProtection.txtProtectSheet":"시트 보호","SSE.Views.WBProtection.txtProtectWB":"통합 문서 보호","SSE.Views.WBProtection.txtSheetUnlockDescription":"양식 보호를 해제하려면 비밀번호를 입력하세요.","SSE.Views.WBProtection.txtSheetUnlockTitle":"시트 보호해제","SSE.Views.WBProtection.txtWBUnlockDescription":"통합 문서 보호를 해제하려면 비밀번호를 입력하세요.","SSE.Views.WBProtection.txtWBUnlockTitle":"통합 문서 보호 잠금 해제"} \ No newline at end of file +{"cancelButtonText":"취소","Common.Controllers.Chat.notcriticalErrorTitle":"경고","Common.Controllers.Desktop.hintBtnHome":"메인 창 표시","Common.Controllers.Desktop.itemCreateFromTemplate":"템플릿에서 만들기","Common.Controllers.ExternalLinks.textAddExternalData":"외부 원본 링크가 추가되었습니다. 이러한 링크는 [데이터] 탭에서 업데이트할 수 있습니다.","Common.Controllers.ExternalLinks.textContinue":"계속","Common.Controllers.ExternalLinks.textDontUpdate":"업데이트하지 않음","Common.Controllers.ExternalLinks.textTurnOff":"자동 업데이트 해제","Common.Controllers.ExternalLinks.textUpdate":"업데이트","Common.Controllers.ExternalLinks.txtErrorExternalLink":"오류: 업데이트에 실패했습니다.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdate":"이 통합 문서에는 자동으로 업데이트되는 외부 소스에 대한 링크가 포함되어 있습니다. 이는 안전하지 않을 수 있습니다.

신뢰할 수 있는 경우 계속을 눌러 주세요.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdateDE":"이 문서에는 자동으로 업데이트되는 외부 원본 링크가 포함되어 있습니다. 안전하지 않을 수 있습니다.

링크를 신뢰하면 계속을 누르세요.","Common.Controllers.ExternalLinks.warnUpdateExternalAutoupdatePE":"이 프레젠테이션에는 자동으로 업데이트되는 외부 원본 링크가 포함되어 있습니다. 안전하지 않을 수 있습니다.

링크를 신뢰하면 계속을 누르세요.","Common.Controllers.ExternalLinks.warnUpdateExternalData":"이 통합 문서에는 하나 이상의 안전하지 않을 수 있는 외부 소스로의 링크가 포함되어 있습니다.
만약 이 링크를 신뢰한다면 최신 데이터를 얻기 위해 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataDE":"이 문서에는 하나 이상의 외부 원본 링크가 포함되어 있으며 안전하지 않을 수 있습니다.
링크를 신뢰하면 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.ExternalLinks.warnUpdateExternalDataPE":"이 프레젠테이션에는 하나 이상의 외부 원본 링크가 포함되어 있으며 안전하지 않을 수 있습니다.
링크를 신뢰하면 최신 데이터를 가져오도록 업데이트하세요.","Common.Controllers.History.notcriticalErrorTitle":"경고","Common.Controllers.History.txtErrorLoadHistory":"기록 로드 실패","Common.Controllers.Plugins.helpMoveMacros":"매크로 작업을 시작하려면 보기 탭으로 전환하세요.","Common.Controllers.Plugins.helpMoveMacrosHeader":"이동된 매크로 버튼","Common.Controllers.Plugins.helpUseMacros":"매크로 버튼은 여기에 있습니다","Common.Controllers.Plugins.helpUseMacrosHeader":"매크로 접근 권한이 업데이트되었습니다","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"플러그인이 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 이곳에서 사용할 수 있습니다.","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}이(가) 성공적으로 설치되었습니다. 모든 백그라운드 플러그인은 여기에서 접근할 수 있습니다.","Common.Controllers.Plugins.textRunInstalledPlugins":"설치된 플러그인 실행","Common.Controllers.Plugins.textRunPlugin":"플러그인 실행","Common.Controllers.Shortcuts.txtDescriptionAddLineBreak":"그래픽 개체 내에 텍스트를 입력할 때 새 단락을 시작하지 않고 줄 바꿈을 추가합니다.","Common.Controllers.Shortcuts.txtDescriptionAutoFill":"이 단축키는 해당 열의 기존 값 바로 위 또는 아래에 있는 빈 셀에서 사용할 수 있습니다. 기존 값이 포함된 드롭다운 목록이 나타납니다. 목록에서 원하는 텍스트 값을 선택하여 빈 셀을 채우세요.","Common.Controllers.Shortcuts.txtDescriptionBold":"선택한 텍스트 조각의 글꼴을 평소보다 더 진하고 굵게 만들거나 굵은 서식을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionCellAddSeparator":"활성 셀 내부에 구분선을 삽입하십시오.","Common.Controllers.Shortcuts.txtDescriptionCellCurrencyFormat":"통화 형식을 소수점 두 자리까지 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellDateFormat":"날짜 형식을 일, 월, 연도로 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellEditorSwitchReference":"수식 입력줄에서 셀에 대한 참조 형식을 절대 참조 또는 상대 참조로 변경합니다.","Common.Controllers.Shortcuts.txtDescriptionCellEntryCancel":"선택한 셀 또는 수식 입력줄의 입력을 취소합니다.","Common.Controllers.Shortcuts.txtDescriptionCellExponentialFormat":"지수 형식(소수점 둘째 자리까지)을 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellGeneralFormat":"일반적인 숫자 형식을 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellInsertDate":"활성화된 셀에 오늘 날짜를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionCellInsertSumFunction":"선택한 셀에 SUM 함수를 삽입합니다.","Common.Controllers.Shortcuts.txtDescriptionCellInsertTime":"현재 시간을 활성 셀에 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellDown":"아래쪽 셀로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellLeft":"왼쪽 칸으로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellRight":"오른쪽 칸으로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveActiveCellUp":"위쪽 셀로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomEdge":"보이는 데이터 영역의 아래쪽 가장자리에 셀 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveBottomNonBlank":"워크시트에서 아래 데이터로 다음 셀의 윤곽선을 지정하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveDown":"현재 선택된 셀 바로 아래에 셀의 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveEndSpreadsheet":"워크시트에서 데이터가 있는 가장 아래쪽 행의 가장 오른쪽 열에 있는 오른쪽 아래 셀을 윤곽선으로 표시합니다. 커서가 수식 입력줄에 있는 경우 텍스트 끝에 커서가 배치됩니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstCell":"A1 셀의 윤곽선을 그리세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveFirstColumn":"현재 행의 A열에 있는 셀을 윤곽선으로 표시합니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeft":"현재 선택된 셀의 왼쪽에 있는 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveLeftNonBlank":"워크시트에서 왼쪽에 있는 데이터가 있는 다음 셀을 윤곽선으로 표시하세요.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRight":"현재 선택된 셀의 오른쪽에 있는 셀을 윤곽선으로 표시합니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveRightNonBlank":"워크시트에서 오른쪽에 있는 데이터가 있는 다음 셀의 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopEdge":"보이는 데이터 영역의 위쪽 가장자리에 셀 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveTopNonBlank":"워크시트에서 위의 데이터가 있는 다음 셀의 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellMoveUp":"현재 선택된 셀 바로 위에 있는 셀의 윤곽선을 그립니다.","Common.Controllers.Shortcuts.txtDescriptionCellNumberFormat":"소수점 두 자리, 천 단위 구분 기호, 음수 값의 경우 마이너스 기호(-)를 사용하여 숫자 형식을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionCellPercentFormat":"소수점 이하 자릿수 없이 백분율 형식을 적용하세요.","Common.Controllers.Shortcuts.txtDescriptionCellStartNewLine":"셀 같은 것에 새 줄을 시작하세요.","Common.Controllers.Shortcuts.txtDescriptionCellTimeFormat":"시간 형식은 시와 분, 그리고 오전/오후(AM 또는 PM)로 지정하십시오.","Common.Controllers.Shortcuts.txtDescriptionCenterPara":"단락의 정렬을 가운데 정렬과 왼쪽 정렬로 전환합니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionClearActiveCellContent":"셀 서식이나 주석에 영향을 주지 않고 활성 셀의 내용(데이터 및 수식)을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionClearSelectedCellsContent":"선택한 모든 셀의 내용(데이터 및 수식)을 셀 서식이나 주석에 영향을 주지 않고 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionCloseFile":"현재 스프레드시트 창을 닫으세요.","Common.Controllers.Shortcuts.txtDescriptionCloseMenu":"메뉴 또는 모달 창을 닫습니다. 서식 복사를 일시 중지합니다. 도형 추가 모드를 초기화합니다. 셀 잘라내기/복사 시 클립보드를 지웁니다. 붙여넣기 옵션 버튼을 숨깁니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveDown":"선택한 셀이나 수식 입력줄에 입력을 완료한 다음, 아래 셀로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveLeft":"선택한 셀이나 수식 입력줄에 입력을 완료한 다음 왼쪽 셀로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveRight":"선택한 셀이나 수식 입력줄에 입력을 완료한 다음 오른쪽 셀로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveUp":"선택한 셀에 입력을 완료하고 위쪽 셀로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryStay":"선택한 셀이나 수식 입력줄에 입력을 완료하고 해당 상태를 유지하세요.","Common.Controllers.Shortcuts.txtDescriptionCopy":"선택한 데이터/그래픽을 컴퓨터 클립보드 메모리에 저장합니다. 복사된 데이터는 나중에 동일한 워크시트의 다른 위치, 다른 스프레드시트 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionCut":"선택한 데이터/그래픽을 잘라내어 컴퓨터 클립보드 메모리에 저장합니다. 잘라낸 데이터는 나중에 같은 워크시트의 다른 위치, 다른 스프레드시트 또는 다른 프로그램에 삽입할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 줄입니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar":"수식 입력줄 또는 셀 편집 모드가 활성화된 선택된 셀에서 왼쪽에 있는 문자를 하나 삭제합니다. 선택 영역을 제거합니다. 또한 활성 셀의 내용도 삭제됩니다. 그래픽 개체의 텍스트에도 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord":"커서 왼쪽에 있는 단어를 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar":"수식 입력줄 또는 셀 편집 모드가 활성화된 선택된 셀에서 오른쪽에 있는 문자를 한 글자 삭제합니다. 선택 영역을 제거합니다. 또한 셀 서식이나 주석에 영향을 주지 않고 선택된 셀의 내용(데이터 및 수식)을 삭제합니다. 그래픽 개체의 텍스트에도 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord":"커서 오른쪽에 있는 단어를 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionDownloadAs":"'다운로드 형식' 패널을 열어 현재 편집 중인 스프레드시트를 지원되는 형식 중 하나로 컴퓨터 하드 디스크 드라이브에 저장하세요.","Common.Controllers.Shortcuts.txtDescriptionDrawingAddTab":"객체 내용에 탭 문자를 추가하세요.","Common.Controllers.Shortcuts.txtDescriptionEditChart":"차트 제목이 선택되면 텍스트를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditOpenCellEditor":"활성 셀을 편집하고 셀 내용의 끝에 삽입 포인트를 놓습니다. 셀 편집 기능이 꺼져 있으면 삽입 포인트가 수식 입력줄로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionEditRedo":"최근 취소한 작업을 반복합니다.","Common.Controllers.Shortcuts.txtDescriptionEditSelectAll":"(커서가 도형 내용 안에 있을 때) 도형 내용 전체를 선택합니다. (커서가 셀 내용 안에 있을 때) 셀 내용 전체를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditShape":"도형을 선택한 후 내용이 없으면 내용을 생성하고 커서를 해당 줄의 시작 부분으로 이동합니다. 내용이 비어 있으면 커서를 해당 내용으로 이동하고, 그렇지 않으면 전체 내용을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionEditUndo":"가장 최근에 수행한 작업을 되돌립니다.","Common.Controllers.Shortcuts.txtDescriptionEnDash":"커서 오른쪽에 하이픈(-)을 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionEndParagraph":"그래픽 개체 내에 텍스트를 입력할 때는 현재 단락을 끝내고 새 단락을 시작하십시오.","Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder":"방정식 인수에 새 자리 표시자를 추가합니다.","Common.Controllers.Shortcuts.txtDescriptionExitAddingShapesMode":"도형 추가 모드를 종료합니다. 선택 항목을 단계적으로 제거합니다(예: 그룹 내 도형의 내용이 선택된 경우 커서가 먼저 내용에서 제거된 다음 도형에서, 마지막으로 그룹에서 제거됩니다).","Common.Controllers.Shortcuts.txtDescriptionFillSelectedCellRange":"선택한 셀 범위를 현재 입력값으로 채웁니다. 셀 범위를 선택하고 활성 셀에 데이터를 입력한 다음 지정된 키를 누르면 선택한 모든 셀이 입력한 데이터로 채워집니다.","Common.Controllers.Shortcuts.txtDescriptionFormatAsTableTemplate":"선택한 셀 범위에 표 템플릿을 적용합니다.","Common.Controllers.Shortcuts.txtDescriptionFormatTableAddSummaryRow":"서식이 지정된 표에 요약 행을 추가합니다.","Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize":"선택한 텍스트 조각의 글꼴 크기를 1포인트 늘립니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink":"웹 주소로 이동할 수 있는 링크를 삽입하세요.","Common.Controllers.Shortcuts.txtDescriptionItalic":"선택한 텍스트 조각의 글꼴을 기울임체로 만들고 약간 기울이거나, 기울임체 서식을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionJustifyPara":"단락의 정렬 방식을 양쪽 정렬과 왼쪽 정렬 사이에서 전환합니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionLeftPara":"단락을 왼쪽으로 정렬합니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningLine":"현재 편집 중인 줄의 시작 부분에 커서를 놓으세요.","Common.Controllers.Shortcuts.txtDescriptionMoveBeginningText":"셀이나 도형의 텍스트 맨 처음에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterLeft":"커서를 왼쪽으로 한 글자 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveCharacterRight":"커서를 오른쪽으로 한 글자 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineDown":"커서를 한 줄 아래로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveCursorLineUp":"커서를 한 줄 위로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveEndLine":"현재 편집 중인 줄의 끝에 커서를 놓으세요.","Common.Controllers.Shortcuts.txtDescriptionMoveEndText":"셀이나 도형의 텍스트 맨 끝에 커서를 놓습니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusNextObject":"현재 선택된 개체 다음으로 선택을 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveFocusPreviousObject":"현재 선택된 개체 바로 이전의 개체로 선택을 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepBottom":"키보드 화살표 키를 사용하여 선택한 개체를 큰 단계만큼 아래로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepLeft":"키보드 화살표 키를 사용하여 선택한 개체를 왼쪽으로 크게 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepRight":"키보드의 화살표 키를 사용하여 선택한 개체를 오른쪽으로 크게 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeBigStepUp":"키보드 화살표 키를 사용하여 선택한 개체를 한 칸씩 위로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepBottom":"지정된 키를 누른 상태에서 키보드 화살표 키를 사용하여 선택한 개체를 한 번에 1픽셀씩 아래로 이동합니다.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepLeft":"지정된 키를 누른 상태에서 키보드 화살표 키를 사용하여 선택한 개체를 왼쪽으로 1픽셀씩 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepRight":"지정된 키를 누른 상태에서 키보드 화살표 키를 사용하여 선택한 개체를 오른쪽으로 1픽셀씩 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveShapeLittleStepUp":"지정된 키를 누른 상태에서 키보드 화살표 키를 사용하여 선택한 개체를 한 번에 1픽셀씩 위로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveWordLeft":"커서를 왼쪽으로 한 단어 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionMoveWordRight":"커서를 오른쪽으로 한 단어 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionNavigateNextControl":"모달 대화 상자에서 컨트롤 사이를 이동하여 다음 컨트롤에 초점을 맞춥니다.","Common.Controllers.Shortcuts.txtDescriptionNavigatePreviousControl":"모달 대화 상자에서 컨트롤 간을 이동하여 이전 컨트롤에 포커스를 맞춥니다.","Common.Controllers.Shortcuts.txtDescriptionNextFileTab":"데스크톱 편집기에서는 다음 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환하세요.","Common.Controllers.Shortcuts.txtDescriptionNextWorksheet":"스프레드시트의 다음 시트로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel":"온라인 편집기에서 채팅 패널을 열고 메시지를 보내세요.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentField":"댓글을 입력할 수 있는 데이터 입력란을 여세요.","Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel":"댓글 패널을 열어 직접 댓글을 작성하거나 다른 사용자의 댓글에 답글을 달아보세요.","Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu":"선택한 요소의 상황별 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenDeleteCellsWindow":"현재 스프레드시트에서 셀을 삭제하는 대화 상자를 엽니다. 이때 왼쪽으로 이동, 위로 이동, 전체 행 또는 전체 열 삭제와 같은 추가 매개변수를 지정할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile":"기존 파일을 선택할 수 있는 표준 대화 상자를 엽니다. 이 대화 상자에서 파일을 선택하고 열기를 클릭하면 해당 파일이 데스크톱 편집기의 새 탭이나 창에서 열립니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel":"파일 패널을 열면 현재 스프레드시트를 저장, 다운로드, 인쇄하거나, 정보를 보거나, 새 스프레드시트를 만들거나 기존 스프레드시트를 열거나, 스프레드시트 편집기의 도움말 메뉴 또는 고급 설정에 액세스할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFilterWindow":"필터가 적용된 열의 머리글에서 필터 창을 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu":"찾은 문자를 하나 이상 바꾸려면 바꾸기 필드가 있는 찾기 및 바꾸기 메뉴(패널)를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog":"필요한 문자가 포함된 셀을 검색하려면 찾기 대화 상자를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu":"스프레드시트 편집기의 도움말 메뉴를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertCellsWindow":"현재 스프레드시트에 새 셀을 삽입하는 대화 상자를 엽니다. 이때 오른쪽으로 이동, 아래로 이동, 전체 행 또는 전체 열 삽입과 같은 추가 매개변수를 지정할 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionOpenInsertFunctionDialog":"제공된 목록에서 선택하여 새 함수 삽입 대화 상자를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionOpenNumberFormatDialog":"숫자 형식 대화 상자를 엽니다.","Common.Controllers.Shortcuts.txtDescriptionPaste":"컴퓨터 클립보드 메모리에서 이전에 복사/잘라낸 데이터/그래픽을 현재 커서 위치에 삽입합니다. 데이터는 동일한 워크시트, 다른 스프레드시트 또는 다른 프로그램에서 복사한 것일 수 있습니다.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaAllFormatting":"데이터 서식을 모두 포함하여 수식을 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaColumnWidth":"데이터 서식을 모두 유지한 채 수식을 붙여넣고 원본 열의 너비를 셀 범위로 설정합니다.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNoBorders":"셀 테두리를 제외한 모든 데이터 서식을 유지한 채 수식을 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteFormulaNumberFormat":"숫자에 서식이 적용된 상태로 수식을 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteLink":"현재 포털(온라인 편집기) 내의 다른 스프레드시트 또는 로컬 파일(데스크톱 편집기)에 있는 셀 또는 셀 범위에 외부 링크를 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormatting":"셀 내용은 붙여넣지 않고 셀 서식만 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyFormula":"데이터 서식을 붙여넣지 않고 수식을 붙여넣습니다.","Common.Controllers.Shortcuts.txtDescriptionPasteOnlyValue":"Paste the formula results without pasting the data formatting.","Common.Controllers.Shortcuts.txtDescriptionPasteValueAllFormatting":"데이터 서식을 모두 유지한 채 수식 결과를 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPasteValueNumberFormat":"숫자 서식이 적용된 상태로 수식 결과를 붙여넣으세요.","Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab":"데스크톱 편집기에서는 이전 파일 탭으로, 온라인 편집기에서는 브라우저 탭으로 전환하세요.","Common.Controllers.Shortcuts.txtDescriptionPreviousWorksheet":"스프레드시트에서 이전 시트로 이동하세요.","Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint":"사용 가능한 프린터 중 하나를 사용하여 스프레드시트를 인쇄하거나 파일로 저장하세요.","Common.Controllers.Shortcuts.txtDescriptionRecalculateActiveSheet":"현재 워크시트를 다시 계산합니다.","Common.Controllers.Shortcuts.txtDescriptionRecalculateAll":"통합 문서 전체를 다시 계산합니다.","Common.Controllers.Shortcuts.txtDescriptionRefreshAllPivots":"모든 피벗 테이블을 업데이트합니다.","Common.Controllers.Shortcuts.txtDescriptionRefreshSelectedPivots":"이전에 선택한 피벗 테이블을 업데이트합니다.","Common.Controllers.Shortcuts.txtDescriptionRemoveGraphicalObject":"그래픽 개체를 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionRightPara":"단락의 정렬 방향을 오른쪽 정렬과 왼쪽 정렬로 전환합니다. 그래픽 개체 내의 텍스트에만 적용됩니다.","Common.Controllers.Shortcuts.txtDescriptionSave":"스프레드시트 편집기로 현재 편집 중인 스프레드시트의 모든 변경 사항을 저장합니다. 활성 파일은 현재 파일 이름, 위치 및 파일 형식으로 저장됩니다.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningLine":"커서 위치부터 현재 줄의 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningText":"커서 위치에서 셀 또는 도형의 텍스트 시작 부분까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectBeginningWorksheet":"현재 선택된 셀부터 워크시트 시작 부분까지의 범위를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterLeft":"커서 위치의 왼쪽에 있는 문자를 하나 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectCharacterRight":"커서 위치 바로 오른쪽에 있는 문자를 하나 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectColumn":"워크시트에서 열 전체를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorBeginningRow":"커서 위치부터 현재 행의 시작 부분까지의 영역을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectCursorEndRow":"커서 위치부터 현재 행의 끝까지의 영역을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectDownOneScreen":"활성 셀에서 한 화면 아래의 모든 셀을 포함하도록 선택 범위를 확장합니다. 이전에 선택한 범위의 열에 있는 모든 셀이 선택됩니다.","Common.Controllers.Shortcuts.txtDescriptionSelectEndLine":"커서 위치부터 현재 줄의 끝까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectEndText":"셀 또는 도형에서 커서 위치부터 텍스트 끝까지 텍스트 조각을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectFirstColumn":"선택 범위를 첫 번째 열(A)까지 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLastUsedCell":"현재 선택된 셀부터 워크시트에서 마지막으로 사용한 셀(데이터가 있는 가장 오른쪽 열의 가장 아래 행)까지의 영역을 선택합니다. 커서가 수식 입력줄에 있는 경우, 수식 입력줄의 높이는 변경하지 않고 커서 위치부터 끝까지의 모든 텍스트가 선택됩니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineDown":"커서를 한 줄 아래로 이동하여 이전 커서 위치와 현재 커서 위치 사이의 모든 기호를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectLineUp":"커서를 한 줄 위로 이동하여 이전 커서 위치와 현재 커서 위치 사이의 모든 기호를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankDown":"활성 셀에서 아래쪽 같은 열에 있는 가장 가까운 비어 있지 않은 셀까지 선택 영역을 확장합니다. 다음 셀이 비어 있으면 그 다음 비어 있지 않은 셀까지 선택 영역을 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankRight":"활성 셀의 오른쪽에 있는 같은 행의 가장 가까운 비어 있지 않은 셀까지 선택 영역을 확장합니다. 다음 셀이 비어 있으면 그 다음 비어 있지 않은 셀까지 선택 영역을 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNearestNonblankUp":"활성 셀에서 위쪽 같은 열에 있는 가장 가까운 비어 있지 않은 셀까지 선택 영역을 확장합니다. 다음 셀이 비어 있으면 그 다음 비어 있지 않은 셀까지 선택 영역을 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankDown":"활성 셀에서 바로 아래에 있는 비어 있지 않은 셀 또는 보이는 영역의 가장자리까지 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankLeft":"활성 셀의 왼쪽에 있는 다음 비어 있지 않은 셀 또는 보이는 영역의 가장자리까지 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankRight":"활성 셀의 오른쪽에 있는 다음 비어 있지 않은 셀 또는 표시되는 영역의 가장자리까지 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNextNonblankUp":"활성 셀 바로 위쪽의 비어 있지 않은 셀 또는 보이는 영역의 가장자리까지 셀을 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectNonblankLeft":"선택 영역을 왼쪽의 비어 있지 않은 셀까지 확장합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellDown":"아래쪽 셀 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellLeft":"왼쪽의 셀 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellRight":"오른쪽 셀 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectOneCellUp":"위쪽 셀 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectRow":"워크시트에서 행 전체를 선택합니다.","Common.Controllers.Shortcuts.txtDescriptionSelectUpOneScreen":"활성 셀에서 한 화면 위쪽의 모든 셀을 포함하도록 선택 범위를 확장합니다. 이전에 선택한 범위의 열에 있는 모든 셀이 선택됩니다.","Common.Controllers.Shortcuts.txtDescriptionSelectWordLeft":"커서 왼쪽에 있는 단어 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionSelectWordRight":"커서 오른쪽에 있는 단어 하나를 선택하세요.","Common.Controllers.Shortcuts.txtDescriptionShowFormulas":"출력용 용지에 함수 값 외에 함수 자체를 표시합니다.","Common.Controllers.Shortcuts.txtDescriptionSlicerClearSelectedValues":"슬라이서에서 선택한 값을 지웁니다.","Common.Controllers.Shortcuts.txtDescriptionSlicerSwitchMultiSelect":"슬라이서의 다중 선택 기능을 활성화/비활성화합니다.","Common.Controllers.Shortcuts.txtDescriptionSpeechWorker":"화면 판독기가 애플리케이션에서 수행한 작업을 전송할지 여부를 활성화/비활성화합니다.","Common.Controllers.Shortcuts.txtDescriptionStrikeout":"선택한 텍스트 조각에 취소선을 그어 표시하거나, 취소선 서식을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionSubscript":"선택한 텍스트 조각의 크기를 줄여서 텍스트 줄의 아래쪽에 배치합니다. 예를 들어 화학식에서처럼요.","Common.Controllers.Shortcuts.txtDescriptionSuperscript":"선택한 텍스트 조각의 크기를 줄여서 텍스트 줄의 위쪽에 배치합니다(예: 분수처럼).","Common.Controllers.Shortcuts.txtDescriptionToggleAutoFilter":"선택 범위에 필터를 적용하거나 필터를 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionTranspose":"데이터를 붙여넣을 때 열에서 행으로, 또는 그 반대로 순서를 바꿀 수 있습니다. 이 옵션은 일반 데이터 범위에 사용할 수 있지만, 서식이 지정된 표에는 사용할 수 없습니다.","Common.Controllers.Shortcuts.txtDescriptionUnderline":"선택한 텍스트 부분에 글자 아래에 선을 그어 밑줄을 긋거나, 밑줄을 제거합니다.","Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink":"(커서를 링크 위에 올려놓고) 링크를 방문하세요.","Common.Controllers.Shortcuts.txtDescriptionZoom100":"현재 스프레드시트의 '확대/축소' 매개변수를 기본값인 100%로 재설정합니다.","Common.Controllers.Shortcuts.txtDescriptionZoomIn":"현재 편집 중인 스프레드시트를 확대해 보세요.","Common.Controllers.Shortcuts.txtDescriptionZoomOut":"현재 편집 중인 스프레드시트를 축소하세요.","Common.Controllers.Shortcuts.txtLabelAddLineBreak":"AddLineBreak","Common.Controllers.Shortcuts.txtLabelAutoFill":"AutoFill","Common.Controllers.Shortcuts.txtLabelBold":"굵게","Common.Controllers.Shortcuts.txtLabelCellAddSeparator":"CellAddSeparator","Common.Controllers.Shortcuts.txtLabelCellCurrencyFormat":"CellCurrencyFormat","Common.Controllers.Shortcuts.txtLabelCellDateFormat":"CellDateFormat","Common.Controllers.Shortcuts.txtLabelCellEditorSwitchReference":"CellEditorSwitchReference","Common.Controllers.Shortcuts.txtLabelCellEntryCancel":"CellEntryCancel","Common.Controllers.Shortcuts.txtLabelCellExponentialFormat":"CellExponentialFormat","Common.Controllers.Shortcuts.txtLabelCellGeneralFormat":"CellGeneralFormat","Common.Controllers.Shortcuts.txtLabelCellInsertDate":"CellInsertDate","Common.Controllers.Shortcuts.txtLabelCellInsertSumFunction":"CellInsertSumFunction","Common.Controllers.Shortcuts.txtLabelCellInsertTime":"CellInsertTime","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellDown":"CellMoveActiveCellDown","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellLeft":"CellMoveActiveCellLeft","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellRight":"CellMoveActiveCellRight","Common.Controllers.Shortcuts.txtLabelCellMoveActiveCellUp":"CellMoveActiveCellUp","Common.Controllers.Shortcuts.txtLabelCellMoveBottomEdge":"CellMoveBottomEdge","Common.Controllers.Shortcuts.txtLabelCellMoveBottomNonBlank":"CellMoveBottomNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveDown":"CellMoveDown","Common.Controllers.Shortcuts.txtLabelCellMoveEndSpreadsheet":"CellMoveEndSpreadsheet","Common.Controllers.Shortcuts.txtLabelCellMoveFirstCell":"CellMoveFirstCell","Common.Controllers.Shortcuts.txtLabelCellMoveFirstColumn":"CellMoveFirstColumn","Common.Controllers.Shortcuts.txtLabelCellMoveLeft":"CellMoveLeft","Common.Controllers.Shortcuts.txtLabelCellMoveLeftNonBlank":"CellMoveLeftNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveRight":"CellMoveRight","Common.Controllers.Shortcuts.txtLabelCellMoveRightNonBlank":"CellMoveRightNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveTopEdge":"CellMoveTopEdge","Common.Controllers.Shortcuts.txtLabelCellMoveTopNonBlank":"CellMoveTopNonBlank","Common.Controllers.Shortcuts.txtLabelCellMoveUp":"CellMoveUp","Common.Controllers.Shortcuts.txtLabelCellNumberFormat":"CellNumberFormat","Common.Controllers.Shortcuts.txtLabelCellPercentFormat":"CellPercentFormat","Common.Controllers.Shortcuts.txtLabelCellStartNewLine":"CellStartNewLine","Common.Controllers.Shortcuts.txtLabelCellTimeFormat":"CellTimeFormat","Common.Controllers.Shortcuts.txtLabelCenterPara":"CenterPara","Common.Controllers.Shortcuts.txtLabelClearActiveCellContent":"ClearActiveCellContent","Common.Controllers.Shortcuts.txtLabelClearSelectedCellsContent":"ClearSelectedCellsContent","Common.Controllers.Shortcuts.txtLabelCloseFile":"CloseFile","Common.Controllers.Shortcuts.txtLabelCloseMenu":"CloseMenu","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveDown":"CompleteCellEntryMoveDown","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveLeft":"CompleteCellEntryMoveLeft","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveRight":"CompleteCellEntryMoveRight","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryMoveUp":"CompleteCellEntryMoveUp","Common.Controllers.Shortcuts.txtLabelCompleteCellEntryStay":"CompleteCellEntryStay","Common.Controllers.Shortcuts.txtLabelCopy":"복사","Common.Controllers.Shortcuts.txtLabelCut":"Cut","Common.Controllers.Shortcuts.txtLabelDecreaseFontSize":"DecreaseFontSize","Common.Controllers.Shortcuts.txtLabelDeleteLeftChar":"DeleteLeftChar","Common.Controllers.Shortcuts.txtLabelDeleteLeftWord":"DeleteLeftWord","Common.Controllers.Shortcuts.txtLabelDeleteRightChar":"DeleteRightChar","Common.Controllers.Shortcuts.txtLabelDeleteRightWord":"DeleteRightWord","Common.Controllers.Shortcuts.txtLabelDownloadAs":"DownloadAs","Common.Controllers.Shortcuts.txtLabelDrawingAddTab":"DrawingAddTab","Common.Controllers.Shortcuts.txtLabelEditChart":"EditChart","Common.Controllers.Shortcuts.txtLabelEditOpenCellEditor":"EditOpenCellEditor","Common.Controllers.Shortcuts.txtLabelEditRedo":"EditRedo","Common.Controllers.Shortcuts.txtLabelEditSelectAll":"EditSelectAll","Common.Controllers.Shortcuts.txtLabelEditShape":"EditShape","Common.Controllers.Shortcuts.txtLabelEditUndo":"EditUndo","Common.Controllers.Shortcuts.txtLabelEnDash":"EnDash","Common.Controllers.Shortcuts.txtLabelEndParagraph":"EndParagraph","Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder":"EquationAddPlaceholder","Common.Controllers.Shortcuts.txtLabelExitAddingShapesMode":"ExitAddingShapesMode","Common.Controllers.Shortcuts.txtLabelFillSelectedCellRange":"FillSelectedCellRange","Common.Controllers.Shortcuts.txtLabelFormatAsTableTemplate":"FormatAsTableTemplate","Common.Controllers.Shortcuts.txtLabelFormatTableAddSummaryRow":"FormatTableAddSummaryRow","Common.Controllers.Shortcuts.txtLabelIncreaseFontSize":"IncreaseFontSize","Common.Controllers.Shortcuts.txtLabelInsertHyperlink":"InsertLink","Common.Controllers.Shortcuts.txtLabelItalic":"Italic","Common.Controllers.Shortcuts.txtLabelJustifyPara":"JustifyPara","Common.Controllers.Shortcuts.txtLabelLeftPara":"LeftPara","Common.Controllers.Shortcuts.txtLabelMoveBeginningLine":"MoveBeginningLine","Common.Controllers.Shortcuts.txtLabelMoveBeginningText":"MoveBeginningText","Common.Controllers.Shortcuts.txtLabelMoveCharacterLeft":"MoveCharacterLeft","Common.Controllers.Shortcuts.txtLabelMoveCharacterRight":"MoveCharacterRight","Common.Controllers.Shortcuts.txtLabelMoveCursorLineDown":"MoveCursorLineDown","Common.Controllers.Shortcuts.txtLabelMoveCursorLineUp":"MoveCursorLineUp","Common.Controllers.Shortcuts.txtLabelMoveEndLine":"MoveEndLine","Common.Controllers.Shortcuts.txtLabelMoveEndText":"MoveEndText","Common.Controllers.Shortcuts.txtLabelMoveFocusNextObject":"MoveFocusNextObject","Common.Controllers.Shortcuts.txtLabelMoveFocusPreviousObject":"MoveFocusPreviousObject","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepBottom":"MoveShapeBigStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepLeft":"MoveShapeBigStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepRight":"MoveShapeBigStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeBigStepUp":"MoveShapeBigStepUp","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepBottom":"MoveShapeLittleStepBottom","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepLeft":"MoveShapeLittleStepLeft","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepRight":"MoveShapeLittleStepRight","Common.Controllers.Shortcuts.txtLabelMoveShapeLittleStepUp":"MoveShapeLittleStepUp","Common.Controllers.Shortcuts.txtLabelMoveWordLeft":"MoveWordLeft","Common.Controllers.Shortcuts.txtLabelMoveWordRight":"MoveWordRight","Common.Controllers.Shortcuts.txtLabelNavigateNextControl":"NavigateNextControl","Common.Controllers.Shortcuts.txtLabelNavigatePreviousControl":"NavigatePreviousControl","Common.Controllers.Shortcuts.txtLabelNextFileTab":"NextFileTab","Common.Controllers.Shortcuts.txtLabelNextWorksheet":"NextWorksheet","Common.Controllers.Shortcuts.txtLabelOpenChatPanel":"OpenChatPanel","Common.Controllers.Shortcuts.txtLabelOpenCommentField":"OpenCommentField","Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel":"OpenCommentsPanel","Common.Controllers.Shortcuts.txtLabelOpenContextMenu":"OpenContextMenu","Common.Controllers.Shortcuts.txtLabelOpenDeleteCellsWindow":"OpenDeleteCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenExistingFile":"OpenExistingFile","Common.Controllers.Shortcuts.txtLabelOpenFilePanel":"OpenFilePanel","Common.Controllers.Shortcuts.txtLabelOpenFilterWindow":"OpenFilterWindow","Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu":"OpenFindAndReplaceMenu","Common.Controllers.Shortcuts.txtLabelOpenFindDialog":"OpenFindDialog","Common.Controllers.Shortcuts.txtLabelOpenHelpMenu":"OpenHelpMenu","Common.Controllers.Shortcuts.txtLabelOpenInsertCellsWindow":"OpenInsertCellsWindow","Common.Controllers.Shortcuts.txtLabelOpenInsertFunctionDialog":"OpenInsertFunctionDialog","Common.Controllers.Shortcuts.txtLabelOpenNumberFormatDialog":"OpenNumberFormatDialog","Common.Controllers.Shortcuts.txtLabelPaste":"Paste","Common.Controllers.Shortcuts.txtLabelPasteFormulaAllFormatting":"PasteFormulaAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteFormulaColumnWidth":"PasteFormulaColumnWidth","Common.Controllers.Shortcuts.txtLabelPasteFormulaNoBorders":"PasteFormulaNoBorders","Common.Controllers.Shortcuts.txtLabelPasteFormulaNumberFormat":"PasteFormulaNumberFormat","Common.Controllers.Shortcuts.txtLabelPasteLink":"PasteLink","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormatting":"PasteOnlyFormatting","Common.Controllers.Shortcuts.txtLabelPasteOnlyFormula":"PasteOnlyFormula","Common.Controllers.Shortcuts.txtLabelPasteOnlyValue":"PasteOnlyValue","Common.Controllers.Shortcuts.txtLabelPasteValueAllFormatting":"PasteValueAllFormatting","Common.Controllers.Shortcuts.txtLabelPasteValueNumberFormat":"PasteValueNumberFormat","Common.Controllers.Shortcuts.txtLabelPreviousFileTab":"PreviousFileTab","Common.Controllers.Shortcuts.txtLabelPreviousWorksheet":"PreviousWorksheet","Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint":"PrintPreviewAndPrint","Common.Controllers.Shortcuts.txtLabelRecalculateActiveSheet":"RecalculateActiveSheet","Common.Controllers.Shortcuts.txtLabelRecalculateAll":"RecalculateAll","Common.Controllers.Shortcuts.txtLabelRefreshAllPivots":"RefreshAllPivots","Common.Controllers.Shortcuts.txtLabelRefreshSelectedPivots":"RefreshSelectedPivots","Common.Controllers.Shortcuts.txtLabelRemoveGraphicalObject":"RemoveGraphicalObject","Common.Controllers.Shortcuts.txtLabelRightPara":"RightPara","Common.Controllers.Shortcuts.txtLabelSave":"Save","Common.Controllers.Shortcuts.txtLabelSelectBeginningLine":"SelectBeginningLine","Common.Controllers.Shortcuts.txtLabelSelectBeginningText":"SelectBeginningText","Common.Controllers.Shortcuts.txtLabelSelectBeginningWorksheet":"SelectBeginningWorksheet","Common.Controllers.Shortcuts.txtLabelSelectCharacterLeft":"SelectCharacterLeft","Common.Controllers.Shortcuts.txtLabelSelectCharacterRight":"SelectCharacterRight","Common.Controllers.Shortcuts.txtLabelSelectColumn":"SelectColumn","Common.Controllers.Shortcuts.txtLabelSelectCursorBeginningRow":"SelectCursorBeginningRow","Common.Controllers.Shortcuts.txtLabelSelectCursorEndRow":"SelectCursorEndRow","Common.Controllers.Shortcuts.txtLabelSelectDownOneScreen":"SelectDownOneScreen","Common.Controllers.Shortcuts.txtLabelSelectEndLine":"SelectEndLine","Common.Controllers.Shortcuts.txtLabelSelectEndText":"SelectEndText","Common.Controllers.Shortcuts.txtLabelSelectFirstColumn":"SelectFirstColumn","Common.Controllers.Shortcuts.txtLabelSelectLastUsedCell":"SelectLastUsedCell","Common.Controllers.Shortcuts.txtLabelSelectLineDown":"SelectLineDown","Common.Controllers.Shortcuts.txtLabelSelectLineUp":"SelectLineUp","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankDown":"SelectNearestNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankRight":"SelectNearestNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNearestNonblankUp":"SelectNearestNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankDown":"SelectNextNonblankDown","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankLeft":"SelectNextNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankRight":"SelectNextNonblankRight","Common.Controllers.Shortcuts.txtLabelSelectNextNonblankUp":"SelectNextNonblankUp","Common.Controllers.Shortcuts.txtLabelSelectNonblankLeft":"SelectNonblankLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellDown":"SelectOneCellDown","Common.Controllers.Shortcuts.txtLabelSelectOneCellLeft":"SelectOneCellLeft","Common.Controllers.Shortcuts.txtLabelSelectOneCellRight":"SelectOneCellRight","Common.Controllers.Shortcuts.txtLabelSelectOneCellUp":"SelectOneCellUp","Common.Controllers.Shortcuts.txtLabelSelectRow":"SelectRow","Common.Controllers.Shortcuts.txtLabelSelectUpOneScreen":"SelectUpOneScreen","Common.Controllers.Shortcuts.txtLabelSelectWordLeft":"SelectWordLeft","Common.Controllers.Shortcuts.txtLabelSelectWordRight":"SelectWordRight","Common.Controllers.Shortcuts.txtLabelShowFormulas":"ShowFormulas","Common.Controllers.Shortcuts.txtLabelSlicerClearSelectedValues":"SlicerClearSelectedValues","Common.Controllers.Shortcuts.txtLabelSlicerSwitchMultiSelect":"SlicerSwitchMultiSelect","Common.Controllers.Shortcuts.txtLabelSpeechWorker":"SpeechWorker","Common.Controllers.Shortcuts.txtLabelStrikeout":"취소선","Common.Controllers.Shortcuts.txtLabelSubscript":"아래 첨자 ","Common.Controllers.Shortcuts.txtLabelSuperscript":"위첨자","Common.Controllers.Shortcuts.txtLabelToggleAutoFilter":"ToggleAutoFilter","Common.Controllers.Shortcuts.txtLabelTranspose":"Transpose","Common.Controllers.Shortcuts.txtLabelUnderline":"밑줄","Common.Controllers.Shortcuts.txtLabelVisitHyperlink":"VisitLink","Common.Controllers.Shortcuts.txtLabelZoom100":"Zoom100","Common.Controllers.Shortcuts.txtLabelZoomIn":"ZoomIn","Common.Controllers.Shortcuts.txtLabelZoomOut":"ZoomOut","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.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.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.textLineSpark":"선","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.textRadar":"레이더","Common.define.chartData.textRadarFilled":"채워진 레이더","Common.define.chartData.textRadarMarker":"마커가 있는 레이더","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.chartData.textSurface":"표면","Common.define.chartData.textWinLossSpark":"승리/패배","Common.define.conditionalData.exampleText":"AaBbCcYyZz","Common.define.conditionalData.noFormatText":"형식 없음","Common.define.conditionalData.text1Above":"1 이상의 표준편차","Common.define.conditionalData.text1Below":"표준편차 1이하","Common.define.conditionalData.text2Above":"표준편차 2이상","Common.define.conditionalData.text2Below":"표준편차 2이하","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.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.textText":"텍스트","Common.define.conditionalData.textThisMonth":"이번 달","Common.define.conditionalData.textThisWeek":"이번 주","Common.define.conditionalData.textToday":"오늘","Common.define.conditionalData.textTomorrow":"내일","Common.define.conditionalData.textTop":"위","Common.define.conditionalData.textUnique":"고유값","Common.define.conditionalData.textValue":"값이","Common.define.conditionalData.textYesterday":"어제","Common.define.smartArt.textAccentedPicture":"강조 이미지","Common.define.smartArt.textAccentProcess":"강조 프로세스","Common.define.smartArt.textAlternatingFlow":"번갈아 가는 흐름","Common.define.smartArt.textAlternatingHexagons":"번갈아 가는 육각형","Common.define.smartArt.textAlternatingPictureBlocks":"번갈아 가며 그림 블록 만들기","Common.define.smartArt.textAlternatingPictureCircles":"번갈아 가는 그림 원","Common.define.smartArt.textArchitectureLayout":"아키텍처 레이아웃","Common.define.smartArt.textArrowRibbon":"화살표 리본","Common.define.smartArt.textAscendingPictureAccentProcess":"오름차순 그림 강조 프로세스","Common.define.smartArt.textBalance":"균형","Common.define.smartArt.textBasicBendingProcess":"기본 절곡 프로세스","Common.define.smartArt.textBasicBlockList":"기본 차단 리스트","Common.define.smartArt.textBasicChevronProcess":"기본 쉐브론 프로세스","Common.define.smartArt.textBasicCycle":"기본 주기","Common.define.smartArt.textBasicMatrix":"기본 행렬","Common.define.smartArt.textBasicPie":"기본 파이","Common.define.smartArt.textBasicProcess":"기본 프로세스","Common.define.smartArt.textBasicPyramid":"기본 피라미드","Common.define.smartArt.textBasicRadial":"기본 원형","Common.define.smartArt.textBasicTarget":"기본 대상","Common.define.smartArt.textBasicTimeline":"기본 타임라인","Common.define.smartArt.textBasicVenn":"기본 벤 다이어그램","Common.define.smartArt.textBendingPictureAccentList":"휜 이미지 강조 목록","Common.define.smartArt.textBendingPictureBlocks":"휜 이미지 블록","Common.define.smartArt.textBendingPictureCaption":"휜 이미지 캡션","Common.define.smartArt.textBendingPictureCaptionList":"휜 이미지 캡션 목록","Common.define.smartArt.textBendingPictureSemiTranparentText":"휜 이미지 반투명 텍스트","Common.define.smartArt.textBlockCycle":"블록 주기","Common.define.smartArt.textBubblePictureList":"거품 이미지 목록","Common.define.smartArt.textCaptionedPictures":"캡션이 있는 사진","Common.define.smartArt.textChevronAccentProcess":"쉐브론 액센트 프로세스","Common.define.smartArt.textChevronList":"쉐브론 목록","Common.define.smartArt.textCircleAccentTimeline":"원형 강조 타임라인","Common.define.smartArt.textCircleArrowProcess":"원형 화살표 프로세스","Common.define.smartArt.textCirclePictureHierarchy":"원형 이미지 계층 구조","Common.define.smartArt.textCircleProcess":"원형 프로세스","Common.define.smartArt.textCircleRelationship":"원형 관계","Common.define.smartArt.textCircularBendingProcess":"원형 절곡 공정","Common.define.smartArt.textCircularPictureCallout":"원형 이미지 주석","Common.define.smartArt.textClosedChevronProcess":"닫힌 형태의 쉐브론 프로세스","Common.define.smartArt.textContinuousArrowProcess":"연속된 화살표 프로세스","Common.define.smartArt.textContinuousBlockProcess":"연속된 블록 프로세스","Common.define.smartArt.textContinuousCycle":"연속적인 주기","Common.define.smartArt.textContinuousPictureList":"연속된 그림 목록","Common.define.smartArt.textConvergingArrows":"수렴 화살표","Common.define.smartArt.textConvergingRadial":"한 지점으로 모이는 방사형","Common.define.smartArt.textConvergingText":"한 지점으로 모이는 텍스트","Common.define.smartArt.textCounterbalanceArrows":"평형 화살","Common.define.smartArt.textCycle":"주기","Common.define.smartArt.textCycleMatrix":"주기 행렬","Common.define.smartArt.textDescendingBlockList":"내림차순으로 정렬한 목록","Common.define.smartArt.textDescendingProcess":"내림차순 프로세스","Common.define.smartArt.textDetailedProcess":"상세한 프로세스","Common.define.smartArt.textDivergingArrows":"분기 화살표","Common.define.smartArt.textDivergingRadial":"분기하는 방사형","Common.define.smartArt.textEquation":"방정식","Common.define.smartArt.textFramedTextPicture":"테두리가 있는 텍스트 이미지","Common.define.smartArt.textFunnel":"깔때기","Common.define.smartArt.textGear":"대비","Common.define.smartArt.textGridMatrix":"격자 행렬","Common.define.smartArt.textGroupedList":"그룹화 된 목록","Common.define.smartArt.textHalfCircleOrganizationChart":"반원 형태 조직도","Common.define.smartArt.textHexagonCluster":"육각형 클러스터","Common.define.smartArt.textHexagonRadial":"육각형 방사형","Common.define.smartArt.textHierarchy":"계층","Common.define.smartArt.textHierarchyList":"계층 목록","Common.define.smartArt.textHorizontalBulletList":"가로 방향 불릿 목록","Common.define.smartArt.textHorizontalHierarchy":"수평적 계층","Common.define.smartArt.textHorizontalLabeledHierarchy":"가로로 라벨링된 계층 구조","Common.define.smartArt.textHorizontalMultiLevelHierarchy":"가로로 다중 수준 계층","Common.define.smartArt.textHorizontalOrganizationChart":"가로 방향 조직도","Common.define.smartArt.textHorizontalPictureList":"가로로 나열된 그림 목록","Common.define.smartArt.textIncreasingArrowProcess":"증가 화살표 프로세스","Common.define.smartArt.textIncreasingCircleProcess":"증가하는 원 프로세스","Common.define.smartArt.textInterconnectedBlockProcess":"상호 연결된 블록 프로세스","Common.define.smartArt.textInterconnectedRings":"상호 연결된 링","Common.define.smartArt.textInvertedPyramid":"역 피라미드","Common.define.smartArt.textLabeledHierarchy":"레이블이 있는 계층 구조","Common.define.smartArt.textLinearVenn":"선형 벤 다이어그램","Common.define.smartArt.textLinedList":"선으로 구분된 목록","Common.define.smartArt.textList":"목록","Common.define.smartArt.textMatrix":"행렬","Common.define.smartArt.textMultidirectionalCycle":"다방향 사이클","Common.define.smartArt.textNameAndTitleOrganizationChart":"이름 및 직위 조직도","Common.define.smartArt.textNestedTarget":"중첩 대상","Common.define.smartArt.textNondirectionalCycle":"비방향 사이클","Common.define.smartArt.textOpposingArrows":"반대 화살표","Common.define.smartArt.textOpposingIdeas":"상반된 개념","Common.define.smartArt.textOrganizationChart":"조직도","Common.define.smartArt.textOther":"기타","Common.define.smartArt.textPhasedProcess":"단계별 프로세스","Common.define.smartArt.textPicture":"그림","Common.define.smartArt.textPictureAccentBlocks":"그림 강조 블럭","Common.define.smartArt.textPictureAccentList":"그림 강조 목록","Common.define.smartArt.textPictureAccentProcess":"그림 강조 프로세스","Common.define.smartArt.textPictureCaptionList":"그림 캡션 목록","Common.define.smartArt.textPictureFrame":"사진 프레임","Common.define.smartArt.textPictureGrid":"그림 격자","Common.define.smartArt.textPictureLineup":"사진 라인업","Common.define.smartArt.textPictureOrganizationChart":"그림 조직도","Common.define.smartArt.textPictureStrips":"그림 스트립","Common.define.smartArt.textPieProcess":"파이 프로세스","Common.define.smartArt.textPlusAndMinus":"플러스와 마이너스","Common.define.smartArt.textProcess":"프로세스","Common.define.smartArt.textProcessArrows":"프로세스 화살표","Common.define.smartArt.textProcessList":"프로세스 목록","Common.define.smartArt.textPyramid":"피라미드","Common.define.smartArt.textPyramidList":"피라미드 목록","Common.define.smartArt.textRadialCluster":"방사형 클러스터","Common.define.smartArt.textRadialCycle":"방사형주기","Common.define.smartArt.textRadialList":"방사형 목록","Common.define.smartArt.textRadialPictureList":"방사형 그림 목록","Common.define.smartArt.textRadialVenn":"원형 벤 다이어그램","Common.define.smartArt.textRandomToResultProcess":"무작위 랜덤 프로세스","Common.define.smartArt.textRelationship":"관계","Common.define.smartArt.textRepeatingBendingProcess":"반복되는 접힘 과정","Common.define.smartArt.textReverseList":"역방향 목록","Common.define.smartArt.textSegmentedCycle":"분할된 주기","Common.define.smartArt.textSegmentedProcess":"세분화된 프로세스","Common.define.smartArt.textSegmentedPyramid":"분할된 피라미드","Common.define.smartArt.textSnapshotPictureList":"스냅샷 사진 목록","Common.define.smartArt.textSpiralPicture":"나선형 그림","Common.define.smartArt.textSquareAccentList":"사각형 강조 목록","Common.define.smartArt.textStackedList":"스택 리스트","Common.define.smartArt.textStackedVenn":"쌓인 벤 다이어그램","Common.define.smartArt.textStaggeredProcess":"단계별 프로세스","Common.define.smartArt.textStepDownProcess":"단계적 프로세스","Common.define.smartArt.textStepUpProcess":"단계별 프로세스","Common.define.smartArt.textSubStepProcess":"하위 단계 프로세스","Common.define.smartArt.textTabbedArc":"원호형 탭","Common.define.smartArt.textTableHierarchy":"테이블 계층","Common.define.smartArt.textTableList":"테이블 목록","Common.define.smartArt.textTabList":"탭 목록","Common.define.smartArt.textTargetList":"대상 목록","Common.define.smartArt.textTextCycle":"텍스트 사이클","Common.define.smartArt.textThemePictureAccent":"테마 이미지 강조","Common.define.smartArt.textThemePictureAlternatingAccent":"테마 이미지 교체 강조","Common.define.smartArt.textThemePictureGrid":"테마 이미지 격자","Common.define.smartArt.textTitledMatrix":"제목 행렬","Common.define.smartArt.textTitledPictureAccentList":"제목이 있는 이미지 강조 목록","Common.define.smartArt.textTitledPictureBlocks":"제목이 있는 그림 블록","Common.define.smartArt.textTitlePictureLineup":"타이틀 이미지 라인업","Common.define.smartArt.textTrapezoidList":"사다리꼴 목록","Common.define.smartArt.textUpwardArrow":"위쪽 화살표","Common.define.smartArt.textVaryingWidthList":"너비가 다른 목록","Common.define.smartArt.textVerticalAccentList":"수직 강조 목록","Common.define.smartArt.textVerticalArrowList":"수직 화살표 목록","Common.define.smartArt.textVerticalBendingProcess":"수직 절곡 프로세스","Common.define.smartArt.textVerticalBlockList":"수직 블록 목록","Common.define.smartArt.textVerticalBoxList":"수직 상자 목록","Common.define.smartArt.textVerticalBracketList":"수직 괄호 목록","Common.define.smartArt.textVerticalBulletList":"수직 글머리 기호 목록","Common.define.smartArt.textVerticalChevronList":"수직 쉐브론 목록","Common.define.smartArt.textVerticalCircleList":"수직 원 목록","Common.define.smartArt.textVerticalCurvedList":"수직 곡선 목록","Common.define.smartArt.textVerticalEquation":"수직 방정식","Common.define.smartArt.textVerticalPictureAccentList":"수직 방향 그림 강조 목록","Common.define.smartArt.textVerticalPictureList":"수직 이미지 목록","Common.define.smartArt.textVerticalProcess":"수직 프로세스","Common.Translation.textMoreButton":"더","Common.Translation.tipFileLocked":"문서가 편집 잠금 상태입니다.변경한 후 로컬 복사본으로 저장할 수 있습니다.","Common.Translation.tipFileReadOnly":"파일이 읽기 전용입니다. 변경 사항을 유지하려면 파일을 새 이름으로 저장하거나 다른 위치에 저장하세요.","Common.Translation.warnFileLocked":"파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.","Common.Translation.warnFileLockedBtnEdit":"복사본 만들기","Common.Translation.warnFileLockedBtnView":"미리보기","Common.UI.ButtonColored.textAutoColor":"자동","Common.UI.ButtonColored.textEyedropper":"스포이드","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":"금","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":"목","Common.UI.Calendar.textShortTuesday":"화","Common.UI.Calendar.textShortWednesday":"수","Common.UI.Calendar.textYears":"년","Common.UI.ComboBorderSize.txtNoBorders":"테두리 없음","Common.UI.ComboBorderSizeEditable.txtNoBorders":"테두리 없음","Common.UI.ComboDataView.emptyComboText":"스타일 없음","Common.UI.ExtendedColorDialog.addButtonText":"Add","Common.UI.ExtendedColorDialog.textCurrent":"현재","Common.UI.ExtendedColorDialog.textHexErr":"입력 한 값이 잘못되었습니다.
000000에서 FFFFFF 사이의 값을 입력하십시오.","Common.UI.ExtendedColorDialog.textNew":"New","Common.UI.ExtendedColorDialog.textRGBErr":"입력 한 값이 잘못되었습니다.
0에서 255 사이의 숫자 값을 입력하십시오.","Common.UI.HSBColorPicker.textNoColor":"색상 없음","Common.UI.InputField.txtEmpty":"이 필드는 필수입니다","Common.UI.InputFieldBtnCalendar.textDate":"날짜선택","Common.UI.InputFieldBtnPassword.textHintHidePwd":"비밀번호 숨기기","Common.UI.InputFieldBtnPassword.textHintHold":"길게 눌러 비밀번호 보기","Common.UI.InputFieldBtnPassword.textHintShowPwd":"비밀번호 표시","Common.UI.SearchBar.textFind":"찾기","Common.UI.SearchBar.tipCloseSearch":"검색 닫기","Common.UI.SearchBar.tipNextResult":"다음결과","Common.UI.SearchBar.tipOpenAdvancedSettings":"고급 설정 열기","Common.UI.SearchBar.tipPreviousResult":"이전 결과","Common.UI.SearchDialog.textHighlight":"결과 강조 표시","Common.UI.SearchDialog.textMatchCase":"대소 문자를 구분합니다","Common.UI.SearchDialog.textReplaceDef":"대체 텍스트 입력","Common.UI.SearchDialog.textSearchStart":"여기에 텍스트를 입력하십시오","Common.UI.SearchDialog.textTitle":"찾기 및 바꾸기","Common.UI.SearchDialog.textTitle2":"찾기","Common.UI.SearchDialog.textWholeWords":"전체 단어 만","Common.UI.SearchDialog.txtBtnHideReplace":"바꾸기 숨기기","Common.UI.SearchDialog.txtBtnReplace":"바꾸기","Common.UI.SearchDialog.txtBtnReplaceAll":"모두 바꾸기","Common.UI.SynchronizeTip.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.SynchronizeTip.textGotIt":"확인","Common.UI.SynchronizeTip.textNew":"신규","Common.UI.SynchronizeTip.textSynchronize":"다른 사용자가 문서를 변경했습니다.
클릭하여 변경 사항을 저장하고 업데이트를 다시로드하십시오.","Common.UI.ThemeColorPalette.textRecentColors":"최근 색상","Common.UI.ThemeColorPalette.textStandartColors":"표준 색상","Common.UI.ThemeColorPalette.textThemeColors":"테마 색","Common.UI.Themes.txtThemeClassicLight":"전통적인 밝은 색상","Common.UI.Themes.txtThemeContrastDark":"어두운 대비","Common.UI.Themes.txtThemeDark":"어두운","Common.UI.Themes.txtThemeGray":"회색","Common.UI.Themes.txtThemeLight":"밝은","Common.UI.Themes.txtThemeModernDark":"모던 다크","Common.UI.Themes.txtThemeModernLight":"모던 라이트","Common.UI.Themes.txtThemeSystem":"시스템과 동일","Common.UI.Window.cancelButtonText":"취소","Common.UI.Window.closeButtonText":"닫기","Common.UI.Window.noButtonText":"No","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"확인","Common.UI.Window.textDontShow":"이 메시지를 다시 표시하지 않음","Common.UI.Window.textError":"오류","Common.UI.Window.textInformation":"정보","Common.UI.Window.textWarning":"경고","Common.UI.Window.yesButtonText":"예","Common.Utils.Metric.txtCm":"cm","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt 키","Common.Utils.String.textComma":",","Common.Utils.String.textCtrl":"Ctrl 키","Common.Utils.String.textShift":"Shift 키","Common.Utils.ThemeColor.txtaccent":"강조","Common.Utils.ThemeColor.txtAqua":"아쿠아","Common.Utils.ThemeColor.txtbackground":"배경","Common.Utils.ThemeColor.txtBlack":"검정","Common.Utils.ThemeColor.txtBlue":"파랑","Common.Utils.ThemeColor.txtBrightGreen":"밝은 녹색","Common.Utils.ThemeColor.txtBrown":"갈색","Common.Utils.ThemeColor.txtDarkBlue":"어두운 파랑색","Common.Utils.ThemeColor.txtDarker":"더 어둡게","Common.Utils.ThemeColor.txtDarkGray":"어두운 회색","Common.Utils.ThemeColor.txtDarkGreen":"어두운 초록색","Common.Utils.ThemeColor.txtDarkPurple":"진한 보라색","Common.Utils.ThemeColor.txtDarkRed":"어두운 빨간색","Common.Utils.ThemeColor.txtDarkTeal":"어두운 암청색","Common.Utils.ThemeColor.txtDarkYellow":"어두운 노란색","Common.Utils.ThemeColor.txtGold":"금색","Common.Utils.ThemeColor.txtGray":"회색","Common.Utils.ThemeColor.txtGreen":"녹색","Common.Utils.ThemeColor.txtIndigo":"남색","Common.Utils.ThemeColor.txtLavender":"라벤더","Common.Utils.ThemeColor.txtLightBlue":"밝은 파랑","Common.Utils.ThemeColor.txtLighter":"더 밝은","Common.Utils.ThemeColor.txtLightGray":"밝은 회색","Common.Utils.ThemeColor.txtLightGreen":"밝은 초록","Common.Utils.ThemeColor.txtLightOrange":"밝은 주황","Common.Utils.ThemeColor.txtLightYellow":"밝은 노랑","Common.Utils.ThemeColor.txtOrange":"주황","Common.Utils.ThemeColor.txtPink":"분홍","Common.Utils.ThemeColor.txtPurple":"보라","Common.Utils.ThemeColor.txtRed":"빨강","Common.Utils.ThemeColor.txtRose":"장미","Common.Utils.ThemeColor.txtSkyBlue":"하늘색","Common.Utils.ThemeColor.txtTeal":"암청색","Common.Utils.ThemeColor.txttext":"본문","Common.Utils.ThemeColor.txtTurquosie":"터키옥색","Common.Utils.ThemeColor.txtViolet":"바이올렛","Common.Utils.ThemeColor.txtWhite":"흰색","Common.Utils.ThemeColor.txtYellow":"노랑","Common.Views.About.txtAddress":"주소 :","Common.Views.About.txtLicensee":"라이선스","Common.Views.About.txtLicensor":"LICENSOR","Common.Views.About.txtMail":"이메일 :","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.textDelete":"삭제","Common.Views.AutoCorrectDialog.textFLSentence":"영어 문장의 첫 글자를 대문자로","Common.Views.AutoCorrectDialog.textHyperlink":"인터넷과 네트워크 경로를 하이퍼 링크로 설정","Common.Views.AutoCorrectDialog.textMathCorrect":"수식 자동 고침","Common.Views.AutoCorrectDialog.textNewRowCol":"테이블에 새 행과 열을 포함","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.textChat":"채팅","Common.Views.Chat.textClosePanel":"채팅 닫기","Common.Views.Chat.textEnterMessage":"메시지를 입력하세요","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.mniFilterComments":"댓글 표시","Common.Views.Comments.mniFilterGroups":"그룹별 필터링","Common.Views.Comments.mniPositionAsc":"위에서 부터","Common.Views.Comments.mniPositionDesc":"아래로 부터","Common.Views.Comments.textAdd":"추가","Common.Views.Comments.textAddComment":"코멘트 추가","Common.Views.Comments.textAddCommentToDoc":"문서에 설명 추가","Common.Views.Comments.textAddReply":"답장 추가","Common.Views.Comments.textAll":"모두","Common.Views.Comments.textAnonym":"손님","Common.Views.Comments.textCancel":"취소","Common.Views.Comments.textClose":"닫기","Common.Views.Comments.textClosePanel":"코멘트 닫기","Common.Views.Comments.textComment":"코멘트","Common.Views.Comments.textComments":"코멘트","Common.Views.Comments.textEdit":"OK","Common.Views.Comments.textEnterCommentHint":"여기에 의견을 입력하십시오","Common.Views.Comments.textHintAddComment":"코멘트 추가","Common.Views.Comments.textOpen":"열기","Common.Views.Comments.textOpenAgain":"다시 열기","Common.Views.Comments.textReply":"Reply","Common.Views.Comments.textResolve":"해결","Common.Views.Comments.textResolved":"해결됨","Common.Views.Comments.textSort":"코멘트 분류","Common.Views.Comments.textSortFilter":"코멘트","Common.Views.Comments.textSortFilterMore":"정렬, 필터 및 기타 옵션","Common.Views.Comments.textSortMore":"정렬 및 기타 옵션","Common.Views.Comments.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.Comments.txtEmpty":"시트에 코멘트가 없습니다","Common.Views.CopyWarningDialog.textDontShow":"이 메시지를 다시 표시하지 않음","Common.Views.CopyWarningDialog.textMsg":"편집기 도구 모음 단추 및 컨텍스트 메뉴 작업을 사용하여 복사, 잘라 내기 및 붙여 넣기 작업은이 편집기 탭 내에서만 수행됩니다.

외부 응용 프로그램으로 복사하거나 붙여 넣으려면 편집기 탭은 다음과 같은 키보드 조합을 사용합니다 : ","Common.Views.CopyWarningDialog.textTitle":"작업 복사, 잘라 내기 및 붙여 넣기","Common.Views.CopyWarningDialog.textToCopy":"복사","Common.Views.CopyWarningDialog.textToCut":"잘라 내기","Common.Views.CopyWarningDialog.textToPaste":"붙여 넣기","Common.Views.CustomizeQuickAccessDialog.textDownload":"다운로드","Common.Views.CustomizeQuickAccessDialog.textMsg":"빠른 실행 도구 모음에 표시할 명령을 선택하세요","Common.Views.CustomizeQuickAccessDialog.textPrint":"인쇄","Common.Views.CustomizeQuickAccessDialog.textQuickPrint":"빠른 인쇄","Common.Views.CustomizeQuickAccessDialog.textRedo":"다시 실행","Common.Views.CustomizeQuickAccessDialog.textSave":"저장","Common.Views.CustomizeQuickAccessDialog.textTitle":"빠른 실행 도구 모음 사용자 지정","Common.Views.CustomizeQuickAccessDialog.textUndo":"실행 취소","Common.Views.DocumentAccessDialog.textLoading":"로드 중 ...","Common.Views.DocumentAccessDialog.textTitle":"공유 설정","Common.Views.DocumentPropertyDialog.errorDate":"캘린더에서 값을 선택하면 날짜 형식으로 저장됩니다.
직접 입력하면 텍스트로 저장됩니다.","Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse":"아니오","Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue":"확인","Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError":"속성에는 제목이 있어야 합니다","Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel":"제목","Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean":"\"예\" 또는 \"아니요\"","Common.Views.DocumentPropertyDialog.txtPropertyTypeDate":"날짜","Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel":"유형","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber":"숫자","Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid":"유효한 숫자를 입력하세요","Common.Views.DocumentPropertyDialog.txtPropertyTypeText":"텍스트","Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError":"속성에는 값이 있어야 합니다","Common.Views.DocumentPropertyDialog.txtPropertyValueLabel":"값","Common.Views.DocumentPropertyDialog.txtTitle":"새 문서 속성","Common.Views.Draw.hintEraser":"지우개","Common.Views.Draw.hintSelect":"선택","Common.Views.Draw.txtEraser":"지우개","Common.Views.Draw.txtHighlighter":"하이라이터","Common.Views.Draw.txtMM":"mm","Common.Views.Draw.txtPen":"펜:","Common.Views.Draw.txtSelect":"선택","Common.Views.Draw.txtSize":"크기","Common.Views.EditNameDialog.textLabel":"라벨:","Common.Views.EditNameDialog.textLabelError":"라벨은 비워 둘 수 없습니다.","Common.Views.ExternalLinksDlg.closeButtonText":"닫기","Common.Views.ExternalLinksDlg.textAutoUpdate":"연결된 원본에서 데이터 자동 업데이트","Common.Views.ExternalLinksDlg.textChange":"소스 변경","Common.Views.ExternalLinksDlg.textDelete":"링크 해제","Common.Views.ExternalLinksDlg.textDeleteAll":"모든 링크 해제","Common.Views.ExternalLinksDlg.textOk":"확인","Common.Views.ExternalLinksDlg.textOpen":"오픈 소스","Common.Views.ExternalLinksDlg.textSource":"출처","Common.Views.ExternalLinksDlg.textStatus":"상태","Common.Views.ExternalLinksDlg.textUnknown":"알 수 없음","Common.Views.ExternalLinksDlg.textUpdate":"값 업데이트","Common.Views.ExternalLinksDlg.textUpdateAll":"모두 업데이트","Common.Views.ExternalLinksDlg.textUpdating":"업데이트 중…","Common.Views.ExternalLinksDlg.txtTitle":"외부 링크","Common.Views.FormatSettingsDialog.textCategory":"카테고리","Common.Views.FormatSettingsDialog.textDecimal":"소수","Common.Views.FormatSettingsDialog.textFormat":"서식","Common.Views.FormatSettingsDialog.textLinked":"원본에 연결","Common.Views.FormatSettingsDialog.textLocale":"지역 설정","Common.Views.FormatSettingsDialog.textSeparator":"1000 단위 구분 기호 사용","Common.Views.FormatSettingsDialog.textSymbols":"기호","Common.Views.FormatSettingsDialog.textTitle":"숫자 서식","Common.Views.FormatSettingsDialog.txtAccounting":"회계","Common.Views.FormatSettingsDialog.txtAs10":"분모를 10으로 (5/10)","Common.Views.FormatSettingsDialog.txtAs100":"분모를 100으로 (50/100)","Common.Views.FormatSettingsDialog.txtAs16":"분모를 16으로 (8/16)","Common.Views.FormatSettingsDialog.txtAs2":"분모를 2로 (1/2)","Common.Views.FormatSettingsDialog.txtAs4":"분모를 4로 (2/4)","Common.Views.FormatSettingsDialog.txtAs8":"분모를 8로 (4/8)","Common.Views.FormatSettingsDialog.txtCurrency":"통화","Common.Views.FormatSettingsDialog.txtCustom":"사용자 지정","Common.Views.FormatSettingsDialog.txtCustomWarning":"사용자 지정 숫자 서식을 신중하게 입력하세요. 스프레드시트 편집기는 xlsx 파일에 영향을 줄 수 있는 오류가 있는지 사용자 지정 서식을 확인하지 않습니다.","Common.Views.FormatSettingsDialog.txtDate":"날짜","Common.Views.FormatSettingsDialog.txtFraction":"분수","Common.Views.FormatSettingsDialog.txtGeneral":"일반","Common.Views.FormatSettingsDialog.txtNone":"없음","Common.Views.FormatSettingsDialog.txtNumber":"숫자","Common.Views.FormatSettingsDialog.txtPercentage":"백분율","Common.Views.FormatSettingsDialog.txtSample":"샘플 :","Common.Views.FormatSettingsDialog.txtScientific":"지수","Common.Views.FormatSettingsDialog.txtText":"텍스트","Common.Views.FormatSettingsDialog.txtTime":"시간","Common.Views.FormatSettingsDialog.txtUpto1":"한 자리까지 (1/3)","Common.Views.FormatSettingsDialog.txtUpto2":"두 자리까지 (12/25)","Common.Views.FormatSettingsDialog.txtUpto3":"세 자리까지 (131/135)","Common.Views.Header.ariaQuickAccessToolbar":"빠른 실행 도구 모음","Common.Views.Header.labelCoUsersDescr":"파일을 편집 중인 사용자:","Common.Views.Header.textAddFavorite":"즐겨찾기에 추가","Common.Views.Header.textAdvSettings":"고급 설정","Common.Views.Header.textBack":"파일 위치 열기","Common.Views.Header.textClose":"파일 닫기","Common.Views.Header.textCompactView":"보기 컴팩트 도구 모음","Common.Views.Header.textHideLines":"눈금자 숨기기","Common.Views.Header.textHideStatusBar":"상태 표시 줄 숨기기","Common.Views.Header.textPrint":"인쇄","Common.Views.Header.textReadOnly":"읽기 전용","Common.Views.Header.textRemoveFavorite":"즐겨찾기에서 제거","Common.Views.Header.textSaveBegin":"저장 중 ...","Common.Views.Header.textSaveChanged":"수정된","Common.Views.Header.textSaveEnd":"모든 변경 사항이 저장되었습니다","Common.Views.Header.textSaveExpander":"모든 변경 사항이 저장되었습니다","Common.Views.Header.textShare":"공유","Common.Views.Header.textZoom":"확대/축소","Common.Views.Header.tipAccessRights":"문서 액세스 권한 관리","Common.Views.Header.tipCustomizeQuickAccessToolbar":"빠른 실행 도구 모음 사용자 지정","Common.Views.Header.tipDownload":"파일을 다운로드","Common.Views.Header.tipGoEdit":"현재 파일 편집","Common.Views.Header.tipPrint":"파일 출력","Common.Views.Header.tipPrintQuick":"빠른 인쇄","Common.Views.Header.tipRedo":"다시 실행","Common.Views.Header.tipSave":"저장","Common.Views.Header.tipSearch":"검색","Common.Views.Header.tipUndo":"실행 취소","Common.Views.Header.tipUndock":"별도 창으로 이동","Common.Views.Header.tipUsers":"사용자 보기","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.textHighlightDeleted":"결과 강조 삭제","Common.Views.History.textMore":"더 보기","Common.Views.History.textRestore":"복구","Common.Views.History.textShow":"확장","Common.Views.History.textShowAll":"자세한 변경 사항 표시","Common.Views.History.textVer":"ver.","Common.Views.History.textVersionHistory":"버전 기록","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.textFromFile":"파일에서","Common.Views.ListSettingsDialog.textFromStorage":"스토리지로 부터","Common.Views.ListSettingsDialog.textFromUrl":"URL로부터","Common.Views.ListSettingsDialog.textNumbering":"번호 매기기","Common.Views.ListSettingsDialog.textSelect":"선택해서 가져오다","Common.Views.ListSettingsDialog.tipChange":"글 머리 기호 변경","Common.Views.ListSettingsDialog.txtBullet":"단추","Common.Views.ListSettingsDialog.txtColor":"색상","Common.Views.ListSettingsDialog.txtImage":"이미지","Common.Views.ListSettingsDialog.txtImport":"가져오기","Common.Views.ListSettingsDialog.txtNewBullet":"새로운 글머리 기호","Common.Views.ListSettingsDialog.txtNewImage":"새로운 이미지","Common.Views.ListSettingsDialog.txtNone":"없음","Common.Views.ListSettingsDialog.txtOfText":"전체의 %","Common.Views.ListSettingsDialog.txtSize":"크기","Common.Views.ListSettingsDialog.txtStart":"시작","Common.Views.ListSettingsDialog.txtSymbol":"기호","Common.Views.ListSettingsDialog.txtTitle":"목록 설정","Common.Views.ListSettingsDialog.txtType":"형식","Common.Views.MacrosAiDialog.textAreaPlaceholder":"쿼리에 사용할 프롬프트를 입력하세요","Common.Views.MacrosAiDialog.textCreate":"만들기","Common.Views.MacrosDialog.textAutostart":"자동 시작","Common.Views.MacrosDialog.textConvertFromVBA":"VBA에서 변환","Common.Views.MacrosDialog.textConvertMacrosFromVBA":"VBA 매크로 변환","Common.Views.MacrosDialog.textCopy":"복사","Common.Views.MacrosDialog.textCreateFromDesc":"설명으로부터 만들기","Common.Views.MacrosDialog.textCreateMacrosFromDesc":"설명을 기반으로 매크로 만들기","Common.Views.MacrosDialog.textCustomFunction":"사용자 정의 함수","Common.Views.MacrosDialog.textCustomFunctions":"사용자 정의 함수","Common.Views.MacrosDialog.textDebug":"디버그","Common.Views.MacrosDialog.textDelete":"삭제","Common.Views.MacrosDialog.textFunctions":"함수","Common.Views.MacrosDialog.textLoading":"로드 중 ...","Common.Views.MacrosDialog.textMacro":"매크로","Common.Views.MacrosDialog.textMacros":"매크로","Common.Views.MacrosDialog.textMakeAutostart":"자동 시작 설정","Common.Views.MacrosDialog.textRename":"이름 바꾸기","Common.Views.MacrosDialog.textRun":"실행","Common.Views.MacrosDialog.textSave":"저장","Common.Views.MacrosDialog.textTitle":"매크로","Common.Views.MacrosDialog.textUnMakeAutostart":"자동 시작 해제","Common.Views.MacrosDialog.tipAI":"AI","Common.Views.MacrosDialog.tipFunctionAdd":"사용자 정의 함수 추가","Common.Views.MacrosDialog.tipFunctionCopy":"사용자 정의 함수 복사","Common.Views.MacrosDialog.tipFunctionDelete":"사용자 정의 함수 삭제","Common.Views.MacrosDialog.tipFunctionRename":"사용자 정의 함수 이름 바꾸기","Common.Views.MacrosDialog.tipMacrosAdd":"매크로 추가","Common.Views.MacrosDialog.tipMacrosCopy":"매크로 복사","Common.Views.MacrosDialog.tipMacrosDebug":"매크로 디버그","Common.Views.MacrosDialog.tipMacrosRename":"매크로 이름 바꾸기","Common.Views.MacrosDialog.tipMacrosRun":"매크로 실행","Common.Views.MacrosDialog.tipRedo":"다시 실행","Common.Views.MacrosDialog.tipUndo":"실행 취소","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":"탭","Common.Views.OpenDialog.txtTitle":"%1 옵션 선택","Common.Views.OpenDialog.txtTitleProtected":"보호 된 파일","Common.Views.PasswordDialog.txtDescription":"문서 보호용 비밀번호를 세팅하세요","Common.Views.PasswordDialog.txtIncorrectPwd":"확인 비밀번호가 같지 않음","Common.Views.PasswordDialog.txtPassword":"암호","Common.Views.PasswordDialog.txtRepeat":"비밀번호 반복","Common.Views.PasswordDialog.txtTitle":"비밀번호 설정","Common.Views.PasswordDialog.txtWarning":"주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.","Common.Views.PluginDlg.textDock":"플러그인 고정","Common.Views.PluginDlg.textLoading":"불러오는 중","Common.Views.PluginPanel.textClosePanel":"플러그인 닫기","Common.Views.PluginPanel.textHidePanel":"플러그인 축소","Common.Views.PluginPanel.textLoading":"불러오는 중","Common.Views.PluginPanel.textUndock":"플러그인 고정 해제","Common.Views.Plugins.groupCaption":"플러그인","Common.Views.Plugins.strPlugins":"플러그인","Common.Views.Plugins.textBackgroundPlugins":"백그라운드 플러그인","Common.Views.Plugins.textClosePanel":"플러그 인 닫기","Common.Views.Plugins.textLoading":"불러오는 중","Common.Views.Plugins.textSettings":"설정","Common.Views.Plugins.textStart":"시작","Common.Views.Plugins.textStop":"정지","Common.Views.Plugins.textTheListOfBackgroundPlugins":"백그라운드 플러그인 목록","Common.Views.Plugins.tipMore":"더 보기","Common.Views.Protection.hintAddPwd":"비밀번호로 암호화","Common.Views.Protection.hintDelPwd":"비밀번호 삭제","Common.Views.Protection.hintPwd":"비밀번호 변경 또는 삭제","Common.Views.Protection.hintSignature":"디지털 서명 또는 서명 라인을 추가 ","Common.Views.Protection.txtAddPwd":"비밀번호 추가","Common.Views.Protection.txtChangePwd":"비밀번호를 변경","Common.Views.Protection.txtDeletePwd":"비밀번호 삭제","Common.Views.Protection.txtEncrypt":"암호화","Common.Views.Protection.txtInvisibleSignature":"디지털 서명을 추가","Common.Views.Protection.txtSignature":"서명","Common.Views.Protection.txtSignatureLine":"서명란 추가","Common.Views.RecentFiles.txtOpenRecent":"최근 열기","Common.Views.RenameDialog.textName":"파일 이름","Common.Views.RenameDialog.txtInvalidName":"파일 이름에 다음 문자를 포함 할 수 없습니다 :","Common.Views.ReviewChanges.hintNext":"다음 변경 사항","Common.Views.ReviewChanges.hintPrev":"이전 변경으로","Common.Views.ReviewChanges.strFast":"빠르게","Common.Views.ReviewChanges.strFastDesc":"실시간 협력 편집. 모든 변경사항들은 자동적으로 저장됨.","Common.Views.ReviewChanges.strStrict":"엄격한","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":"변경 내역 추적","Common.Views.ReviewChanges.tipReviewView":"변경사항이 표시될 모드 선택","Common.Views.ReviewChanges.tipSetDocLang":"문서 언어 설정","Common.Views.ReviewChanges.tipSetSpelling":"맞춤법 검사","Common.Views.ReviewChanges.tipSharing":"문서 액세스 권한 관리","Common.Views.ReviewChanges.txtAccept":"수락","Common.Views.ReviewChanges.txtAcceptAll":"모든 변경 내용 적용","Common.Views.ReviewChanges.txtAcceptChanges":"변경 접수","Common.Views.ReviewChanges.txtAcceptCurrent":"현재 변경 내용 적용","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":"최종","Common.Views.ReviewChanges.txtHistory":"버전 기록","Common.Views.ReviewChanges.txtMarkup":"모든 변경 (편집)","Common.Views.ReviewChanges.txtMarkupCap":"마크업","Common.Views.ReviewChanges.txtNext":"다음","Common.Views.ReviewChanges.txtOriginal":"모든 변경 거부됨 (미리보기)","Common.Views.ReviewChanges.txtOriginalCap":"오리지널","Common.Views.ReviewChanges.txtPrev":"이전","Common.Views.ReviewChanges.txtReject":"거부","Common.Views.ReviewChanges.txtRejectAll":"모든 변경 사항 거부","Common.Views.ReviewChanges.txtRejectChanges":"변경 거부","Common.Views.ReviewChanges.txtRejectCurrent":"현재 변경 거부","Common.Views.ReviewChanges.txtSharing":"공유","Common.Views.ReviewChanges.txtSpelling":"맞춤법 검사","Common.Views.ReviewChanges.txtTurnon":"변경 내역 추적","Common.Views.ReviewChanges.txtView":"디스플레이 모드","Common.Views.ReviewPopover.textAdd":"추가","Common.Views.ReviewPopover.textAddReply":"답장 추가","Common.Views.ReviewPopover.textCancel":"취소","Common.Views.ReviewPopover.textClose":"닫기","Common.Views.ReviewPopover.textComment":"코멘트","Common.Views.ReviewPopover.textEdit":"확인","Common.Views.ReviewPopover.textEnterComment":"여기에 의견을 입력하십시오","Common.Views.ReviewPopover.textMention":"+이 내용은 이 문서에 접근할 시 이메일을 통해 전해 질 것입니다.","Common.Views.ReviewPopover.textMentionNotify":"+이 내용은 이메일을 통해 사용자에게 알려 줄 것 입니다.","Common.Views.ReviewPopover.textOpenAgain":"다시 열기","Common.Views.ReviewPopover.textReply":"답변","Common.Views.ReviewPopover.textResolve":"해결","Common.Views.ReviewPopover.textViewResolved":"코멘트를 다시 열 수 있는 권한이 없습니다","Common.Views.ReviewPopover.txtDeleteTip":"삭제","Common.Views.ReviewPopover.txtEditTip":"편집","Common.Views.SaveAsDlg.textLoading":"로드 중","Common.Views.SaveAsDlg.textTitle":"저장 폴더","Common.Views.SearchPanel.textByColumns":"열 기준","Common.Views.SearchPanel.textByRows":"행 기준","Common.Views.SearchPanel.textCaseSensitive":"대소 문자를 구분합니다","Common.Views.SearchPanel.textCell":"셀","Common.Views.SearchPanel.textCloseSearch":"검색 닫기","Common.Views.SearchPanel.textContentChanged":"문서가 변경되었습니다.","Common.Views.SearchPanel.textFind":"찾기","Common.Views.SearchPanel.textFindAndReplace":"찾기 및 바꾸기","Common.Views.SearchPanel.textFormula":"수식","Common.Views.SearchPanel.textFormulas":"수식","Common.Views.SearchPanel.textItemEntireCell":"전체 셀 내용","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0} 항목이 성공적으로 대체되었습니다.","Common.Views.SearchPanel.textLookIn":"검색 범위","Common.Views.SearchPanel.textMatchUsingRegExp":"정규 표현식을 사용하여 일치하는 것을 찾기","Common.Views.SearchPanel.textName":"이름","Common.Views.SearchPanel.textNoMatches":"일치 하는 항목 없음","Common.Views.SearchPanel.textNoSearchResults":"검색결과 없음","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1} 항목이 대체되었습니다. 남은 {2} 항목은 다른 사용자에 의해 잠겨 있습니다.","Common.Views.SearchPanel.textReplace":"바꾸기","Common.Views.SearchPanel.textReplaceAll":"모두 바꾸기","Common.Views.SearchPanel.textReplaceWith":"다음으로 교체","Common.Views.SearchPanel.textSearch":"검색","Common.Views.SearchPanel.textSearchAgain":"{0}정확한 결과를 보려면 새 검색 {1}을(를) 수행하십시오.","Common.Views.SearchPanel.textSearchHasStopped":"검색이 중지되었습니다","Common.Views.SearchPanel.textSearchOptions":"검색 옵션","Common.Views.SearchPanel.textSearchResults":"검색결과: {0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"검색 결과","Common.Views.SearchPanel.textSelectDataRange":"데이터 범위 선택","Common.Views.SearchPanel.textSheet":"시트","Common.Views.SearchPanel.textSpecificRange":"특정 범위","Common.Views.SearchPanel.textTooManyResults":"표시할 결과가 너무 많습니다.","Common.Views.SearchPanel.textValue":"값","Common.Views.SearchPanel.textValues":"값","Common.Views.SearchPanel.textWholeWords":"전체 단어 만","Common.Views.SearchPanel.textWithin":"내부에","Common.Views.SearchPanel.textWorkbook":"통합 문서","Common.Views.SearchPanel.tipNextResult":"다음결과","Common.Views.SearchPanel.tipPreviousResult":"이전 결과","Common.Views.SelectFileDlg.textLoading":"로드 중","Common.Views.SelectFileDlg.textTitle":"데이터 소스 선택","Common.Views.ShapeShadowDialog.txtAngle":"각도","Common.Views.ShapeShadowDialog.txtDistance":"간격","Common.Views.ShapeShadowDialog.txtSize":"크기","Common.Views.ShapeShadowDialog.txtTitle":"그림자 조정","Common.Views.ShapeShadowDialog.txtTransparency":"투명도","Common.Views.ShortcutsDialog.txtDescription":"세부 설명","Common.Views.ShortcutsDialog.txtEmpty":"일치하는 결과가 없습니다. 검색 조건을 조정하세요.","Common.Views.ShortcutsDialog.txtRestoreAll":"모든 항목을 기본 설정으로 복원","Common.Views.ShortcutsDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsDialog.txtRestoreDescription":"모든 바로가기 설정이 기본값으로 복원됩니다.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"기본 설정으로 복원","Common.Views.ShortcutsDialog.txtSearch":"검색","Common.Views.ShortcutsDialog.txtTitle":"키보드 단축키","Common.Views.ShortcutsEditDialog.txtAction":"동작","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"원하는 바로가기 키를 입력하세요","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"액션에서 사용하는 바로가기 %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"액션 %1에서 사용하는 바로가기 키이며 변경할 수 없습니다.","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"액션 %1에서 사용되는 바로가기","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"액션 %1에서 사용하는 바로가기 키이며 변경할 수 없습니다.","Common.Views.ShortcutsEditDialog.txtNewShortcut":"새로운 바로가기","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"계속하시겠습니까?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"\"%1\" 작업에 대한 모든 바로가기 키가 기본값으로 복원됩니다.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"기본 설정으로 복원","Common.Views.ShortcutsEditDialog.txtTitle":"바로가기 편집","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"원하는 바로가기 키를 입력하세요","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":"이미지 선택","Common.Views.SignDialog.textSignature":"서명은 처럼 보임","Common.Views.SignDialog.textTitle":"서명문서","Common.Views.SignDialog.textUseImage":"또는 서명으로 그림을 사용하려면 '이미지 선택'을 클릭","Common.Views.SignDialog.textValid":"%1에서 %2까지 유효","Common.Views.SignDialog.tipFontName":"폰트명","Common.Views.SignDialog.tipFontSize":"글꼴 크기","Common.Views.SignSettingsDialog.textAllowComment":"서명 대화창에 서명자의 코멘트 추가 허용","Common.Views.SignSettingsDialog.textDefInstruction":"이 문서에 서명하기 전에, 서명하는 내용이 정확한지 확인하세요.","Common.Views.SignSettingsDialog.textInfoEmail":"이메일","Common.Views.SignSettingsDialog.textInfoName":"이름","Common.Views.SignSettingsDialog.textInfoTitle":"서명자 타이틀","Common.Views.SignSettingsDialog.textInstructions":"서명자용 지침","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":"라벨은 비워 둘 수 없습니다.","SSE.Controllers.DataTab.strSheet":"시트","SSE.Controllers.DataTab.textColumns":"열","SSE.Controllers.DataTab.textContinue":"계속","SSE.Controllers.DataTab.textEmptyUrl":"URL을 지정해야 합니다.","SSE.Controllers.DataTab.textRows":"행","SSE.Controllers.DataTab.textTurnOff":"자동 업데이트 해제","SSE.Controllers.DataTab.textWizard":"텍스트 나누기","SSE.Controllers.DataTab.txtContinue":"계속","SSE.Controllers.DataTab.txtDataValidation":"데이터 유효성","SSE.Controllers.DataTab.txtExpand":"확장","SSE.Controllers.DataTab.txtExpandRemDuplicates":"선택한 콘텐츠 옆의 데이터는 삭제되지 않습니다. 인접 데이터를 포함하도록 선택 영역을 확장하시겠습니까, 아니면 현재 선택한 셀을 계속 사용하시겠습니까?","SSE.Controllers.DataTab.txtExtendDataValidation":"이 선택에는 데이터 확인 설정이 없는 데이터가 포함되어 있습니다.
데이터 유효성 체크를 이 장치로 하시겠습니까?","SSE.Controllers.DataTab.txtImportWizard":"텍스트 가져오기 마법사","SSE.Controllers.DataTab.txtMaxFeasible":"가능한 해의 최대 개수에 도달했습니다. 그래도 계속하시겠습니까?","SSE.Controllers.DataTab.txtMaxIterations":"최대 반복 횟수 제한에 도달했습니다. 그래도 계속하시겠습니까?","SSE.Controllers.DataTab.txtMaxSubproblem":"하위 문제의 최대 개수에 도달했습니다. 그래도 계속하시겠습니까?","SSE.Controllers.DataTab.txtMaxTime":"최대 시간 제한에 도달했습니다. 그래도 계속하시겠습니까?","SSE.Controllers.DataTab.txtRemDuplicates":"중복된 항목 제거","SSE.Controllers.DataTab.txtRemoveDataValidation":"이 선택에는 여러 확인 유형이 포함됩니다.
현재 설정을 지우고 계속하시겠습니까?","SSE.Controllers.DataTab.txtRemSelected":"선택한 위치에서 삭제","SSE.Controllers.DataTab.txtStop":"정지","SSE.Controllers.DataTab.txtTrialSolution":"체험판 솔루션 보기","SSE.Controllers.DataTab.txtUrlTitle":"데이터 URL 붙여넣기","SSE.Controllers.DocumentHolder.alignmentText":"정렬","SSE.Controllers.DocumentHolder.centerText":"Center","SSE.Controllers.DocumentHolder.deleteColumnText":"열 삭제","SSE.Controllers.DocumentHolder.deleteRowText":"행 삭제","SSE.Controllers.DocumentHolder.deleteText":"Delete","SSE.Controllers.DocumentHolder.errorInvalidLink":"링크 참조가 존재하지 않습니다. 링크를 수정하거나 삭제하십시오.","SSE.Controllers.DocumentHolder.guestText":"Guest","SSE.Controllers.DocumentHolder.insertColumnLeftText":"왼쪽 열","SSE.Controllers.DocumentHolder.insertColumnRightText":"오른쪽 열","SSE.Controllers.DocumentHolder.insertRowAboveText":"위의 행","SSE.Controllers.DocumentHolder.insertRowBelowText":"행 아래","SSE.Controllers.DocumentHolder.insertText":"Insert","SSE.Controllers.DocumentHolder.leftText":"Left","SSE.Controllers.DocumentHolder.notcriticalErrorTitle":"경고","SSE.Controllers.DocumentHolder.rightText":"Right","SSE.Controllers.DocumentHolder.textArgument":"인수","SSE.Controllers.DocumentHolder.textAutoCorrectSettings":"자동 고침 옵션","SSE.Controllers.DocumentHolder.textChangeColumnWidth":"열 너비 {0} 기호 ({1} 픽셀)","SSE.Controllers.DocumentHolder.textChangeRowHeight":"행 높이 {0} 점 ({1} 픽셀)","SSE.Controllers.DocumentHolder.textCtrlClick":"실행하려면 한 번만 클릭하십시오. 누르고 있으면 현재 셀이 선택됩니다.","SSE.Controllers.DocumentHolder.textInsertLeft":"왼쪽에 삽입","SSE.Controllers.DocumentHolder.textInsertTop":"위의 행 삽입","SSE.Controllers.DocumentHolder.textPasteSpecial":"특수기호 붙이기","SSE.Controllers.DocumentHolder.textStopExpand":"자동으로 표 확장 끔","SSE.Controllers.DocumentHolder.textSym":"sym","SSE.Controllers.DocumentHolder.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Controllers.DocumentHolder.txtAboveAve":"평균 이상","SSE.Controllers.DocumentHolder.txtAddBottom":"아래쪽 테두리 추가","SSE.Controllers.DocumentHolder.txtAddFractionBar":"분수 막대 추가","SSE.Controllers.DocumentHolder.txtAddHor":"가로선 추가","SSE.Controllers.DocumentHolder.txtAddLB":"왼쪽 하단 추가","SSE.Controllers.DocumentHolder.txtAddLeft":"왼쪽 테두리 추가","SSE.Controllers.DocumentHolder.txtAddLT":"왼쪽 상단 줄 추가","SSE.Controllers.DocumentHolder.txtAddRight":"오른쪽 테두리 추가","SSE.Controllers.DocumentHolder.txtAddTop":"위쪽 테두리 추가","SSE.Controllers.DocumentHolder.txtAddVer":"세로선 추가","SSE.Controllers.DocumentHolder.txtAlignToChar":"문자에 정렬","SSE.Controllers.DocumentHolder.txtAll":"(전체)","SSE.Controllers.DocumentHolder.txtAllTableHint":"열 머리글, 데이터 및 총 행을 포함하여 테이블 또는 지정된 테이블 열의 전체 내용을 반환합니다","SSE.Controllers.DocumentHolder.txtAnd":"그리고","SSE.Controllers.DocumentHolder.txtBegins":"~와 함께 시작하다.\n~로 시작하다","SSE.Controllers.DocumentHolder.txtBelowAve":"평균 이하","SSE.Controllers.DocumentHolder.txtBlanks":"(빈칸들)","SSE.Controllers.DocumentHolder.txtBorderProps":"테두리 속성","SSE.Controllers.DocumentHolder.txtBottom":"Bottom","SSE.Controllers.DocumentHolder.txtByField":"%2의 %1","SSE.Controllers.DocumentHolder.txtColumn":"열","SSE.Controllers.DocumentHolder.txtColumnAlign":"열 정렬","SSE.Controllers.DocumentHolder.txtContains":"포함","SSE.Controllers.DocumentHolder.txtCopySuccess":"클립보드로 링크 복사됨","SSE.Controllers.DocumentHolder.txtDataTableHint":"테이블 또는 지정된 테이블 열의 데이터 셀을 반환합니다","SSE.Controllers.DocumentHolder.txtDecreaseArg":"인수 크기 감소","SSE.Controllers.DocumentHolder.txtDeleteArg":"인수 삭제","SSE.Controllers.DocumentHolder.txtDeleteBreak":"나누기 삭제","SSE.Controllers.DocumentHolder.txtDeleteChars":"둘러싸는 문자 삭제","SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators":"둘러싸는 문자 및 구분 기호 삭제","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.txtFilterTop":"위","SSE.Controllers.DocumentHolder.txtFormula":"수식","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.txtHeadersTableHint":"테이블 또는 지정된 테이블 열에 대한 열 머리글을 반환합니다","SSE.Controllers.DocumentHolder.txtHeight":"높이","SSE.Controllers.DocumentHolder.txtHideBottom":"아래쪽 테두리 숨기기","SSE.Controllers.DocumentHolder.txtHideBottomLimit":"하단 제한 숨기기","SSE.Controllers.DocumentHolder.txtHideCloseBracket":"닫는 대괄호 숨기기","SSE.Controllers.DocumentHolder.txtHideDegree":"학위 숨기기","SSE.Controllers.DocumentHolder.txtHideHor":"가로 선 숨기기","SSE.Controllers.DocumentHolder.txtHideLB":"왼쪽 하단 줄 숨기기","SSE.Controllers.DocumentHolder.txtHideLeft":"왼쪽 테두리 숨기기","SSE.Controllers.DocumentHolder.txtHideLT":"왼쪽 상단 줄 숨기기","SSE.Controllers.DocumentHolder.txtHideOpenBracket":"여는 대괄호 숨기기","SSE.Controllers.DocumentHolder.txtHidePlaceholder":"자리 표시 자 숨기기","SSE.Controllers.DocumentHolder.txtHideRight":"오른쪽 테두리 숨기기","SSE.Controllers.DocumentHolder.txtHideTop":"위쪽 테두리 숨기기","SSE.Controllers.DocumentHolder.txtHideTopLimit":"상한값 숨기기","SSE.Controllers.DocumentHolder.txtHideVer":"수직선 숨기기","SSE.Controllers.DocumentHolder.txtImportWizard":"텍스트 가져오기 마법사","SSE.Controllers.DocumentHolder.txtIncreaseArg":"인수 크기 늘리기","SSE.Controllers.DocumentHolder.txtInsertArgAfter":"뒤에 인수를 삽입하십시오.","SSE.Controllers.DocumentHolder.txtInsertArgBefore":"앞에 인수를 삽입하십시오.","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.txtOther":"기타","SSE.Controllers.DocumentHolder.txtOverbar":"텍스트 위에 바","SSE.Controllers.DocumentHolder.txtPaste":"붙여 넣기","SSE.Controllers.DocumentHolder.txtPasteBorders":"테두리없는 수식","SSE.Controllers.DocumentHolder.txtPasteColWidths":"수식 + 열 너비","SSE.Controllers.DocumentHolder.txtPasteDestFormat":"대상 서식 지정","SSE.Controllers.DocumentHolder.txtPasteFormat":"서식 붙이기 만 붙여 넣기","SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat":"수식 + 숫자 형식","SSE.Controllers.DocumentHolder.txtPasteFormulas":"수식 만 붙여 넣기","SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat":"수식 + 모든 서식 지정","SSE.Controllers.DocumentHolder.txtPasteLink":"붙여 넣기 링크","SSE.Controllers.DocumentHolder.txtPasteLinkPicture":"연결된 그림","SSE.Controllers.DocumentHolder.txtPasteMerge":"조건부 서식 병합","SSE.Controllers.DocumentHolder.txtPastePicture":"그림","SSE.Controllers.DocumentHolder.txtPasteSourceFormat":"소스 서식 지정","SSE.Controllers.DocumentHolder.txtPasteTranspose":"Transpose","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":"위 첨자 제거","SSE.Controllers.DocumentHolder.txtRowHeight":"행 높이","SSE.Controllers.DocumentHolder.txtScriptsAfter":"텍스트 뒤의 스크립트","SSE.Controllers.DocumentHolder.txtScriptsBefore":"텍스트 앞의 스크립트","SSE.Controllers.DocumentHolder.txtShowBottomLimit":"아래쪽 한계 표시","SSE.Controllers.DocumentHolder.txtShowCloseBracket":"닫는 괄호 표시","SSE.Controllers.DocumentHolder.txtShowDegree":"학위 표시","SSE.Controllers.DocumentHolder.txtShowOpenBracket":"여는 대괄호 표시","SSE.Controllers.DocumentHolder.txtShowPlaceholder":"Show placeholder","SSE.Controllers.DocumentHolder.txtShowTopLimit":"상한 표시","SSE.Controllers.DocumentHolder.txtSorting":"정렬","SSE.Controllers.DocumentHolder.txtSortSelected":"정렬 선택","SSE.Controllers.DocumentHolder.txtStretchBrackets":"스트레치 괄호","SSE.Controllers.DocumentHolder.txtThisRowHint":"지정된 열의 이 행만 선택","SSE.Controllers.DocumentHolder.txtTop":"Top","SSE.Controllers.DocumentHolder.txtTotalsTableHint":"테이블 또는 지정된 테이블 열의 총 행을 반환합니다","SSE.Controllers.DocumentHolder.txtUnderbar":"텍스트 아래에 바","SSE.Controllers.DocumentHolder.txtUndoExpansion":"테이블 자동확장 하지 않기","SSE.Controllers.DocumentHolder.txtUseTextImport":"텍스트 마법사를 사용","SSE.Controllers.DocumentHolder.txtValue":"값","SSE.Controllers.DocumentHolder.txtWarnUrl":"이 링크는 장치와 데이터에 손상을 줄 수 있습니다.
계속하시겠습니까?","SSE.Controllers.DocumentHolder.txtWidth":"너비","SSE.Controllers.DocumentHolder.warnFilterError":"값 필터를 적용하려면 \"값\" 영역에 하나 이상의 필드가 있어야 합니다.","SSE.Controllers.FormulaDialog.sCategoryAll":"모든","SSE.Controllers.FormulaDialog.sCategoryCube":"정육면체","SSE.Controllers.FormulaDialog.sCategoryCustom":"사용자 지정","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.sCategoryStatistical":"통계","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.textSave":"저장","SSE.Controllers.LeftMenu.textSearch":"Search","SSE.Controllers.LeftMenu.textSelectPath":"복사본을 저장할 새 이름을 입력하세요","SSE.Controllers.LeftMenu.textSheet":"시트","SSE.Controllers.LeftMenu.textValues":"값","SSE.Controllers.LeftMenu.textWarning":"경고","SSE.Controllers.LeftMenu.textWithin":"within","SSE.Controllers.LeftMenu.textWorkbook":"통합 문서","SSE.Controllers.LeftMenu.txtUntitled":"제목없음","SSE.Controllers.LeftMenu.warnDownloadAs":"이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?","SSE.Controllers.LeftMenu.warnDownloadCsv":"CSV 형식은 여러 시트 파일과 텍스트 외의 모든 요소를 저장할 수 없습니다.
선택한 시트만 CSV로 저장하려면 확인을 누르세요.
전체 스프레드시트와 모든 기능을 저장하려면 취소를 클릭하고 다른 형식을 선택하세요.","SSE.Controllers.LeftMenu.warnDownloadCsvSheets":"CSV 형식은 다중 시트 파일을 저장하지 않습니다.
선택한 형식을 유지하고 현재 시트만 저장하려면 저장을 누르세요.
현재 스프레드시트를 저장하려면 취소를 누르고 다른 형식으로 저장하세요.","SSE.Controllers.LeftMenu.warnDownloadOds":"제한된 서식 지원으로 인해 이 파일을 저장하면 일부 수식, 셀 서식 또는 포함된 개체가 손실될 수 있습니다.
계속하시겠습니까?","SSE.Controllers.Main.confirmAddCellWatches":"이 작업으로 {0}개의 셀 모니터링이 추가됩니다.
계속하시겠습니까?","SSE.Controllers.Main.confirmAddCellWatchesMax":"이 작업은 메모리 저장 이유로 {0}개의 셀 모니터링만 추가합니다.
계속하시겠습니까?","SSE.Controllers.Main.confirmMaxChangesSize":"작업의 크기가 서버에 설정된 제한을 초과합니다.
마지막 작업을 취소하려면 '실행 취소'를 누르고 작업을 로컬로 유지하려면 '계속'을 누르세요 (파일을 다운로드하거나 내용을 복사하여 데이터 손실이 없도록 하십시오).","SSE.Controllers.Main.confirmMoveCellRange":"대상 셀 범위에 데이터가 포함될 수 있습니다. 작업을 계속 하시겠습니까?","SSE.Controllers.Main.confirmPutMergeRange":"원본 데이터에 병합 된 셀이 있습니다.
테이블에 붙여 넣기 전에 병합되지 않았습니다.","SSE.Controllers.Main.confirmReplaceFormulaInTable":"머리글 행의 수식이 삭제되고 정적 텍스트로 변환됩니다.
계속하시겠습니까?","SSE.Controllers.Main.confirmReplaceHFPicture":"헤더 각 섹션에는 하나의 그림만 삽입할 수 있습니다.
기존 그림을 대체하려면 '대체'를 누르세요.
기존 그림을 유지하려면 '유지'를 누르세요.","SSE.Controllers.Main.convertationTimeoutText":"전환 시간 초과를 초과했습니다.","SSE.Controllers.Main.criticalErrorExtText":"문서 목록으로 돌아가려면 \"OK\"를 누르십시오.","SSE.Controllers.Main.criticalErrorExtTextClose":"\"확인\"을 눌러 편집기를 닫으세요.","SSE.Controllers.Main.criticalErrorTitle":"오류","SSE.Controllers.Main.downloadErrorText":"다운로드하지 못했습니다.","SSE.Controllers.Main.downloadTextText":"스프레드시트 다운로드 중 ...","SSE.Controllers.Main.downloadTitleText":"스프레드시트 다운로드 중","SSE.Controllers.Main.errNoDuplicates":"중복 값이 ​​없습니다.","SSE.Controllers.Main.errorAccessDeny":"권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.","SSE.Controllers.Main.errorArgsRange":"입력 된 수식에 오류가 있습니다.
잘못된 인수 범위가 사용되었습니다.","SSE.Controllers.Main.errorAutoFilterChange":"이 작업은 워크시트의 테이블에 있는 셀을 이동하려고 하기 때문에 허용되지 않습니다.","SSE.Controllers.Main.errorAutoFilterChangeFormatTable":"테이블의 일부를 이동할 수 없으므로 선택한 셀에 대해 작업을 수행 할 수 없습니다.
전체 데이터를 이동하여 다시 시도하도록 다른 데이터 범위를 선택하십시오.","SSE.Controllers.Main.errorAutoFilterDataRange":"선택한 셀 범위에서 작업을 수행 할 수 없습니다.
기존 데이터 범위와 다른 데이터 범위를 선택하고 다시 시도하십시오.","SSE.Controllers.Main.errorAutoFilterHiddenRange":"영역에 필터링 된 셀이 포함되어있어 작업을 수행 할 수 없습니다.
필터링 된 요소를 숨김 해제하고 다시 시도하십시오.","SSE.Controllers.Main.errorBadImageUrl":"이미지 URL이 잘못되었습니다.","SSE.Controllers.Main.errorCalculatedItemInPageField":"항목을 추가하거나 수정할 수 없습니다. 피벗 테이블 보고서에 이 필드가 필터로 설정되어 있습니다.","SSE.Controllers.Main.errorCannotPasteImg":"클립보드에서 이 이미지를 붙여넣을 수 없지만, 장치에 저장한 후 \n삽입하거나 텍스트 없이 이미지를 복사하여 스프레드시트에 붙여넣을 수 있습니다.","SSE.Controllers.Main.errorCannotUngroup":"그룹을 해제할 수 없습니다. 윤곽선을 시작하려면 세부 행 또는 열을 선택하고 그룹화하십시오.","SSE.Controllers.Main.errorCannotUseCommandProtectedSheet":"보호된 시트에서는 이 명령을 사용할 수 없습니다. 이 명령을 사용하려면 시트 보호를 해제하세요.
비밀번호를 입력하라는 메시지가 표시될 수 있습니다.","SSE.Controllers.Main.errorChangeArray":"배열의 일부를 변경할 수 없습니다.","SSE.Controllers.Main.errorChangeFilteredRange":"이렇게 하면 워크시트의 필터 범위가 변경됩니다.
이 작업을 완료하려면 \"자동 필터\"를 삭제하십시오.","SSE.Controllers.Main.errorChangeOnProtectedSheet":"변경하려는 셀 또는 차트가 보호된 워크시트에 있습니다.
변경하려면 워크시트의 잠금을 해제하세요. 입력한 비밀번호를 수정해야 할 수도 있습니다.","SSE.Controllers.Main.errorCircularReference":"수식이 직접 또는 간접적으로 자신의 셀을 참조하는 순환 참조가 하나 이상 있습니다.
이 참조를 제거하거나 변경하거나, 수식을 다른 셀로 옮겨 보세요.","SSE.Controllers.Main.errorCoAuthoringDisconnect":"서버 연결이 끊어졌습니다. 문서를 지금 편집 할 수 없습니다.","SSE.Controllers.Main.errorConnectToServer":"문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.
'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.","SSE.Controllers.Main.errorConvertXml":"지원되지 않는 형식의 파일입니다.
XML 스프레드시트 2003 형식만 사용할 수 있습니다.","SSE.Controllers.Main.errorCopyDisabled":"보안상의 이유로 이 문서의 내용은 복사할 수 없습니다.","SSE.Controllers.Main.errorCopyMultiselectArea":"이 명령은 여러 선택 항목과 함께 사용할 수 없습니다.
단일 범위를 선택하고 다시 시도하십시오.","SSE.Controllers.Main.errorCountArg":"입력 된 수식에 오류가 있습니다.
잘못된 수의 인수가 사용되었습니다.","SSE.Controllers.Main.errorCountArgExceed":"입력 된 수식에 오류가 있습니다.
인수 수가 초과되었습니다.","SSE.Controllers.Main.errorCreateDefName":"기존 명명 된 범위를 편집 할 수 없으며 일부는 편집 중임에 따라 현재 명명 된 범위를 만들 수 없습니다.","SSE.Controllers.Main.errorCreateRange":"현재 일부 범위가 편집 중이어서 기존 범위를 편집할 수 없으며 새로운 범위를 생성할 수 없습니다.","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.errorDependentsNoFormulas":"종속 항목 추적 명령에서는 활성 셀을 참조하는 수식을 찾지 못했습니다.","SSE.Controllers.Main.errorDirectUrl":"문서에 대한 링크를 확인하십시오.
이 링크는 다운로드할 파일에 대한 직접 링크여야 합니다.","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.errorFormulaInPivotFieldName":"피벗 테이블 보고서에서 항목 이름이나 필드 이름에 수식을 입력할 수 없습니다.","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.errorInconsistentExt":"파일을 여는 중 오류가 발생했습니다.
파일 내용이 파일 확장명과 일치하지 않습니다.","SSE.Controllers.Main.errorInconsistentExtDocx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 텍스트 문서(예: docx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","SSE.Controllers.Main.errorInconsistentExtPdf":"파일을 여는 동안 오류가 발생했습니다.
파일의 내용은 pdf/djvu/xps/oxps 형식 중 하나와 일치하지만, 파일의 확장자가 일치하지 않습니다:%1.","SSE.Controllers.Main.errorInconsistentExtPptx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용이 프리젠테이션(예: pptx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","SSE.Controllers.Main.errorInconsistentExtXlsx":"파일을 여는 동안 오류가 발생했습니다.
파일 내용은 스프레드시트(예: xlsx)에 해당하지만 파일의 확장자가 일치하지 않습니다:%1.","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.errorLockedCellGoalSeek":"목표값 찾기 과정에 포함된 셀 중 하나가 다른 사용자에 의해 수정되었습니다.","SSE.Controllers.Main.errorLockedCellPivot":"피벗 테이블에서 데이터를 변경할 수 없습니다.","SSE.Controllers.Main.errorLockedCellSolver":"Solver 프로세스에 관련된 셀 중 하나가 다른 사용자에 의해 수정되었습니다.","SSE.Controllers.Main.errorLockedWorksheetRename":"시트의 이름을 다른 사용자가 바꾸면 이름을 바꿀 수 없습니다.","SSE.Controllers.Main.errorMacroUnavailableWarning":"매크로 %1을 실행할 수 없습니다. 이 통합 문서에 해당 매크로가 없거나 모든 매크로가 비활성화되어 있을 수 있습니다.","SSE.Controllers.Main.errorMaxPoints":"차트당 시리즈내 포인트의 최대값은 4096임","SSE.Controllers.Main.errorMoveRange":"병합 된 셀의 일부를 변경할 수 없습니다","SSE.Controllers.Main.errorMoveSlicerError":"한 통합 문서에서 다른 통합 문서로 테이블 슬라이서를 복사할 수 없습니다.
전체 테이블과 슬라이서를 선택하여 다시 시도하세요.","SSE.Controllers.Main.errorMultiCellFormula":"다중 셀 배열 수식은 테이블에서 허용되지 않습니다.","SSE.Controllers.Main.errorNoDataToParse":"선택한 행에는 구문 분석을 위한 데이터가 없습니다.","SSE.Controllers.Main.errorNotUniqueFieldWithCalculated":"하나 이상의 피벗 테이블에 계산된 항목이 포함된 경우, 데이터 영역에서 동일한 필드를 두 번 이상 사용하거나 데이터 영역과 다른 영역에서 동시에 사용할 수 없습니다.","SSE.Controllers.Main.errorOpenWarning":"파일 수식 중 하나가 8192자 제한을 초과합니다.
공식이 삭제되었습니다.","SSE.Controllers.Main.errorOperandExpected":"입력 한 함수 구문이 올바르지 않습니다. 괄호 중 하나가 누락되어 있는지 확인하십시오 ( '('또는 ')').","SSE.Controllers.Main.errorPasswordIsNotCorrect":"잘못된 비밀번호.
캡 잠금 버튼이 꺼져 있는지 확인하고 올바른 대문자를 사용해야 합니다.","SSE.Controllers.Main.errorPasteInPivot":"이 변경은 선택한 셀에 대해 적용할 수 없습니다. 피벗 테이블에 영향을 주기 때문입니다.
보고서를 변경하려면 필드 목록을 사용하세요.","SSE.Controllers.Main.errorPasteMaxRange":"복사 및 붙여넣기 영역이 일치하지 않습니다.
같은 크기의 영역을 선택하거나 행의 첫 번째 셀을 클릭하여 복사한 셀을 붙여넣으세요.","SSE.Controllers.Main.errorPasteMultiSelect":"이 작업은 여러 범위를 선택한 경우에는 사용할 수 없습니다.
단일 범위를 선택하고 다시 시도하십시오.","SSE.Controllers.Main.errorPasteSlicerError":"테이블 슬라이서는 한 통합 문서에서 다른 통합 문서로 복사할 수 없습니다.","SSE.Controllers.Main.errorPivotFieldNameExists":"피벗 테이블 필드 이름이 이미 존재합니다.","SSE.Controllers.Main.errorPivotGroup":"그룹화할 수 없음","SSE.Controllers.Main.errorPivotOverlap":"피벗 보고서가 정해진 범위를 벗어났습니다.","SSE.Controllers.Main.errorPivotWithoutUnderlying":"피벗 테이블은 기본 데이터와 함께 저장되지 않습니다.
보고서를 업데이트하려면 \"업데이트\" 버튼을 사용하십시오.","SSE.Controllers.Main.errorPrecedentsNoValidRef":"선행 항목 추적 명령을 사용하려면 활성 셀에 유효한 참조를 포함하는 수식이 있어야 합니다.","SSE.Controllers.Main.errorPrintMaxPagesCount":"유감스럽게도 현재 프로그램 버전에서 한 번에 1500 페이지 이상을 인쇄 할 수 없습니다.
이 제한 사항은 다음 릴리스에서 제거 될 예정입니다.","SSE.Controllers.Main.errorProtectedRange":"이 범위는 편집이 허용되지 않습니다.","SSE.Controllers.Main.errorSaveWatermark":"이 파일에는 다른 도메인에 연결된 워터마크 이미지가 포함되어 있습니다.
PDF에서 워터마크를 표시하려면 워터마크 이미지를 문서와 동일한 도메인에서 연결되도록 업데이트하거나, 컴퓨터에서 업로드해 주세요.","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.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":"데이터로드 중 ...","SSE.Controllers.Main.loadFontTitleText":"데이터로드 중","SSE.Controllers.Main.loadImagesTextText":"이미지로드 중 ...","SSE.Controllers.Main.loadImagesTitleText":"이미지로드 중","SSE.Controllers.Main.loadImageTextText":"이미지로드 중 ...","SSE.Controllers.Main.loadImageTitleText":"이미지로드 중","SSE.Controllers.Main.loadingDocumentTitleText":"스프레드시트 로드 중","SSE.Controllers.Main.notcriticalErrorTitle":"경고","SSE.Controllers.Main.openErrorText":"파일을 여는 동안 오류가 발생했습니다","SSE.Controllers.Main.openTextText":"스프레드시트 열기 중...","SSE.Controllers.Main.openTitleText":"스프레드시트 열기","SSE.Controllers.Main.pastInMergeAreaError":"병합 된 셀의 일부를 변경할 수 없습니다","SSE.Controllers.Main.printTextText":"스프레드시트 인쇄 중...","SSE.Controllers.Main.printTitleText":"스프레드시트 인쇄","SSE.Controllers.Main.reloadButtonText":"Reload Page","SSE.Controllers.Main.requestEditFailedMessageText":"누군가이 문서를 지금 편집하고 있습니다. 나중에 다시 시도하십시오.","SSE.Controllers.Main.requestEditFailedTitleText":"액세스가 거부되었습니다","SSE.Controllers.Main.saveErrorText":"파일을 저장하는 동안 오류가 발생했습니다.","SSE.Controllers.Main.saveErrorTextDesktop":"이 파일을 저장하거나 생성할 수 없습니다.
가능한 이유는 다음과 같습니다.
1. 파일이 읽기 전용입니다.
2. 다른 사용자가 파일을 편집 중입니다.
3. 디스크가 가득 찼거나 손상되었습니다.","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.textConnectionLost":"연결을 시도 중입니다. 연결 설정을 확인해 주세요.","SSE.Controllers.Main.textContactUs":"영업 담당자에게 문의","SSE.Controllers.Main.textContinue":"계속","SSE.Controllers.Main.textContinuesOpening":"File continues opening...","SSE.Controllers.Main.textConvertEquation":"방정식은 더 이상 지원되지 않는 이전 버전의 방정식 편집기를 사용하여 생성되었습니다. 편집하려면 수식을 Office Math ML 형식으로 변환하세요.
지금 변환하시겠습니까?","SSE.Controllers.Main.textCustomLoader":"라이선스 조건에 따라 교체할 권한이 없습니다.
견적은 당사 영업부에 문의해 주십시오.","SSE.Controllers.Main.textDisconnect":"네트워크 연결 끊김","SSE.Controllers.Main.textFillOtherRows":"다른 행 채우기","SSE.Controllers.Main.textFormulaFilledAllRows":"수식이 채워진 {0} 행에 데이터가 있습니다. 다른 빈 행을 채우는 데 몇 분 정도 걸릴 수 있습니다.","SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty":"수식이 첫 {0}행을 채웠습니다. 다른 빈 행을 채우는 데 몇 분 정도 걸릴 수 있습니다.","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData":"메모리 절약 이유로 수식은 첫 {0}행만 채웠습니다. 이 시트의 다른 행에는 데이터가 없습니다.","SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty":"메모리 절약 이유로 수식은 첫 {0}행만 채웠습니다. 이 시트의 다른 행에는 데이터가 없습니다.","SSE.Controllers.Main.textGuest":"게스트","SSE.Controllers.Main.textHasMacros":"파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?","SSE.Controllers.Main.textKeep":"유지","SSE.Controllers.Main.textLearnMore":"자세히","SSE.Controllers.Main.textLoadingDocument":"스프레드시트 로드 중","SSE.Controllers.Main.textLongName":"128자 미만의 이름을 입력하세요.","SSE.Controllers.Main.textNeedSynchronize":"업데이트가 있습니다.","SSE.Controllers.Main.textNo":"No","SSE.Controllers.Main.textNoLicenseTitle":"라이선스 한도에 도달함","SSE.Controllers.Main.textPaidFeature":"유료기능","SSE.Controllers.Main.textPleaseWait":"작업이 예상보다 많은 시간이 걸릴 수 있습니다. 잠시 기다려주십시오 ...","SSE.Controllers.Main.textReconnect":"연결이 복원되었습니다","SSE.Controllers.Main.textRemember":"모든 파일에 대한 선택 사항을 기억하기","SSE.Controllers.Main.textRememberMacros":"모든 매크로에 대한 내 선택 기억","SSE.Controllers.Main.textRenameError":"사용자 이름은 비워둘 수 없습니다.","SSE.Controllers.Main.textRenameLabel":"협업에 사용할 이름을 입력합니다","SSE.Controllers.Main.textReplace":"바꾸기","SSE.Controllers.Main.textRequestMacros":"매크로에서 URL로 요청합니다. %1에게 요청을 허용하시겠습니까?","SSE.Controllers.Main.textShape":"도형","SSE.Controllers.Main.textStrict":"엄격 모드","SSE.Controllers.Main.textText":"본문","SSE.Controllers.Main.textTryQuickPrint":"빠른 인쇄를 선택했습니다. 전체 문서가 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.
계속하시겠습니까?","SSE.Controllers.Main.textTryUndoRedo":"빠른 공동 편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"엄격 모드 \"버튼을 클릭하면 엄격한 공동 편집 모드로 전환되어 파일을 편집 할 수 있습니다. 다른 사용자가 방해를해서 저장 한 후에 만 ​​변경 사항을 보내면됩니다. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ","SSE.Controllers.Main.textTryUndoRedoWarn":"빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.","SSE.Controllers.Main.textUndo":"실행 취소","SSE.Controllers.Main.textUpdateVersion":"문서를 현재 편집할 수 없습니다.
파일을 업데이트하는 중입니다. 잠시만 기다려 주세요...","SSE.Controllers.Main.textUpdating":"업데이트 중","SSE.Controllers.Main.textYes":"예","SSE.Controllers.Main.tipLicenseExceeded":"라이선스에서 허용된 최대 동시 연결 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","SSE.Controllers.Main.tipLicenseUsersExceeded":"라이선스에서 허용된 최대 편집 사용자 수에 도달하여 문서를 읽기 전용 모드로 열었습니다.

편집 권한이 필요하면 나중에 다시 시도하거나 관리자에게 문의하세요.","SSE.Controllers.Main.titleLicenseExp":"라이선스 만료","SSE.Controllers.Main.titleLicenseNotActive":"라이선스가 활성화되지 않음","SSE.Controllers.Main.titleReadOnly":"읽기 전용 모드","SSE.Controllers.Main.titleServerVersion":"편집기가 업데이트되었습니다.","SSE.Controllers.Main.titleUpdateVersion":"버전이 변경되었습니다","SSE.Controllers.Main.txtAccent":"Accent","SSE.Controllers.Main.txtAll":"(전체)","SSE.Controllers.Main.txtArt":"여기에 귀하의 텍스트를 입력하여 주십시오","SSE.Controllers.Main.txtBasicShapes":"기본 도형","SSE.Controllers.Main.txtBlank":"(빈칸)","SSE.Controllers.Main.txtButtons":"버튼","SSE.Controllers.Main.txtByField":"%2의 %1","SSE.Controllers.Main.txtCallouts":"설명선","SSE.Controllers.Main.txtCharts":"차트","SSE.Controllers.Main.txtClearFilter":"필터선택 초기화","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.txtInfo":"정보","SSE.Controllers.Main.txtLines":"선","SSE.Controllers.Main.txtMath":"수학","SSE.Controllers.Main.txtMinutes":"분","SSE.Controllers.Main.txtMonths":"월","SSE.Controllers.Main.txtMultiSelect":"다중 선택","SSE.Controllers.Main.txtNone":"없음","SSE.Controllers.Main.txtOpen":"열기","SSE.Controllers.Main.txtOr":"1% 또는 2%","SSE.Controllers.Main.txtPage":"페이지","SSE.Controllers.Main.txtPageOf":"전체 %2 중 %1","SSE.Controllers.Main.txtPages":"페이지","SSE.Controllers.Main.txtPicture":"그림","SSE.Controllers.Main.txtPivotTable":"피벗테이블","SSE.Controllers.Main.txtPreparedBy":"편집자","SSE.Controllers.Main.txtPrintArea":"인쇄 영역","SSE.Controllers.Main.txtQuarter":"분기","SSE.Controllers.Main.txtQuarters":"분기","SSE.Controllers.Main.txtRectangles":"직사각형","SSE.Controllers.Main.txtRow":"행","SSE.Controllers.Main.txtRowLbls":"행 레이블","SSE.Controllers.Main.txtSaveCopyAsComplete":"파일 복사본이 성공적으로 저장되었습니다","SSE.Controllers.Main.txtScheme_Aspect":"비율","SSE.Controllers.Main.txtScheme_Blue":"파랑","SSE.Controllers.Main.txtScheme_Blue_Green":"청록","SSE.Controllers.Main.txtScheme_Blue_II":"파랑 II","SSE.Controllers.Main.txtScheme_Blue_Warm":"따뜻한 파랑","SSE.Controllers.Main.txtScheme_Grayscale":"그레이스케일","SSE.Controllers.Main.txtScheme_Green":"초록","SSE.Controllers.Main.txtScheme_Green_Yellow":"연두","SSE.Controllers.Main.txtScheme_Marquee":"선택 윤곽선","SSE.Controllers.Main.txtScheme_Median":"중앙값","SSE.Controllers.Main.txtScheme_Office":"Office","SSE.Controllers.Main.txtScheme_Office_2007___2010":"Office 2007 - 2010","SSE.Controllers.Main.txtScheme_Office_2013___2022":"Office 2013 - 2022","SSE.Controllers.Main.txtScheme_Orange":"주황","SSE.Controllers.Main.txtScheme_Orange_Red":"주홍","SSE.Controllers.Main.txtScheme_Paper":"용지","SSE.Controllers.Main.txtScheme_Red":"빨강","SSE.Controllers.Main.txtScheme_Red_Orange":"적주황","SSE.Controllers.Main.txtScheme_Red_Violet":"자홍","SSE.Controllers.Main.txtScheme_Slipstream":"슬립스트림","SSE.Controllers.Main.txtScheme_Violet":"보라","SSE.Controllers.Main.txtScheme_Violet_II":"보라 II","SSE.Controllers.Main.txtScheme_Yellow":"노랑","SSE.Controllers.Main.txtScheme_Yellow_Orange":"황주황","SSE.Controllers.Main.txtSeconds":"초","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_actionButtonSound":"소리 버튼","SSE.Controllers.Main.txtShape_arc":"호","SSE.Controllers.Main.txtShape_bentArrow":"구부러진 화살","SSE.Controllers.Main.txtShape_bentConnector5":"연결선: 꺾임","SSE.Controllers.Main.txtShape_bentConnector5WithArrow":"연결선: 꺾인 화살표","SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows":"연결선: 꺾인 양쪽 화살표","SSE.Controllers.Main.txtShape_bentUpArrow":"위로 구부러진 화살","SSE.Controllers.Main.txtShape_bevel":"사선","SSE.Controllers.Main.txtShape_blockArc":"닫힌 호","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_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_snip1Rect":"사각형: 잘린 한쪽 모서리","SSE.Controllers.Main.txtShape_snip2DiagRect":"사각형: 잘린 대각선 방향 모서리","SSE.Controllers.Main.txtShape_snip2SameRect":"사각형: 잘린 양쪽 모서리","SSE.Controllers.Main.txtShape_snipRoundRect":"사각형: 한쪽은 둥글고 한쪽은 짤린 모서리","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.txtShape_stripedRightArrow":"줄무늬 오른쪽 화살표","SSE.Controllers.Main.txtShape_sun":"해모양","SSE.Controllers.Main.txtShape_teardrop":"눈물 방울","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_wave":"물결","SSE.Controllers.Main.txtShape_wedgeEllipseCallout":"말풍선: 타원형","SSE.Controllers.Main.txtShape_wedgeRectCallout":"말풍선: 사각형","SSE.Controllers.Main.txtShape_wedgeRoundRectCallout":"말풍선: 모서리가 둥근 사각형","SSE.Controllers.Main.txtSheet":"시트","SSE.Controllers.Main.txtSlicer":"슬라이서","SSE.Controllers.Main.txtSolverLookingSolution":"솔버가 해법을 찾고 있습니다.","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":"통화","SSE.Controllers.Main.txtStyle_Explanatory_Text":"설명 텍스트","SSE.Controllers.Main.txtStyle_Good":"Good","SSE.Controllers.Main.txtStyle_Heading_1":"제목 1","SSE.Controllers.Main.txtStyle_Heading_2":"제목 2","SSE.Controllers.Main.txtStyle_Heading_3":"제목 3","SSE.Controllers.Main.txtStyle_Heading_4":"제목 4","SSE.Controllers.Main.txtStyle_Input":"입력","SSE.Controllers.Main.txtStyle_Linked_Cell":"Linked Cell","SSE.Controllers.Main.txtStyle_Neutral":"Neutral","SSE.Controllers.Main.txtStyle_Normal":"일반","SSE.Controllers.Main.txtStyle_Note":"참고","SSE.Controllers.Main.txtStyle_Output":"출력","SSE.Controllers.Main.txtStyle_Percent":"Percent","SSE.Controllers.Main.txtStyle_Title":"제목","SSE.Controllers.Main.txtStyle_Total":"합계","SSE.Controllers.Main.txtStyle_Warning_Text":"경고문","SSE.Controllers.Main.txtTab":"탭","SSE.Controllers.Main.txtTable":"표","SSE.Controllers.Main.txtTime":"시간","SSE.Controllers.Main.txtUnlock":"잠금해제","SSE.Controllers.Main.txtUnlockRange":"범위해제","SSE.Controllers.Main.txtUnlockRangeDescription":"범위를 변경하려면 비밀번호를 입력하세요 :","SSE.Controllers.Main.txtUnlockRangeWarning":"변경하려는 범위는 암호로 보호됩니다.","SSE.Controllers.Main.txtValues":"값","SSE.Controllers.Main.txtView":"보기","SSE.Controllers.Main.txtXAxis":"X 축","SSE.Controllers.Main.txtYAxis":"Y 축","SSE.Controllers.Main.txtYears":"년","SSE.Controllers.Main.unknownErrorText":"알 수없는 오류.","SSE.Controllers.Main.unsupportedBrowserErrorText":"사용 중인 브라우저가 지원되지 않습니다.","SSE.Controllers.Main.uploadDocExtMessage":"알 수 없는 파일 형식입니다.","SSE.Controllers.Main.uploadDocFileCountMessage":"업로드 된 문서가 없습니다.","SSE.Controllers.Main.uploadDocSizeMessage":"최대 문서 크기 제한을 초과했습니다.","SSE.Controllers.Main.uploadImageExtMessage":"알 수없는 이미지 형식입니다.","SSE.Controllers.Main.uploadImageFileCountMessage":"이미지가 업로드되지 않았습니다.","SSE.Controllers.Main.uploadImageSizeMessage":"이미지 크기 제한을 초과했습니다.","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.warnExternalChartProtected":"이 차트는 외부 파일의 데이터를 기반으로 합니다. 이 창에서는 차트에 표시할 데이터만 선택할 수 있습니다. 스프레드시트를 편집하려면 스프레드시트 편집기에서 열어야 합니다.","SSE.Controllers.Main.warnLicenseAnonymous":"익명 사용자에 대한 접근이 거부되었습니다.
이 문서는 보기 전용으로 열립니다.","SSE.Controllers.Main.warnLicenseBefore":"라이선스가 활성화되지 않았습니다.
관리자에게 문의하세요.","SSE.Controllers.Main.warnLicenseExp":"귀하의 라이선스가 만료되었습니다.
라이선스를 갱신하고 페이지를 새로고침하세요.","SSE.Controllers.Main.warnLicenseLimitedNoAccess":"라이선스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.","SSE.Controllers.Main.warnLicenseLimitedRenewed":"라이선스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오","SSE.Controllers.Main.warnModifyFilter":"현재 핀이 사용자에게만 표시되지 않는 모드입니다. 필터를 추가하거나 제거할 수 없습니다.
현재 보기를 저장하려면 탭에서 시트 보기를 사용하세요.","SSE.Controllers.Main.warnNoLicense":"이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.","SSE.Controllers.Main.warnNoLicenseUsers":"이 버전의 %1 편집자에게는 동시 사용자에게 특정 제한 사항이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.","SSE.Controllers.Main.warnOpenCsv":"CSV 형식은 다중 시트 파일 또는 텍스트 이외의 요소를 저장할 수 없습니다.
활성 시트만 저장됩니다.","SSE.Controllers.Main.warnProcessRightsChange":"파일 편집 권한이 거부되었습니다.","SSE.Controllers.PivotTable.strSheet":"시트","SSE.Controllers.PivotTable.txtCalculatedItemInPageField":"항목을 추가하거나 수정할 수 없습니다. 피벗 테이블 보고서에 이 필드가 필터로 설정되어 있습니다.","SSE.Controllers.PivotTable.txtCalculatedItemWarningDefault":"이 활성 셀에서는 계산된 항목에 대한 작업이 허용되지 않습니다.","SSE.Controllers.PivotTable.txtNotUniqueFieldWithCalculated":"하나 이상의 피벗 테이블에 계산된 항목이 포함된 경우, 데이터 영역에서 동일한 필드를 두 번 이상 사용하거나 데이터 영역과 다른 영역에서 동시에 사용할 수 없습니다.","SSE.Controllers.PivotTable.txtPivotFieldCustomSubtotalsWithCalculatedItems":"계산된 항목은 사용자 지정 소계와 함께 작동하지 않습니다.","SSE.Controllers.PivotTable.txtPivotItemNameNotFound":"항목 이름을 찾을 수 없습니다. 이름을 정확히 입력했는지 확인하고, 해당 항목이 피벗테이블 보고서에 있는지 확인하십시오.","SSE.Controllers.PivotTable.txtWrongDataFieldSubtotalForCalculatedItems":"피벗테이블 보고서에 계산된 항목이 있을 경우 평균, 표준 편차 및 분산은 지원되지 않습니다.","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.txtCustom":"사용자 정의","SSE.Controllers.Print.txtZoomToPage":"페이지에 맞게 확대","SSE.Controllers.Search.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Controllers.Search.textNoTextFound":"검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.","SSE.Controllers.Search.textReplaceSkipped":"대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.","SSE.Controllers.Search.textReplaceSuccess":"검색이 완료되었습니다. {0}번의 항목이 대체되었습니다.","SSE.Controllers.Statusbar.errNameExists":"같은 이름의 워크 시트가 이미 있습니다.","SSE.Controllers.Statusbar.errorLastSheet":"통합 문서에는 최소한 하나의 보이는 워크 시트가 있어야합니다.","SSE.Controllers.Statusbar.errorRemoveSheet":"워크 시트를 삭제할 수 없습니다.","SSE.Controllers.Statusbar.errSheetNameRules":"잘못된 시트 이름을 입력했습니다:
- 시트 이름은 비워둘 수 없습니다.
- 시트 이름에는 다음 문자를 포함할 수 없습니다: \\ / * ? [ ] : 또는 ' 문자를 처음이나 마지막에 사용할 수 없습니다.","SSE.Controllers.Statusbar.strSheet":"시트","SSE.Controllers.Statusbar.textContinue":"계속","SSE.Controllers.Statusbar.textDisconnect":"연결이 끊어졌습니다
연결을 시도하는 중입니다.","SSE.Controllers.Statusbar.textSheetViewTip":"시트보기 모드입니다. 필터 및 정렬은 나와 이 보기에 있는 사용자만 볼 수 있습니다.","SSE.Controllers.Statusbar.textSheetViewTipFilters":"시트 보기 모드에 있습니다. 필터는 나와 이 보기에 있는 사람들만 볼 수 있습니다.","SSE.Controllers.Statusbar.warnAddSheetCsv":"CSV 형식은 다중 시트 파일을 저장할 수 없습니다. 활성 시트만 저장됩니다. 모든 시트를 유지하려면 다른 형식으로 파일을 저장하세요.","SSE.Controllers.Statusbar.warnDeleteSheet":"워크 시트에 데이터가 있을 수 있습니다. 작업을 계속 하시겠습니까?","SSE.Controllers.Statusbar.zoomText":"확대/축소 {0} %","SSE.Controllers.TableDesignTab.notcriticalErrorTitle":"경고","SSE.Controllers.TableDesignTab.textExistName":"오류! 같은 이름의 범위가 이미 있습니다","SSE.Controllers.TableDesignTab.textInvalidName":"오류! 잘못된 테이블 이름","SSE.Controllers.TableDesignTab.textIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Controllers.TableDesignTab.textLongOperation":"긴 작업","SSE.Controllers.TableDesignTab.textReservedName":"사용하려는 이름이 이미 셀 수식에서 참조되고 있습니다. 다른 이름을 사용하세요.","SSE.Controllers.TableDesignTab.textResize":"크기 조정 테이블","SSE.Controllers.TableDesignTab.warnLongOperation":"수행하려는 작업은 완료하는 데 시간이 오래 걸릴 수 있습니다.
계속하시겠습니까?","SSE.Controllers.Toolbar.confirmAddFontName":"저장하려는 글꼴을 현재 장치에서 사용할 수 없습니다.
시스템 글꼴 중 하나를 사용하여 텍스트 스타일이 표시되고 저장된 글꼴은 사용할 수 있습니다.
계속 하시겠습니까? ","SSE.Controllers.Toolbar.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","SSE.Controllers.Toolbar.errorMaxPoints":"차트당 시리즈내 포인트의 최대값은 4096임.","SSE.Controllers.Toolbar.errorMaxRows":"오류! 차트 당 최대 데이터 시리즈 수는 255입니다.","SSE.Controllers.Toolbar.errorStockChart":"잘못된 행 순서. 주식형 차트를 작성하려면 시트에 데이터를 다음과 같은 순서로 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.","SSE.Controllers.Toolbar.helpChartElements":"몇 번의 클릭만으로 차트 요소의 표시 여부를 간편하게 전환할 수 있습니다.","SSE.Controllers.Toolbar.helpChartElementsHeader":"차트 요소 표시","SSE.Controllers.Toolbar.helpCommentFilter":"왼쪽 패널에서 열려 있는 댓글과 해결된 댓글을 전환하여 보기 방식을 관리하세요.","SSE.Controllers.Toolbar.helpCommentFilterHeader":"댓글 필터","SSE.Controllers.Toolbar.helpRtlDir":"셀의 텍스트 방향을 콘텐츠 요구 사항에 맞게 조정하세요.","SSE.Controllers.Toolbar.helpRtlDirHeader":"셀 텍스트 방향","SSE.Controllers.Toolbar.helpTableTab":"표 디자인 탭에서 서식이 지정된 모든 표 설정을 편리하게 이용할 수 있습니다.","SSE.Controllers.Toolbar.helpTableTabHeader":"테이블 디자인 탭","SSE.Controllers.Toolbar.textAccent":"악센트","SSE.Controllers.Toolbar.textBracket":"대괄호","SSE.Controllers.Toolbar.textDirectional":"방향","SSE.Controllers.Toolbar.textFontSizeErr":"입력 한 값이 잘못되었습니다.
1 ~ 409 사이의 숫자 값을 입력하십시오.","SSE.Controllers.Toolbar.textFraction":"분수","SSE.Controllers.Toolbar.textFunction":"함수","SSE.Controllers.Toolbar.textIndicator":"지표","SSE.Controllers.Toolbar.textInsert":"삽입","SSE.Controllers.Toolbar.textIntegral":"적분","SSE.Controllers.Toolbar.textLargeOperator":"대형 연산자","SSE.Controllers.Toolbar.textLimitAndLog":"극한 및 로그","SSE.Controllers.Toolbar.textLongOperation":"긴 작업","SSE.Controllers.Toolbar.textMatrix":"행렬","SSE.Controllers.Toolbar.textOperator":"연산자","SSE.Controllers.Toolbar.textPasteSpecial":"Paste special","SSE.Controllers.Toolbar.textPivot":"피벗 테이블","SSE.Controllers.Toolbar.textRadical":"근호","SSE.Controllers.Toolbar.textRating":"평가","SSE.Controllers.Toolbar.textRecentlyUsed":"최근 사용된","SSE.Controllers.Toolbar.textScript":"첨자","SSE.Controllers.Toolbar.textShapes":"도형","SSE.Controllers.Toolbar.textSymbols":"기호","SSE.Controllers.Toolbar.textWarning":"경고","SSE.Controllers.Toolbar.txtAccent_Accent":"급성","SSE.Controllers.Toolbar.txtAccent_ArrowD":"오른쪽 위 왼쪽 화살표 위","SSE.Controllers.Toolbar.txtAccent_ArrowL":"왼쪽 위 화살표","SSE.Controllers.Toolbar.txtAccent_ArrowR":"오른쪽 위 화살표 위","SSE.Controllers.Toolbar.txtAccent_Bar":"Bar","SSE.Controllers.Toolbar.txtAccent_BarBot":"Underbar","SSE.Controllers.Toolbar.txtAccent_BarTop":"Overbar","SSE.Controllers.Toolbar.txtAccent_BorderBox":"박스형 수식 (자리 표시 자 포함)","SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom":"상자화 된 수식 (예)","SSE.Controllers.Toolbar.txtAccent_Check":"확인","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","SSE.Controllers.Toolbar.txtAccent_DDDot":"트리플 도트","SSE.Controllers.Toolbar.txtAccent_DDot":"Double Dot","SSE.Controllers.Toolbar.txtAccent_Dot":"Dot","SSE.Controllers.Toolbar.txtAccent_DoubleBar":"Double Overbar","SSE.Controllers.Toolbar.txtAccent_Grave":"Grave","SSE.Controllers.Toolbar.txtAccent_GroupBot":"아래의 문자 그룹화","SSE.Controllers.Toolbar.txtAccent_GroupTop":"위의 문자 그룹화","SSE.Controllers.Toolbar.txtAccent_HarpoonL":"Leftwards Harpoon Above","SSE.Controllers.Toolbar.txtAccent_HarpoonR":"Rightwards Harpoon Above","SSE.Controllers.Toolbar.txtAccent_Hat":"Hat","SSE.Controllers.Toolbar.txtAccent_Smile":"Breve","SSE.Controllers.Toolbar.txtAccent_Tilde":"물결표","SSE.Controllers.Toolbar.txtBracket_Angle":"대괄호","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2":"구분 기호가있는 대괄호","SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3":"구분 기호가있는 대괄호","SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen":"단일 브라켓","SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone":"단일 브래킷","SSE.Controllers.Toolbar.txtBracket_Curve":"대괄호","SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2":"구분 기호가있는 대괄호","SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Custom_1":"사례 (두 조건)","SSE.Controllers.Toolbar.txtBracket_Custom_2":"사례 (세 조건)","SSE.Controllers.Toolbar.txtBracket_Custom_3":"Stack Object","SSE.Controllers.Toolbar.txtBracket_Custom_4":"Stack Object","SSE.Controllers.Toolbar.txtBracket_Custom_5":"사례 사례","SSE.Controllers.Toolbar.txtBracket_Custom_6":"Binomial Coefficient","SSE.Controllers.Toolbar.txtBracket_Custom_7":"Binomial Coefficient","SSE.Controllers.Toolbar.txtBracket_Line":"대괄호","SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Line_OpenNone":"단일 브래킷","SSE.Controllers.Toolbar.txtBracket_LineDouble":"대괄호","SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen":"단일 브래킷","SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_LowLim":"대괄호","SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone":"단일 브래킷","SSE.Controllers.Toolbar.txtBracket_Round":"대괄호","SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2":"구분 기호가있는 대괄호","SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Round_OpenNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Square":"대괄호","SSE.Controllers.Toolbar.txtBracket_Square_CloseClose":"대괄호","SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen":"대괄호","SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Square_OpenNone":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen":"대괄호","SSE.Controllers.Toolbar.txtBracket_SquareDouble":"대괄호","SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen":"단일 대괄호","SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone":"단일 대괄호","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.txtFormula":"Formula","SSE.Controllers.Toolbar.txtFractionDiagonal":"Skewed Fraction","SSE.Controllers.Toolbar.txtFractionDifferential_1":"Differential","SSE.Controllers.Toolbar.txtFractionDifferential_2":"Differential","SSE.Controllers.Toolbar.txtFractionDifferential_3":"Differential","SSE.Controllers.Toolbar.txtFractionDifferential_4":"Differential","SSE.Controllers.Toolbar.txtFractionHorizontal":"선형 분수","SSE.Controllers.Toolbar.txtFractionPi_2":"Pi Over 2","SSE.Controllers.Toolbar.txtFractionSmall":"Small Fraction","SSE.Controllers.Toolbar.txtFractionVertical":"누적분수","SSE.Controllers.Toolbar.txtFunction_1_Cos":"역 코사인 함수","SSE.Controllers.Toolbar.txtFunction_1_Cosh":"쌍곡선 역 코사인 함수","SSE.Controllers.Toolbar.txtFunction_1_Cot":"역 코탄젠트 함수","SSE.Controllers.Toolbar.txtFunction_1_Coth":"쌍곡선 역방향 코탄젠트 함수","SSE.Controllers.Toolbar.txtFunction_1_Csc":"Inverse Cosecant Function","SSE.Controllers.Toolbar.txtFunction_1_Csch":"쌍곡선 반전 보조 함수","SSE.Controllers.Toolbar.txtFunction_1_Sec":"역 분개 함수","SSE.Controllers.Toolbar.txtFunction_1_Sech":"쌍곡선 역 차감 함수","SSE.Controllers.Toolbar.txtFunction_1_Sin":"역 사인 함수","SSE.Controllers.Toolbar.txtFunction_1_Sinh":"쌍곡선 역 사인 함수","SSE.Controllers.Toolbar.txtFunction_1_Tan":"역 탄젠트 함수","SSE.Controllers.Toolbar.txtFunction_1_Tanh":"쌍곡선 역 탄젠트 함수","SSE.Controllers.Toolbar.txtFunction_Cos":"코사인 함수","SSE.Controllers.Toolbar.txtFunction_Cosh":"쌍곡선 코사인 함수","SSE.Controllers.Toolbar.txtFunction_Cot":"코탄 센트 함수","SSE.Controllers.Toolbar.txtFunction_Coth":"쌍곡선 코탄 센트 함수","SSE.Controllers.Toolbar.txtFunction_Csc":"Cosecant 함수","SSE.Controllers.Toolbar.txtFunction_Csch":"쌍곡선 보조 함수","SSE.Controllers.Toolbar.txtFunction_Custom_1":"Sine theta","SSE.Controllers.Toolbar.txtFunction_Custom_2":"Cos 2x","SSE.Controllers.Toolbar.txtFunction_Custom_3":"Tangent formula","SSE.Controllers.Toolbar.txtFunction_Sec":"Secant 함수","SSE.Controllers.Toolbar.txtFunction_Sech":"쌍곡선 시컨트 함수","SSE.Controllers.Toolbar.txtFunction_Sin":"사인 함수","SSE.Controllers.Toolbar.txtFunction_Sinh":"쌍곡선 사인 함수","SSE.Controllers.Toolbar.txtFunction_Tan":"Tangent Function","SSE.Controllers.Toolbar.txtFunction_Tanh":"쌍곡선 탄젠트 함수","SSE.Controllers.Toolbar.txtGroupCell_Custom":"사용자 정의","SSE.Controllers.Toolbar.txtGroupCell_DataAndModel":"데이터와 모델","SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral":"좋음, 나쁨, 중립","SSE.Controllers.Toolbar.txtGroupCell_NoName":"이름 없음","SSE.Controllers.Toolbar.txtGroupCell_NumberFormat":"숫자 형식","SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles":"테마 기반 셀 스타일","SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings":"제목 및 표제","SSE.Controllers.Toolbar.txtGroupTable_Custom":"사용자 정의","SSE.Controllers.Toolbar.txtGroupTable_Dark":"어두운","SSE.Controllers.Toolbar.txtGroupTable_Light":"밝은","SSE.Controllers.Toolbar.txtGroupTable_Medium":"중","SSE.Controllers.Toolbar.txtImportWizard":"Text Import","SSE.Controllers.Toolbar.txtInsertCells":"셀 삽입","SSE.Controllers.Toolbar.txtIntegral":"Integral","SSE.Controllers.Toolbar.txtIntegral_dtheta":"Differential theta","SSE.Controllers.Toolbar.txtIntegral_dx":"Differential x","SSE.Controllers.Toolbar.txtIntegral_dy":"차등 y","SSE.Controllers.Toolbar.txtIntegralCenterSubSup":"Integral","SSE.Controllers.Toolbar.txtIntegralDouble":"Double Integral","SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup":"Double Integral","SSE.Controllers.Toolbar.txtIntegralDoubleSubSup":"Double Integral","SSE.Controllers.Toolbar.txtIntegralOriented":"윤곽선 적분","SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup":"윤곽선 적분","SSE.Controllers.Toolbar.txtIntegralOrientedDouble":"Surface Integral","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup":"Surface Integral","SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup":"표면 적분","SSE.Controllers.Toolbar.txtIntegralOrientedSubSup":"윤곽선 적분","SSE.Controllers.Toolbar.txtIntegralOrientedTriple":"볼륨 정수","SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup":"볼륨 정수","SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup":"볼륨 정수","SSE.Controllers.Toolbar.txtIntegralSubSup":"Integral","SSE.Controllers.Toolbar.txtIntegralTriple":"Triple Integral","SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup":"Triple Integral","SSE.Controllers.Toolbar.txtIntegralTripleSubSup":"Triple Integral","SSE.Controllers.Toolbar.txtInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Controllers.Toolbar.txtKeepTextOnly":"Keep text only","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup":"쇄기꼴","SSE.Controllers.Toolbar.txtLargeOperator_CoProd":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup":"Co-Product","SSE.Controllers.Toolbar.txtLargeOperator_Custom_1":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Custom_2":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Custom_3":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Custom_4":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Custom_5":"Union","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup":"Vee","SSE.Controllers.Toolbar.txtLargeOperator_Intersection":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup":"교차점","SSE.Controllers.Toolbar.txtLargeOperator_Prod":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup":"Product","SSE.Controllers.Toolbar.txtLargeOperator_Sum":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup":"Summation","SSE.Controllers.Toolbar.txtLargeOperator_Union":"Union","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub":"Union","SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup":"Union","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_Lim":"제한","SSE.Controllers.Toolbar.txtLimitLog_Ln":"자연 로그","SSE.Controllers.Toolbar.txtLimitLog_Log":"로그","SSE.Controllers.Toolbar.txtLimitLog_LogBase":"로그","SSE.Controllers.Toolbar.txtLimitLog_Max":"최대값","SSE.Controllers.Toolbar.txtLimitLog_Min":"최소값","SSE.Controllers.Toolbar.txtLockSort":"선택의 범위 근처에 데이터가 존재 하지만이 셀을 변경하려면 충분한 권한이 없습니다.
선택의 범위를 계속 하시겠습니까?","SSE.Controllers.Toolbar.txtMatrix_1_2":"1x2 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_1_3":"1x3 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_1":"2x1 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2":"2x2 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket":"대괄호가있는 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket":"대괄호가있는 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket":"대괄호가있는 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket":"괄호로 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_2_3":"2x3 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_3_1":"3x1 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_3_2":"3x2 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_3_3":"3x3 빈 행렬","SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline":"기준점","SSE.Controllers.Toolbar.txtMatrix_Dots_Center":"Midline 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","SSE.Controllers.Toolbar.txtMatrix_Identity_2":"0 이 채워진 2x2 단위 행렬","SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros":"대각선 셀이 비어있는 2x2 단위 행렬","SSE.Controllers.Toolbar.txtMatrix_Identity_3":"0 이 채워진 3x3 단위 행렬","SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros":"대각선 셀이 비어있는 3x3 단위 행렬","SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot":"오른쪽 아래 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowD_Top":"오른쪽 위 왼쪽 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot":"왼쪽 아래쪽 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowL_Top":"왼쪽 위 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot":"오른쪽 아래 화살표","SSE.Controllers.Toolbar.txtOperator_ArrowR_Top":"오른쪽 위 화살표 위","SSE.Controllers.Toolbar.txtOperator_ColonEquals":"콜론 균등","SSE.Controllers.Toolbar.txtOperator_Custom_1":"수익률","SSE.Controllers.Toolbar.txtOperator_Custom_2":"Delta Yields","SSE.Controllers.Toolbar.txtOperator_Definition":"정의에 의한 동일","SSE.Controllers.Toolbar.txtOperator_DeltaEquals":"Delta Equal To","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot":"오른쪽 아래 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top":"오른쪽 위 왼쪽 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot":"왼쪽 아래쪽 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top":"왼쪽 위 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot":"오른쪽 아래 화살표","SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top":"오른쪽 위 화살표 위","SSE.Controllers.Toolbar.txtOperator_EqualsEquals":"Equal Equal","SSE.Controllers.Toolbar.txtOperator_MinusEquals":"Minus Equal","SSE.Controllers.Toolbar.txtOperator_PlusEquals":"Plus Equal","SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure":"측정 기준","SSE.Controllers.Toolbar.txtOther":"Other","SSE.Controllers.Toolbar.txtPaste":"Paste","SSE.Controllers.Toolbar.txtPasteBorders":"Formula without borders","SSE.Controllers.Toolbar.txtPasteColWidths":"Formula + column width","SSE.Controllers.Toolbar.txtPasteDestFormat":"Destination formatting","SSE.Controllers.Toolbar.txtPasteFormat":"Paste only formatting","SSE.Controllers.Toolbar.txtPasteFormulaNumFormat":"Formula + number format","SSE.Controllers.Toolbar.txtPasteFormulas":"Paste only formula","SSE.Controllers.Toolbar.txtPasteKeepSourceFormat":"Formula + all formatting","SSE.Controllers.Toolbar.txtPasteLink":"Paste link","SSE.Controllers.Toolbar.txtPasteLinkPicture":"Linked picture","SSE.Controllers.Toolbar.txtPasteMerge":"Merge conditional formatting","SSE.Controllers.Toolbar.txtPasteNoOptions":"Paste (P)","SSE.Controllers.Toolbar.txtPastePicture":"Picture","SSE.Controllers.Toolbar.txtPasteSourceFormat":"Source formatting","SSE.Controllers.Toolbar.txtPasteTranspose":"Transpose","SSE.Controllers.Toolbar.txtPasteValFormat":"Value + all formatting","SSE.Controllers.Toolbar.txtPasteValNumFormat":"Value + number format","SSE.Controllers.Toolbar.txtPasteValues":"Paste only value","SSE.Controllers.Toolbar.txtRadicalCustom_1":"Radical","SSE.Controllers.Toolbar.txtRadicalCustom_2":"Radical","SSE.Controllers.Toolbar.txtRadicalRoot_2":"학위가있는 제곱근","SSE.Controllers.Toolbar.txtRadicalRoot_3":"Cubic Root","SSE.Controllers.Toolbar.txtRadicalRoot_n":"Degree와 함께 급진적","SSE.Controllers.Toolbar.txtRadicalSqrt":"Square Root","SSE.Controllers.Toolbar.txtScriptCustom_1":"Script","SSE.Controllers.Toolbar.txtScriptCustom_2":"Script","SSE.Controllers.Toolbar.txtScriptCustom_3":"Script","SSE.Controllers.Toolbar.txtScriptCustom_4":"Script","SSE.Controllers.Toolbar.txtScriptSub":"아래 첨자","SSE.Controllers.Toolbar.txtScriptSubSup":"아래 첨자 - 위 첨자","SSE.Controllers.Toolbar.txtScriptSubSupLeft":"왼쪽 아래 첨자-위 첨자","SSE.Controllers.Toolbar.txtScriptSup":"Superscript","SSE.Controllers.Toolbar.txtSorting":"정렬","SSE.Controllers.Toolbar.txtSortSelected":"정렬 선택","SSE.Controllers.Toolbar.txtSymbol_about":"대략","SSE.Controllers.Toolbar.txtSymbol_additional":"Complement","SSE.Controllers.Toolbar.txtSymbol_aleph":"Alef","SSE.Controllers.Toolbar.txtSymbol_alpha":"Alpha","SSE.Controllers.Toolbar.txtSymbol_approx":"거의 동일","SSE.Controllers.Toolbar.txtSymbol_ast":"별표 연산자","SSE.Controllers.Toolbar.txtSymbol_beta":"베타","SSE.Controllers.Toolbar.txtSymbol_beth":"Bet","SSE.Controllers.Toolbar.txtSymbol_bullet":"글 머리 기호 연산자","SSE.Controllers.Toolbar.txtSymbol_cap":"교차점","SSE.Controllers.Toolbar.txtSymbol_cbrt":"큐브 루트","SSE.Controllers.Toolbar.txtSymbol_cdots":"중간 말줄임표","SSE.Controllers.Toolbar.txtSymbol_celsius":"Degrees Celsius","SSE.Controllers.Toolbar.txtSymbol_chi":"Chi","SSE.Controllers.Toolbar.txtSymbol_cong":"대략 같음","SSE.Controllers.Toolbar.txtSymbol_cup":"Union","SSE.Controllers.Toolbar.txtSymbol_ddots":"오른쪽 아래 대각선 줄임표","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_emptyset":"빈 세트","SSE.Controllers.Toolbar.txtSymbol_epsilon":"Epsilon","SSE.Controllers.Toolbar.txtSymbol_equals":"등호","SSE.Controllers.Toolbar.txtSymbol_equiv":"동일 함","SSE.Controllers.Toolbar.txtSymbol_eta":"Eta","SSE.Controllers.Toolbar.txtSymbol_exists":"존재 함","SSE.Controllers.Toolbar.txtSymbol_factorial":"Factorial","SSE.Controllers.Toolbar.txtSymbol_fahrenheit":"화씨","SSE.Controllers.Toolbar.txtSymbol_forall":"모두에게","SSE.Controllers.Toolbar.txtSymbol_gamma":"감마","SSE.Controllers.Toolbar.txtSymbol_geq":"크거나 같음","SSE.Controllers.Toolbar.txtSymbol_gg":"훨씬 더 큼","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":"보다 작음","SSE.Controllers.Toolbar.txtSymbol_ll":"훨씬 적습니다","SSE.Controllers.Toolbar.txtSymbol_minus":"Minus","SSE.Controllers.Toolbar.txtSymbol_mp":"마이너스 플러스","SSE.Controllers.Toolbar.txtSymbol_mu":"Mu","SSE.Controllers.Toolbar.txtSymbol_nabla":"Nabla","SSE.Controllers.Toolbar.txtSymbol_neq":"같지 않음","SSE.Controllers.Toolbar.txtSymbol_ni":"구성원으로 포함","SSE.Controllers.Toolbar.txtSymbol_not":"부호 없음","SSE.Controllers.Toolbar.txtSymbol_notexists":"존재하지 않습니다","SSE.Controllers.Toolbar.txtSymbol_nu":"Nu","SSE.Controllers.Toolbar.txtSymbol_o":"Omicron","SSE.Controllers.Toolbar.txtSymbol_omega":"Omega","SSE.Controllers.Toolbar.txtSymbol_partial":"부분 미분","SSE.Controllers.Toolbar.txtSymbol_percent":"백분율","SSE.Controllers.Toolbar.txtSymbol_phi":"Phi","SSE.Controllers.Toolbar.txtSymbol_pi":"Pi","SSE.Controllers.Toolbar.txtSymbol_plus":"Plus","SSE.Controllers.Toolbar.txtSymbol_pm":"Plus Minus","SSE.Controllers.Toolbar.txtSymbol_propto":"Proportional To","SSE.Controllers.Toolbar.txtSymbol_psi":"Psi","SSE.Controllers.Toolbar.txtSymbol_qdrt":"네 번째 루트","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_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_upsilon":"Upsilon","SSE.Controllers.Toolbar.txtSymbol_varepsilon":"Epsilon Variant","SSE.Controllers.Toolbar.txtSymbol_varphi":"Phi Variant","SSE.Controllers.Toolbar.txtSymbol_varpi":"Pi Variant","SSE.Controllers.Toolbar.txtSymbol_varrho":"Rho Variant","SSE.Controllers.Toolbar.txtSymbol_varsigma":"Sigma Variant","SSE.Controllers.Toolbar.txtSymbol_vartheta":"Theta Variant","SSE.Controllers.Toolbar.txtSymbol_vdots":"수직 줄임표","SSE.Controllers.Toolbar.txtSymbol_xsi":"Xi","SSE.Controllers.Toolbar.txtSymbol_zeta":"Zeta","SSE.Controllers.Toolbar.txtTable_TableStyleDark":"어두운 표 스타일","SSE.Controllers.Toolbar.txtTable_TableStyleLight":"밝은 표 스타일","SSE.Controllers.Toolbar.txtTable_TableStyleMedium":"중간 표 스타일","SSE.Controllers.Toolbar.txtUseTextImport":"Use text import","SSE.Controllers.Toolbar.txtValue":"Value","SSE.Controllers.Toolbar.warnLongOperation":"수행하려는 작업이 완료하는 데 시간이 오래 걸릴 수 있습니다. 계속 하시겠습니까?","SSE.Controllers.Toolbar.warnMergeLostData":"왼쪽 위 셀의 데이터 만 병합 된 셀에 남아 있습니다.
계속 하시겠습니까?","SSE.Controllers.Toolbar.warnNoRecommended":"차트를 만들려면, 사용하려는 데이터가 포함된 셀을 선택하세요.
행과 열에 이름이 있고 이를 레이블로 사용하려면, 선택 영역에 포함시키세요.","SSE.Controllers.Viewport.textFreezePanes":"창 고정","SSE.Controllers.Viewport.textFreezePanesShadow":"틀 고정 음영 표시","SSE.Controllers.Viewport.textHideFBar":"수식 입력줄 감추기","SSE.Controllers.Viewport.textHideGridlines":"눈금 선 숨기기","SSE.Controllers.Viewport.textHideHeadings":"제목 숨기기","SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator":"소수점 구분 기호","SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator":"천 단위 구분자","SSE.Views.AdvancedSeparatorDialog.textLabel":"디지털 데이터 식별을 위한 설정","SSE.Views.AdvancedSeparatorDialog.textQualifier":"텍스트 퀄리파이어","SSE.Views.AdvancedSeparatorDialog.textTitle":"고급 설정","SSE.Views.AdvancedSeparatorDialog.txtNone":"(없음)","SSE.Views.AutoFilterDialog.btnCustomFilter":"사용자 정의 필터","SSE.Views.AutoFilterDialog.textAddSelection":"현재 선택을 필터에 추가","SSE.Views.AutoFilterDialog.textEmptyItem":"{공백}","SSE.Views.AutoFilterDialog.textSelectAll":"모두 선택","SSE.Views.AutoFilterDialog.textSelectAllResults":"모든 검색 결과 선택","SSE.Views.AutoFilterDialog.textWarning":"경고","SSE.Views.AutoFilterDialog.txtAboveAve":"평균 이상","SSE.Views.AutoFilterDialog.txtAfter":"이후...","SSE.Views.AutoFilterDialog.txtAllDatesInThePeriod":"기간 내의 모든 날짜","SSE.Views.AutoFilterDialog.txtApril":"4월","SSE.Views.AutoFilterDialog.txtAugust":"8월","SSE.Views.AutoFilterDialog.txtBefore":"이전...","SSE.Views.AutoFilterDialog.txtBegins":"다음으로 시작 ...","SSE.Views.AutoFilterDialog.txtBelowAve":"평균 이하","SSE.Views.AutoFilterDialog.txtBetween":"해당 범위...","SSE.Views.AutoFilterDialog.txtClear":"지우기","SSE.Views.AutoFilterDialog.txtContains":"포함 ...","SSE.Views.AutoFilterDialog.txtDateFilter":"날짜 필터","SSE.Views.AutoFilterDialog.txtDecember":"12월","SSE.Views.AutoFilterDialog.txtEmpty":"검색","SSE.Views.AutoFilterDialog.txtEnds":"끝내기 ...","SSE.Views.AutoFilterDialog.txtEquals":"같음 ...","SSE.Views.AutoFilterDialog.txtFebruary":"2월","SSE.Views.AutoFilterDialog.txtFilterCellColor":"셀 색상별로 필터링","SSE.Views.AutoFilterDialog.txtFilterFontColor":"글꼴 색으로 필터링","SSE.Views.AutoFilterDialog.txtGreater":"보다 큼 ...","SSE.Views.AutoFilterDialog.txtGreaterEquals":"크거나 같음 ...","SSE.Views.AutoFilterDialog.txtJanuary":"1월","SSE.Views.AutoFilterDialog.txtJuly":"7월","SSE.Views.AutoFilterDialog.txtJune":"6월","SSE.Views.AutoFilterDialog.txtLabelFilter":"라벨 필터","SSE.Views.AutoFilterDialog.txtLastMonth":"지난 달","SSE.Views.AutoFilterDialog.txtLastQuarter":"지난 분기","SSE.Views.AutoFilterDialog.txtLastWeek":"지난 주","SSE.Views.AutoFilterDialog.txtLastYear":"작년","SSE.Views.AutoFilterDialog.txtLess":"작음 ...","SSE.Views.AutoFilterDialog.txtLessEquals":"작거나 같음 ...","SSE.Views.AutoFilterDialog.txtMarch":"3월","SSE.Views.AutoFilterDialog.txtMay":"5월","SSE.Views.AutoFilterDialog.txtNextMonth":"다음 달","SSE.Views.AutoFilterDialog.txtNextQuarter":"다음 분기","SSE.Views.AutoFilterDialog.txtNextWeek":"다음 주","SSE.Views.AutoFilterDialog.txtNextYear":"다음 해","SSE.Views.AutoFilterDialog.txtNotBegins":"...로 시작하지 않습니다 ...","SSE.Views.AutoFilterDialog.txtNotBetween":"제외 범위...","SSE.Views.AutoFilterDialog.txtNotContains":"포함하지 않음 ...","SSE.Views.AutoFilterDialog.txtNotEnds":"끝내지 않습니다 ...","SSE.Views.AutoFilterDialog.txtNotEquals":"같지 않습니다 ...","SSE.Views.AutoFilterDialog.txtNovember":"11월","SSE.Views.AutoFilterDialog.txtNumFilter":"숫자 필터","SSE.Views.AutoFilterDialog.txtOctober":"10월","SSE.Views.AutoFilterDialog.txtQuarter1":"1분기","SSE.Views.AutoFilterDialog.txtQuarter2":"2분기","SSE.Views.AutoFilterDialog.txtQuarter3":"3분기","SSE.Views.AutoFilterDialog.txtQuarter4":"4분기","SSE.Views.AutoFilterDialog.txtReapply":"재적용","SSE.Views.AutoFilterDialog.txtSeptember":"9월","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.txtThisMonth":"이번 달","SSE.Views.AutoFilterDialog.txtThisQuarter":"이번 분기","SSE.Views.AutoFilterDialog.txtThisWeek":"이번 주","SSE.Views.AutoFilterDialog.txtThisYear":"올해","SSE.Views.AutoFilterDialog.txtTitle":"필터","SSE.Views.AutoFilterDialog.txtToday":"오늘","SSE.Views.AutoFilterDialog.txtTomorrow":"내일","SSE.Views.AutoFilterDialog.txtTop10":"Top 10","SSE.Views.AutoFilterDialog.txtValueFilter":"값 필터","SSE.Views.AutoFilterDialog.txtYearToDate":"년간 누적","SSE.Views.AutoFilterDialog.txtYesterday":"어제","SSE.Views.AutoFilterDialog.warnFilterError":"값 필터를 적용하려면 \"값\" 영역에 하나 이상의 필드가 있어야 합니다.","SSE.Views.AutoFilterDialog.warnNoSelected":"하나 이상의 값을 선택해야합니다.","SSE.Views.CellEditor.textManager":"이름 관리자","SSE.Views.CellEditor.tipFormula":"함수 삽입","SSE.Views.CellRangeDialog.errorMaxRows":"오류! 차트 당 최대 데이터 시리즈 수는 255입니다.","SSE.Views.CellRangeDialog.errorStockChart":"잘못된 행 순서. 주식형 차트를 작성하려면 시트에 데이터를 다음과 같은 순서로 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.","SSE.Views.CellRangeDialog.txtEmpty":"이 입력란은 필수 항목","SSE.Views.CellRangeDialog.txtInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.CellRangeDialog.txtTitle":"데이터 범위 선택","SSE.Views.CellSettings.strShrink":"크기에 맞게 축소","SSE.Views.CellSettings.strWrap":"텍스트 줄 바꾸기","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.textControl":"텍스트 제어","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.textOrientation":"텍스트 방향","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.errorInvalidReference":"참조가 잘못되었습니다. 참조는 열려 있는 워크시트여야 합니다.","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.textSwitch":"행 / 열 전환","SSE.Views.ChartDataDialog.textTitle":"차트 데이터","SSE.Views.ChartDataDialog.textUp":"위","SSE.Views.ChartDataRangeDialog.errorInFormula":"입력한 공식이 잘못되었습니다.","SSE.Views.ChartDataRangeDialog.errorInvalidReference":"참조가 잘못되었습니다. 참조는 열려 있는 워크시트여야 합니다.","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.errorMaxRows":"각 차트의 최대 데이터 계열 수는 255개입니다.","SSE.Views.ChartSettings.strLineWeight":"선 두께","SSE.Views.ChartSettings.strSparkColor":"색상","SSE.Views.ChartSettings.strTemplate":"템플릿","SSE.Views.ChartSettings.text3dDepth":"깊이(%)","SSE.Views.ChartSettings.text3dHeight":"높이(%)","SSE.Views.ChartSettings.text3dRotation":"3D 회전","SSE.Views.ChartSettings.textAdvanced":"고급 설정","SSE.Views.ChartSettings.textAutoscale":"자동 크기 조정","SSE.Views.ChartSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.","SSE.Views.ChartSettings.textChangeType":"유형 변경","SSE.Views.ChartSettings.textChartType":"차트 유형 변경","SSE.Views.ChartSettings.textDefault":"기본 로테이션","SSE.Views.ChartSettings.textDown":"아래로","SSE.Views.ChartSettings.textEditData":"데이터 및 위치 편집","SSE.Views.ChartSettings.textFirstPoint":"첫 번째 지점","SSE.Views.ChartSettings.textHeight":"높이","SSE.Views.ChartSettings.textHighPoint":"높은 점수","SSE.Views.ChartSettings.textKeepRatio":"상수 비율","SSE.Views.ChartSettings.textLastPoint":"마지막 지점","SSE.Views.ChartSettings.textLeft":"왼쪽","SSE.Views.ChartSettings.textLowPoint":"Low Point","SSE.Views.ChartSettings.textMarkers":"마커","SSE.Views.ChartSettings.textNarrow":"좁은 시야각","SSE.Views.ChartSettings.textNegativePoint":"Negative Point","SSE.Views.ChartSettings.textPerspective":"관점","SSE.Views.ChartSettings.textRanges":"참조 대상","SSE.Views.ChartSettings.textRight":"오른쪽","SSE.Views.ChartSettings.textRightAngle":"직각 축","SSE.Views.ChartSettings.textSelectData":"데이터 선택","SSE.Views.ChartSettings.textShow":"보기","SSE.Views.ChartSettings.textSize":"크기","SSE.Views.ChartSettings.textStyle":"스타일","SSE.Views.ChartSettings.textSwitch":"행 / 열 전환","SSE.Views.ChartSettings.textType":"유형","SSE.Views.ChartSettings.textUp":"위","SSE.Views.ChartSettings.textWiden":"시야 확장","SSE.Views.ChartSettings.textWidth":"너비","SSE.Views.ChartSettings.textX":"X 회전","SSE.Views.ChartSettings.textY":"Y 회전","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":"시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.","SSE.Views.ChartSettingsDlg.textAltTitle":"제목","SSE.Views.ChartSettingsDlg.textAuto":"Auto","SSE.Views.ChartSettingsDlg.textAutoEach":"각자 자동","SSE.Views.ChartSettingsDlg.textAxisCrosses":"교차축","SSE.Views.ChartSettingsDlg.textAxisOptions":"축 옵션","SSE.Views.ChartSettingsDlg.textAxisPos":"축 위치","SSE.Views.ChartSettingsDlg.textAxisSettings":"축 설정","SSE.Views.ChartSettingsDlg.textAxisTitle":"제목","SSE.Views.ChartSettingsDlg.textBase":"기본","SSE.Views.ChartSettingsDlg.textBetweenTickMarks":"눈금 사이","SSE.Views.ChartSettingsDlg.textBillions":"10 억","SSE.Views.ChartSettingsDlg.textBottom":"Bottom","SSE.Views.ChartSettingsDlg.textCategoryName":"카테고리 이름","SSE.Views.ChartSettingsDlg.textCenter":"Center","SSE.Views.ChartSettingsDlg.textChartElementsLegend":"차트 요소 &
차트 범례","SSE.Views.ChartSettingsDlg.textChartTitle":"차트 제목","SSE.Views.ChartSettingsDlg.textCross":"Cross","SSE.Views.ChartSettingsDlg.textCustom":"사용자 지정","SSE.Views.ChartSettingsDlg.textDataColumns":"열 단위로","SSE.Views.ChartSettingsDlg.textDataLabels":"데이터 레이블","SSE.Views.ChartSettingsDlg.textDataRange":"데이터 범위","SSE.Views.ChartSettingsDlg.textDataRows":"행 단위로","SSE.Views.ChartSettingsDlg.textDataSeries":"데이터 계열","SSE.Views.ChartSettingsDlg.textDisplayLegend":"범례 표시","SSE.Views.ChartSettingsDlg.textEmptyCells":"숨겨진 빈 셀","SSE.Views.ChartSettingsDlg.textEmptyLine":"데이터 요소를 선으로 연결","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.textHide":"숨기기","SSE.Views.ChartSettingsDlg.textHideAxis":"축 감추기","SSE.Views.ChartSettingsDlg.textHigh":"높음","SSE.Views.ChartSettingsDlg.textHorAxis":"가로 축","SSE.Views.ChartSettingsDlg.textHorAxisSec":"수평 보조축","SSE.Views.ChartSettingsDlg.textHorGrid":"수평 눈금 선","SSE.Views.ChartSettingsDlg.textHorizontal":"Horizontal","SSE.Views.ChartSettingsDlg.textHorTitle":"가로 축 제목","SSE.Views.ChartSettingsDlg.textHundredMil":"100 000 000","SSE.Views.ChartSettingsDlg.textHundreds":"Hundreds","SSE.Views.ChartSettingsDlg.textHundredThousands":"100 000","SSE.Views.ChartSettingsDlg.textIn":"In","SSE.Views.ChartSettingsDlg.textInnerBottom":"내부 하단","SSE.Views.ChartSettingsDlg.textInnerTop":"내부 상단","SSE.Views.ChartSettingsDlg.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.ChartSettingsDlg.textLabelDist":"축 레이블 거리","SSE.Views.ChartSettingsDlg.textLabelInterval":"레이블 간격","SSE.Views.ChartSettingsDlg.textLabelOptions":"레이블 옵션","SSE.Views.ChartSettingsDlg.textLabelPos":"레이블 위치","SSE.Views.ChartSettingsDlg.textLayout":"레이아웃","SSE.Views.ChartSettingsDlg.textLeft":"왼쪽","SSE.Views.ChartSettingsDlg.textLeftOverlay":"왼쪽 오버레이","SSE.Views.ChartSettingsDlg.textLegendBottom":"Bottom","SSE.Views.ChartSettingsDlg.textLegendLeft":"왼쪽","SSE.Views.ChartSettingsDlg.textLegendPos":"범례","SSE.Views.ChartSettingsDlg.textLegendRight":"오른쪽","SSE.Views.ChartSettingsDlg.textLegendTop":"Top","SSE.Views.ChartSettingsDlg.textLines":"선","SSE.Views.ChartSettingsDlg.textLocationRange":"위치 범위","SSE.Views.ChartSettingsDlg.textLogScale":"로그 스케일","SSE.Views.ChartSettingsDlg.textLow":"낮음","SSE.Views.ChartSettingsDlg.textMajor":"Major","SSE.Views.ChartSettingsDlg.textMajorMinor":"주니어 및 마이너","SSE.Views.ChartSettingsDlg.textMajorType":"주요 유형","SSE.Views.ChartSettingsDlg.textManual":"수동","SSE.Views.ChartSettingsDlg.textMarkers":"마커","SSE.Views.ChartSettingsDlg.textMarksInterval":"마크 간 간격","SSE.Views.ChartSettingsDlg.textMaxValue":"최대값","SSE.Views.ChartSettingsDlg.textMillions":"Millions","SSE.Views.ChartSettingsDlg.textMinor":"Minor","SSE.Views.ChartSettingsDlg.textMinorType":"보조 유형","SSE.Views.ChartSettingsDlg.textMinValue":"최소값","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":"외부 상단","SSE.Views.ChartSettingsDlg.textOverlay":"오버레이","SSE.Views.ChartSettingsDlg.textReverse":"역순으로 값","SSE.Views.ChartSettingsDlg.textReverseOrder":"역순","SSE.Views.ChartSettingsDlg.textRight":"오른쪽","SSE.Views.ChartSettingsDlg.textRightOverlay":"오른쪽 오버레이","SSE.Views.ChartSettingsDlg.textRotated":"Rotated","SSE.Views.ChartSettingsDlg.textSameAll":"모두 동일 함","SSE.Views.ChartSettingsDlg.textSelectData":"데이터 선택","SSE.Views.ChartSettingsDlg.textSeparator":"데이터 레이블 구분 기호","SSE.Views.ChartSettingsDlg.textSeriesName":"시리즈 이름","SSE.Views.ChartSettingsDlg.textShow":"보기","SSE.Views.ChartSettingsDlg.textShowAxis":"축 표시","SSE.Views.ChartSettingsDlg.textShowBorders":"차트 테두리 표시","SSE.Views.ChartSettingsDlg.textShowData":"숨겨진 행과 열에 데이터 표시","SSE.Views.ChartSettingsDlg.textShowEmptyCells":"빈 셀을 다음으로 표시","SSE.Views.ChartSettingsDlg.textShowEquation":"차트에 방정식 표시","SSE.Views.ChartSettingsDlg.textShowGrid":"눈금 선","SSE.Views.ChartSettingsDlg.textShowSparkAxis":"축 표시","SSE.Views.ChartSettingsDlg.textShowValues":"차트 값 표시","SSE.Views.ChartSettingsDlg.textSingle":"단일 스파크라인","SSE.Views.ChartSettingsDlg.textSmooth":"부드럽게","SSE.Views.ChartSettingsDlg.textSnap":"셀 잠그기","SSE.Views.ChartSettingsDlg.textSparkRanges":"스파크라인 범위","SSE.Views.ChartSettingsDlg.textStraight":"직선","SSE.Views.ChartSettingsDlg.textStyle":"스타일","SSE.Views.ChartSettingsDlg.textTenMillions":"10 000 000","SSE.Views.ChartSettingsDlg.textTenThousands":"10 000","SSE.Views.ChartSettingsDlg.textThousands":"수천","SSE.Views.ChartSettingsDlg.textTickOptions":"눈금 옵션","SSE.Views.ChartSettingsDlg.textTitle":"차트 - 고급 설정","SSE.Views.ChartSettingsDlg.textTitleSparkline":"스파크라인 - 고급 설정","SSE.Views.ChartSettingsDlg.textTop":"Top","SSE.Views.ChartSettingsDlg.textTrendlineOptions":"추세선 옵션","SSE.Views.ChartSettingsDlg.textTrillions":"수조","SSE.Views.ChartSettingsDlg.textTwoCell":"셀 이동 및 크기 조정","SSE.Views.ChartSettingsDlg.textType":"유형","SSE.Views.ChartSettingsDlg.textTypeData":"유형 및 데이터","SSE.Views.ChartSettingsDlg.textTypeStyle":"차트 유형, 스타일 &
참조 대상","SSE.Views.ChartSettingsDlg.textUnits":"표시 단위","SSE.Views.ChartSettingsDlg.textValue":"값","SSE.Views.ChartSettingsDlg.textVertAxis":"세로 축","SSE.Views.ChartSettingsDlg.textVertAxisSec":"수직 보조축","SSE.Views.ChartSettingsDlg.textVertGrid":"수직 눈금 선","SSE.Views.ChartSettingsDlg.textVertTitle":"세로 축 제목","SSE.Views.ChartSettingsDlg.textXAxisTitle":"X 축 제목","SSE.Views.ChartSettingsDlg.textYAxisTitle":"Y 축 제목","SSE.Views.ChartSettingsDlg.textZero":"Zero","SSE.Views.ChartSettingsDlg.txtEmpty":"이 입력란은 필수 항목","SSE.Views.ChartTypeDialog.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","SSE.Views.ChartTypeDialog.errorSecondaryAxis":"선택한 차트 유형에는 기존 차트에서 사용하는 보조 축이 필요합니다. 다른 차트 유형을 선택하세요.","SSE.Views.ChartTypeDialog.textSecondary":"보조축","SSE.Views.ChartTypeDialog.textSeries":"시리즈","SSE.Views.ChartTypeDialog.textStyle":"스타일","SSE.Views.ChartTypeDialog.textTitle":"차트 유형","SSE.Views.ChartTypeDialog.textType":"형식","SSE.Views.ChartWizardDialog.errorComboSeries":"혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.","SSE.Views.ChartWizardDialog.errorMaxPoints":"차트당 시리즈의 최대 포인트 수는 4096입니다.","SSE.Views.ChartWizardDialog.errorMaxRows":"차트당 최대 데이터 시리즈 수는 255개입니다.","SSE.Views.ChartWizardDialog.errorSecondaryAxis":"선택한 차트 유형에는 기존 차트에서 사용하는 보조 축이 필요합니다. 다른 차트 유형을 선택하세요.","SSE.Views.ChartWizardDialog.errorStockChart":"행 순서가 올바르지 않습니다. 주식 차트를 만들려면 시트에 다음 순서로 데이터를 배치하세요: 시가, 최고가, 최저가, 종가.","SSE.Views.ChartWizardDialog.textRecommended":"추천","SSE.Views.ChartWizardDialog.textSecondary":"보조 축","SSE.Views.ChartWizardDialog.textSeries":"시리즈","SSE.Views.ChartWizardDialog.textTitle":"차트 삽입","SSE.Views.ChartWizardDialog.textTitleChange":"차트 유형 변경","SSE.Views.ChartWizardDialog.textType":"유형","SSE.Views.ChartWizardDialog.txtSeriesDesc":"데이터 계열의 차트 유형과 축을 선택하세요","SSE.Views.ConstraintDialog.textDataConstraint":"제약 조건은 숫자, 단순 참조 또는 숫자 값을 포함하는 수식이어야 합니다.","SSE.Views.ConstraintDialog.textTooManyCells":"Too many cells","SSE.Views.ConstraintDialog.textUnequalCellsNumber":"Unequal number of cells in Cell Reference and Constraint","SSE.Views.ConstraintDialog.txtAdd":"추가","SSE.Views.ConstraintDialog.txtBin":"이진","SSE.Views.ConstraintDialog.txtCellRef":"셀 참조","SSE.Views.ConstraintDialog.txtConstraint":"제약조건","SSE.Views.ConstraintDialog.txtDiff":"AllDifferent","SSE.Views.ConstraintDialog.txtInt":"정수","SSE.Views.ConstraintDialog.txtNotValidRef":"셀 참조가 비어 있거나 내용이 유효하지 않습니다.","SSE.Views.ConstraintDialog.txtTitle":"조건 추가","SSE.Views.ConstraintDialog.txtTitleChange":"제약조건 변경","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.capDataExternalLinks":"외부 링크","SSE.Views.DataTab.capDataFromText":"데이터 검색","SSE.Views.DataTab.capGoalSeek":"목표값 찾기","SSE.Views.DataTab.capSolver":"Solver","SSE.Views.DataTab.mniFromFile":"로컬 시스템의 TXT/CSV","SSE.Views.DataTab.mniFromUrl":"Web 주소에서 TXT/CSV","SSE.Views.DataTab.mniFromXMLFile":"로컬 XML에서","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.tipExternalLinks":"이 스프레드시트와 연결된 다른 파일 보기","SSE.Views.DataTab.tipGoalSeek":"원하는 값을 얻기 위한 올바른 입력값을 찾습니다","SSE.Views.DataTab.tipGroup":"셀 범위를 그룹화","SSE.Views.DataTab.tipRemDuplicates":"시트에서 중복된 행을 삭제합니다","SSE.Views.DataTab.tipSolver":"대상 셀의 최적값을 찾으세요","SSE.Views.DataTab.tipToColumns":"텍스트가 있는 한 열을 여러 열로 나눕니다","SSE.Views.DataTab.tipUngroup":"셀 범위 그룹 해제","SSE.Views.DataValidationDialog.errorFormula":"이 값은 현재 오류로 평가됩니다. 계속하시겠습니까?","SSE.Views.DataValidationDialog.errorInvalid":"\"{0}\" 필드에 입력한 값이 잘못되었습니다.","SSE.Views.DataValidationDialog.errorInvalidDate":"\"{0}\" 필드에 입력한 날짜가 잘못되었습니다.","SSE.Views.DataValidationDialog.errorInvalidList":"목록 소스는 구분된 목록이거나 단일 행 또는 단일 열에 대한 참조여야 합니다.","SSE.Views.DataValidationDialog.errorInvalidTime":"\"{0}\" 필드에 입력한 시간이 잘못되었습니다.","SSE.Views.DataValidationDialog.errorMinGreaterMax":"\"{1}\" 필드는 \"{0}\" 필드보다 크거나 같아야 합니다.","SSE.Views.DataValidationDialog.errorMustEnterBothValues":"\"{0}\" 필드와 \"{1}\" 필드 모두에 값을 입력해야 합니다.","SSE.Views.DataValidationDialog.errorMustEnterValue":"\"{0}\" 필드에 값을 입력해야 합니다.","SSE.Views.DataValidationDialog.errorNamedRange":"지정한 명명된 범위를 찾을 수 없습니다.","SSE.Views.DataValidationDialog.errorNegativeTextLength":"\"{0}\" 조건에서는 음수 값을 사용할 수 없습니다.","SSE.Views.DataValidationDialog.errorNotNumeric":"필드 \"{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.textShowDropDown":"셀에 드롭 다운 목록 표시","SSE.Views.DataValidationDialog.textShowError":"잘못된 데이터 입력 시 오류 메시지 표시","SSE.Views.DataValidationDialog.textShowInput":"셀 선택 시 설명 메시지 표시","SSE.Views.DataValidationDialog.textSource":"출처","SSE.Views.DataValidationDialog.textStartDate":"시작일","SSE.Views.DataValidationDialog.textStartTime":"시작 시간","SSE.Views.DataValidationDialog.textStop":"정지","SSE.Views.DataValidationDialog.textStyle":"스타일","SSE.Views.DataValidationDialog.textTitle":"제목","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.txtStartTime":"시작 시간","SSE.Views.DataValidationDialog.txtTextLength":"텍스트 길이","SSE.Views.DataValidationDialog.txtTime":"시간","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.capCondition3":"보다 큼","SSE.Views.DigitalFilterDialog.capCondition30":"이후다","SSE.Views.DigitalFilterDialog.capCondition4":"크거나 같음","SSE.Views.DigitalFilterDialog.capCondition40":"이후 또는 같음","SSE.Views.DigitalFilterDialog.capCondition5":"미만","SSE.Views.DigitalFilterDialog.capCondition50":"이전","SSE.Views.DigitalFilterDialog.capCondition6":"작거나 같음","SSE.Views.DigitalFilterDialog.capCondition60":"이전 또는 같음","SSE.Views.DigitalFilterDialog.capCondition7":"시작 문자","SSE.Views.DigitalFilterDialog.capCondition8":"로 시작하지 않습니다","SSE.Views.DigitalFilterDialog.capCondition9":"로 끝남","SSE.Views.DigitalFilterDialog.capOr":"또는","SSE.Views.DigitalFilterDialog.textNoFilter":"필터 없음","SSE.Views.DigitalFilterDialog.textShowRows":"다음 조건을 만족하는 행 표시","SSE.Views.DigitalFilterDialog.textUse1":"한 문자 만 표시하려면?","SSE.Views.DigitalFilterDialog.textUse2":"모든 문자를 표시하려면 *를 사용하십시오.","SSE.Views.DigitalFilterDialog.txtSelectDate":"날짜선택","SSE.Views.DigitalFilterDialog.txtTitle":"사용자 정의 필터","SSE.Views.DocumentHolder.advancedEquationText":"방정식 설정","SSE.Views.DocumentHolder.advancedImgText":"이미지 고급 설정","SSE.Views.DocumentHolder.advancedShapeText":"모양 고급 설정","SSE.Views.DocumentHolder.advancedSlicerText":"슬라이서 고급 설정","SSE.Views.DocumentHolder.AlignBottom":"하단","SSE.Views.DocumentHolder.AlignCenter":"가운데","SSE.Views.DocumentHolder.AlignJust":"양쪽 맞춤","SSE.Views.DocumentHolder.AlignLeft":"왼쪽","SSE.Views.DocumentHolder.AlignMiddle":"가운데","SSE.Views.DocumentHolder.AlignRight":"오른쪽","SSE.Views.DocumentHolder.AlignText":"텍스트 정렬","SSE.Views.DocumentHolder.AlignTop":"맨 위","SSE.Views.DocumentHolder.allLinearText":"모두 - 선형","SSE.Views.DocumentHolder.allProfText":"전체 - 프로페셔널","SSE.Views.DocumentHolder.bottomCellText":"아래쪽 정렬","SSE.Views.DocumentHolder.btnChart":"차트 제목, 범례, 눈금선, 데이터 레이블 등 차트 요소 추가, 제거 또는 변경","SSE.Views.DocumentHolder.bulletsText":"글 머리 기호 및 번호 매기기","SSE.Views.DocumentHolder.centerCellText":"가운데 맞춤","SSE.Views.DocumentHolder.chartDataText":"차트 데이터 선택","SSE.Views.DocumentHolder.chartText":"차트 고급 설정","SSE.Views.DocumentHolder.chartTypeText":"차트 유형 변경","SSE.Views.DocumentHolder.currLinearText":"전류 - 선형","SSE.Views.DocumentHolder.currProfText":"현재-직업","SSE.Views.DocumentHolder.deleteColumnText":"열","SSE.Views.DocumentHolder.deleteRowText":"행","SSE.Views.DocumentHolder.deleteTableText":"테이블","SSE.Views.DocumentHolder.DepthAxis":"Z 축","SSE.Views.DocumentHolder.direct270Text":"텍스트 회전","SSE.Views.DocumentHolder.direct90Text":"텍스트 아래로 회전","SSE.Views.DocumentHolder.directHText":"Horizontal","SSE.Views.DocumentHolder.directionText":"텍스트 방향","SSE.Views.DocumentHolder.editChartText":"데이터 편집","SSE.Views.DocumentHolder.editHyperlinkText":"하이퍼 링크 편집","SSE.Views.DocumentHolder.hideEqToolbar":"수식 도구 모음 숨기기","SSE.Views.DocumentHolder.insertColumnLeftText":"왼쪽 열","SSE.Views.DocumentHolder.insertColumnRightText":"오른쪽 열","SSE.Views.DocumentHolder.insertRowAboveText":"위의 행","SSE.Views.DocumentHolder.insertRowBelowText":"아래 행","SSE.Views.DocumentHolder.latexText":"라텍","SSE.Views.DocumentHolder.originalSizeText":"실제 크기","SSE.Views.DocumentHolder.removeHyperlinkText":"하이퍼 링크 제거","SSE.Views.DocumentHolder.selectColumnText":"전체 열","SSE.Views.DocumentHolder.selectDataText":"열 데이터","SSE.Views.DocumentHolder.selectRowText":"행","SSE.Views.DocumentHolder.selectTableText":"테이블","SSE.Views.DocumentHolder.showEqToolbar":"수식 도구 모음 표시","SSE.Views.DocumentHolder.strDelete":"서명 삭제","SSE.Views.DocumentHolder.strDetails":"서명 상세","SSE.Views.DocumentHolder.strSetup":"서명 셋업","SSE.Views.DocumentHolder.strSign":"서명","SSE.Views.DocumentHolder.textAlign":"정렬","SSE.Views.DocumentHolder.textArrange":"순서","SSE.Views.DocumentHolder.textArrangeBack":"맨 뒤로 보내기","SSE.Views.DocumentHolder.textArrangeBackward":"뒤로 보내기","SSE.Views.DocumentHolder.textArrangeForward":"앞으로 보내기","SSE.Views.DocumentHolder.textArrangeFront":"맨 앞으로 보내기","SSE.Views.DocumentHolder.textAverage":"평균","SSE.Views.DocumentHolder.textAxes":"축","SSE.Views.DocumentHolder.textAxisTitles":"축 제목","SSE.Views.DocumentHolder.textBullets":"글 머리 기호","SSE.Views.DocumentHolder.textChartTitle":"차트 제목","SSE.Views.DocumentHolder.textCopyCells":"셀 복사","SSE.Views.DocumentHolder.textCount":"계산","SSE.Views.DocumentHolder.textCrop":"자르기","SSE.Views.DocumentHolder.textCropFill":"채우기","SSE.Views.DocumentHolder.textCropFit":"맞춤","SSE.Views.DocumentHolder.textDataTable":"데이터 표","SSE.Views.DocumentHolder.textEditPoints":"꼭지점 수정","SSE.Views.DocumentHolder.textEntriesList":"드롭 다운 목록에서 선택","SSE.Views.DocumentHolder.textErrorBars":"오류 막대","SSE.Views.DocumentHolder.textExponential":"지수","SSE.Views.DocumentHolder.textFillDays":"일자 채우기","SSE.Views.DocumentHolder.textFillFormatOnly":"서식만 채우기","SSE.Views.DocumentHolder.textFillMonths":"월 단위 채우기","SSE.Views.DocumentHolder.textFillSeries":"연속 데이터 채우기","SSE.Views.DocumentHolder.textFillWeekdays":"주중 날짜 채우기","SSE.Views.DocumentHolder.textFillWithoutFormat":"서식 없이 채우기","SSE.Views.DocumentHolder.textFillYears":"연도 채우기","SSE.Views.DocumentHolder.textFlashFill":"플래시 채우기","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.textGrowthTrend":"증가 추세","SSE.Views.DocumentHolder.textHorizontalMajor":"가로 주 눈금","SSE.Views.DocumentHolder.textHorizontalMinor":"가로 부 눈금","SSE.Views.DocumentHolder.textLinear":"선형","SSE.Views.DocumentHolder.textLinearForecast":"선형 예측","SSE.Views.DocumentHolder.textLinearTrend":"선형 추세","SSE.Views.DocumentHolder.textLines":"선","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.textMovingAverage":"이동 평균(2)","SSE.Views.DocumentHolder.textNone":"없음","SSE.Views.DocumentHolder.textNumbering":"번호 매기기","SSE.Views.DocumentHolder.textReplace":"이미지 바꾸기","SSE.Views.DocumentHolder.textResetCrop":"자르기 초기화","SSE.Views.DocumentHolder.textRotate":"회전","SSE.Views.DocumentHolder.textRotate270":"왼쪽으로 90도 회전","SSE.Views.DocumentHolder.textRotate90":"오른쪽으로 90도 회전","SSE.Views.DocumentHolder.textSaveAsPicture":"그림으로 저장","SSE.Views.DocumentHolder.textSeries":"시리즈","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.textShapesMerge":"도형 병합","SSE.Views.DocumentHolder.textShowDataTable":"데이터 표 표시","SSE.Views.DocumentHolder.textShowLegendKeys":"범례 항목 표시","SSE.Views.DocumentHolder.textShowUpDown":"상승/하락 막대 표시","SSE.Views.DocumentHolder.textStandardDeviation":"표준편차","SSE.Views.DocumentHolder.textStandardError":"표준오차","SSE.Views.DocumentHolder.textStdDev":"표준편차","SSE.Views.DocumentHolder.textSum":"합계","SSE.Views.DocumentHolder.textTrendline":"추세선","SSE.Views.DocumentHolder.textUndo":"실행 취소","SSE.Views.DocumentHolder.textUnFreezePanes":"창 고정 취소","SSE.Views.DocumentHolder.textUpDownBars":"위/아래 막대","SSE.Views.DocumentHolder.textVar":"표본분산","SSE.Views.DocumentHolder.textVerticalMajor":"세로 주 눈금","SSE.Views.DocumentHolder.textVerticalMinor":"세로 부 눈금","SSE.Views.DocumentHolder.tipMarkersArrow":"화살 글머리 기호","SSE.Views.DocumentHolder.tipMarkersCheckmark":"체크 표시 글머리 기호","SSE.Views.DocumentHolder.tipMarkersDash":"대시 글머리 기호","SSE.Views.DocumentHolder.tipMarkersFRhombus":"채워진 마름모 글머리 기호","SSE.Views.DocumentHolder.tipMarkersFRound":"채워진 원형 글머리 기호","SSE.Views.DocumentHolder.tipMarkersFSquare":"채워진 사각형 글머리 기호","SSE.Views.DocumentHolder.tipMarkersHRound":"빈 원형 글머리 기호","SSE.Views.DocumentHolder.tipMarkersStar":"별 글머리 기호","SSE.Views.DocumentHolder.topCellText":"정렬 위쪽","SSE.Views.DocumentHolder.txtAccounting":"회계","SSE.Views.DocumentHolder.txtAddComment":"주석 추가","SSE.Views.DocumentHolder.txtAddNamedRange":"이름 정의","SSE.Views.DocumentHolder.txtArrange":"순서","SSE.Views.DocumentHolder.txtAscending":"오름차순","SSE.Views.DocumentHolder.txtAutoColumnWidth":"자동 맞춤 열 너비","SSE.Views.DocumentHolder.txtAutoRowHeight":"행 높이 자동 맞춤","SSE.Views.DocumentHolder.txtAverage":"평균","SSE.Views.DocumentHolder.txtCellFormat":"셀 서식","SSE.Views.DocumentHolder.txtClear":"지우기","SSE.Views.DocumentHolder.txtClearAll":"모두","SSE.Views.DocumentHolder.txtClearComments":"코멘트","SSE.Views.DocumentHolder.txtClearFormat":"형식","SSE.Views.DocumentHolder.txtClearHyper":"하이퍼 링크","SSE.Views.DocumentHolder.txtClearPivotField":"{0}에서 필터 선택 초기화","SSE.Views.DocumentHolder.txtClearSparklineGroups":"선택한 스파크라인 그룹 지우기","SSE.Views.DocumentHolder.txtClearSparklines":"선택한 스파크라인 지우기","SSE.Views.DocumentHolder.txtClearText":"텍스트","SSE.Views.DocumentHolder.txtCollapse":"축소","SSE.Views.DocumentHolder.txtCollapseEntire":"전체 필드 접기","SSE.Views.DocumentHolder.txtColumn":"전체 열","SSE.Views.DocumentHolder.txtColumnWidth":"열 너비 설정","SSE.Views.DocumentHolder.txtCondFormat":"조건부 서식","SSE.Views.DocumentHolder.txtCopy":"복사","SSE.Views.DocumentHolder.txtCount":"계산","SSE.Views.DocumentHolder.txtCurrency":"통화","SSE.Views.DocumentHolder.txtCustomColumnWidth":"사용자 정의 열 너비","SSE.Views.DocumentHolder.txtCustomRowHeight":"사용자 정의 행 높이","SSE.Views.DocumentHolder.txtCustomSort":"정렬","SSE.Views.DocumentHolder.txtCut":"잘라 내기","SSE.Views.DocumentHolder.txtDateLong":"확장된 날짜 형식","SSE.Views.DocumentHolder.txtDateShort":"간단한 날짜 형식","SSE.Views.DocumentHolder.txtDelete":"삭제","SSE.Views.DocumentHolder.txtDelField":"삭제","SSE.Views.DocumentHolder.txtDescending":"내림차순","SSE.Views.DocumentHolder.txtDifference":"차이","SSE.Views.DocumentHolder.txtDistribHor":"수평 분포","SSE.Views.DocumentHolder.txtDistribVert":"수직 분포","SSE.Views.DocumentHolder.txtEditComment":"주석 편집","SSE.Views.DocumentHolder.txtEditObject":"개체 편집","SSE.Views.DocumentHolder.txtExpand":"확장","SSE.Views.DocumentHolder.txtExpandCollapse":"펼치기/접기","SSE.Views.DocumentHolder.txtExpandEntire":"전체 필드 펼치기","SSE.Views.DocumentHolder.txtFieldSettings":"필드 세팅","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.txtGetLink":"이 범위의 링크 가져오기","SSE.Views.DocumentHolder.txtGrandTotal":"총합계","SSE.Views.DocumentHolder.txtGroup":"그룹","SSE.Views.DocumentHolder.txtHide":"숨기기","SSE.Views.DocumentHolder.txtIndex":"색인","SSE.Views.DocumentHolder.txtInsert":"삽입","SSE.Views.DocumentHolder.txtInsHyperlink":"하이퍼 링크","SSE.Views.DocumentHolder.txtInsImage":"파일에서 이미지 삽입","SSE.Views.DocumentHolder.txtInsImageUrl":"URL에서 이미지 삽입","SSE.Views.DocumentHolder.txtLabelFilter":"라벨 필터","SSE.Views.DocumentHolder.txtMax":"최대","SSE.Views.DocumentHolder.txtMin":"최소","SSE.Views.DocumentHolder.txtMoreOptions":"더 많은 옵션","SSE.Views.DocumentHolder.txtNormal":"계산되지 않음","SSE.Views.DocumentHolder.txtNumber":"숫자","SSE.Views.DocumentHolder.txtNumFormat":"숫자 형식","SSE.Views.DocumentHolder.txtPaste":"붙여 넣기","SSE.Views.DocumentHolder.txtPercent":"백분율","SSE.Views.DocumentHolder.txtPercentage":"백분율","SSE.Views.DocumentHolder.txtPercentDiff":"%의 차이","SSE.Views.DocumentHolder.txtPercentOfCol":"열 전체의 %","SSE.Views.DocumentHolder.txtPercentOfGrand":"총계의 %","SSE.Views.DocumentHolder.txtPercentOfParent":"상위 합계의 %","SSE.Views.DocumentHolder.txtPercentOfParentCol":"상위 열 합계의 %","SSE.Views.DocumentHolder.txtPercentOfParentRow":"상위 행 합계의 %","SSE.Views.DocumentHolder.txtPercentOfRunTotal":"누계 합계 %","SSE.Views.DocumentHolder.txtPercentOfTotal":"행 전체의 %","SSE.Views.DocumentHolder.txtPivotSettings":"피벗 테이블 설정","SSE.Views.DocumentHolder.txtProduct":"제품","SSE.Views.DocumentHolder.txtRankAscending":"오름차순으로 순위 매기기","SSE.Views.DocumentHolder.txtRankDescending":"내림차순으로 순위 매기기","SSE.Views.DocumentHolder.txtReapply":"재적용","SSE.Views.DocumentHolder.txtRefresh":"새로고침","SSE.Views.DocumentHolder.txtRow":"전체 행","SSE.Views.DocumentHolder.txtRowHeight":"행 높이 설정","SSE.Views.DocumentHolder.txtRunTotal":"총실행","SSE.Views.DocumentHolder.txtScientific":"지수","SSE.Views.DocumentHolder.txtSelect":"선택","SSE.Views.DocumentHolder.txtShiftDown":"셀을 아래로 이동","SSE.Views.DocumentHolder.txtShiftLeft":"셀을 왼쪽으로 시프트","SSE.Views.DocumentHolder.txtShiftRight":"셀을 오른쪽으로 이동","SSE.Views.DocumentHolder.txtShiftUp":"셀을 위로 이동","SSE.Views.DocumentHolder.txtShow":"숨기기 취소","SSE.Views.DocumentHolder.txtShowAs":"표시된 값은","SSE.Views.DocumentHolder.txtShowComment":"설명 표시","SSE.Views.DocumentHolder.txtShowDetails":"세부 정보 표시","SSE.Views.DocumentHolder.txtSort":"정렬","SSE.Views.DocumentHolder.txtSortCellColor":"위에 셀 색상 선택","SSE.Views.DocumentHolder.txtSortFontColor":"선택한 글꼴 색을 맨 위에 표시","SSE.Views.DocumentHolder.txtSortOption":"더 많은 정렬 옵션","SSE.Views.DocumentHolder.txtSparklines":"스파크라인","SSE.Views.DocumentHolder.txtSubtotalField":"소계","SSE.Views.DocumentHolder.txtSum":"합계","SSE.Views.DocumentHolder.txtSummarize":"값을 요약하는 기준으로","SSE.Views.DocumentHolder.txtText":"텍스트","SSE.Views.DocumentHolder.txtTextAdvanced":"단락 고급 설정","SSE.Views.DocumentHolder.txtTime":"시간","SSE.Views.DocumentHolder.txtTop10":"상위 10","SSE.Views.DocumentHolder.txtUngroup":"그룹 해제","SSE.Views.DocumentHolder.txtValueFieldSettings":"값 필드 설정","SSE.Views.DocumentHolder.txtValueFilter":"값 필터","SSE.Views.DocumentHolder.txtWidth":"폭","SSE.Views.DocumentHolder.unicodeText":"유니코드","SSE.Views.DocumentHolder.vertAlignText":"Vertical Alignment","SSE.Views.ExternalLinksDlg.textAutoUpdate":"연결된 원본에서 자동으로 데이터 업데이트","SSE.Views.FieldSettingsDialog.strLayout":"레이아웃","SSE.Views.FieldSettingsDialog.strSubtotals":"소계","SSE.Views.FieldSettingsDialog.textNumFormat":"숫자 형식","SSE.Views.FieldSettingsDialog.textReport":"보고서 폼","SSE.Views.FieldSettingsDialog.textTitle":"필드 세팅","SSE.Views.FieldSettingsDialog.txtAverage":"평균","SSE.Views.FieldSettingsDialog.txtBlank":"각 항목 다음에 빈 줄을 삽입","SSE.Views.FieldSettingsDialog.txtBottom":"그룹 하단에 표시","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.txtRepeat":"각 행에서 항목 레이블을 반복","SSE.Views.FieldSettingsDialog.txtShowSubtotals":"소계 표시","SSE.Views.FieldSettingsDialog.txtSourceName":"소스 이름:","SSE.Views.FieldSettingsDialog.txtStdDev":"표준편차","SSE.Views.FieldSettingsDialog.txtStdDevp":"표준편차","SSE.Views.FieldSettingsDialog.txtSum":"합계","SSE.Views.FieldSettingsDialog.txtSummarize":"부분합 함수","SSE.Views.FieldSettingsDialog.txtTabular":"표 형식","SSE.Views.FieldSettingsDialog.txtTop":"그룹 상단에 표시","SSE.Views.FieldSettingsDialog.txtVar":"표본분산","SSE.Views.FieldSettingsDialog.txtVarp":"분산","SSE.Views.FileMenu.ariaFileMenu":"파일 메뉴","SSE.Views.FileMenu.btnBackCaption":"파일 위치 열기","SSE.Views.FileMenu.btnCloseEditor":"파일 닫기","SSE.Views.FileMenu.btnCloseMenuCaption":"메뉴 닫기","SSE.Views.FileMenu.btnCreateNewCaption":"새로 만들기","SSE.Views.FileMenu.btnDownloadCaption":"다운로드 방법","SSE.Views.FileMenu.btnExitCaption":"완료","SSE.Views.FileMenu.btnExportToPDFCaption":"PDF로 내보내기","SSE.Views.FileMenu.btnFileOpenCaption":"열기","SSE.Views.FileMenu.btnHelpCaption":"Help","SSE.Views.FileMenu.btnHistoryCaption":"버전 기록","SSE.Views.FileMenu.btnInfoCaption":"스프레드 시트 정보","SSE.Views.FileMenu.btnPrintCaption":"인쇄","SSE.Views.FileMenu.btnProtectCaption":"보호","SSE.Views.FileMenu.btnRecentFilesCaption":"최근 열기","SSE.Views.FileMenu.btnRenameCaption":"Rename","SSE.Views.FileMenu.btnReturnCaption":"스프레드시트로 돌아 가기","SSE.Views.FileMenu.btnRightsCaption":"액세스 권한","SSE.Views.FileMenu.btnSaveAsCaption":"다른 이름으로 저장","SSE.Views.FileMenu.btnSaveCaption":"저장","SSE.Views.FileMenu.btnSaveCopyAsCaption":"다른 이름으로 저장","SSE.Views.FileMenu.btnSettingsCaption":"고급 설정","SSE.Views.FileMenu.btnSuggestCaption":"기능 제안","SSE.Views.FileMenu.btnSwitchToMobileCaption":"모바일 보기로 전환","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.txtAddProperty":"속성 추가","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.txtCommon":"일반","SSE.Views.FileMenuPanels.DocumentInfo.txtCreated":"생성됨","SSE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle":"문서 속성","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"최종 편집자","SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"최종 편집","SSE.Views.FileMenuPanels.DocumentInfo.txtNo":"아니오","SSE.Views.FileMenuPanels.DocumentInfo.txtOwner":"소유자","SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"위치","SSE.Views.FileMenuPanels.DocumentInfo.txtProperties":"속성","SSE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError":"동일한 제목의 속성이 이미 존재합니다","SSE.Views.FileMenuPanels.DocumentInfo.txtRights":"권한이있는 사람","SSE.Views.FileMenuPanels.DocumentInfo.txtSpreadsheetInfo":"스프레드시트 정보","SSE.Views.FileMenuPanels.DocumentInfo.txtSubject":"제목","SSE.Views.FileMenuPanels.DocumentInfo.txtTags":"태그 추가","SSE.Views.FileMenuPanels.DocumentInfo.txtTitle":"스프레드 시트 제목","SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"업로드 되었습니다","SSE.Views.FileMenuPanels.DocumentInfo.txtYes":"확인","SSE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"접근 권한","SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"액세스 권한 변경","SSE.Views.FileMenuPanels.DocumentRights.txtRights":"권한이있는 사람","SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText":"적용","SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode":"공동 편집 모드","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904":"1904 날짜 시스템 사용","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator":"소수점 구분 기호","SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage":"사전 언어","SSE.Views.FileMenuPanels.MainSettingsGeneral.strEnableIterative":"반복 계산 사용","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast":"Fast","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender":"글꼴 힌트","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale":"수식 언어","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx":"예 : SUM; MIN; MAX; COUNT","SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip":"함수 툴팁 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strHScroll":"가로 스크롤바 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE":"대문자 무시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers":"숫자가 있는 단어 무시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings":"매크로 설정","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxChange":"최대 변경량","SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxIterations":"최대 반복 횟수","SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton":"내용을 붙여넣을 때 \"붙여넣기 옵션\" 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle":"R1C1 참조 양식","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings":"국가 별 설정","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx":"예 :","SSE.Views.FileMenuPanels.MainSettingsGeneral.strRTLSupport":"오른쪽에서 왼쪽 인터페이스","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments":"시트에서 코멘트 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges":"다른 사용자의 변경사항 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments":"해결된 코멘트 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll":"스크롤 시 격자에 맞춤","SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict":"Strict","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle":"탭 스타일","SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme":"인터페이스 테마","SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator":"천 단위 구분자","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit":"측정 단위","SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings":"지역 설정에 따라 구분 기호 사용","SSE.Views.FileMenuPanels.MainSettingsGeneral.strVScroll":"세로 스크롤바 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom":"기본 확대/축소 값","SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes":"매 10 분마다","SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes":"30 분마다","SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes":"매 5 분마다","SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes":"매시간","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover":"자동 복구","SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave":"자동 저장","SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled":"사용 안 함","SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill":"채우기","SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave":"모든 기록 버전을 서버에 저장","SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine":"선","SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute":"Every Minute","SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle":"참조 스타일","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAdvancedSettings":"고급 설정","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance":"모양","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect":"자동 고침 옵션...","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe":"벨라루스어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg":"불가리아어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa":"캐나다어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode":"사전 설정 캐시 모드","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating":"계산 중","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm":"센티미터","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration":"협업","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs":"체코어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCustomizeQuickAccess":"빠른 실행 도구 모음 사용자 지정","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa":"덴마크어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe":"Deutsch","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving":"편집 및 저장","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl":"그리스어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn":"영어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtErrorNumber":"입력하신 항목을 사용할 수 없습니다. 정수 또는 소수가 필요할 수 있습니다.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs":"스페인어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip":"실시간 공동 편집. 모든 변경사항은 자동으로 저장됩니다.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi":"끝","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr":"프랑스 국민","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu":"헝가리어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHy":"아르메니아어","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.txtLastUsed":"최종 사용","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.txtProofing":"보정","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt":"Point","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr":"브라질어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang":"포르투갈어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint":"편집기 헤더에 빠른 인쇄 버튼 표시","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip":"문서는 마지막으로 선택한 프린터 또는 기본 프린터에서 인쇄됩니다.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion":"지역","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo":"루마니아어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu":"러시아어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros":"모두 활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc":"알림 없이 모든 매크로 활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtScreenReader":"화면 읽기 지원 활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir":"기본 시트 방향","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc":"이 설정은 새 시트에만 적용됩니다","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr":"왼쪽에서 오른쪽으로","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl":"오른쪽에서 왼쪽으로","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk":"슬로바키아어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl":"슬로베이나어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSr":"세르비아어(라틴어)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSrcyrl":"세르비아어(키릴 문자)","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros":"모두 비활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc":"알림없이 모든 매크로를 비활성화","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip":"변경 사항을 동기화하기 위해 '저장' 버튼을 사용하세요","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv":"스웨덴어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTabBack":"도구 모음 색상을 탭 배경으로 사용","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr":"터키어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk":"우크라이나어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Alt 키를 사용하세요.","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey":"키보드를 사용하여 사용자 인터페이스를 탐색하려면 Option 키를 사용하세요.","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.txtWorkspace":"워크스페이스","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh":"중국어","SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZhtw":"중국어 (번체)","SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle":"경고","SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt":"비밀번호로","SSE.Views.FileMenuPanels.ProtectDoc.strProtect":"스프레드시트 보호","SSE.Views.FileMenuPanels.ProtectDoc.strSignature":"서명으로","SSE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature":"스프레드시트에 유효한 서명이 추가되었습니다.
스프레드시트는 편집으로부터 보호됩니다.","SSE.Views.FileMenuPanels.ProtectDoc.txtAddSignature":"눈에 보이지 않는 디지털 서명을 추가하여
스프레드시트의 무결성을 보장하세요.","SSE.Views.FileMenuPanels.ProtectDoc.txtEdit":"스프레드시트 편집","SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning":"편집은 스프레드시트에서 서명을 삭제할 것입니다.
계속하시겠습니까?","SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted":"이 스프레드시트는 비밀번호로 보호되어있습니다.","SSE.Views.FileMenuPanels.ProtectDoc.txtProtectSpreadsheet":"해당 스프레드시트를 비밀번호로 암호화하세요.","SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures":"이 스프레드시트는 서명되어야 합니다.","SSE.Views.FileMenuPanels.ProtectDoc.txtSigned":"유효한 서명이 스프레드시트에 추가되었습니다. 이 스프레드시트는 편집할 수 없도록 보호되었습니다.","SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid":"스프레드시트에 몇 가지 디지털 서명이 유효하지 않거나 확인되지 않음. 스프레드시트는 편집할 수 없도록 보호됨.","SSE.Views.FileMenuPanels.ProtectDoc.txtView":"서명 보기","SSE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"키보드 단축키","SSE.Views.FileMenuPanels.Settings.txtCustomize":"사용자 정의","SSE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"다운로드 방법","SSE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"다른 이름으로 저장","SSE.Views.FillSeriesDialog.textAuto":"자동 채우기","SSE.Views.FillSeriesDialog.textCols":"열","SSE.Views.FillSeriesDialog.textDate":"날짜","SSE.Views.FillSeriesDialog.textDateUnit":"날짜 단위","SSE.Views.FillSeriesDialog.textDay":"일","SSE.Views.FillSeriesDialog.textGrowth":"증가","SSE.Views.FillSeriesDialog.textLinear":"선형","SSE.Views.FillSeriesDialog.textMonth":"월","SSE.Views.FillSeriesDialog.textRows":"행","SSE.Views.FillSeriesDialog.textSeries":"계열 방향","SSE.Views.FillSeriesDialog.textStep":"단계 값","SSE.Views.FillSeriesDialog.textStop":"종료 값","SSE.Views.FillSeriesDialog.textTitle":"시리즈","SSE.Views.FillSeriesDialog.textTrend":"추세","SSE.Views.FillSeriesDialog.textType":"유형","SSE.Views.FillSeriesDialog.textWeek":"요일","SSE.Views.FillSeriesDialog.textYear":"년","SSE.Views.FillSeriesDialog.txtErrorNumber":"입력하신 항목을 사용할 수 없습니다. 정수 또는 소수가 필요할 수 있습니다.","SSE.Views.FormatRulesEditDlg.fillColor":"채우기 색","SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle":"경고","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.textColor":"글꼴색","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.textIconLabel":"{0}{1}시 &","SSE.Views.FormatRulesEditDlg.textIconLabelFirst":"{0}{1}시","SSE.Views.FormatRulesEditDlg.textIconLabelLast":"고정값일때","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.textReverse":"아이콘 순서 반전","SSE.Views.FormatRulesEditDlg.textRight2Left":"오른쪽에서 왼쪽으로","SSE.Views.FormatRulesEditDlg.textRightBorders":"오른쪽 테두리","SSE.Views.FormatRulesEditDlg.textRule":"규칙","SSE.Views.FormatRulesEditDlg.textSameAs":"양수와 같음","SSE.Views.FormatRulesEditDlg.textSelectData":"데이터 선택","SSE.Views.FormatRulesEditDlg.textShortBar":"가장 잛은 열","SSE.Views.FormatRulesEditDlg.textShowBar":"막대만 표시","SSE.Views.FormatRulesEditDlg.textShowIcon":"아이콘만 표시","SSE.Views.FormatRulesEditDlg.textSingleRef":"이 유형의 참조는 조건부 형식 수식에서 사용할 수 없습니다.
참조를 단일 셀로 변경하거나 =SUM(A1:B5)와 같은 워크시트 수식으로 설정하십시오.","SSE.Views.FormatRulesEditDlg.textSolid":"실선","SSE.Views.FormatRulesEditDlg.textStrikeout":"취소선","SSE.Views.FormatRulesEditDlg.textSubscript":"아래 첨자","SSE.Views.FormatRulesEditDlg.textSuperscript":"위첨자","SSE.Views.FormatRulesEditDlg.textTopBorders":"위쪽 테두리","SSE.Views.FormatRulesEditDlg.textUnderline":"밑줄","SSE.Views.FormatRulesEditDlg.tipBorders":"테두리","SSE.Views.FormatRulesEditDlg.tipNumFormat":"숫자 형식","SSE.Views.FormatRulesEditDlg.txtAccounting":"회계","SSE.Views.FormatRulesEditDlg.txtCurrency":"통화","SSE.Views.FormatRulesEditDlg.txtDate":"날짜","SSE.Views.FormatRulesEditDlg.txtDateLong":"확장된 날짜 형식","SSE.Views.FormatRulesEditDlg.txtDateShort":"간단한 날짜 형식","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.txtText":"텍스트","SSE.Views.FormatRulesEditDlg.txtTime":"시간","SSE.Views.FormatRulesEditDlg.txtTitleEdit":"포맷 규칙을 편집","SSE.Views.FormatRulesEditDlg.txtTitleNew":"새로운 형식 규칙","SSE.Views.FormatRulesManagerDlg.guestText":"게스트","SSE.Views.FormatRulesManagerDlg.lockText":"잠김","SSE.Views.FormatRulesManagerDlg.text1Above":"표준편차 1이상 평균","SSE.Views.FormatRulesManagerDlg.text1Below":"표준편차 1이하 평균","SSE.Views.FormatRulesManagerDlg.text2Above":"표준편차 2이상 평균","SSE.Views.FormatRulesManagerDlg.text2Below":"표준편차 2이하 평균","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.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.textScope":"규칙 형식 표시","SSE.Views.FormatRulesManagerDlg.textSelectData":"데이터 선택","SSE.Views.FormatRulesManagerDlg.textSelection":"현재 섹션","SSE.Views.FormatRulesManagerDlg.textThisPivot":"이 피벗","SSE.Views.FormatRulesManagerDlg.textThisSheet":"이 워크시트","SSE.Views.FormatRulesManagerDlg.textThisTable":"이 표","SSE.Views.FormatRulesManagerDlg.textUnique":"고유값","SSE.Views.FormatRulesManagerDlg.textUp":"규칙을 위로 이동","SSE.Views.FormatRulesManagerDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.FormatRulesManagerDlg.txtTitle":"조건부 서식","SSE.Views.FormulaDialog.sDescription":"설명","SSE.Views.FormulaDialog.textGroupDescription":"기능 그룹 선택","SSE.Views.FormulaDialog.textListDescription":"함수 선택","SSE.Views.FormulaDialog.txtRecommended":"추천","SSE.Views.FormulaDialog.txtSearch":"검색","SSE.Views.FormulaDialog.txtTitle":"함수 삽입","SSE.Views.FormulaTab.capBtnRemoveArr":"화살표 제거","SSE.Views.FormulaTab.capBtnTraceDep":"종속 항목 추적","SSE.Views.FormulaTab.capBtnTracePrec":"선행 항목 추적","SSE.Views.FormulaTab.textAutomatic":"자동","SSE.Views.FormulaTab.textCalculateCurrentSheet":"현재 시트 계산","SSE.Views.FormulaTab.textCalculateWorkbook":"통합 문서 계산","SSE.Views.FormulaTab.textManual":"수동","SSE.Views.FormulaTab.tipCalculate":"계산하다","SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook":"전체 통합 문서 계산","SSE.Views.FormulaTab.tipRemoveArr":"선행 추적 또는 종속 추적으로 그려진 화살표 제거","SSE.Views.FormulaTab.tipShowFormulas":"결과 값 대신 각 셀의 수식 표시","SSE.Views.FormulaTab.tipTraceDep":"선택한 셀의 값에 영향을 받는 셀을 나타내는 화살표 표시","SSE.Views.FormulaTab.tipTracePrec":"선택한 셀의 값에 영향을 미치는 셀을 나타내는 화살표 표시","SSE.Views.FormulaTab.tipWatch":"Watch 창 목록에 셀을 추가하세요.","SSE.Views.FormulaTab.txtAdditional":"추가","SSE.Views.FormulaTab.txtAutosum":"자동 합계","SSE.Views.FormulaTab.txtAutosumTip":"합계","SSE.Views.FormulaTab.txtCalculation":"계산","SSE.Views.FormulaTab.txtFormula":"함수","SSE.Views.FormulaTab.txtFormulaTip":"함수 삽입","SSE.Views.FormulaTab.txtMore":"더 많은 기능","SSE.Views.FormulaTab.txtRecent":"최근 사용된","SSE.Views.FormulaTab.txtRemDep":"종속 화살표 제거","SSE.Views.FormulaTab.txtRemPrec":"선행 화살표 제거","SSE.Views.FormulaTab.txtShowFormulas":"수식 표시","SSE.Views.FormulaTab.txtWatch":"모니터링 창","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.textNoArgsDesc":"이 인수에 대한 설명이 없습니다","SSE.Views.FormulaWizard.textNumber":"숫자","SSE.Views.FormulaWizard.textReadMore":"자세히 보기","SSE.Views.FormulaWizard.textRef":"참조","SSE.Views.FormulaWizard.textText":"텍스트","SSE.Views.FormulaWizard.textTitle":"함수의 인수","SSE.Views.FormulaWizard.textValue":"수식의 결과","SSE.Views.GoalSeekDlg.textChangingCell":"변경할 셀","SSE.Views.GoalSeekDlg.textDataRangeError":"수식에 범위가 없습니다","SSE.Views.GoalSeekDlg.textMustContainFormula":"셀에는 수식이 포함되어야 합니다","SSE.Views.GoalSeekDlg.textMustContainValue":"셀에는 값이 반드시 있어야 합니다","SSE.Views.GoalSeekDlg.textMustFormulaResultNumber":"셀의 공식 결과는 숫자여야 합니다.","SSE.Views.GoalSeekDlg.textMustSingleCell":"참조는 단일 셀이어야 합니다","SSE.Views.GoalSeekDlg.textSelectData":"데이터 선택","SSE.Views.GoalSeekDlg.textSetCell":"설정 셀","SSE.Views.GoalSeekDlg.textTitle":"목표값 찾기","SSE.Views.GoalSeekDlg.textToValue":"값으로","SSE.Views.GoalSeekDlg.txtEmpty":"이 필드는 필수입니다","SSE.Views.GoalSeekDlg.txtErrorNumber":"입력하신 항목을 사용할 수 없습니다. 정수 또는 소수가 필요할 수 있습니다.","SSE.Views.GoalSeekStatusDlg.textContinue":"계속","SSE.Views.GoalSeekStatusDlg.textCurrentValue":"현재 값:","SSE.Views.GoalSeekStatusDlg.textFoundSolution":"셀 {0}을(를) 사용한 목표값 찾기에서 해결책을 찾았습니다.","SSE.Views.GoalSeekStatusDlg.textNotFoundSolution":"셀 {0}을(를) 사용한 목표값 찾기에서 해결책을 찾지 못했을 수 있습니다.","SSE.Views.GoalSeekStatusDlg.textPause":"중지 중","SSE.Views.GoalSeekStatusDlg.textSearchIteration":"셀 {0}을(를) 사용한 목표값 찾기, 반복 #{1} 진행 중입니다.","SSE.Views.GoalSeekStatusDlg.textStep":"단계","SSE.Views.GoalSeekStatusDlg.textTargetValue":"목표 값:","SSE.Views.GoalSeekStatusDlg.textTitle":"목표값 찾기 상태","SSE.Views.HeaderFooterDialog.textAlign":"페이지 본문 영역에 정렬","SSE.Views.HeaderFooterDialog.textAll":"전체 페이지","SSE.Views.HeaderFooterDialog.textBold":"굵은체","SSE.Views.HeaderFooterDialog.textCenter":"중앙","SSE.Views.HeaderFooterDialog.textColor":"글꼴색","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.textImage":"그림","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.textScale":"문서에 맞게 조정","SSE.Views.HeaderFooterDialog.textSheet":"시트 이름","SSE.Views.HeaderFooterDialog.textStrikeout":"취소선","SSE.Views.HeaderFooterDialog.textSubscript":"아래 첨자","SSE.Views.HeaderFooterDialog.textSuperscript":"위첨자","SSE.Views.HeaderFooterDialog.textTime":"시간","SSE.Views.HeaderFooterDialog.textTitle":"머리글/바닥글 설정","SSE.Views.HeaderFooterDialog.textUnderline":"밑줄","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.textGetLink":"링크 가져오기","SSE.Views.HyperlinkSettingsDialog.textInternalLink":"내부 데이터 범위","SSE.Views.HyperlinkSettingsDialog.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.HyperlinkSettingsDialog.textNames":"정의 된 이름","SSE.Views.HyperlinkSettingsDialog.textSelectData":"데이터 선택","SSE.Views.HyperlinkSettingsDialog.textSelectFile":"파일 선택","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.HyperlinkSettingsDialog.txtSizeLimit":"이 필드는 2083 자로 제한되어 있습니다","SSE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder":"웹 주소를 입력하거나 파일을 선택하세요","SSE.Views.ImageSettings.strTransparency":"불투명도","SSE.Views.ImageSettings.textAdvanced":"고급 설정","SSE.Views.ImageSettings.textCrop":"자르기","SSE.Views.ImageSettings.textCropFill":"채우기","SSE.Views.ImageSettings.textCropFit":"맞춤","SSE.Views.ImageSettings.textCropToShape":"도형에 맞게 자르기","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.textRecentlyUsed":"최근 사용된","SSE.Views.ImageSettings.textResetCrop":"자르기 초기화","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":"제목","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.ImageSettingsAdvanced.textVertically":"세로","SSE.Views.ImportFromXmlDialog.textDestination":"데이터를 저장할 위치를 선택하세요.","SSE.Views.ImportFromXmlDialog.textExist":"존재하는 워크시트","SSE.Views.ImportFromXmlDialog.textInvalidRange":"유효하지 않은 셀 범위","SSE.Views.ImportFromXmlDialog.textNew":"신규 워크시트","SSE.Views.ImportFromXmlDialog.textSelectData":"데이터 선택","SSE.Views.ImportFromXmlDialog.textTitle":"데이터 가져오기","SSE.Views.ImportFromXmlDialog.txtEmpty":"이 입력란은 필수 항목","SSE.Views.LeftMenu.ariaLeftMenu":"왼쪽 메뉴","SSE.Views.LeftMenu.tipAbout":"정보","SSE.Views.LeftMenu.tipChat":"채팅","SSE.Views.LeftMenu.tipComments":"코멘트","SSE.Views.LeftMenu.tipFile":"파일","SSE.Views.LeftMenu.tipPlugins":"플러그인","SSE.Views.LeftMenu.tipSearch":"Search","SSE.Views.LeftMenu.tipSpellcheck":"맞춤법 검사","SSE.Views.LeftMenu.tipSupport":"피드백 및 지원","SSE.Views.LeftMenu.txtDeveloper":"개발자 모드","SSE.Views.LeftMenu.txtEditor":"스프레드시트 편집기","SSE.Views.LeftMenu.txtLimit":"접근 제한","SSE.Views.LeftMenu.txtTrial":"시험 모드","SSE.Views.LeftMenu.txtTrialDev":"개발자 모드 시도","SSE.Views.MacroDialog.textMacro":"매크로 이름","SSE.Views.MacroDialog.textTitle":"매크로 지정","SSE.Views.MainSettingsPrint.okButtonText":"저장","SSE.Views.MainSettingsPrint.strBottom":"아래쪽","SSE.Views.MainSettingsPrint.strLandscape":"가로 모드","SSE.Views.MainSettingsPrint.strLeft":"왼쪽","SSE.Views.MainSettingsPrint.strMargins":"여백","SSE.Views.MainSettingsPrint.strPortrait":"세로","SSE.Views.MainSettingsPrint.strPrint":"인쇄","SSE.Views.MainSettingsPrint.strPrintTitles":"제목 인쇄","SSE.Views.MainSettingsPrint.strRight":"오른쪽","SSE.Views.MainSettingsPrint.strTop":"위쪽","SSE.Views.MainSettingsPrint.textActualSize":"실제 크기","SSE.Views.MainSettingsPrint.textCustom":"사용자 정의","SSE.Views.MainSettingsPrint.textCustomOptions":"사용자 정의 옵션","SSE.Views.MainSettingsPrint.textFitCols":"한 페이지에 모든 열 맞추기","SSE.Views.MainSettingsPrint.textFitPage":"한 페이지에 시트 맞추기","SSE.Views.MainSettingsPrint.textFitRows":"한 페이지에 모든 행 맞추기","SSE.Views.MainSettingsPrint.textPageOrientation":"페이지 방향","SSE.Views.MainSettingsPrint.textPageScaling":"스케일링","SSE.Views.MainSettingsPrint.textPageSize":"페이지 크기","SSE.Views.MainSettingsPrint.textPrintGrid":"눈금 선 인쇄","SSE.Views.MainSettingsPrint.textPrintHeadings":"행 및 열 머리글 인쇄","SSE.Views.MainSettingsPrint.textRepeat":"반복...","SSE.Views.MainSettingsPrint.textRepeatLeft":"왼쪽 열을 반복","SSE.Views.MainSettingsPrint.textRepeatTop":"위의 행을 반복","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.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":"범위","SSE.Views.NamedRangeEditDlg.textSelectData":"데이터 선택","SSE.Views.NamedRangeEditDlg.txtEmpty":"이 입력란은 필수 항목","SSE.Views.NamedRangeEditDlg.txtTitleEdit":"이름 편집","SSE.Views.NamedRangeEditDlg.txtTitleNew":"새 이름","SSE.Views.NamedRangePasteDlg.textNames":"Named Ranges","SSE.Views.NamedRangePasteDlg.txtTitle":"붙여 넣기 이름","SSE.Views.NameManagerDlg.closeButtonText":"닫기","SSE.Views.NameManagerDlg.guestText":"게스트","SSE.Views.NameManagerDlg.lockText":"잠김","SSE.Views.NameManagerDlg.textDataRange":"데이터 범위","SSE.Views.NameManagerDlg.textDelete":"삭제","SSE.Views.NameManagerDlg.textEdit":"편집","SSE.Views.NameManagerDlg.textEmpty":"명명 된 범위가 아직 생성되지 않았습니다.
명명 된 하나 이상의 범위를 만들고이 필드에 나타납니다.","SSE.Views.NameManagerDlg.textFilter":"필터","SSE.Views.NameManagerDlg.textFilterAll":"모두","SSE.Views.NameManagerDlg.textFilterDefNames":"정의 된 이름","SSE.Views.NameManagerDlg.textFilterSheet":"이름이 시트로 범위 지정됨","SSE.Views.NameManagerDlg.textFilterTableNames":"테이블 이름","SSE.Views.NameManagerDlg.textFilterWorkbook":"이름이 통합 문서로 범위 지정됨","SSE.Views.NameManagerDlg.textNew":"새로 만들기","SSE.Views.NameManagerDlg.textnoNames":"필터와 일치하는 명명 된 범위를 찾을 수 없습니다.","SSE.Views.NameManagerDlg.textRanges":"이름 범위","SSE.Views.NameManagerDlg.textScope":"범위","SSE.Views.NameManagerDlg.textWorkbook":"통합 문서","SSE.Views.NameManagerDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.NameManagerDlg.txtTitle":"이름 관리자","SSE.Views.NameManagerDlg.warnDelete":"이름 {0}을 삭제 하시겠습니까?","SSE.Views.PageMarginsDialog.textBottom":"바닥","SSE.Views.PageMarginsDialog.textCenter":"페이지 중앙 정렬","SSE.Views.PageMarginsDialog.textHor":"수평","SSE.Views.PageMarginsDialog.textLeft":"왼쪽","SSE.Views.PageMarginsDialog.textRight":"오른쪽","SSE.Views.PageMarginsDialog.textTitle":"여백","SSE.Views.PageMarginsDialog.textTop":"위","SSE.Views.PageMarginsDialog.textVert":"세로","SSE.Views.PageMarginsDialog.textWarning":"경고","SSE.Views.PageMarginsDialog.warnCheckMargings":"여백이 잘못되었습니다","SSE.Views.ParagraphSettings.strLineHeight":"줄 간격","SSE.Views.ParagraphSettings.strParagraphSpacing":"단락 간격","SSE.Views.ParagraphSettings.strSpacingAfter":"이후","SSE.Views.ParagraphSettings.strSpacingBefore":"이전","SSE.Views.ParagraphSettings.textAdvanced":"고급 설정","SSE.Views.ParagraphSettings.textAt":"At","SSE.Views.ParagraphSettings.textAtLeast":"적어도","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.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.strSpacing":"간격","SSE.Views.ParagraphSettingsAdvanced.strStrike":"취소선","SSE.Views.ParagraphSettingsAdvanced.strSubscript":"아래 첨자","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":"모두 제거","SSE.Views.ParagraphSettingsAdvanced.textSet":"지정","SSE.Views.ParagraphSettingsAdvanced.textTabCenter":"Center","SSE.Views.ParagraphSettingsAdvanced.textTabLeft":"왼쪽","SSE.Views.ParagraphSettingsAdvanced.textTabPosition":"탭 위치","SSE.Views.ParagraphSettingsAdvanced.textTabRight":"Right","SSE.Views.ParagraphSettingsAdvanced.textTitle":"단락 - 고급 설정","SSE.Views.ParagraphSettingsAdvanced.txtAutoText":"자동","SSE.Views.PivotCalculatedItemsDialog.txtDelete":"삭제","SSE.Views.PivotCalculatedItemsDialog.txtDuplicate":"중복","SSE.Views.PivotCalculatedItemsDialog.txtEdit":"편집","SSE.Views.PivotCalculatedItemsDialog.txtFormula":"수식","SSE.Views.PivotCalculatedItemsDialog.txtItemsName":"항목 이름","SSE.Views.PivotCalculatedItemsDialog.txtNew":"신규","SSE.Views.PivotCalculatedItemsDialog.txtTitle":"내 계산된 항목","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.capCondition30":"이후","SSE.Views.PivotDigitalFilterDialog.capCondition4":"크거나 같음","SSE.Views.PivotDigitalFilterDialog.capCondition40":"이후 또는 같음","SSE.Views.PivotDigitalFilterDialog.capCondition5":"미만","SSE.Views.PivotDigitalFilterDialog.capCondition50":"이전","SSE.Views.PivotDigitalFilterDialog.capCondition6":"작거나 같음","SSE.Views.PivotDigitalFilterDialog.capCondition60":"이전 또는 같음","SSE.Views.PivotDigitalFilterDialog.capCondition7":"~와 함께 시작하다.\n~로 시작하다","SSE.Views.PivotDigitalFilterDialog.capCondition8":"다음 문자에서 시작하기","SSE.Views.PivotDigitalFilterDialog.capCondition9":"종료","SSE.Views.PivotDigitalFilterDialog.textShowDate":"날짜가 다음과 같은 항목 표시:","SSE.Views.PivotDigitalFilterDialog.textShowLabel":"레이블이 지정된 항목을 표시:","SSE.Views.PivotDigitalFilterDialog.textShowValue":"다음의 항목이 표시:","SSE.Views.PivotDigitalFilterDialog.textUse1":"? 를 사용하여 단일 문자를 나타낼 수 있습니다.","SSE.Views.PivotDigitalFilterDialog.textUse2":"모든 문자를 표시하려면 *를 사용하십시오.","SSE.Views.PivotDigitalFilterDialog.txtAnd":"그리고","SSE.Views.PivotDigitalFilterDialog.txtTitleDate":"날짜 필터","SSE.Views.PivotDigitalFilterDialog.txtTitleLabel":"라벨 필터","SSE.Views.PivotDigitalFilterDialog.txtTitleValue":"값 필터","SSE.Views.PivotGroupDialog.textAuto":"자동","SSE.Views.PivotGroupDialog.textBy":"작성","SSE.Views.PivotGroupDialog.textDays":"일","SSE.Views.PivotGroupDialog.textEnd":"종료","SSE.Views.PivotGroupDialog.textError":"이 필드는 숫자 여야합니다","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.textSec":"초","SSE.Views.PivotGroupDialog.textStart":"시작 시간","SSE.Views.PivotGroupDialog.textYear":"년","SSE.Views.PivotGroupDialog.txtTitle":"그룹핑","SSE.Views.PivotInsertCalculatedItemDialog.txtDescription":"계산 항목을 사용하여 하나의 필드 내에서 서로 다른 항목 간의 기본 계산을 수행할 수 있습니다.","SSE.Views.PivotInsertCalculatedItemDialog.txtFormula":"수식","SSE.Views.PivotInsertCalculatedItemDialog.txtInsertIntoFormula":"수식에 삽입","SSE.Views.PivotInsertCalculatedItemDialog.txtItem":"항목","SSE.Views.PivotInsertCalculatedItemDialog.txtItemName":"항목 이름","SSE.Views.PivotInsertCalculatedItemDialog.txtItems":"항목들","SSE.Views.PivotInsertCalculatedItemDialog.txtReadMore":"자세히 보기","SSE.Views.PivotInsertCalculatedItemDialog.txtTitle":"계산된 항목 삽입 위치","SSE.Views.PivotSettings.textAdvanced":"고급 설정","SSE.Views.PivotSettings.textColumns":"열","SSE.Views.PivotSettings.textFields":"필드 선택","SSE.Views.PivotSettings.textFilters":"필터","SSE.Views.PivotSettings.textRows":"행","SSE.Views.PivotSettings.textValues":"값","SSE.Views.PivotSettings.txtAddColumn":"열에 추가","SSE.Views.PivotSettings.txtAddFilter":"필터에 추가","SSE.Views.PivotSettings.txtAddRow":"행에 추가","SSE.Views.PivotSettings.txtAddValues":"값에 추가","SSE.Views.PivotSettings.txtFieldSettings":"필드 세팅","SSE.Views.PivotSettings.txtMoveBegin":"시작점으로 이동","SSE.Views.PivotSettings.txtMoveColumn":"열로 이동","SSE.Views.PivotSettings.txtMoveDown":"아래로 이동","SSE.Views.PivotSettings.txtMoveEnd":"끝으로 이동","SSE.Views.PivotSettings.txtMoveFilter":"필터로 이동","SSE.Views.PivotSettings.txtMoveRow":"행으로 이동","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.textAltTitle":"제목","SSE.Views.PivotSettingsAdvanced.textAutofitColWidth":"업데이트 시에 열 너비 자동 맞춤","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.textOver":"종료 후 아래로","SSE.Views.PivotSettingsAdvanced.textSelectData":"데이터 선택","SSE.Views.PivotSettingsAdvanced.textShowCols":"열에 표시","SSE.Views.PivotSettingsAdvanced.textShowHeaders":"행과 열의 필드 헤더 표시","SSE.Views.PivotSettingsAdvanced.textShowRows":"행에 표시","SSE.Views.PivotSettingsAdvanced.textTitle":"피벗테이블-고급설정","SSE.Views.PivotSettingsAdvanced.textWrapCol":"열별 필터 필드 보고서","SSE.Views.PivotSettingsAdvanced.textWrapRow":"행별 필터 필드 보고서","SSE.Views.PivotSettingsAdvanced.txtEmpty":"이 입력란은 필수 항목입니다.","SSE.Views.PivotSettingsAdvanced.txtName":"이름","SSE.Views.PivotShowDetailDialog.textDescription":"표시할 세부 항목이 포함된 필드를 선택하세요:","SSE.Views.PivotShowDetailDialog.txtTitle":"세부 정보 표시","SSE.Views.PivotTable.capBlankRows":"빈 행","SSE.Views.PivotTable.capGrandTotals":"종합 합계","SSE.Views.PivotTable.capLayout":"레이아웃 리포트","SSE.Views.PivotTable.capSubtotals":"서브 합계","SSE.Views.PivotTable.mniBottomSubtotals":"그룹 하단에 모든 서브 합계를 보여주기","SSE.Views.PivotTable.mniInsertBlankLine":"각 아이템 다음에 빈 라인을 추가하기","SSE.Views.PivotTable.mniLayoutCompact":"컴팩트 폼으로 보여주기","SSE.Views.PivotTable.mniLayoutNoRepeat":"모든 아이템 레이블을 반복하지 말 것","SSE.Views.PivotTable.mniLayoutOutline":"개요 폼으로 보여주기","SSE.Views.PivotTable.mniLayoutRepeat":"모든 아이템 레이블 반복","SSE.Views.PivotTable.mniLayoutTabular":"태블러 폼으로 보여주기","SSE.Views.PivotTable.mniNoSubtotals":"서브 합계를 보여주지 말 것","SSE.Views.PivotTable.mniOffTotals":"행과 열에 적용","SSE.Views.PivotTable.mniOnColumnsTotals":"열에만 적용","SSE.Views.PivotTable.mniOnRowsTotals":"행에만 적용","SSE.Views.PivotTable.mniOnTotals":"행과 열에 적용","SSE.Views.PivotTable.mniRemoveBlankLine":"각 아이템 다음에 빈 라인 삭제","SSE.Views.PivotTable.mniTopSubtotals":"그룹 상단에 모든 서브 합계 보여주기","SSE.Views.PivotTable.textColBanded":"줄무늬 열","SSE.Views.PivotTable.textColHeader":"열 머리글","SSE.Views.PivotTable.textRowBanded":"줄무늬 행","SSE.Views.PivotTable.textRowHeader":"열 헤더","SSE.Views.PivotTable.tipCalculatedItems":"계산된 항목","SSE.Views.PivotTable.tipCreatePivot":"피벗 테이블 삽입","SSE.Views.PivotTable.tipGrandTotals":"종합 합계 보이기 또는 숨기기","SSE.Views.PivotTable.tipRefresh":"데이터 소스에서 정보를 업데이트 하기","SSE.Views.PivotTable.tipRefreshCurrent":"현재 표의 데이터 소스로부터 정보 업데이트","SSE.Views.PivotTable.tipSelect":"전체 피벗 테이블 선택","SSE.Views.PivotTable.tipSubtotals":"서브 합계 보이기 또는 숨기기","SSE.Views.PivotTable.txtCalculatedItems":"계산된 항목","SSE.Views.PivotTable.txtCollapseEntire":"전체 필드 접기","SSE.Views.PivotTable.txtCreate":"표 삽입","SSE.Views.PivotTable.txtExpandEntire":"전체 필드 펼치기","SSE.Views.PivotTable.txtGroupPivot_Custom":"사용자 정의","SSE.Views.PivotTable.txtGroupPivot_Dark":"어두운","SSE.Views.PivotTable.txtGroupPivot_Light":"밝은","SSE.Views.PivotTable.txtGroupPivot_Medium":"중","SSE.Views.PivotTable.txtPivotTable":"피벗 테이블","SSE.Views.PivotTable.txtRefresh":"새로고침","SSE.Views.PivotTable.txtRefreshAll":"모두 새로 고침","SSE.Views.PivotTable.txtSelect":"선택","SSE.Views.PivotTable.txtTable_PivotStyleDark":"피벗 테이블 어두운 스타일","SSE.Views.PivotTable.txtTable_PivotStyleLight":"피벗 테이블 밝은 스타일","SSE.Views.PivotTable.txtTable_PivotStyleMedium":"피벗 테이블 중간 스타일","SSE.Views.PrintSettings.btnDownload":"저장 및 다운로드","SSE.Views.PrintSettings.btnExport":"저장 및 내보내기","SSE.Views.PrintSettings.btnPrint":"저장 및 인쇄","SSE.Views.PrintSettings.strBottom":"아래쪽","SSE.Views.PrintSettings.strLandscape":"가로 모드","SSE.Views.PrintSettings.strLeft":"왼쪽","SSE.Views.PrintSettings.strMargins":"여백","SSE.Views.PrintSettings.strPortrait":"세로","SSE.Views.PrintSettings.strPrint":"인쇄","SSE.Views.PrintSettings.strPrintTitles":"제목 인쇄","SSE.Views.PrintSettings.strRight":"오른쪽","SSE.Views.PrintSettings.strShow":"표시","SSE.Views.PrintSettings.strTop":"위쪽","SSE.Views.PrintSettings.textActiveSheets":"활성 시트","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.textMarginsNarrow":"좁게","SSE.Views.PrintSettings.textMarginsNormal":"표준","SSE.Views.PrintSettings.textMarginsWide":"넓게","SSE.Views.PrintSettings.textPageOrientation":"페이지 방향","SSE.Views.PrintSettings.textPages":"페이지:","SSE.Views.PrintSettings.textPageScaling":"스케일링","SSE.Views.PrintSettings.textPageSize":"페이지 크기","SSE.Views.PrintSettings.textPrintGrid":"눈금 선 인쇄","SSE.Views.PrintSettings.textPrintHeadings":"행 및 열 머리글 인쇄","SSE.Views.PrintSettings.textPrintRange":"인쇄 범위","SSE.Views.PrintSettings.textRange":"범위","SSE.Views.PrintSettings.textRepeat":"반복...","SSE.Views.PrintSettings.textRepeatLeft":"왼쪽 열을 반복","SSE.Views.PrintSettings.textRepeatTop":"위의 행을 반복","SSE.Views.PrintSettings.textSelection":"선택","SSE.Views.PrintSettings.textSettings":"시트 설정","SSE.Views.PrintSettings.textShowDetails":"세부 정보 표시","SSE.Views.PrintSettings.textShowGrid":"눈금선 표시","SSE.Views.PrintSettings.textShowHeadings":"행 및 열 머리글을 표시","SSE.Views.PrintSettings.textTitle":"인쇄 설정","SSE.Views.PrintSettings.textTitlePDF":"PDF 설정","SSE.Views.PrintSettings.textTo":"받는 사람","SSE.Views.PrintSettings.txtMarginsLast":"마지막 사용자 정의","SSE.Views.PrintTitlesDialog.textFirstCol":"첫째 열","SSE.Views.PrintTitlesDialog.textFirstRow":"머리글 행","SSE.Views.PrintTitlesDialog.textFrozenCols":"고정 된 열","SSE.Views.PrintTitlesDialog.textFrozenRows":"고정된 행","SSE.Views.PrintTitlesDialog.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.PrintTitlesDialog.textLeft":"왼쪽 열을 반복","SSE.Views.PrintTitlesDialog.textNoRepeat":"반복 없음","SSE.Views.PrintTitlesDialog.textRepeat":"반복...","SSE.Views.PrintTitlesDialog.textSelectRange":"범위 선택","SSE.Views.PrintTitlesDialog.textTitle":"제목 인쇄","SSE.Views.PrintTitlesDialog.textTop":"위의 행을 반복","SSE.Views.PrintWithPreview.txtActiveSheets":"활성 시트","SSE.Views.PrintWithPreview.txtActualSize":"실제 크기","SSE.Views.PrintWithPreview.txtAllSheets":"모든 시트","SSE.Views.PrintWithPreview.txtApplyToAllSheets":"모든 시트에 적용","SSE.Views.PrintWithPreview.txtAuto":"Auto","SSE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"흑백 인쇄","SSE.Views.PrintWithPreview.txtBothSides":"양면에 인쇄","SSE.Views.PrintWithPreview.txtBothSidesLongDesc":"긴 변을 중심으로 페이지를 뒤집다","SSE.Views.PrintWithPreview.txtBothSidesShortDesc":"짧은 변을 중심으로 페이지를 뒤집다","SSE.Views.PrintWithPreview.txtBottom":"바닥","SSE.Views.PrintWithPreview.txtColorPrinting":"컬러 인쇄","SSE.Views.PrintWithPreview.txtCopies":"사본","SSE.Views.PrintWithPreview.txtCurrentSheet":"현재 시트","SSE.Views.PrintWithPreview.txtCustom":"사용자 정의","SSE.Views.PrintWithPreview.txtCustomOptions":"사용자 정의 옵션","SSE.Views.PrintWithPreview.txtEmptyTable":"표가 비어 있어 인쇄할 내용이 없습니다","SSE.Views.PrintWithPreview.txtFirstPageNumber":"첫 페이지 수:","SSE.Views.PrintWithPreview.txtFitCols":"한 페이지에 모든 열 맞추기","SSE.Views.PrintWithPreview.txtFitPage":"한 페이지에 시트 맞추기","SSE.Views.PrintWithPreview.txtFitRows":"한 페이지에 모든 행 맞추기","SSE.Views.PrintWithPreview.txtGridlinesAndHeadings":"눈금선 및 글머리","SSE.Views.PrintWithPreview.txtHeaderFooterSettings":"머리글/바닥글 설정","SSE.Views.PrintWithPreview.txtIgnore":"인쇄 영역 무시","SSE.Views.PrintWithPreview.txtLandscape":"가로 모드","SSE.Views.PrintWithPreview.txtLeft":"왼쪽","SSE.Views.PrintWithPreview.txtMargins":"여백","SSE.Views.PrintWithPreview.txtMarginsLast":"마지막 사용자 정의","SSE.Views.PrintWithPreview.txtMarginsNarrow":"좁게","SSE.Views.PrintWithPreview.txtMarginsNormal":"표준","SSE.Views.PrintWithPreview.txtMarginsWide":"넓게","SSE.Views.PrintWithPreview.txtOf":"/ {0}","SSE.Views.PrintWithPreview.txtOneSide":"단면 인쇄","SSE.Views.PrintWithPreview.txtOneSideDesc":"페이지의 한쪽에만 인쇄","SSE.Views.PrintWithPreview.txtPage":"페이지","SSE.Views.PrintWithPreview.txtPageNumInvalid":"페이지 번호가 잘못되었습니다.","SSE.Views.PrintWithPreview.txtPageOrientation":"페이지 방향","SSE.Views.PrintWithPreview.txtPages":"페이지:","SSE.Views.PrintWithPreview.txtPageSize":"페이지 크기","SSE.Views.PrintWithPreview.txtPortrait":"세로","SSE.Views.PrintWithPreview.txtPrint":"인쇄","SSE.Views.PrintWithPreview.txtPrinter":"프린터","SSE.Views.PrintWithPreview.txtPrinterNotSelected":"선택된 프린터 없음","SSE.Views.PrintWithPreview.txtPrintersNotFound":"프린터를 찾을 수 없습니다","SSE.Views.PrintWithPreview.txtPrintGrid":"눈금 선 인쇄","SSE.Views.PrintWithPreview.txtPrintHeadings":"행 및 열 머리글 인쇄","SSE.Views.PrintWithPreview.txtPrintRange":"인쇄 범위","SSE.Views.PrintWithPreview.txtPrintSides":"인쇄면","SSE.Views.PrintWithPreview.txtPrintTitles":"제목 인쇄","SSE.Views.PrintWithPreview.txtPrintToPDF":"PDF로 인쇄","SSE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"시스템 대화상자를 사용하여 인쇄","SSE.Views.PrintWithPreview.txtRepeat":"반복...","SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft":"왼쪽 열을 반복","SSE.Views.PrintWithPreview.txtRepeatRowsAtTop":"위의 행을 반복","SSE.Views.PrintWithPreview.txtRight":"오른쪽","SSE.Views.PrintWithPreview.txtSave":"저장","SSE.Views.PrintWithPreview.txtScaling":"스케일링","SSE.Views.PrintWithPreview.txtSelection":"선택","SSE.Views.PrintWithPreview.txtSettingsOfSheet":"시트 설정","SSE.Views.PrintWithPreview.txtSheet":"시트: {0}","SSE.Views.PrintWithPreview.txtTo":"받는 사람","SSE.Views.PrintWithPreview.txtTop":"맨 위","SSE.Views.PrintWithPreview.txtWaitingForPrinters":"프린터 대기 중","SSE.Views.ProtectDialog.textExistName":"오류! 제목이 지정된 범위가 이미 있습니다.","SSE.Views.ProtectDialog.textInvalidName":"범위 표준은 문자로 시작해야 하며 숫자, 문자 및 공백만 포함할 수 있습니다.","SSE.Views.ProtectDialog.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.ProtectDialog.textSelectData":"데이터 선택","SSE.Views.ProtectDialog.txtAllow":"모든 사용자 허용:","SSE.Views.ProtectDialog.txtAllowDescription":"편집을 위해 특정 범위를 잠금 해제할 수 있습니다.","SSE.Views.ProtectDialog.txtAllowRanges":"허용 범위 편집","SSE.Views.ProtectDialog.txtAutofilter":"자동 필터 사용","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.txtOptional":"선택","SSE.Views.ProtectDialog.txtPassword":"비밀번호","SSE.Views.ProtectDialog.txtPivot":"피벗 테이블과 피벗 차트를 사용","SSE.Views.ProtectDialog.txtProtect":"보호","SSE.Views.ProtectDialog.txtRange":"범위","SSE.Views.ProtectDialog.txtRangeName":"제목","SSE.Views.ProtectDialog.txtRepeat":"비밀번호 확인","SSE.Views.ProtectDialog.txtScen":"시나리오 편집","SSE.Views.ProtectDialog.txtSelLocked":"잠긴 셀 선택","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.ProtectedRangesEditDlg.textAnonymous":"익명사용자","SSE.Views.ProtectedRangesEditDlg.textAnyone":"모두","SSE.Views.ProtectedRangesEditDlg.textCanEdit":"편집","SSE.Views.ProtectedRangesEditDlg.textCantView":"거부됨","SSE.Views.ProtectedRangesEditDlg.textCanView":"보기","SSE.Views.ProtectedRangesEditDlg.textInvalidName":"범위 표준은 문자로 시작해야 하며 숫자, 문자 및 공백만 포함할 수 있습니다.","SSE.Views.ProtectedRangesEditDlg.textInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.ProtectedRangesEditDlg.textRemove":"제거","SSE.Views.ProtectedRangesEditDlg.textSelectData":"데이터 선택","SSE.Views.ProtectedRangesEditDlg.textYou":"당신","SSE.Views.ProtectedRangesEditDlg.txtAccess":"범위 접근 권한","SSE.Views.ProtectedRangesEditDlg.txtEmpty":"이 입력란은 필수 항목","SSE.Views.ProtectedRangesEditDlg.txtProtect":"보호","SSE.Views.ProtectedRangesEditDlg.txtRange":"범위","SSE.Views.ProtectedRangesEditDlg.txtRangeName":"제목","SSE.Views.ProtectedRangesEditDlg.txtYouCanEdit":"이 범위는 당신 만이 편집할 수 있습니다.","SSE.Views.ProtectedRangesEditDlg.userPlaceholder":"이름 또는 이메일 주소 입력 시작","SSE.Views.ProtectedRangesManagerDlg.guestText":"게스트","SSE.Views.ProtectedRangesManagerDlg.lockText":"잠김","SSE.Views.ProtectedRangesManagerDlg.textDelete":"삭제","SSE.Views.ProtectedRangesManagerDlg.textEdit":"편집","SSE.Views.ProtectedRangesManagerDlg.textEmpty":"아직 보호된 범위가 생성되지 않았습니다.
최소한 하나의 보호된 범위를 생성하면 이 필드에 나타납니다.","SSE.Views.ProtectedRangesManagerDlg.textFilter":"필터","SSE.Views.ProtectedRangesManagerDlg.textFilterAll":"모든","SSE.Views.ProtectedRangesManagerDlg.textNew":"신규","SSE.Views.ProtectedRangesManagerDlg.textProtect":"시트 보호","SSE.Views.ProtectedRangesManagerDlg.textRange":"범위","SSE.Views.ProtectedRangesManagerDlg.textRangesDesc":"선택한 사람들에게 편집 범위를 제한할 수 있습니다.","SSE.Views.ProtectedRangesManagerDlg.textTitle":"제목","SSE.Views.ProtectedRangesManagerDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.ProtectedRangesManagerDlg.txtAccess":"접근","SSE.Views.ProtectedRangesManagerDlg.txtDenied":"거부됨","SSE.Views.ProtectedRangesManagerDlg.txtEdit":"편집","SSE.Views.ProtectedRangesManagerDlg.txtEditRange":"범위 편집","SSE.Views.ProtectedRangesManagerDlg.txtNewRange":"새로운 범위","SSE.Views.ProtectedRangesManagerDlg.txtTitle":"보호된 범위","SSE.Views.ProtectedRangesManagerDlg.txtView":"보기","SSE.Views.ProtectedRangesManagerDlg.warnDelete":"보호된 범위 {0}를 삭제하시겠습니까?
스프레드시트의 수정 권한을 가진 모든 사용자가 해당 범위의 내용을 편집할 수 있게 됩니다.","SSE.Views.ProtectedRangesManagerDlg.warnDeleteRanges":"보호된 범위를 삭제하시겠습니까?
스프레드시트의 수정 권한을 가진 모든 사용자가 해당 범위의 내용을 편집할 수 있게 됩니다.","SSE.Views.ProtectRangesDlg.guestText":"게스트","SSE.Views.ProtectRangesDlg.lockText":"잠김","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.textTitle":"제목","SSE.Views.ProtectRangesDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.ProtectRangesDlg.txtEditRange":"범위 편집","SSE.Views.ProtectRangesDlg.txtNewRange":"새로운 범위","SSE.Views.ProtectRangesDlg.txtNo":"아니오","SSE.Views.ProtectRangesDlg.txtTitle":"사용자 범위 편집 허용","SSE.Views.ProtectRangesDlg.txtYes":"확인","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.ariaRightMenu":"오른쪽 메뉴","SSE.Views.RightMenu.txtCellSettings":"셀 설정","SSE.Views.RightMenu.txtChartSettings":"차트 설정","SSE.Views.RightMenu.txtImageSettings":"이미지 설정","SSE.Views.RightMenu.txtParagraphSettings":"단락 설정","SSE.Views.RightMenu.txtPivotSettings":"피벗 테이블 설정","SSE.Views.RightMenu.txtSettings":"공통 설정","SSE.Views.RightMenu.txtShapeSettings":"도형 설정","SSE.Views.RightMenu.txtSignatureSettings":"서명 세팅","SSE.Views.RightMenu.txtSlicerSettings":"슬라이서 설정","SSE.Views.RightMenu.txtSparklineSettings":"스파크라인 설정","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.ScaleDialog.textScaleTo":"확대/축소","SSE.Views.ScaleDialog.textTitle":"확대/축소 설정","SSE.Views.ScaleDialog.textWidth":"너비","SSE.Views.SetValueDialog.txtMaxText":"이 필드의 최대 값은 {0} 입니다.","SSE.Views.SetValueDialog.txtMinText":"이 필드의 최소값은 {0} 입니다.","SSE.Views.ShapeSettings.strBackground":"배경색","SSE.Views.ShapeSettings.strChange":"도형 변경","SSE.Views.ShapeSettings.strColor":"색상","SSE.Views.ShapeSettings.strFill":"채우기","SSE.Views.ShapeSettings.strForeground":"전경색","SSE.Views.ShapeSettings.strPattern":"패턴","SSE.Views.ShapeSettings.strShadow":"음영 표시","SSE.Views.ShapeSettings.strSize":"크기","SSE.Views.ShapeSettings.strStroke":"선","SSE.Views.ShapeSettings.strTransparency":"투명도","SSE.Views.ShapeSettings.strType":"Type","SSE.Views.ShapeSettings.textAdjustShadow":"그림자 조정","SSE.Views.ShapeSettings.textAdvanced":"고급 설정","SSE.Views.ShapeSettings.textAngle":"각도","SSE.Views.ShapeSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584 포인트 사이의 값을 입력하십시오.","SSE.Views.ShapeSettings.textColor":"색상 채우기","SSE.Views.ShapeSettings.textDirection":"방향","SSE.Views.ShapeSettings.textEditPoints":"꼭지점 수정","SSE.Views.ShapeSettings.textEditShape":"도형 편집","SSE.Views.ShapeSettings.textEmptyPattern":"패턴 없음","SSE.Views.ShapeSettings.textEyedropper":"스포이트","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.textMoreColors":"사용자 정의 색상 추가","SSE.Views.ShapeSettings.textNoFill":"채우기 없음","SSE.Views.ShapeSettings.textNoShadow":"그림자 없음","SSE.Views.ShapeSettings.textOriginalSize":"원본 크기","SSE.Views.ShapeSettings.textPatternFill":"패턴","SSE.Views.ShapeSettings.textPosition":"위치","SSE.Views.ShapeSettings.textRadial":"방사형","SSE.Views.ShapeSettings.textRecentlyUsed":"최근 사용된","SSE.Views.ShapeSettings.textRotate90":"90도 회전","SSE.Views.ShapeSettings.textRotation":"회전","SSE.Views.ShapeSettings.textSelectImage":"그림선택","SSE.Views.ShapeSettings.textSelectTexture":"선택","SSE.Views.ShapeSettings.textShadow":"그림자","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","SSE.Views.ShapeSettings.txtDarkFabric":"어두운 직물","SSE.Views.ShapeSettings.txtGrain":"Grain","SSE.Views.ShapeSettings.txtGranite":"Granite","SSE.Views.ShapeSettings.txtGreyPaper":"회색 용지","SSE.Views.ShapeSettings.txtKnit":"Knit","SSE.Views.ShapeSettings.txtLeather":"가죽","SSE.Views.ShapeSettings.txtNoBorders":"선 없음","SSE.Views.ShapeSettings.txtOffsetBottom":"오프셋: 아래쪽","SSE.Views.ShapeSettings.txtOffsetBottomLeft":"오프셋: 왼쪽 아래","SSE.Views.ShapeSettings.txtOffsetBottomRight":"오프셋: 오른쪽 아래","SSE.Views.ShapeSettings.txtOffsetCenter":"오프셋: 가운데","SSE.Views.ShapeSettings.txtOffsetLeft":"오프셋: 왼쪽","SSE.Views.ShapeSettings.txtOffsetRight":"오프셋: 오른쪽","SSE.Views.ShapeSettings.txtOffsetTop":"오프셋: 위쪽","SSE.Views.ShapeSettings.txtOffsetTopLeft":"오프셋: 왼쪽 위","SSE.Views.ShapeSettings.txtOffsetTopRight":"오프셋: 오른쪽 위","SSE.Views.ShapeSettings.txtPapyrus":"파피루스","SSE.Views.ShapeSettings.txtWood":"목재","SSE.Views.ShapeSettingsAdvanced.strColumns":"열","SSE.Views.ShapeSettingsAdvanced.strMargins":"텍스트 채우기","SSE.Views.ShapeSettingsAdvanced.textAbsolute":"셀을 이동하거나 크기를 조정하지 마십시오.","SSE.Views.ShapeSettingsAdvanced.textAlt":"대체 텍스트","SSE.Views.ShapeSettingsAdvanced.textAltDescription":"설명","SSE.Views.ShapeSettingsAdvanced.textAltTip":"시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.","SSE.Views.ShapeSettingsAdvanced.textAltTitle":"제목","SSE.Views.ShapeSettingsAdvanced.textAngle":"각도","SSE.Views.ShapeSettingsAdvanced.textArrows":"화살표","SSE.Views.ShapeSettingsAdvanced.textAutofit":"자동 맞춤","SSE.Views.ShapeSettingsAdvanced.textBeginSize":"크기 시작","SSE.Views.ShapeSettingsAdvanced.textBeginStyle":"스타일 시작","SSE.Views.ShapeSettingsAdvanced.textBevel":"Bevel","SSE.Views.ShapeSettingsAdvanced.textBottom":"Bottom","SSE.Views.ShapeSettingsAdvanced.textCapType":"모자 유형","SSE.Views.ShapeSettingsAdvanced.textColNumber":"열 수","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.textVertically":"세로","SSE.Views.ShapeSettingsAdvanced.textWeightArrows":"가중치 및 화살표","SSE.Views.ShapeSettingsAdvanced.textWidth":"폭","SSE.Views.SignatureSettings.notcriticalErrorTitle":"경고","SSE.Views.SignatureSettings.strDelete":"서명 삭제","SSE.Views.SignatureSettings.strDetails":"서명 상세","SSE.Views.SignatureSettings.strInvalid":"잘못된 서명","SSE.Views.SignatureSettings.strRequested":"요청 서명","SSE.Views.SignatureSettings.strSetup":"서명 셋업","SSE.Views.SignatureSettings.strSign":"서명","SSE.Views.SignatureSettings.strSignature":"서명","SSE.Views.SignatureSettings.strSigner":"서명자","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.strSorting":"정렬 및 필터","SSE.Views.SlicerSettings.textAdvanced":"고급 설정","SSE.Views.SlicerSettings.textAsc":"오름차순","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.textSmallLarge":"가장 작은 것에서 가장 큰 것","SSE.Views.SlicerSettings.textStyle":"스타일","SSE.Views.SlicerSettings.textVert":"세로","SSE.Views.SlicerSettings.textWidth":"너비","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.strSorting":"정렬 & 필터","SSE.Views.SlicerSettingsAdvanced.strStyle":"스타일","SSE.Views.SlicerSettingsAdvanced.strStyleSize":"스타일 및 크기","SSE.Views.SlicerSettingsAdvanced.strWidth":"너비","SSE.Views.SlicerSettingsAdvanced.textAbsolute":"셀을 이동하거나 크기를 조정하지 마십시오.","SSE.Views.SlicerSettingsAdvanced.textAlt":"대체 텍스트","SSE.Views.SlicerSettingsAdvanced.textAltDescription":"세부 설명","SSE.Views.SlicerSettingsAdvanced.textAltTip":"시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ","SSE.Views.SlicerSettingsAdvanced.textAltTitle":"제목","SSE.Views.SlicerSettingsAdvanced.textAsc":"오름차순","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.textSmallLarge":"가장 작은 것에서 가장 큰 것","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.SolverDlg.textAdd":"추가","SSE.Views.SolverDlg.textBin":"bin","SSE.Views.SolverDlg.textConfirmChangeMethod":"솔버를 실행하면 %1 메서드로 돌아갈 수 없습니다.","SSE.Views.SolverDlg.textConfirmReset":"모든 솔버 옵션과 셀 선택을 초기화하시겠습니까?","SSE.Views.SolverDlg.textConstraints":"제약 조건에 따라","SSE.Views.SolverDlg.textDataRange":"해결해야 할 문제가 명시되지 않았습니다.","SSE.Views.SolverDlg.textDelete":"삭제","SSE.Views.SolverDlg.textDif":"dif","SSE.Views.SolverDlg.textEdit":"변경","SSE.Views.SolverDlg.textEmptyList":"아직 제약 조건이 생성되지 않았습니다.
최소 하나 이상의 제약 조건을 생성하면 이 목록에 표시됩니다.","SSE.Views.SolverDlg.textEvolutionary":"진화적","SSE.Views.SolverDlg.textInt":"int","SSE.Views.SolverDlg.textManyVarCells":"변수 셀이 너무 많습니다.","SSE.Views.SolverDlg.textMax":"최대","SSE.Views.SolverDlg.textMethod":"해결 방법","SSE.Views.SolverDlg.textMethodDesc":"LP 심플렉스 엔진은 선형 문제 해결에 사용됩니다.","SSE.Views.SolverDlg.textMin":"최소","SSE.Views.SolverDlg.textMustContainFormula":"목적 셀의 내용은 수식이어야 합니다.","SSE.Views.SolverDlg.textMustSingleCell":"대상 셀은 활성 시트의 단일 셀이어야 합니다.","SSE.Views.SolverDlg.textNonlinear":"GRG 비선형","SSE.Views.SolverDlg.textNonNegative":"제약 조건이 없는 변수는 음수가 될 수 없도록 합니다.","SSE.Views.SolverDlg.textNotSupported":"비선형 또는 진화적 방법은 아직 지원되지 않습니다. 필요한 경우 %1","SSE.Views.SolverDlg.textObjective":"목표 설정","SSE.Views.SolverDlg.textOptions":"옵션","SSE.Views.SolverDlg.textReadMore":"더 읽어보기","SSE.Views.SolverDlg.textReset":"재설정","SSE.Views.SolverDlg.textResetAll":"모두 초기화","SSE.Views.SolverDlg.textSelectData":"데이터를 선택하세요","SSE.Views.SolverDlg.textSimplex":"Simplex LP","SSE.Views.SolverDlg.textSolve":"Solve","SSE.Views.SolverDlg.textTellUs":"그것에 대해 이야기해 주세요","SSE.Views.SolverDlg.textTitle":"솔버 매개변수","SSE.Views.SolverDlg.textTo":"받는이","SSE.Views.SolverDlg.textUnsupportedConstraints":"일부 제약 조건에 지원되지 않는 int, bin 또는 dif 관계가 포함되어 있습니다.
해당 관계를 삭제하거나 지원되는 <=, =, >= 관계로 변경하십시오.","SSE.Views.SolverDlg.textValueOf":"값","SSE.Views.SolverDlg.textVars":"변수 셀을 변경하여","SSE.Views.SolverDlg.txtEmpty":"이 항목은 필수 입력 사항입니다.","SSE.Views.SolverDlg.txtErrorNumber":"입력하신 내용은 사용할 수 없습니다. 정수 또는 소수점이 필요할 수 있습니다.","SSE.Views.SolverMethodDialog.txtAutoScale":"자동 크기 조정을 사용하세요","SSE.Views.SolverMethodDialog.txtIgnore":"정수 제약 조건을 무시합니다","SSE.Views.SolverMethodDialog.txtIterations":"반복","SSE.Views.SolverMethodDialog.txtIterationsInvalid":"반복은 반드시 양수여야합니다.","SSE.Views.SolverMethodDialog.txtMaxTime":"최대 시간(초)","SSE.Views.SolverMethodDialog.txtMaxTimeInvalid":"최대 시간은 반드시 양수여야 합니다.","SSE.Views.SolverMethodDialog.txtOptimality":"정수 최적성(%)","SSE.Views.SolverMethodDialog.txtOptimalityInvalid":"정수 허용 오차는 작은 양수여야 합니다.","SSE.Views.SolverMethodDialog.txtPrecision":"제약 조건 정밀도","SSE.Views.SolverMethodDialog.txtPrecisionInvalid":"정밀도는 작은 양수여야 합니다.","SSE.Views.SolverMethodDialog.txtSolverInt":"정수 제약 조건을 이용한 해결","SSE.Views.SolverMethodDialog.txtSolverLimits":"극한 풀기","SSE.Views.SolverMethodDialog.txtTitle":"메서드 옵션","SSE.Views.SolverResultsDlg.txtCantImprove":"솔버가 현재 솔루션을 개선할 수 없습니다. 모든 제약 조건이 충족되었습니다.","SSE.Views.SolverResultsDlg.txtCantImproveDesc":"진화 엔진이 사용될 때, 이는 주어진 시간 내에 더 나은 해법을 찾지 못했기 때문에 솔버가 중단되었음을 의미합니다.","SSE.Views.SolverResultsDlg.txtConverged":"솔버가 현재 솔루션으로 수렴했습니다. 모든 제약 조건이 충족되었습니다.","SSE.Views.SolverResultsDlg.txtConvergedDesc":"솔버가 5번의 반복 계산을 수행했지만 목적 함수 값이 크게 변하지 않았습니다. 수렴 설정값을 낮추거나 다른 시작점을 시도해 보세요.","SSE.Views.SolverResultsDlg.txtErrorModel":"모델에 오류가 있습니다. 모든 셀과 제약 조건이 유효한지 확인하십시오.","SSE.Views.SolverResultsDlg.txtErrorModelDesc":"변수 셀이 아닌 일부 셀이 정수, 이진 또는 모두 다름으로 표시될 수 있습니다.","SSE.Views.SolverResultsDlg.txtErrorVal":"솔버가 목적 함수 셀 또는 제약 조건 셀에서 오류 값을 발견했습니다.","SSE.Views.SolverResultsDlg.txtErrorValDesc":"Solver가 변수 셀에 특정 값을 시도하는 동안 워크시트의 한 셀에서 오류 값이 발생했습니다.","SSE.Views.SolverResultsDlg.txtIntSolution":"솔버가 허용 오차 범위 내에서 정수 해를 찾았습니다. 모든 제약 조건이 충족되었습니다.","SSE.Views.SolverResultsDlg.txtIntSolutionDesc":"더 나은 정수 해법이 존재할 가능성이 있습니다. Solver가 최상의 해법을 찾도록 하려면 옵션 대화 상자에서 정수 허용 오차를 0%로 설정하십시오.","SSE.Views.SolverResultsDlg.txtKeep":"해찾기 결과 유지","SSE.Views.SolverResultsDlg.txtLineConditions":"이 LP 솔버에 필요한 선형성 조건이 충족되지 않습니다.","SSE.Views.SolverResultsDlg.txtLineConditionsDesc":"선형성 보고서를 생성하여 문제점을 파악하거나 GRG 엔진으로 전환하십시오.","SSE.Views.SolverResultsDlg.txtNoFeasible":"솔버가 실행 가능한 해법을 찾지 못했습니다.","SSE.Views.SolverResultsDlg.txtNoFeasibleDesc":"솔버가 모든 제약 조건을 만족하는 지점을 찾을 수 없습니다.","SSE.Views.SolverResultsDlg.txtNotConverge":"목표 셀 값이 수렴하지 않습니다.","SSE.Views.SolverResultsDlg.txtNotConvergeDesc":"솔버는 목적 함수 셀을 원하는 만큼 크게(최소화 시에는 작게) 만들 수 있습니다.","SSE.Views.SolverResultsDlg.txtNotEnoughMemory":"문제를 해결하기에 사용 가능한 메모리가 부족합니다.","SSE.Views.SolverResultsDlg.txtOpenParams":"솔버 매개변수 대화 상자로 돌아가기","SSE.Views.SolverResultsDlg.txtOptimalSolution":"솔버가 해를 찾았습니다. 모든 제약 조건과 최적성 조건이 충족되었습니다.","SSE.Views.SolverResultsDlg.txtOptimalSolutionDesc":"심플렉스 LP를 사용했다는 것은 솔버가 전역 최적해를 찾았다는 의미입니다.","SSE.Views.SolverResultsDlg.txtRestore":"원래 값으로 복원","SSE.Views.SolverResultsDlg.txtStopped":"사용자의 요청에 따라 솔버가 중지되었습니다.","SSE.Views.SolverResultsDlg.txtStoppedDesc":"솔버가 전역 최적해를 찾기 전에 중단되었습니다. 찾은 최적해가 있다면 표시됩니다.","SSE.Views.SolverResultsDlg.txtTitle":"솔버 결과","SSE.Views.SortDialog.errorEmpty":"분류 기준에는 반드시 특정 행과 열을 지정해야 합니다.","SSE.Views.SortDialog.errorMoreOneCol":"여러 열이 선택되었습니다.","SSE.Views.SortDialog.errorMoreOneRow":"여러 행이 선택되었습니다.","SSE.Views.SortDialog.errorNotOriginalCol":"선택한 열이 원래의 선택 범위에 없습니다.","SSE.Views.SortDialog.errorNotOriginalRow":"선택한 행이 원래 선택한 범위에 없습니다.","SSE.Views.SortDialog.errorSameColumnColor":" %1이 같은 색상으로 최소한 한 번 이상 분류되었습니다.
중복된 분류 기준을 삭제하시고 다시 시도하여 주시기 바랍니다.","SSE.Views.SortDialog.errorSameColumnValue":"%1이 중복된 값으로 한 번 이상 분류되었습니다.
중복된 분류 기준을 삭제하시고 다시 한 번 더 시도하여 주시기 바랍니다.","SSE.Views.SortDialog.textAsc":"오름차순","SSE.Views.SortDialog.textAuto":"자동","SSE.Views.SortDialog.textAZ":"오름차순 A > Z","SSE.Views.SortDialog.textBelow":"아래","SSE.Views.SortDialog.textBtnCopy":"복사","SSE.Views.SortDialog.textBtnDelete":"삭제","SSE.Views.SortDialog.textBtnNew":"신규","SSE.Views.SortDialog.textCellColor":"셀 색상","SSE.Views.SortDialog.textColumn":"열","SSE.Views.SortDialog.textDesc":"내림차순","SSE.Views.SortDialog.textDown":"레벨 아래로 이동","SSE.Views.SortDialog.textFontColor":"글꼴 색","SSE.Views.SortDialog.textLeft":"왼쪽","SSE.Views.SortDialog.textLevels":"레벨들","SSE.Views.SortDialog.textMoreCols":"(다른 행들...)","SSE.Views.SortDialog.textMoreRows":"행 더 보기...","SSE.Views.SortDialog.textNone":"없음","SSE.Views.SortDialog.textOptions":"옵션...","SSE.Views.SortDialog.textOrder":"순서","SSE.Views.SortDialog.textRight":"오른쪽","SSE.Views.SortDialog.textRow":"행","SSE.Views.SortDialog.textSort":"정렬","SSE.Views.SortDialog.textSortBy":"정렬 기준","SSE.Views.SortDialog.textThenBy":"다음 우선되는 키","SSE.Views.SortDialog.textTop":"위","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.textNoSort":"정렬 없음","SSE.Views.SortFilterDialog.txtTitle":"정렬","SSE.Views.SortFilterDialog.txtTitleValue":"값에 따라 정렬","SSE.Views.SortOptionsDialog.textCase":"대소문자 구별","SSE.Views.SortOptionsDialog.textHeaders":"내 데이터에 제목이 있습니다.","SSE.Views.SortOptionsDialog.textLeftRight":"왼쪽에서 오른쪽으로 정렬","SSE.Views.SortOptionsDialog.textOrientation":"방향","SSE.Views.SortOptionsDialog.textTitle":"정렬 옵션","SSE.Views.SortOptionsDialog.textTopBottom":"위에서 아래로 정렬","SSE.Views.SpecialPasteDialog.textAdd":"추가","SSE.Views.SpecialPasteDialog.textAll":"모든","SSE.Views.SpecialPasteDialog.textBlanks":"공백 건너뛰기","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.textSub":"뺄셈","SSE.Views.SpecialPasteDialog.textTitle":"특수기호 붙이기","SSE.Views.SpecialPasteDialog.textTranspose":"교체","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.txtClosePanel":"맞춤법 검사 닫기","SSE.Views.Spellcheck.txtComplete":"맞춤법 검사 완료","SSE.Views.Spellcheck.txtDictionaryLanguage":"사전 언어","SSE.Views.Spellcheck.txtNextTip":"다음 단어로 이동","SSE.Views.Spellcheck.txtSpelling":"스펠링","SSE.Views.Statusbar.CopyDialog.itemMoveToEnd":"(끝으로 이동)","SSE.Views.Statusbar.CopyDialog.textCreateCopy":"복사본 만들기","SSE.Views.Statusbar.CopyDialog.textCreateNewSpreadsheet":"새 스프레드시트 만들기","SSE.Views.Statusbar.CopyDialog.textMoveBefore":"시트 이전으로 이동","SSE.Views.Statusbar.CopyDialog.textSpreadsheet":"스프레드시트","SSE.Views.Statusbar.filteredRecordsText":"{1} 개의 필터링 된 레코드 중 {0}","SSE.Views.Statusbar.filteredText":"필터 모드","SSE.Views.Statusbar.itemAverage":"평균","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.itemMoveOrCopy":"이동 또는 복사","SSE.Views.Statusbar.itemProtect":"보호","SSE.Views.Statusbar.itemRename":"이름 바꾸기","SSE.Views.Statusbar.itemStatus":"저장 상태","SSE.Views.Statusbar.itemSum":"합계","SSE.Views.Statusbar.itemTabColor":"탭 색상","SSE.Views.Statusbar.itemUnProtect":"보호해제","SSE.Views.Statusbar.RenameDialog.errNameExists":"같은 이름의 워크 시트가 이미 있습니다.","SSE.Views.Statusbar.RenameDialog.errNameWrongChar":"시트 이름에는 \\/ *? [] :","SSE.Views.Statusbar.RenameDialog.labelSheetName":"시트 이름","SSE.Views.Statusbar.selectAllSheets":"모든 워크시트 선택","SSE.Views.Statusbar.sheetIndexText":"전체 {1} 시트중 {0}","SSE.Views.Statusbar.textAverage":"평균","SSE.Views.Statusbar.textCount":"계산","SSE.Views.Statusbar.textMax":"최대","SSE.Views.Statusbar.textMin":"최소","SSE.Views.Statusbar.textNewColor":"새 사용자 정의 색상 추가","SSE.Views.Statusbar.textNoColor":"색상 없음","SSE.Views.Statusbar.textSum":"합계","SSE.Views.Statusbar.tipAddTab":"워크 시트 추가","SSE.Views.Statusbar.tipFirst":"첫 번째 시트로 스크롤","SSE.Views.Statusbar.tipLast":"마지막 시트로 스크롤","SSE.Views.Statusbar.tipListOfSheets":"시트 목록","SSE.Views.Statusbar.tipNext":"오른쪽 스크롤 목록","SSE.Views.Statusbar.tipPrev":"왼쪽으로 스크롤 목록","SSE.Views.Statusbar.tipZoomFactor":"확대/축소","SSE.Views.Statusbar.tipZoomIn":"확대","SSE.Views.Statusbar.tipZoomOut":"축소","SSE.Views.Statusbar.ungroupSheets":"시트 그룹 해제","SSE.Views.Statusbar.zoomText":"확대/축소 {0} %","SSE.Views.TableDesignTab.deleteColumnText":"열 삭제","SSE.Views.TableDesignTab.deleteRowText":"행 삭제","SSE.Views.TableDesignTab.deleteTableText":"표삭제","SSE.Views.TableDesignTab.insertColumnLeftText":"왼쪽에 열 삽입","SSE.Views.TableDesignTab.insertColumnRightText":"오른쪽 열 삽입","SSE.Views.TableDesignTab.insertRowAboveText":"위에 행 삽입","SSE.Views.TableDesignTab.insertRowBelowText":"아래에 행 삽입","SSE.Views.TableDesignTab.selectColumnData":"열 데이터 선택","SSE.Views.TableDesignTab.selectColumnText":"전체 열 선택","SSE.Views.TableDesignTab.selectRowText":"행 선택","SSE.Views.TableDesignTab.selectTableText":"표 선택","SSE.Views.TableDesignTab.tipAltText":"표의 대체 제목 및 설명 설정","SSE.Views.TableDesignTab.tipConvertRange":"이 표를 일반 셀 범위로 변환","SSE.Views.TableDesignTab.tipHeaderRow":"표의 머리글 행 표시 또는 숨기기","SSE.Views.TableDesignTab.tipInsertPivot":"피벗 테이블 삽입","SSE.Views.TableDesignTab.tipInsertSlicer":"슬라이서추가","SSE.Views.TableDesignTab.tipRemDuplicates":"시트에서 중복 행 제거 중","SSE.Views.TableDesignTab.tipResize":"행과 열을 추가하거나 제거하여 표 크기 변경","SSE.Views.TableDesignTab.tipRowsCols":"행 및 열","SSE.Views.TableDesignTab.txtAltText":"대체 텍스트","SSE.Views.TableDesignTab.txtBandedColumns":"줄무늬 열","SSE.Views.TableDesignTab.txtBandedRows":"줄무늬 행","SSE.Views.TableDesignTab.txtConvertToRange":"범위로 변환","SSE.Views.TableDesignTab.txtFilterButton":"필터 버튼","SSE.Views.TableDesignTab.txtFirstColumn":"첫 번째 열","SSE.Views.TableDesignTab.txtGroupTable_Custom":"사용자 지정","SSE.Views.TableDesignTab.txtGroupTable_Dark":"어두운","SSE.Views.TableDesignTab.txtGroupTable_Light":"밝은","SSE.Views.TableDesignTab.txtGroupTable_Medium":"중","SSE.Views.TableDesignTab.txtHeaderRow":"머리글 행","SSE.Views.TableDesignTab.txtLastColumn":"마지막 열","SSE.Views.TableDesignTab.txtPivot":"피벗","SSE.Views.TableDesignTab.txtRemDuplicates":"중복된 항목 제거","SSE.Views.TableDesignTab.txtResize":"크기 조정 테이블","SSE.Views.TableDesignTab.txtRowsCols":"행 및 열","SSE.Views.TableDesignTab.txtSlicer":"슬라이서","SSE.Views.TableDesignTab.txtTotalRow":"총 행","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.txtInvalidRange":"오류! 셀 범위가 잘못되었습니다.","SSE.Views.TableOptionsDialog.txtNote":"헤더는 동일한 행에 있어야 하며 결과 테이블 범위는 원래 테이블 범위와 겹쳐야 합니다.","SSE.Views.TableOptionsDialog.txtTitle":"제목","SSE.Views.TableSettingsAdvanced.textAlt":"대체 텍스트","SSE.Views.TableSettingsAdvanced.textAltDescription":"설명","SSE.Views.TableSettingsAdvanced.textAltTip":"시각적 객체 정보의 대체 텍스트 기반 표현으로 시력이나인지 장애가있는 사람들에게 읽혀 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ","SSE.Views.TableSettingsAdvanced.textAltTitle":"제목","SSE.Views.TableSettingsAdvanced.textTitle":"표 - 고급 설정","SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom":"사용자 정의","SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark":"어두운","SSE.Views.TableSettingsAdvanced.txtGroupTable_Light":"밝은","SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium":"중","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark":"어두운 표 스타일","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight":"밝은 표 스타일","SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium":"중간 표 스타일","SSE.Views.TextArtSettings.strBackground":"배경색","SSE.Views.TextArtSettings.strColor":"색상","SSE.Views.TextArtSettings.strFill":"채우기","SSE.Views.TextArtSettings.strForeground":"전경색","SSE.Views.TextArtSettings.strPattern":"패턴","SSE.Views.TextArtSettings.strSize":"크기","SSE.Views.TextArtSettings.strStroke":"선","SSE.Views.TextArtSettings.strTransparency":"투명도","SSE.Views.TextArtSettings.strType":"유형","SSE.Views.TextArtSettings.textAngle":"각도","SSE.Views.TextArtSettings.textBorderSizeErr":"입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.","SSE.Views.TextArtSettings.textColor":"색상 채우기","SSE.Views.TextArtSettings.textDirection":"방향","SSE.Views.TextArtSettings.textEmptyPattern":"패턴 없음","SSE.Views.TextArtSettings.textFromFile":"파일로부터","SSE.Views.TextArtSettings.textFromUrl":"URL로부터","SSE.Views.TextArtSettings.textGradient":"그라데이션 포인트","SSE.Views.TextArtSettings.textGradientFill":"그라데이션 채우기","SSE.Views.TextArtSettings.textImageTexture":"그림 또는 질감","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":"늘이기","SSE.Views.TextArtSettings.textStyle":"스타일","SSE.Views.TextArtSettings.textTemplate":"템플릿","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","SSE.Views.TextArtSettings.txtDarkFabric":"어두운 직물","SSE.Views.TextArtSettings.txtGrain":"Grain","SSE.Views.TextArtSettings.txtGranite":"Granite","SSE.Views.TextArtSettings.txtGreyPaper":"회색 용지","SSE.Views.TextArtSettings.txtKnit":"Knit","SSE.Views.TextArtSettings.txtLeather":"가죽","SSE.Views.TextArtSettings.txtNoBorders":"선 없음","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.capBtnInsSmartArt":"SmartArt","SSE.Views.Toolbar.capBtnInsSymbol":"기호","SSE.Views.Toolbar.capBtnMargins":"여백","SSE.Views.Toolbar.capBtnPageBreak":"나누기","SSE.Views.Toolbar.capBtnPageOrient":"방향","SSE.Views.Toolbar.capBtnPageSize":"크기","SSE.Views.Toolbar.capBtnPrintArea":"인쇄 영역","SSE.Views.Toolbar.capBtnPrintTitles":"제목 인쇄","SSE.Views.Toolbar.capBtnScale":"크기에 맞게 확대/축소","SSE.Views.Toolbar.capImgAlign":"정렬","SSE.Views.Toolbar.capImgBackward":"뒤로 보내기","SSE.Views.Toolbar.capImgForward":"앞으로 보내기","SSE.Views.Toolbar.capImgGroup":"그룹","SSE.Views.Toolbar.capInsertChart":"차트","SSE.Views.Toolbar.capInsertChartRecommend":"추천 차트","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.capInsertTextart":"텍스트 아트","SSE.Views.Toolbar.capShapesMerge":"도형 병합","SSE.Views.Toolbar.mniCapitalizeWords":"각 단어의 첫글자를 대문자로","SSE.Views.Toolbar.mniImageFromFile":"파일에서 그림","SSE.Views.Toolbar.mniImageFromStorage":"스토리지에서 불러오기","SSE.Views.Toolbar.mniImageFromUrl":"URL에서 그림","SSE.Views.Toolbar.mniLowerCase":"소문자","SSE.Views.Toolbar.mniSentenceCase":"문장의 첫 글자를 대문자로","SSE.Views.Toolbar.mniToggleCase":"대/소문자 전환","SSE.Views.Toolbar.mniUpperCase":"대문자","SSE.Views.Toolbar.textAddPrintArea":"인쇄 영역에 추가","SSE.Views.Toolbar.textAlignBottom":"아래쪽 정렬","SSE.Views.Toolbar.textAlignCenter":"가운데 정렬","SSE.Views.Toolbar.textAlignJust":"Justified","SSE.Views.Toolbar.textAlignLeft":"왼쪽 정렬","SSE.Views.Toolbar.textAlignMiddle":"중간 정렬","SSE.Views.Toolbar.textAlignRight":"오른쪽 정렬","SSE.Views.Toolbar.textAlignTop":"Align Top","SSE.Views.Toolbar.textAllBorders":"모든 테두리","SSE.Views.Toolbar.textAlpha":"소문자 알파","SSE.Views.Toolbar.textAuto":"자동","SSE.Views.Toolbar.textAutoColor":"자동","SSE.Views.Toolbar.textAutoColumnWidth":"Auto fit column width","SSE.Views.Toolbar.textAutoRowHeight":"Auto fit row height","SSE.Views.Toolbar.textBetta":"소문자 베타","SSE.Views.Toolbar.textBlackHeart":"검정 하트","SSE.Views.Toolbar.textBold":"Bold","SSE.Views.Toolbar.textBordersColor":"테두리 색상","SSE.Views.Toolbar.textBordersStyle":"테두리 스타일","SSE.Views.Toolbar.textBottom":"바닥: ","SSE.Views.Toolbar.textBottomBorders":"아래쪽 테두리","SSE.Views.Toolbar.textBullet":"글머리 기호","SSE.Views.Toolbar.textCellAlign":"셀 맞춤 형식 지정","SSE.Views.Toolbar.textCellFormat":"Format","SSE.Views.Toolbar.textCenterBorders":"내부 세로 테두리","SSE.Views.Toolbar.textClearPrintArea":"인쇄 영역 해제","SSE.Views.Toolbar.textClearRule":"규칙 제거","SSE.Views.Toolbar.textClockwise":"시계 방향으로 각도","SSE.Views.Toolbar.textColorScales":"색상 코드","SSE.Views.Toolbar.textColumns":"Columns","SSE.Views.Toolbar.textColumnWidth":"Column width","SSE.Views.Toolbar.textCopyright":"저작권 표시","SSE.Views.Toolbar.textCounterCw":"시계 반대 방향 각도","SSE.Views.Toolbar.textCustom":"사용자 정의","SSE.Views.Toolbar.textCustomColumnWidth":"Custom column width","SSE.Views.Toolbar.textCustomRowHeight":"Custom row height","SSE.Views.Toolbar.textDataBars":"데이터 막대","SSE.Views.Toolbar.textDegree":"도수 기호","SSE.Views.Toolbar.textDelLeft":"셀 왼쪽으로 시프트","SSE.Views.Toolbar.textDelPageBreak":"페이지 나누기 제거","SSE.Views.Toolbar.textDelta":"소문자 델타","SSE.Views.Toolbar.textDelUp":"셀을 위로 이동","SSE.Views.Toolbar.textDiagDownBorder":"대각선 아래쪽 테두리","SSE.Views.Toolbar.textDiagUpBorder":"대각선 위쪽 테두리","SSE.Views.Toolbar.textDirContext":"문맥","SSE.Views.Toolbar.textDirLtr":"왼쪽에서 오른쪽으로","SSE.Views.Toolbar.textDirRtl":"오른쪽에서 왼쪽으로","SSE.Views.Toolbar.textDivision":"나누기 기호","SSE.Views.Toolbar.textDollar":"달러 기호","SSE.Views.Toolbar.textDone":"완료","SSE.Views.Toolbar.textDown":"아래로","SSE.Views.Toolbar.textEditVA":"표시 영역 편집","SSE.Views.Toolbar.textEntireCol":"전체 열","SSE.Views.Toolbar.textEntireRow":"전체 행","SSE.Views.Toolbar.textEuro":"유로화","SSE.Views.Toolbar.textFewPages":"페이지","SSE.Views.Toolbar.textFillLeft":"왼쪽","SSE.Views.Toolbar.textFillRight":"오른쪽","SSE.Views.Toolbar.textFormatCellFill":"셀 배경 채우기 형식 지정","SSE.Views.Toolbar.textFormatCells":"Format cells","SSE.Views.Toolbar.textGreaterEqual":"크거나 같음","SSE.Views.Toolbar.textHeight":"높이","SSE.Views.Toolbar.textHide":"Hide","SSE.Views.Toolbar.textHideVA":"표시 영역 숨기기","SSE.Views.Toolbar.textHorizontal":"가로 텍스트","SSE.Views.Toolbar.textInfinity":"무한대","SSE.Views.Toolbar.textInsDown":"셀을 아래로 이동","SSE.Views.Toolbar.textInsideBorders":"테두리 안에","SSE.Views.Toolbar.textInsPageBreak":"페이지 나누기 삽입","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.textLessEqual":"보다 작거나 같음","SSE.Views.Toolbar.textLetterPi":"소문자 파이","SSE.Views.Toolbar.textLockedCell":"Locked cell","SSE.Views.Toolbar.textManageRule":"관리 규칙","SSE.Views.Toolbar.textManyPages":"페이지","SSE.Views.Toolbar.textMarginsLast":"마지막 사용자 정의","SSE.Views.Toolbar.textMarginsNarrow":"좁게","SSE.Views.Toolbar.textMarginsNormal":"일반","SSE.Views.Toolbar.textMarginsWide":"넓게","SSE.Views.Toolbar.textMiddleBorders":"내부 수평 테두리","SSE.Views.Toolbar.textMoreBorders":"추가 테두리","SSE.Views.Toolbar.textMoreFormats":"기타 형식","SSE.Views.Toolbar.textMorePages":"더 많은 페이지","SSE.Views.Toolbar.textMoreSymbols":"더 많은 기호","SSE.Views.Toolbar.textMoveCopySheet":"Move or copy sheet","SSE.Views.Toolbar.textNewColor":"새 사용자 지정 색 추가","SSE.Views.Toolbar.textNewRule":"새로운 규칙","SSE.Views.Toolbar.textNoBorders":"테두리 없음","SSE.Views.Toolbar.textNotEqualTo":"같지 않음","SSE.Views.Toolbar.textOneHalf":"2분의 1","SSE.Views.Toolbar.textOnePage":"페이지","SSE.Views.Toolbar.textOneQuarter":"4분의 1","SSE.Views.Toolbar.textOutBorders":"바깥쪽 테두리","SSE.Views.Toolbar.textPageMarginsCustom":"사용자 정의 여백","SSE.Views.Toolbar.textPlusMinus":"플러스 마이너스 기호","SSE.Views.Toolbar.textPortrait":"세로","SSE.Views.Toolbar.textPrint":"인쇄","SSE.Views.Toolbar.textPrintGridlines":"눈금 선 인쇄","SSE.Views.Toolbar.textPrintHeadings":"글머리 인쇄","SSE.Views.Toolbar.textPrintOptions":"인쇄 설정","SSE.Views.Toolbar.textProtectSheet":"Protect sheet","SSE.Views.Toolbar.textRegistered":"등록된 서명","SSE.Views.Toolbar.textRenameSheet":"Rename sheet","SSE.Views.Toolbar.textResetPageBreak":"모든 페이지 나누기 재설정","SSE.Views.Toolbar.textRight":"오른쪽 : ","SSE.Views.Toolbar.textRightBorders":"오른쪽 테두리","SSE.Views.Toolbar.textRotateDown":"텍스트 아래로 회전","SSE.Views.Toolbar.textRotateUp":"텍스트 회전","SSE.Views.Toolbar.textRowHeight":"Row height","SSE.Views.Toolbar.textRows":"Rows","SSE.Views.Toolbar.textRtlSheet":"시트 오른쪽에서 왼쪽으로","SSE.Views.Toolbar.textScale":"크기","SSE.Views.Toolbar.textScaleCustom":"사용자 정의","SSE.Views.Toolbar.textSection":"섹션 기호","SSE.Views.Toolbar.textSelection":"현재 선택 고정","SSE.Views.Toolbar.textSeries":"시리즈","SSE.Views.Toolbar.textSetPrintArea":"인쇄영역 설정","SSE.Views.Toolbar.textShapesCombine":"결합","SSE.Views.Toolbar.textShapesFragment":"조각","SSE.Views.Toolbar.textShapesIntersect":"교차","SSE.Views.Toolbar.textShapesSubstract":"빼기","SSE.Views.Toolbar.textShapesUnion":"병합","SSE.Views.Toolbar.textSheet":"Sheet","SSE.Views.Toolbar.textSheets":"Hidden sheets","SSE.Views.Toolbar.textShow":"Show","SSE.Views.Toolbar.textShowVA":"가시 영역 표시","SSE.Views.Toolbar.textSmile":"흰 웃는 얼굴 이모티콘","SSE.Views.Toolbar.textSquareRoot":"제곱근","SSE.Views.Toolbar.textStrikeout":"취소선","SSE.Views.Toolbar.textSubscript":"첨자","SSE.Views.Toolbar.textSubSuperscript":"첨자/위에 쓴","SSE.Views.Toolbar.textSuperscript":"위에 쓴","SSE.Views.Toolbar.textTabCollaboration":"협업","SSE.Views.Toolbar.textTabColor":"Tab color","SSE.Views.Toolbar.textTabData":"데이터","SSE.Views.Toolbar.textTabDraw":"그리기","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.textTabTableDesign":"표 디자인","SSE.Views.Toolbar.textTabView":"보기","SSE.Views.Toolbar.textThisPivot":"피벗 테이블로 부터","SSE.Views.Toolbar.textThisSheet":"워크시트로 부터","SSE.Views.Toolbar.textThisTable":"표로 부터","SSE.Views.Toolbar.textTilde":"물결표","SSE.Views.Toolbar.textTop":"상위 : ","SSE.Views.Toolbar.textTopBorders":"위쪽 테두리","SSE.Views.Toolbar.textTradeMark":"상표 표시","SSE.Views.Toolbar.textUnderline":"밑줄","SSE.Views.Toolbar.textUnProtectSheet":"Unprotect sheet","SSE.Views.Toolbar.textUp":"위","SSE.Views.Toolbar.textVertical":"세로 텍스트","SSE.Views.Toolbar.textWidth":"너비","SSE.Views.Toolbar.textYen":"엔화","SSE.Views.Toolbar.textZoom":"확대/축소","SSE.Views.Toolbar.tipAlignBottom":"아래쪽 정렬","SSE.Views.Toolbar.tipAlignCenter":"가운데 정렬","SSE.Views.Toolbar.tipAlignJust":"Justified","SSE.Views.Toolbar.tipAlignLeft":"왼쪽 정렬","SSE.Views.Toolbar.tipAlignMiddle":"중간 정렬","SSE.Views.Toolbar.tipAlignRight":"오른쪽 정렬","SSE.Views.Toolbar.tipAlignTop":"정렬","SSE.Views.Toolbar.tipAutofilter":"정렬 및 필터링","SSE.Views.Toolbar.tipBack":"뒤로","SSE.Views.Toolbar.tipBorders":"테두리","SSE.Views.Toolbar.tipCellStyle":"셀 스타일","SSE.Views.Toolbar.tipChangeCase":"대소문자 변경","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.tipCut":"잘라 내기","SSE.Views.Toolbar.tipDecDecimal":"자리수 줄임","SSE.Views.Toolbar.tipDecFont":"글꼴 크기 감소","SSE.Views.Toolbar.tipDeleteOpt":"셀 삭제","SSE.Views.Toolbar.tipDigStyleAccounting":"회계 표시 형식","SSE.Views.Toolbar.tipDigStyleComma":"쉼표 스타일","SSE.Views.Toolbar.tipDigStyleCurrency":"통화 스타일","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.tipFormatCell":"Change the row height or column width, organize sheets, or protect or hide cells","SSE.Views.Toolbar.tipHAlighOle":"수평 정렬","SSE.Views.Toolbar.tipImgAlign":"오브젝트 정렬","SSE.Views.Toolbar.tipImgGroup":"개체를 그룹화","SSE.Views.Toolbar.tipIncDecimal":"자리수 늘림","SSE.Views.Toolbar.tipIncFont":"글꼴 크기 증가","SSE.Views.Toolbar.tipInsertChart":"차트 삽입","SSE.Views.Toolbar.tipInsertChartRecommend":"추천 차트 삽입","SSE.Views.Toolbar.tipInsertChartSpark":"차트 또는 스파크 라인 삽입","SSE.Views.Toolbar.tipInsertEquation":"수식 삽입","SSE.Views.Toolbar.tipInsertHorizontalText":"가로 텍스트 상자 삽입","SSE.Views.Toolbar.tipInsertHyperlink":"하이퍼 링크 추가","SSE.Views.Toolbar.tipInsertImage":"그림 삽입","SSE.Views.Toolbar.tipInsertOpt":"셀 삽입","SSE.Views.Toolbar.tipInsertShape":"도형 삽입","SSE.Views.Toolbar.tipInsertSlicer":"슬라이서추가","SSE.Views.Toolbar.tipInsertSmartArt":"SmartArt 삽입","SSE.Views.Toolbar.tipInsertSpark":"스파크라인 삽입","SSE.Views.Toolbar.tipInsertSymbol":"기호 삽입","SSE.Views.Toolbar.tipInsertTable":"표 삽입","SSE.Views.Toolbar.tipInsertText":"텍스트 상자 삽입","SSE.Views.Toolbar.tipInsertTextart":"텍스트 아트 삽입","SSE.Views.Toolbar.tipInsertVerticalText":"세로 텍스트 상자 삽입","SSE.Views.Toolbar.tipMerge":"병합하고 가운데 맞춤","SSE.Views.Toolbar.tipNone":"없음","SSE.Views.Toolbar.tipNumFormat":"숫자 형식","SSE.Views.Toolbar.tipPageBreak":"인쇄물에서 다음 페이지가 시작되길 원하는 위치에 페이지 나누기를 추가하세요.","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.tipPrintQuick":"빠른 인쇄","SSE.Views.Toolbar.tipPrintTitles":"제목 인쇄","SSE.Views.Toolbar.tipRedo":"Redo","SSE.Views.Toolbar.tipReplace":"바꾸기","SSE.Views.Toolbar.tipRtlSheet":"첫 번째 열이 오른쪽에 오도록 시트 방향을 전환합니다","SSE.Views.Toolbar.tipSave":"저장","SSE.Views.Toolbar.tipSaveCoauth":"다른 사용자가 볼 수 있도록 변경 사항을 저장하십시오.","SSE.Views.Toolbar.tipScale":"크기에 맞게 확대/축소","SSE.Views.Toolbar.tipSelectAll":"모두 선택","SSE.Views.Toolbar.tipSendBackward":"뒤로 보내기","SSE.Views.Toolbar.tipSendForward":"앞으로 보내기","SSE.Views.Toolbar.tipShapesMerge":"도형 병합","SSE.Views.Toolbar.tipSynchronize":"다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.","SSE.Views.Toolbar.tipTextDir":"방향","SSE.Views.Toolbar.tipTextDirection":"텍스트 방향","SSE.Views.Toolbar.tipTextFormatting":"더 많은 텍스트 서식 지정 도구","SSE.Views.Toolbar.tipTextOrientation":"Orientation","SSE.Views.Toolbar.tipUndo":"실행 취소","SSE.Views.Toolbar.tipVAlighOle":"수직 정렬","SSE.Views.Toolbar.tipVisibleArea":"가시 영역","SSE.Views.Toolbar.tipWrap":"텍스트 줄 바꾸기","SSE.Views.Toolbar.txtAccounting":"회계","SSE.Views.Toolbar.txtAdditional":"Additional","SSE.Views.Toolbar.txtAscending":"오름차순","SSE.Views.Toolbar.txtAutosumTip":"합계","SSE.Views.Toolbar.txtCellStyle":"셀 스타일","SSE.Views.Toolbar.txtClearAll":"모두","SSE.Views.Toolbar.txtClearComments":"코멘트","SSE.Views.Toolbar.txtClearFilter":"필터선택 초기화","SSE.Views.Toolbar.txtClearFormat":"형식","SSE.Views.Toolbar.txtClearFormula":"함수","SSE.Views.Toolbar.txtClearHyper":"하이퍼 링크","SSE.Views.Toolbar.txtClearText":"텍스트","SSE.Views.Toolbar.txtCurrency":"통화","SSE.Views.Toolbar.txtCustom":"Custom","SSE.Views.Toolbar.txtDate":"날짜","SSE.Views.Toolbar.txtDateLong":"확장된 날짜 형식","SSE.Views.Toolbar.txtDateShort":"간단한 날짜 형식","SSE.Views.Toolbar.txtDateTime":"날짜 및 시간","SSE.Views.Toolbar.txtDescending":"내림차순","SSE.Views.Toolbar.txtDollar":"$ 영어 (미국)","SSE.Views.Toolbar.txtEuro":"€ 유로 (€123)","SSE.Views.Toolbar.txtExp":"지수","SSE.Views.Toolbar.txtFillNum":"채우기","SSE.Views.Toolbar.txtFilter":"필터","SSE.Views.Toolbar.txtFormula":"함수 삽입","SSE.Views.Toolbar.txtFraction":"분수","SSE.Views.Toolbar.txtFranc":"CHF Swiss franc","SSE.Views.Toolbar.txtGeneral":"일반","SSE.Views.Toolbar.txtInteger":"정수","SSE.Views.Toolbar.txtManageRange":"이름 관리자","SSE.Views.Toolbar.txtMergeAcross":"Merge Across","SSE.Views.Toolbar.txtMergeCells":"셀 병합","SSE.Views.Toolbar.txtMergeCenter":"병합 및 센터","SSE.Views.Toolbar.txtNamedRange":"Named Ranges","SSE.Views.Toolbar.txtNewRange":"이름 정의","SSE.Views.Toolbar.txtNoBorders":"테두리 없음","SSE.Views.Toolbar.txtNumber":"숫자","SSE.Views.Toolbar.txtPasteRange":"붙여 넣기 이름","SSE.Views.Toolbar.txtPercentage":"백분율","SSE.Views.Toolbar.txtPound":"£ 영어 (영국)","SSE.Views.Toolbar.txtRouble":"₽ 러시아어","SSE.Views.Toolbar.txtScientific":"지수","SSE.Views.Toolbar.txtSearch":"검색","SSE.Views.Toolbar.txtSort":"정렬","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":"¥ 일본어","SSE.Views.Top10FilterDialog.textType":"표시","SSE.Views.Top10FilterDialog.txtBottom":"Bottom","SSE.Views.Top10FilterDialog.txtBy":"~로","SSE.Views.Top10FilterDialog.txtItems":"항목","SSE.Views.Top10FilterDialog.txtPercent":"백분율","SSE.Views.Top10FilterDialog.txtSum":"합계","SSE.Views.Top10FilterDialog.txtTitle":"Top 10 AutoFilter","SSE.Views.Top10FilterDialog.txtTop":"Top","SSE.Views.Top10FilterDialog.txtValueTitle":"상위 10","SSE.Views.ValueFieldSettingsDialog.textNext":"(다음)","SSE.Views.ValueFieldSettingsDialog.textNumFormat":"숫자 형식","SSE.Views.ValueFieldSettingsDialog.textPrev":"(이전)","SSE.Views.ValueFieldSettingsDialog.textTitle":"값 필드 설정","SSE.Views.ValueFieldSettingsDialog.txtAverage":"평균","SSE.Views.ValueFieldSettingsDialog.txtBaseField":"기본 필드","SSE.Views.ValueFieldSettingsDialog.txtBaseItem":"기본 항목","SSE.Views.ValueFieldSettingsDialog.txtByField":"%2의 %1","SSE.Views.ValueFieldSettingsDialog.txtCount":"계산","SSE.Views.ValueFieldSettingsDialog.txtCountNums":"수를 집계","SSE.Views.ValueFieldSettingsDialog.txtCustomName":"사용자 정의 이름","SSE.Views.ValueFieldSettingsDialog.txtDifference":"차이","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.txtPercentOfGrand":"총계의 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParent":"상위 합계의 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentCol":"상위 열 합계의 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentRow":"상위 행 합계의 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow":"전체 백분율","SSE.Views.ValueFieldSettingsDialog.txtPercentOfRunTotal":"누계 합계 %","SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal":"% 행","SSE.Views.ValueFieldSettingsDialog.txtProduct":"제품","SSE.Views.ValueFieldSettingsDialog.txtRankAscending":"오름차순으로 순위 매기기","SSE.Views.ValueFieldSettingsDialog.txtRankDescending":"내림차순으로 순위 매기기","SSE.Views.ValueFieldSettingsDialog.txtRunTotal":"총실행","SSE.Views.ValueFieldSettingsDialog.txtShowAs":"표시된 값은","SSE.Views.ValueFieldSettingsDialog.txtSourceName":"소스 이름:","SSE.Views.ValueFieldSettingsDialog.txtStdDev":"표준편차","SSE.Views.ValueFieldSettingsDialog.txtStdDevp":"표준편차","SSE.Views.ValueFieldSettingsDialog.txtSum":"합계","SSE.Views.ValueFieldSettingsDialog.txtSummarize":"값 필드를 다음과 같이 요약:","SSE.Views.ValueFieldSettingsDialog.txtVar":"표본분산","SSE.Views.ValueFieldSettingsDialog.txtVarp":"분산","SSE.Views.ViewManagerDlg.closeButtonText":"닫기","SSE.Views.ViewManagerDlg.guestText":"게스트","SSE.Views.ViewManagerDlg.lockText":"잠김","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.textViews":"시트 표시","SSE.Views.ViewManagerDlg.tipIsLocked":"이 요소는 다른 사용자가 편집하고 있습니다.","SSE.Views.ViewManagerDlg.txtTitle":"시트 표시 관리자","SSE.Views.ViewManagerDlg.warnDeleteAnotherView":"이 시트 보기를 삭제하시겠습니까?","SSE.Views.ViewManagerDlg.warnDeleteView":"현재 활성화된 보기 '%1'을(를) 삭제하려고 합니다.
이 보기를 닫고 삭제하시겠습니까?","SSE.Views.ViewTab.capBtnFreeze":"창 고정","SSE.Views.ViewTab.capBtnSheetView":"시트보기","SSE.Views.ViewTab.textAlwaysShowToolbar":"항상 도구 모음 표시","SSE.Views.ViewTab.textClose":"닫기","SSE.Views.ViewTab.textCombineSheetAndStatusBars":"상태 표시 줄 숨기기","SSE.Views.ViewTab.textCreate":"새로만들기","SSE.Views.ViewTab.textDefault":"기본","SSE.Views.ViewTab.textFill":"채우기","SSE.Views.ViewTab.textFormula":"수식 입력줄","SSE.Views.ViewTab.textFreezeCol":"첫 번째 열 고정","SSE.Views.ViewTab.textFreezeRow":"첫 번째 행 고정","SSE.Views.ViewTab.textGridlines":"눈금선","SSE.Views.ViewTab.textHeadings":"제목","SSE.Views.ViewTab.textInterfaceTheme":"인터페이스 테마","SSE.Views.ViewTab.textLeftMenu":"왼쪽 패널","SSE.Views.ViewTab.textLine":"선","SSE.Views.ViewTab.textMacros":"매크로","SSE.Views.ViewTab.textManager":"보기 관리자","SSE.Views.ViewTab.textPauseMacro":"녹화 일시 중지","SSE.Views.ViewTab.textRecMacro":"매크로 기록","SSE.Views.ViewTab.textResumeMacro":"녹화 재개","SSE.Views.ViewTab.textRightMenu":"오른쪽 패널","SSE.Views.ViewTab.textShowFrozenPanesShadow":"틀 고정 음영 표시","SSE.Views.ViewTab.textStopMacro":"녹화 중지","SSE.Views.ViewTab.textTabStyle":"탭 스타일","SSE.Views.ViewTab.textUnFreeze":"창 고정 취소","SSE.Views.ViewTab.textZeros":"0표시","SSE.Views.ViewTab.textZoom":"확대/축소","SSE.Views.ViewTab.tipClose":"워크 시트 닫기","SSE.Views.ViewTab.tipCreate":"시트보기를 만들기","SSE.Views.ViewTab.tipFreeze":"창 고정","SSE.Views.ViewTab.tipInterfaceTheme":"인터페이스 테마","SSE.Views.ViewTab.tipMacros":"매크로","SSE.Views.ViewTab.tipPauseMacro":"녹화 일시 중지","SSE.Views.ViewTab.tipRecMacro":"매크로 기록","SSE.Views.ViewTab.tipResumeMacro":"녹화 재개","SSE.Views.ViewTab.tipSheetView":"시트보기","SSE.Views.ViewTab.tipStopMacro":"녹화 중지","SSE.Views.ViewTab.tipViewNormal":"문서를 일반 보기로 표시하세요.","SSE.Views.ViewTab.tipViewPageBreak":"문서가 인쇄될 때 페이지 나누기가 적용되는 곳을 확인하세요.","SSE.Views.ViewTab.txtViewNormal":"표준","SSE.Views.ViewTab.txtViewPageBreak":"페이지 나누기 미리보기","SSE.Views.WatchDialog.closeButtonText":"닫기","SSE.Views.WatchDialog.textAdd":"모니터링 설정 추가","SSE.Views.WatchDialog.textBook":"문서","SSE.Views.WatchDialog.textCell":"셀","SSE.Views.WatchDialog.textDelete":"모니터링 삭제","SSE.Views.WatchDialog.textDeleteAll":"모두 삭제","SSE.Views.WatchDialog.textFormula":"수식","SSE.Views.WatchDialog.textName":"이름","SSE.Views.WatchDialog.textSheet":"시트","SSE.Views.WatchDialog.textValue":"값","SSE.Views.WatchDialog.txtTitle":"모니터링 창","SSE.Views.WBProtection.hintAllowRanges":"허용 범위 편집","SSE.Views.WBProtection.hintProtectRange":"보호 범위","SSE.Views.WBProtection.hintProtectSheet":"시트 보호","SSE.Views.WBProtection.hintProtectWB":"통합 문서 보호","SSE.Views.WBProtection.txtAllowRanges":"허용 범위 편집","SSE.Views.WBProtection.txtHiddenFormula":"수식 숨기기","SSE.Views.WBProtection.txtLockedCell":"셀 잠금","SSE.Views.WBProtection.txtLockedShape":"잠긴 도형","SSE.Views.WBProtection.txtLockedText":"텍스트 잠금","SSE.Views.WBProtection.txtProtectRange":"보호 범위","SSE.Views.WBProtection.txtProtectSheet":"시트 보호","SSE.Views.WBProtection.txtProtectWB":"통합 문서 보호","SSE.Views.WBProtection.txtSheetUnlockDescription":"양식 보호를 해제하려면 비밀번호를 입력하세요.","SSE.Views.WBProtection.txtSheetUnlockTitle":"시트 보호해제","SSE.Views.WBProtection.txtWBUnlockDescription":"통합 문서 보호를 해제하려면 비밀번호를 입력하세요.","SSE.Views.WBProtection.txtWBUnlockTitle":"통합 문서 보호 잠금 해제"} \ No newline at end of file diff --git a/public/web-apps/apps/visioeditor/main/locale/ja.json b/public/web-apps/apps/visioeditor/main/locale/ja.json index ca89109c5..7c85a734e 100644 --- a/public/web-apps/apps/visioeditor/main/locale/ja.json +++ b/public/web-apps/apps/visioeditor/main/locale/ja.json @@ -1 +1 @@ -{"Common.Controllers.Chat.notcriticalErrorTitle":" 警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","Common.Translation.textMoreButton":"もっと見る","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"このファイルは他のアプリで編集されているので、編集できません。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"閲覧するために開く","Common.UI.SearchBar.textFind":"検索","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果のハイライト","Common.UI.SearchDialog.textMatchCase":"大文字と小文字の区別","Common.UI.SearchDialog.textReplaceDef":"代替テキストを挿入","Common.UI.SearchDialog.textSearchStart":"ここにテキストを入力してください","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索","Common.UI.SearchDialog.textWholeWords":"単語全体のみ","Common.UI.SearchDialog.txtBtnHideReplace":"置換を表示しない","Common.UI.SearchDialog.txtBtnReplace":"並べ替え","Common.UI.SearchDialog.txtBtnReplaceAll":"全てを置換する","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"ドキュメントは他のユーザーによって変更されました。
変更を保存するためにここでクリックし、アップデートを再ロードしてください。","Common.UI.Themes.txtThemeClassicLight":"明るい(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"暗い","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"明るい","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":" 警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Views.About.txtAddress":"アドレス:","Common.Views.About.txtLicensee":"ライセンス","Common.Views.About.txtLicensor":"ライセンサー\t","Common.Views.About.txtMail":"Email:","Common.Views.About.txtPoweredBy":"提供元:","Common.Views.About.txtTel":"電話番号:","Common.Views.About.txtVersion":"バージョン","Common.Views.Chat.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"メッセージをここに入力してください","Common.Views.Chat.textSend":"送信","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"このタブの編集のツールバーのボタンとコンテキストメニューを使って、コピー、分割と貼り付けをすることができます。

他のアプリケーションにコピーと貼り付けのために、次のショートカットキー を使ってください:","Common.Views.CopyWarningDialog.textTitle":"コピー、カット、ペーストのアクション","Common.Views.CopyWarningDialog.textToCopy":"コピー用","Common.Views.CopyWarningDialog.textToCut":"切り取り用","Common.Views.CopyWarningDialog.textToPaste":"貼り付用","Common.Views.DocumentAccessDialog.textLoading":"読み込んでいます...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りに追加","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textBack":"ファイルの場所を開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textDownload":"ダウンロード","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideStatusBar":"ステータスバーを表示しない","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textShare":"共有","Common.Views.Header.textZoom":"拡大図","Common.Views.Header.tipAccessRights":"文書へのアクセス権限を管理","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDownload":"ファイルをダウンロード","Common.Views.Header.tipGoEdit":"現在のファイルを編集する","Common.Views.Header.tipPrint":"ファイルを印刷する","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直す","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUsers":"ユーザーを表示する","Common.Views.Header.tipViewSettings":"表示の設定","Common.Views.Header.tipViewUsers":"ユーザーの表示と文書のアクセス権の管理","Common.Views.Header.txtAccessRights":"アクセス権の変更","Common.Views.Header.txtRename":"名前を変更","Common.Views.OpenDialog.closeButtonText":"ファイルを閉じる","Common.Views.OpenDialog.txtEncoding":"エンコーディング","Common.Views.OpenDialog.txtIncorrectPwd":"パスワードが正しくありません。","Common.Views.OpenDialog.txtOpenFile":"ファイルを開くためにパスワードを入力してください。","Common.Views.OpenDialog.txtPassword":"パスワード","Common.Views.OpenDialog.txtPreview":"プレビュー","Common.Views.OpenDialog.txtProtected":"パスワードを入力してファイルを開くと、既存のパスワードがリセットされます。","Common.Views.OpenDialog.txtTitle":"%1オプションの選択","Common.Views.OpenDialog.txtTitleProtected":"保護されたファイル","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"開始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","Common.Views.RenameDialog.textName":"ファイル名","Common.Views.RenameDialog.txtInvalidName":"ファイル名に次の文字を使うことはできません。","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字の区別","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索","Common.Views.SearchPanel.textFindAndReplace":"検索と置換","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textNoMatches":"一致する結果がありません","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"並べ替え","Common.Views.SearchPanel.textReplaceAll":"全てを置換する","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.UserNameDialog.textDontShow":"二度と表示しない","Common.Views.UserNameDialog.textLabel":"ラベル:","Common.Views.UserNameDialog.textLabelError":"ラベルは空白にできません","VE.Controllers.LeftMenu.newDocumentTitle":"無名のドキュメント","VE.Controllers.LeftMenu.notcriticalErrorTitle":" 警告","VE.Controllers.LeftMenu.requestEditRightsText":"編集の権限を要求中...","VE.Controllers.LeftMenu.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","VE.Controllers.LeftMenu.textSelectPath":"ファイルのコピーを保存するために新しいタイトルを入力してください","VE.Controllers.LeftMenu.txtCompatible":"ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。","VE.Controllers.LeftMenu.txtUntitled":"無題","VE.Controllers.Main.applyChangesTextText":"変更の読み込み中...","VE.Controllers.Main.applyChangesTitleText":"変更の読み込み中","VE.Controllers.Main.convertationTimeoutText":"変換のタイムアウトを超過しました。","VE.Controllers.Main.criticalErrorExtText":"OKボタンを押すと文書リストに戻ります","VE.Controllers.Main.criticalErrorExtTextClose":"[OK]を押してエディターを閉じます。","VE.Controllers.Main.criticalErrorTitle":"エラー","VE.Controllers.Main.downloadErrorText":"ダウンロードに失敗しました。","VE.Controllers.Main.downloadMergeText":"ダウンロード中...","VE.Controllers.Main.downloadMergeTitle":"ダウンロード中","VE.Controllers.Main.downloadTextText":"ドキュメントのダウンロード中...","VE.Controllers.Main.downloadTitleText":"ドキュメントのダウンロード中","VE.Controllers.Main.errorAccessDeny":"利用権限がない操作をしようとしました。
文書サーバーの管理者までご連絡ください。","VE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません","VE.Controllers.Main.errorCannotPasteImg":"この画像をクリップボードから貼り付けることはできませんが、お使いのデバイスに保存して、 \nそこから挿入するか、テキストを含まない画像をコピーしてドキュメントに貼り付けることができます。","VE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。現在、文書を編集することができません。","VE.Controllers.Main.errorConnectToServer":"ドキュメントを保存できませんでした。接続設定を確認するか、管理者に連絡してください。
「OK」ボタンをクリックすると、ドキュメントのダウンロードを促すプロンプトが表示されます。","VE.Controllers.Main.errorDatabaseConnection":"外部エラーです。
データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。","VE.Controllers.Main.errorDataEncrypted":"暗号化された変更を受け取りましたが、解読できません。","VE.Controllers.Main.errorDataRange":"データ範囲が正しくありません","VE.Controllers.Main.errorDefaultMessage":"エラー コード:%1","VE.Controllers.Main.errorDirectUrl":"ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。","VE.Controllers.Main.errorEditingDownloadas":"文書の処理中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存してください。","VE.Controllers.Main.errorEditingSaveas":"文書の処理中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存してください。","VE.Controllers.Main.errorEmailClient":"メールクライアントが見つかりませんでした。","VE.Controllers.Main.errorFilePassProtect":"ドキュメントがパスワードで保護されているため開くことができません","VE.Controllers.Main.errorFileSizeExceed":"ファイルサイズがサーバーで設定された制限を超過しています。
ドキュメントサーバー管理者に詳細をお問い合わせください。","VE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存するか、後で再試行してください。","VE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","VE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","VE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","VE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","VE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","VE.Controllers.Main.errorKeyEncrypt":"不明なキーの記述子","VE.Controllers.Main.errorKeyExpire":"署名キーは期限切れました","VE.Controllers.Main.errorLoadingFont":"フォントが読み込まれていません。
ドキュメントサーバーの管理者に連絡してください。","VE.Controllers.Main.errorPasswordIsNotCorrect":"入力されたパスワードが間違っています。
CapsLock キーがオフになっていること、大文字と小文字が正しく使われていることを確認してください。 ","VE.Controllers.Main.errorServerVersion":"エディタのバージョンが更新されました。変更を適用するためにページが再読み込みされます。","VE.Controllers.Main.errorSessionAbsolute":"ドキュメント編集セッションが終了しました。 ページを再ロードしてください。","VE.Controllers.Main.errorSessionIdle":"このドキュメントはかなり長い間編集されていませんでした。このページをリロードしてください。","VE.Controllers.Main.errorSessionToken":"サーバーとの接続が中断されました。このページをリロードしてください。","VE.Controllers.Main.errorSetPassword":"パスワードを設定できませんでした。","VE.Controllers.Main.errorToken":"ドキュメントセキュリティトークンが正しく形成されていません。
ドキュメントサーバー管理者にお問い合わせください。","VE.Controllers.Main.errorTokenExpire":"ドキュメントセキュリティトークンが期限切れになりました。
ドキュメントサーバー管理者にお問い合わせください。","VE.Controllers.Main.errorUpdateVersion":"ファイルが変更されました。ページがリロードされます。","VE.Controllers.Main.errorUpdateVersionOnDisconnect":"インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。","VE.Controllers.Main.errorUserDrop":"ただいま、ファイルにアクセスできません。","VE.Controllers.Main.errorUsersExceed":"料金プランによってユーザ数を超過しました。","VE.Controllers.Main.errorViewerDisconnect":"接続が切断されました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。","VE.Controllers.Main.leavePageText":"この文書の保存されていない変更があります。保存するために「このページにとどまる」をクリックし、その後「保存」をクリックしてください。「このページを離れる」をクリックすると、未保存の変更がすべて破棄されます。","VE.Controllers.Main.leavePageTextOnClose":"変更を保存しないでドキュメントを閉じると変更が失われます。
保存するために「キャンセル 」、後に「保存」をクリックします。保存していないすべての変更を破棄するために、「OK」をクリックします。","VE.Controllers.Main.loadFontsTextText":"データを読み込んでいます","VE.Controllers.Main.loadFontsTitleText":"データを読み込んでいます","VE.Controllers.Main.loadFontTextText":"データを読み込んでいます","VE.Controllers.Main.loadFontTitleText":"データを読み込んでいます","VE.Controllers.Main.loadImagesTextText":"画像を読み込んでいます…","VE.Controllers.Main.loadImagesTitleText":"画像を読み込んでいます","VE.Controllers.Main.loadImageTextText":"画像を読み込んでいます…","VE.Controllers.Main.loadImageTitleText":"画像を読み込んでいます","VE.Controllers.Main.loadingDocumentTextText":"ドキュメントを読み込んでいます…","VE.Controllers.Main.loadingDocumentTitleText":"ドキュメントを読み込んでいます…","VE.Controllers.Main.notcriticalErrorTitle":" 警告","VE.Controllers.Main.openErrorText":"ファイルを読み込み中にエラーが発生しました","VE.Controllers.Main.openTextText":"ドキュメントを読み込んでいます...","VE.Controllers.Main.openTitleText":"ドキュメントを読み込んでいます","VE.Controllers.Main.printTextText":"ドキュメントの印刷中...","VE.Controllers.Main.printTitleText":"ドキュメントの印刷中","VE.Controllers.Main.reloadButtonText":"ページを再読み込み","VE.Controllers.Main.requestEditFailedMessageText":"この文書は他のユーザによって編集しています。後でもう一度試してみてください。","VE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","VE.Controllers.Main.saveErrorText":"ファイルを保存中にエラーが発生しました","VE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","VE.Controllers.Main.saveTextText":"ドキュメントの保存中...","VE.Controllers.Main.saveTitleText":"ドキュメントの保存中","VE.Controllers.Main.scriptLoadError":"接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。","VE.Controllers.Main.textAnonymous":"匿名","VE.Controllers.Main.textAnyone":"誰でも","VE.Controllers.Main.textBuyNow":"ウェブサイトにアクセス","VE.Controllers.Main.textChangesSaved":"全ての変更点が保存されました","VE.Controllers.Main.textClose":"閉じる","VE.Controllers.Main.textCloseTip":"ヒントを閉じるためにクリックしてください","VE.Controllers.Main.textConnectionLost":"接続中です。接続設定をご確認ください。","VE.Controllers.Main.textContactUs":"営業部に連絡する","VE.Controllers.Main.textContinue":"続ける","VE.Controllers.Main.textCustomLoader":"ライセンス条項により、ローダーを変更する権利がないことにご注意ください。
見積もりについては、弊社営業部門にお問い合わせください。","VE.Controllers.Main.textDisconnect":"接続が切断されました","VE.Controllers.Main.textGuest":"ゲスト","VE.Controllers.Main.textLearnMore":"詳細はこちら","VE.Controllers.Main.textLoadingDocument":"ドキュメントを読み込んでいます…","VE.Controllers.Main.textLongName":"128文字未満の名前を入力してください。","VE.Controllers.Main.textNoLicenseTitle":"ライセンス制限に達しました","VE.Controllers.Main.textPaidFeature":"有料機能","VE.Controllers.Main.textReconnect":"接続が回復しました","VE.Controllers.Main.textRemember":"すべてのファイルに選択を保存する","VE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","VE.Controllers.Main.textRenameLabel":"共同作業のときに使用する名前を入力してください","VE.Controllers.Main.textShape":"図形","VE.Controllers.Main.textStrict":"厳格モード","VE.Controllers.Main.textText":"テキスト","VE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","VE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","VE.Controllers.Main.textUpdating":"アップデート中","VE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","VE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","VE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","VE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","VE.Controllers.Main.titleReadOnly":"閲覧専用モード","VE.Controllers.Main.titleServerVersion":"エディターが更新されました","VE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","VE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","VE.Controllers.Main.txtSecurityWarningLink":"このドキュメントは{0}に接続しようとしています。
このサイトを信頼するなら、ctrlキーを押しながら「OK」を押してください。","VE.Controllers.Main.txtSecurityWarningOpenFile":"このドキュメントはファイルダイアログを開こうとしています。開くには、OKを押してください。","VE.Controllers.Main.unknownErrorText":"不明なエラーです。","VE.Controllers.Main.unsupportedBrowserErrorText":"お使いのブラウザはサポートされていません。","VE.Controllers.Main.uploadDocExtMessage":"不明な文書形式","VE.Controllers.Main.uploadDocFileCountMessage":"アップロードされた文書がありません。","VE.Controllers.Main.uploadDocSizeMessage":"文書の最大サイズ制限を超えています。","VE.Controllers.Main.uploadImageExtMessage":"不明なイメージ形式","VE.Controllers.Main.uploadImageFileCountMessage":"アップロードした画像なし","VE.Controllers.Main.uploadImageSizeMessage":"画像サイズの上限を超えました。サイズの上限は25MBです。","VE.Controllers.Main.uploadImageTextText":"イメージのアップロード中...","VE.Controllers.Main.uploadImageTitleText":"画像をアップロードしています","VE.Controllers.Main.waitText":"少々お待ちください...","VE.Controllers.Main.warnBrowserIE9":"このアプリケーションはIE9では低機能です。IE10以上のバージョンをご利用ください。","VE.Controllers.Main.warnBrowserZoom":"お使いのブラウザの現在のZoomの設定は完全にはサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。","VE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","VE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","VE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページを再読み込みしてください。","VE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","VE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください","VE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","VE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー数制限に達しました。 アップグレード条件については、%1営業チームにお問い合わせください。","VE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","VE.Controllers.Search.notcriticalErrorTitle":" 警告","VE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","VE.Controllers.Search.textReplaceSkipped":"置換が完了しました。{0}つスキップされました。","VE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました","VE.Controllers.Search.warnReplaceString":"{0}は、「置換」ボックスで有効な特殊文字ではありません。","VE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","VE.Controllers.Statusbar.zoomText":"ズーム{0}%","VE.Controllers.Toolbar.errorAccessDeny":"利用権限がない操作をしようとしました。
文書サーバーの管理者までご連絡ください。","VE.Controllers.Toolbar.notcriticalErrorTitle":" 警告","VE.Controllers.Toolbar.txtUntitled":"無題","VE.Views.DocumentHolder.guestText":"ゲスト","VE.Views.DocumentHolder.textCopy":"コピー","VE.Views.DocumentHolder.txtPressLink":"{0}キーを押しながらリンクをクリックしてください","VE.Views.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。
本当に続けてよろしいですか?","VE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","VE.Views.FileMenu.btnBackCaption":"ファイルの場所を開く","VE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","VE.Views.FileMenu.btnCloseMenuCaption":"戻る","VE.Views.FileMenu.btnCreateNewCaption":"新規作成","VE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","VE.Views.FileMenu.btnExitCaption":"閉じる","VE.Views.FileMenu.btnFileOpenCaption":"開く","VE.Views.FileMenu.btnHelpCaption":"ヘルプ","VE.Views.FileMenu.btnInfoCaption":"詳細情報","VE.Views.FileMenu.btnPrintCaption":"印刷","VE.Views.FileMenu.btnRecentFilesCaption":"最近使ったファイルを開く","VE.Views.FileMenu.btnRenameCaption":"名前を変更","VE.Views.FileMenu.btnReturnCaption":"文書に戻る","VE.Views.FileMenu.btnRightsCaption":"アクセス権","VE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","VE.Views.FileMenu.btnSaveCopyAsCaption":"コピーを別名で保存する","VE.Views.FileMenu.btnSettingsCaption":"詳細設定","VE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","VE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","VE.Views.FileMenu.textDownload":"ダウンロード","VE.Views.FileMenuPanels.CreateNew.txtBlank":"空の文書","VE.Views.FileMenuPanels.CreateNew.txtCreateNew":"新規作成","VE.Views.FileMenuPanels.DocumentInfo.okButtonText":"適用","VE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"著者を追加","VE.Views.FileMenuPanels.DocumentInfo.txtAddText":"テキストを追加","VE.Views.FileMenuPanels.DocumentInfo.txtAppName":"アプリ","VE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"作成者","VE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"アクセス権の変更","VE.Views.FileMenuPanels.DocumentInfo.txtComment":"コメント","VE.Views.FileMenuPanels.DocumentInfo.txtCommon":"共通","VE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成済み","VE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文書の情報","VE.Views.FileMenuPanels.DocumentInfo.txtLoading":"読み込んでいます...","VE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","VE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","VE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","VE.Views.FileMenuPanels.DocumentInfo.txtOwner":"作成者","VE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"場所","VE.Views.FileMenuPanels.DocumentInfo.txtRights":"アクセス権を持っている人","VE.Views.FileMenuPanels.DocumentInfo.txtSubject":"件名","VE.Views.FileMenuPanels.DocumentInfo.txtTags":"タグ","VE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","VE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロード済み","VE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","VE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス権","VE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス権の変更","VE.Views.FileMenuPanels.DocumentRights.txtRights":"アクセス権を持っている人","VE.Views.FileMenuPanels.Settings.okButtonText":"適用","VE.Views.FileMenuPanels.Settings.strFontRender":"フォントのヒント","VE.Views.FileMenuPanels.Settings.strTabStyle":"タブのスタイル","VE.Views.FileMenuPanels.Settings.strTheme":"インターフェースのテーマ","VE.Views.FileMenuPanels.Settings.strZoom":"既定のズーム値","VE.Views.FileMenuPanels.Settings.textDisabled":"無効","VE.Views.FileMenuPanels.Settings.textFill":"塗りつぶし","VE.Views.FileMenuPanels.Settings.textLine":"線","VE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"詳細設定","VE.Views.FileMenuPanels.Settings.txtAppearance":"外観","VE.Views.FileMenuPanels.Settings.txtCacheMode":"デフォルトのキャッシュモード","VE.Views.FileMenuPanels.Settings.txtFitPage":"ページに合わせる","VE.Views.FileMenuPanels.Settings.txtFitWidth":"幅に合わせる","VE.Views.FileMenuPanels.Settings.txtLastUsed":"最後に使用した項目","VE.Views.FileMenuPanels.Settings.txtMac":"OSXのように","VE.Views.FileMenuPanels.Settings.txtNative":"ネイティブ","VE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","VE.Views.FileMenuPanels.Settings.txtScreenReader":"スクリーンリーダーのサポートをオンにする","VE.Views.FileMenuPanels.Settings.txtTabBack":"ツールバーの色をタブの背景に使う","VE.Views.FileMenuPanels.Settings.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーをご使用ください","VE.Views.FileMenuPanels.Settings.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","VE.Views.FileMenuPanels.Settings.txtWin":"Windowsのように","VE.Views.FileMenuPanels.Settings.txtWorkspace":"ワークスペース","VE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","VE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","VE.Views.LeftMenu.ariaLeftMenu":"左メニュー","VE.Views.LeftMenu.tipAbout":"詳細情報","VE.Views.LeftMenu.tipChat":"チャット","VE.Views.LeftMenu.tipPages":"ページ","VE.Views.LeftMenu.tipPlugins":"プラグイン","VE.Views.LeftMenu.tipSearch":"検索","VE.Views.LeftMenu.tipSupport":"フィードバック&サポート","VE.Views.LeftMenu.txtDeveloper":"開発者モード","VE.Views.LeftMenu.txtEditor":"図表ビューア","VE.Views.LeftMenu.txtLimit":"制限されたアクセス","VE.Views.LeftMenu.txtTrial":"試用モード","VE.Views.LeftMenu.txtTrialDev":"試用開発者モード","VE.Views.Statusbar.sheetIndexText":"{0}/{1} ページ","VE.Views.Statusbar.tipFitPage":"ページに合わせる","VE.Views.Statusbar.tipFitWidth":"幅に合わせる","VE.Views.Statusbar.tipListOfSheets":"ページリスト","VE.Views.Statusbar.tipNext":"次のページ","VE.Views.Statusbar.tipPrev":"前のページ","VE.Views.Statusbar.tipZoomFactor":"拡大図","VE.Views.Statusbar.tipZoomIn":"拡大","VE.Views.Statusbar.tipZoomOut":"縮小","VE.Views.Statusbar.txtPage":"ページ","VE.Views.Toolbar.textTabFile":"ファイル","VE.Views.Toolbar.textTabView":"表示","VE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","VE.Views.ViewTab.textFill":"塗りつぶし","VE.Views.ViewTab.textFitPage":"ページに合わせる","VE.Views.ViewTab.textFitWidth":"幅に合わせる","VE.Views.ViewTab.textInterfaceTheme":"インターフェースのテーマ","VE.Views.ViewTab.textLeftMenu":"左パネル","VE.Views.ViewTab.textLine":"線","VE.Views.ViewTab.textRightMenu":"右パネル","VE.Views.ViewTab.textStatusBar":"ステータスバー","VE.Views.ViewTab.textTabStyle":"タブのスタイル","VE.Views.ViewTab.textZoom":"拡大図","VE.Views.ViewTab.tipFitPage":"ページに合わせる","VE.Views.ViewTab.tipFitWidth":"幅に合わせる","VE.Views.ViewTab.tipInterfaceTheme":"インターフェースのテーマ"} \ No newline at end of file +{"Common.Controllers.Chat.notcriticalErrorTitle":" 警告","Common.Controllers.Desktop.hintBtnHome":"メインウィンドウを表示する","Common.Controllers.Desktop.itemCreateFromTemplate":"テンプレートから作成","Common.Controllers.Plugins.helpMoveMacros":"マクロの操作を開始するには、「表示」タブに切り替えます。","Common.Controllers.Plugins.helpMoveMacrosHeader":"移動した「マクロ」ボタン","Common.Controllers.Plugins.helpUseMacros":"「マクロ」ボタンはここに移動しました","Common.Controllers.Plugins.helpUseMacrosHeader":"マクロへのアクセスを更新しました","Common.Controllers.Plugins.textPluginsSuccessfullyInstalled":"プラグインは正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textPluginSuccessfullyInstalled":"{0}は正常にインストールされました。すべてのバックグラウンドプラグインは、ここにアクセスできます。","Common.Controllers.Plugins.textRunInstalledPlugins":"インストールされたプラグインの実行","Common.Controllers.Plugins.textRunPlugin":"プラグインの実行","Common.Translation.textMoreButton":"もっと見る","Common.Translation.tipFileLocked":"ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。","Common.Translation.tipFileReadOnly":"このファイルは読み取り専用です。変更内容を保持するには、新しい名前または別の場所にファイルを保存してください。","Common.Translation.warnFileLocked":"このファイルは他のアプリで編集されているので、編集できません。","Common.Translation.warnFileLockedBtnEdit":"コピーを作成する","Common.Translation.warnFileLockedBtnView":"閲覧するために開く","Common.UI.SearchBar.textFind":"検索","Common.UI.SearchBar.tipCloseSearch":"検索を閉じる","Common.UI.SearchBar.tipNextResult":"次の結果","Common.UI.SearchBar.tipOpenAdvancedSettings":"詳細設定を開く","Common.UI.SearchBar.tipPreviousResult":"前の結果","Common.UI.SearchDialog.textHighlight":"結果のハイライト","Common.UI.SearchDialog.textMatchCase":"大文字と小文字の区別","Common.UI.SearchDialog.textReplaceDef":"代替テキストを挿入","Common.UI.SearchDialog.textSearchStart":"ここにテキストを入力してください","Common.UI.SearchDialog.textTitle":"検索と置換","Common.UI.SearchDialog.textTitle2":"検索","Common.UI.SearchDialog.textWholeWords":"単語全体のみ","Common.UI.SearchDialog.txtBtnHideReplace":"置換を表示しない","Common.UI.SearchDialog.txtBtnReplace":"並べ替え","Common.UI.SearchDialog.txtBtnReplaceAll":"全てを置換する","Common.UI.SynchronizeTip.textDontShow":"今後このメッセージを表示しない","Common.UI.SynchronizeTip.textGotIt":"OK","Common.UI.SynchronizeTip.textNew":"新規","Common.UI.SynchronizeTip.textSynchronize":"ドキュメントは他のユーザーによって変更されました。
変更を保存するためにここでクリックし、アップデートを再ロードしてください。","Common.UI.Themes.txtThemeClassicLight":"明るい(クラシック)","Common.UI.Themes.txtThemeContrastDark":"ダークコントラスト","Common.UI.Themes.txtThemeDark":"暗い","Common.UI.Themes.txtThemeGray":"灰色","Common.UI.Themes.txtThemeLight":"明るい","Common.UI.Themes.txtThemeModernDark":"モダンダーク","Common.UI.Themes.txtThemeModernLight":"モダンライト","Common.UI.Themes.txtThemeSystem":"システム設定と同じ","Common.UI.Window.cancelButtonText":"キャンセル","Common.UI.Window.closeButtonText":"閉じる","Common.UI.Window.noButtonText":"いいえ","Common.UI.Window.okButtonText":"OK","Common.UI.Window.textConfirmation":"確認","Common.UI.Window.textDontShow":"今後このメッセージを表示しない","Common.UI.Window.textError":"エラー","Common.UI.Window.textInformation":"情報","Common.UI.Window.textWarning":" 警告","Common.UI.Window.yesButtonText":"はい","Common.Utils.Metric.txtCm":"センチ","Common.Utils.Metric.txtPt":"pt","Common.Utils.String.textAlt":"Alt","Common.Utils.String.textComma":"、","Common.Utils.String.textCtrl":"Ctrl","Common.Utils.String.textShift":"Shift","Common.Views.About.txtAddress":"アドレス:","Common.Views.About.txtLicensee":"ライセンス","Common.Views.About.txtLicensor":"ライセンサー\t","Common.Views.About.txtMail":"Email:","Common.Views.About.txtPoweredBy":"提供元:","Common.Views.About.txtTel":"電話番号:","Common.Views.About.txtVersion":"バージョン","Common.Views.Chat.textChat":"チャット","Common.Views.Chat.textClosePanel":"チャットを閉じる","Common.Views.Chat.textEnterMessage":"メッセージをここに入力してください","Common.Views.Chat.textSend":"送信","Common.Views.CopyWarningDialog.textDontShow":"今後このメッセージを表示しない","Common.Views.CopyWarningDialog.textMsg":"このタブの編集のツールバーのボタンとコンテキストメニューを使って、コピー、分割と貼り付けをすることができます。

他のアプリケーションにコピーと貼り付けのために、次のショートカットキー を使ってください:","Common.Views.CopyWarningDialog.textTitle":"コピー、カット、ペーストのアクション","Common.Views.CopyWarningDialog.textToCopy":"コピー用","Common.Views.CopyWarningDialog.textToCut":"切り取り用","Common.Views.CopyWarningDialog.textToPaste":"貼り付用","Common.Views.DocumentAccessDialog.textLoading":"読み込んでいます...","Common.Views.DocumentAccessDialog.textTitle":"共有設定","Common.Views.Header.ariaQuickAccessToolbar":"クイックアクセスツールバー","Common.Views.Header.labelCoUsersDescr":"ファイルを編集しているユーザー:","Common.Views.Header.textAddFavorite":"お気に入りに追加","Common.Views.Header.textAdvSettings":"詳細設定","Common.Views.Header.textBack":"ファイルの場所を開く","Common.Views.Header.textClose":"ファイルを閉じる","Common.Views.Header.textCompactView":"ツールバーを表示しない","Common.Views.Header.textDownload":"ダウンロード","Common.Views.Header.textHideLines":"ルーラーを表示しない","Common.Views.Header.textHideStatusBar":"ステータスバーを表示しない","Common.Views.Header.textPrint":"印刷","Common.Views.Header.textReadOnly":"閲覧のみ","Common.Views.Header.textRemoveFavorite":"お気に入りから削除","Common.Views.Header.textShare":"共有","Common.Views.Header.textZoom":"拡大図","Common.Views.Header.tipAccessRights":"文書へのアクセス権限を管理","Common.Views.Header.tipCustomizeQuickAccessToolbar":"クイックアクセスツールバーのカスタマイズ","Common.Views.Header.tipDownload":"ファイルをダウンロード","Common.Views.Header.tipGoEdit":"現在のファイルを編集する","Common.Views.Header.tipPrint":"ファイルを印刷する","Common.Views.Header.tipPrintQuick":"クイックプリント","Common.Views.Header.tipRedo":"やり直す","Common.Views.Header.tipSave":"保存","Common.Views.Header.tipSearch":"検索","Common.Views.Header.tipUndo":"元に戻す","Common.Views.Header.tipUsers":"ユーザーを表示する","Common.Views.Header.tipViewSettings":"表示の設定","Common.Views.Header.tipViewUsers":"ユーザーの表示と文書のアクセス権の管理","Common.Views.Header.txtAccessRights":"アクセス権の変更","Common.Views.Header.txtRename":"名前を変更","Common.Views.OpenDialog.closeButtonText":"ファイルを閉じる","Common.Views.OpenDialog.txtEncoding":"エンコーディング","Common.Views.OpenDialog.txtIncorrectPwd":"パスワードが正しくありません。","Common.Views.OpenDialog.txtOpenFile":"ファイルを開くためにパスワードを入力してください。","Common.Views.OpenDialog.txtPassword":"パスワード","Common.Views.OpenDialog.txtPreview":"プレビュー","Common.Views.OpenDialog.txtProtected":"パスワードを入力してファイルを開くと、既存のパスワードがリセットされます。","Common.Views.OpenDialog.txtTitle":"%1オプションの選択","Common.Views.OpenDialog.txtTitleProtected":"保護されたファイル","Common.Views.PluginDlg.textDock":"プラグインのピン留め","Common.Views.PluginDlg.textLoading":"読み込み中","Common.Views.PluginPanel.textClosePanel":"プラグインを閉じる","Common.Views.PluginPanel.textHidePanel":"プラグインを折りたたむ","Common.Views.PluginPanel.textLoading":"読み込み中","Common.Views.PluginPanel.textUndock":"プラグインのピン留めを解除","Common.Views.Plugins.groupCaption":"プラグイン","Common.Views.Plugins.strPlugins":"プラグイン","Common.Views.Plugins.textBackgroundPlugins":"バックグラウンド・プラグイン","Common.Views.Plugins.textClosePanel":"プラグインを閉じる","Common.Views.Plugins.textLoading":"読み込み中","Common.Views.Plugins.textSettings":"設定","Common.Views.Plugins.textStart":"開始","Common.Views.Plugins.textStop":"停止","Common.Views.Plugins.textTheListOfBackgroundPlugins":"バックグラウンド・プラグインのリスト","Common.Views.RecentFiles.txtOpenRecent":"最近使ったファイルを開く","Common.Views.RenameDialog.textName":"ファイル名","Common.Views.RenameDialog.txtInvalidName":"ファイル名に次の文字を使うことはできません。","Common.Views.SaveAsDlg.textLoading":"読み込み中","Common.Views.SaveAsDlg.textTitle":"保存先のフォルダ","Common.Views.SearchPanel.textCaseSensitive":"大文字と小文字の区別","Common.Views.SearchPanel.textCloseSearch":"検索を閉じる","Common.Views.SearchPanel.textContentChanged":"ドキュメントが変更されました","Common.Views.SearchPanel.textFind":"検索","Common.Views.SearchPanel.textFindAndReplace":"検索と置換","Common.Views.SearchPanel.textItemsSuccessfullyReplaced":"{0}個のアイテムが正常に交換されました。","Common.Views.SearchPanel.textMatchUsingRegExp":"正規表現によるマッチング","Common.Views.SearchPanel.textNoMatches":"一致する結果がありません","Common.Views.SearchPanel.textNoSearchResults":"検索結果は見つかりませんでした","Common.Views.SearchPanel.textPartOfItemsNotReplaced":"{0}/{1}のアイテムが交換されました。残りの{2}個のアイテムは他のユーザーによってロックされています。","Common.Views.SearchPanel.textReplace":"並べ替え","Common.Views.SearchPanel.textReplaceAll":"全てを置換する","Common.Views.SearchPanel.textReplaceWith":"置換後の文字列","Common.Views.SearchPanel.textSearchAgain":"正確な結果を得るために{0}新規検索を行う{1}。","Common.Views.SearchPanel.textSearchHasStopped":"検索が停止しました","Common.Views.SearchPanel.textSearchResults":"検索結果:{0}/{1}","Common.Views.SearchPanel.textSearchResultsTable":"検索結果","Common.Views.SearchPanel.textTooManyResults":"検索結果が多すぎるため、ここに表示できません","Common.Views.SearchPanel.textWholeWords":"単語全体のみ","Common.Views.SearchPanel.tipNextResult":"次の結果","Common.Views.SearchPanel.tipPreviousResult":"前の結果","Common.Views.SelectFileDlg.textLoading":"読み込み中","Common.Views.SelectFileDlg.textTitle":"データソースを選択する","Common.Views.ShortcutsDialog.txtDescription":"Description","Common.Views.ShortcutsDialog.txtEmpty":"No matches found. Adjust your search.","Common.Views.ShortcutsDialog.txtRestoreAll":"Restore All to Defaults","Common.Views.ShortcutsDialog.txtRestoreContinue":"Do you want to continue?","Common.Views.ShortcutsDialog.txtRestoreDescription":"All shortcuts settings will be restored to default.","Common.Views.ShortcutsDialog.txtRestoreToDefault":"Restore to default","Common.Views.ShortcutsDialog.txtSearch":"Search","Common.Views.ShortcutsDialog.txtTitle":"Keyboard Shortcuts","Common.Views.ShortcutsEditDialog.txtAction":"Action","Common.Views.ShortcutsEditDialog.txtInputPlaceholder":"Type desired shortcut","Common.Views.ShortcutsEditDialog.txtInputWarnMany":"The shortcut used by actions %1","Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked":"The shortcut used by actions %1 and can’t be changed","Common.Views.ShortcutsEditDialog.txtInputWarnOne":"The shortcut used by action %1","Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked":"The shortcut used by action %1 and can’t be changed","Common.Views.ShortcutsEditDialog.txtNewShortcut":"New shortcut","Common.Views.ShortcutsEditDialog.txtRestoreContinue":"Do you want to continue?","Common.Views.ShortcutsEditDialog.txtRestoreDescription":"All shortcuts for action “%1” will be restored to default.","Common.Views.ShortcutsEditDialog.txtRestoreToDefault":"Restore to default","Common.Views.ShortcutsEditDialog.txtTitle":"Edit shortcut","Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut":"Type desired shortcut","Common.Views.UserNameDialog.textDontShow":"二度と表示しない","Common.Views.UserNameDialog.textLabel":"ラベル:","Common.Views.UserNameDialog.textLabelError":"ラベルは空白にできません","VE.Controllers.LeftMenu.newDocumentTitle":"無名のドキュメント","VE.Controllers.LeftMenu.notcriticalErrorTitle":" 警告","VE.Controllers.LeftMenu.requestEditRightsText":"編集の権限を要求中...","VE.Controllers.LeftMenu.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","VE.Controllers.LeftMenu.textSelectPath":"ファイルのコピーを保存するために新しいタイトルを入力してください","VE.Controllers.LeftMenu.txtCompatible":"ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。","VE.Controllers.LeftMenu.txtUntitled":"無題","VE.Controllers.Main.applyChangesTextText":"変更の読み込み中...","VE.Controllers.Main.applyChangesTitleText":"変更の読み込み中","VE.Controllers.Main.convertationTimeoutText":"変換のタイムアウトを超過しました。","VE.Controllers.Main.criticalErrorExtText":"OKボタンを押すと文書リストに戻ります","VE.Controllers.Main.criticalErrorExtTextClose":"[OK]を押してエディターを閉じます。","VE.Controllers.Main.criticalErrorTitle":"エラー","VE.Controllers.Main.downloadErrorText":"ダウンロードに失敗しました。","VE.Controllers.Main.downloadMergeText":"ダウンロード中...","VE.Controllers.Main.downloadMergeTitle":"ダウンロード中","VE.Controllers.Main.downloadTextText":"ドキュメントのダウンロード中...","VE.Controllers.Main.downloadTitleText":"ドキュメントのダウンロード中","VE.Controllers.Main.errorAccessDeny":"利用権限がない操作をしようとしました。
文書サーバーの管理者までご連絡ください。","VE.Controllers.Main.errorBadImageUrl":"画像のURLが正しくありません","VE.Controllers.Main.errorCannotPasteImg":"この画像をクリップボードから貼り付けることはできませんが、お使いのデバイスに保存して、 \nそこから挿入するか、テキストを含まない画像をコピーしてドキュメントに貼り付けることができます。","VE.Controllers.Main.errorCoAuthoringDisconnect":"サーバーとの接続が失われました。現在、文書を編集することができません。","VE.Controllers.Main.errorConnectToServer":"ドキュメントを保存できませんでした。接続設定を確認するか、管理者に連絡してください。
「OK」ボタンをクリックすると、ドキュメントのダウンロードを促すプロンプトが表示されます。","VE.Controllers.Main.errorCopyDisabled":"For security reasons, the contents of this document cannot be copied.","VE.Controllers.Main.errorDatabaseConnection":"外部エラーです。
データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。","VE.Controllers.Main.errorDataEncrypted":"暗号化された変更を受け取りましたが、解読できません。","VE.Controllers.Main.errorDataRange":"データ範囲が正しくありません","VE.Controllers.Main.errorDefaultMessage":"エラー コード:%1","VE.Controllers.Main.errorDirectUrl":"ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。","VE.Controllers.Main.errorEditingDownloadas":"文書の処理中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存してください。","VE.Controllers.Main.errorEditingSaveas":"文書の処理中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存してください。","VE.Controllers.Main.errorEmailClient":"メールクライアントが見つかりませんでした。","VE.Controllers.Main.errorFilePassProtect":"ドキュメントがパスワードで保護されているため開くことができません","VE.Controllers.Main.errorFileSizeExceed":"ファイルサイズがサーバーで設定された制限を超過しています。
ドキュメントサーバー管理者に詳細をお問い合わせください。","VE.Controllers.Main.errorForceSave":"文書の保存中にエラーが発生しました。「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存するか、後で再試行してください。","VE.Controllers.Main.errorInconsistentExt":"ファイルを開くときにエラーが発生しました。
ファイルの内容がファイルの拡張子と一致しません。","VE.Controllers.Main.errorInconsistentExtDocx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はドキュメント (docx など) に対応していますが、ファイルの拡張子が一致していません: %1","VE.Controllers.Main.errorInconsistentExtPdf":"ファイルを開くときにエラーが発生しました。
ファイルの内容は次のいずれかの形式に対応しています: pdf/djvu/xps/oxps が、ファイルの拡張子が一致していません: %1","VE.Controllers.Main.errorInconsistentExtPptx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はプレゼンテーション (pptx など) に対応していますが、ファイルの拡張子が一致していません: %1","VE.Controllers.Main.errorInconsistentExtXlsx":"ファイルを開くときにエラーが発生しました。
ファイルの内容はスプレッドシート (xlsx など) に対応していますが、ファイルの拡張子が一致していません: %1","VE.Controllers.Main.errorKeyEncrypt":"不明なキーの記述子","VE.Controllers.Main.errorKeyExpire":"署名キーは期限切れました","VE.Controllers.Main.errorLoadingFont":"フォントが読み込まれていません。
ドキュメントサーバーの管理者に連絡してください。","VE.Controllers.Main.errorPasswordIsNotCorrect":"入力されたパスワードが間違っています。
CapsLock キーがオフになっていること、大文字と小文字が正しく使われていることを確認してください。 ","VE.Controllers.Main.errorServerVersion":"エディタのバージョンが更新されました。変更を適用するためにページが再読み込みされます。","VE.Controllers.Main.errorSessionAbsolute":"ドキュメント編集セッションが終了しました。 ページを再ロードしてください。","VE.Controllers.Main.errorSessionIdle":"このドキュメントはかなり長い間編集されていませんでした。このページをリロードしてください。","VE.Controllers.Main.errorSessionToken":"サーバーとの接続が中断されました。このページをリロードしてください。","VE.Controllers.Main.errorSetPassword":"パスワードを設定できませんでした。","VE.Controllers.Main.errorToken":"ドキュメントセキュリティトークンが正しく形成されていません。
ドキュメントサーバー管理者にお問い合わせください。","VE.Controllers.Main.errorTokenExpire":"ドキュメントセキュリティトークンが期限切れになりました。
ドキュメントサーバー管理者にお問い合わせください。","VE.Controllers.Main.errorUpdateVersion":"ファイルが変更されました。ページがリロードされます。","VE.Controllers.Main.errorUpdateVersionOnDisconnect":"インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。","VE.Controllers.Main.errorUserDrop":"ただいま、ファイルにアクセスできません。","VE.Controllers.Main.errorUsersExceed":"料金プランによってユーザ数を超過しました。","VE.Controllers.Main.errorViewerDisconnect":"接続が切断されました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。","VE.Controllers.Main.leavePageText":"この文書の保存されていない変更があります。保存するために「このページにとどまる」をクリックし、その後「保存」をクリックしてください。「このページを離れる」をクリックすると、未保存の変更がすべて破棄されます。","VE.Controllers.Main.leavePageTextOnClose":"変更を保存しないでドキュメントを閉じると変更が失われます。
保存するために「キャンセル 」、後に「保存」をクリックします。保存していないすべての変更を破棄するために、「OK」をクリックします。","VE.Controllers.Main.loadFontsTextText":"データを読み込んでいます","VE.Controllers.Main.loadFontsTitleText":"データを読み込んでいます","VE.Controllers.Main.loadFontTextText":"データを読み込んでいます","VE.Controllers.Main.loadFontTitleText":"データを読み込んでいます","VE.Controllers.Main.loadImagesTextText":"画像を読み込んでいます…","VE.Controllers.Main.loadImagesTitleText":"画像を読み込んでいます","VE.Controllers.Main.loadImageTextText":"画像を読み込んでいます…","VE.Controllers.Main.loadImageTitleText":"画像を読み込んでいます","VE.Controllers.Main.loadingDocumentTextText":"ドキュメントを読み込んでいます…","VE.Controllers.Main.loadingDocumentTitleText":"ドキュメントを読み込んでいます…","VE.Controllers.Main.notcriticalErrorTitle":" 警告","VE.Controllers.Main.openErrorText":"ファイルを読み込み中にエラーが発生しました","VE.Controllers.Main.openTextText":"ドキュメントを読み込んでいます...","VE.Controllers.Main.openTitleText":"ドキュメントを読み込んでいます","VE.Controllers.Main.printTextText":"ドキュメントの印刷中...","VE.Controllers.Main.printTitleText":"ドキュメントの印刷中","VE.Controllers.Main.reloadButtonText":"ページを再読み込み","VE.Controllers.Main.requestEditFailedMessageText":"この文書は他のユーザによって編集しています。後でもう一度試してみてください。","VE.Controllers.Main.requestEditFailedTitleText":"アクセスが拒否されました","VE.Controllers.Main.saveErrorText":"ファイルを保存中にエラーが発生しました","VE.Controllers.Main.saveErrorTextDesktop":"このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。","VE.Controllers.Main.saveTextText":"ドキュメントの保存中...","VE.Controllers.Main.saveTitleText":"ドキュメントの保存中","VE.Controllers.Main.scriptLoadError":"接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。","VE.Controllers.Main.textAnonymous":"匿名","VE.Controllers.Main.textAnyone":"誰でも","VE.Controllers.Main.textBuyNow":"ウェブサイトにアクセス","VE.Controllers.Main.textChangesSaved":"全ての変更点が保存されました","VE.Controllers.Main.textClose":"閉じる","VE.Controllers.Main.textCloseTip":"ヒントを閉じるためにクリックしてください","VE.Controllers.Main.textConnectionLost":"接続中です。接続設定をご確認ください。","VE.Controllers.Main.textContactUs":"営業部に連絡する","VE.Controllers.Main.textContinue":"続ける","VE.Controllers.Main.textCustomLoader":"ライセンス条項により、ローダーを変更する権利がないことにご注意ください。
見積もりについては、弊社営業部門にお問い合わせください。","VE.Controllers.Main.textDisconnect":"接続が切断されました","VE.Controllers.Main.textGuest":"ゲスト","VE.Controllers.Main.textLearnMore":"詳細はこちら","VE.Controllers.Main.textLoadingDocument":"ドキュメントを読み込んでいます…","VE.Controllers.Main.textLongName":"128文字未満の名前を入力してください。","VE.Controllers.Main.textNoLicenseTitle":"ライセンス制限に達しました","VE.Controllers.Main.textPaidFeature":"有料機能","VE.Controllers.Main.textReconnect":"接続が回復しました","VE.Controllers.Main.textRemember":"すべてのファイルに選択を保存する","VE.Controllers.Main.textRenameError":"ユーザー名は空にできません。","VE.Controllers.Main.textRenameLabel":"共同作業のときに使用する名前を入力してください","VE.Controllers.Main.textShape":"図形","VE.Controllers.Main.textStrict":"厳格モード","VE.Controllers.Main.textText":"テキスト","VE.Controllers.Main.textTryQuickPrint":"クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?","VE.Controllers.Main.textUpdateVersion":"この文書は現在編集できません。
ファイルを更新しようとしています。しばらくお待ちください...","VE.Controllers.Main.textUpdating":"アップデート中","VE.Controllers.Main.tipLicenseExceeded":"このドキュメントは、ライセンスによって許可される同時接続の最大数に達したため、閲覧専用モードで開かれています。

後ほど再試行するか、編集アクセスが必要な場合はドキュメント所有者までご連絡ください。","VE.Controllers.Main.tipLicenseUsersExceeded":"ライセンスで許可されている編集可能なユーザー数の上限に達したため、ドキュメントは閲覧専用モードで開かれています。

後ほど再度お試しいただくか、編集アクセスが必要な場合はドキュメントの所有者にお問い合わせください。","VE.Controllers.Main.titleLicenseExp":"ライセンスの有効期限が切れています","VE.Controllers.Main.titleLicenseNotActive":"ライセンスが無効になっています","VE.Controllers.Main.titleReadOnly":"閲覧専用モード","VE.Controllers.Main.titleServerVersion":"エディターが更新されました","VE.Controllers.Main.titleUpdateVersion":"バージョンが変更されました","VE.Controllers.Main.txtSaveCopyAsComplete":"ファイルのコピーが正常に保存されました","VE.Controllers.Main.txtSecurityWarningLink":"このドキュメントは{0}に接続しようとしています。
このサイトを信頼するなら、ctrlキーを押しながら「OK」を押してください。","VE.Controllers.Main.txtSecurityWarningOpenFile":"このドキュメントはファイルダイアログを開こうとしています。開くには、OKを押してください。","VE.Controllers.Main.unknownErrorText":"不明なエラーです。","VE.Controllers.Main.unsupportedBrowserErrorText":"お使いのブラウザはサポートされていません。","VE.Controllers.Main.uploadDocExtMessage":"不明な文書形式","VE.Controllers.Main.uploadDocFileCountMessage":"アップロードされた文書がありません。","VE.Controllers.Main.uploadDocSizeMessage":"文書の最大サイズ制限を超えています。","VE.Controllers.Main.uploadImageExtMessage":"不明なイメージ形式","VE.Controllers.Main.uploadImageFileCountMessage":"アップロードした画像なし","VE.Controllers.Main.uploadImageSizeMessage":"画像サイズの上限を超えました。サイズの上限は25MBです。","VE.Controllers.Main.uploadImageTextText":"イメージのアップロード中...","VE.Controllers.Main.uploadImageTitleText":"画像をアップロードしています","VE.Controllers.Main.waitText":"少々お待ちください...","VE.Controllers.Main.warnBrowserIE9":"このアプリケーションはIE9では低機能です。IE10以上のバージョンをご利用ください。","VE.Controllers.Main.warnBrowserZoom":"お使いのブラウザの現在のZoomの設定は完全にはサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。","VE.Controllers.Main.warnLicenseAnonymous":"匿名ユーザーのアクセスは拒否されます。
このドキュメントは閲覧専用に開かれます。","VE.Controllers.Main.warnLicenseBefore":"ライセンスが無効になっています。
管理者までご連絡ください。","VE.Controllers.Main.warnLicenseExp":"ライセンスの有効期限が切れています。
ライセンスを更新してページを再読み込みしてください。","VE.Controllers.Main.warnLicenseLimitedNoAccess":"ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。","VE.Controllers.Main.warnLicenseLimitedRenewed":"ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください","VE.Controllers.Main.warnNoLicense":"%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。","VE.Controllers.Main.warnNoLicenseUsers":"%1エディターのユーザー数制限に達しました。 アップグレード条件については、%1営業チームにお問い合わせください。","VE.Controllers.Main.warnProcessRightsChange":"ファイルを編集する権限を拒否されています。","VE.Controllers.Print.txtPrintRangeInvalid":"Invalid print range","VE.Controllers.Search.notcriticalErrorTitle":" 警告","VE.Controllers.Search.textNoTextFound":"検索データが見つかりませんでした。検索オプションを変更してください。","VE.Controllers.Search.textReplaceSkipped":"置換が完了しました。{0}つスキップされました。","VE.Controllers.Search.textReplaceSuccess":"検索が実行されました。{0}発生が置換されました","VE.Controllers.Search.warnReplaceString":"{0}は、「置換」ボックスで有効な特殊文字ではありません。","VE.Controllers.Statusbar.textDisconnect":"接続が切断されました
接続を試みています。接続設定を確認してください。","VE.Controllers.Statusbar.zoomText":"ズーム{0}%","VE.Controllers.Toolbar.errorAccessDeny":"利用権限がない操作をしようとしました。
文書サーバーの管理者までご連絡ください。","VE.Controllers.Toolbar.notcriticalErrorTitle":" 警告","VE.Controllers.Toolbar.txtUntitled":"無題","VE.Views.DocumentHolder.guestText":"ゲスト","VE.Views.DocumentHolder.textCopy":"コピー","VE.Views.DocumentHolder.txtPressLink":"{0}キーを押しながらリンクをクリックしてください","VE.Views.DocumentHolder.txtWarnUrl":"このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。
本当に続けてよろしいですか?","VE.Views.FileMenu.ariaFileMenu":"ファイルメニュー","VE.Views.FileMenu.btnBackCaption":"ファイルの場所を開く","VE.Views.FileMenu.btnCloseEditor":"ファイルを閉じる","VE.Views.FileMenu.btnCloseMenuCaption":"戻る","VE.Views.FileMenu.btnCreateNewCaption":"新規作成","VE.Views.FileMenu.btnDownloadCaption":"名前を付けてダウンロード","VE.Views.FileMenu.btnExitCaption":"閉じる","VE.Views.FileMenu.btnFileOpenCaption":"開く","VE.Views.FileMenu.btnHelpCaption":"ヘルプ","VE.Views.FileMenu.btnInfoCaption":"詳細情報","VE.Views.FileMenu.btnPrintCaption":"印刷","VE.Views.FileMenu.btnRecentFilesCaption":"最近使ったファイルを開く","VE.Views.FileMenu.btnRenameCaption":"名前を変更","VE.Views.FileMenu.btnReturnCaption":"文書に戻る","VE.Views.FileMenu.btnRightsCaption":"アクセス権","VE.Views.FileMenu.btnSaveAsCaption":"名前を付けて保存","VE.Views.FileMenu.btnSaveCopyAsCaption":"コピーを別名で保存する","VE.Views.FileMenu.btnSettingsCaption":"詳細設定","VE.Views.FileMenu.btnSuggestCaption":"機能のリクエスト","VE.Views.FileMenu.btnSwitchToMobileCaption":"モバイル版に切り替える","VE.Views.FileMenu.textDownload":"ダウンロード","VE.Views.FileMenuPanels.CreateNew.txtBlank":"空の文書","VE.Views.FileMenuPanels.CreateNew.txtCreateNew":"新規作成","VE.Views.FileMenuPanels.DocumentInfo.okButtonText":"適用","VE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor":"著者を追加","VE.Views.FileMenuPanels.DocumentInfo.txtAddText":"テキストを追加","VE.Views.FileMenuPanels.DocumentInfo.txtAppName":"アプリ","VE.Views.FileMenuPanels.DocumentInfo.txtAuthor":"作成者","VE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights":"アクセス権の変更","VE.Views.FileMenuPanels.DocumentInfo.txtComment":"コメント","VE.Views.FileMenuPanels.DocumentInfo.txtCommon":"共通","VE.Views.FileMenuPanels.DocumentInfo.txtCreated":"作成済み","VE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo":"文書の情報","VE.Views.FileMenuPanels.DocumentInfo.txtLoading":"読み込んでいます...","VE.Views.FileMenuPanels.DocumentInfo.txtModifyBy":"最終更新者","VE.Views.FileMenuPanels.DocumentInfo.txtModifyDate":"最終更新","VE.Views.FileMenuPanels.DocumentInfo.txtNo":"いいえ","VE.Views.FileMenuPanels.DocumentInfo.txtOwner":"作成者","VE.Views.FileMenuPanels.DocumentInfo.txtPlacement":"場所","VE.Views.FileMenuPanels.DocumentInfo.txtRights":"アクセス権を持っている人","VE.Views.FileMenuPanels.DocumentInfo.txtSubject":"件名","VE.Views.FileMenuPanels.DocumentInfo.txtTags":"タグ","VE.Views.FileMenuPanels.DocumentInfo.txtTitle":"タイトル","VE.Views.FileMenuPanels.DocumentInfo.txtUploaded":"アップロード済み","VE.Views.FileMenuPanels.DocumentInfo.txtYes":"はい","VE.Views.FileMenuPanels.DocumentRights.txtAccessRights":"アクセス権","VE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights":"アクセス権の変更","VE.Views.FileMenuPanels.DocumentRights.txtRights":"アクセス権を持っている人","VE.Views.FileMenuPanels.Settings.okButtonText":"適用","VE.Views.FileMenuPanels.Settings.strFontRender":"フォントのヒント","VE.Views.FileMenuPanels.Settings.strKeyboardShortcuts":"Keyboard Shortcuts","VE.Views.FileMenuPanels.Settings.strTabStyle":"タブのスタイル","VE.Views.FileMenuPanels.Settings.strTheme":"インターフェースのテーマ","VE.Views.FileMenuPanels.Settings.strZoom":"既定のズーム値","VE.Views.FileMenuPanels.Settings.textDisabled":"無効","VE.Views.FileMenuPanels.Settings.textFill":"塗りつぶし","VE.Views.FileMenuPanels.Settings.textLine":"線","VE.Views.FileMenuPanels.Settings.txtAdvancedSettings":"詳細設定","VE.Views.FileMenuPanels.Settings.txtAppearance":"外観","VE.Views.FileMenuPanels.Settings.txtCacheMode":"デフォルトのキャッシュモード","VE.Views.FileMenuPanels.Settings.txtCustomize":"Customize","VE.Views.FileMenuPanels.Settings.txtFitPage":"ページに合わせる","VE.Views.FileMenuPanels.Settings.txtFitWidth":"幅に合わせる","VE.Views.FileMenuPanels.Settings.txtLastUsed":"最後に使用した項目","VE.Views.FileMenuPanels.Settings.txtMac":"OSXのように","VE.Views.FileMenuPanels.Settings.txtNative":"ネイティブ","VE.Views.FileMenuPanels.Settings.txtQuickPrintTip":"最後に選択した、またはデフォルトのプリンターで印刷されます。","VE.Views.FileMenuPanels.Settings.txtScreenReader":"スクリーンリーダーのサポートをオンにする","VE.Views.FileMenuPanels.Settings.txtTabBack":"ツールバーの色をタブの背景に使う","VE.Views.FileMenuPanels.Settings.txtUseAltKey":"キーボードでユーザーインターフェイスで移動するには、Altキーをご使用ください","VE.Views.FileMenuPanels.Settings.txtUseOptionKey":"「Option」キーを使用して、キーボードでユーザーインターフェイスで移動します","VE.Views.FileMenuPanels.Settings.txtWin":"Windowsのように","VE.Views.FileMenuPanels.Settings.txtWorkspace":"ワークスペース","VE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs":"名前を付けてダウンロード","VE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs":"コピーを別名で保存する","VE.Views.LeftMenu.ariaLeftMenu":"左メニュー","VE.Views.LeftMenu.tipAbout":"詳細情報","VE.Views.LeftMenu.tipChat":"チャット","VE.Views.LeftMenu.tipPages":"ページ","VE.Views.LeftMenu.tipPlugins":"プラグイン","VE.Views.LeftMenu.tipSearch":"検索","VE.Views.LeftMenu.tipSupport":"フィードバック&サポート","VE.Views.LeftMenu.txtDeveloper":"開発者モード","VE.Views.LeftMenu.txtEditor":"図表ビューア","VE.Views.LeftMenu.txtLimit":"制限されたアクセス","VE.Views.LeftMenu.txtTrial":"試用モード","VE.Views.LeftMenu.txtTrialDev":"試用開発者モード","VE.Views.PrintWithPreview.txtAllPages":"All pages","VE.Views.PrintWithPreview.txtBlackAndWhitePrinting":"Black and white printing","VE.Views.PrintWithPreview.txtBothSides":"Print on both sides","VE.Views.PrintWithPreview.txtBothSidesLongDesc":"Flip pages on long edge","VE.Views.PrintWithPreview.txtBothSidesShortDesc":"Flip pages on short edge","VE.Views.PrintWithPreview.txtColorPrinting":"Color printing","VE.Views.PrintWithPreview.txtCopies":"Copies","VE.Views.PrintWithPreview.txtCurrentPage":"Current page","VE.Views.PrintWithPreview.txtCustom":"Custom","VE.Views.PrintWithPreview.txtCustomPages":"Custom print","VE.Views.PrintWithPreview.txtEmptyTable":"There is nothing to print because the diagram is empty","VE.Views.PrintWithPreview.txtOf":"of {0}","VE.Views.PrintWithPreview.txtOneSide":"Print one sided","VE.Views.PrintWithPreview.txtOneSideDesc":"Only print on one side of the page","VE.Views.PrintWithPreview.txtPage":"Page","VE.Views.PrintWithPreview.txtPageNumInvalid":"Page number invalid","VE.Views.PrintWithPreview.txtPages":"Pages","VE.Views.PrintWithPreview.txtPaperSize":"Paper size","VE.Views.PrintWithPreview.txtPrint":"Print","VE.Views.PrintWithPreview.txtPrinter":"Printer","VE.Views.PrintWithPreview.txtPrinterNotSelected":"Printer not selected","VE.Views.PrintWithPreview.txtPrintersNotFound":"Printers not found","VE.Views.PrintWithPreview.txtPrintPdf":"Print to PDF","VE.Views.PrintWithPreview.txtPrintRange":"Print range","VE.Views.PrintWithPreview.txtPrintSides":"Print sides","VE.Views.PrintWithPreview.txtPrintUsingSystemDialog":"Print using the system dialog","VE.Views.PrintWithPreview.txtWaitingForPrinters":"Waiting for printers","VE.Views.Statusbar.sheetIndexText":"{0}/{1} ページ","VE.Views.Statusbar.tipFitPage":"ページに合わせる","VE.Views.Statusbar.tipFitWidth":"幅に合わせる","VE.Views.Statusbar.tipListOfSheets":"ページリスト","VE.Views.Statusbar.tipNext":"次のページ","VE.Views.Statusbar.tipPrev":"前のページ","VE.Views.Statusbar.tipZoomFactor":"拡大図","VE.Views.Statusbar.tipZoomIn":"拡大","VE.Views.Statusbar.tipZoomOut":"縮小","VE.Views.Statusbar.txtPage":"ページ","VE.Views.Toolbar.textTabFile":"ファイル","VE.Views.Toolbar.textTabView":"表示","VE.Views.ViewTab.textAlwaysShowToolbar":"ツールバーを常に表示する","VE.Views.ViewTab.textFill":"塗りつぶし","VE.Views.ViewTab.textFitPage":"ページに合わせる","VE.Views.ViewTab.textFitWidth":"幅に合わせる","VE.Views.ViewTab.textInterfaceTheme":"インターフェースのテーマ","VE.Views.ViewTab.textLeftMenu":"左パネル","VE.Views.ViewTab.textLine":"線","VE.Views.ViewTab.textRightMenu":"右パネル","VE.Views.ViewTab.textStatusBar":"ステータスバー","VE.Views.ViewTab.textTabStyle":"タブのスタイル","VE.Views.ViewTab.textZoom":"拡大図","VE.Views.ViewTab.tipFitPage":"ページに合わせる","VE.Views.ViewTab.tipFitWidth":"幅に合わせる","VE.Views.ViewTab.tipInterfaceTheme":"インターフェースのテーマ"} \ No newline at end of file diff --git a/test/e2e/editor-locales.spec.ts b/test/e2e/editor-locales.spec.ts new file mode 100644 index 000000000..77c5a5ba0 --- /dev/null +++ b/test/e2e/editor-locales.spec.ts @@ -0,0 +1,67 @@ +import { expect, test } from './lib/l0'; +import type { Frame, Page } from '@playwright/test'; + +/** + * The editor, in every language the site is translated into. + * + * A Korean visitor opening a blank document got the vendor's modal "An error + * occurred while working with the document. Use the 'Download as' option to + * save a backup copy" -- before typing anything. The cause was a missing + * translation: `DE.Views.Statusbar.tipMultiplePages` exists in en.json and not + * in ko.json, the status bar passes it to a tooltip setter that does `hint[0]`, + * and the TypeError is caught and reported as a document error. + * + * Nothing in the suite would have caught it, because everything else opens the + * editor in English. This does what the user did: for each locale, create a + * blank document and wait for the editor to settle. + */ +const LOCALES = ['zh-CN', 'ja', 'de', 'es', 'ko', 'pt'] as const; + +/** The vendor's modal dialog, if one is on screen. */ +async function fatalDialog(frame: Frame): Promise { + return frame + .evaluate(() => { + const box = document.querySelector('.asc-window.modal .body, .asc-window .body'); + return box && (box as HTMLElement).offsetParent !== null + ? (box.textContent || '').replace(/\s+/g, ' ').trim() + : null; + }) + .catch(() => null); +} + +const editorFrame = (page: Page) => page.frames().find((f) => /documenteditor/.test(f.url())); + +test.describe('editor in every site language', () => { + for (const locale of LOCALES) { + test(`${locale}: a blank document opens without a vendor error dialog`, async ({ page }) => { + await page.goto(`/editor?locale=${locale}&new=docx`); + + // Wait for the toolbar rather than a fixed delay: the crash happened + // while the chrome rendered, so the assertion has to come after it. + const frame = await expect + .poll(async () => editorFrame(page)?.url() ?? null, { timeout: 60_000 }) + .not.toBeNull() + .then(() => editorFrame(page)!); + await expect + .poll(async () => frame.evaluate(() => document.querySelectorAll('.ribtab a').length).catch(() => 0), { + timeout: 60_000, + }) + .toBeGreaterThan(3); + + // Give the status bar and the rest of the late chrome time to render; + // the Korean failure surfaced there, after the tabs were up. + await page.waitForTimeout(3_000); + expect(await fatalDialog(frame), `${locale} shows a vendor error dialog`).toBeNull(); + + // And the UI really is in that language, not English with a locale in the + // URL -- the tabs are the first thing a translation touches. + const tabs = await frame.evaluate(() => + [...document.querySelectorAll('.ribtab a')].map((a) => a.textContent?.trim() ?? ''), + ); + expect(tabs.filter(Boolean).length, `${locale} has no toolbar tabs`).toBeGreaterThan(3); + // None of these locales writes its Home tab in English, so seeing it + // means the lang never reached the editor. + expect(tabs.join(' '), `${locale} toolbar is still English`).not.toContain('Home'); + }); + } +}); diff --git a/test/unit/vendor-locale.test.ts b/test/unit/vendor-locale.test.ts new file mode 100644 index 000000000..37fc2a09d --- /dev/null +++ b/test/unit/vendor-locale.test.ts @@ -0,0 +1,58 @@ +import { existsSync, readFileSync, readdirSync } from 'node:fs'; +import { resolve } from 'node:path'; +import { describe, expect, it } from 'vitest'; +import { LOCALES } from '../../bin/build-pages.mjs'; +import { fill } from '../../bin/locale-fill.mjs'; + +/** + * The vendor's translation files, for the languages this site claims to ship. + * + * They are not complete against en.json -- every one of the 44 is short, some + * by thousands of keys. That is usually cosmetic, but a string that exists only + * in the locale file leaves the property `undefined` when its translation is + * missing, and the tooltip setter does `hint[0]` without checking. The editor + * catches the TypeError as a document error and shows "an error occurred while + * working with the document" on a blank page. Korean did exactly this. + * + * bin/locale-fill.mjs backfills the gaps from en.json. This is the check that + * it has been run: after a vendor upgrade it will not have been. + */ +const ROOT = resolve(__dirname, '../..'); +const APPS = resolve(ROOT, 'public/web-apps/apps'); +const VENDOR_LOCALE: Record = { 'zh-CN': 'zh' }; + +const localeDirs = () => + readdirSync(APPS) + .map((app) => resolve(APPS, app, 'main/locale')) + .filter((dir) => existsSync(resolve(dir, 'en.json'))); + +describe('vendor editor locales', () => { + it('finds the vendor locale trees (sanity)', () => { + expect(localeDirs().length).toBeGreaterThanOrEqual(3); + }); + + it('covers every key en.json has, for every language the site ships', () => { + // fill({ check: true }) reports the gaps without writing. + expect(fill({ check: true })).toEqual([]); + }); + + /** + * The specific string that took Korean down, kept as a named example so the + * next person meets the failure mode rather than only the rule. + */ + it('has the status-bar tooltip Korean was missing', () => { + const ko = JSON.parse(readFileSync(resolve(APPS, 'documenteditor/main/locale/ko.json'), 'utf8')) as Record< + string, + string + >; + expect(ko['DE.Views.Statusbar.tipMultiplePages']).toBeTruthy(); + }); + + it('maps each site locale to a vendor file that exists', () => { + const dir = resolve(APPS, 'documenteditor/main/locale'); + for (const locale of Object.keys(LOCALES)) { + const code = VENDOR_LOCALE[locale] ?? locale; + expect(existsSync(resolve(dir, `${code}.json`)), `${locale} -> ${code}.json`).toBe(true); + } + }); +});